HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //home/ubuntu/aurora/atlas.sql
-- MySQL dump 10.19  Distrib 10.3.39-MariaDB, for debian-linux-gnu (aarch64)
--
-- Host: customers-notx.cuj4pfpdz4zw.us-east-2.rds.amazonaws.com    Database: atlas
-- ------------------------------------------------------
-- Server version	10.11.8-MariaDB-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Current Database: `atlas`
--

/*!40000 DROP DATABASE IF EXISTS `atlas`*/;

CREATE DATABASE /*!32312 IF NOT EXISTS*/ `atlas` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_spanish2_ci */;

USE `atlas`;

--
-- Table structure for table `academy_attendances`
--

DROP TABLE IF EXISTS `academy_attendances`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_attendances` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `academy_user_id` bigint(20) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `comment` varchar(50) DEFAULT NULL,
  `attendance_date` date DEFAULT NULL,
  `attended` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academy_attendances_academy_user_id_foreign` (`academy_user_id`),
  KEY `academy_attendances_user_id_foreign` (`user_id`),
  CONSTRAINT `academy_attendances_academy_user_id_foreign` FOREIGN KEY (`academy_user_id`) REFERENCES `academy_users` (`id`),
  CONSTRAINT `academy_attendances_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_attendances`
--

LOCK TABLES `academy_attendances` WRITE;
/*!40000 ALTER TABLE `academy_attendances` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_attendances` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_categories`
--

DROP TABLE IF EXISTS `academy_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `inscription_value` double NOT NULL,
  `monthly_payment` double NOT NULL,
  `academy_location_id` bigint(20) unsigned DEFAULT NULL,
  `show_in` varchar(191) NOT NULL DEFAULT 'all',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academy_categories_academy_location_id_foreign` (`academy_location_id`),
  CONSTRAINT `academy_categories_academy_location_id_foreign` FOREIGN KEY (`academy_location_id`) REFERENCES `academy_locations` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_categories`
--

LOCK TABLES `academy_categories` WRITE;
/*!40000 ALTER TABLE `academy_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_categories_schedules`
--

DROP TABLE IF EXISTS `academy_categories_schedules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_categories_schedules` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `academy_schedule_id` bigint(20) unsigned NOT NULL COMMENT 'Campo para asociar el horario/categoria/sede',
  `academy_category_id` bigint(20) unsigned NOT NULL COMMENT 'Campo para asociar el horario/categoria/sede',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academy_categories_schedules_academy_schedule_id_foreign` (`academy_schedule_id`),
  KEY `academy_categories_schedules_academy_category_id_foreign` (`academy_category_id`),
  CONSTRAINT `academy_categories_schedules_academy_category_id_foreign` FOREIGN KEY (`academy_category_id`) REFERENCES `academy_categories` (`id`),
  CONSTRAINT `academy_categories_schedules_academy_schedule_id_foreign` FOREIGN KEY (`academy_schedule_id`) REFERENCES `academy_schedules` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_categories_schedules`
--

LOCK TABLES `academy_categories_schedules` WRITE;
/*!40000 ALTER TABLE `academy_categories_schedules` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_categories_schedules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_discounts`
--

DROP TABLE IF EXISTS `academy_discounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_discounts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `discount` double NOT NULL,
  `availability` varchar(50) DEFAULT NULL,
  `view_on` varchar(50) NOT NULL DEFAULT 'all' COMMENT 'Campo para almacenar el detalle donde se va a visualizar el descuento',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_discounts`
--

LOCK TABLES `academy_discounts` WRITE;
/*!40000 ALTER TABLE `academy_discounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_discounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_document_users`
--

DROP TABLE IF EXISTS `academy_document_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_document_users` (
  `academy_user_id` bigint(20) unsigned NOT NULL,
  `academy_document_id` int(10) unsigned NOT NULL,
  `link` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  KEY `academy_document_users_academy_user_id_foreign` (`academy_user_id`),
  KEY `academy_document_users_academy_document_id_foreign` (`academy_document_id`),
  CONSTRAINT `academy_document_users_academy_document_id_foreign` FOREIGN KEY (`academy_document_id`) REFERENCES `academy_documents` (`id`),
  CONSTRAINT `academy_document_users_academy_user_id_foreign` FOREIGN KEY (`academy_user_id`) REFERENCES `academy_users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_document_users`
--

LOCK TABLES `academy_document_users` WRITE;
/*!40000 ALTER TABLE `academy_document_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_document_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_documents`
--

DROP TABLE IF EXISTS `academy_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `link` varchar(300) DEFAULT NULL,
  `required` tinyint(1) NOT NULL DEFAULT 1,
  `order` int(11) NOT NULL,
  `type_academy` varchar(191) NOT NULL DEFAULT 'children',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_documents`
--

LOCK TABLES `academy_documents` WRITE;
/*!40000 ALTER TABLE `academy_documents` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_documents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_locations`
--

DROP TABLE IF EXISTS `academy_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_locations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `total_capacity` double DEFAULT NULL,
  `address_id` int(10) unsigned DEFAULT NULL,
  `gateway_payments_id` int(10) unsigned DEFAULT NULL,
  `type_academy` varchar(191) NOT NULL DEFAULT 'children',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academy_locations_address_id_foreign` (`address_id`),
  KEY `academy_locations_gateway_payments_id_foreign` (`gateway_payments_id`),
  CONSTRAINT `academy_locations_address_id_foreign` FOREIGN KEY (`address_id`) REFERENCES `addresses` (`id`),
  CONSTRAINT `academy_locations_gateway_payments_id_foreign` FOREIGN KEY (`gateway_payments_id`) REFERENCES `gateway_payments` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_locations`
--

LOCK TABLES `academy_locations` WRITE;
/*!40000 ALTER TABLE `academy_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_parameters`
--

DROP TABLE IF EXISTS `academy_parameters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_parameters` (
  `key` varchar(100) NOT NULL,
  `value` longtext NOT NULL,
  `type_academy` varchar(191) NOT NULL DEFAULT 'children',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=98 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_parameters`
--

LOCK TABLES `academy_parameters` WRITE;
/*!40000 ALTER TABLE `academy_parameters` DISABLE KEYS */;
INSERT INTO `academy_parameters` VALUES ('academy_categories','Infantil,Aspirante,Sub-12,Sub-17','children','2022-12-07 15:04:06','2022-12-07 15:04:06',1),('academy_places','Norte,Oriente,Occidente,Sur','children','2022-12-07 15:04:06','2022-12-07 15:04:06',2),('app_components','Etiqueta estado,Botón actualizar información,Botón completar registro,Botón cargar documentos,Botón pagar inscripción,Botón pagos,Botón carné,Botón informes,Ocultar botones,Botón torneos','children','2022-12-07 15:04:06','2023-07-07 22:06:50',3),('blood_type','A+,O+,B+,AB+,A-,O-,B-,AB-','children','2022-12-07 15:04:06','2022-12-07 15:04:06',4),('change_status_active_service','push','children','2023-03-13 13:13:31','2023-03-13 13:13:31',5),('change_status_message','Revisión del proceso \":state\" asociado al alumno \":student\" exitosa, ya puedes continuar con el proceso de \":newState\" en la APP del :appName.','children','2022-12-07 15:04:06','2022-12-07 15:04:06',6),('city_text','Ciudad/Municipio','children','2022-12-07 15:04:06','2022-12-07 15:04:06',7),('confirm_revision_active_service','push','children','2023-03-13 13:13:32','2023-03-13 13:13:32',8),('confirm_revision_message','Revisión \":state\" del alumno \":student\" confirmada, se notificará al usuario continuar con el proceso de \":newState\" en la APP del :appName.','children','2022-12-07 15:04:06','2022-12-07 15:04:06',9),('department_text','Departamento','children','2022-12-07 15:04:06','2022-12-07 15:04:06',10),('documents_upload_alert_text','La carga de documentos ha sido realizada con éxito. Si desea continuar con la inscripción debe completar los datos solicitados para el alumno','children','2022-12-07 15:04:06','2022-12-07 15:04:06',11),('documents_upload_button_text','Finalizar carga documentos','children','2022-12-07 15:04:06','2022-12-07 15:04:06',12),('documents_upload_title','Carga documentos Escuela iniciación','children','2022-12-07 15:04:06','2022-12-07 19:25:07',13),('enable_modify_payment_button','false','children','2023-03-04 01:50:51','2023-03-04 01:50:51',14),('enrollment_alert_text','La pre-inscripción ha sido realizada con éxito. Si desea continuar con la inscripción debe completar los datos solicitados para el alumno','children','2022-12-07 15:04:06','2022-12-07 15:04:06',15),('enrollment_button_text','Finalizar Pre-inscripción','children','2022-12-07 15:04:06','2022-12-07 15:04:06',16),('enrollment_title','Pre-inscripción Escuela iniciación','children','2022-12-07 15:04:06','2022-12-07 19:24:19',17),('full_enrollment_alert_text','La inscripción ha sido realizada con éxito. Si desea continuar con la inscripción debe completar los datos solicitados para el alumno','children','2022-12-07 15:04:06','2022-12-07 15:04:06',18),('full_enrollment_button_text','Finalizar inscripción','children','2022-12-07 15:04:06','2022-12-07 15:04:06',19),('full_enrollment_title','Inscripción Escuela de iniciación','children','2022-12-07 15:04:06','2022-12-07 19:25:07',20),('help_information_contact','Aquí debes diligenciar la información del padre/madre del alumno. Datos de Papá/mamá. (Datos distintos a la información del responsable)','children','2022-12-07 15:04:06','2022-12-12 14:16:24',21),('help_information_responsable','Importante: Aquí debes diligenciar la información de la persona a la que se le va a facturar, la misma que quedará en el contrato. (Nombres completos y los dos apellidos completos)','children','2022-12-07 15:04:06','2022-12-12 14:15:38',22),('last_inscription_year','Nuevo-2023,2022,2021,2020','children','2022-12-08 23:39:51',NULL,23),('notify_payment_due_active_service','push','children','2023-03-13 13:13:32','2023-03-16 19:36:30',24),('notify_payment_due_last_notification','2023-10-09','children','2023-03-13 13:13:32','2023-10-09 15:00:11',25),('notify_payment_due_message','Cordial saludo Familia Naranja 👨‍👩‍👦👨‍👩‍👧🧡 ⚽🍊, se te informa que el pago 💰💳 \":term_type\" de \":term\" del deportista🥅⚽🏃🏽⚽🏃🏽‍♀️ \":student\" se encuentra vencido hasta la fecha, te invitamos a realizar el pago pendiente el cual podrás efectuar a través de nuestra APP :appName en la sección Academia -> Pagar.','children','2023-03-13 13:13:32','2023-03-16 18:33:21',26),('notify_payment_due_periodicity','1','children','2023-03-13 13:13:32','2023-03-13 13:13:32',27),('notify_payment_enable_active_service','push','children','2023-03-13 13:13:32','2023-03-14 19:40:31',28),('notify_payment_enable_last_notification','2023-10-09','children','2023-03-13 13:13:32','2023-10-09 15:00:10',29),('notify_payment_enable_message','Cordial saludo padre de familia, se te informa que ya se encuentra disponible el pago \":term_type\" de \":term\" del deportista \":student\" el cual podrás pagar a través de nuestra APP en la sección Academia.','children','2023-01-03 12:53:01','2023-03-16 18:33:21',30),('notify_payment_enable_periodicity','1','children','2023-03-13 13:13:32','2023-03-13 13:13:32',31),('notify_payment_pending_enrollment_active_service','push','children','2023-03-13 13:13:32','2023-03-16 19:36:30',32),('notify_payment_pending_enrollment_last_notification','2023-10-09','children','2023-03-13 13:13:32','2023-10-09 15:01:44',33),('notify_payment_pending_enrollment_message','Cordial saludo Familia Naranja 👨‍👩‍👦👨‍👩‍👧🧡 ⚽🍊, se te informa que el pago 💰💳 \":term_type\" de \":term\" del deportista🥅⚽🏃🏽⚽🏃🏽‍♀️ \":student\" esta pendiente de pago, te invitamos a realizar el pago el cual podrás efectuar a través de nuestra APP :appName en la sección Academia -> Pagar.','children','2023-03-13 13:13:32','2023-03-16 18:33:21',34),('notify_payment_pending_enrollment_periodicity','1','children','2023-03-13 13:13:32','2023-03-13 13:13:32',35),('notify_payment_soon_due_active_service','push','children','2023-03-13 13:13:32','2023-03-16 19:36:30',36),('notify_payment_soon_due_days','2','children','2023-03-13 13:13:32','2023-03-16 19:36:30',37),('notify_payment_soon_due_last_notification','2023-09-23','children','2023-03-13 13:13:32','2023-09-23 15:00:58',38),('notify_payment_soon_due_message','Cordial saludo Familia Naranja 👨‍👩‍👦👨‍👩‍👧🧡 ⚽🍊, se te informa que el pago💰💳 \":term_type\" de \":term\" del deportista🥅⚽🏃🏽⚽🏃🏽‍♀️ \":student\" esta próximo a vencer, te invitamos a realizar el pago pendiente el cual podrás efectuar a través de nuestra APP :appName en la sección Academia -> Pagar.','children','2023-03-13 13:13:32','2023-03-16 18:33:21',39),('notify_payment_soon_due_periodicity','30','children','2023-03-13 13:13:32','2023-03-16 19:36:30',40),('ocupation','Empleado,Independiente,Pensionado','children','2022-12-07 15:04:06','2022-12-07 15:04:06',41),('payment_activation_notification_schedule','10:00 AM','children','2023-01-03 12:53:17','2023-03-28 00:21:41',42),('payment_frequency','20','children','2022-12-07 15:04:06','2022-12-07 15:04:06',43),('relationship','Madre,Padre,Responsable','children','2022-12-07 15:04:06','2022-12-07 15:04:06',44),('school_grades','Prejardin,Jardin,Transición,Primero,Segundo,Tercero,Cuarto,Quinto,Sexto,Séptimo,Octavo,Noveno,Décimo,Once','children','2022-12-07 15:04:06','2022-12-07 15:04:06',45),('shorts_sizes','4,6,8,10,12,14,16,28,30,32,24','children','2022-12-07 15:04:06','2022-12-07 15:04:06',46),('students_without_payments_active_service','push','children','2023-03-13 13:13:32','2023-03-16 19:37:57',47),('students_without_payments_last_notification','2023-10-09','children','2023-03-13 13:13:32','2023-10-09 15:01:44',48),('students_without_payments_message','Cordial saludo padre de familia, se te informa que el alumno/a \":student\" actualmente no posee ningún plan de pagos de mensualidad dentro de la academía, te invitamos a realizar este proceso pendiente el cual podrás efectuar a través de nuestra APP :appName en la sección Academia -> Pagar.','children','2023-03-13 13:13:32','2023-03-13 13:13:32',49),('students_without_payments_periodicity','1','children','2023-03-13 13:13:32','2023-03-13 13:13:32',50),('terms','https://s3.us-east-2.amazonaws.com/b001-si/bikenow/envigado/academy/academy_documents/academy_terms.pdf','children','2022-12-07 19:24:19','2023-01-16 14:30:13',51),('tshirt_sizes','2,4,6,8,10,12,14,16,S,M,L,XL','children','2022-12-07 15:04:06','2022-12-07 15:04:06',52),('school_grades','Bachiller,Universitario,Posgrado,Doctorado','adult','2023-09-06 19:47:13','2023-09-06 19:47:13',53),('blood_type','A+,B+,O+,AB+,A-,B-,O-,AB-','adult','2023-09-06 19:47:13','2023-09-06 19:47:13',54),('ocupation','Empleado,Independiente,Pensionado','adult','2023-09-06 19:47:13','2023-09-06 19:47:13',55),('relationship','Madre,Padre,Herman@,Ti@,Hij@,Pareja','adult','2023-09-06 19:47:13','2023-09-06 19:47:13',56),('enrollment_title','Pre-inscripción Cantera adultos','adult','2023-09-06 19:47:13','2023-09-06 19:47:13',57),('enrollment_button_text','Finalizar Pre-inscripción','adult','2023-09-06 19:47:13','2023-09-06 19:47:13',58),('enrollment_alert_text','La pre-inscripción ha sido realizada con éxito. Si desea continuar con la inscripción debe completar los datos solicitados','adult','2023-09-06 19:47:13','2023-09-06 19:47:13',59),('department_text','Departamento','adult','2023-09-06 19:47:13','2023-09-06 19:47:13',60),('city_text','Ciudad/Municipio','adult','2023-09-06 19:47:13','2023-09-06 19:47:13',61),('app_components','Etiqueta estado,Botón actualizar información,Botón completar registro,Botón cargar documentos,Botón pagar inscripción,Botón pagos,Botón carné,Botón informes,Ocultar botones,Botón torneos','adult','2023-09-06 19:47:13','2023-09-06 19:47:13',62),('tshirt_sizes','S,M,L,XL,S Arquero,M Arquero,L Arquero,XL Arquero','adult','2023-09-06 19:47:13','2023-09-06 19:47:13',63),('shorts_sizes','S,M,L,XL,S Arquero,M Arquero,L Arquero,XL Arquero','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',64),('full_enrollment_title','Inscripción Cantera adultos','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',65),('full_enrollment_button_text','Finalizar inscripción','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',66),('full_enrollment_alert_text','La inscripción ha sido realizada con éxito. Si desea continuar con la inscripción debe completar los datos solicitados.','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',67),('documents_upload_title','Carga documentos Cantera adultos','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',68),('documents_upload_button_text','Finalizar carga documentos','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',69),('documents_upload_alert_text','La carga de documentos ha sido realizada con éxito. Si desea continuar con la inscripción debe completar los datos solicitados.','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',70),('help_information_responsable','Importante: Aquí debes diligenciar la información de la persona de contacto en caso de emergencias. (Nombres completos y los dos apellidos completos)','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',71),('help_information_contact','Importante: Aquí debes diligenciar la información de la persona de contacto en caso de emergencias. (Nombres completos y los dos apellidos completos)','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',72),('last_inscription_year','Nuevo,Antiguo','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',73),('enable_collection_advance_payments','false','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',74),('days_collection_advance_payments','2','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',75),('enable_modify_payment_button','false','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',76),('change_status_message','Revisión del proceso \":state\" asociado al alumno \":student\" exitosa, ya puedes continuar con el proceso de \":newState\" en la APP del :appName.','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',77),('change_status_active_service','push','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',78),('confirm_revision_message','Revisión \":state\" del alumno \":student\" confirmada, se notificará al usuario continuar con el proceso de \":newState\" en la APP del :appName.','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',79),('confirm_revision_active_service','push','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',80),('notify_payment_enable_message','Cordial saludo, se te informa que ya se encuentra disponible el pago \":term_type\" de \":term\" del deportista \":student\" el cual podrás pagar a través de nuestra APP en la sección Academia.','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',81),('notify_payment_enable_active_service','push','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',82),('notify_payment_enable_periodicity','1','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',83),('payment_activation_notification_schedule','10:15 AM','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',84),('notify_payment_due_message','Cordial saludo Familia Naranja 👨‍👩‍👦👨‍👩‍👧🧡 ⚽🍊, se te informa que el pago 💰💳 \":term_type\" de \":term\" del deportista🥅⚽🏃🏽⚽🏃🏽‍♀️ \":student\" se encuentra vencido hasta la fecha, te invitamos a realizar el pago pendiente el cual podrás efectuar a través de nuestra APP :appName en la sección Cantera adultos -> Pagar.','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',85),('notify_payment_due_active_service','push','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',86),('notify_payment_due_periodicity','1','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',87),('notify_payment_soon_due_days','2','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',88),('notify_payment_soon_due_message','Cordial saludo Familia Naranja 👨‍👩‍👦👨‍👩‍👧🧡 ⚽🍊, se te informa que el pago💰💳 \":term_type\" de \":term\" del deportista🥅⚽🏃🏽⚽🏃🏽‍♀️ \":student\" esta próximo a vencer, te invitamos a realizar el pago pendiente el cual podrás efectuar a través de nuestra APP :appName en la sección Cantera adultos -> Pagar.','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',89),('notify_payment_soon_due_active_service','push','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',90),('notify_payment_soon_due_periodicity','1','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',91),('notify_payment_pending_enrollment_message','Cordial saludo Familia Naranja 👨‍👩‍👦👨‍👩‍👧🧡 ⚽🍊, se te informa que el pago 💰💳 \":term_type\" de \":term\" del deportista🥅⚽🏃🏽⚽🏃🏽‍♀️ \":student\" esta pendiente de pago, te invitamos a realizar el pago el cual podrás efectuar a través de nuestra APP :appName en la sección Cantera adultos -> Pagar.','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',92),('notify_payment_pending_enrollment_active_service','push','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',93),('students_without_payments_message','Cordial saludo, se te informa que el alumno/a \":student\" actualmente no posee ningún plan de pagos de mensualidad dentro de la Cantera adultos, te invitamos a realizar este proceso pendiente el cual podrás efectuar a través de nuestra APP :appName en la sección Cantera adultos -> Pagar.','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',94),('students_without_payments_active_service','push','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',95),('terms','https://s3.us-east-2.amazonaws.com/b001-si/bikenow/envigado/academy/academy_documents/academy_terms.pdf','adult','2023-09-06 19:47:14','2023-09-06 19:47:14',96),('enable_attach_support_button','1','children','2023-10-03 15:39:26','2023-10-03 15:39:26',97);
/*!40000 ALTER TABLE `academy_parameters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_periods`
--

DROP TABLE IF EXISTS `academy_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_periods` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `annual_installments` int(11) NOT NULL,
  `discount` double NOT NULL,
  `init_month` int(11) NOT NULL DEFAULT 1 COMMENT 'Mes de incio de pagos de mensualidad academias',
  `end_month` int(11) NOT NULL DEFAULT 12,
  `enable_period_time` int(11) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_periods`
--

LOCK TABLES `academy_periods` WRITE;
/*!40000 ALTER TABLE `academy_periods` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_periods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_purchases`
--

DROP TABLE IF EXISTS `academy_purchases`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_purchases` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `enrollment_academy_price` int(11) DEFAULT NULL,
  `monthly_academy_price` int(11) DEFAULT NULL,
  `price_discount` double NOT NULL DEFAULT 0,
  `discount` double NOT NULL DEFAULT 0 COMMENT 'Valor numerico de 0 a 100 que equivale al porcentaje de descuento (ejp: 20 = 20%)',
  `subtotal` double NOT NULL DEFAULT 0,
  `service_charge` double NOT NULL DEFAULT 0,
  `price` double DEFAULT NULL COMMENT 'Precio final de pago aplicando o no el descuento',
  `user_id` int(10) unsigned DEFAULT NULL,
  `academy_user_id` bigint(20) unsigned NOT NULL,
  `state` int(11) DEFAULT NULL,
  `enrollment_reference` int(11) DEFAULT NULL,
  `active` tinyint(1) DEFAULT 0,
  `term_type` varchar(191) DEFAULT NULL,
  `term` varchar(191) DEFAULT NULL,
  `start_term` varchar(191) DEFAULT NULL,
  `end_term` varchar(191) DEFAULT NULL,
  `payment_activation` date DEFAULT NULL,
  `payment_due_date` date DEFAULT NULL,
  `payment_identifier` varchar(20) NOT NULL COMMENT 'Identificador unico del pago para manejo de logs',
  `payment_transaction_id` bigint(20) unsigned DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academy_purchases_user_id_foreign` (`user_id`),
  KEY `academy_purchases_academy_user_id_foreign` (`academy_user_id`),
  KEY `academy_purchases_payment_transaction_id_foreign` (`payment_transaction_id`),
  CONSTRAINT `academy_purchases_academy_user_id_foreign` FOREIGN KEY (`academy_user_id`) REFERENCES `academy_users` (`id`),
  CONSTRAINT `academy_purchases_payment_transaction_id_foreign` FOREIGN KEY (`payment_transaction_id`) REFERENCES `payment_transactions` (`id`),
  CONSTRAINT `academy_purchases_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_purchases`
--

LOCK TABLES `academy_purchases` WRITE;
/*!40000 ALTER TABLE `academy_purchases` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_purchases` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_reports`
--

DROP TABLE IF EXISTS `academy_reports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_reports` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `academy_user_id` bigint(20) unsigned DEFAULT NULL,
  `link` varchar(300) DEFAULT NULL,
  `period` varchar(191) DEFAULT NULL COMMENT 'Período en el que fue guardado el reporte',
  `admin_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academy_reports_academy_user_id_foreign` (`academy_user_id`),
  KEY `academy_reports_admin_id_foreign` (`admin_id`),
  CONSTRAINT `academy_reports_academy_user_id_foreign` FOREIGN KEY (`academy_user_id`) REFERENCES `academy_users` (`id`),
  CONSTRAINT `academy_reports_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_reports`
--

LOCK TABLES `academy_reports` WRITE;
/*!40000 ALTER TABLE `academy_reports` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_reports` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_schedules`
--

DROP TABLE IF EXISTS `academy_schedules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_schedules` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` text NOT NULL,
  `total_capacity` int(11) NOT NULL,
  `current_capacity` int(11) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_schedules`
--

LOCK TABLES `academy_schedules` WRITE;
/*!40000 ALTER TABLE `academy_schedules` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_schedules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_schedules_coaches`
--

DROP TABLE IF EXISTS `academy_schedules_coaches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_schedules_coaches` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `academy_schedule_id` bigint(20) unsigned NOT NULL COMMENT 'Campo para asociar el horario/categoria/sede',
  `user_id` int(10) unsigned NOT NULL COMMENT 'Campo para asociar el entrenador/profesor encargado de la clase',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academy_schedules_coaches_academy_schedule_id_foreign` (`academy_schedule_id`),
  KEY `academy_schedules_coaches_user_id_foreign` (`user_id`),
  CONSTRAINT `academy_schedules_coaches_academy_schedule_id_foreign` FOREIGN KEY (`academy_schedule_id`) REFERENCES `academy_schedules` (`id`),
  CONSTRAINT `academy_schedules_coaches_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_schedules_coaches`
--

LOCK TABLES `academy_schedules_coaches` WRITE;
/*!40000 ALTER TABLE `academy_schedules_coaches` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_schedules_coaches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_state_users`
--

DROP TABLE IF EXISTS `academy_state_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_state_users` (
  `academy_user_id` bigint(20) unsigned NOT NULL,
  `academy_state_id` int(10) unsigned NOT NULL,
  `confirmation_finished` tinyint(1) NOT NULL,
  `approving_user_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  KEY `academy_state_users_academy_user_id_foreign` (`academy_user_id`),
  KEY `academy_state_users_academy_state_id_foreign` (`academy_state_id`),
  KEY `academy_state_users_approving_user_id_foreign` (`approving_user_id`),
  CONSTRAINT `academy_state_users_academy_state_id_foreign` FOREIGN KEY (`academy_state_id`) REFERENCES `academy_states` (`id`),
  CONSTRAINT `academy_state_users_academy_user_id_foreign` FOREIGN KEY (`academy_user_id`) REFERENCES `academy_users` (`id`),
  CONSTRAINT `academy_state_users_approving_user_id_foreign` FOREIGN KEY (`approving_user_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_state_users`
--

LOCK TABLES `academy_state_users` WRITE;
/*!40000 ALTER TABLE `academy_state_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_state_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_states`
--

DROP TABLE IF EXISTS `academy_states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_states` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `color` varchar(25) NOT NULL,
  `confirmation_required` tinyint(1) NOT NULL DEFAULT 1,
  `academy_state_condition_id` int(10) unsigned DEFAULT NULL,
  `app_components` text NOT NULL,
  `validate_payments` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academy_states_academy_state_condition_id_foreign` (`academy_state_condition_id`),
  CONSTRAINT `academy_states_academy_state_condition_id_foreign` FOREIGN KEY (`academy_state_condition_id`) REFERENCES `academy_states` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_states`
--

LOCK TABLES `academy_states` WRITE;
/*!40000 ALTER TABLE `academy_states` DISABLE KEYS */;
INSERT INTO `academy_states` VALUES (1,'Pre-registro','#cccccc',0,NULL,'Etiqueta estado',0,1,'2022-11-09 22:32:42','2022-11-24 23:16:53'),(2,'Completar registro','#70726e',0,1,'Etiqueta estado,Botón completar registro,Botón actualizar información',0,1,'2022-11-09 22:33:37','2022-11-25 22:25:31'),(3,'Cargar documentos','#1d57c1',0,2,'Etiqueta estado,Botón actualizar información,Botón completar registro,Botón cargar documentos',0,1,'2022-11-10 03:28:29','2023-03-01 13:32:47'),(4,'Revisión matrícula','#e5de00',1,3,'Etiqueta estado',0,1,'2022-11-10 03:30:28','2022-11-25 20:02:11'),(5,'Pagar inscripción','#ffa500',0,4,'Etiqueta estado,Botón pagar inscripción,Botón pagos',0,1,'2022-11-10 23:08:00','2022-11-25 22:25:12'),(6,'Pagar mensualidad','#3cdfff',0,5,'Etiqueta estado,Botón pagos,Botón carné',1,1,'2022-11-10 23:09:34','2023-04-11 21:05:23'),(7,'Matriculado','#84c93c',0,6,'Etiqueta estado,Botón pagos,Botón carné',1,1,'2022-11-24 23:26:14','2023-01-25 00:56:44'),(8,'Retirado','#e82585',0,NULL,'Etiqueta estado,Ocultar botones',0,1,'2023-05-16 01:15:54','2023-05-16 01:15:54'),(9,'Becado','#1C4577',0,NULL,'Etiqueta estado,Botón carné',0,1,'2023-05-16 01:16:11','2023-05-16 01:16:11'),(10,'Retirado_Deudor','#e11a0b',0,NULL,'Etiqueta estado,Botón pagos',0,1,'2023-06-09 21:37:11','2023-06-09 21:37:11');
/*!40000 ALTER TABLE `academy_states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_tournament_categories`
--

DROP TABLE IF EXISTS `academy_tournament_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_tournament_categories` (
  `academy_category_id` bigint(20) unsigned NOT NULL,
  `academy_tournament_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  KEY `academy_tournament_categories_academy_category_id_foreign` (`academy_category_id`),
  KEY `academy_tournament_categories_academy_tournament_id_foreign` (`academy_tournament_id`),
  CONSTRAINT `academy_tournament_categories_academy_category_id_foreign` FOREIGN KEY (`academy_category_id`) REFERENCES `academy_categories` (`id`),
  CONSTRAINT `academy_tournament_categories_academy_tournament_id_foreign` FOREIGN KEY (`academy_tournament_id`) REFERENCES `academy_tournaments` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_tournament_categories`
--

LOCK TABLES `academy_tournament_categories` WRITE;
/*!40000 ALTER TABLE `academy_tournament_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_tournament_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_tournament_payments`
--

DROP TABLE IF EXISTS `academy_tournament_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_tournament_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `price` double NOT NULL,
  `price_discount` double NOT NULL DEFAULT 0,
  `discount` double NOT NULL DEFAULT 0,
  `subtotal` double NOT NULL DEFAULT 0,
  `service_charge` double NOT NULL DEFAULT 0,
  `total` double NOT NULL DEFAULT 0,
  `term` varchar(191) DEFAULT NULL,
  `academy_tournament_id` bigint(20) unsigned NOT NULL,
  `academy_user_id` bigint(20) unsigned NOT NULL,
  `payment_transaction_id` bigint(20) unsigned DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academy_tournament_payments_academy_tournament_id_foreign` (`academy_tournament_id`),
  KEY `academy_tournament_payments_academy_user_id_foreign` (`academy_user_id`),
  KEY `academy_tournament_payments_payment_transaction_id_foreign` (`payment_transaction_id`),
  CONSTRAINT `academy_tournament_payments_academy_tournament_id_foreign` FOREIGN KEY (`academy_tournament_id`) REFERENCES `academy_tournaments` (`id`),
  CONSTRAINT `academy_tournament_payments_academy_user_id_foreign` FOREIGN KEY (`academy_user_id`) REFERENCES `academy_users` (`id`),
  CONSTRAINT `academy_tournament_payments_payment_transaction_id_foreign` FOREIGN KEY (`payment_transaction_id`) REFERENCES `payment_transactions` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_tournament_payments`
--

LOCK TABLES `academy_tournament_payments` WRITE;
/*!40000 ALTER TABLE `academy_tournament_payments` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_tournament_payments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_tournament_tags`
--

DROP TABLE IF EXISTS `academy_tournament_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_tournament_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `academy_tournament_id` bigint(20) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academy_tournament_tags_academy_tournament_id_foreign` (`academy_tournament_id`),
  KEY `academy_tournament_tags_tag_id_foreign` (`tag_id`),
  CONSTRAINT `academy_tournament_tags_academy_tournament_id_foreign` FOREIGN KEY (`academy_tournament_id`) REFERENCES `academy_tournaments` (`id`),
  CONSTRAINT `academy_tournament_tags_tag_id_foreign` FOREIGN KEY (`tag_id`) REFERENCES `tags` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_tournament_tags`
--

LOCK TABLES `academy_tournament_tags` WRITE;
/*!40000 ALTER TABLE `academy_tournament_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_tournament_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_tournaments`
--

DROP TABLE IF EXISTS `academy_tournaments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_tournaments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `description` text DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `price` double NOT NULL,
  `discount` double DEFAULT NULL,
  `payday_limit` datetime NOT NULL,
  `start_date` datetime NOT NULL,
  `end_date` datetime NOT NULL,
  `type_academy` varchar(191) NOT NULL DEFAULT 'children',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `payment_installments` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_tournaments`
--

LOCK TABLES `academy_tournaments` WRITE;
/*!40000 ALTER TABLE `academy_tournaments` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_tournaments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_users`
--

DROP TABLE IF EXISTS `academy_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `student_name` varchar(191) NOT NULL,
  `student_last_name` varchar(191) NOT NULL,
  `student_document_type_id` bigint(20) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `validation_payment` int(11) DEFAULT NULL COMMENT 'Validación en pago de la inscripción',
  `photo` varchar(191) DEFAULT NULL,
  `documents` varchar(191) DEFAULT NULL,
  `date` date NOT NULL,
  `age` varchar(191) NOT NULL,
  `mail` varchar(191) NOT NULL,
  `phone` varchar(191) DEFAULT NULL,
  `address_id` int(10) unsigned DEFAULT NULL,
  `advisor_name` varchar(191) NOT NULL,
  `advisor_last_name` varchar(191) NOT NULL,
  `advisor_document_type_id` bigint(20) unsigned DEFAULT NULL,
  `advisor_identification` varchar(191) NOT NULL,
  `advisor_ocupation` varchar(191) NOT NULL,
  `advisor_relation` varchar(191) NOT NULL,
  `birthdate` date NOT NULL,
  `identification` varchar(191) NOT NULL,
  `school_name` varchar(191) DEFAULT NULL,
  `school_grade` varchar(191) NOT NULL,
  `school_time` varchar(191) DEFAULT NULL,
  `surgical_history` varchar(191) DEFAULT NULL,
  `toxic_history` varchar(191) DEFAULT NULL,
  `health_observations` varchar(191) DEFAULT NULL,
  `eps` varchar(191) DEFAULT NULL,
  `point_attention` varchar(191) DEFAULT NULL,
  `tshirt_size` varchar(191) DEFAULT NULL,
  `shorts_size` varchar(191) DEFAULT NULL,
  `academy_state_id` int(10) unsigned DEFAULT NULL,
  `review_state` enum('SIN DATOS','PENDIENTE','CONFIRMADA') DEFAULT NULL COMMENT 'Estados de revisión de los datos.',
  `blood_type` varchar(191) DEFAULT NULL,
  `academy_place` varchar(191) DEFAULT NULL,
  `academy_location_id` bigint(20) unsigned DEFAULT NULL,
  `academy_category_id` bigint(20) unsigned DEFAULT NULL,
  `academy_period_id` bigint(20) unsigned DEFAULT NULL,
  `academy_schedule_id` bigint(20) unsigned DEFAULT NULL,
  `last_inscription_year` varchar(50) DEFAULT NULL,
  `payment_status` varchar(50) DEFAULT NULL,
  `type_academy` varchar(191) NOT NULL DEFAULT 'children',
  `ocupation` varchar(191) DEFAULT NULL,
  `active` tinyint(1) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `academy_users_user_id_foreign` (`user_id`),
  KEY `academy_users_academy_state_id_foreign` (`academy_state_id`),
  KEY `academy_users_student_document_type_id_foreign` (`student_document_type_id`),
  KEY `academy_users_address_id_foreign` (`address_id`),
  KEY `academy_users_advisor_document_type_id_foreign` (`advisor_document_type_id`),
  KEY `academy_users_academy_category_id_foreign` (`academy_category_id`),
  KEY `academy_users_academy_period_id_foreign` (`academy_period_id`),
  KEY `academy_users_academy_schedule_id_foreign` (`academy_schedule_id`),
  KEY `academy_users_academy_location_id_foreign` (`academy_location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_users`
--

LOCK TABLES `academy_users` WRITE;
/*!40000 ALTER TABLE `academy_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `academy_users_discounts`
--

DROP TABLE IF EXISTS `academy_users_discounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `academy_users_discounts` (
  `academy_user_id` bigint(20) unsigned NOT NULL COMMENT 'Campo para asociar el alumno',
  `academy_discount_id` bigint(20) unsigned NOT NULL COMMENT 'Campo para asociar el descuento',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  KEY `academy_users_discounts_academy_user_id_foreign` (`academy_user_id`),
  KEY `academy_users_discounts_academy_discount_id_foreign` (`academy_discount_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `academy_users_discounts`
--

LOCK TABLES `academy_users_discounts` WRITE;
/*!40000 ALTER TABLE `academy_users_discounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `academy_users_discounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `addresses`
--

DROP TABLE IF EXISTS `addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `addresses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tag` varchar(191) DEFAULT NULL,
  `direction` varchar(191) NOT NULL,
  `district` varchar(191) DEFAULT NULL,
  `indications` text DEFAULT NULL,
  `active` tinyint(1) NOT NULL,
  `lat` varchar(191) DEFAULT NULL,
  `long` varchar(191) DEFAULT NULL,
  `last_used` tinyint(1) NOT NULL DEFAULT 0,
  `coverage_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `city_id` int(10) unsigned DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `addresses_user_id_foreign` (`user_id`),
  KEY `addresses_city_id_foreign` (`city_id`),
  KEY `addresses_coverage_id_foreign` (`coverage_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1119 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `addresses`
--

LOCK TABLES `addresses` WRITE;
/*!40000 ALTER TABLE `addresses` DISABLE KEYS */;
INSERT INTO `addresses` VALUES (1,'AlianSAP','Oficina AlianSAP',NULL,NULL,1,'3.387851','-76.538768',0,255,1,150,NULL,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(2,'','Valledupar, Cesar, Colombia',NULL,NULL,1,'10.4742449','-73.2436335',1,1055,10,1042,NULL,'2022-08-25 15:09:26','2022-08-25 15:09:26'),(3,'22','Calle 1 # 1 - 1','rrii','22',1,'6.2221322','-75.5688903',1,444,13,503,NULL,'2022-08-26 15:50:45','2023-09-08 20:48:11'),(4,'xada','Avenida Carrera 13 # 23 - 13','bsbsb','pdt',1,'4.6524456','-74.0628491',0,761,5,107,NULL,'2022-08-31 19:19:07','2023-05-16 20:16:25'),(5,'Casa 12','Carrera 23 # 23 - 34','las delicias','Casa 12',1,'3.4453046','-76.5302849',0,255,8,150,NULL,'2022-09-02 19:18:24','2023-10-04 14:32:40'),(6,'oficina','Calle 1 # 1 - 1','capri','oficina',1,'3.4952176','-76.4812552',1,255,6,150,NULL,'2022-09-07 18:00:24','2023-01-23 20:04:23'),(7,'casa','Carrera 1 # 21 - 45','matro','Ñgl',1,'3.4584303','-76.5256844',0,255,5,150,'2022-09-07 18:14:54','2022-09-07 18:14:37','2022-09-07 18:14:54'),(8,'casa','Calle 12 # 25 - 61','metro','apto',1,'3.4836735','-76.552911',0,255,5,150,'2022-09-09 17:37:47','2022-09-09 17:36:46','2022-09-09 17:37:47'),(9,NULL,'Calle 1 # 1 - 1','la hacienda',NULL,1,NULL,NULL,0,255,6,150,NULL,'2022-11-24 12:06:26','2023-01-23 20:04:23'),(10,'','Envigado, Antioquia, Colombia',NULL,NULL,1,'6.167286499999999','-75.5836963',1,45,17,330,NULL,'2022-11-24 20:34:35','2022-11-24 20:34:35'),(11,NULL,'Calle 1 # 1 - 1',NULL,NULL,1,NULL,NULL,0,217,6,107,NULL,'2022-11-30 11:16:38','2023-01-23 20:04:23'),(12,NULL,'Calle 1 # 1 - 1',NULL,NULL,1,NULL,NULL,0,45,6,330,NULL,'2022-11-30 11:48:37','2023-01-23 20:04:23'),(13,NULL,'Calle 90 # 12 - 45','CASTILLA',NULL,1,NULL,NULL,0,217,8,107,NULL,'2022-11-30 13:39:19','2023-09-05 20:55:58'),(14,NULL,'Carrera 20 # 45 - 10','Las Flores',NULL,1,NULL,NULL,0,16,18,91,NULL,'2022-12-05 14:22:50','2022-12-05 14:22:50'),(15,NULL,'Avenida Calle 12 # 56 - 10','barrio',NULL,1,NULL,NULL,0,6,18,36,NULL,'2022-12-05 18:05:42','2022-12-05 18:05:42'),(16,NULL,'Calle 1 # 1 - 1',NULL,NULL,1,NULL,NULL,0,217,6,107,NULL,'2022-12-07 20:13:37','2023-01-23 20:04:23'),(17,NULL,'Avenida 10AN # 12N - 36','Juan',NULL,1,NULL,NULL,0,255,20,150,NULL,'2022-12-09 09:45:07','2022-12-09 09:45:07'),(18,NULL,'Calle 21 # # - 41-117','La Frontera',NULL,1,NULL,NULL,0,45,30,330,NULL,'2022-12-09 19:47:40','2023-01-17 18:26:40'),(19,NULL,'Calle 21 # # - 41-117','La Frontera',NULL,1,NULL,NULL,0,45,30,330,NULL,'2022-12-09 19:51:33','2023-01-17 19:22:16'),(20,NULL,'Carrera 59 # 40 - 105','caqueta',NULL,1,NULL,NULL,1,62,19,463,NULL,'2022-12-09 20:12:15','2022-12-15 14:00:48'),(21,NULL,'Calle 12aa # # - -','la colina guayabal',NULL,1,NULL,NULL,0,1,31,547,NULL,'2022-12-09 20:12:32','2023-01-11 17:10:00'),(22,NULL,'Carrera 27 # 37Sur - 45','Las brujas',NULL,1,NULL,NULL,0,45,33,330,NULL,'2022-12-09 20:25:21','2022-12-09 20:25:21'),(23,NULL,'Carrera 27B # 37 B sur - 80','loma de las brujas',NULL,1,NULL,NULL,0,45,34,330,NULL,'2022-12-09 20:33:30','2022-12-09 20:33:30'),(24,NULL,'Calle 76 sur # 57 - 86','Toledo',NULL,1,NULL,NULL,0,62,35,463,NULL,'2022-12-09 20:35:27','2022-12-09 20:35:27'),(25,NULL,'Carrera 27b # 37bsur - 83','loma de las brujas',NULL,1,NULL,NULL,0,45,36,330,NULL,'2022-12-09 20:49:34','2023-01-10 22:39:32'),(26,NULL,'Carrera 39E # 48CSUR - -103','La Cuenca',NULL,1,NULL,NULL,0,45,32,330,NULL,'2022-12-09 21:34:36','2022-12-21 16:07:52'),(27,NULL,'Carrera 25a # 38 dsur - 30','chinguin',NULL,1,NULL,NULL,0,1101,37,1097,NULL,'2022-12-09 22:34:07','2023-01-21 00:04:23'),(28,NULL,'Calle 46D SUR # 42B - 40','LA PAZ',NULL,1,NULL,NULL,0,45,38,330,NULL,'2022-12-10 02:33:50','2022-12-10 02:33:50'),(29,NULL,'Calle 72 sur # 34 - 119','aves maria',NULL,1,NULL,NULL,0,85,40,772,NULL,'2022-12-10 11:31:35','2022-12-10 11:31:35'),(30,NULL,'Calle 37sur # 27 - 90','escobero',NULL,1,NULL,NULL,0,45,44,330,NULL,'2022-12-10 12:03:20','2022-12-10 12:03:20'),(31,NULL,'Calle 72 # # - -','lomitas',NULL,1,NULL,NULL,0,85,45,772,NULL,'2022-12-10 12:14:52','2022-12-19 17:40:49'),(32,NULL,'Calle 36asur # 26D - 31','la Inmaculada',NULL,1,NULL,NULL,0,45,46,330,NULL,'2022-12-10 12:15:16','2023-01-16 15:44:25'),(33,NULL,'Calle 37 # # - 27-90','Escoberl',NULL,1,NULL,NULL,0,45,47,330,NULL,'2022-12-10 12:15:20','2022-12-20 13:02:04'),(34,NULL,'Carrera 45B # 29sur - 71','Jardines',NULL,1,NULL,NULL,0,45,48,330,NULL,'2022-12-10 12:15:33','2022-12-10 12:15:33'),(35,NULL,'Calle 75 Sur # 46 D - 19 Int 119','Calle Larga',NULL,1,NULL,NULL,0,85,43,772,NULL,'2022-12-10 12:16:38','2022-12-10 12:16:38'),(36,NULL,'Calle 26 sur # 23 A - 11','San Lucas',NULL,1,NULL,NULL,0,45,50,330,NULL,'2022-12-10 12:18:57','2022-12-10 12:18:57'),(37,NULL,'Calle 27 sur # 27 - 92','El Esmeraldal',NULL,1,NULL,NULL,0,45,49,330,NULL,'2022-12-10 12:20:55','2022-12-10 12:20:55'),(38,NULL,'Carrera 27 # 37 - sur','Loma Las Brujas',NULL,1,NULL,NULL,0,45,52,330,NULL,'2022-12-10 12:21:54','2022-12-20 13:11:36'),(39,NULL,'Carrera 45a # 80s - 75','el trapiche',NULL,1,NULL,NULL,0,85,51,772,NULL,'2022-12-10 12:22:08','2022-12-10 12:22:08'),(40,NULL,'Calle 37 sur # 27 - 90','Escoberl',NULL,1,NULL,NULL,0,45,47,330,NULL,'2022-12-10 12:22:15','2022-12-10 12:22:15'),(41,NULL,'Carrera 45B # 38B - 41','ALCALA',NULL,1,NULL,NULL,0,45,55,330,NULL,'2022-12-10 12:28:16','2022-12-19 17:02:13'),(42,NULL,'Calle 44sur # 43a - 85','vallejuelos',NULL,1,NULL,NULL,0,1,54,330,NULL,'2022-12-10 12:32:08','2023-10-08 19:54:27'),(43,NULL,'Carrera 61 # 33 - 51','Ditaires',NULL,1,NULL,NULL,0,57,56,437,NULL,'2022-12-10 12:36:46','2023-01-07 15:32:53'),(44,NULL,'Carrera 27AA # 27Esur51 - 51','Loma de los mesa',NULL,1,NULL,NULL,0,45,53,330,NULL,'2022-12-10 12:37:50','2023-01-07 18:09:12'),(45,NULL,'Calle 16sur # 21 - 81','poblado',NULL,1,NULL,NULL,0,1,57,547,NULL,'2022-12-10 12:39:10','2022-12-10 12:39:10'),(46,NULL,'Calle 48F sur # 40 - 03','SEÑORIAL',NULL,1,NULL,NULL,0,45,58,330,NULL,'2022-12-10 12:47:11','2022-12-10 12:47:11'),(47,NULL,'Carrera 43 # 75 - 05','Aves María',NULL,1,NULL,NULL,0,85,59,772,NULL,'2022-12-10 13:04:29','2022-12-10 13:04:29'),(48,NULL,'Carrera 32 # 6sur - 295','Poblado',NULL,1,NULL,NULL,0,1,60,547,NULL,'2022-12-10 13:16:15','2022-12-10 13:16:15'),(49,NULL,'Carrera 52d # 75aa - -','Suramerica',NULL,1,NULL,NULL,0,57,65,437,NULL,'2022-12-10 13:30:57','2023-01-11 19:58:55'),(50,NULL,'Carrera 37A # 29 - 56','loma del indio',NULL,1,NULL,NULL,0,1,63,547,NULL,'2022-12-10 13:31:15','2022-12-10 13:31:15'),(51,NULL,'Calle 40Fsur # 30 - 79','El Dorado',NULL,1,NULL,NULL,0,45,62,330,NULL,'2022-12-10 13:31:58','2022-12-20 13:13:45'),(52,NULL,'Carrera 100b # 47a - 33','san Javier',NULL,1,NULL,NULL,0,1,64,547,NULL,'2022-12-10 13:33:32','2022-12-10 13:33:32'),(53,NULL,'Carrera 27 da # 34 dd sur - 85','la inmaculada',NULL,1,NULL,NULL,0,45,67,330,NULL,'2022-12-10 13:40:22','2023-01-10 21:21:01'),(54,NULL,'Carrera 50 # 46 - 43','Las Mercedes',NULL,1,NULL,NULL,0,57,68,437,NULL,'2022-12-10 14:11:59','2023-01-05 15:01:30'),(55,NULL,'Carrera 52d # 75aa Sur - 171','Suramerica',NULL,1,NULL,NULL,0,57,65,437,NULL,'2022-12-10 14:25:10','2022-12-10 14:25:10'),(56,NULL,'Calle 40asur # 25aa - 89','La Cuadrita',NULL,1,NULL,NULL,0,45,71,330,NULL,'2022-12-10 14:25:27','2023-01-03 20:34:50'),(57,NULL,'Diagonal 67 # 31 - 150','niquia',NULL,1,NULL,NULL,0,16,73,91,NULL,'2022-12-10 14:26:04','2022-12-10 14:26:04'),(58,NULL,'Calle 65 sur # 39 - 235','las lomitas',NULL,1,NULL,NULL,0,85,76,772,NULL,'2022-12-10 14:28:38','2023-10-02 20:27:17'),(59,NULL,'Carrera 59 # 27B - 510','amazonia',NULL,1,NULL,NULL,0,16,74,91,NULL,'2022-12-10 14:29:05','2022-12-10 14:29:05'),(60,NULL,'Carrera 51 # 1 - 36','Guayabal',NULL,1,NULL,NULL,0,1,75,547,NULL,'2022-12-10 14:30:16','2022-12-20 18:19:51'),(61,NULL,'Carrera 41 # 18 - 70','poblado',NULL,1,NULL,NULL,0,1,78,547,NULL,'2022-12-10 14:30:34','2023-01-16 19:07:07'),(62,NULL,'Calle 36A # # - -','el chocho',NULL,1,NULL,NULL,0,45,70,330,NULL,'2022-12-10 14:32:35','2022-12-20 13:17:29'),(63,NULL,'Calle 48 # c sur - 43 a 50',NULL,NULL,1,NULL,NULL,0,45,81,330,NULL,'2022-12-10 14:33:18','2023-01-11 18:29:38'),(64,NULL,'Calle 45sur # 41 - 130','la paz',NULL,1,NULL,NULL,0,45,83,330,NULL,'2022-12-10 14:34:18','2023-01-07 14:47:02'),(65,NULL,'Carrera 41 # 18 - 70','poblado',NULL,1,NULL,NULL,0,1,78,547,NULL,'2022-12-10 14:34:54','2022-12-10 14:34:54'),(66,NULL,'Carrera 53 # 69 - 06','Santa maria',NULL,1,NULL,NULL,0,57,72,437,NULL,'2022-12-10 14:35:06','2022-12-28 13:23:02'),(67,NULL,'Calle 79 a sur # 46 - 49','prados de sabaneta',NULL,1,NULL,NULL,0,85,80,772,NULL,'2022-12-10 14:38:05','2023-01-09 23:51:10'),(68,NULL,'Calle 83 # 58 - 19','El porvenir',NULL,1,NULL,NULL,0,57,89,437,NULL,'2022-12-10 14:38:48','2022-12-20 13:00:58'),(69,NULL,'Carrera 40A # 57 - 18','Boston',NULL,1,NULL,NULL,0,1,86,547,NULL,'2022-12-10 14:38:53','2023-01-08 12:12:29'),(70,NULL,'Carrera 61 # 33 - 51','Ditaires',NULL,1,NULL,NULL,0,57,82,437,NULL,'2022-12-10 14:39:06','2022-12-19 17:08:45'),(71,NULL,'Carrera 42 # 60 sur - 60','LA FLORIDA',NULL,1,NULL,NULL,0,85,85,772,NULL,'2022-12-10 14:39:13','2022-12-10 14:39:13'),(72,NULL,'Calle 48 # sur - 43','primavera',NULL,1,NULL,NULL,0,45,91,330,NULL,'2022-12-10 14:43:14','2023-01-11 14:17:10'),(73,NULL,'Calle 84 # 58 - 50','el porvenir',NULL,1,NULL,NULL,0,57,94,437,NULL,'2022-12-10 14:43:54','2022-12-10 14:43:54'),(74,NULL,'Carrera 87 # 44 - 10','La América',NULL,1,NULL,NULL,0,1,90,547,NULL,'2022-12-10 14:44:11','2022-12-10 14:44:11'),(75,NULL,'Calle 46F # # - -','El Trianón',NULL,1,NULL,NULL,0,45,87,330,NULL,'2022-12-10 14:45:19','2023-01-09 13:52:15'),(76,NULL,'Carrera 38 # 26 - 385','poblado',NULL,1,NULL,NULL,0,1,96,547,NULL,'2022-12-10 14:47:33','2023-01-10 11:28:28'),(77,NULL,'Carrera 43a # 56sur - 32','Maria Auxiliadora',NULL,1,NULL,NULL,0,85,97,772,NULL,'2022-12-10 14:48:38','2023-10-03 21:48:48'),(78,NULL,'Calle 65 # 39 - 235','EL CARMELO',NULL,1,NULL,NULL,0,85,92,772,NULL,'2022-12-10 14:50:18','2023-01-11 23:23:44'),(79,NULL,'Carrera 43A # 53dsur - 46','maria auxiliadora',NULL,1,NULL,NULL,0,85,98,772,NULL,'2022-12-10 14:51:26','2023-01-12 17:47:11'),(80,NULL,'Calle 75 sur # 53 - 10','Santa Catalina',NULL,1,NULL,NULL,0,57,93,437,NULL,'2022-12-10 14:52:48','2022-12-10 14:52:48'),(81,NULL,'Carrera 44 # 18 - 56','poblado',NULL,1,NULL,NULL,0,1,77,547,NULL,'2022-12-10 14:53:41','2023-01-13 14:11:44'),(82,NULL,'Carrera 46 # 72S - 14','Holanda',NULL,1,NULL,NULL,0,85,95,772,'2022-12-13 02:19:48','2022-12-10 15:03:45','2022-12-13 02:19:48'),(83,NULL,'Calle 59 # 60 - 25','calatrava',NULL,1,NULL,NULL,0,57,101,437,NULL,'2022-12-10 15:07:30','2022-12-27 22:34:55'),(84,NULL,'Carrera 38 # 1 - 50','poblado',NULL,1,NULL,NULL,0,1,100,547,NULL,'2022-12-10 15:09:51','2022-12-10 15:09:51'),(85,NULL,'Carrera 27a # 36sur - 150','LOMA DEL CHOCHO',NULL,1,NULL,NULL,0,45,99,330,NULL,'2022-12-10 15:10:15','2022-12-10 15:10:15'),(86,NULL,'Carrera 43A # 53dsur - 46','maria auxiliadora',NULL,1,NULL,NULL,0,85,98,772,NULL,'2022-12-10 15:16:15','2023-01-20 21:42:30'),(87,NULL,'Calle 61sur # 43A - 32','Manuel Restrepo',NULL,1,NULL,NULL,0,85,104,772,NULL,'2022-12-10 15:18:00','2022-12-19 19:41:33'),(88,NULL,'Calle 35A # 89A - 77','Santa Monica',NULL,1,NULL,NULL,0,1,102,547,NULL,'2022-12-10 15:20:17','2022-12-10 15:20:17'),(89,NULL,'Carrera 46 # 73 sur - 14','Holanda',NULL,1,NULL,NULL,0,85,95,772,NULL,'2022-12-10 15:22:47','2022-12-10 15:22:47'),(90,NULL,'Carrera 41 # 57sur - 01','villas del carmen',NULL,1,NULL,NULL,0,85,106,772,NULL,'2022-12-10 15:23:52','2023-01-09 15:30:21'),(91,NULL,'Calle 9 A Sur # 29 - 95','El Poblado',NULL,1,NULL,NULL,0,1,107,547,NULL,'2022-12-10 15:28:58','2022-12-10 15:28:58'),(92,NULL,'Carrera 39E # 48f sur - 150','LA CUENCA',NULL,1,NULL,NULL,0,45,109,330,NULL,'2022-12-10 15:30:58','2022-12-10 15:30:58'),(93,NULL,'Carrera 27b # 37b sur - 80','las brujas',NULL,1,NULL,NULL,0,45,108,330,NULL,'2022-12-10 15:30:59','2022-12-19 17:08:12'),(94,NULL,'Calle 11A # 31A - 121','Poblado',NULL,1,NULL,NULL,0,1,103,547,NULL,'2022-12-10 15:45:32','2023-01-10 20:10:00'),(95,NULL,'Carrera 58B # 14sur - 05','Porvenir',NULL,1,NULL,NULL,0,57,110,437,NULL,'2022-12-10 15:48:28','2022-12-10 15:48:28'),(96,NULL,'Transversal 40asur # 63 - 105','san Antonio de prado',NULL,1,NULL,NULL,0,1,113,547,NULL,'2022-12-10 15:50:08','2022-12-10 15:50:08'),(97,NULL,'Carrera 27D # 39 sur - 15','camino verde',NULL,1,NULL,NULL,0,45,112,330,NULL,'2022-12-10 15:53:54','2022-12-10 15:53:54'),(98,NULL,'Calle 76 # 97 - 01','ajizal itagui',NULL,1,NULL,NULL,0,57,114,437,NULL,'2022-12-10 15:54:17','2022-12-10 15:54:17'),(99,NULL,'Carrera 46a # 93 - 44','aranjuez',NULL,1,NULL,NULL,0,1,115,547,NULL,'2022-12-10 16:02:14','2023-01-13 23:13:41'),(100,NULL,'Carrera 6B # 49A - 201','buenos aires',NULL,1,NULL,NULL,0,1,116,547,NULL,'2022-12-10 16:02:29','2022-12-10 16:02:29'),(101,NULL,'Calle 71 sur # 34 - 314','aves maria',NULL,1,NULL,NULL,0,85,118,772,NULL,'2022-12-10 16:10:21','2022-12-10 16:10:21'),(103,NULL,'Carrera 39 A # 40 F Sur - 02','El Dorado',NULL,1,NULL,NULL,0,45,123,330,NULL,'2022-12-10 16:17:12','2022-12-10 16:17:12'),(104,NULL,'Carrera 32 # 38 - 46','Mesa',NULL,1,NULL,NULL,0,45,120,330,NULL,'2022-12-10 16:19:04','2022-12-20 02:41:13'),(105,NULL,'Calle 36 # # - a','loma del escobero',NULL,1,NULL,NULL,0,45,125,330,NULL,'2022-12-10 16:20:17','2022-12-21 13:37:49'),(106,NULL,'Carrera 45a # 77c - -','Simon  Bolivar',NULL,1,NULL,NULL,0,11,124,45,NULL,'2022-12-10 16:21:07','2022-12-19 17:25:21'),(107,NULL,'Calle 19 # 59 - 81','san pablo guayabal',NULL,1,NULL,NULL,0,1,119,547,NULL,'2022-12-10 16:29:21','2022-12-10 16:29:21'),(108,NULL,'Carrera 74a # 93 - 65','alfonso lopez',NULL,1,NULL,NULL,0,1,126,547,NULL,'2022-12-10 16:53:54','2022-12-10 16:53:54'),(109,NULL,'Calle 65 # 39 - 235','El Carmelo',NULL,1,NULL,NULL,0,85,92,772,NULL,'2022-12-10 17:04:08','2022-12-10 17:04:08'),(110,NULL,'Carrera 37 # 39sur - 49','mesa',NULL,1,NULL,NULL,0,45,127,330,NULL,'2022-12-10 17:05:42','2022-12-10 17:05:42'),(111,NULL,'Carrera 27G # 35s - 175','loma escobero',NULL,1,NULL,NULL,0,45,128,330,NULL,'2022-12-10 17:15:33','2023-01-11 19:58:43'),(112,NULL,'Carrera 30 # 72 sur - 02','la doctora',NULL,1,NULL,NULL,0,85,131,772,NULL,'2022-12-10 17:31:41','2023-01-06 21:26:07'),(113,NULL,'Carrera 32B # 40Fsur - 25','Dorado',NULL,1,NULL,NULL,0,45,132,330,NULL,'2022-12-10 17:32:06','2022-12-20 13:20:24'),(114,NULL,'Carrera 39E # 48csur - 103','SEÑORIAL',NULL,1,NULL,NULL,0,45,133,330,NULL,'2022-12-10 17:35:03','2022-12-10 17:35:03'),(115,NULL,'Avenida Carrera 34 # 34 - 34','las delicia',NULL,1,NULL,NULL,0,1,134,150,NULL,'2022-12-10 17:35:22','2023-10-03 14:07:54'),(116,NULL,'Calle 66a # 43 - 58','La Esmeralda',NULL,1,NULL,NULL,0,57,130,437,NULL,'2022-12-10 17:37:59','2022-12-23 13:30:49'),(117,NULL,'Calle 25Asur # 6BB - 18','Alto de las palmas',NULL,1,NULL,NULL,0,45,137,330,NULL,'2022-12-10 17:50:49','2022-12-10 17:50:49'),(118,NULL,'Carrera 25 # 39 sur - 15','el chongui',NULL,1,NULL,NULL,0,45,136,330,NULL,'2022-12-10 17:51:26','2022-12-10 17:51:26'),(119,NULL,'Calle 65sur # 39 - 235','el Carmelo',NULL,1,NULL,NULL,0,85,138,772,NULL,'2022-12-10 18:05:28','2023-01-09 14:51:42'),(120,NULL,'Carrera 58a # 13 - 30','Guayabalia',NULL,1,NULL,NULL,0,57,140,437,NULL,'2022-12-10 18:36:13','2023-01-06 23:38:37'),(121,NULL,'Calle 30c # 43c - 43','la gabriela',NULL,1,NULL,NULL,0,16,141,91,NULL,'2022-12-10 18:39:35','2022-12-10 18:39:35'),(122,NULL,'Calle 36 D sur # 16 - 79','Loma del escobero',NULL,1,NULL,NULL,0,45,66,330,NULL,'2022-12-10 18:51:38','2022-12-10 18:51:38'),(123,NULL,'Via pedregal # 0 - 0','los gomez',NULL,1,NULL,NULL,0,57,142,437,NULL,'2022-12-10 18:56:35','2022-12-10 18:56:35'),(124,NULL,'Calle 80 # 72A - 411','Robledo',NULL,1,NULL,NULL,0,1,144,547,NULL,'2022-12-10 19:05:15','2022-12-10 19:05:15'),(125,NULL,'Carrera 20 # 22sur - 30','san lucas',NULL,1,NULL,NULL,0,45,143,330,NULL,'2022-12-10 19:07:42','2022-12-10 19:07:42'),(126,NULL,'Calle 42c # 82 - 106','Simón Bolivar',NULL,1,NULL,NULL,0,1,146,547,NULL,'2022-12-10 19:08:12','2022-12-19 17:17:07'),(127,NULL,'Calle 36 # 27 - 10','loma del chocho',NULL,1,NULL,NULL,0,45,145,330,NULL,'2022-12-10 19:08:31','2023-01-10 20:36:12'),(128,NULL,'Carrera 51 # 41 - 144','belen',NULL,1,NULL,NULL,0,1,147,547,NULL,'2022-12-10 19:10:36','2023-10-03 22:07:33'),(129,NULL,'Calle 99 # # - -','La Tablaza',NULL,1,NULL,NULL,0,62,149,463,NULL,'2022-12-10 19:16:57','2023-01-07 06:30:23'),(130,NULL,'Carrera 27D # 36 C Sur - 80','Escobero',NULL,1,NULL,NULL,0,45,148,330,NULL,'2022-12-10 19:18:17','2022-12-10 19:18:17'),(131,NULL,'Carrera 27 # 28sur - 29','El Esmeraldal',NULL,1,NULL,NULL,0,45,151,330,NULL,'2022-12-10 19:22:18','2023-01-10 21:14:42'),(132,NULL,'Calle 65sur # 40 - 18','El carmelo',NULL,1,NULL,NULL,0,85,150,772,NULL,'2022-12-10 19:23:05','2023-01-25 12:45:55'),(133,NULL,'Carrera 43C # 63Sur - 12','Restrepo Naranjo',NULL,1,NULL,NULL,0,85,152,772,NULL,'2022-12-10 19:25:32','2022-12-10 19:25:32'),(134,NULL,'Calle 12AA # # - -','Guayabalia',NULL,1,NULL,NULL,0,1,153,547,NULL,'2022-12-10 19:32:27','2023-01-11 08:56:12'),(135,NULL,'Carrera 52a # 75 - 15','santamaria',NULL,1,NULL,NULL,0,57,154,437,NULL,'2022-12-10 19:44:48','2023-02-14 22:05:36'),(136,NULL,'Carrera 25A # 38D - -111','Camino Verde',NULL,1,NULL,NULL,0,45,156,330,NULL,'2022-12-10 20:05:15','2022-12-20 13:06:04'),(137,NULL,'Calle 40B Sur # 27a - 33','La Mina Parte Baja',NULL,1,NULL,NULL,0,45,157,330,NULL,'2022-12-10 20:13:17','2023-01-07 13:12:37'),(138,NULL,'Calle 50a # 97 - 215','calazans',NULL,1,NULL,NULL,0,1,158,547,NULL,'2022-12-10 20:25:36','2022-12-10 20:25:36'),(139,NULL,'Calle 107D # 37B - 14','Popular',NULL,1,NULL,NULL,0,1,160,547,NULL,'2022-12-10 20:36:53','2022-12-20 15:19:50'),(140,NULL,'Calle 41Bsur # 25 - 15','San Rafael',NULL,1,NULL,NULL,0,45,161,330,NULL,'2022-12-10 20:50:26','2022-12-10 20:50:26'),(141,NULL,'Calle 38 # 57a - 46','olivares',NULL,1,NULL,NULL,0,57,162,437,NULL,'2022-12-10 21:14:07','2023-01-03 19:43:14'),(142,NULL,'Calle 96 # 34 - 54','manrique',NULL,1,NULL,NULL,0,1,163,547,NULL,'2022-12-10 21:17:18','2023-01-10 18:49:58'),(143,NULL,'Calle 127dsur # 54 - 50','fundadores',NULL,1,NULL,NULL,0,24,164,144,NULL,'2022-12-10 21:34:01','2022-12-19 21:19:01'),(144,NULL,'Carrera 27 # 23 - -','la intermedia',NULL,1,NULL,NULL,0,45,166,330,NULL,'2022-12-10 21:35:40','2023-01-10 18:38:23'),(145,NULL,'Calle 39b # 28 - 115','San Jose',NULL,1,NULL,NULL,0,45,165,330,NULL,'2022-12-10 21:38:58','2022-12-20 00:45:01'),(146,NULL,'Calle 77 # 50 - 29','Campo Valdés',NULL,1,NULL,NULL,0,1,167,547,NULL,'2022-12-10 21:42:18','2022-12-10 21:42:18'),(147,NULL,'Calle 24 sur # 38 - 40','loma los benedictinos',NULL,1,NULL,NULL,0,45,168,330,NULL,'2022-12-10 21:52:51','2022-12-10 21:52:51'),(148,NULL,'Calle 30c # 43c - 43','la gabriela',NULL,1,NULL,NULL,0,16,79,91,NULL,'2022-12-10 21:57:17','2022-12-10 21:57:17'),(149,NULL,'Carrera 50D # 77 Sur - 81','Suramerica',NULL,1,NULL,NULL,0,62,169,463,NULL,'2022-12-10 22:05:18','2023-01-11 23:16:08'),(150,NULL,'Calle 24 sur # 38 - 40','lomas los benedictinos',NULL,1,NULL,NULL,0,45,168,330,NULL,'2022-12-10 22:09:05','2022-12-10 22:09:05'),(151,NULL,'Carrera 40 # 47 - 54','bombona',NULL,1,NULL,NULL,0,1,170,547,NULL,'2022-12-10 22:24:20','2022-12-10 22:24:20'),(152,NULL,'Carrera 40 # 47 - 54','bombona',NULL,1,NULL,NULL,0,1,170,547,NULL,'2022-12-10 22:33:09','2022-12-10 22:33:09'),(153,NULL,'Calle 65 # # - -','El Carmelo',NULL,1,NULL,NULL,0,85,171,772,NULL,'2022-12-10 22:43:20','2023-01-10 20:53:23'),(154,NULL,'Calle 20sur # 39a - 250','Poblado',NULL,1,NULL,NULL,0,1,173,547,NULL,'2022-12-10 23:33:38','2022-12-20 13:30:27'),(155,NULL,'Calle 84 # 58 - 320','Porvenir itagui',NULL,1,NULL,NULL,0,57,172,437,NULL,'2022-12-10 23:33:57','2022-12-10 23:33:57'),(156,NULL,'Calle 20sur # 39a - 250','Poblado',NULL,1,NULL,NULL,0,1,173,547,NULL,'2022-12-10 23:37:48','2022-12-10 23:37:48'),(157,NULL,'Carrera 50 # 26 - 36','Suramerica',NULL,1,NULL,NULL,0,57,174,437,NULL,'2022-12-10 23:42:36','2022-12-10 23:42:36'),(158,NULL,'Calle 10 # 51 - 51','los chorros',NULL,1,NULL,NULL,0,101,175,883,NULL,'2022-12-10 23:44:32','2023-01-05 14:04:32'),(159,NULL,'Calle 47 # 102 - bb42','San javier',NULL,1,NULL,NULL,0,1,176,547,NULL,'2022-12-11 00:30:41','2022-12-11 00:30:41'),(160,NULL,'Carrera 24b # 40a sur - 162','La mina',NULL,1,NULL,NULL,0,45,177,330,NULL,'2022-12-11 00:46:01','2022-12-11 00:46:01'),(161,NULL,'Carrera 27aa # 36 sur - 16','loma del chocho',NULL,1,NULL,NULL,0,45,129,330,NULL,'2022-12-11 00:50:28','2023-01-11 01:34:05'),(162,NULL,'Carrera 35 a # 77 sur - 113','urbanizacion Alameda',NULL,1,NULL,NULL,0,85,178,772,NULL,'2022-12-11 01:10:46','2022-12-11 01:10:46'),(163,NULL,'Calle 18bsur # 38 - 51','Diamante',NULL,1,NULL,NULL,0,1,179,547,NULL,'2022-12-11 01:23:52','2023-01-06 23:58:28'),(164,NULL,'Carrera 49 # 129 Sur - 36 (401)','Parque de Caldas',NULL,1,NULL,NULL,0,24,180,144,NULL,'2022-12-11 01:31:20','2023-01-10 14:17:20'),(165,NULL,'Calle 6a # 18 - 125','poblado',NULL,1,NULL,NULL,0,1,182,547,NULL,'2022-12-11 01:48:27','2022-12-11 01:48:27'),(166,NULL,'Carrera 43a # 75 - 21','manrique central',NULL,1,NULL,NULL,0,1,181,547,NULL,'2022-12-11 01:49:05','2022-12-11 01:49:05'),(167,NULL,'Carrera 39E # 48CSUR - 103','señorial',NULL,1,NULL,NULL,0,45,184,330,NULL,'2022-12-11 07:59:10','2022-12-11 07:59:10'),(168,NULL,'Calle 17 # 40B - 65','Castropol',NULL,1,NULL,NULL,0,1,185,547,NULL,'2022-12-11 10:33:54','2022-12-11 10:33:54'),(169,NULL,'Calle 29 Sur # 45A - 60','Jardines',NULL,1,NULL,NULL,0,45,187,330,NULL,'2022-12-11 11:29:01','2022-12-11 11:29:01'),(170,NULL,'Calle 70 # # - -','Aves Maria',NULL,1,NULL,NULL,0,85,188,772,NULL,'2022-12-11 12:05:30','2023-01-11 00:59:32'),(171,NULL,'Calle 36 d sur # 27 - 160','loma del Escobero',NULL,1,NULL,NULL,0,45,189,330,NULL,'2022-12-11 12:19:48','2022-12-11 12:19:48'),(172,NULL,'Carrera 45 # 23s - 57','Zuñiga',NULL,1,NULL,NULL,0,45,190,330,NULL,'2022-12-11 12:22:08','2022-12-19 19:48:05'),(173,NULL,'Calle 75aasur # 53 - 246','Suramerica',NULL,1,NULL,NULL,0,57,191,437,NULL,'2022-12-11 12:29:17','2022-12-11 12:29:17'),(174,NULL,'Carrera 25A # 38D SUR - 111','Chinguí',NULL,1,NULL,NULL,0,45,192,330,NULL,'2022-12-11 12:33:05','2022-12-11 12:33:05'),(175,NULL,'Carrera 59A # 57 - 06','Calatrava',NULL,1,NULL,NULL,0,57,193,437,NULL,'2022-12-11 12:47:15','2022-12-21 01:43:45'),(176,NULL,'Carrera 52E # 75A sur - 86','Santa Catalina',NULL,1,NULL,NULL,0,57,194,437,NULL,'2022-12-11 13:10:22','2023-01-11 01:07:24'),(177,NULL,'Carrera 39 # 48 - sur','la cuenca',NULL,1,NULL,NULL,0,45,195,330,NULL,'2022-12-11 13:10:45','2023-01-13 11:08:43'),(178,NULL,'Carrera 39 # 48 c sur - 36','la cuenca',NULL,1,NULL,NULL,0,45,195,330,NULL,'2022-12-11 13:16:24','2022-12-11 13:16:24'),(179,NULL,'Transversal 35sur # 27F - 51','la inmaculada',NULL,1,NULL,NULL,0,1101,196,1097,NULL,'2022-12-11 13:19:25','2023-01-17 17:46:43'),(180,NULL,'Carrera 44 # 17sur - 59','poblado',NULL,1,NULL,NULL,0,1,199,547,NULL,'2022-12-11 13:44:56','2023-01-11 00:56:45'),(181,NULL,'Calle 80 # 52a - 65','Santa Maria',NULL,1,NULL,NULL,0,57,198,437,NULL,'2022-12-11 13:57:09','2022-12-11 13:57:09'),(182,NULL,'Carrera 41 # 56 sur - 01','ASDESILLAS',NULL,1,NULL,NULL,0,85,201,772,NULL,'2022-12-11 13:58:29','2023-01-11 20:38:38'),(183,NULL,'Calle 66 # 43 - 52','simon bolivar la esmeralda',NULL,1,NULL,NULL,0,57,200,437,NULL,'2022-12-11 13:58:58','2023-01-10 22:22:28'),(184,NULL,'Avenida 47A # 61 - 15','NIQUIA',NULL,1,NULL,NULL,0,1,202,91,NULL,'2022-12-11 15:38:01','2023-10-03 13:45:49'),(185,NULL,'Carrera 52a # 75 - 06','Santamaria',NULL,1,NULL,NULL,0,57,183,437,NULL,'2022-12-11 15:43:12','2022-12-20 13:16:42'),(186,NULL,'Calle 37b sur # 27d - 44','loma de las brujas',NULL,1,NULL,NULL,0,45,203,330,NULL,'2022-12-11 15:48:33','2022-12-11 15:48:33'),(187,NULL,'Calle 75 # 49 - 89','santa maria',NULL,1,NULL,NULL,0,57,205,437,NULL,'2022-12-11 17:26:45','2023-01-11 01:52:10'),(188,NULL,'Carrera 27B # 27D Sur - 225','Cumbres',NULL,1,NULL,NULL,0,45,206,330,NULL,'2022-12-11 17:59:25','2022-12-11 17:59:25'),(189,NULL,'Carrera 48 # 98 - 250','tablza',NULL,1,NULL,NULL,0,62,207,463,NULL,'2022-12-11 18:46:56','2022-12-19 17:10:57'),(190,NULL,'Carrera 29 # 39 - 34','las brujad',NULL,1,NULL,NULL,0,45,208,330,NULL,'2022-12-11 18:53:01','2023-01-09 20:30:41'),(191,NULL,'Calle 61 sur # 39 - 70','la florida',NULL,1,NULL,NULL,0,85,210,772,NULL,'2022-12-11 19:33:00','2022-12-11 19:33:00'),(192,NULL,'Carrera 20 # 20 sur - 44','Poblado San Lukas',NULL,1,NULL,NULL,0,1,139,547,NULL,'2022-12-11 21:43:47','2022-12-11 21:43:47'),(193,NULL,'Carrera 20 # 20 sur - 44','Poblado San Lucas',NULL,1,NULL,NULL,0,1,139,547,NULL,'2022-12-11 21:52:28','2022-12-11 21:52:28'),(194,NULL,'Calle 75 # aasur - 53246','santa catalina',NULL,1,NULL,NULL,0,57,212,437,NULL,'2022-12-11 22:00:23','2023-01-11 02:06:47'),(195,NULL,'Calle 70 # 43 - 15','la barquereña',NULL,1,NULL,NULL,0,45,213,330,NULL,'2022-12-11 22:30:22','2022-12-11 22:30:22'),(196,NULL,'Calle 75sur # 52g - 40','la estrella',NULL,1,NULL,NULL,0,1,211,547,NULL,'2022-12-11 22:50:12','2022-12-11 22:50:12'),(197,NULL,'Calle 24Sur # 39 - 37','Zuñiga',NULL,1,NULL,NULL,0,45,214,330,NULL,'2022-12-11 22:54:44','2023-01-11 19:31:40'),(198,NULL,'Calle 76 # 41 - 67','Manrique Central',NULL,1,NULL,NULL,0,1,215,547,NULL,'2022-12-11 23:10:30','2022-12-30 08:47:29'),(199,NULL,'Calle 75 Sur # 52G - 40','Pilsen',NULL,1,NULL,NULL,0,62,211,463,NULL,'2022-12-11 23:33:22','2022-12-11 23:33:22'),(200,NULL,'Calle 37B sur # 27 - 17','loma de las brujas',NULL,1,NULL,NULL,0,45,216,330,NULL,'2022-12-12 01:50:24','2022-12-12 01:50:24'),(201,NULL,'Calle 4g # 81a - 105','loma de los bernal',NULL,1,NULL,NULL,0,1,217,547,NULL,'2022-12-12 02:31:43','2022-12-12 02:31:43'),(202,NULL,'Calle 50 # 53 - 19','perez',NULL,1,NULL,NULL,0,16,218,91,NULL,'2022-12-12 02:46:26','2022-12-22 11:35:12'),(203,NULL,'Carrera 7 # 26 - -','Alto de las Palmas',NULL,1,NULL,NULL,0,45,219,330,NULL,'2022-12-12 11:05:20','2023-01-10 16:49:57'),(204,NULL,'Calle 10e # 25 - 165','poblado',NULL,1,NULL,NULL,0,1,221,547,NULL,'2022-12-12 11:18:43','2022-12-12 11:18:43'),(205,NULL,'Calle 48c # # - -','Primavera',NULL,1,NULL,NULL,0,45,224,330,NULL,'2022-12-12 11:26:46','2022-12-20 13:06:24'),(206,NULL,'Carrera 30 # 62sur - 236','las brisas',NULL,1,NULL,NULL,0,85,223,772,NULL,'2022-12-12 11:27:51','2022-12-15 00:54:20'),(207,NULL,'Carrera 29a # 36dsur - 11','la pradera',NULL,1,NULL,NULL,0,45,222,330,NULL,'2022-12-12 11:29:07','2022-12-12 11:29:07'),(208,NULL,'Carrera 84b # 4G - 75','belen',NULL,1,NULL,NULL,0,1,226,547,NULL,'2022-12-12 11:43:02','2022-12-12 11:43:02'),(209,NULL,'Carrera 28 # 38 S - 40','loma de las brujas',NULL,1,NULL,NULL,0,45,225,330,NULL,'2022-12-12 11:43:57','2022-12-12 11:43:57'),(210,NULL,'Carrera 39 # 77sur - 84','San José',NULL,1,NULL,NULL,0,85,228,772,NULL,'2022-12-12 11:47:49','2022-12-12 11:47:49'),(211,NULL,'Carrera 57D # 40 - 28','los olivares',NULL,1,NULL,NULL,0,57,117,437,NULL,'2022-12-12 12:00:58','2023-01-11 01:55:28'),(212,NULL,'Calle 75sur # 53 - 10','suramérica',NULL,1,NULL,NULL,0,57,227,437,NULL,'2022-12-12 12:01:11','2022-12-12 12:01:11'),(213,NULL,'Carrera 25a # 38 - sur','chingui',NULL,1,NULL,NULL,0,45,229,330,NULL,'2022-12-12 12:01:15','2022-12-20 13:00:49'),(214,NULL,'Calle 27 sur # 27 - 92','loma el esmeraldal',NULL,1,NULL,NULL,0,45,231,330,NULL,'2022-12-12 12:21:49','2022-12-12 12:21:49'),(215,NULL,'Carrera 40 # 71 sur - 15','Aves Maria',NULL,1,NULL,NULL,0,85,233,772,NULL,'2022-12-12 12:33:37','2022-12-12 12:33:37'),(216,NULL,'Carrera 42 # 45 - sur','La Paz',NULL,1,NULL,NULL,0,45,234,330,NULL,'2022-12-12 12:51:31','2023-01-18 20:08:20'),(217,NULL,'Carrera 76 # 53 - 90','Los Colores',NULL,1,NULL,NULL,0,1,237,547,NULL,'2022-12-12 12:58:43','2023-01-11 21:33:12'),(218,NULL,'Calle 61 # 55 - 07','El Tablazo',NULL,1,NULL,NULL,0,57,235,437,NULL,'2022-12-12 12:59:30','2022-12-12 12:59:30'),(219,NULL,'Carrera 45 # 26 - 162','la madera',NULL,1,NULL,NULL,0,16,236,91,NULL,'2022-12-12 13:02:37','2022-12-12 13:02:37'),(220,NULL,'Carrera 82 # 9a-sur - -28','Rodeo alto',NULL,1,NULL,NULL,0,1,238,547,NULL,'2022-12-12 13:17:06','2023-01-10 20:14:13'),(221,NULL,'Calle 36 d sur # 26 a - 62','loma del escobero',NULL,1,NULL,NULL,0,45,240,330,NULL,'2022-12-12 13:23:06','2023-01-10 16:55:59'),(222,NULL,'Calle 37 # sur - 27_90','loma escobero',NULL,1,NULL,NULL,0,45,242,330,NULL,'2022-12-12 13:52:17','2023-04-24 18:54:44'),(223,NULL,'Calle 25C # # - -','Esmeraldal Parte Alta',NULL,1,NULL,NULL,0,45,243,330,NULL,'2022-12-12 13:59:50','2023-01-17 23:21:43'),(224,NULL,'Carrera 52e # 75a sur - 104','suramerica',NULL,1,NULL,NULL,0,57,244,437,NULL,'2022-12-12 14:28:49','2022-12-12 14:28:49'),(225,NULL,'Calle 37 sur # 36 - 41','mesa',NULL,1,NULL,NULL,0,45,245,330,NULL,'2022-12-12 14:44:54','2023-01-04 23:55:37'),(226,NULL,'Carrera 46B # 75sur - 43','Calle Larga',NULL,1,NULL,NULL,0,85,246,772,NULL,'2022-12-12 15:28:54','2022-12-12 15:28:54'),(227,NULL,'Carrera 45 # # - -','Pan de Azucar',NULL,1,NULL,NULL,0,85,247,772,NULL,'2022-12-12 15:49:10','2022-12-23 00:18:55'),(228,NULL,'Calle 28 sur # 27 - 100','loma los mesa',NULL,1,NULL,NULL,0,45,248,330,NULL,'2022-12-12 16:15:42','2022-12-12 16:15:42'),(229,NULL,'Calle 5sur # 25 - 130','Poblado',NULL,1,NULL,NULL,0,1,249,547,NULL,'2022-12-12 16:20:03','2022-12-12 16:20:03'),(230,NULL,'Calle 51a # 78 - 68','Los Colores',NULL,1,NULL,NULL,0,1,250,547,NULL,'2022-12-12 16:28:55','2022-12-12 16:28:55'),(231,NULL,'Calle 51a # 78 - 68','Los Colores',NULL,1,NULL,NULL,0,1,250,547,NULL,'2022-12-12 16:33:17','2022-12-12 16:33:17'),(232,NULL,'Carrera 25 # 39B sur - 101','CAMINO VERDE',NULL,1,NULL,NULL,0,45,251,330,NULL,'2022-12-12 16:37:55','2022-12-12 16:37:55'),(233,NULL,'Carrera 47 # 39 - -s 22','alcala',NULL,1,NULL,NULL,0,45,252,330,NULL,'2022-12-12 16:38:54','2023-04-13 15:16:21'),(234,NULL,'Calle 50 # 53 - 19','perez',NULL,1,NULL,NULL,0,16,218,91,NULL,'2022-12-12 16:41:29','2023-01-06 13:16:06'),(235,NULL,'Carrera 36A # 75a - 30','Manrique oriental',NULL,1,NULL,NULL,0,1,253,547,NULL,'2022-12-12 16:57:52','2023-01-11 16:40:50'),(236,NULL,'Carrera 40B # 15 - 180','poblado',NULL,1,NULL,NULL,0,1,255,547,NULL,'2022-12-12 17:26:34','2022-12-20 21:29:58'),(237,NULL,'Calle 59 # 60 - 13','calatrava',NULL,1,NULL,NULL,0,57,256,437,NULL,'2022-12-12 17:31:15','2022-12-12 17:31:15'),(238,NULL,'Calle 27sur # 27b - 100','Loma el Esmeraldal',NULL,1,NULL,NULL,0,45,257,330,NULL,'2022-12-12 17:32:09','2022-12-12 17:32:09'),(239,NULL,'Calle 59 # 60 - 13','calatrava',NULL,1,NULL,NULL,0,57,256,437,NULL,'2022-12-12 17:37:07','2022-12-12 17:37:07'),(240,NULL,'Calle 70 # 58 - 133','Loma Los Gomez',NULL,1,NULL,NULL,0,57,258,437,NULL,'2022-12-12 17:47:01','2022-12-20 13:10:18'),(241,NULL,'Calle 70 # 59 - 193',NULL,NULL,1,NULL,NULL,0,57,260,437,NULL,'2022-12-12 18:07:53','2022-12-12 18:07:53'),(242,NULL,'Calle 80 # # - -','SAN REMO',NULL,1,NULL,NULL,0,85,262,772,NULL,'2022-12-12 18:32:43','2022-12-19 19:53:25'),(243,NULL,'Carrera 45 # 45 - 54','asturias',NULL,1,NULL,NULL,0,57,263,437,NULL,'2022-12-12 19:26:24','2023-01-27 19:31:39'),(244,NULL,'Carrera 49a # 100 - cc sur-79','La Tablaza',NULL,1,NULL,NULL,0,62,264,463,NULL,'2022-12-12 19:56:38','2022-12-12 19:56:38'),(245,NULL,'Calle 77sur # 43 - 47','prados de sabaneta',NULL,1,NULL,NULL,0,85,265,772,NULL,'2022-12-12 20:04:02','2022-12-12 20:04:02'),(246,NULL,'Diagonal 54 # 17av - 100','bello',NULL,1,NULL,NULL,0,1,267,547,NULL,'2022-12-12 20:30:47','2022-12-12 20:30:47'),(247,NULL,'Diagonal 54 # 17 - 100','bello',NULL,1,NULL,NULL,0,1,267,547,NULL,'2022-12-12 21:11:16','2022-12-12 21:11:16'),(248,NULL,'Carrera 27 # 37 b - sur 69','loma de las brujas',NULL,1,NULL,NULL,0,45,269,330,NULL,'2022-12-12 21:41:48','2022-12-12 21:41:48'),(249,NULL,'Carrera 27 # 37 b - sur 69','loma de las brujas',NULL,1,NULL,NULL,0,45,269,330,NULL,'2022-12-12 21:46:03','2022-12-12 21:46:03'),(250,NULL,'Carrera 17B # 47 - 25','Buenos Aires',NULL,1,NULL,NULL,0,1,270,547,NULL,'2022-12-12 22:15:45','2023-01-10 14:48:01'),(251,NULL,'Calle 45 AA sur # 36 - 10','Las Antillas',NULL,1,NULL,NULL,0,45,271,330,NULL,'2022-12-12 22:20:19','2023-04-15 10:57:54'),(252,NULL,'Carrera 46C # 75 - -','Calle Larga',NULL,1,NULL,NULL,0,85,273,772,NULL,'2022-12-12 23:11:27','2023-01-09 01:37:32'),(253,NULL,'Calle 45A Sur # 39B - 22','LOMA DE LAS ANTILLAS',NULL,1,NULL,NULL,0,45,272,330,NULL,'2022-12-12 23:12:13','2022-12-12 23:12:13'),(254,NULL,'Diagonal 29 # 26 a sur - 177','Alto de Misael',NULL,1,NULL,NULL,0,45,274,330,NULL,'2022-12-12 23:54:13','2022-12-22 15:56:06'),(255,NULL,'Diagonal 29 # 26 a sur - 177','Alto de misael',NULL,1,NULL,NULL,0,45,274,330,NULL,'2022-12-13 00:00:11','2022-12-13 00:00:11'),(256,NULL,'Calle 39 # 52 - 95','san jose obrero',NULL,1,NULL,NULL,0,16,275,91,NULL,'2022-12-13 00:21:57','2022-12-13 00:21:57'),(257,NULL,'Carrera 27 # 23 sur - 69','benedictinos',NULL,1,NULL,NULL,0,45,276,330,NULL,'2022-12-13 00:43:57','2022-12-13 00:43:57'),(258,NULL,'Carrera 50C # 2Sur - 39','Cristo Rey',NULL,1,NULL,NULL,0,1,277,547,NULL,'2022-12-13 01:45:15','2022-12-13 01:45:15'),(259,NULL,'Carrera 50C # 2 Sur - 39','Cristo Rey',NULL,1,NULL,NULL,0,1,277,547,NULL,'2022-12-13 01:51:04','2022-12-13 01:51:04'),(260,NULL,'Calle 16 # 45 - 25','poblado',NULL,1,NULL,NULL,0,1,278,547,NULL,'2022-12-13 10:14:19','2022-12-13 10:14:19'),(261,NULL,'Carrera 35A # 77 sur - 71','loma san jose',NULL,1,NULL,NULL,0,85,279,772,NULL,'2022-12-13 11:15:37','2022-12-13 11:15:37'),(262,NULL,'Carrera 55 # 110 - s162','El Cano',NULL,1,NULL,NULL,0,24,280,144,NULL,'2022-12-13 13:01:38','2023-01-30 17:37:04'),(263,NULL,'Carrera 38 # 75 - b115','san Jose',NULL,1,NULL,NULL,0,85,281,772,NULL,'2022-12-13 13:13:47','2023-01-16 11:14:53'),(264,NULL,'Calle 41sur # 78 - 29','parque principal de san Antonio de prado',NULL,1,NULL,NULL,0,1,268,547,NULL,'2022-12-13 13:40:03','2022-12-13 13:40:03'),(265,NULL,'Calle 27 sur # 25b - 64','El Esmeraldal',NULL,1,NULL,NULL,0,45,282,330,NULL,'2022-12-13 14:22:25','2023-01-06 16:08:26'),(266,NULL,'Carrera 36d # 43sur - 100','Las Antillas',NULL,1,NULL,NULL,0,45,284,330,NULL,'2022-12-13 15:47:24','2023-01-04 22:31:58'),(267,NULL,'Carrera 38 # 75bsur - 257','Ed Baluarte',NULL,1,NULL,NULL,0,85,286,772,NULL,'2022-12-13 15:55:30','2023-01-19 00:14:59'),(268,NULL,'Calle 73 sur  sur # 63 AA - 185','Ferrería',NULL,1,NULL,NULL,0,62,283,463,NULL,'2022-12-13 16:09:44','2022-12-13 16:09:44'),(269,NULL,'Calle 32c # 65f - 23','belen fatima',NULL,1,NULL,NULL,0,1,289,547,NULL,'2022-12-13 16:23:42','2023-01-09 18:59:13'),(270,NULL,'Calle 58 # sur - 58','limonara',NULL,1,NULL,NULL,0,1,290,547,NULL,'2022-12-13 16:28:03','2023-01-02 15:55:56'),(271,NULL,'Calle 46 # 42 - 37','bombona',NULL,1,NULL,NULL,0,1,291,547,NULL,'2022-12-13 16:42:23','2022-12-13 16:42:23'),(272,NULL,'Calle 104a # 74a - 25','pedregal',NULL,1,NULL,NULL,0,1,121,547,NULL,'2022-12-13 17:02:43','2023-01-07 02:19:10'),(273,NULL,'Calle 73 # # - -','la estrella',NULL,1,NULL,NULL,0,62,292,463,NULL,'2022-12-13 17:59:32','2023-01-22 15:47:53'),(274,NULL,'Calle 42b # 117a - 07','san javier',NULL,1,NULL,NULL,0,1,285,547,NULL,'2022-12-13 19:07:56','2022-12-13 19:07:56'),(275,NULL,'Carrera 34 # 40A - 63','Salvador',NULL,1,NULL,NULL,0,1,232,547,NULL,'2022-12-13 19:14:32','2022-12-13 19:14:32'),(276,NULL,'Calle 76 Sur # 57 - 86','Toledo',NULL,1,NULL,NULL,0,62,288,463,NULL,'2022-12-13 20:38:09','2022-12-13 20:38:09'),(277,NULL,'Transversal 32c sur # 32b - 30','la magnolia',NULL,1,NULL,NULL,0,45,293,330,NULL,'2022-12-13 21:05:53','2022-12-13 21:05:53'),(278,NULL,'Calle 81a # 69 - 4','Cordoba',NULL,1,NULL,NULL,0,1,295,547,NULL,'2022-12-13 21:33:04','2022-12-13 21:33:04'),(279,NULL,'Carrera 59 # 70 - 349','santa maria',NULL,1,NULL,NULL,0,57,294,437,NULL,'2022-12-13 21:36:38','2022-12-13 21:36:38'),(280,NULL,'Diagonal 31 # 27 - 49','Pontevedra',NULL,1,NULL,NULL,0,45,296,330,NULL,'2022-12-13 21:43:34','2022-12-13 21:43:34'),(281,NULL,'Calle 34 # 28 - 26','vereda la miel',NULL,1,NULL,NULL,0,24,261,144,NULL,'2022-12-13 22:08:10','2022-12-13 22:08:10'),(282,NULL,'Carrera 25 # 39 - Sur','Chingui',NULL,1,NULL,NULL,0,45,298,330,NULL,'2022-12-13 23:40:10','2023-01-10 15:04:18'),(283,NULL,'Carrera 27A # 36D - -','Escobero',NULL,1,NULL,NULL,0,45,297,330,NULL,'2022-12-13 23:45:10','2023-01-18 12:32:46'),(284,NULL,'Carrera 32 # 27b - 02','loma del indio',NULL,1,NULL,NULL,0,1,299,547,NULL,'2022-12-14 00:18:03','2022-12-14 00:18:03'),(285,NULL,'Calle 71 # # - -','las lomitas',NULL,1,NULL,NULL,0,85,300,772,NULL,'2022-12-14 02:39:54','2023-01-10 19:12:06'),(286,NULL,'Carrera 27G # 35sur - 175','La Inmaculada',NULL,1,NULL,NULL,0,45,301,330,NULL,'2022-12-14 08:48:43','2022-12-14 08:48:43'),(287,NULL,'Calle 25b sur # 45 - 50','villa grande',NULL,1,NULL,NULL,0,45,303,330,NULL,'2022-12-14 09:16:01','2022-12-14 09:16:01'),(288,NULL,'Carrera 26 # 20a sursur - 10','San lucas',NULL,1,NULL,NULL,0,1,302,547,NULL,'2022-12-14 09:16:29','2022-12-14 09:16:29'),(289,NULL,'Calle 49f # 87 - 35','Calasanz',NULL,1,NULL,NULL,0,1,305,547,NULL,'2022-12-14 10:44:21','2022-12-14 10:44:21'),(290,NULL,'Carrera 52g # 75sur - 120','suramerica',NULL,1,NULL,NULL,0,57,304,437,NULL,'2022-12-14 10:49:45','2022-12-14 10:49:45'),(291,NULL,'Calle 5 # 76A - 150-','Belén',NULL,1,NULL,NULL,0,1,306,547,NULL,'2022-12-14 18:06:41','2022-12-20 22:02:56'),(292,NULL,'Calle 37 d sur # 27b - 125','loma de las brujas',NULL,1,NULL,NULL,0,45,307,330,NULL,'2022-12-14 18:19:28','2022-12-14 18:19:28'),(293,NULL,'Carrera 39 # 77 sur - 84','San José',NULL,1,NULL,NULL,0,85,308,772,NULL,'2022-12-14 18:36:53','2022-12-14 18:36:53'),(294,NULL,'Carrera 53 # 73 sur - 40','suramerica',NULL,1,NULL,NULL,0,57,310,437,NULL,'2022-12-14 19:05:39','2022-12-14 19:05:39'),(295,NULL,'Carrera 24b # 40a sur - 52','la mina',NULL,1,NULL,NULL,0,45,309,330,NULL,'2022-12-14 19:35:35','2022-12-21 16:53:45'),(296,NULL,'Calle 75 # 52 - 40','suramerica',NULL,1,NULL,NULL,0,62,311,463,NULL,'2022-12-14 20:01:02','2022-12-14 20:01:02'),(297,NULL,'Calle 26 # 43 - 41','Otra parte',NULL,1,NULL,NULL,0,45,312,330,NULL,'2022-12-14 20:08:03','2022-12-20 13:02:24'),(298,NULL,'Carrera 53 # 73 - 40','Santa Catalina',NULL,1,NULL,NULL,0,57,314,437,NULL,'2022-12-14 20:11:43','2022-12-14 20:11:43'),(299,NULL,'Calle 36b # 52a - 20','Malta',NULL,1,NULL,NULL,0,57,313,437,NULL,'2022-12-14 20:23:36','2022-12-14 20:23:36'),(300,NULL,'Calle 27 # c - 51','Cumbres',NULL,1,NULL,NULL,0,45,239,330,NULL,'2022-12-14 20:25:48','2023-01-10 19:45:05'),(301,NULL,'Calle 3 a sur # 75da - 30','la mota',NULL,1,NULL,NULL,0,1,316,547,NULL,'2022-12-14 20:31:14','2022-12-14 20:31:14'),(302,NULL,'Calle 54 # 123b - 30','San Cristóbal',NULL,1,NULL,NULL,0,1,315,547,NULL,'2022-12-14 20:40:17','2023-02-10 13:10:45'),(303,NULL,'Carrera 43a # 75 sur - 38','lagos de la doctora',NULL,1,NULL,NULL,0,85,318,772,NULL,'2022-12-14 21:10:32','2023-01-10 18:17:57'),(304,NULL,'Carrera 46C # 80 - -','pan de azucar',NULL,1,NULL,NULL,0,85,319,772,NULL,'2022-12-14 21:26:23','2023-01-10 14:16:40'),(305,NULL,'Carrera 27d # 34a - 48','alto de los raves',NULL,1,NULL,NULL,0,45,69,330,NULL,'2022-12-14 21:47:07','2022-12-14 21:47:07'),(306,NULL,'Carrera 48 # 76d - sur','cersmica',NULL,1,NULL,NULL,0,85,241,772,NULL,'2022-12-14 22:11:41','2022-12-14 22:11:41'),(307,NULL,'Carrera 41 # 71 - 31','Manrique Central',NULL,1,NULL,NULL,0,1,320,547,NULL,'2022-12-14 22:25:44','2023-01-11 01:39:42'),(308,NULL,'Calle 7aa # 30 - 60','poblado',NULL,1,NULL,NULL,0,1,322,547,NULL,'2022-12-14 23:41:58','2022-12-14 23:41:58'),(309,NULL,'Calle 62 # 109 a - 10','Robledo Santa Margarita',NULL,1,NULL,NULL,0,1,323,547,NULL,'2022-12-15 00:03:07','2022-12-15 00:03:07'),(310,NULL,'Carrera 38 # 75 b sur - 115','lagos de la doctora',NULL,1,NULL,NULL,0,85,324,772,NULL,'2022-12-15 00:14:10','2022-12-15 00:14:10'),(311,NULL,'Carrera 52 # 34 - 16','las margaritas',NULL,1,NULL,NULL,0,57,325,437,NULL,'2022-12-15 00:16:48','2022-12-15 00:16:48'),(312,NULL,'Carrera 39 # 65 - 42','villa hermosa',NULL,1,NULL,NULL,0,1,326,547,NULL,'2022-12-15 01:54:15','2022-12-29 21:04:06'),(313,NULL,'Calle 48f # # - -','Señorial',NULL,1,NULL,NULL,0,45,328,330,NULL,'2022-12-15 03:17:43','2023-01-03 20:20:27'),(314,NULL,'Transversal 49A Sur # 62 C - 23 INT201','El Limonar',NULL,1,NULL,NULL,0,1,329,547,NULL,'2022-12-15 03:51:08','2022-12-15 03:51:08'),(315,NULL,'Carrera 32 # 5G - 70','Provenza',NULL,1,NULL,NULL,0,1,330,547,NULL,'2022-12-15 04:46:04','2023-01-24 20:58:49'),(316,NULL,'Calle 65 # 57 - 36','Ferrara',NULL,1,NULL,NULL,0,57,332,437,NULL,'2022-12-15 12:08:20','2022-12-15 12:08:20'),(317,NULL,'Calle 39s # 25 - c89','Chingui',NULL,1,NULL,NULL,0,45,331,330,NULL,'2022-12-15 12:10:32','2022-12-15 12:10:32'),(318,NULL,'Calle 36d sur # 27d - 29','loma escobero',NULL,1,NULL,NULL,0,45,333,330,NULL,'2022-12-15 12:31:39','2022-12-15 12:31:39'),(319,NULL,'Carrera 27 # # - sur','Loma del Chocho',NULL,1,NULL,NULL,0,45,334,330,NULL,'2022-12-15 14:24:23','2023-01-21 15:48:23'),(320,NULL,'Calle 70 # 59 - 193','Villaventura',NULL,1,NULL,NULL,0,57,338,437,NULL,'2022-12-15 15:54:56','2023-10-03 22:44:59'),(321,NULL,'Carrera 49 # 87 - 36','san fernando',NULL,1,NULL,NULL,0,57,339,437,NULL,'2022-12-15 17:02:39','2022-12-15 17:02:39'),(322,NULL,'Carrera 45 a # 80 - 75','cañaveralejo',NULL,1,NULL,NULL,0,85,340,772,NULL,'2022-12-15 17:13:56','2022-12-15 17:13:56'),(323,NULL,'Carrera 43 # 32 - 39','san diego',NULL,1,NULL,NULL,0,1,341,547,NULL,'2022-12-15 18:32:11','2023-01-17 17:34:15'),(324,NULL,'Calle 51 # 82 - 190','calasanz',NULL,1,NULL,NULL,0,1,342,547,NULL,'2022-12-15 19:42:47','2022-12-15 19:42:47'),(325,NULL,'Calle 40sur # 29 - 97','san jose',NULL,1,NULL,NULL,0,45,345,330,NULL,'2022-12-15 20:58:13','2023-01-07 02:00:48'),(326,NULL,'Calle 75 aa # 53 - 90','suramerica',NULL,1,NULL,NULL,0,57,346,437,NULL,'2022-12-15 21:21:48','2022-12-15 21:21:48'),(327,NULL,'Carrera 63 # 33 - 60','ditaires',NULL,1,NULL,NULL,0,57,344,437,NULL,'2022-12-15 22:25:06','2022-12-15 22:25:06'),(328,NULL,'Calle 70 # 58 - 133','el guayabo',NULL,1,NULL,NULL,0,57,321,437,NULL,'2022-12-15 23:32:45','2023-01-21 15:16:11'),(329,NULL,'Carrera 23 # ab - 123','vereda carrizales',NULL,1,NULL,NULL,0,1,186,547,NULL,'2022-12-16 02:06:41','2022-12-16 02:06:41'),(330,NULL,'Calle 27d sur # 23c sur - 169','Cumbres',NULL,1,NULL,NULL,0,45,348,330,NULL,'2022-12-16 02:26:34','2022-12-16 02:26:34'),(331,NULL,'Carrera 39 # 77 sur - 84','san jose',NULL,1,NULL,NULL,0,85,349,772,NULL,'2022-12-16 09:52:06','2022-12-16 09:52:06'),(332,NULL,'Calle 71sur # 33 - 150','Las Lomitas',NULL,1,NULL,NULL,0,85,350,772,NULL,'2022-12-16 10:44:27','2022-12-16 10:44:27'),(333,NULL,'Calle 76sur # 46 - 22','calle larga',NULL,1,NULL,NULL,0,85,352,772,NULL,'2022-12-16 11:57:30','2022-12-16 11:57:30'),(334,NULL,'Calle 56 # 40 - 80','mirador de las flores',NULL,1,NULL,NULL,0,85,343,772,NULL,'2022-12-16 12:02:27','2023-01-31 22:21:42'),(335,NULL,'Calle 65 # # - -','carmelo',NULL,1,NULL,NULL,0,85,354,772,NULL,'2022-12-16 12:16:09','2023-01-10 23:40:31'),(336,NULL,'Calle 6 Sur # 70 - 21t','Rodeo Alto',NULL,1,NULL,NULL,0,1,327,547,NULL,'2022-12-16 12:54:14','2022-12-16 12:54:14'),(337,NULL,'Calle 36d # # - -','Loma Escobero',NULL,1,NULL,NULL,0,45,355,330,NULL,'2022-12-16 14:15:34','2022-12-16 14:20:59'),(338,NULL,'Carrera 29a # 8sur - 65','Poblado',NULL,1,NULL,NULL,0,1,357,547,NULL,'2022-12-16 14:19:48','2022-12-17 15:00:10'),(339,NULL,'Carrera 32 # 5 - 70','poblado',NULL,1,NULL,NULL,0,1,358,547,'2023-08-18 19:28:20','2022-12-16 14:39:23','2023-08-18 19:28:20'),(340,NULL,'Calle 37 # 47 - 06','alcala',NULL,1,NULL,NULL,0,45,359,330,NULL,'2022-12-16 15:11:59','2022-12-16 15:11:59'),(341,NULL,'Calle 46 d sur # 42 d - 80','LA PAZ',NULL,1,NULL,NULL,0,45,287,330,NULL,'2022-12-16 15:43:15','2022-12-16 15:43:15'),(342,NULL,'Carrera 6B # 49A - 26','Buenos aires',NULL,1,NULL,NULL,0,1,360,547,NULL,'2022-12-16 16:02:34','2022-12-27 03:46:59'),(343,NULL,'Calle 69 # sur - cra46','calle del banco',NULL,1,NULL,NULL,0,85,361,772,NULL,'2022-12-16 17:08:12','2022-12-16 17:08:12'),(344,NULL,'Carrera 25 # 10b - 190','poblado',NULL,1,NULL,NULL,0,1,362,547,NULL,'2022-12-16 17:48:15','2022-12-16 17:48:15'),(345,NULL,'Carrera 25 # 39ss - 15','el chinguí',NULL,1,NULL,NULL,0,45,363,330,NULL,'2022-12-16 18:36:05','2023-01-16 23:48:23'),(346,NULL,'Calle 5 # 76A - 150','belen',NULL,1,NULL,NULL,0,1,364,547,NULL,'2022-12-16 19:59:51','2022-12-16 19:59:51'),(347,NULL,'Calle 89-b b # 72 - 103','Alfonzo lopez',NULL,1,NULL,NULL,0,1,366,547,NULL,'2022-12-16 20:22:37','2022-12-16 20:22:37'),(348,NULL,'Carrera 96A # 62D - 93 Int 301','Robledo',NULL,1,NULL,NULL,0,1,365,547,NULL,'2022-12-16 21:27:18','2022-12-16 21:27:18'),(349,NULL,'Carrera 27 # 28sur - 51','ESMERALDAL',NULL,1,NULL,NULL,0,45,368,330,NULL,'2022-12-16 21:48:08','2023-01-16 12:47:51'),(350,NULL,'Calle 77sur # 35a - 113','san jose',NULL,1,NULL,NULL,0,85,367,772,NULL,'2022-12-16 21:48:53','2023-01-13 14:33:41'),(351,NULL,'Calle 78ESur # 47C - 80','Ancon Sur',NULL,1,NULL,NULL,0,85,369,772,NULL,'2022-12-16 23:52:51','2022-12-16 23:52:51'),(352,NULL,'Carrera 35 # 55 - 40','Boston',NULL,1,NULL,NULL,0,1,370,547,NULL,'2022-12-17 00:40:06','2022-12-17 00:40:06'),(353,NULL,'Calle 96c # 81 - 8','robledo',NULL,1,NULL,NULL,0,1,122,547,NULL,'2022-12-17 02:16:41','2022-12-17 02:16:41'),(354,NULL,'Carrera 49A # 89 - 45','ARANJUEZ',NULL,1,NULL,NULL,0,1,371,547,NULL,'2022-12-17 09:28:15','2022-12-17 09:28:15'),(355,NULL,'Calle 65 sur # 40 - 18','ALCAZARES',NULL,1,NULL,NULL,0,85,372,772,NULL,'2022-12-17 13:34:16','2022-12-17 13:34:16'),(356,NULL,'Calle 27 D sur # 28 - 50','abadia',NULL,1,NULL,NULL,0,45,375,330,NULL,'2022-12-18 12:27:36','2022-12-18 12:27:36'),(357,NULL,'Calle 26 sur # 23 a - 04','la calleja',NULL,1,NULL,NULL,0,45,111,330,NULL,'2022-12-18 13:17:14','2022-12-18 13:17:14'),(358,NULL,'Carrera 45b # 33bsur - 45','el portal',NULL,1,NULL,NULL,0,45,377,330,NULL,'2022-12-18 14:01:25','2022-12-18 14:01:25'),(359,NULL,'Calle 5 # 25 - 130','el piblado',NULL,1,NULL,NULL,0,1,379,547,NULL,'2022-12-19 12:02:16','2022-12-19 12:02:16'),(360,NULL,'Avenida Calle # # - -','Eduardo Santos',NULL,1,NULL,NULL,0,217,381,107,NULL,'2022-12-19 17:08:06','2022-12-19 17:09:12'),(361,NULL,'Calle 33 # 34 - 68','Buenos Aires',NULL,1,NULL,NULL,0,1,259,547,NULL,'2022-12-19 18:32:18','2022-12-19 18:32:18'),(362,NULL,'Carrera 27 # 37 B Sur - 69','Chingui',NULL,1,NULL,NULL,0,45,382,330,NULL,'2022-12-20 00:19:54','2023-05-06 11:15:16'),(363,NULL,'Calle 52 # 63 - 13','carmelo',NULL,1,NULL,NULL,0,16,197,91,NULL,'2022-12-20 11:03:52','2022-12-28 11:55:12'),(364,NULL,'Calle 77 # 35 - 15','san jose',NULL,1,NULL,NULL,0,85,376,772,NULL,'2022-12-20 22:25:11','2022-12-20 22:25:11'),(365,NULL,'Carrera 27B # 37Bsur - 83','Las Brujas',NULL,1,NULL,NULL,0,45,385,330,NULL,'2022-12-21 13:14:44','2022-12-21 13:14:44'),(366,NULL,'Calle 92d # 67 - 63','francisco antonio zea',NULL,1,NULL,NULL,0,1,386,547,NULL,'2022-12-21 14:29:35','2022-12-21 14:29:35'),(367,NULL,'Carrera 27a # 36d - -','La pradera',NULL,1,NULL,NULL,0,45,388,330,NULL,'2022-12-21 20:17:52','2022-12-26 14:33:11'),(368,NULL,'Carrera 50 # 76 SUR - 189','La Florida',NULL,1,NULL,NULL,0,57,390,437,NULL,'2022-12-22 15:32:14','2022-12-22 15:32:14'),(369,NULL,'Carrera 39E # 48CSUR - 103','LA CUENCA',NULL,1,NULL,NULL,0,45,391,330,NULL,'2022-12-22 19:14:08','2022-12-22 19:14:08'),(370,NULL,'Calle 24 # 38 - 05','envigado',NULL,1,NULL,NULL,0,1,347,547,NULL,'2022-12-22 19:34:00','2023-01-10 20:06:13'),(371,NULL,'Calle 78 sur # 40 - 211','San Remo',NULL,1,NULL,NULL,0,85,392,772,NULL,'2022-12-23 00:55:43','2022-12-23 00:55:43'),(372,NULL,'Calle 65Sur # 42B - 14','Alcazares',NULL,1,NULL,NULL,0,85,394,772,NULL,'2022-12-24 09:41:44','2022-12-24 09:46:43'),(373,NULL,'Carrera 44 # 18 - 56','Ciudad del Río',NULL,1,NULL,NULL,0,1,395,547,NULL,'2022-12-26 11:47:56','2022-12-26 11:47:56'),(374,NULL,'Carrera 27 # 23 - -','zuñiga',NULL,1,NULL,NULL,0,45,396,330,NULL,'2022-12-26 12:40:40','2023-01-10 00:20:48'),(375,NULL,'Calle 69sur # 46A - 14','Sabaneta',NULL,1,NULL,NULL,0,85,397,772,NULL,'2022-12-28 02:30:37','2023-02-23 19:49:05'),(376,NULL,'Calle u # bsurr - 40','Florida',NULL,1,NULL,NULL,0,85,398,772,NULL,'2022-12-28 16:21:38','2022-12-28 16:24:36'),(377,NULL,'Carrera 27G # 35sur - 175','Inmaculada',NULL,1,NULL,NULL,0,45,399,330,NULL,'2022-12-29 12:17:23','2022-12-29 12:17:23'),(378,NULL,'Carrera 46 b # 43 sur - 20','milan',NULL,1,NULL,NULL,0,45,400,330,NULL,'2022-12-29 22:29:41','2022-12-29 22:29:41'),(379,NULL,'Calle 40 # 45 - 15','Alcala',NULL,1,NULL,NULL,0,45,380,330,NULL,'2023-01-01 16:52:48','2023-01-01 16:52:48'),(380,NULL,'Carrera 52g # 75 sur - 120','suramerica',NULL,1,NULL,NULL,0,57,378,437,NULL,'2023-01-02 14:46:07','2023-01-02 14:46:07'),(381,NULL,'Carrera 26 b # 37 b sur - 70','las brujas',NULL,1,NULL,NULL,0,45,401,330,NULL,'2023-01-02 19:03:21','2023-01-02 19:03:21'),(382,NULL,'Calle 82 # 32 - 15','la chinca',NULL,1,NULL,NULL,0,62,403,463,NULL,'2023-01-03 11:23:42','2023-01-03 11:23:42'),(383,NULL,'Carrera 42a # 85 - 69','Manrique',NULL,1,NULL,NULL,0,1,405,547,NULL,'2023-01-04 20:17:49','2023-01-04 20:17:49'),(384,NULL,'Calle 27 d sur # 27b - 101','la inmaculada',NULL,1,NULL,NULL,0,45,393,330,NULL,'2023-01-04 20:45:12','2023-01-04 20:47:05'),(385,NULL,'Calle 75 sur # 34 - 240','La doctora',NULL,1,NULL,NULL,0,85,406,772,NULL,'2023-01-04 20:53:07','2023-01-04 20:53:07'),(386,NULL,'Calle 39Bs # 25aa - 26','chingui',NULL,1,NULL,NULL,0,45,408,330,NULL,'2023-01-05 14:39:02','2023-01-06 17:47:44'),(387,NULL,'Calle 62 # 109 a - 10','Robledo santa Margarita',NULL,1,NULL,NULL,0,1,409,547,NULL,'2023-01-05 15:28:29','2023-01-10 01:15:15'),(388,NULL,'Avenida Carrera # # - -','urbanizacion los balsos',NULL,1,NULL,NULL,0,1,410,547,NULL,'2023-01-05 16:56:34','2023-01-10 15:06:34'),(389,NULL,'Calle 66C # 91A - 05','Robledo',NULL,1,NULL,NULL,0,1,412,547,NULL,'2023-01-06 11:55:10','2023-01-06 11:55:10'),(390,NULL,'Calle 2b # 81a - 513','belen',NULL,1,NULL,NULL,0,1,413,547,NULL,'2023-01-06 15:51:52','2023-01-06 15:51:52'),(391,NULL,'Carrera 59 # 70 - 349','unidad ciudadela del valle',NULL,1,NULL,NULL,0,57,414,437,NULL,'2023-01-06 18:29:15','2023-01-06 18:37:04'),(392,NULL,'Calle 20Asur # 22 - 84','san lucas poblado',NULL,1,NULL,NULL,0,1,351,547,NULL,'2023-01-06 20:43:52','2023-01-11 16:01:17'),(393,NULL,'Calle 24 # 58 - 98','Barrio Nuevo',NULL,1,NULL,NULL,0,16,155,91,NULL,'2023-01-07 01:02:57','2023-01-07 01:02:57'),(394,NULL,'Calle 39b # # - 28-115','San José',NULL,1,NULL,NULL,0,45,416,330,NULL,'2023-01-07 12:27:55','2023-02-22 01:30:45'),(395,NULL,'Calle 27 sur # 28 - 49','La Abadia',NULL,1,NULL,NULL,0,45,417,330,NULL,'2023-01-07 14:52:08','2023-01-07 15:59:56'),(396,NULL,'Carrera 36D # 43sur - 180','las antillas',NULL,1,NULL,NULL,0,45,418,330,NULL,'2023-01-08 11:16:48','2023-01-08 11:21:55'),(397,NULL,'Carrera 15a # 54a - 19','caicedo',NULL,1,NULL,NULL,0,1,415,547,NULL,'2023-01-08 13:57:28','2023-01-08 13:57:28'),(398,NULL,'Calle 27D Sur # 28 - 50','La Abadia',NULL,1,NULL,NULL,0,45,419,330,NULL,'2023-01-09 04:23:31','2023-01-09 04:23:31'),(399,NULL,'Diagonal 55 # 44 - 72','niquia',NULL,1,NULL,NULL,1,16,420,91,NULL,'2023-01-09 21:52:17','2023-06-07 19:55:11'),(400,NULL,'Carrera 31a # 80 - 26','manrique oriental',NULL,1,NULL,NULL,0,1,422,547,NULL,'2023-01-10 16:11:09','2023-01-10 16:11:09'),(401,NULL,'Calle 50 # 53- - 19','perez',NULL,1,NULL,NULL,0,16,423,91,NULL,'2023-01-10 16:46:07','2023-01-10 16:46:07'),(402,NULL,'Carrera 27 # 37b - 69','loma de mas brujas',NULL,1,NULL,NULL,0,45,424,330,NULL,'2023-01-10 19:57:10','2023-02-21 11:19:41'),(403,NULL,'Calle 36dsur # 27d - 29','la pradera',NULL,1,NULL,NULL,0,45,425,330,NULL,'2023-01-10 21:11:31','2023-01-10 21:11:31'),(404,NULL,'Carrera 20 # 20 sur - 44','san lucas el poblado',NULL,1,NULL,NULL,0,1,427,547,NULL,'2023-01-10 22:33:25','2023-01-10 22:33:25'),(405,NULL,'Carrera 35 # 55 - 40','Boston',NULL,1,NULL,NULL,0,1,426,547,NULL,'2023-01-10 22:37:04','2023-01-10 22:37:04'),(406,NULL,'Calle 40su # 41 - 44','El Dorado',NULL,1,NULL,NULL,0,45,428,330,NULL,'2023-01-10 23:45:59','2023-01-10 23:45:59'),(407,NULL,'Calle 36 # 27 - 10','loma del chocho',NULL,1,NULL,NULL,0,45,429,330,NULL,'2023-01-11 02:01:02','2023-01-11 02:01:02'),(408,NULL,'Calle 36 # sur - 26','El Chocho',NULL,1,NULL,NULL,0,45,430,330,NULL,'2023-01-11 12:43:03','2023-01-11 12:44:05'),(409,NULL,'Calle 17 a sur # 44 - 170','poblado',NULL,1,NULL,NULL,0,1,431,547,NULL,'2023-01-11 13:16:40','2023-01-11 13:16:40'),(410,NULL,'Carrera 30 # 72 sur - 02','la doctora',NULL,1,NULL,NULL,0,85,432,772,NULL,'2023-01-11 17:54:20','2023-01-11 17:54:20'),(411,NULL,'Carrera 81 # 4g - 65','belen',NULL,1,NULL,NULL,0,1,435,547,NULL,'2023-01-11 20:23:59','2023-01-11 20:23:59'),(412,NULL,'Calle 43 sur # 59 - 70','San Antonio de Prado',NULL,1,NULL,NULL,0,1,434,547,NULL,'2023-01-11 20:24:30','2023-01-11 20:44:25'),(413,NULL,'Carrera 29B # 40CS - 52','La Florida',NULL,1,NULL,NULL,0,45,436,330,NULL,'2023-01-11 23:44:50','2023-01-11 23:44:50'),(414,NULL,'Calle 95sur # 52 - 59','inmaculada dos',NULL,1,NULL,NULL,0,62,439,463,NULL,'2023-01-12 07:11:34','2023-01-13 15:59:05'),(415,NULL,'Calle 7aa # 30 - 60','poblado',NULL,1,NULL,NULL,0,1,356,547,NULL,'2023-01-12 11:14:11','2023-01-12 11:14:11'),(416,NULL,'Calle 40 D Sur # 39 - 98','dorado',NULL,1,NULL,NULL,0,45,442,330,NULL,'2023-01-12 16:35:30','2023-01-12 16:35:30'),(417,NULL,'Calle 44BB # 82 - 73','La floresta',NULL,1,NULL,NULL,0,1,438,547,NULL,'2023-01-12 19:02:40','2023-01-12 19:02:40'),(418,NULL,'Carrera 32 # 37Sur - 43','mesa',NULL,1,NULL,NULL,0,45,443,330,NULL,'2023-01-13 02:13:58','2023-01-13 02:13:58'),(419,NULL,'Carrera 6a1 # 39 - sur4','pradito',NULL,1,NULL,NULL,0,1,447,547,NULL,'2023-01-13 13:53:23','2023-01-13 14:38:26'),(420,NULL,'Calle 67 # 50 - 56','Simón Bolivar',NULL,1,NULL,NULL,0,57,449,437,NULL,'2023-01-14 18:06:33','2023-10-05 23:43:56'),(421,NULL,'Carrera 27A # 27E sur - 51','loma de los mesa',NULL,1,NULL,NULL,0,45,450,330,NULL,'2023-01-15 15:16:59','2023-01-15 15:16:59'),(422,NULL,'Carrera 54 # 75AASur - 16','UNIDAD RESIDENCIAL SAN AGUSTIN',NULL,1,NULL,NULL,0,57,373,437,NULL,'2023-01-16 02:06:45','2023-01-17 20:05:31'),(423,NULL,'Calle 75sur # 42 - 97','aves Maria',NULL,1,NULL,NULL,0,85,451,772,NULL,'2023-01-16 20:47:07','2023-01-16 20:47:07'),(424,NULL,'Calle 18Bsur # 36 - 120','san lucas',NULL,1,NULL,NULL,0,1,453,547,NULL,'2023-01-17 19:49:35','2023-03-13 21:11:33'),(425,NULL,'Carrera 77 # 20 - E26','paris bello',NULL,1,NULL,NULL,0,1,454,547,NULL,'2023-01-18 18:02:10','2023-01-18 18:19:59'),(426,NULL,'Carrera 34 # 45 - 34','saman',NULL,1,NULL,NULL,1,217,7,330,NULL,'2023-01-18 18:35:06','2023-09-06 21:59:06'),(427,NULL,'Carrera 11 # 88 - 24','mariajose',NULL,1,NULL,NULL,0,45,455,330,NULL,'2023-01-19 13:30:08','2023-01-19 13:30:08'),(428,NULL,'Avenida Carrera hdb # bsjs - hdjs','hshsh',NULL,1,NULL,NULL,0,217,457,107,NULL,'2023-01-19 13:31:35','2023-01-20 16:11:37'),(429,NULL,'Calle 72 sur # 32 - 50','sabaneta',NULL,1,NULL,NULL,0,85,466,772,NULL,'2023-01-23 19:14:27','2023-01-23 19:14:27'),(430,NULL,'Avenida 33 # 57 - 28','Niquia',NULL,1,NULL,NULL,0,16,465,91,NULL,'2023-01-23 21:51:35','2023-01-23 21:54:40'),(431,NULL,'Calle 1 sur # 75 D A - 229','la mota',NULL,1,NULL,NULL,0,1,407,547,NULL,'2023-01-24 18:17:32','2023-01-24 18:17:32'),(432,'Oficina','Carrera 48 # 184 - 46','Envigado',NULL,1,'6.2078786','-75.5766966',0,45,470,330,NULL,'2023-01-24 19:24:09','2023-02-06 12:18:19'),(433,'Oficina EFC','Carrera 48 # 184 - 46','ENVIGADO','Oficina EFC',1,'6.2078786','-75.5766966',1,45,374,330,NULL,'2023-01-24 19:40:46','2023-01-24 21:22:02'),(434,'Casa','Carrera 12 # 13 - 2','Acacias',NULL,1,'4.5354556','-75.6682075',1,16,458,45,NULL,'2023-01-24 20:07:18','2023-04-24 19:03:58'),(435,'fkn','Calle 66 # 1bis - 52','metro','ofici',1,'3.477971','-76.4901387',1,255,5,150,NULL,'2023-01-24 20:20:55','2023-01-30 12:30:40'),(436,'Casa 128','Carrera 27 # 39 - 15','Camino Verde','Camino Verde del Parque',1,'6.160403','-75.579522',1,45,485,330,NULL,'2023-01-24 21:04:42','2023-01-24 21:09:25'),(437,'Home','Calle 37B Sur # 27B - 125','La Reserva','Loma de Las Brujas',1,'6.1625174','-75.5770034',1,45,491,330,NULL,'2023-01-24 21:09:58','2023-01-26 18:54:57'),(438,'Urbanizacion Flor de Azahar','Carrera 34 # 40D Sur - 39','El Dorado','casa 104',1,'6.1630069','-75.5855476',1,45,468,330,NULL,'2023-01-24 21:14:24','2023-01-24 21:16:19'),(439,'casa','Carrera 17 # 7 - 78','la luz','apto',1,'10.9561969','-74.7700383',1,202,497,88,NULL,'2023-01-24 21:14:59','2023-01-24 21:22:17'),(440,'licorera J&J','Carrera 48 # 49 - 44','Maria Auxiliadora','1',1,'6.2858767','-75.4454894',1,52,493,399,NULL,'2023-01-24 21:15:40','2023-01-24 21:17:18'),(441,'casa','Carrera 134 # 62c - 28','san cristobal','segundo piso',1,'6.2786041','-75.6391177',1,1,512,547,NULL,'2023-01-24 21:43:25','2023-01-24 21:47:58'),(442,'urbanizacion puerto luna','Calle 48 F sur # 40 - 55','la cuenca','apartamento 510',1,'6.157378','-75.5983708',1,45,500,330,NULL,'2023-01-24 21:45:16','2023-01-24 21:45:40'),(443,'templo de la moda y calzado','Carrera 12 # 10 - 19','san victorino','local 20',1,'4.6004687','-74.0802147',1,217,513,107,NULL,'2023-01-24 21:46:48','2023-01-24 21:46:48'),(444,'casa','Carrera 25A # 38 d sur - 30','el chingui 1 - Envigado','urbanización california apartamento 1807',1,'6.15452','-75.5741604',1,45,517,330,NULL,'2023-01-24 22:10:19','2023-03-02 15:46:08'),(445,'casa','Carrera 41 a # 44 sur - 36','el dorado','segundo piso',1,'6.163683','-75.591565',1,45,528,330,NULL,'2023-01-24 22:28:55','2023-01-25 15:06:31'),(446,'casa','Carrera 72b # 94 - 60','castilla','primer piso',1,'6.2903813','-75.5762641',1,1,504,547,NULL,'2023-01-25 00:28:45','2023-01-25 10:28:17'),(447,'casa','Carrera 41 # 33 b sur - 32','zona centro',NULL,1,'6.171433','-75.585152',1,45,597,330,NULL,'2023-01-25 01:03:10','2023-01-25 01:03:42'),(448,NULL,'Calle 48 # 4 - 16','buenos aires',NULL,1,NULL,NULL,0,1,595,547,NULL,'2023-01-25 01:05:11','2023-01-25 01:05:11'),(449,'casa','Calle 22 sur # 40 - 63','zuñiga','la abadía, bloque 5, Apto 307',1,'6.1809178','-75.5766904',1,45,605,330,NULL,'2023-01-25 01:37:41','2023-01-30 12:39:55'),(450,'casa','Carrera 88 # 35c - 37','barrio cristobal','apto 201',1,'6.2462989','-75.611895',1,1,608,547,NULL,'2023-01-25 01:41:51','2023-01-25 01:42:33'),(451,'Home','Calle 41 Sur # 27A - 53','San Jose Envigado',NULL,1,'6.1584329','-75.5829753',1,45,593,330,NULL,'2023-01-25 01:53:04','2023-01-25 01:57:13'),(452,'casa','Carrera 66 # 42 - 103','san joaquin','piso 1',1,'6.2471823','-75.5845759',1,1,611,547,NULL,'2023-01-25 01:53:24','2023-04-05 20:39:40'),(453,'casa  4 pisos en baldosin negro','Carrera 49 # 59a - 61sur','la coruña','casa',1,'4.6833569','-74.0617049',1,217,600,107,NULL,'2023-01-25 02:09:53','2023-01-27 04:30:38'),(454,'edificio faran','Calle 71 # 45 - 66','manrique central','apto210',1,'6.2665151','-75.5558064',0,1,614,547,NULL,'2023-01-25 02:11:53','2023-01-25 02:13:44'),(455,'edificio faran','Calle 71a # 45 - 66','manrique central','apto210',1,'6.2668728','-75.5557588',1,1,614,547,NULL,'2023-01-25 02:12:33','2023-01-25 02:13:44'),(456,'renates el vecino','Calle 56 # 32 - A11','las gaviotas','negocio',1,'10.9254394','-74.7938465',1,949,577,925,NULL,'2023-01-25 02:17:10','2023-01-25 02:25:36'),(457,'TestA','Calle 10 # 10 - 10','BarrioA','A',1,'6.895627','-75.0143824',0,5,8,31,NULL,'2023-01-25 02:18:50','2023-09-05 20:55:58'),(458,'MARTINIQUE EVG','Carrera 36d # 43 sur - 180','las antillas','apto 905',1,'6.156467','-75.5882538',1,45,621,330,NULL,'2023-01-25 02:22:57','2023-01-25 02:32:10'),(459,'TestB','Calle 13 # 13 - 13','BarrioB','B',1,'6.895627','-75.0143824',0,5,8,31,'2023-02-20 15:26:01','2023-01-25 02:27:00','2023-02-20 15:26:01'),(460,'TestD','Calle 15 # 15 - 15','BarrioD','D',1,'6.895627','-75.0143824',0,5,8,31,NULL,'2023-01-25 02:33:12','2023-09-05 20:55:58'),(461,'casa','Carrera 47 # 93 - 24','Aranjuez','piso 2',1,'6.2848417','-75.5546671',1,1,622,547,NULL,'2023-01-25 02:33:36','2023-01-25 02:33:36'),(462,'casa','Carrera 81b # 19 - 78','belen la gloria','piso 3',1,'6.2252578','-75.6030796',1,1,571,547,NULL,'2023-01-25 02:33:53','2023-01-25 02:35:39'),(463,'casa','Calle 67a bis # 17c - 63 sur','alameda','casa',1,'4.5506238','-74.1395632',1,217,632,107,NULL,'2023-01-25 03:17:20','2023-01-25 03:17:20'),(464,NULL,'Calle 23 # 71a - 80','belen sanbernardo',NULL,1,NULL,NULL,0,1,637,547,NULL,'2023-01-25 05:23:45','2023-01-25 05:23:45'),(465,'edificio mangata','Carrera 40A # 44sur - 37','doraso','201',1,'6.1632926','-75.5905668',1,45,585,330,NULL,'2023-01-25 11:13:20','2023-01-25 11:14:10'),(467,'ed montecarmelo.','Calle 65 sur # 40 - 18','el carmelo','apto 1804',1,'6.150627','-75.6111',1,85,150,772,NULL,'2023-01-25 12:41:18','2023-01-25 12:45:55'),(468,'unidad residencial Macondos','Carrera 20A # 6 - 93','Ciudad Guabinas','torre 1 Apto 401',1,'3.559785','-76.504449',1,1092,628,1087,NULL,'2023-01-25 13:05:15','2023-01-25 13:13:23'),(469,'Casa','Calle 48 sur # 66b - 99','San Antonio de Prado','Piso 2',1,'6.178277','-75.64892',1,1,496,547,NULL,'2023-01-25 13:06:42','2023-01-25 13:08:41'),(470,'casa','Diagonal 33 # 34D sur - 29','obrero','apto 302',1,'6.1710447','-75.5833576',1,45,534,330,NULL,'2023-01-25 13:44:45','2023-01-25 13:44:45'),(471,'calle 7 #1559','Calle 7 # 1559 - 1','parque principal','girardota antioquia',1,'6.3773454','-75.4466679',1,49,661,373,NULL,'2023-01-25 13:50:49','2023-02-09 20:33:54'),(472,'Casa','Carrera 72 # 12 - 26','Belen las playas','3',1,'6.2198411','-75.5947009',1,1,667,547,NULL,'2023-01-25 14:59:37','2023-01-25 14:59:37'),(473,'Mi casa','Calle 27A Sur # 47 - 55','Jardines, Envigado','Ciudadela San Lucas - Apto 1005',1,'6.1804464','-75.5863092',1,45,668,330,NULL,'2023-01-25 15:21:08','2023-01-26 13:26:29'),(474,'casa','Calle 105 # 75 - 50','pedregal','piso 3',1,'6.3048705','-75.5725307',1,1,670,547,NULL,'2023-01-25 15:28:39','2023-01-25 16:54:39'),(475,'Casa','Calle 123 # 50 - 31','El playon','Primero',1,'6.3056201','-75.5519241',1,1,591,547,NULL,'2023-01-25 15:47:22','2023-01-25 15:47:22'),(476,'manzana 109 lote 03 plan 554','Manzana 109 # lote 3 - plan 554','el socorro','casa',1,'10.386255','-75.480664',1,270,674,171,NULL,'2023-01-25 16:06:19','2023-01-25 16:07:13'),(477,'casa, manzana 64 lote 10 plan 332b','Calle m64 # plan 332b - lote 10','socorro','segundo piso',1,'10.380563','-75.482632',1,270,677,171,NULL,'2023-01-25 16:22:16','2023-01-25 16:23:02'),(478,'minimercado la reserva','Carrera 45 # 77 sur - 28','trapiche',NULL,1,'6.146874','-75.620436',1,85,683,772,NULL,'2023-01-25 16:56:28','2023-01-25 16:56:59'),(479,'Apartamento','Carrera 51 # 96 sur - 50','La inmaculada','Apartamentos Sierra Morena Apto 1520',1,'6.1343423','-75.6354246',1,62,692,463,NULL,'2023-01-25 17:44:54','2023-01-25 17:45:49'),(480,'urbanización solarez','Calle 14f # 35 - 39','poblado campestre','bloque 34- apt 204',1,'3.4049337','-76.460513',1,261,694,157,NULL,'2023-01-25 17:59:44','2023-02-05 22:54:10'),(481,'Segundo piso','Carrera 40 # 47 sur - 14','Trianon',NULL,1,'6.158949','-75.594171',1,45,679,330,NULL,'2023-01-25 18:03:12','2023-01-25 18:06:21'),(482,'casa','Calle 27 sur # 27 - 93','envigado','1104',1,'6.173767','-75.569203',1,45,696,330,NULL,'2023-01-25 18:43:51','2023-01-25 18:45:22'),(484,'unidad Santa Maria de la loma','Calle 15 # 79 - 250','Belén','casa 126',1,'6.220973','-75.600719',1,1,624,547,NULL,'2023-01-25 21:17:30','2023-01-26 18:14:46'),(485,'Casa','Calle 26s # 43a - 41','Villagrande','946',1,'6.1808272','-75.5835111',1,45,701,330,NULL,'2023-01-25 21:41:55','2023-02-28 19:53:49'),(487,'Apto 1214 Torre 2 Bahia Grande','Carrera 61 # 33 - 51','Ditaires',NULL,1,'6.1674737','-75.6319583',1,57,552,437,NULL,'2023-01-26 00:32:47','2023-01-26 00:32:47'),(488,'casa','Carrera 34 # 16 - 38','Cristobal Colon','primer piso',1,'3.4223383','-76.5247087',1,255,722,150,NULL,'2023-01-26 03:23:00','2023-01-26 03:23:00'),(489,'conjunto barbados 3','Carrera 1 # 30 - 192','san mateo','506',1,'4.583444','-74.2033947',1,942,684,918,NULL,'2023-01-26 11:40:37','2023-01-26 12:38:56'),(490,'Barbados lll','Carrera 1 # 30 - 192','San Mateo','apt 506 torre 3',1,'4.583444','-74.2033947',1,942,725,918,NULL,'2023-01-26 12:43:50','2023-01-26 12:44:26'),(491,'panaderia leña verde','Calle 18A # 4E - 11','lorenzo','primer piso',1,'1.1977','-77.263832',1,866,498,829,NULL,'2023-01-26 12:46:12','2023-07-17 14:32:54'),(492,'casa','Calle 19b # 24 - 37','las acasias','casa',1,'3.4335854','-76.5209277',1,255,731,150,NULL,'2023-01-26 14:43:37','2023-01-26 14:43:37'),(493,'doña Fanny una cuadra abajo de la iglesia católica','Carrera 40b # 20e - 78','Santa Rita','casa',1,'6.3080496','-75.5466817',1,16,603,91,NULL,'2023-01-26 17:31:45','2023-01-26 17:32:38'),(496,'conjunto residencial la quinta','Calle 29a # 50 - 85','cabañas','apartamento 2703',1,'6.317942','-75.5580102',1,16,744,91,NULL,'2023-01-26 18:09:22','2023-01-26 18:10:18'),(497,'Apartamentos terranova APTO. 1507','Transversal 35 Sur # 30 - 02','la sebastiana','barrio la sebastiana abajo del cai de las cometas',1,'6.1697367','-75.5786108',1,45,735,330,NULL,'2023-01-26 20:05:15','2023-01-26 20:06:05'),(498,'Villas de Santa Teresa','Calle 26 sur # 43 - A 41','Villa Grande','Apto 410',1,'6.1808272','-75.5835111',1,45,711,330,NULL,'2023-01-26 23:00:05','2023-01-26 23:00:05'),(499,'por la cancha del barrio','Calle 53 sur # 40 - 96','alto de las flores','int 401',1,'6.1553456','-75.6016908',1,45,750,330,NULL,'2023-01-26 23:35:00','2023-01-26 23:35:48'),(500,'Arroyo de los Bernal','Calle 5 # 80c - 125','Loma de los Bernal','apartamento 2113',1,'6.2169923','-75.6037009',1,1,752,547,NULL,'2023-01-27 11:02:23','2023-01-27 11:02:59'),(501,'casa','Calle 39 # 26 - 19','La Milagrosa','apto 201',1,'6.2317136','-75.553318',1,1,477,547,NULL,'2023-01-27 11:11:56','2023-01-27 11:14:18'),(502,'casa','Calle 55 # 35 - 59','Boston',NULL,1,'6.2466194','-75.5548076',1,1,718,547,NULL,'2023-01-27 13:58:45','2023-01-27 13:59:23'),(503,'Casa','Calle 29 # 83 A - 30','Belen los Alles','Segundo Piso',1,'6.2275596','-75.5695033',1,1,529,547,NULL,'2023-01-27 18:18:04','2023-01-27 18:19:32'),(507,'casa familiar','Calle 46bsur # 37 - 51','trianon','casa',1,'6.1572994','-75.5907202',1,45,682,330,NULL,'2023-01-28 12:07:48','2023-01-28 12:07:48'),(508,'Florida azul','Carrera 30 # 40 - f sur40','mangazul','apto',1,'6.1621675','-75.5827142',0,45,773,330,NULL,'2023-01-28 13:15:40','2023-01-28 13:23:43'),(509,'Florida azul','Carrera 30 # 40 - F sur 40','mangazul','Apto',1,'6.1649586','-75.5897493',0,45,773,330,NULL,'2023-01-28 13:17:20','2023-01-28 13:23:43'),(510,'casa','Calle 40 # 30 - f sur 40','Mangazul','apto',1,'6.1628742','-75.5826834',0,45,773,330,NULL,'2023-01-28 13:19:26','2023-01-28 13:23:43'),(511,'casa','Carrera 30 # 40 f - sur 40','Mangazul','apto',1,'6.1621675','-75.5827142',0,45,773,330,NULL,'2023-01-28 13:20:09','2023-01-28 13:23:43'),(512,'casa','Carrera 30 # 40 f sur - 40','Mangazul','apto',1,'6.1621675','-75.5827142',0,45,773,330,NULL,'2023-01-28 13:20:26','2023-01-28 13:23:43'),(513,'casa','Carrera 30 # 40 fsur - 40','Mangazul','apto',1,'6.1621675','-75.5827142',0,45,773,330,NULL,'2023-01-28 13:21:42','2023-01-28 13:23:43'),(514,'casa','Calle 40f sur # 30 - 40','Mangazul','apto',1,'6.1611635','-75.5850411',0,45,773,330,NULL,'2023-01-28 13:22:09','2023-01-28 13:23:43'),(515,'casa','Carrera 30 # 40f sur - 40','Mangazul','apto',1,'6.1621675','-75.5827142',0,45,773,330,NULL,'2023-01-28 13:22:43','2023-01-28 13:23:43'),(516,'casa','Carrera 30 # 40f sur - 94','Mangazul','apto',1,'6.1621675','-75.5827142',0,45,773,330,NULL,'2023-01-28 13:23:21','2023-01-28 13:23:43'),(517,'casa','Carrera 30 # 40f sur - 2','Mangazul','apto',1,'6.1621675','-75.5827142',1,45,773,330,NULL,'2023-01-28 13:23:43','2023-01-28 13:23:43'),(520,'Edificio Serrana','Calle 61sur # 43a - 32','Restrepo Naranjo','1706',1,'6.1551845','-75.6089207',1,85,589,772,NULL,'2023-01-28 17:45:45','2023-01-28 17:45:45'),(521,'Casa Bogotá','Carrera 54 # 64A - 75','Modelo norte','etapa 1 torre 11 apto 203',1,'4.6627695','-74.0816967',1,217,782,107,NULL,'2023-01-28 19:04:08','2023-01-30 18:23:15'),(522,'casa 5b','Via km occifental # condominio san jacinto - casa 5B','samaria',NULL,1,'4.8454419','-74.0400719',0,307,788,211,NULL,'2023-01-28 19:56:00','2023-03-03 22:03:18'),(523,'Juan Camilo Nuñez','Carrera 34a # 32 - 37','Barrio Victoria',NULL,1,'4.0778171','-76.1921512',1,1029,548,1011,NULL,'2023-01-28 21:50:30','2023-01-28 21:50:30'),(524,'Casa','Carrera 31 # 54 - 64','Boston','Casa',1,'6.2445975','-75.5523251',1,1,794,547,NULL,'2023-01-29 04:53:51','2023-01-29 05:00:22'),(525,'Casa','Calle 28sur # 43a - 50','Jardines','Apto 1010 Ciudadela Santa Mónica',1,'6.1785102','-75.5844107',1,45,555,330,NULL,'2023-01-30 00:41:24','2023-01-30 00:41:24'),(526,'Casa','Calle 40 # 1N - 50','Popular',NULL,1,'3.4683759','-76.512437',1,255,802,150,NULL,'2023-01-30 01:21:24','2023-01-30 01:21:24'),(527,'Casa','Carrera 58 # 56 - 15','Villanueva','casa',1,'6.3488466','-75.5137845',1,38,807,239,NULL,'2023-01-30 17:32:26','2023-03-29 20:10:38'),(529,'casa','Calle 78b # 86 - 17','robledo el diamante','piso 2',1,'6.2847388','-75.587904',1,1,810,547,NULL,'2023-01-31 01:00:36','2023-01-31 01:01:50'),(539,'Casa','Calle 4 # 17 - 115','el poblado','Edificio Entrepinos apto 504',1,'6.1983825','-75.5527682',1,1,806,547,NULL,'2023-01-31 15:38:02','2023-02-22 15:27:39'),(542,'unidade castelli','Carrera 25A # 38dsur - 111','camino verde','apartamento 1503',1,'6.1542684','-75.5834138',0,45,754,330,NULL,'2023-01-31 22:55:35','2023-01-31 23:07:15'),(543,'Unidade Castelli','Avenida 25A # 38d Sur - 111','Camino verde','Apartamento 1503',1,'6.15452','-75.5741604',1,45,754,330,NULL,'2023-01-31 23:03:40','2023-01-31 23:07:15'),(550,'casa','Calle 52 sur # 82b - 44','Villa Andrea',NULL,1,'4.6229354','-74.1770897',1,217,835,107,NULL,'2023-02-01 16:45:40','2023-02-01 16:45:40'),(552,'Cra28#34AAsur99 INT 206','Carrera 28 # 34 - AA','Uribe Angel, Envigado','Casa',1,'6.1722492','-75.5762009',0,45,838,330,NULL,'2023-02-01 20:56:30','2023-02-01 23:26:46'),(554,'casa','Carrera 84 # 15 - 113','ingenio','casa',1,'3.3833782','-76.5290055',1,255,639,150,NULL,'2023-02-01 23:08:33','2023-02-01 23:09:19'),(556,'Cra28#34AASur99 INT 206','Carrera 28 # 34 - AA Sur','Uribe Angel','Casa',1,'6.1722492','-75.5762009',1,45,838,330,NULL,'2023-02-01 23:25:01','2023-02-01 23:26:46'),(560,'Casa','Carrera 31 # 40 c sur - 16','San José','Apto 202',1,'6.1611009','-75.5845547',1,45,687,330,NULL,'2023-02-02 12:20:06','2023-02-02 12:28:38'),(561,'Casa','Avenida 44 # 63 - 18','Niquia','Segundo piso',1,'6.3446612','-75.5502324',1,16,613,91,NULL,'2023-02-02 16:24:44','2023-02-02 16:24:44'),(563,'local jlass','Carrera 41 # 33 b sur - 35','obrero envigado','int 101',1,'6.171494','-75.585197',1,45,847,330,NULL,'2023-02-02 19:33:07','2023-02-02 19:35:37'),(568,'Urbanización Blancos de Cataluña','Calle 41 # 24 - 141','La Milagrosa','Apartamento 106 bloque 4',1,'6.2481358','-75.6013426',1,1,547,547,NULL,'2023-02-05 12:50:47','2023-02-05 12:50:47'),(569,'119','Calle 45a sur # 39b - 02','oasis 2','urbanizacion bosques de san carlos',1,'6.1602788','-75.5899244',1,45,583,330,NULL,'2023-02-05 13:46:38','2023-02-05 13:46:38'),(570,'casa','Diagonal 77 # 53 - 56','Linda Granja','Linda granja parcelaciones',1,'6.1537643','-75.3944707',1,83,855,764,NULL,'2023-02-06 11:51:14','2023-02-06 11:52:04'),(571,'alcaldia','Calle 44 # 50AA - 62','alcaldia',NULL,1,'6.1498369','-75.3770528',1,83,470,764,NULL,'2023-02-06 12:18:19','2023-02-06 12:18:19'),(577,'openpay','Carrera 11 # 88 - 44','casa','casa',1,'7.095235','-73.133552',1,226,737,118,NULL,'2023-02-08 18:06:13','2023-08-04 21:26:11'),(578,'urbanización Guali','Calle 27g # 35 sur - 150','El Escobero','Apto 721',1,'6.1673212','-75.5769521',1,45,486,330,NULL,'2023-02-08 18:32:11','2023-03-23 23:39:56'),(581,'casa','Carrera 57A # 43 - 29','las vegas parte alta',NULL,1,'6.3409255','-75.5114821',1,38,732,239,NULL,'2023-02-09 13:58:51','2023-02-09 14:00:48'),(582,'casa','Calle 36 # 32 - 92','la milagrosa','piso 2',1,'6.2332024','-75.5594498',1,1,889,547,NULL,'2023-02-10 01:13:47','2023-02-10 01:15:49'),(586,'conjunto residencial altos de san jorge','Calle 137A # 98B - 04','Suba','Torre 1 apartamento 206',1,'4.7385165','-74.0917173',1,217,599,107,NULL,'2023-02-13 00:35:29','2023-02-13 00:49:05'),(602,'casa','Carrera 63c # 96a - 136','tricentenario','bloque 51 apto 414',1,'6.2909777','-75.5659785',1,1,653,547,NULL,'2023-02-15 23:14:13','2023-02-15 23:14:51'),(607,'casa','Calle 4 # 26 - 54','la cumbre','casa',1,'6.650797','-74.0559339',1,758,914,709,NULL,'2023-02-16 12:55:54','2023-02-16 12:55:54'),(613,'casa','Calle 38 # 32 - 41','barrio mesa','primer piso',1,'6.1660759','-75.5820333',1,45,965,330,NULL,'2023-02-17 18:27:16','2023-02-17 18:27:16'),(646,'avenida 13 de junio','Diagonal 32 # 70 - 98','jardines de junio 2','Mz 13 Casa 11',1,'10.4014849','-75.4820573',1,270,999,171,NULL,'2023-02-20 22:35:27','2023-03-30 18:20:13'),(675,'aire del bosque','Calle 48csur # 42a - 80','señorial','apto 601',1,'6.1594837','-75.5958244',1,45,1038,330,NULL,'2023-02-22 19:24:58','2023-02-22 19:25:58'),(691,'Monte sion','Calle 47 # 63 - 125','la misericordia','1210',1,'6.3394177','-75.5182452',1,38,916,239,NULL,'2023-02-23 20:05:02','2023-03-23 22:09:29'),(699,'entrepinos','Calle 4 # 17 - 115','apto 2007','apartamento',1,'6.1983825','-75.5527682',1,1,1031,547,NULL,'2023-02-24 02:00:42','2023-02-24 02:00:42'),(712,'Las Antillas 3 Casas','Carrera 36D # 42 sur - 50','Las Antillas','120',1,'6.1559667','-75.5869231',1,45,1077,330,NULL,'2023-02-25 16:12:54','2023-02-25 16:12:54'),(713,'Apt 202','Avenida Carrera 02 # 44a - 05','Marbella','Conjuto portocastello torre 1',1,'10.3932277','-75.4832311',1,270,915,171,NULL,'2023-02-25 22:19:56','2023-02-25 22:22:02'),(714,'cartagena','Calle 26 # c - 49d16','nueve de abril','piso 16',1,'10.3983923','-75.5057881',1,270,1080,171,NULL,'2023-02-26 07:09:01','2023-02-26 07:11:30'),(719,'carrera 42d#45b sur-125 edificio Ravello','Carrera 42d # 45b sur - 125','la paz','1204',1,'6.1632766','-75.5955206',1,45,864,330,NULL,'2023-02-26 14:10:52','2023-02-26 14:10:52'),(720,'Plazuelas De La Estrella','Carrera 56cc # 83 - 86','Cerrito','Interior 102 casa 7102',1,'6.1533106','-75.6399748',1,62,1085,463,NULL,'2023-02-26 16:59:19','2023-02-26 16:59:19'),(729,'Villa Jardín 1','Calle 17a Sur # 48 - 76','La Aguacatala','apto 804',1,'6.189658','-75.5812554',1,1,742,547,NULL,'2023-02-28 21:04:23','2023-02-28 21:05:01'),(736,'La Alameda Parque Residencial','Calle 17 # 46 - 80','Villa Cafe','Casa G11',1,'2.937321','-75.253028',1,651,1109,596,NULL,'2023-03-03 02:24:32','2023-03-03 02:29:28'),(737,'edificio Terranova','Transversal 35 sur # 30 - 02','la Sebastiana','apto 701',1,'6.1697367','-75.5786108',1,45,1052,330,NULL,'2023-03-03 02:48:01','2023-03-03 02:48:01'),(740,'edificio apple travel','Carrera 48B sur # 10 - 101','aguacatala','edificio',1,'6.196216','-75.580051',1,1,811,547,NULL,'2023-03-03 14:57:50','2023-03-16 02:23:06'),(742,'casa','Avenida autopista norte # kilometro 19 costado occidental - condominio san jacinto','condominio san jacinto','casa 5B',1,'4.8454419','-74.0400719',1,307,788,211,NULL,'2023-03-03 22:02:44','2023-03-03 22:03:18'),(744,'calle 13 #12-47','Calle 13 # 12 - 47','variante','casa',1,'6.5592991','-75.82554',1,100,1115,872,NULL,'2023-03-05 00:22:22','2023-03-05 16:10:49'),(745,'segundo piso tienda los duques','Transversal 71e # 31e - 66','los alpes','2 piso',1,'10.397555','-75.4827737',1,270,1116,171,NULL,'2023-03-05 05:35:14','2023-03-05 05:36:02'),(758,'casa','Calle 39 S # 46 - 05','Alcalá','primer piso',1,'6.170469','-75.592533',1,45,804,330,NULL,'2023-03-13 18:43:21','2023-03-13 18:44:16'),(761,'Edificio Juanes','Avenida Carrera 52 # 01 - 73','Guayabal','avenida guayabal',1,'6.208273','-75.585683',0,1,1159,547,NULL,'2023-03-15 01:01:42','2023-04-10 22:47:39'),(769,'guarne','Calle 52 # 51 - 75','el guamo','casa',1,'6.2803995','-75.4441',1,52,1183,399,NULL,'2023-03-23 17:33:49','2023-05-11 03:13:04'),(773,'calle 32a #21','Calle 32 # 29 - 32','ciudadela',NULL,1,'1.6315565','-75.6070233',1,422,1198,338,NULL,'2023-03-26 02:43:06','2023-03-26 02:43:55'),(775,'carrera 12 # 20a - 89','Carrera 12 # 20a - 89','centro','casa',1,'10.6271185','-74.9216105',1,813,1202,769,NULL,'2023-03-27 15:19:25','2023-03-27 15:20:27'),(778,'carrera 27 a #5963','Carrera 27a # 5973 - enciso','Enciso','1',1,'6.2509851','-75.5480929',1,1,1211,547,NULL,'2023-03-29 22:32:50','2023-03-29 22:32:50'),(781,'altos de claraval','Calle 36sur # 25 - 153','loma del chocho','casa 147',1,'6.165619','-75.5674681',1,45,884,330,NULL,'2023-03-31 10:16:32','2023-03-31 10:17:25'),(782,'transversal 34 DD sur # 33 14','Transversal 34 # Dd - sur','las margaritas','#33 14',1,'6.1715487','-75.5796597',0,45,602,330,NULL,'2023-03-31 19:38:04','2023-03-31 19:38:53'),(783,'transversal 34 dd sur # 33 14','Transversal 34 # 33 - 14','las margaritas','301',1,'6.172625','-75.5840519',1,45,602,330,NULL,'2023-03-31 19:38:53','2023-03-31 19:38:53'),(784,'copacabana','Calle 42a # 56a - 191','las vegas','int 216',1,'6.340336','-75.5116',1,38,1223,239,NULL,'2023-04-01 10:57:18','2023-04-01 12:28:15'),(789,'casa','Calle 81 # 52a - 45','santa maria','primer piso',1,'6.1892625','-75.5942368',1,57,1220,437,NULL,'2023-04-03 12:55:10','2023-04-03 12:55:46'),(790,'uyhh','Carrera 62 a # 25 - 43','Bariloche','itagui',1,'6.7803568','-74.7979523',0,117,456,437,NULL,'2023-04-04 19:53:56','2023-09-08 18:33:41'),(792,'Edificio Mablo','Calle 124 # 50B - 56','Barrio las margaritas','Apto 401',1,'6.0955686','-75.6375396',1,24,1239,144,NULL,'2023-04-08 16:09:17','2023-04-08 16:09:17'),(794,'casa','Calle 65E # 91A - 58','Robledo villas de santa Catalina',NULL,1,'6.2603481','-75.5564663',1,1,1215,547,NULL,'2023-04-09 20:48:07','2023-04-12 15:15:46'),(795,'edificio','Carrera 52 # 1 - 73','guayabal','edificio juanes',1,'6.208238','-75.58566',1,1,1159,547,NULL,'2023-04-10 22:46:58','2023-04-10 22:47:39'),(799,'casa','Carrera 17 h # 12 a - 76','Girardota la nueva','apartamento',1,'6.376456','-75.452025',1,49,1249,373,NULL,'2023-04-12 07:40:18','2023-04-12 07:42:09'),(800,'edificio villa margarita','Diagonal 31 # 34 D - sur 21','la sebastiana','apto 301',1,'6.171755','-75.579423',1,45,1250,330,NULL,'2023-04-12 21:59:15','2023-04-12 22:01:13'),(801,'conjunto cerrado pinares','Avenida 8 # 9 - 185','prados del este','casa E24',1,'7.9162724','-72.4727252',1,365,1222,275,NULL,'2023-04-13 12:00:06','2023-04-13 12:01:47'),(802,'Primer piso','Calle 40B # 75 - 10','Cancha de tejo','Casa',1,'6.1478448','-75.3922975',1,83,549,764,NULL,'2023-04-13 23:47:14','2023-04-13 23:47:14'),(803,'casa','Carrera 29 # 11 - 33','La universidad',NULL,1,'7.1367411','-73.1185459',1,226,1255,118,NULL,'2023-04-14 00:32:16','2023-04-14 00:32:16'),(808,'casa','Calle 19 # 3 - 121','matadero','casa',1,'9.2404499','-74.42768',1,626,1275,565,NULL,'2023-04-19 16:42:29','2023-04-19 16:42:29'),(821,'Corazon envigado','Calle 52 # 39 - 37','la cuenca','9904',1,'6.1672865','-75.5836963',0,45,1339,330,NULL,'2023-04-28 21:17:47','2023-04-28 21:18:15'),(822,'Corazon envigado','Calle 52c sur # 39 - 37','la cuenca','9904',1,'6.1547059','-75.6008262',1,45,1339,330,NULL,'2023-04-28 21:18:15','2023-04-28 21:18:15'),(823,'mi casa','Carrera 4w # 21 - 27','Rio de Janeiro','Casa',1,'8.7538375','-75.8953326',1,633,1187,573,NULL,'2023-04-29 21:27:45','2023-04-29 21:28:47'),(824,'Edificio Luxury62','Calle 62 # 11a - 59','La Castellana','Apto 403',1,'8.7691545','-75.8610368',1,633,1344,573,NULL,'2023-04-30 03:04:17','2023-04-30 03:15:30'),(825,'casa','Calle 82 # 109 - 16','bolivia',NULL,1,'4.7184101','-74.113868',1,217,1345,107,NULL,'2023-04-30 09:43:19','2023-04-30 11:25:55'),(828,'diagonal 49sur#53-12 CALZAOFERTAS GUADALUPE','Diagonal 49 # 53 - 12','venecia','casa',1,'0','0',1,217,1336,107,NULL,'2023-05-04 01:51:28','2023-05-04 15:02:18'),(835,'Jonathan','Calle 50 # 74 - 45','Villegas','Jonathan',1,'8.0762129','-73.222102',1,1101,1381,1097,NULL,'2023-05-08 04:56:26','2023-05-08 04:56:26'),(836,'casa','Calle 43b # 6 - 37','la victoria','casa',1,'4.5464637','-74.0927843',1,217,1383,107,NULL,'2023-05-08 23:14:58','2023-05-08 23:16:40'),(855,'casa','Calle 16 # 40A - 21','san antonio',NULL,1,'4.1351729','-73.6393629',1,1079,1367,1070,NULL,'2023-05-10 01:10:50','2023-05-10 01:11:43'),(895,'Enseguida de tiendas D1 de la calle 52, edificio de piso rojo','Calle 52 norte # 4an - 23','Barrio La Flora','Apto 501',1,'3.4875682190865','-76.52063005096',1,255,1467,150,NULL,'2023-05-16 22:06:21','2023-05-16 22:07:54'),(910,'cll30 #16-23','Calle 30 # 16 - 23','brisas de la ermita',NULL,1,'7.877979','-72.5358801',1,365,1503,275,NULL,'2023-05-26 16:39:50','2023-05-26 16:39:50'),(919,'u olivar apartamentos','Carrera 60 A # 62 - 02','fontibon','apto 505 T5',1,'6.1470402','-75.3801059',1,83,1520,764,NULL,'2023-06-01 19:09:53','2023-06-01 19:15:47'),(923,'deposito construjaras','Carrera 49 # 100 - 29','santa cruz','piso 1',1,'6.2921843','-75.555888',1,1,1175,547,NULL,'2023-06-05 00:06:26','2023-08-23 14:06:34'),(924,'multicentro caribe','Carrera 65 # 74 - 75','caribe','bodega 150',1,'6.2734064','-75.5750682',1,1,1528,547,NULL,'2023-06-05 12:35:27','2023-06-05 12:49:03'),(939,'club residencial fidelena park','Calle 75b sur # 38 - 05','la doctora','apto 1103',1,'6.1422685','-75.6162737',1,85,1561,772,NULL,'2023-06-13 20:19:00','2023-08-12 16:49:46'),(945,'casa','Transversal 50 c sur # 63 - 35','san Antonio de prado,limonar 2','piso 2',1,'6.2607903','-75.5632511',1,1,1570,547,NULL,'2023-06-16 16:09:13','2023-06-20 17:54:44'),(957,'Academia de Enseñanza ACC','Carrera 20 # 37a - 05','jordan','piso1',1,'4.150427','-73.62106',1,1079,1625,1070,NULL,'2023-06-23 03:49:28','2023-06-23 03:49:28'),(959,'Casa','Carrera 24f # 40 sur - 163','Barrio Nuevo','apto 301',1,'6.1500027','-75.5794185',1,45,1628,330,NULL,'2023-06-24 01:10:13','2023-06-24 01:10:13'),(962,'Urbanización plaza de toledo','Calle 2a # 75c - 17','Belén la mota','Casa 173',1,'6.2131186','-75.5977006',1,1,1590,547,NULL,'2023-06-25 03:11:17','2023-06-25 03:11:17'),(963,'casa','Carrera 59 # 69 - 28','Pachelly','apro 201',1,'6.3491603','-75.5627176',1,16,1640,91,NULL,'2023-06-25 04:24:54','2023-06-25 04:24:54'),(970,'casa','Carrera 17F # 11 - 69','Girardota la nueva','casa',1,'6.3766184','-75.4513066',1,49,1678,373,NULL,'2023-07-01 14:53:03','2023-07-01 14:53:03'),(971,'diego diaz','Carrera 27 # 54 - 10','nuevo sotomayor','infiniy sky club',1,'7.1113604','-73.1143463',1,226,1661,118,NULL,'2023-07-02 01:19:42','2023-07-02 01:19:42'),(972,'Verde Natura','Carrera 42 # 86 - 85','Valle del Lili','torre T apto 202',1,'3.4191604','-76.5405272',1,255,1676,150,NULL,'2023-07-03 13:54:37','2023-07-03 13:55:22'),(987,'Casa','Calle 118 # 64 CC - 47','Boyacá Las Brisas','Primer piso',1,'6.3107958','-75.561736',0,1,1755,547,'2023-07-14 01:08:25','2023-07-14 01:06:11','2023-07-14 01:08:25'),(988,'Casa','Calle 118 # 64 cc - 47','Boyacá Las Brisas','Primer piso',1,'6.3107958','-75.561736',1,1,1755,547,NULL,'2023-07-14 01:09:24','2023-07-14 01:09:24'),(999,'San Martin de Porres','Carrera 79 # 94 - 86','Barrio Robledo Miramar','Interior 203',1,'6.2926067','-75.5825256',1,1,1795,547,NULL,'2023-07-23 06:53:07','2023-07-23 06:53:07'),(1011,'casa','Calle 20e #70-32, Bello, Antioquia, Colombia','paris','segundo',1,'6.3109975','-75.5774119',1,16,1811,91,NULL,'2023-07-27 19:53:30','2023-07-28 00:19:48'),(1012,'casa','Carrera 44a #85-112, Santa Ines, Medellín, Antioquia, Colombia','Manrique',NULL,1,'6.2778546','-75.5525841',1,1,785,547,NULL,'2023-07-28 01:47:02','2023-07-28 01:47:02'),(1017,'Edificio Platinum','Cra. 38 #48-140, Cabecera del llano, Bucaramanga, Santander, Colombia','Cabecera del Llano','1401',1,'7.1158741','-73.1080012',1,226,1835,118,NULL,'2023-07-29 15:58:37','2023-07-29 16:02:49'),(1018,'cuarto esquinas','Carrera 116 #39c, La Independencia, Medellín, Antioquia, Colombia','san Javier el salado centro de salud la esperanza','apartamento',1,'6.2526957','-75.6268581',1,1,1838,547,NULL,'2023-07-30 21:32:46','2023-07-30 21:34:17'),(1019,'Home','Calle 58 #42-32, La Candelaria, Medellin, Medellin, Antioquia, Colombia','Boston','Apto 201(No sirve timbre)',1,'6.2524883','-75.5593946',1,1,2,547,NULL,'2023-07-30 23:52:58','2023-07-30 23:52:58'),(1020,'Casa','Calle 58 #42-32, La Candelaria, Medellin, Medellin, Antioquia, Colombia','Boston','Apto 201(no sirve timbre)',1,'6.2524883','-75.5593946',1,1,1841,547,NULL,'2023-07-30 23:57:27','2023-07-30 23:57:27'),(1022,'Home','Calle 58 #42-32, La Candelaria, Medellin, Medellin, Antioquia, Colombia','Boston','Apto 201 ( no sirve el timbre)',1,'6.2524883','-75.5593946',1,1,1842,547,NULL,'2023-07-31 03:45:52','2023-07-31 03:47:36'),(1028,'casa','Calle 38 Sur #46-26, Zona 8, Envigado, Antioquia, Colombia','Alcalá','apto 501',1,'6.172189','-75.5915614',0,45,1861,330,NULL,'2023-08-05 22:22:39','2023-08-08 17:58:09'),(1029,'Casa','Calle 63 #54-21, Itagüi, Antioquia, Colombia','EL CAIRO','Piso 1',1,'6.1800116','-75.6026682',0,16,1862,91,'2023-08-07 02:38:30','2023-08-06 02:05:11','2023-08-07 02:38:30'),(1030,'Calle 63 casa 54-21','Calle 63 carrera 54 # 54-21','EL CAIRO','piso 1',1,'6.3430370416862','-75.560374552486',0,16,1862,91,NULL,'2023-08-06 02:22:04','2023-08-13 02:24:07'),(1031,'Barrio Baltazar Calle 101, Carrera 15 # 15-24','Carrera 15 #10-1, Cali, Valle del Cauca, Colombia','Baltazar de Casanova','Piso 1.',1,'3.4425425','-76.5319917',0,111,1862,1017,'2023-08-07 02:47:23','2023-08-06 02:34:34','2023-08-07 02:47:23'),(1034,'Calle 101 Carrera 15','Calle 101 #15-24, Turbo, Antioquia, Colombia','BALTAZAR DE CASANOVA','pido 1.',1,'8.0932437','-76.7261428',1,111,1862,1017,NULL,'2023-08-07 02:47:11','2023-08-13 02:24:07'),(1035,'Casa Boulevard','Calle 27 Sur #28-170, Villa Isa Tamarindo, Envigado, Antioquia, Colombia','Loma Esmeraldal','Casa 120, Conjunto Boulevard, Loma Esmeraldal',1,'6.1766928','-75.5754578',1,45,1867,330,NULL,'2023-08-07 20:10:44','2023-08-07 20:12:05'),(1037,'casa','Calle 65aa #42-65, Medellín, Antioquia, Colombia','villa hermosa','apartamento 301',1,'6.2586916','-75.5553323',1,1,1861,547,NULL,'2023-08-08 17:55:39','2023-08-08 17:58:09'),(1046,'Local comercial papelería y motivos Danny','Calle 51 #54-58, Rionegro, Antioquia, Colombia','Alto Del Medio','Piso 1',1,'6.1557483','-75.375569',1,83,1887,764,NULL,'2023-08-17 01:14:08','2023-08-21 23:43:37'),(1049,'casas andria conjunto residencial','Carrera 1 #5a-15, Mosquera, Cundinamarca, Colombia','lucero','casa 66',1,'4.697057','-74.1917241',1,639,1890,579,NULL,'2023-08-17 23:10:38','2023-08-22 14:28:26'),(1050,'Home','Calle 36aa Sur #25b99, San Sebastian, Envigado, Antioquia, Colombia','Canto De Luna Country House','Casa 108',1,'6.161918','-75.5659809',1,45,358,330,NULL,'2023-08-18 19:32:17','2023-08-18 19:32:17'),(1052,'Hogar','Calle 26 #34-93, Marinilla, Antioquia, Colombia','La Bomba','Apto. 502',1,'6.1708648','-75.3389283',1,67,1895,538,NULL,'2023-08-18 22:42:14','2023-08-18 22:43:12'),(1056,'baluarte de San Diego, al frente del citte (porteria 2)','Baluarte De San Diego, Carrera 32, Medellín, Antioquia, Colombia','loma del indio','manzana C, casa 31-08',1,'6.2255615','-75.560789',1,1,1903,547,NULL,'2023-08-22 04:54:21','2023-08-22 04:56:17'),(1058,'envigado futbol club.','Calle 48, Villa Paula, Itagüi, Antioquia, Colombia','las vegas','10',1,'6.1719312','-75.6114915',1,45,456,330,NULL,'2023-08-23 21:56:31','2023-08-30 15:35:15'),(1061,'pedregal','Calle 103d #76-72, Pedregal, Medellín, Antioquia, Colombia','pedregal','1',1,'6.3022411','-75.5748852',1,1,1915,547,NULL,'2023-08-25 16:38:10','2023-08-25 16:38:10'),(1064,'KR 50B #107-37','Carrera 50B #107-37, Villa Niza, Medellín, Antioquia, Colombia','Andalucía la Francia','apto 402',1,'6.2989842','-75.5557254',1,1,1924,547,NULL,'2023-08-27 21:07:36','2023-08-27 21:11:02'),(1065,'casa','Carrera 102b #47b-27, Antonio Narino, Medellín, Antioquia, Colombia','san javier','casa',1,'6.2583694','-75.6183188',1,1,554,547,NULL,'2023-08-28 21:08:45','2023-08-28 21:09:11'),(1066,'home','Carrera 30 #39b Sur-39, Zona 6, Envigado, Antioquia, Colombia','san jose Envigado','edificio mirador del templo apto 301',1,'6.1629899','-75.5822907',1,45,1927,330,NULL,'2023-08-29 11:10:51','2023-08-29 11:10:51'),(1069,'restaurante los recuerdos de mi tierra','Carrera 58 #68-171, San Francisco, Barranquilla, Atlántico, Colombia','el prado','restaurante',1,'10.9995074','-74.7975431',1,202,1930,88,NULL,'2023-08-29 23:51:01','2023-08-29 23:52:15'),(1070,'cl 19B #38-46  edificio Cabrachi','Pasto, Nariño, Colombia','palermo','302',1,'1.2058837','-77.285787',1,866,1797,829,NULL,'2023-08-30 14:02:22','2023-08-30 14:02:22'),(1077,'casa','Calle 40D Sur #31-27, Zona 6, Envigado, Antioquia, Colombia','la florida',NULL,1,'6.1619626','-75.5842505',1,45,1950,330,NULL,'2023-09-04 20:04:21','2023-09-04 20:06:51'),(1078,'casa','Calle 41 #4A - 07, COMUNA 4, Cali, Valle del Cauca, Colombia','casa','casa',1,'3.4607534','-76.5082136',1,255,8,150,NULL,'2023-09-05 20:55:58','2023-09-05 20:55:58'),(1079,'A dos casa de la tienda villa Juliana.','Cra. 104 #39-93, San José de los Campanos, Provincia de Cartagena, Bolívar, Colombia','San Jose de los Campanos, sector villa Juliana','Piso 1.',1,'10.3837081','-75.4566353',1,270,1953,171,NULL,'2023-09-05 23:10:35','2023-09-05 23:12:46'),(1080,NULL,'Carrera 51 A # 93 - 64','Aranjuez',NULL,1,NULL,NULL,0,NULL,1826,547,NULL,'2023-09-07 02:41:06','2023-09-08 18:51:46'),(1081,NULL,'Transversal 42c # dg - -','Conquistadores',NULL,1,NULL,NULL,0,NULL,1959,547,NULL,'2023-09-07 20:43:35','2023-09-08 22:29:25'),(1082,'Calle 47 A #81-42','Calle 47A #81-42, La Floresta, Medellín, Antioquia, Colombia','La Floresta','Casa',1,'6.2579615','-75.5992897',1,1,1960,547,NULL,'2023-09-08 19:05:11','2023-09-08 19:07:48'),(1083,NULL,'Manzana 45 # 45 - 45','bbb',NULL,1,NULL,NULL,0,NULL,800,30,NULL,'2023-09-08 22:02:21','2023-10-04 21:26:19'),(1084,NULL,'Carrera 2b # 81a - 190','Belén rincon',NULL,1,NULL,NULL,0,NULL,1934,547,NULL,'2023-09-09 00:02:03','2023-09-09 00:02:03'),(1085,NULL,'Calle 56 sur # 67 B - 14','san Antonio de prado',NULL,1,NULL,NULL,0,NULL,1965,547,NULL,'2023-09-10 04:01:04','2023-09-10 04:01:04'),(1086,NULL,'Calle 9sur # 79c - 115','rodeo alto',NULL,1,NULL,NULL,0,NULL,1967,547,NULL,'2023-09-10 16:13:09','2023-09-10 16:13:09'),(1087,NULL,'Carrera 31 # 50 - 29','buenos aires',NULL,1,NULL,NULL,0,NULL,1979,547,NULL,'2023-09-12 20:38:31','2023-09-12 20:38:31'),(1088,NULL,'Carrera 59 # 70 - 349','santa maria',NULL,1,NULL,NULL,0,NULL,1983,437,NULL,'2023-09-13 12:20:20','2023-09-13 12:20:20'),(1089,NULL,'Carrera 96c # 50a - 220','calazans',NULL,1,NULL,NULL,0,NULL,1985,547,NULL,'2023-09-13 17:31:30','2023-09-14 03:56:00'),(1090,NULL,'Carrera 51 # 9 a Sur - 01','Guayabal',NULL,1,NULL,NULL,0,NULL,1986,547,NULL,'2023-09-13 19:12:15','2023-09-13 19:12:15'),(1091,NULL,'Calle 40a sur # 24b - 105','La mina',NULL,1,NULL,NULL,0,NULL,1988,330,NULL,'2023-09-13 22:49:18','2023-09-13 22:49:18'),(1092,NULL,'Calle 24 # 38 - 91','Loma Benedictinos',NULL,1,NULL,NULL,0,NULL,1987,330,NULL,'2023-09-13 23:52:38','2023-09-15 21:12:42'),(1093,NULL,'Calle 51N # 82 - 190','calazanz',NULL,1,NULL,NULL,0,NULL,1989,547,NULL,'2023-09-14 18:06:00','2023-09-15 15:07:23'),(1094,NULL,'Calle 32csur # 45b - 28','el portal',NULL,1,NULL,NULL,0,NULL,1982,330,NULL,'2023-09-14 21:45:33','2023-09-14 21:46:14'),(1095,NULL,'Diagonal 29 # 34f sur - 81','las cometas',NULL,1,NULL,NULL,0,NULL,1994,330,NULL,'2023-09-14 23:33:20','2023-09-14 23:33:20'),(1096,NULL,'Carrera 45 # 26 - 162','puerta madera',NULL,1,NULL,NULL,0,NULL,1999,91,NULL,'2023-09-15 01:29:40','2023-09-15 01:38:20'),(1097,NULL,'Calle 38B # # - -','Camino Verde',NULL,1,NULL,NULL,0,NULL,2000,330,NULL,'2023-09-15 21:17:45','2023-09-18 17:10:34'),(1098,NULL,'Carrera 71 # 37 - 350','san gabriel',NULL,1,NULL,NULL,0,NULL,2004,437,NULL,'2023-09-16 18:54:35','2023-09-16 18:54:35'),(1099,'Home','Av. 48a #67-19, Bello, Antioquia, Colombia','Niquía Camacol','casa',1,'6.3481356','-75.5551417',1,16,2009,91,NULL,'2023-09-18 21:08:49','2023-09-18 21:09:11'),(1100,'Casa','Cra. 23a #3-52, Tuluá, Valle del Cauca, Colombia','Asovivienda','Piso',1,'4.1033087','-76.1997567',0,31,2010,177,'2023-09-24 00:09:14','2023-09-18 21:17:48','2023-09-24 00:09:14'),(1101,'Casa','Caucasia, Antioquia, Colombia','Asovivienda','Piso',1,'7.9831821','-75.1981665',1,31,2010,177,NULL,'2023-09-18 21:25:36','2023-09-20 20:06:50'),(1102,NULL,'Carrera 67 # 93 - 80','castilla',NULL,1,NULL,NULL,0,NULL,2011,547,NULL,'2023-09-18 22:33:16','2023-09-18 22:33:16'),(1103,'edificio bora bora','Calle 116 #55c-40, Bogotá, Colombia','lagos de cordoba','torre 1 apto 1002',1,'4.7013149','-74.0688824',0,213,1141,107,NULL,'2023-09-22 00:40:44','2023-09-22 00:45:42'),(1104,'edificio Bora Bora','Calle 116 #55c-40 t1 apto 1002, Bogotá, Colombia','lagos de cordoba','torre 1 apto 1002',1,'4.7013149','-74.0688824',1,213,1141,107,NULL,'2023-09-22 00:43:28','2023-09-22 00:45:42'),(1105,'Parque Residencial San Cayetano','Calle 30 #55B-78, Rionegro, Antioquia, Colombia','San Antonio','Torre 2 Apto 1207',1,'6.1349457','-75.3793175',1,83,2038,764,NULL,'2023-09-23 23:34:08','2023-09-26 23:18:40'),(1106,NULL,'Calle 36 # # - -','Loma del Chocho',NULL,1,NULL,NULL,0,NULL,2039,330,NULL,'2023-09-24 01:17:27','2023-09-24 18:29:27'),(1107,NULL,'Carrera 34 # 40dsur - 50','el dorado',NULL,1,NULL,NULL,0,NULL,2044,330,NULL,'2023-09-24 20:05:37','2023-09-24 20:05:37'),(1108,'local dulce primavera','Carrera 6 #7-07, Pamplona, Norte de Santander, Colombia','centro','calle real',1,'7.3746527','-72.6485521',1,692,2058,642,NULL,'2023-09-26 23:50:09','2023-09-26 23:50:32'),(1109,NULL,'Carrera 45 # 79sur - 176','tres esquinas',NULL,1,NULL,NULL,0,NULL,2067,772,NULL,'2023-09-28 03:13:35','2023-09-28 03:13:35'),(1110,NULL,'Avenida 26 # 52 - 140','norteamerica',NULL,1,NULL,NULL,0,NULL,1324,91,NULL,'2023-09-28 08:32:18','2023-09-28 08:32:18'),(1111,NULL,'Transversal 38 # 72 - 82','laureles',NULL,1,NULL,NULL,0,NULL,2068,547,NULL,'2023-09-28 17:44:39','2023-09-28 17:44:39'),(1112,'Casa','Transversal 32c Sur, Zona 9, Envigado, Antioquia, Colombia','Diagonal 32b#32csur9','Piso 2',1,'6.17464769344','-75.583145077461',1,45,2016,330,NULL,'2023-10-01 17:10:56','2023-10-01 17:11:14'),(1113,NULL,'Calle 75A Sur # 52F - 90','Santa Catalina',NULL,1,NULL,NULL,0,NULL,917,437,NULL,'2023-10-03 01:42:06','2023-10-03 01:42:06'),(1114,'sebastian palomo','Reflex Living Apartamentos, Carrera 45A, Sabaneta, Antioquia, Colombia','san remo','apto2606',1,'6.1437352','-75.6227668',1,85,2086,772,NULL,'2023-10-03 19:17:39','2023-10-03 19:18:22'),(1115,NULL,'Calle 23a # 58dd - 26','cabañas',NULL,1,NULL,NULL,0,NULL,1391,91,NULL,'2023-10-05 19:56:24','2023-10-05 20:50:29'),(1116,NULL,'Calle 36 DSur # 27 - 160','Loma Escobero',NULL,1,NULL,NULL,0,NULL,2102,330,NULL,'2023-10-05 23:18:08','2023-10-05 23:18:08'),(1117,'edificio familiar','Carrera 47B #77 Sur-151, Sabaneta, Antioquia, Colombia','los dolores','primer piso',1,'6.1491575','-75.6238213',1,85,2119,772,NULL,'2023-10-07 21:59:33','2023-10-07 21:59:53'),(1118,'casa','Calle 20 Sur #25b-265, Molinas del Viento, Medellín, Antioquia, Colombia','San Lucas','Edificio San Lucas de la Serranía apto 602',1,'6.1809056','-75.5674931',1,1,2129,547,NULL,'2023-10-09 15:33:39','2023-10-09 15:33:39');
/*!40000 ALTER TABLE `addresses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `app_section_tags`
--

DROP TABLE IF EXISTS `app_section_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `app_section_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `app_section_id` bigint(20) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `app_section_tags_app_section_id_foreign` (`app_section_id`),
  KEY `app_section_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `app_section_tags`
--

LOCK TABLES `app_section_tags` WRITE;
/*!40000 ALTER TABLE `app_section_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `app_section_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `app_sections`
--

DROP TABLE IF EXISTS `app_sections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `app_sections` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `path` varchar(50) NOT NULL,
  `tab` varchar(191) DEFAULT NULL,
  `description` varchar(50) NOT NULL,
  `button_text_color` varchar(50) DEFAULT NULL,
  `button_color` varchar(50) DEFAULT NULL,
  `button_image` varchar(191) DEFAULT NULL,
  `button_width` varchar(191) DEFAULT NULL,
  `button_link` varchar(300) DEFAULT NULL,
  `icon_name` varchar(191) DEFAULT NULL,
  `button_order` int(10) unsigned DEFAULT NULL,
  `validate_data_type` varchar(191) DEFAULT NULL,
  `chip_new` tinyint(1) NOT NULL DEFAULT 0,
  `enable_on_home` tinyint(1) NOT NULL DEFAULT 1,
  `enable_on_tabs` tinyint(1) NOT NULL DEFAULT 0,
  `enable_on_settings` tinyint(1) NOT NULL DEFAULT 0,
  `enable_section_on_home` tinyint(1) NOT NULL DEFAULT 0,
  `link_section_home` varchar(300) DEFAULT NULL COMMENT 'Link de las imagenes en secciones home',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `app_sections`
--

LOCK TABLES `app_sections` WRITE;
/*!40000 ALTER TABLE `app_sections` DISABLE KEYS */;
INSERT INTO `app_sections` VALUES (1,'Tienda Naranja','/app/tabs/shop',NULL,'Sección de tienda',NULL,NULL,NULL,'12',NULL,'storefront-outline',3,'Seleccionar',0,1,1,0,0,NULL,1,'2023-07-07 22:06:50','2023-09-07 20:29:41'),(2,'Tienda','/shopify',NULL,'Sección de tienda shopify',NULL,NULL,NULL,'6',NULL,'storefront-outline',1,NULL,0,1,0,0,0,NULL,0,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(3,'Boletería','/tickets',NULL,'Sección de boleteria',NULL,NULL,NULL,'6',NULL,'ticket-outline',2,NULL,0,1,0,0,0,NULL,0,'2023-07-07 22:06:50','2023-07-07 22:07:31'),(4,'Abonos','/flash-tickets',NULL,'Sección de boleteria flash',NULL,NULL,NULL,'6',NULL,'ticket-outline',4,'Seleccionar',0,1,0,0,0,NULL,1,'2023-07-07 22:06:50','2023-09-07 16:47:21'),(5,'Mis Boletas','/tickets-list',NULL,'Sección de boletas',NULL,NULL,NULL,'6',NULL,'qr-code-outline',6,'Seleccionar',0,1,0,0,0,NULL,1,'2023-07-07 22:06:50','2023-09-07 16:48:09'),(6,'Directorio negocios','/business-directory',NULL,'Sección de negocios',NULL,NULL,NULL,'6',NULL,'book-outline',4,NULL,0,1,0,0,0,NULL,0,'2023-07-07 22:06:50','2023-07-07 22:07:27'),(7,'Escuela de iniciación','/academy',NULL,'Sección de academias',NULL,NULL,NULL,'6',NULL,'football-outline',1,'document',0,1,0,0,0,NULL,1,'2023-07-07 22:06:50','2023-07-29 11:49:53'),(8,'Club Beneficios','/wallet',NULL,'Sección de beneficios',NULL,NULL,NULL,'6',NULL,'people-outline',5,'Seleccionar',0,1,0,0,0,NULL,1,'2023-07-07 22:06:50','2023-09-07 16:47:48'),(9,'Mis Carnés','/user-cards',NULL,'Sección de carnés usuario',NULL,NULL,NULL,'6',NULL,'id-card-outline',7,NULL,0,1,0,0,0,NULL,1,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(10,'Comunidad','/youtube','social','Seccion de Comunidad',NULL,NULL,NULL,'6',NULL,'share-social-outline',10,NULL,0,0,1,0,0,NULL,1,'2023-06-15 22:00:38','2023-06-15 22:00:38'),(11,'Revista','/players','player','Seccion de Comunidad',NULL,NULL,NULL,'6',NULL,'share-social-outline',10,'Seleccionar',0,0,0,0,0,NULL,1,'2023-06-15 22:00:38','2023-07-25 21:38:04'),(12,'Partidos','/home',NULL,'Sección de partidos',NULL,NULL,NULL,'6',NULL,'information-circle-outline',1,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(13,'Noticias','/home',NULL,'Sección de noticias',NULL,NULL,NULL,'6',NULL,'information-circle-outline',2,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(14,'Redes Sociales','/home',NULL,'Sección de redes sociales',NULL,NULL,NULL,'6',NULL,'information-circle-outline',3,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(15,'Revista','/home',NULL,'Sección de revista',NULL,NULL,NULL,'6',NULL,'information-circle-outline',4,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(16,'Datos y estadísticas','/home',NULL,'Sección de datos y estadísticas',NULL,NULL,NULL,'6',NULL,'information-circle-outline',5,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(17,'Equipo','/home',NULL,'Sección de equipo',NULL,NULL,NULL,'6',NULL,'information-circle-outline',6,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(18,'Matches','/home',NULL,'Sección de matches',NULL,NULL,NULL,'6',NULL,'information-circle-outline',1,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(19,'News','/home',NULL,'Sección de news',NULL,NULL,NULL,'6',NULL,'information-circle-outline',2,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(20,'Social','/home',NULL,'Sección de social',NULL,NULL,NULL,'6',NULL,'information-circle-outline',3,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(21,'Magazine','/home',NULL,'Sección de magazine',NULL,NULL,NULL,'6',NULL,'information-circle-outline',4,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(22,'Stats','/home',NULL,'Sección de stats',NULL,NULL,NULL,'6',NULL,'information-circle-outline',5,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(23,'Team','/home',NULL,'Sección de team',NULL,NULL,NULL,'6',NULL,'information-circle-outline',6,NULL,0,0,0,0,1,NULL,1,'2023-08-08 17:46:42','2023-08-08 17:46:42'),(24,'Cantera Adultos','/academy/adult',NULL,'Cantera Adultos',NULL,NULL,NULL,'6',NULL,'football-outline',2,'Seleccionar',0,1,0,0,0,NULL,1,'2023-09-06 20:58:49','2023-09-07 20:09:23');
/*!40000 ALTER TABLE `app_sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `app_validation_section_tags`
--

DROP TABLE IF EXISTS `app_validation_section_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `app_validation_section_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `app_validation_section_id` bigint(20) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `app_validation_section_tags_app_validation_section_id_foreign` (`app_validation_section_id`),
  KEY `app_validation_section_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `app_validation_section_tags`
--

LOCK TABLES `app_validation_section_tags` WRITE;
/*!40000 ALTER TABLE `app_validation_section_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `app_validation_section_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `app_validation_sections`
--

DROP TABLE IF EXISTS `app_validation_sections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `app_validation_sections` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `description` varchar(50) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `parent_section_id` bigint(20) unsigned DEFAULT NULL COMMENT 'Campo para asignar sección padre',
  `options` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `app_validation_sections_parent_section_id_foreign` (`parent_section_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `app_validation_sections`
--

LOCK TABLES `app_validation_sections` WRITE;
/*!40000 ALTER TABLE `app_validation_sections` DISABLE KEYS */;
INSERT INTO `app_validation_sections` VALUES (1,'Academia','Sección para validar asistencias','https://s3.us-east-2.amazonaws.com/b001-si/bikenow/envigado/app_validation/section/1.png',1,'2023-02-17 12:03:50','2023-02-17 12:05:29',NULL,NULL);
/*!40000 ALTER TABLE `app_validation_sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `attribute_types`
--

DROP TABLE IF EXISTS `attribute_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `attribute_types` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `attribute_types`
--

LOCK TABLES `attribute_types` WRITE;
/*!40000 ALTER TABLE `attribute_types` DISABLE KEYS */;
INSERT INTO `attribute_types` VALUES (1,'Text',1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(2,'Checkbox único',1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(3,'Checkbox múltiple',1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(4,'Color picker',1,'2021-05-01 21:58:23','2021-05-01 21:58:23');
/*!40000 ALTER TABLE `attribute_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `attributes`
--

DROP TABLE IF EXISTS `attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `attributes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `display_name` varchar(191) DEFAULT NULL,
  `is_more_one` tinyint(1) DEFAULT 0,
  `required` tinyint(1) DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `attribute_type_id` int(10) unsigned NOT NULL DEFAULT 1,
  `reference_shopify_id` varchar(550) DEFAULT NULL,
  `reference_woocommerce_attribute_id` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `attributes_attribute_type_id_foreign` (`attribute_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `attributes`
--

LOCK TABLES `attributes` WRITE;
/*!40000 ALTER TABLE `attributes` DISABLE KEYS */;
/*!40000 ALTER TABLE `attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `average_months`
--

DROP TABLE IF EXISTS `average_months`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `average_months` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `day` int(11) NOT NULL,
  `year` int(11) NOT NULL,
  `number_month` int(11) NOT NULL,
  `sum_time` int(11) NOT NULL,
  `quantity_orders` int(11) NOT NULL,
  `average_times` int(11) NOT NULL,
  `sucursal_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `average_months_sucursal_id_foreign` (`sucursal_id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `average_months`
--

LOCK TABLES `average_months` WRITE;
/*!40000 ALTER TABLE `average_months` DISABLE KEYS */;
INSERT INTO `average_months` VALUES (1,6,2023,3,1777123,35,50775,NULL,'2023-03-06 19:44:09','2023-03-06 21:00:32'),(2,10,2023,4,479734,13,36903,NULL,'2023-04-10 15:25:42','2023-04-10 16:58:59'),(3,26,2023,4,111437,4,27859,NULL,'2023-04-26 15:24:26','2023-04-26 16:18:56'),(4,30,2023,5,178105,5,35621,NULL,'2023-05-30 22:53:07','2023-05-30 23:02:28'),(5,8,2023,6,14390,2,7195,NULL,'2023-06-08 15:51:03','2023-06-08 15:54:40'),(6,21,2023,6,11317,1,11317,NULL,'2023-06-21 16:57:34','2023-06-21 16:57:34'),(7,8,2023,8,16758,1,16758,NULL,'2023-08-08 15:38:20','2023-08-08 15:38:20'),(8,16,2023,8,21366,2,10683,NULL,'2023-08-16 20:31:03','2023-08-16 20:34:59'),(9,29,2023,8,45376,2,22688,NULL,'2023-08-29 14:28:08','2023-08-29 14:31:04'),(10,30,2023,8,2797,1,2797,NULL,'2023-08-30 19:46:42','2023-08-30 19:46:42'),(11,7,2023,9,12556,1,12556,NULL,'2023-09-07 17:08:50','2023-09-07 17:08:50'),(12,11,2023,9,8235,1,8235,NULL,'2023-09-11 16:28:21','2023-09-11 16:28:21'),(13,14,2023,9,8659,1,8659,NULL,'2023-09-14 19:27:43','2023-09-14 19:27:43'),(14,3,2023,10,45044,3,15015,NULL,'2023-10-03 15:04:50','2023-10-03 20:44:12'),(15,6,2023,10,4005,1,4005,NULL,'2023-10-06 14:03:22','2023-10-06 14:03:22');
/*!40000 ALTER TABLE `average_months` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `average_times`
--

DROP TABLE IF EXISTS `average_times`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `average_times` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `year` varchar(191) NOT NULL,
  `month_number` varchar(191) NOT NULL,
  `amount_time` double NOT NULL,
  `order_quantity` int(11) NOT NULL,
  `average_time` int(11) NOT NULL,
  `sucursal_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `average_times_sucursal_id_foreign` (`sucursal_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `average_times`
--

LOCK TABLES `average_times` WRITE;
/*!40000 ALTER TABLE `average_times` DISABLE KEYS */;
INSERT INTO `average_times` VALUES (1,'2023','3',1777123,35,50775,NULL,'2023-03-06 19:44:09','2023-03-06 21:00:32'),(2,'2023','4',591171,17,34775,NULL,'2023-04-10 15:25:42','2023-04-26 16:18:56'),(3,'2023','5',178105,5,35621,NULL,'2023-05-30 22:53:07','2023-05-30 23:02:28'),(4,'2023','6',25707,3,8569,NULL,'2023-06-08 15:51:03','2023-06-21 16:57:34'),(5,'2023','8',86297,6,14383,NULL,'2023-08-08 15:38:20','2023-08-30 19:46:42'),(6,'2023','9',29450,3,9817,NULL,'2023-09-07 17:08:50','2023-09-14 19:27:43'),(7,'2023','10',49049,4,12262,NULL,'2023-10-03 15:04:50','2023-10-06 14:03:22');
/*!40000 ALTER TABLE `average_times` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `banner_tags`
--

DROP TABLE IF EXISTS `banner_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `banner_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `banner_id` int(10) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `banner_tags_banner_id_foreign` (`banner_id`),
  KEY `banner_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `banner_tags`
--

LOCK TABLES `banner_tags` WRITE;
/*!40000 ALTER TABLE `banner_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `banner_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `banners`
--

DROP TABLE IF EXISTS `banners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `banners` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `order` int(11) NOT NULL,
  `type_action_id` bigint(20) unsigned DEFAULT NULL,
  `value` text DEFAULT NULL,
  `description` varchar(191) DEFAULT NULL,
  `target` varchar(255) DEFAULT 'home,app-store' COMMENT 'En cual sección de la app se va a mostrar',
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `hide_name` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Activas o desactivas el nombre del banner',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `banners_type_action_id_foreign` (`type_action_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `banners`
--

LOCK TABLES `banners` WRITE;
/*!40000 ALTER TABLE `banners` DISABLE KEYS */;
/*!40000 ALTER TABLE `banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bookcase_embeds`
--

DROP TABLE IF EXISTS `bookcase_embeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bookcase_embeds` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bookcase_embeds`
--

LOCK TABLES `bookcase_embeds` WRITE;
/*!40000 ALTER TABLE `bookcase_embeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `bookcase_embeds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `brands`
--

DROP TABLE IF EXISTS `brands`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `brands` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `brands`
--

LOCK TABLES `brands` WRITE;
/*!40000 ALTER TABLE `brands` DISABLE KEYS */;
INSERT INTO `brands` VALUES (15,'NOVO SPORT',1,NULL,'2023-01-23 19:54:38','2023-01-23 19:54:38'),(16,'EFC',1,NULL,'2023-06-17 02:16:18','2023-06-17 02:16:18'),(17,'OTO CAPS',1,NULL,'2023-07-07 20:42:45','2023-07-07 20:42:45');
/*!40000 ALTER TABLE `brands` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `business_categories`
--

DROP TABLE IF EXISTS `business_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `business_categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `description` varchar(255) NOT NULL,
  `priority` int(11) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Categoria activa o no',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_categories`
--

LOCK TABLES `business_categories` WRITE;
/*!40000 ALTER TABLE `business_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `business_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `business_parameters`
--

DROP TABLE IF EXISTS `business_parameters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `business_parameters` (
  `key` varchar(100) NOT NULL,
  `value` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_parameters`
--

LOCK TABLES `business_parameters` WRITE;
/*!40000 ALTER TABLE `business_parameters` DISABLE KEYS */;
INSERT INTO `business_parameters` VALUES ('terms',NULL,'2023-04-20 13:08:40','2023-04-20 13:08:40');
/*!40000 ALTER TABLE `business_parameters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `business_ratings`
--

DROP TABLE IF EXISTS `business_ratings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `business_ratings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `img` varchar(255) DEFAULT NULL,
  `score` double DEFAULT NULL,
  `business_rating_id` bigint(20) unsigned DEFAULT NULL,
  `comment` longtext DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `business_ratings_business_rating_id_foreign` (`business_rating_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_ratings`
--

LOCK TABLES `business_ratings` WRITE;
/*!40000 ALTER TABLE `business_ratings` DISABLE KEYS */;
INSERT INTO `business_ratings` VALUES (1,'Mala',NULL,1,1,'Mala atención,No hay productos,Calidad producto o servicio,Precio',1,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(2,'Regular',NULL,2.5,2,'Calidad producto o servicio,Pocos productos,Precio,Atención regular',1,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(3,'Buena',NULL,3.5,3,'Buena oferta de productos y servicios,Buen servicio,Buena atención del propietario',1,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(4,'Excelente',NULL,5,4,'Servicio/productos excepcionales,Excelente atención,Profesionalismo,Excelente Calidad',1,'2023-07-07 22:06:50','2023-07-07 22:06:50');
/*!40000 ALTER TABLE `business_ratings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `business_user_ratings`
--

DROP TABLE IF EXISTS `business_user_ratings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `business_user_ratings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL COMMENT 'Campo para asociar el usuario',
  `business_id` bigint(20) unsigned NOT NULL COMMENT 'Campo para asociar el negocio',
  `business_ratings_id` bigint(20) unsigned NOT NULL COMMENT 'Campo para asociar la calificacion',
  `score` double DEFAULT NULL,
  `comment` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `business_user_ratings_business_id_foreign` (`business_id`),
  KEY `business_user_ratings_user_id_foreign` (`user_id`),
  KEY `business_user_ratings_business_ratings_id_foreign` (`business_ratings_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_user_ratings`
--

LOCK TABLES `business_user_ratings` WRITE;
/*!40000 ALTER TABLE `business_user_ratings` DISABLE KEYS */;
/*!40000 ALTER TABLE `business_user_ratings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `businesses`
--

DROP TABLE IF EXISTS `businesses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `businesses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `image` varchar(255) DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `phone` varchar(255) NOT NULL,
  `age` varchar(255) DEFAULT NULL COMMENT 'Años de funcionamiento',
  `instagram` varchar(191) DEFAULT NULL,
  `facebook` varchar(191) DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  `address_id` int(10) unsigned NOT NULL,
  `score` double NOT NULL DEFAULT 0,
  `approved` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Campo para que el equipo pueda aprobar desde el panel',
  `active` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Activo o no',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `businesses_user_id_foreign` (`user_id`),
  KEY `businesses_category_id_foreign` (`category_id`),
  KEY `businesses_address_id_foreign` (`address_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `businesses`
--

LOCK TABLES `businesses` WRITE;
/*!40000 ALTER TABLE `businesses` DISABLE KEYS */;
/*!40000 ALTER TABLE `businesses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache`
--

DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache` (
  `key` varchar(191) NOT NULL,
  `value` mediumtext NOT NULL,
  `expiration` int(11) NOT NULL,
  UNIQUE KEY `cache_key_unique` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache`
--

LOCK TABLES `cache` WRITE;
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `carnet_tags`
--

DROP TABLE IF EXISTS `carnet_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `carnet_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `carnet_id` bigint(20) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `carnet_tags_carnet_id_foreign` (`carnet_id`),
  KEY `carnet_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `carnet_tags`
--

LOCK TABLES `carnet_tags` WRITE;
/*!40000 ALTER TABLE `carnet_tags` DISABLE KEYS */;
INSERT INTO `carnet_tags` VALUES (3,2,6,'2023-06-17 02:07:27','2023-06-17 02:07:27');
/*!40000 ALTER TABLE `carnet_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `carnets`
--

DROP TABLE IF EXISTS `carnets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `carnets` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `optional` varchar(255) DEFAULT NULL COMMENT 'Columna utilizada para agregar un texto o palabra reservada para visualización del carnet en APP',
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `show_in` varchar(191) DEFAULT NULL,
  `font_type` varchar(191) DEFAULT NULL COMMENT 'Tipo de fuente, para las letras del carnet.',
  `font_color` varchar(191) DEFAULT NULL COMMENT 'Color de letras en el carnet.',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `carnets`
--

LOCK TABLES `carnets` WRITE;
/*!40000 ALTER TABLE `carnets` DISABLE KEYS */;
INSERT INTO `carnets` VALUES (1,'Carne academia test','1.jpg',NULL,NULL,NULL,'academy','Arial Black','#fd4701',1,'2022-12-08 23:59:06','2023-06-17 02:55:04'),(2,'Abonados','2.jpg',NULL,NULL,NULL,'subscriber','Arial Black','#000000',1,'2023-05-30 20:44:55','2023-06-17 02:07:27');
/*!40000 ALTER TABLE `carnets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `categories`
--

DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `order` int(11) NOT NULL,
  `sucursal_id` int(10) unsigned DEFAULT NULL,
  `reference_shopify_id` varchar(550) DEFAULT NULL,
  `reference_woocommerce_category_id` varchar(191) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `categories_sucursal_id_foreign` (`sucursal_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories`
--

LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (1,'HOMBRES',1,'211674595683.jpg',100,NULL,NULL,NULL,NULL,'2022-06-01 14:45:55','2023-01-25 00:37:16'),(2,'MUJERES',1,'1991674595706.jpg',101,NULL,NULL,NULL,NULL,'2022-06-01 14:46:04','2023-01-25 00:37:21'),(3,'RETRO CAMISETAS',0,'7071669221804.jpg',102,NULL,NULL,NULL,NULL,'2022-06-01 14:46:21','2023-01-24 11:12:06'),(4,'REAL 2022',0,'5601669221822.jpg',103,NULL,NULL,NULL,NULL,'2022-06-01 14:46:36','2023-01-23 19:53:26'),(5,'ACCESORIOS',0,'2371654098900.jpg',104,NULL,NULL,NULL,'2023-07-19 19:47:20','2022-06-01 14:46:50','2023-07-19 19:47:20'),(6,'OFERTAS',0,'5361654098919.jpg',105,NULL,NULL,NULL,NULL,'2022-06-01 14:47:04','2022-08-31 19:25:58'),(7,'NIÑO',0,'4561674589578.jpg',100,NULL,NULL,NULL,NULL,'2023-01-23 19:55:21','2023-01-24 19:28:35'),(8,'HOMBRE',0,'3251689780355.jpg',1,NULL,NULL,NULL,'2023-07-19 15:29:29','2023-07-19 15:25:55','2023-07-19 15:29:29'),(9,'MUJER',0,'2351689780395.jpg',2,NULL,NULL,NULL,'2023-07-19 15:29:35','2023-07-19 15:26:34','2023-07-19 15:29:35'),(10,'KIDS',0,'5601689780429.jpg',3,NULL,NULL,NULL,'2023-07-19 15:29:40','2023-07-19 15:27:08','2023-07-19 15:29:40'),(11,'HOMBRE',0,'8461689780600.jpg',1,NULL,NULL,'24',NULL,'2023-07-19 15:29:59','2023-07-19 15:30:07'),(12,'MUJER',0,'6431689780633.jpg',2,NULL,NULL,'25',NULL,'2023-07-19 15:30:33','2023-07-19 15:30:40'),(13,'KIDS',0,'4601689780673.jpg',3,NULL,NULL,'26',NULL,'2023-07-19 15:31:12','2023-07-19 15:31:20'),(14,'ACCESORIOS',0,'5431689796068.jpg',4,NULL,NULL,'27',NULL,'2023-07-19 19:47:47','2023-07-19 19:47:55');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `changelogs`
--

DROP TABLE IF EXISTS `changelogs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `changelogs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) NOT NULL,
  `description` text NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `changelogs`
--

LOCK TABLES `changelogs` WRITE;
/*!40000 ALTER TABLE `changelogs` DISABLE KEYS */;
/*!40000 ALTER TABLE `changelogs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chat_messages`
--

DROP TABLE IF EXISTS `chat_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `chat_messages` (
  `chat_id` int(10) unsigned NOT NULL,
  `messages_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  KEY `chat_messages_chat_id_foreign` (`chat_id`),
  KEY `chat_messages_messages_id_foreign` (`messages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chat_messages`
--

LOCK TABLES `chat_messages` WRITE;
/*!40000 ALTER TABLE `chat_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `chat_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chats`
--

DROP TABLE IF EXISTS `chats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `chats` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `chats_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chats`
--

LOCK TABLES `chats` WRITE;
/*!40000 ALTER TABLE `chats` DISABLE KEYS */;
/*!40000 ALTER TABLE `chats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cities`
--

DROP TABLE IF EXISTS `cities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `state_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cities_state_id_foreign` (`state_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cities`
--

LOCK TABLES `cities` WRITE;
/*!40000 ALTER TABLE `cities` DISABLE KEYS */;
INSERT INTO `cities` VALUES (1,'Abriaquí',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(2,'Acacías',1,50,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(3,'Acandí',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(4,'Acevedo',1,41,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(5,'Achí',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(6,'Agrado',1,41,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(7,'Agua de Dios',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(8,'Aguachica',1,20,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(9,'Aguada',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(10,'Aguadas',1,17,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(11,'Aguazul',1,85,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(12,'Agustín Codazzi',1,20,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(13,'Aipe',1,41,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(14,'Albania',1,18,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(15,'Albania',1,44,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(16,'Albania',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(17,'Albán',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(18,'Albán (San José)',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(19,'Alcalá',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(20,'Alejandria',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(21,'Algarrobo',1,47,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(22,'Algeciras',1,41,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(23,'Almaguer',1,19,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(24,'Almeida',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(25,'Alpujarra',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(26,'Altamira',1,41,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(27,'Alto Baudó (Pie de Pato)',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(28,'Altos del Rosario',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(29,'Alvarado',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(30,'Amagá',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(31,'Amalfi',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(32,'Ambalema',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(33,'Anapoima',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(34,'Ancuya',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(35,'Andalucía',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(36,'Andes',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(37,'Angelópolis',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(38,'Angostura',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(39,'Anolaima',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(40,'Anorí',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(41,'Anserma',1,17,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(42,'Ansermanuevo',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(43,'Anzoátegui',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(44,'Anzá',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(45,'Apartadó',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(46,'Apulo',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(47,'Apía',1,66,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(48,'Aquitania',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(49,'Aracataca',1,47,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(50,'Aranzazu',1,17,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(51,'Aratoca',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(52,'Arauca',1,81,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(53,'Arauquita',1,81,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(54,'Arbeláez',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(55,'Arboleda (Berruecos)',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(56,'Arboledas',1,54,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(57,'Arboletes',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(58,'Arcabuco',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(59,'Arenal',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(60,'Argelia',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(61,'Argelia',1,19,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(62,'Argelia',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(63,'Ariguaní (El Difícil)',1,47,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(64,'Arjona',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(65,'Armenia',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(66,'Armenia',1,63,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(67,'Armero (Guayabal)',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(68,'Arroyohondo',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(69,'Astrea',1,20,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(70,'Ataco',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(71,'Atrato (Yuto)',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(72,'Ayapel',1,23,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(73,'Bagadó',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(74,'Bahía Solano (Mútis)',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(75,'Bajo Baudó (Pizarro)',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(76,'Balboa',1,19,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(77,'Balboa',1,66,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(78,'Baranoa',1,8,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(79,'Baraya',1,41,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(80,'Barbacoas',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(81,'Barbosa',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(82,'Barbosa',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(83,'Barichara',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(84,'Barranca de Upía',1,50,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(85,'Barrancabermeja',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(86,'Barrancas',1,44,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(87,'Barranco de Loba',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(88,'Barranquilla',1,8,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(89,'Becerríl',1,20,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(90,'Belalcázar',1,17,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(91,'Bello',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(92,'Belmira',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(93,'Beltrán',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(94,'Belén',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(95,'Belén',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(96,'Belén de Bajirá',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(97,'Belén de Umbría',1,66,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(98,'Belén de los Andaquíes',1,18,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(99,'Berbeo',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(100,'Betania',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(101,'Beteitiva',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(102,'Betulia',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(103,'Betulia',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(104,'Bituima',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(105,'Boavita',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(106,'Bochalema',1,54,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(107,'Bogotá D.C.',1,11,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(108,'Bojacá',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(109,'Bojayá (Bellavista)',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(110,'Bolívar',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(111,'Bolívar',1,19,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(112,'Bolívar',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(113,'Bolívar',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(114,'Bosconia',1,20,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(115,'Boyacá',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(116,'Briceño',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(117,'Briceño',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(118,'Bucaramanga',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(119,'Bucarasica',1,54,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(120,'Buenaventura',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(121,'Buenavista',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(122,'Buenavista',1,23,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(123,'Buenavista',1,63,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(124,'Buenavista',1,70,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(125,'Buenos Aires',1,19,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(126,'Buesaco',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(127,'Buga',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(128,'Bugalagrande',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(129,'Burítica',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(130,'Busbanza',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(131,'Cabrera',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(132,'Cabrera',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(133,'Cabuyaro',1,50,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(134,'Cachipay',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(135,'Caicedo',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(136,'Caicedonia',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(137,'Caimito',1,70,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(138,'Cajamarca',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(139,'Cajibío',1,19,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(140,'Cajicá',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(141,'Calamar',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(142,'Calamar',1,95,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(143,'Calarcá',1,63,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(144,'Caldas',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(145,'Caldas',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(146,'Caldono',1,19,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(147,'California',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(148,'Calima (Darién)',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(149,'Caloto',1,19,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(150,'Cali',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(151,'Campamento',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(152,'Campo de la Cruz',1,8,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(153,'Campoalegre',1,41,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(154,'Campohermoso',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(155,'Canalete',1,23,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(156,'Candelaria',1,8,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(157,'Candelaria',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(158,'Cantagallo',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(159,'Cantón de San Pablo',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(160,'Caparrapí',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(161,'Capitanejo',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(162,'Caracolí',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(163,'Caramanta',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(164,'Carcasí',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(165,'Carepa',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(166,'Carmen de Apicalá',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(167,'Carmen de Carupa',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(168,'Carmen de Viboral',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(169,'Carmen del Darién (CURBARADÓ)',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(170,'Carolina',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(171,'Cartagena',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(172,'Cartagena del Chairá',1,18,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(173,'Cartago',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(174,'Carurú',1,97,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(175,'Casabianca',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(176,'Castilla la Nueva',1,50,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(177,'Caucasia',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(178,'Cañasgordas',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(179,'Cepita',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(180,'Cereté',1,23,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(181,'Cerinza',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(182,'Cerrito',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(183,'Cerro San Antonio',1,47,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(184,'Chachaguí',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(185,'Chaguaní',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(186,'Chalán',1,70,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(187,'Chaparral',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(188,'Charalá',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(189,'Charta',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(190,'Chigorodó',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(191,'Chima',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(192,'Chimichagua',1,20,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(193,'Chimá',1,23,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(194,'Chinavita',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(195,'Chinchiná',1,17,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(196,'Chinácota',1,54,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(197,'Chinú',1,23,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(198,'Chipaque',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(199,'Chipatá',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(200,'Chiquinquirá',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(201,'Chiriguaná',1,20,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(202,'Chiscas',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(203,'Chita',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(204,'Chitagá',1,54,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(205,'Chitaraque',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(206,'Chivatá',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(207,'Chivolo',1,47,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(208,'Choachí',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(209,'Chocontá',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(210,'Chámeza',1,85,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(211,'Chía',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(212,'Chíquiza',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(213,'Chívor',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(214,'Cicuco',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(215,'Cimitarra',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(216,'Circasia',1,63,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(217,'Cisneros',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(218,'Ciénaga',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(219,'Ciénaga',1,47,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(220,'Ciénaga de Oro',1,23,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(221,'Clemencia',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(222,'Cocorná',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(223,'Coello',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(224,'Cogua',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(225,'Colombia',1,41,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(226,'Colosó (Ricaurte)',1,70,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(227,'Colón',1,86,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(228,'Colón (Génova)',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(229,'Concepción',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(230,'Concepción',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(231,'Concordia',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(232,'Concordia',1,47,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(233,'Condoto',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(234,'Confines',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(235,'Consaca',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(236,'Contadero',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(237,'Contratación',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(238,'Convención',1,54,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(239,'Copacabana',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(240,'Coper',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(241,'Cordobá',1,63,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(242,'Corinto',1,19,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(243,'Coromoro',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(244,'Corozal',1,70,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(245,'Corrales',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(246,'Cota',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(247,'Cotorra',1,23,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(248,'Covarachía',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(249,'Coveñas',1,70,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(250,'Coyaima',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(251,'Cravo Norte',1,81,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(252,'Cuaspud (Carlosama)',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(253,'Cubarral',1,50,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(254,'Cubará',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(255,'Cucaita',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(256,'Cucunubá',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(257,'Cucutilla',1,54,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(258,'Cuitiva',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(259,'Cumaral',1,50,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(260,'Cumaribo',1,99,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(261,'Cumbal',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(262,'Cumbitara',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(263,'Cunday',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(264,'Curillo',1,18,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(265,'Curití',1,68,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(266,'Curumaní',1,20,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(267,'Cáceres',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(268,'Cáchira',1,54,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(269,'Cácota',1,54,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(270,'Cáqueza',1,25,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(271,'Cértegui',1,27,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(272,'Cómbita',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(273,'Córdoba',1,13,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(274,'Córdoba',1,52,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(275,'Cúcuta',1,54,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(276,'Dabeiba',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(277,'Dagua',1,76,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(278,'Dibulla',1,44,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(279,'Distracción',1,44,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(280,'Dolores',1,73,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(281,'Don Matías',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(282,'Dos Quebradas',1,66,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(283,'Duitama',1,15,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(284,'Durania',1,54,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(285,'Ebéjico',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(286,'El Bagre',1,5,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(287,'El Banco',1,47,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(288,'El Cairo',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(289,'El Calvario',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(290,'El Carmen',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(291,'El Carmen',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(292,'El Carmen de Atrato',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(293,'El Carmen de Bolívar',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(294,'El Castillo',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(295,'El Cerrito',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(296,'El Charco',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(297,'El Cocuy',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(298,'El Colegio',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(299,'El Copey',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(300,'El Doncello',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(301,'El Dorado',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(302,'El Dovio',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(303,'El Espino',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(304,'El Guacamayo',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(305,'El Guamo',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(306,'El Molino',1,44,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(307,'El Paso',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(308,'El Paujil',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(309,'El Peñol',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(310,'El Peñon',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(311,'El Peñon',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(312,'El Peñón',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(313,'El Piñon',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(314,'El Playón',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(315,'El Retorno',1,95,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(316,'El Retén',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(317,'El Roble',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(318,'El Rosal',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(319,'El Rosario',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(320,'El Tablón de Gómez',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(321,'El Tambo',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(322,'El Tambo',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(323,'El Tarra',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(324,'El Zulia',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(325,'El Águila',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(326,'Elías',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(327,'Encino',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(328,'Enciso',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(329,'Entrerríos',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(330,'Envigado',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(331,'Espinal',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(332,'Facatativá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(333,'Falan',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(334,'Filadelfia',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(335,'Filandia',1,63,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(336,'Firavitoba',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(337,'Flandes',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(338,'Florencia',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(339,'Florencia',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(340,'Floresta',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(341,'Florida',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(342,'Floridablanca',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(343,'Florián',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(344,'Fonseca',1,44,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(345,'Fortúl',1,81,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(346,'Fosca',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(347,'Francisco Pizarro',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(348,'Fredonia',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(349,'Fresno',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(350,'Frontino',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(351,'Fuente de Oro',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(352,'Fundación',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(353,'Funes',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(354,'Funza',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(355,'Fusagasugá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(356,'Fómeque',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(357,'Fúquene',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(358,'Gachalá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(359,'Gachancipá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(360,'Gachantivá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(361,'Gachetá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(362,'Galapa',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(363,'Galeras (Nueva Granada)',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(364,'Galán',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(365,'Gama',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(366,'Gamarra',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(367,'Garagoa',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(368,'Garzón',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(369,'Gigante',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(370,'Ginebra',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(371,'Giraldo',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(372,'Girardot',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(373,'Girardota',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(374,'Girón',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(375,'Gonzalez',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(376,'Gramalote',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(377,'Granada',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(378,'Granada',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(379,'Granada',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(380,'Guaca',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(381,'Guacamayas',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(382,'Guacarí',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(383,'Guachavés',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(384,'Guachené',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(385,'Guachetá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(386,'Guachucal',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(387,'Guadalupe',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(388,'Guadalupe',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(389,'Guadalupe',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(390,'Guaduas',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(391,'Guaitarilla',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(392,'Gualmatán',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(393,'Guamal',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(394,'Guamal',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(395,'Guamo',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(396,'Guapota',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(397,'Guapí',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(398,'Guaranda',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(399,'Guarne',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(400,'Guasca',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(401,'Guatapé',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(402,'Guataquí',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(403,'Guatavita',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(404,'Guateque',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(405,'Guavatá',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(406,'Guayabal de Siquima',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(407,'Guayabetal',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(408,'Guayatá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(409,'Guepsa',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(410,'Guicán',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(411,'Gutiérrez',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(412,'Guática',1,66,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(413,'Gámbita',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(414,'Gámeza',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(415,'Génova',1,63,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(416,'Gómez Plata',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(417,'Hacarí',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(418,'Hatillo de Loba',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(419,'Hato',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(420,'Hato Corozal',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(421,'Hatonuevo',1,44,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(422,'Heliconia',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(423,'Herrán',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(424,'Herveo',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(425,'Hispania',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(426,'Hobo',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(427,'Honda',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(428,'Ibagué',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(429,'Icononzo',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(430,'Iles',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(431,'Imúes',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(432,'Inzá',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(433,'Inírida',1,94,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(434,'Ipiales',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(435,'Isnos',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(436,'Istmina',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(437,'Itagüí',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(438,'Ituango',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(439,'Izá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(440,'Jambaló',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(441,'Jamundí',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(442,'Jardín',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(443,'Jenesano',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(444,'Jericó',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(445,'Jericó',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(446,'Jerusalén',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(447,'Jesús María',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(448,'Jordán',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(449,'Juan de Acosta',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(450,'Junín',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(451,'Juradó',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(452,'La Apartada y La Frontera',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(453,'La Argentina',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(454,'La Belleza',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(455,'La Calera',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(456,'La Capilla',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(457,'La Ceja',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(458,'La Celia',1,66,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(459,'La Cruz',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(460,'La Cumbre',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(461,'La Dorada',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(462,'La Esperanza',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(463,'La Estrella',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(464,'La Florida',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(465,'La Gloria',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(466,'La Jagua de Ibirico',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(467,'La Jagua del Pilar',1,44,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(468,'La Llanada',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(469,'La Macarena',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(470,'La Merced',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(471,'La Mesa',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(472,'La Montañita',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(473,'La Palma',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(474,'La Paz',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(475,'La Paz (Robles)',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(476,'La Peña',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(477,'La Pintada',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(478,'La Plata',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(479,'La Playa',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(480,'La Primavera',1,99,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(481,'La Salina',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(482,'La Sierra',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(483,'La Tebaida',1,63,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(484,'La Tola',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(485,'La Unión',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(486,'La Unión',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(487,'La Unión',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(488,'La Unión',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(489,'La Uvita',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(490,'La Vega',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(491,'La Vega',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(492,'La Victoria',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(493,'La Victoria',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(494,'La Victoria',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(495,'La Virginia',1,66,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(496,'Labateca',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(497,'Labranzagrande',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(498,'Landázuri',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(499,'Lebrija',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(500,'Leiva',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(501,'Lejanías',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(502,'Lenguazaque',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(503,'Leticia',1,91,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(504,'Liborina',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(505,'Linares',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(506,'Lloró',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(507,'Lorica',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(508,'Los Córdobas',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(509,'Los Palmitos',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(510,'Los Patios',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(511,'Los Santos',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(512,'Lourdes',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(513,'Luruaco',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(514,'Lérida',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(515,'Líbano',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(516,'López (Micay)',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(517,'Macanal',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(518,'Macaravita',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(519,'Maceo',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(520,'Machetá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(521,'Madrid',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(522,'Magangué',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(523,'Magüi (Payán)',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(524,'Mahates',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(525,'Maicao',1,44,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(526,'Majagual',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(527,'Malambo',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(528,'Mallama (Piedrancha)',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(529,'Manatí',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(530,'Manaure',1,44,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(531,'Manaure Balcón del Cesar',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(532,'Manizales',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(533,'Manta',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(534,'Manzanares',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(535,'Maní',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(536,'Mapiripan',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(537,'Margarita',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(538,'Marinilla',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(539,'Maripí',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(540,'Mariquita',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(541,'Marmato',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(542,'Marquetalia',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(543,'Marsella',1,66,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(544,'Marulanda',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(545,'María la Baja',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(546,'Matanza',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(547,'Medellín',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(548,'Medina',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(549,'Medio Atrato',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(550,'Medio Baudó',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(551,'Medio San Juan (ANDAGOYA)',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(552,'Melgar',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(553,'Mercaderes',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(554,'Mesetas',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(555,'Milán',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(556,'Miraflores',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(557,'Miraflores',1,95,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(558,'Miranda',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(559,'Mistrató',1,66,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(560,'Mitú',1,97,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(561,'Mocoa',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(562,'Mogotes',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(563,'Molagavita',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(564,'Momil',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(565,'Mompós',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(566,'Mongua',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(567,'Monguí',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(568,'Moniquirá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(569,'Montebello',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(570,'Montecristo',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(571,'Montelíbano',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(572,'Montenegro',1,63,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(573,'Monteria',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(574,'Monterrey',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(575,'Morales',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(576,'Morales',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(577,'Morelia',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(578,'Morroa',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(579,'Mosquera',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(580,'Mosquera',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(581,'Motavita',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(582,'Moñitos',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(583,'Murillo',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(584,'Murindó',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(585,'Mutatá',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(586,'Mutiscua',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(587,'Muzo',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(588,'Málaga',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(589,'Nariño',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(590,'Nariño',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(591,'Nariño',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(592,'Natagaima',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(593,'Nechí',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(594,'Necoclí',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(595,'Neira',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(596,'Neiva',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(597,'Nemocón',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(598,'Nilo',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(599,'Nimaima',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(600,'Nobsa',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(601,'Nocaima',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(602,'Norcasia',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(603,'Norosí',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(604,'Novita',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(605,'Nueva Granada',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(606,'Nuevo Colón',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(607,'Nunchía',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(608,'Nuquí',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(609,'Nátaga',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(610,'Obando',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(611,'Ocamonte',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(612,'Ocaña',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(613,'Oiba',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(614,'Oicatá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(615,'Olaya',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(616,'Olaya Herrera',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(617,'Onzaga',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(618,'Oporapa',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(619,'Orito',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(620,'Orocué',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(621,'Ortega',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(622,'Ospina',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(623,'Otanche',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(624,'Ovejas',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(625,'Pachavita',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(626,'Pacho',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(627,'Padilla',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(628,'Paicol',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(629,'Pailitas',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(630,'Paime',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(631,'Paipa',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(632,'Pajarito',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(633,'Palermo',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(634,'Palestina',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(635,'Palestina',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(636,'Palmar',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(637,'Palmar de Varela',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(638,'Palmas del Socorro',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(639,'Palmira',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(640,'Palmito',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(641,'Palocabildo',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(642,'Pamplona',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(643,'Pamplonita',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(644,'Pandi',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(645,'Panqueba',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(646,'Paratebueno',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(647,'Pasca',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(648,'Patía (El Bordo)',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(649,'Pauna',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(650,'Paya',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(651,'Paz de Ariporo',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(652,'Paz de Río',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(653,'Pedraza',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(654,'Pelaya',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(655,'Pensilvania',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(656,'Peque',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(657,'Pereira',1,66,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(658,'Pesca',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(659,'Peñol',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(660,'Piamonte',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(661,'Pie de Cuesta',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(662,'Piedras',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(663,'Piendamó',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(664,'Pijao',1,63,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(665,'Pijiño',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(666,'Pinchote',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(667,'Pinillos',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(668,'Piojo',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(669,'Pisva',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(670,'Pital',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(671,'Pitalito',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(672,'Pivijay',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(673,'Planadas',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(674,'Planeta Rica',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(675,'Plato',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(676,'Policarpa',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(677,'Polonuevo',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(678,'Ponedera',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(679,'Popayán',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(680,'Pore',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(681,'Potosí',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(682,'Pradera',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(683,'Prado',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(684,'Providencia',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(685,'Providencia',1,88,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(686,'Pueblo Bello',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(687,'Pueblo Nuevo',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(688,'Pueblo Rico',1,66,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(689,'Pueblorrico',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(690,'Puebloviejo',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(691,'Puente Nacional',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(692,'Puerres',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(693,'Puerto Asís',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(694,'Puerto Berrío',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(695,'Puerto Boyacá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(696,'Puerto Caicedo',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(697,'Puerto Carreño',1,99,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(698,'Puerto Colombia',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(699,'Puerto Concordia',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(700,'Puerto Escondido',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(701,'Puerto Gaitán',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(702,'Puerto Guzmán',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(703,'Puerto Leguízamo',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(704,'Puerto Libertador',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(705,'Puerto Lleras',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(706,'Puerto López',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(707,'Puerto Nare',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(708,'Puerto Nariño',1,91,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(709,'Puerto Parra',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(710,'Puerto Rico',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(711,'Puerto Rico',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(712,'Puerto Rondón',1,81,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(713,'Puerto Salgar',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(714,'Puerto Santander',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(715,'Puerto Tejada',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(716,'Puerto Triunfo',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(717,'Puerto Wilches',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(718,'Pulí',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(719,'Pupiales',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(720,'Puracé (Coconuco)',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(721,'Purificación',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(722,'Purísima',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(723,'Pácora',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(724,'Páez',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(725,'Páez (Belalcazar)',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(726,'Páramo',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(727,'Quebradanegra',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(728,'Quetame',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(729,'Quibdó',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(730,'Quimbaya',1,63,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(731,'Quinchía',1,66,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(732,'Quipama',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(733,'Quipile',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(734,'Ragonvalia',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(735,'Ramiriquí',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(736,'Recetor',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(737,'Regidor',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(738,'Remedios',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(739,'Remolino',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(740,'Repelón',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(741,'Restrepo',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(742,'Restrepo',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(743,'Retiro',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(744,'Ricaurte',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(745,'Ricaurte',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(746,'Rio Negro',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(747,'Rioblanco',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(748,'Riofrío',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(749,'Riohacha',1,44,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(750,'Risaralda',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(751,'Rivera',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(752,'Roberto Payán (San José)',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(753,'Roldanillo',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(754,'Roncesvalles',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(755,'Rondón',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(756,'Rosas',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(757,'Rovira',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(758,'Ráquira',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(759,'Río Iró',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(760,'Río Quito',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(761,'Río Sucio',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(762,'Río Viejo',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(763,'Río de oro',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(764,'Ríonegro',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(765,'Ríosucio',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(766,'Sabana de Torres',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(767,'Sabanagrande',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(768,'Sabanalarga',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(769,'Sabanalarga',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(770,'Sabanalarga',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(771,'Sabanas de San Angel (SAN ANGEL)',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(772,'Sabaneta',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(773,'Saboyá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(774,'Sahagún',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(775,'Saladoblanco',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(776,'Salamina',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(777,'Salamina',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(778,'Salazar',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(779,'Saldaña',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(780,'Salento',1,63,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(781,'Salgar',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(782,'Samacá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(783,'Samaniego',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(784,'Samaná',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(785,'Sampués',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(786,'San Agustín',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(787,'San Alberto',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(788,'San Andrés',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(789,'San Andrés Sotavento',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(790,'San Andrés de Cuerquía',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(791,'San Antero',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(792,'San Antonio',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(793,'San Antonio de Tequendama',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(794,'San Benito',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(795,'San Benito Abad',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(796,'San Bernardo',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(797,'San Bernardo',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(798,'San Bernardo del Viento',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(799,'San Calixto',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(800,'San Carlos',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(801,'San Carlos',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(802,'San Carlos de Guaroa',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(803,'San Cayetano',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(804,'San Cayetano',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(805,'San Cristobal',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(806,'San Diego',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(807,'San Eduardo',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(808,'San Estanislao',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(809,'San Fernando',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(810,'San Francisco',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(811,'San Francisco',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(812,'San Francisco',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(813,'San Gíl',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(814,'San Jacinto',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(815,'San Jacinto del Cauca',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(816,'San Jerónimo',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(817,'San Joaquín',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(818,'San José',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(819,'San José de Miranda',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(820,'San José de Montaña',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(821,'San José de Pare',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(822,'San José de Uré',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(823,'San José del Fragua',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(824,'San José del Guaviare',1,95,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(825,'San José del Palmar',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(826,'San Juan de Arama',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(827,'San Juan de Betulia',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(828,'San Juan de Nepomuceno',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(829,'San Juan de Pasto',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(830,'San Juan de Río Seco',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(831,'San Juan de Urabá',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(832,'San Juan del Cesar',1,44,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(833,'San Juanito',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(834,'San Lorenzo',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(835,'San Luis',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(836,'San Luís',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(837,'San Luís de Gaceno',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(838,'San Luís de Palenque',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(839,'San Marcos',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(840,'San Martín',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(841,'San Martín',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(842,'San Martín de Loba',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(843,'San Mateo',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(844,'San Miguel',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(845,'San Miguel',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(846,'San Miguel de Sema',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(847,'San Onofre',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(848,'San Pablo',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(849,'San Pablo',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(850,'San Pablo de Borbur',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(851,'San Pedro',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(852,'San Pedro',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(853,'San Pedro',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(854,'San Pedro de Cartago',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(855,'San Pedro de Urabá',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(856,'San Pelayo',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(857,'San Rafael',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(858,'San Roque',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(859,'San Sebastián',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(860,'San Sebastián de Buenavista',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(861,'San Vicente',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(862,'San Vicente del Caguán',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(863,'San Vicente del Chucurí',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(864,'San Zenón',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(865,'Sandoná',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(866,'Santa Ana',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(867,'Santa Bárbara',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(868,'Santa Bárbara',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(869,'Santa Bárbara (Iscuandé)',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(870,'Santa Bárbara de Pinto',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(871,'Santa Catalina',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(872,'Santa Fé de Antioquia',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(873,'Santa Genoveva de Docorodó',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(874,'Santa Helena del Opón',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(875,'Santa Isabel',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(876,'Santa Lucía',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(877,'Santa Marta',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(878,'Santa María',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(879,'Santa María',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(880,'Santa Rosa',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(881,'Santa Rosa',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(882,'Santa Rosa de Cabal',1,66,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(883,'Santa Rosa de Osos',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(884,'Santa Rosa de Viterbo',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(885,'Santa Rosa del Sur',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(886,'Santa Rosalía',1,99,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(887,'Santa Sofía',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(888,'Santana',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(889,'Santander de Quilichao',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(890,'Santiago',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(891,'Santiago',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(892,'Santo Domingo',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(893,'Santo Tomás',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(894,'Santuario',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(895,'Santuario',1,66,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(896,'Sapuyes',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(897,'Saravena',1,81,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(898,'Sardinata',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(899,'Sasaima',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(900,'Sativanorte',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(901,'Sativasur',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(902,'Segovia',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(903,'Sesquilé',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(904,'Sevilla',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(905,'Siachoque',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(906,'Sibaté',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(907,'Sibundoy',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(908,'Silos',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(909,'Silvania',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(910,'Silvia',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(911,'Simacota',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(912,'Simijaca',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(913,'Simití',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(914,'Sincelejo',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(915,'Sincé',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(916,'Sipí',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(917,'Sitionuevo',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(918,'Soacha',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(919,'Soatá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(920,'Socha',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(921,'Socorro',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(922,'Socotá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(923,'Sogamoso',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(924,'Solano',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(925,'Soledad',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(926,'Solita',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(927,'Somondoco',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(928,'Sonsón',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(929,'Sopetrán',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(930,'Soplaviento',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(931,'Sopó',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(932,'Sora',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(933,'Soracá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(934,'Sotaquirá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(935,'Sotara (Paispamba)',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(936,'Sotomayor (Los Andes)',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(937,'Suaita',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(938,'Suan',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(939,'Suaza',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(940,'Subachoque',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(941,'Sucre',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(942,'Sucre',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(943,'Sucre',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(944,'Suesca',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(945,'Supatá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(946,'Supía',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(947,'Suratá',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(948,'Susa',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(949,'Susacón',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(950,'Sutamarchán',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(951,'Sutatausa',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(952,'Sutatenza',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(953,'Suárez',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(954,'Suárez',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(955,'Sácama',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(956,'Sáchica',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(957,'Tabio',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(958,'Tadó',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(959,'Talaigua Nuevo',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(960,'Tamalameque',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(961,'Tame',1,81,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(962,'Taminango',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(963,'Tangua',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(964,'Taraira',1,97,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(965,'Tarazá',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(966,'Tarqui',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(967,'Tarso',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(968,'Tasco',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(969,'Tauramena',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(970,'Tausa',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(971,'Tello',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(972,'Tena',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(973,'Tenerife',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(974,'Tenjo',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(975,'Tenza',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(976,'Teorama',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(977,'Teruel',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(978,'Tesalia',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(979,'Tibacuy',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(980,'Tibaná',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(981,'Tibasosa',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(982,'Tibirita',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(983,'Tibú',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(984,'Tierralta',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(985,'Timaná',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(986,'Timbiquí',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(987,'Timbío',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(988,'Tinjacá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(989,'Tipacoque',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(990,'Tiquisio (Puerto Rico)',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(991,'Titiribí',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(992,'Toca',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(993,'Tocaima',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(994,'Tocancipá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(995,'Toguí',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(996,'Toledo',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(997,'Toledo',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(998,'Tolú',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(999,'Tolú Viejo',1,70,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1000,'Tona',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1001,'Topagá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1002,'Topaipí',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1003,'Toribío',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1004,'Toro',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1005,'Tota',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1006,'Totoró',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1007,'Trinidad',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1008,'Trujillo',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1009,'Tubará',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1010,'Tuchín',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1011,'Tulúa',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1012,'Tumaco',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1013,'Tunja',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1014,'Tunungua',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1015,'Turbaco',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1016,'Turbaná',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1017,'Turbo',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1018,'Turmequé',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1019,'Tuta',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1020,'Tutasá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1021,'Támara',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1022,'Támesis',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1023,'Túquerres',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1024,'Ubalá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1025,'Ubaque',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1026,'Ubaté',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1027,'Ulloa',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1028,'Une',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1029,'Unguía',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1030,'Unión Panamericana (ÁNIMAS)',1,27,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1031,'Uramita',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1032,'Uribe',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1033,'Uribia',1,44,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1034,'Urrao',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1035,'Urumita',1,44,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1036,'Usiacuri',1,8,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1037,'Valdivia',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1038,'Valencia',1,23,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1039,'Valle de San José',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1040,'Valle de San Juan',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1041,'Valle del Guamuez',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1042,'Valledupar',1,20,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1043,'Valparaiso',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1044,'Valparaiso',1,18,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1045,'Vegachí',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1046,'Venadillo',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1047,'Venecia',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1048,'Venecia (Ospina Pérez)',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1049,'Ventaquemada',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1050,'Vergara',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1051,'Versalles',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1052,'Vetas',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1053,'Viani',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1054,'Vigía del Fuerte',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1055,'Vijes',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1056,'Villa Caro',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1057,'Villa Rica',1,19,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1058,'Villa de Leiva',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1059,'Villa del Rosario',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1060,'Villagarzón',1,86,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1061,'Villagómez',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1062,'Villahermosa',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1063,'Villamaría',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1064,'Villanueva',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1065,'Villanueva',1,44,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1066,'Villanueva',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1067,'Villanueva',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1068,'Villapinzón',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1069,'Villarrica',1,73,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1070,'Villavicencio',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1071,'Villavieja',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1072,'Villeta',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1073,'Viotá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1074,'Viracachá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1075,'Vista Hermosa',1,50,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1076,'Viterbo',1,17,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1077,'Vélez',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1078,'Yacopí',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1079,'Yacuanquer',1,52,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1080,'Yaguará',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1081,'Yalí',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1082,'Yarumal',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1083,'Yolombó',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1084,'Yondó (Casabe)',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1085,'Yopal',1,85,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1086,'Yotoco',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1087,'Yumbo',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1088,'Zambrano',1,13,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1089,'Zapatoca',1,68,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1090,'Zapayán (PUNTA DE PIEDRAS)',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1091,'Zaragoza',1,5,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1092,'Zarzal',1,76,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1093,'Zetaquirá',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1094,'Zipacón',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1095,'Zipaquirá',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1096,'Zona Bananera (PRADO - SEVILLA)',1,47,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1097,'Ábrego',1,54,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1098,'Íquira',1,41,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1099,'Úmbita',1,15,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(1100,'Útica',1,25,'2021-05-01 21:58:24','2021-05-01 21:58:24');
/*!40000 ALTER TABLE `cities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `collection_invoices`
--

DROP TABLE IF EXISTS `collection_invoices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `collection_invoices` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `total` double NOT NULL DEFAULT 0,
  `debt` double NOT NULL DEFAULT 0,
  `payment` double NOT NULL DEFAULT 0,
  `percentage` double NOT NULL DEFAULT 5,
  `gateway_payment_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `collection_invoices_gateway_payment_id_foreign` (`gateway_payment_id`),
  KEY `collection_invoices_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `collection_invoices`
--

LOCK TABLES `collection_invoices` WRITE;
/*!40000 ALTER TABLE `collection_invoices` DISABLE KEYS */;
/*!40000 ALTER TABLE `collection_invoices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `collection_invoices_detail_transactions`
--

DROP TABLE IF EXISTS `collection_invoices_detail_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `collection_invoices_detail_transactions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `reference` varchar(191) NOT NULL,
  `transaction_id` varchar(191) NOT NULL,
  `origin` varchar(191) NOT NULL,
  `total` double NOT NULL,
  `gateway_id` int(10) unsigned DEFAULT NULL,
  `invoice_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `collection_invoices_detail_transactions_gateway_id_foreign` (`gateway_id`),
  KEY `collection_invoices_detail_transactions_invoice_id_foreign` (`invoice_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `collection_invoices_detail_transactions`
--

LOCK TABLES `collection_invoices_detail_transactions` WRITE;
/*!40000 ALTER TABLE `collection_invoices_detail_transactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `collection_invoices_detail_transactions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `comments`
--

DROP TABLE IF EXISTS `comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `comments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `admin_id` int(10) unsigned DEFAULT NULL,
  `qualification_admin` int(11) DEFAULT NULL,
  `observations_admin` text DEFAULT NULL,
  `delivery_man_id` int(10) unsigned DEFAULT NULL,
  `qualification_delivery_man` int(11) DEFAULT NULL,
  `observation_delivery_man` text DEFAULT NULL,
  `client_id` int(10) unsigned DEFAULT NULL,
  `qualification_client` int(11) DEFAULT NULL,
  `observations_client` text DEFAULT NULL,
  `order_id` int(10) unsigned NOT NULL,
  `sucursal_id` int(10) unsigned DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `comments_admin_id_foreign` (`admin_id`),
  KEY `comments_delivery_man_id_foreign` (`delivery_man_id`),
  KEY `comments_client_id_foreign` (`client_id`),
  KEY `comments_order_id_foreign` (`order_id`),
  KEY `comments_sucursal_id_foreign` (`sucursal_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `comments`
--

LOCK TABLES `comments` WRITE;
/*!40000 ALTER TABLE `comments` DISABLE KEYS */;
INSERT INTO `comments` VALUES (1,NULL,NULL,NULL,NULL,NULL,NULL,491,4,NULL,89,NULL,NULL,'2023-03-06 20:33:49','2023-03-06 20:33:49'),(2,NULL,NULL,NULL,NULL,NULL,NULL,477,5,NULL,96,NULL,NULL,'2023-03-06 20:53:52','2023-03-06 20:53:52'),(3,NULL,NULL,NULL,NULL,NULL,NULL,653,3,NULL,131,NULL,NULL,'2023-03-06 21:15:00','2023-03-06 21:15:00'),(4,NULL,NULL,NULL,NULL,NULL,NULL,621,5,'excelente calidad. felicitaciones a Novo Sport. fotos en mi perfil de ig @r.i.o.h',48,NULL,NULL,'2023-03-14 16:46:03','2023-03-14 16:46:03'),(5,NULL,NULL,NULL,NULL,NULL,NULL,670,1,NULL,62,NULL,NULL,'2023-03-21 12:56:45','2023-03-21 12:56:45'),(6,NULL,NULL,NULL,NULL,NULL,NULL,694,5,NULL,123,NULL,NULL,'2023-05-12 22:55:35','2023-05-12 22:55:35'),(7,NULL,NULL,NULL,NULL,NULL,NULL,1336,5,NULL,177,NULL,NULL,'2023-06-24 22:36:12','2023-06-24 22:36:12'),(8,NULL,NULL,NULL,NULL,NULL,NULL,1467,5,NULL,181,NULL,NULL,'2023-06-27 21:44:21','2023-06-27 21:44:21'),(9,NULL,NULL,NULL,NULL,NULL,NULL,1930,5,NULL,221,NULL,NULL,'2023-09-10 22:20:17','2023-09-10 22:20:17');
/*!40000 ALTER TABLE `comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `corporate_identities`
--

DROP TABLE IF EXISTS `corporate_identities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `corporate_identities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `platform_name` varchar(191) NOT NULL,
  `logo` varchar(191) NOT NULL,
  `background_login` varchar(191) NOT NULL,
  `short_name` varchar(191) NOT NULL,
  `bar_color` varchar(191) NOT NULL,
  `icon_color` varchar(191) NOT NULL,
  `btnBox_color` varchar(191) NOT NULL,
  `btnBox_hover_color` varchar(191) NOT NULL,
  `text_nombre_sede` varchar(191) NOT NULL,
  `sidebar_toggle_color` varchar(191) NOT NULL,
  `sidebar_main_background` varchar(191) NOT NULL,
  `select_header_text_color` varchar(191) NOT NULL,
  `sidebar_hover_a` varchar(191) NOT NULL,
  `sidebar_menu_open_color_a` varchar(191) NOT NULL,
  `sidebar_menu_open_background` varchar(191) NOT NULL,
  `sidebar_menu_active_a` varchar(191) NOT NULL,
  `sidebar_menu_color_text` varchar(191) NOT NULL,
  `imgHome_height_px` varchar(191) NOT NULL,
  `imgHome_max_width_px` varchar(191) NOT NULL,
  `message_subscribers_title` text DEFAULT NULL COMMENT 'Titulo del HTML abonados',
  `message_subscriber_confirmation` text DEFAULT NULL COMMENT 'Mensaje de confirmacion abonados',
  `message_subscriber_logo` text DEFAULT NULL COMMENT 'Texto nombre del equipo abonados',
  `message_subscriber_greeting` text DEFAULT NULL COMMENT 'Texto de saludo al abonados',
  `message_one_subscriber` text DEFAULT NULL COMMENT 'Texto uno abonados',
  `message_two_subscriber` text DEFAULT NULL COMMENT 'Texto dos abonados',
  `message_three_subscriber` text DEFAULT NULL COMMENT 'Texto tres abonados',
  `message_subscriber_footer` text DEFAULT NULL COMMENT 'Texto pie de pagina abonados',
  `message_subscriber_image` text DEFAULT NULL COMMENT 'Imagen a mostrar de abonados',
  `message_ticket_title` text DEFAULT NULL COMMENT 'Titulo del HTML tickets',
  `message_ticket_logo` text DEFAULT NULL COMMENT 'Texto nombre del equipo tickets',
  `message_one_ticket` text DEFAULT NULL COMMENT 'Texto uno tickets',
  `message_two_ticket` text DEFAULT NULL COMMENT 'Texto dos tickets',
  `message_three_ticket` text DEFAULT NULL COMMENT 'Texto tres tickets',
  `link_ticket_message` text DEFAULT NULL COMMENT 'Texto del link al descargar tickets',
  `message_ticket_image` text DEFAULT NULL COMMENT 'Imagen a mostrar de tickets',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `corporate_identities`
--

LOCK TABLES `corporate_identities` WRITE;
/*!40000 ALTER TABLE `corporate_identities` DISABLE KEYS */;
INSERT INTO `corporate_identities` VALUES (1,'ATLAS FC 🔴⚫⚪','https://s3.us-east-2.amazonaws.com/b001-si/bikenow/Logoclients/atlas.png','https://b001-si.s3.us-east-2.amazonaws.com/bikenow/Logoclients/background_demo.svg','ATL','#040404','#e3292f ','#040404','#e3292f','Atlas FC','','','#FFFFFF','','','','','','145px','130px',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-22 11:58:23',NULL);
/*!40000 ALTER TABLE `corporate_identities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `countries`
--

DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `countries` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `code` varchar(191) NOT NULL COMMENT 'Es usado como indicativo para las llamadas o Whatsapp p.e Colombia es +57',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=247 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `countries`
--

LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` VALUES (1,'Colombia','+57',1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(2,'Albania','355',0,'2022-04-21 00:12:38',NULL),(3,'Algeria','213',0,'2022-04-21 00:12:38',NULL),(4,'American Samoa','1684',0,'2022-04-21 00:12:38',NULL),(5,'Andorra','376',0,'2022-04-21 00:12:38',NULL),(6,'Angola','244',0,'2022-04-21 00:12:38',NULL),(7,'Anguilla','1264',0,'2022-04-21 00:12:38',NULL),(8,'Antarctica','0',0,'2022-04-21 00:12:38',NULL),(9,'Antigua And Barbuda','1268',0,'2022-04-21 00:12:38',NULL),(10,'Argentina','54',0,'2022-04-21 00:12:38',NULL),(11,'Armenia','374',0,'2022-04-21 00:12:38',NULL),(12,'Aruba','297',0,'2022-04-21 00:12:38',NULL),(13,'Australia','61',0,'2022-04-21 00:12:38',NULL),(14,'Austria','43',0,'2022-04-21 00:12:38',NULL),(15,'Azerbaijan','994',0,'2022-04-21 00:12:38',NULL),(16,'Bahamas The','1242',0,'2022-04-21 00:12:38',NULL),(17,'Bahrain','973',0,'2022-04-21 00:12:38',NULL),(18,'Bangladesh','880',0,'2022-04-21 00:12:38',NULL),(19,'Barbados','1246',0,'2022-04-21 00:12:38',NULL),(20,'Belarus','375',0,'2022-04-21 00:12:38',NULL),(21,'Belgium','32',0,'2022-04-21 00:12:38',NULL),(22,'Belize','501',0,'2022-04-21 00:12:38',NULL),(23,'Benin','229',0,'2022-04-21 00:12:38',NULL),(24,'Bermuda','1441',0,'2022-04-21 00:12:38',NULL),(25,'Bhutan','975',0,'2022-04-21 00:12:38',NULL),(26,'Bolivia','591',0,'2022-04-21 00:12:38',NULL),(27,'Bosnia and Herzegovina','387',0,'2022-04-21 00:12:38',NULL),(28,'Botswana','267',0,'2022-04-21 00:12:38',NULL),(29,'Bouvet Island','0',0,'2022-04-21 00:12:38',NULL),(30,'Brazil','55',0,'2022-04-21 00:12:38',NULL),(31,'British Indian Ocean Territory','246',0,'2022-04-21 00:12:38',NULL),(32,'Brunei','673',0,'2022-04-21 00:12:38',NULL),(33,'Bulgaria','359',0,'2022-04-21 00:12:38',NULL),(34,'Burkina Faso','226',0,'2022-04-21 00:12:38',NULL),(35,'Burundi','257',0,'2022-04-21 00:12:38',NULL),(36,'Cambodia','855',0,'2022-04-21 00:12:38',NULL),(37,'Cameroon','237',0,'2022-04-21 00:12:38',NULL),(38,'Canada','1',0,'2022-04-21 00:12:38',NULL),(39,'Cape Verde','238',0,'2022-04-21 00:12:38',NULL),(40,'Cayman Islands','1345',0,'2022-04-21 00:12:38',NULL),(41,'Central African Republic','236',0,'2022-04-21 00:12:38',NULL),(42,'Chad','235',0,'2022-04-21 00:12:38',NULL),(43,'Chile','56',0,'2022-04-21 00:12:38',NULL),(44,'China','86',0,'2022-04-21 00:12:38',NULL),(45,'Christmas Island','61',0,'2022-04-21 00:12:38',NULL),(46,'Cocos (Keeling) Islands','672',0,'2022-04-21 00:12:38',NULL),(47,'Afghanistan','93',0,'2022-04-21 00:12:38',NULL),(48,'Comoros','269',0,'2022-04-21 00:12:38',NULL),(49,'Republic Of The Congo','242',0,'2022-04-21 00:12:38',NULL),(50,'Democratic Republic Of The Congo','242',0,'2022-04-21 00:12:38',NULL),(51,'Cook Islands','682',0,'2022-04-21 00:12:38',NULL),(52,'Costa Rica','506',0,'2022-04-21 00:12:38',NULL),(53,'Cote D\'Ivoire (Ivory Coast)','225',0,'2022-04-21 00:12:38',NULL),(54,'Croatia (Hrvatska)','385',0,'2022-04-21 00:12:38',NULL),(55,'Cuba','53',0,'2022-04-21 00:12:38',NULL),(56,'Cyprus','357',0,'2022-04-21 00:12:38',NULL),(57,'Czech Republic','420',0,'2022-04-21 00:12:38',NULL),(58,'Denmark','45',0,'2022-04-21 00:12:38',NULL),(59,'Djibouti','253',0,'2022-04-21 00:12:38',NULL),(60,'Dominica','1767',0,'2022-04-21 00:12:38',NULL),(61,'Dominican Republic','1809',0,'2022-04-21 00:12:38',NULL),(62,'East Timor','670',0,'2022-04-21 00:12:38',NULL),(63,'Ecuador','593',0,'2022-04-21 00:12:38',NULL),(64,'Egypt','20',0,'2022-04-21 00:12:38',NULL),(65,'El Salvador','503',0,'2022-04-21 00:12:38',NULL),(66,'Equatorial Guinea','240',0,'2022-04-21 00:12:38',NULL),(67,'Eritrea','291',0,'2022-04-21 00:12:38',NULL),(68,'Estonia','372',0,'2022-04-21 00:12:38',NULL),(69,'Ethiopia','251',0,'2022-04-21 00:12:38',NULL),(70,'External Territories of Australia','61',0,'2022-04-21 00:12:38',NULL),(71,'Falkland Islands','500',0,'2022-04-21 00:12:38',NULL),(72,'Faroe Islands','298',0,'2022-04-21 00:12:38',NULL),(73,'Fiji Islands','679',0,'2022-04-21 00:12:38',NULL),(74,'Finland','358',0,'2022-04-21 00:12:38',NULL),(75,'France','33',0,'2022-04-21 00:12:38',NULL),(76,'French Guiana','594',0,'2022-04-21 00:12:38',NULL),(77,'French Polynesia','689',0,'2022-04-21 00:12:38',NULL),(78,'French Southern Territories','0',0,'2022-04-21 00:12:38',NULL),(79,'Gabon','241',0,'2022-04-21 00:12:38',NULL),(80,'Gambia The','220',0,'2022-04-21 00:12:38',NULL),(81,'Georgia','995',0,'2022-04-21 00:12:38',NULL),(82,'Germany','49',0,'2022-04-21 00:12:38',NULL),(83,'Ghana','233',0,'2022-04-21 00:12:38',NULL),(84,'Gibraltar','350',0,'2022-04-21 00:12:38',NULL),(85,'Greece','30',0,'2022-04-21 00:12:38',NULL),(86,'Greenland','299',0,'2022-04-21 00:12:38',NULL),(87,'Grenada','1473',0,'2022-04-21 00:12:38',NULL),(88,'Guadeloupe','590',0,'2022-04-21 00:12:38',NULL),(89,'Guam','1671',0,'2022-04-21 00:12:38',NULL),(90,'Guatemala','502',0,'2022-04-21 00:12:38',NULL),(91,'Guernsey and Alderney','44',0,'2022-04-21 00:12:38',NULL),(92,'Guinea','224',0,'2022-04-21 00:12:38',NULL),(93,'Guinea-Bissau','245',0,'2022-04-21 00:12:38',NULL),(94,'Guyana','592',0,'2022-04-21 00:12:38',NULL),(95,'Haiti','509',0,'2022-04-21 00:12:38',NULL),(96,'Heard and McDonald Islands','0',0,'2022-04-21 00:12:38',NULL),(97,'Honduras','504',0,'2022-04-21 00:12:38',NULL),(98,'Hong Kong S.A.R.','852',0,'2022-04-21 00:12:38',NULL),(99,'Hungary','36',0,'2022-04-21 00:12:38',NULL),(100,'Iceland','354',0,'2022-04-21 00:12:38',NULL),(101,'India','91',0,'2022-04-21 00:12:38',NULL),(102,'Indonesia','62',0,'2022-04-21 00:12:38',NULL),(103,'Iran','98',0,'2022-04-21 00:12:38',NULL),(104,'Iraq','964',0,'2022-04-21 00:12:38',NULL),(105,'Ireland','353',0,'2022-04-21 00:12:38',NULL),(106,'Israel','972',0,'2022-04-21 00:12:38',NULL),(107,'Italy','39',0,'2022-04-21 00:12:38',NULL),(108,'Jamaica','1876',0,'2022-04-21 00:12:38',NULL),(109,'Japan','81',0,'2022-04-21 00:12:38',NULL),(110,'Jersey','44',0,'2022-04-21 00:12:38',NULL),(111,'Jordan','962',0,'2022-04-21 00:12:38',NULL),(112,'Kazakhstan','7',0,'2022-04-21 00:12:38',NULL),(113,'Kenya','254',0,'2022-04-21 00:12:38',NULL),(114,'Kiribati','686',0,'2022-04-21 00:12:38',NULL),(115,'Korea North','850',0,'2022-04-21 00:12:38',NULL),(116,'Korea South','82',0,'2022-04-21 00:12:38',NULL),(117,'Kuwait','965',0,'2022-04-21 00:12:38',NULL),(118,'Kyrgyzstan','996',0,'2022-04-21 00:12:38',NULL),(119,'Laos','856',0,'2022-04-21 00:12:38',NULL),(120,'Latvia','371',0,'2022-04-21 00:12:38',NULL),(121,'Lebanon','961',0,'2022-04-21 00:12:38',NULL),(122,'Lesotho','266',0,'2022-04-21 00:12:38',NULL),(123,'Liberia','231',0,'2022-04-21 00:12:38',NULL),(124,'Libya','218',0,'2022-04-21 00:12:38',NULL),(125,'Liechtenstein','423',0,'2022-04-21 00:12:38',NULL),(126,'Lithuania','370',0,'2022-04-21 00:12:38',NULL),(127,'Luxembourg','2',0,'2022-04-21 00:12:38',NULL),(128,'Macau S.A.R.','853',0,'2022-04-21 00:12:38',NULL),(129,'Macedonia','389',0,'2022-04-21 00:12:38',NULL),(130,'Madagascar','261',0,'2022-04-21 00:12:38',NULL),(131,'Malawi','265',0,'2022-04-21 00:12:38',NULL),(132,'Malaysia','60',0,'2022-04-21 00:12:38',NULL),(133,'Maldives','960',0,'2022-04-21 00:12:38',NULL),(134,'Mali','223',0,'2022-04-21 00:12:38',NULL),(135,'Malta','356',0,'2022-04-21 00:12:38',NULL),(136,'Man (Isle of)','44',0,'2022-04-21 00:12:38',NULL),(137,'Marshall Islands','692',0,'2022-04-21 00:12:38',NULL),(138,'Martinique','596',0,'2022-04-21 00:12:38',NULL),(139,'Mauritania','222',0,'2022-04-21 00:12:38',NULL),(140,'Mauritius','230',0,'2022-04-21 00:12:38',NULL),(141,'Mayotte','269',0,'2022-04-21 00:12:38',NULL),(142,'Mexico','52',0,'2022-04-21 00:12:38',NULL),(143,'Micronesia','691',0,'2022-04-21 00:12:38',NULL),(144,'Moldova','373',0,'2022-04-21 00:12:38',NULL),(145,'Monaco','377',0,'2022-04-21 00:12:38',NULL),(146,'Mongolia','976',0,'2022-04-21 00:12:38',NULL),(147,'Montserrat','1664',0,'2022-04-21 00:12:38',NULL),(148,'Morocco','212',0,'2022-04-21 00:12:38',NULL),(149,'Mozambique','258',0,'2022-04-21 00:12:38',NULL),(150,'Myanmar','95',0,'2022-04-21 00:12:38',NULL),(151,'Namibia','264',0,'2022-04-21 00:12:38',NULL),(152,'Nauru','674',0,'2022-04-21 00:12:38',NULL),(153,'Nepal','977',0,'2022-04-21 00:12:38',NULL),(154,'Netherlands Antilles','599',0,'2022-04-21 00:12:38',NULL),(155,'Netherlands The','31',0,'2022-04-21 00:12:38',NULL),(156,'New Caledonia','687',0,'2022-04-21 00:12:38',NULL),(157,'New Zealand','64',0,'2022-04-21 00:12:38',NULL),(158,'Nicaragua','505',0,'2022-04-21 00:12:38',NULL),(159,'Niger','227',0,'2022-04-21 00:12:38',NULL),(160,'Nigeria','234',0,'2022-04-21 00:12:38',NULL),(161,'Niue','683',0,'2022-04-21 00:12:38',NULL),(162,'Norfolk Island','672',0,'2022-04-21 00:12:38',NULL),(163,'Northern Mariana Islands','1670',0,'2022-04-21 00:12:38',NULL),(164,'Norway','47',0,'2022-04-21 00:12:38',NULL),(165,'Oman','968',0,'2022-04-21 00:12:38',NULL),(166,'Pakistan','92',0,'2022-04-21 00:12:38',NULL),(167,'Palau','680',0,'2022-04-21 00:12:38',NULL),(168,'Palestinian Territory Occupied','970',0,'2022-04-21 00:12:38',NULL),(169,'Panama','507',0,'2022-04-21 00:12:38',NULL),(170,'Papua new Guinea','675',0,'2022-04-21 00:12:38',NULL),(171,'Paraguay','595',0,'2022-04-21 00:12:38',NULL),(172,'Peru','51',1,'2022-04-21 00:12:38',NULL),(173,'Philippines','63',0,'2022-04-21 00:12:38',NULL),(174,'Pitcairn Island','0',0,'2022-04-21 00:12:38',NULL),(175,'Poland','48',0,'2022-04-21 00:12:38',NULL),(176,'Portugal','351',0,'2022-04-21 00:12:38',NULL),(177,'Puerto Rico','1787',0,'2022-04-21 00:12:38',NULL),(178,'Qatar','974',0,'2022-04-21 00:12:38',NULL),(179,'Reunion','262',0,'2022-04-21 00:12:38',NULL),(180,'Romania','40',0,'2022-04-21 00:12:38',NULL),(181,'Russia','70',0,'2022-04-21 00:12:38',NULL),(182,'Rwanda','250',0,'2022-04-21 00:12:38',NULL),(183,'Saint Helena','290',0,'2022-04-21 00:12:38',NULL),(184,'Saint Kitts And Nevis','1869',0,'2022-04-21 00:12:38',NULL),(185,'Saint Lucia','1758',0,'2022-04-21 00:12:38',NULL),(186,'Saint Pierre and Miquelon','508',0,'2022-04-21 00:12:38',NULL),(187,'Saint Vincent And The Grenadines','1784',0,'2022-04-21 00:12:38',NULL),(188,'Samoa','684',0,'2022-04-21 00:12:38',NULL),(189,'San Marino','378',0,'2022-04-21 00:12:38',NULL),(190,'Sao Tome and Principe','239',0,'2022-04-21 00:12:38',NULL),(191,'Saudi Arabia','966',0,'2022-04-21 00:12:38',NULL),(192,'Senegal','221',0,'2022-04-21 00:12:38',NULL),(193,'Serbia','381',0,'2022-04-21 00:12:38',NULL),(194,'Seychelles','248',0,'2022-04-21 00:12:38',NULL),(195,'Sierra Leone','232',0,'2022-04-21 00:12:38',NULL),(196,'Singapore','65',0,'2022-04-21 00:12:38',NULL),(197,'Slovakia','421',0,'2022-04-21 00:12:38',NULL),(198,'Slovenia','386',0,'2022-04-21 00:12:38',NULL),(199,'Smaller Territories of the UK','44',0,'2022-04-21 00:12:38',NULL),(200,'Solomon Islands','677',0,'2022-04-21 00:12:38',NULL),(201,'Somalia','252',0,'2022-04-21 00:12:38',NULL),(202,'South Africa','27',0,'2022-04-21 00:12:38',NULL),(203,'South Georgia','0',0,'2022-04-21 00:12:38',NULL),(204,'South Sudan','211',0,'2022-04-21 00:12:38',NULL),(205,'Spain','34',0,'2022-04-21 00:12:38',NULL),(206,'Sri Lanka','94',0,'2022-04-21 00:12:38',NULL),(207,'Sudan','249',0,'2022-04-21 00:12:38',NULL),(208,'Suriname','597',0,'2022-04-21 00:12:38',NULL),(209,'Svalbard And Jan Mayen Islands','47',0,'2022-04-21 00:12:38',NULL),(210,'Swaziland','268',0,'2022-04-21 00:12:38',NULL),(211,'Sweden','46',0,'2022-04-21 00:12:38',NULL),(212,'Switzerland','41',0,'2022-04-21 00:12:38',NULL),(213,'Syria','963',0,'2022-04-21 00:12:38',NULL),(214,'Taiwan','886',0,'2022-04-21 00:12:38',NULL),(215,'Tajikistan','992',0,'2022-04-21 00:12:38',NULL),(216,'Tanzania','255',0,'2022-04-21 00:12:38',NULL),(217,'Thailand','66',0,'2022-04-21 00:12:38',NULL),(218,'Togo','228',0,'2022-04-21 00:12:38',NULL),(219,'Tokelau','690',0,'2022-04-21 00:12:38',NULL),(220,'Tonga','676',0,'2022-04-21 00:12:38',NULL),(221,'Trinidad And Tobago','1868',0,'2022-04-21 00:12:38',NULL),(222,'Tunisia','216',0,'2022-04-21 00:12:38',NULL),(223,'Turkey','90',0,'2022-04-21 00:12:38',NULL),(224,'Turkmenistan','7370',0,'2022-04-21 00:12:38',NULL),(225,'Turks And Caicos Islands','1649',0,'2022-04-21 00:12:38',NULL),(226,'Tuvalu','688',0,'2022-04-21 00:12:38',NULL),(227,'Uganda','256',0,'2022-04-21 00:12:38',NULL),(228,'Ukraine','380',0,'2022-04-21 00:12:38',NULL),(229,'United Arab Emirates','971',0,'2022-04-21 00:12:38',NULL),(230,'United Kingdom','44',0,'2022-04-21 00:12:38',NULL),(231,'United States','1',0,'2022-04-21 00:12:38',NULL),(232,'United States Minor Outlying Islands','1',0,'2022-04-21 00:12:38',NULL),(233,'Uruguay','598',0,'2022-04-21 00:12:38',NULL),(234,'Uzbekistan','998',0,'2022-04-21 00:12:38',NULL),(235,'Vanuatu','678',0,'2022-04-21 00:12:38',NULL),(236,'Vatican City State (Holy See)','39',0,'2022-04-21 00:12:38',NULL),(237,'Venezuela','58',0,'2022-04-21 00:12:38',NULL),(238,'Vietnam','84',0,'2022-04-21 00:12:38',NULL),(239,'Virgin Islands (British)','1284',0,'2022-04-21 00:12:38',NULL),(240,'Virgin Islands (US)','1340',0,'2022-04-21 00:12:38',NULL),(241,'Wallis And Futuna Islands','681',0,'2022-04-21 00:12:38',NULL),(242,'Western Sahara','212',0,'2022-04-21 00:12:38',NULL),(243,'Yemen','967',0,'2022-04-21 00:12:38',NULL),(244,'Yugoslavia','38',0,'2022-04-21 00:12:38',NULL),(245,'Zambia','260',0,'2022-04-21 00:12:38',NULL),(246,'Zimbabwe','263',0,'2022-04-21 00:12:38',NULL);
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coupon_tags`
--

DROP TABLE IF EXISTS `coupon_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coupon_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `coupon_id` bigint(20) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `coupon_tags_coupon_id_foreign` (`coupon_id`),
  KEY `coupon_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupon_tags`
--

LOCK TABLES `coupon_tags` WRITE;
/*!40000 ALTER TABLE `coupon_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `coupon_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coupons`
--

DROP TABLE IF EXISTS `coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coupons` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) DEFAULT NULL,
  `coupon_image` varchar(191) DEFAULT NULL,
  `code_coupon` varchar(191) NOT NULL,
  `link` varchar(191) NOT NULL COMMENT 'Cupon externo',
  `quantity` int(11) DEFAULT NULL COMMENT 'Indica la cantidad total de cupones redimibles',
  `quantity_per_user` int(11) DEFAULT NULL COMMENT 'Indica la cantidad de cupones por cada usuario',
  `codes` varchar(191) DEFAULT NULL COMMENT 'Códigos predefinidos por por las entidades emisoras de los cupones',
  `active` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupons`
--

LOCK TABLES `coupons` WRITE;
/*!40000 ALTER TABLE `coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `coupons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `courier_companies`
--

DROP TABLE IF EXISTS `courier_companies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `courier_companies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `nit` varchar(191) DEFAULT NULL,
  `phone` varchar(191) DEFAULT NULL,
  `contact` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `courier_companies`
--

LOCK TABLES `courier_companies` WRITE;
/*!40000 ALTER TABLE `courier_companies` DISABLE KEYS */;
/*!40000 ALTER TABLE `courier_companies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coverage_pendings`
--

DROP TABLE IF EXISTS `coverage_pendings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coverage_pendings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(191) NOT NULL,
  `lat` varchar(191) DEFAULT NULL,
  `lng` varchar(191) DEFAULT NULL,
  `city_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `coverage_pendings_email_unique` (`email`),
  KEY `coverage_pendings_city_id_foreign` (`city_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coverage_pendings`
--

LOCK TABLES `coverage_pendings` WRITE;
/*!40000 ALTER TABLE `coverage_pendings` DISABLE KEYS */;
/*!40000 ALTER TABLE `coverage_pendings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coverages`
--

DROP TABLE IF EXISTS `coverages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coverages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `coords` varchar(191) DEFAULT NULL,
  `cost_delivery` int(11) DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `city_id` int(10) unsigned DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `coverages_city_id_foreign` (`city_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coverages`
--

LOCK TABLES `coverages` WRITE;
/*!40000 ALTER TABLE `coverages` DISABLE KEYS */;
INSERT INTO `coverages` VALUES (1,'Medellín',NULL,6000,1,547,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(2,'Abriaquí',NULL,19800,1,1,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(3,'Alejandria',NULL,19800,1,20,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(4,'Amagá',NULL,13300,1,30,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(5,'Amalfi',NULL,19800,1,31,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(6,'Andes',NULL,13300,1,36,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(7,'Angelópolis',NULL,19800,1,37,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(8,'Angostura',NULL,19800,1,38,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(9,'Anorí',NULL,19800,1,40,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(10,'Anzá',NULL,19800,1,44,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(11,'Apartadó',NULL,13300,1,45,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(12,'Arboletes',NULL,19800,1,57,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(13,'Argelia',NULL,19800,1,60,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(14,'Armenia',NULL,13300,1,65,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(15,'Barbosa',NULL,6000,1,81,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(16,'Bello',NULL,6000,1,91,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(17,'Belmira',NULL,19800,1,92,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(18,'Betania',NULL,19800,1,100,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(19,'Betulia',NULL,19800,1,102,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(20,'Bolívar',NULL,19800,1,110,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(21,'Briceño',NULL,19800,1,116,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(22,'Burítica',NULL,19800,1,129,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(23,'Caicedo',NULL,19800,1,135,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(24,'Caldas',NULL,6000,1,144,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(25,'Campamento',NULL,19800,1,151,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(26,'Caracolí',NULL,19800,1,162,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(27,'Caramanta',NULL,19800,1,163,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(28,'Carepa',NULL,13300,1,165,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(29,'Carmen de Viboral',NULL,6000,1,168,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(30,'Carolina',NULL,19800,1,170,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(31,'Caucasia',NULL,13300,1,177,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(32,'Cañasgordas',NULL,19800,1,178,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(33,'Chigorodó',NULL,19800,1,190,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(34,'Cisneros',NULL,19800,1,217,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(35,'Cocorná',NULL,19800,1,222,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(36,'Concepción',NULL,19800,1,229,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(37,'Concordia',NULL,19800,1,231,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(38,'Copacabana',NULL,6000,1,239,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(39,'Cáceres',NULL,19800,1,267,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(40,'Dabeiba',NULL,19800,1,276,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(41,'Don Matías',NULL,19800,1,281,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(42,'Ebéjico',NULL,19800,1,285,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(43,'El Bagre',NULL,19800,1,286,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(44,'Entrerríos',NULL,19800,1,329,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(45,'Envigado',NULL,6000,1,330,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(46,'Fredonia',NULL,13300,1,348,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(47,'Frontino',NULL,19800,1,350,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(48,'Giraldo',NULL,19800,1,371,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(49,'Girardota',NULL,6000,1,373,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(50,'Granada',NULL,19800,1,377,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(51,'Guadalupe',NULL,19800,1,387,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(52,'Guarne',NULL,6000,1,399,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(53,'Guatapé',NULL,19800,1,401,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(54,'Gómez Plata',NULL,19800,1,416,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(55,'Heliconia',NULL,19800,1,422,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(56,'Hispania',NULL,19800,1,425,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(57,'Itagüí',NULL,6000,1,437,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(58,'Ituango',NULL,19800,1,438,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(59,'Jardín',NULL,19800,1,442,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(60,'Jericó',NULL,19800,1,444,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(61,'La Ceja',NULL,6000,1,457,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(62,'La Estrella',NULL,6000,1,463,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(63,'La Pintada',NULL,19800,1,477,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(64,'La Unión',NULL,19800,1,485,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(65,'Liborina',NULL,19800,1,504,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(66,'Maceo',NULL,19800,1,519,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(67,'Marinilla',NULL,6000,1,538,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(68,'Montebello',NULL,19800,1,569,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(69,'Murindó',NULL,19800,1,584,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(70,'Mutatá',NULL,19800,1,585,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(71,'Nariño',NULL,19800,1,589,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(72,'Nechí',NULL,19800,1,593,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(73,'Necoclí',NULL,19800,1,594,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(74,'Olaya',NULL,19800,1,615,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(75,'Peque',NULL,19800,1,656,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(76,'Peñol',NULL,19800,1,659,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(77,'Pueblorrico',NULL,19800,1,689,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(78,'Puerto Berrío',NULL,19800,1,694,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(79,'Puerto Nare',NULL,19800,1,707,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(80,'Puerto Triunfo',NULL,19800,1,716,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(81,'Remedios',NULL,19800,1,738,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(82,'Retiro',NULL,6000,1,743,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(83,'Ríonegro',NULL,6000,1,764,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(84,'Sabanalarga',NULL,16800,1,768,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(85,'Sabaneta',NULL,6000,1,772,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(86,'Salgar',NULL,19800,1,781,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(87,'San Andrés de Cuerquía',NULL,19800,1,790,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(88,'San Carlos',NULL,19800,1,800,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(89,'San Francisco',NULL,19800,1,810,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(90,'San Jerónimo',NULL,19800,1,816,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(91,'San José de Montaña',NULL,19800,1,820,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(92,'San Juan de Urabá',NULL,19800,1,831,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(93,'San Luís',NULL,19800,1,836,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(94,'San Pedro',NULL,19800,1,851,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(95,'San Pedro de Urabá',NULL,19800,1,855,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(96,'San Rafael',NULL,19800,1,857,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(97,'San Roque',NULL,19800,1,858,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(98,'San Vicente',NULL,19800,1,861,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(99,'Santa Bárbara',NULL,19800,1,867,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(100,'Santa Fé de Antioquia',NULL,19800,1,872,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(101,'Santa Rosa de Osos',NULL,19800,1,883,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(102,'Santo Domingo',NULL,19800,1,892,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(103,'Santuario',NULL,6000,1,894,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(104,'Segovia',NULL,19800,1,902,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(105,'Sonsón',NULL,19800,1,928,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(106,'Sopetrán',NULL,19800,1,929,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(107,'Tarazá',NULL,19800,1,965,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(108,'Tarso',NULL,19800,1,967,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(109,'Titiribí',NULL,19800,1,991,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(110,'Toledo',NULL,19800,1,996,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(111,'Turbo',NULL,13300,1,1017,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(112,'Támesis',NULL,19800,1,1022,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(113,'Uramita',NULL,19800,1,1031,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(114,'Urrao',NULL,19800,1,1034,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(115,'Valdivia',NULL,19800,1,1037,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(116,'Valparaiso',NULL,19800,1,1043,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(117,'Vegachí',NULL,19800,1,1045,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(118,'Venecia',NULL,19800,1,1047,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(119,'Vigía del Fuerte',NULL,19800,1,1054,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(120,'Yalí',NULL,19800,1,1081,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(121,'Yarumal',NULL,13300,1,1082,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(122,'Yolombó',NULL,19800,1,1083,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(123,'Yondó (Casabe)',NULL,19800,1,1084,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(124,'Zaragoza',NULL,19800,1,1091,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(125,'Acacías',NULL,19800,1,2,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(126,'Acandí',NULL,19800,1,3,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(127,'Acevedo',NULL,19800,1,4,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(128,'Achí',NULL,19800,1,5,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(129,'Agrado',NULL,19800,1,6,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(130,'Agua de Dios',NULL,19800,0,7,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(131,'Aguachica',NULL,16800,1,8,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(132,'Aguada',NULL,19800,1,9,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(133,'Aguadas',NULL,19800,1,10,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(134,'Aguazul',NULL,16800,1,11,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(135,'Agustín Codazzi',NULL,19800,1,12,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(136,'Aipe',NULL,16800,1,13,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(137,'Albania',NULL,19800,1,14,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(138,'Albania',NULL,19800,1,15,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(139,'Albania',NULL,19800,1,16,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(140,'Albán',NULL,19800,1,17,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(141,'Albán (San José)',NULL,19800,1,18,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(142,'Alcalá',NULL,19800,1,19,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(143,'Algarrobo',NULL,19800,1,21,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(144,'Algeciras',NULL,19800,1,22,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(145,'Almaguer',NULL,19800,1,23,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(146,'Almeida',NULL,19800,1,24,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(147,'Alpujarra',NULL,19800,1,25,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(148,'Altamira',NULL,19800,1,26,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(149,'Alto Baudó (Pie de Pato)',NULL,19800,1,27,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(150,'Altos del Rosario',NULL,19800,1,28,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(151,'Alvarado',NULL,16800,1,29,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(152,'Ambalema',NULL,19800,1,32,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(153,'Anapoima',NULL,13300,1,33,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(154,'Ancuya',NULL,19800,1,34,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(155,'Andalucía',NULL,19800,1,35,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(156,'Anolaima',NULL,19800,1,39,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(157,'Anserma',NULL,13300,1,41,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(158,'Ansermanuevo',NULL,19800,1,42,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(159,'Anzoátegui',NULL,19800,1,43,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(160,'Apulo',NULL,19800,1,46,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(161,'Apía',NULL,19800,1,47,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(162,'Aquitania',NULL,19800,1,48,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(163,'Aracataca',NULL,16800,1,49,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(164,'Aranzazu',NULL,19800,1,50,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(165,'Aratoca',NULL,19800,1,51,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(166,'Arauca',NULL,19800,1,52,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(167,'Arauquita',NULL,19800,1,53,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(168,'Arbeláez',NULL,19800,1,54,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(169,'Arboleda (Berruecos)',NULL,19800,1,55,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(170,'Arboledas',NULL,16800,1,56,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(171,'Arcabuco',NULL,19800,1,58,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(172,'Arenal',NULL,19800,1,59,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(173,'Argelia',NULL,19800,1,61,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(174,'Argelia',NULL,19800,1,62,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(175,'Ariguaní (El Difícil)',NULL,19800,1,63,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(176,'Arjona',NULL,16800,1,64,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(177,'Armenia',NULL,19800,1,66,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(178,'Armero (Guayabal)',NULL,19800,1,67,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(179,'Arroyohondo',NULL,19800,1,68,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(180,'Astrea',NULL,19800,1,69,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(181,'Ataco',NULL,19800,1,70,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(182,'Atrato (Yuto)',NULL,19800,1,71,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(183,'Ayapel',NULL,19800,1,72,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(184,'Bagadó',NULL,19800,1,73,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(185,'Bahía Solano (Mútis)',NULL,19800,1,74,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(186,'Bajo Baudó (Pizarro)',NULL,19800,1,75,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(187,'Balboa',NULL,19800,1,76,NULL,'2023-09-14 22:08:02','2023-09-14 22:08:02'),(188,'Balboa',NULL,19800,1,77,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(189,'Baranoa',NULL,16800,1,78,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(190,'Baraya',NULL,19800,1,79,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(191,'Barbacoas',NULL,19800,1,80,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(192,'Barbosa',NULL,6000,1,82,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(193,'Barichara',NULL,19800,1,83,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(194,'Barranca de Upía',NULL,19800,1,84,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(195,'Barrancabermeja',NULL,13300,1,85,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(196,'Barrancas',NULL,19800,1,86,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(197,'Barranco de Loba',NULL,19800,1,87,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(198,'Barranquilla',NULL,13300,1,88,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(199,'Becerríl',NULL,19800,1,89,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(200,'Belalcázar',NULL,19800,1,90,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(201,'Beltrán',NULL,19800,1,93,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(202,'Belén',NULL,19800,1,94,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(203,'Belén',NULL,19800,1,95,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(204,'Belén de Bajirá',NULL,19800,1,96,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(205,'Belén de Umbría',NULL,19800,1,97,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(206,'Belén de los Andaquíes',NULL,19800,1,98,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(207,'Berbeo',NULL,19800,1,99,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(208,'Beteitiva',NULL,19800,1,101,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(209,'Betulia',NULL,19800,1,103,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(210,'Bituima',NULL,19800,1,104,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(211,'Boavita',NULL,19800,1,105,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(212,'Bochalema',NULL,19800,1,106,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(213,'Bogotá D.C.',NULL,13300,1,107,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(214,'Bojacá',NULL,19800,1,108,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(215,'Bojayá (Bellavista)',NULL,19800,1,109,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(216,'Bolívar',NULL,19800,1,111,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(217,'Bolívar',NULL,19800,1,112,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(218,'Bolívar',NULL,19800,1,113,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(219,'Bosconia',NULL,13300,1,114,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(220,'Boyacá',NULL,19800,1,115,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(221,'Briceño',NULL,13300,1,117,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(222,'Bucaramanga',NULL,13300,1,118,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(223,'Bucarasica',NULL,19800,1,119,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(224,'Buenaventura',NULL,16800,1,120,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(225,'Buenavista',NULL,19800,1,121,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(226,'Buenavista',NULL,19800,1,122,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(227,'Buenavista',NULL,19800,1,123,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(228,'Buenavista',NULL,19800,1,124,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(229,'Buenos Aires',NULL,13300,1,125,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(230,'Buesaco',NULL,19800,1,126,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(231,'Buga',NULL,13300,1,127,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(232,'Bugalagrande',NULL,19800,1,128,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(233,'Busbanza',NULL,19800,1,130,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(234,'Cabrera',NULL,19800,1,131,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(235,'Cabrera',NULL,19800,1,132,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(236,'Cabuyaro',NULL,19800,1,133,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(237,'Cachipay',NULL,19800,1,134,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(238,'Caicedonia',NULL,13300,1,136,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(239,'Caimito',NULL,19800,1,137,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(240,'Cajamarca',NULL,16800,1,138,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(241,'Cajibío',NULL,19800,1,139,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(242,'Cajicá',NULL,19800,1,140,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(243,'Calamar',NULL,19800,1,141,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(244,'Calamar',NULL,19800,1,142,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(245,'Calarcá',NULL,19800,1,143,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(246,'Caldas',NULL,6000,1,145,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(247,'Caldono',NULL,19800,1,146,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(248,'California',NULL,31600,1,147,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(249,'Calima (Darién)',NULL,19800,1,148,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(250,'Caloto',NULL,13300,1,149,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(251,'Cali',NULL,13300,1,150,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(252,'Campo de la Cruz',NULL,19800,1,152,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(253,'Campoalegre',NULL,16800,1,153,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(254,'Campohermoso',NULL,19800,1,154,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(255,'Canalete',NULL,19800,1,155,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(256,'Candelaria',NULL,13300,1,156,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(257,'Candelaria',NULL,19800,1,157,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(258,'Cantagallo',NULL,19800,1,158,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(259,'Cantón de San Pablo',NULL,19800,1,159,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(260,'Caparrapí',NULL,19800,1,160,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(261,'Capitanejo',NULL,19800,1,161,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(262,'Carcasí',NULL,19800,1,164,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(263,'Carmen de Apicalá',NULL,19800,1,166,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(264,'Carmen de Carupa',NULL,19800,1,167,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(265,'Carmen del Darién (CURBARADÓ)',NULL,19800,1,169,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(266,'Cartagena',NULL,13300,1,171,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(267,'Cartagena del Chairá',NULL,19800,1,172,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(268,'Cartago',NULL,13300,1,173,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(269,'Carurú',NULL,19800,1,174,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(270,'Casabianca',NULL,19800,1,175,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(271,'Castilla la Nueva',NULL,19800,1,176,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(272,'Cepita',NULL,19800,1,179,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(273,'Cereté',NULL,19800,1,180,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(274,'Cerinza',NULL,19800,1,181,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(275,'Cerrito',NULL,19800,1,182,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(276,'Cerro San Antonio',NULL,19800,1,183,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(277,'Chachaguí',NULL,19800,1,184,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(278,'Chaguaní',NULL,19800,1,185,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(279,'Chalán',NULL,19800,1,186,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(280,'Chaparral',NULL,19800,1,187,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(281,'Charalá',NULL,19800,1,188,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(282,'Charta',NULL,19800,1,189,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(283,'Chima',NULL,19800,1,191,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(284,'Chimichagua',NULL,19800,1,192,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(285,'Chimá',NULL,19800,1,193,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(286,'Chinavita',NULL,19800,1,194,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(287,'Chinchiná',NULL,19800,1,195,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(288,'Chinácota',NULL,19800,1,196,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(289,'Chinú',NULL,19800,1,197,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(290,'Chipaque',NULL,19800,1,198,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(291,'Chipatá',NULL,19800,1,199,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(292,'Chiquinquirá',NULL,19800,1,200,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(293,'Chiriguaná',NULL,19800,1,201,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(294,'Chiscas',NULL,19800,1,202,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(295,'Chita',NULL,19800,1,203,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(296,'Chitagá',NULL,19800,1,204,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(297,'Chitaraque',NULL,19800,1,205,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(298,'Chivatá',NULL,19800,1,206,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(299,'Chivolo',NULL,19800,1,207,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(300,'Choachí',NULL,19800,1,208,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(301,'Chocontá',NULL,19800,1,209,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(302,'Chámeza',NULL,19800,1,210,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(303,'Chía',NULL,19800,1,211,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(304,'Chíquiza',NULL,19800,1,212,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(305,'Chívor',NULL,19800,1,213,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(306,'Cicuco',NULL,19800,1,214,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(307,'Cimitarra',NULL,19800,1,215,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(308,'Circasia',NULL,13300,1,216,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(309,'Ciénaga',NULL,19800,1,218,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(310,'Ciénaga',NULL,19800,1,219,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(311,'Ciénaga de Oro',NULL,19800,1,220,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(312,'Clemencia',NULL,19800,1,221,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(313,'Coello',NULL,19800,1,223,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(314,'Cogua',NULL,19800,1,224,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(315,'Colombia',NULL,19800,1,225,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(316,'Colosó (Ricaurte)',NULL,19800,1,226,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(317,'Colón',NULL,19800,1,227,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(318,'Colón (Génova)',NULL,19800,1,228,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(319,'Concepción',NULL,19800,1,230,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(320,'Concordia',NULL,19800,1,232,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(321,'Condoto',NULL,19800,1,233,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(322,'Confines',NULL,19800,1,234,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(323,'Consaca',NULL,19800,1,235,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(324,'Contadero',NULL,19800,1,236,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(325,'Contratación',NULL,19800,1,237,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(326,'Convención',NULL,19800,1,238,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(327,'Coper',NULL,19800,1,240,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(328,'Cordobá',NULL,19800,1,241,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(329,'Corinto',NULL,19800,1,242,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(330,'Coromoro',NULL,19800,1,243,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(331,'Corozal',NULL,13300,1,244,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(332,'Corrales',NULL,19800,1,245,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(333,'Cota',NULL,19800,1,246,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(334,'Cotorra',NULL,19800,1,247,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(335,'Covarachía',NULL,19800,1,248,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(336,'Coveñas',NULL,13300,1,249,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(337,'Coyaima',NULL,19800,1,250,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(338,'Cravo Norte',NULL,19800,1,251,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(339,'Cuaspud (Carlosama)',NULL,19800,1,252,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(340,'Cubarral',NULL,19800,1,253,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(341,'Cubará',NULL,19800,1,254,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(342,'Cucaita',NULL,19800,1,255,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(343,'Cucunubá',NULL,19800,1,256,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(344,'Cucutilla',NULL,19800,1,257,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(345,'Cuitiva',NULL,19800,1,258,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(346,'Cumaral',NULL,19800,1,259,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(347,'Cumaribo',NULL,19800,1,260,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(348,'Cumbal',NULL,19800,1,261,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(349,'Cumbitara',NULL,19800,1,262,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(350,'Cunday',NULL,19800,1,263,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(351,'Curillo',NULL,19800,1,264,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(352,'Curití',NULL,19800,1,265,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(353,'Curumaní',NULL,19800,1,266,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(354,'Cáchira',NULL,19800,1,268,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(355,'Cácota',NULL,19800,1,269,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(356,'Cáqueza',NULL,19800,1,270,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(357,'Cértegui',NULL,19800,1,271,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(358,'Cómbita',NULL,19800,1,272,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(359,'Córdoba',NULL,19800,1,273,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(360,'Córdoba',NULL,19800,1,274,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(361,'Cúcuta',NULL,19800,1,275,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(362,'Dagua',NULL,19800,1,277,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(363,'Dibulla',NULL,19800,1,278,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(364,'Distracción',NULL,19800,1,279,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(365,'Dolores',NULL,19800,1,280,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(366,'Dos Quebradas',NULL,19800,1,282,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(367,'Duitama',NULL,13300,1,283,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(368,'Durania',NULL,19800,1,284,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(369,'El Banco',NULL,19800,1,287,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(370,'El Cairo',NULL,19800,1,288,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(371,'El Calvario',NULL,19800,1,289,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(372,'El Carmen',NULL,19800,1,290,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(373,'El Carmen',NULL,19800,1,291,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(374,'El Carmen de Atrato',NULL,19800,1,292,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(375,'El Carmen de Bolívar',NULL,19800,1,293,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(376,'El Castillo',NULL,19800,1,294,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(377,'El Cerrito',NULL,13300,1,295,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(378,'El Charco',NULL,19800,1,296,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(379,'El Cocuy',NULL,19800,1,297,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(380,'El Colegio',NULL,19800,1,298,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(381,'El Copey',NULL,16800,1,299,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(382,'El Doncello',NULL,19800,1,300,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(383,'El Dorado',NULL,19800,1,301,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(384,'El Dovio',NULL,19800,1,302,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(385,'El Espino',NULL,19800,1,303,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(386,'El Guacamayo',NULL,19800,1,304,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(387,'El Guamo',NULL,16800,1,305,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(388,'El Molino',NULL,19800,1,306,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(389,'El Paso',NULL,19800,1,307,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(390,'El Paujil',NULL,19800,1,308,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(391,'El Peñol',NULL,19800,1,309,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(392,'El Peñon',NULL,19800,1,310,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(393,'El Peñon',NULL,19800,1,311,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(394,'El Peñón',NULL,19800,1,312,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(395,'El Piñon',NULL,19800,1,313,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(396,'El Playón',NULL,19800,1,314,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(397,'El Retorno',NULL,19800,1,315,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(398,'El Retén',NULL,19800,1,316,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(399,'El Roble',NULL,19800,1,317,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(400,'El Rosal',NULL,19800,1,318,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(401,'El Rosario',NULL,19800,1,319,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(402,'El Tablón de Gómez',NULL,19800,1,320,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(403,'El Tambo',NULL,19800,1,321,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(404,'El Tambo',NULL,19800,1,322,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(405,'El Tarra',NULL,19800,1,323,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(406,'El Zulia',NULL,16800,1,324,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(407,'El Águila',NULL,19800,1,325,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(408,'Elías',NULL,19800,1,326,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(409,'Encino',NULL,19800,1,327,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(410,'Enciso',NULL,19800,1,328,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(411,'Espinal',NULL,16800,1,331,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(412,'Facatativá',NULL,19800,1,332,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(413,'Falan',NULL,19800,1,333,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(414,'Filadelfia',NULL,19800,1,334,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(415,'Filandia',NULL,16800,1,335,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(416,'Firavitoba',NULL,19800,1,336,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(417,'Flandes',NULL,13300,1,337,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(418,'Florencia',NULL,19800,1,338,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(419,'Florencia',NULL,19800,1,339,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(420,'Floresta',NULL,19800,1,340,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(421,'Florida',NULL,13300,1,341,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(422,'Floridablanca',NULL,13300,1,342,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(423,'Florián',NULL,19800,1,343,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(424,'Fonseca',NULL,16800,1,344,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(425,'Fortúl',NULL,19800,1,345,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(426,'Fosca',NULL,19800,1,346,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(427,'Francisco Pizarro',NULL,19800,1,347,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(428,'Fresno',NULL,16800,1,349,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(429,'Fuente de Oro',NULL,19800,1,351,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(430,'Fundación',NULL,19800,1,352,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(431,'Funes',NULL,19800,1,353,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(432,'Funza',NULL,19800,1,354,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(433,'Fusagasugá',NULL,19800,1,355,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(434,'Fómeque',NULL,19800,1,356,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(435,'Fúquene',NULL,19800,1,357,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(436,'Gachalá',NULL,19800,1,358,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(437,'Gachancipá',NULL,19800,1,359,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(438,'Gachantivá',NULL,19800,1,360,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(439,'Gachetá',NULL,19800,1,361,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(440,'Galapa',NULL,13300,1,362,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(441,'Galeras (Nueva Granada)',NULL,19800,1,363,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(442,'Galán',NULL,19800,1,364,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(443,'Gama',NULL,19800,1,365,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(444,'Gamarra',NULL,19800,1,366,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(445,'Garagoa',NULL,19800,1,367,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(446,'Garzón',NULL,19800,1,368,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(447,'Gigante',NULL,19800,1,369,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(448,'Ginebra',NULL,19800,1,370,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(449,'Girardot',NULL,19800,1,372,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(450,'Girón',NULL,19800,1,374,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(451,'Gonzalez',NULL,19800,1,375,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(452,'Gramalote',NULL,19800,1,376,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(453,'Granada',NULL,19800,1,378,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(454,'Granada',NULL,19800,1,379,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(455,'Guaca',NULL,19800,1,380,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(456,'Guacamayas',NULL,19800,1,381,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(457,'Guacarí',NULL,19800,1,382,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(458,'Guachavés',NULL,19800,1,383,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(459,'Guachené',NULL,19800,1,384,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(460,'Guachetá',NULL,19800,1,385,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(461,'Guachucal',NULL,19800,1,386,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(462,'Guadalupe',NULL,19800,1,388,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(463,'Guadalupe',NULL,19800,1,389,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(464,'Guaduas',NULL,19800,1,390,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(465,'Guaitarilla',NULL,19800,1,391,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(466,'Gualmatán',NULL,19800,1,392,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(467,'Guamal',NULL,19800,1,393,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(468,'Guamal',NULL,19800,1,394,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(469,'Guamo',NULL,19800,1,395,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(470,'Guapota',NULL,19800,1,396,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(471,'Guapí',NULL,19800,1,397,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(472,'Guaranda',NULL,19800,1,398,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(473,'Guasca',NULL,19800,1,400,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(474,'Guataquí',NULL,19800,1,402,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(475,'Guatavita',NULL,19800,1,403,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(476,'Guateque',NULL,19800,1,404,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(477,'Guavatá',NULL,19800,1,405,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(478,'Guayabal de Siquima',NULL,19800,1,406,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(479,'Guayabetal',NULL,19800,1,407,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(480,'Guayatá',NULL,19800,1,408,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(481,'Guepsa',NULL,19800,1,409,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(482,'Guicán',NULL,19800,1,410,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(483,'Gutiérrez',NULL,19800,1,411,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(484,'Guática',NULL,19800,1,412,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(485,'Gámbita',NULL,19800,1,413,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(486,'Gámeza',NULL,19800,1,414,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(487,'Génova',NULL,19800,1,415,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(488,'Hacarí',NULL,19800,1,417,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(489,'Hatillo de Loba',NULL,19800,1,418,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(490,'Hato',NULL,19800,1,419,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(491,'Hato Corozal',NULL,19800,1,420,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(492,'Hatonuevo',NULL,19800,1,421,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(493,'Herrán',NULL,19800,1,423,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(494,'Herveo',NULL,19800,1,424,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(495,'Hobo',NULL,16800,1,426,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(496,'Honda',NULL,16800,1,427,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(497,'Ibagué',NULL,19800,1,428,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(498,'Icononzo',NULL,19800,1,429,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(499,'Iles',NULL,19800,1,430,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(500,'Imúes',NULL,19800,1,431,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(501,'Inzá',NULL,19800,1,432,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(502,'Inírida',NULL,19800,1,433,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(503,'Ipiales',NULL,16800,1,434,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(504,'Isnos',NULL,19800,1,435,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(505,'Istmina',NULL,19800,1,436,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(506,'Izá',NULL,19800,1,439,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(507,'Jambaló',NULL,19800,1,440,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(508,'Jamundí',NULL,19800,1,441,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(509,'Jenesano',NULL,19800,1,443,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(510,'Jericó',NULL,19800,1,445,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(511,'Jerusalén',NULL,19800,1,446,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(512,'Jesús María',NULL,19800,1,447,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(513,'Jordán',NULL,19800,1,448,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(514,'Juan de Acosta',NULL,19800,1,449,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(515,'Junín',NULL,19800,1,450,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(516,'Juradó',NULL,19800,1,451,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(517,'La Apartada y La Frontera',NULL,19800,1,452,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(518,'La Argentina',NULL,19800,1,453,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(519,'La Belleza',NULL,19800,1,454,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(520,'La Calera',NULL,19800,1,455,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(521,'La Capilla',NULL,19800,1,456,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(522,'La Celia',NULL,19800,1,458,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(523,'La Cruz',NULL,19800,1,459,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(524,'La Cumbre',NULL,19800,1,460,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(525,'La Dorada',NULL,13300,1,461,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(526,'La Esperanza',NULL,19800,1,462,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(527,'La Florida',NULL,19800,1,464,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(528,'La Gloria',NULL,19800,1,465,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(529,'La Jagua de Ibirico',NULL,19800,1,466,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(530,'La Jagua del Pilar',NULL,19800,1,467,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(531,'La Llanada',NULL,19800,1,468,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(532,'La Macarena',NULL,19800,1,469,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(533,'La Merced',NULL,19800,1,470,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(534,'La Mesa',NULL,19800,1,471,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(535,'La Montañita',NULL,19800,1,472,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(536,'La Palma',NULL,19800,1,473,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(537,'La Paz',NULL,19800,1,474,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(538,'La Paz (Robles)',NULL,19800,1,475,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(539,'La Peña',NULL,19800,1,476,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(540,'La Plata',NULL,19800,1,478,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(541,'La Playa',NULL,19800,1,479,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(542,'La Primavera',NULL,19800,1,480,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(543,'La Salina',NULL,19800,1,481,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(544,'La Sierra',NULL,19800,1,482,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(545,'La Tebaida',NULL,13300,1,483,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(546,'La Tola',NULL,19800,1,484,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(547,'La Unión',NULL,19800,1,486,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(548,'La Unión',NULL,19800,1,487,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(549,'La Unión',NULL,19800,1,488,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(550,'La Uvita',NULL,19800,1,489,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(551,'La Vega',NULL,19800,1,490,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(552,'La Vega',NULL,19800,1,491,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(553,'La Victoria',NULL,19800,1,492,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(554,'La Victoria',NULL,19800,1,493,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(555,'La Victoria',NULL,19800,1,494,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(556,'La Virginia',NULL,13300,1,495,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(557,'Labateca',NULL,19800,1,496,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(558,'Labranzagrande',NULL,19800,1,497,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(559,'Landázuri',NULL,19800,1,498,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(560,'Lebrija',NULL,13300,1,499,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(561,'Leiva',NULL,19800,1,500,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(562,'Lejanías',NULL,19800,1,501,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(563,'Lenguazaque',NULL,19800,1,502,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(564,'Leticia',NULL,31600,1,503,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(565,'Linares',NULL,19800,1,505,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(566,'Lloró',NULL,19800,1,506,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(567,'Lorica',NULL,13300,1,507,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(568,'Los Córdobas',NULL,19800,1,508,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(569,'Los Palmitos',NULL,19800,1,509,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(570,'Los Patios',NULL,13300,1,510,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(571,'Los Santos',NULL,19800,1,511,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(572,'Lourdes',NULL,19800,1,512,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(573,'Luruaco',NULL,19800,1,513,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(574,'Lérida',NULL,19800,1,514,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(575,'Líbano',NULL,19800,1,515,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(576,'López (Micay)',NULL,19800,1,516,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(577,'Macanal',NULL,19800,1,517,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(578,'Macaravita',NULL,19800,1,518,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(579,'Machetá',NULL,19800,1,520,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(580,'Madrid',NULL,19800,1,521,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(581,'Magangué',NULL,19800,1,522,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(582,'Magüi (Payán)',NULL,19800,1,523,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(583,'Mahates',NULL,19800,1,524,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(584,'Maicao',NULL,19800,1,525,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(585,'Majagual',NULL,19800,1,526,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(586,'Malambo',NULL,13300,1,527,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(587,'Mallama (Piedrancha)',NULL,19800,1,528,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(588,'Manatí',NULL,19800,1,529,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(589,'Manaure',NULL,19800,1,530,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(590,'Manaure Balcón del Cesar',NULL,19800,1,531,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(591,'Manizales',NULL,13300,1,532,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(592,'Manta',NULL,19800,1,533,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(593,'Manzanares',NULL,19800,1,534,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(594,'Maní',NULL,19800,1,535,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(595,'Mapiripan',NULL,19800,1,536,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(596,'Margarita',NULL,19800,1,537,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(597,'Maripí',NULL,19800,1,539,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(598,'Mariquita',NULL,16800,1,540,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(599,'Marmato',NULL,19800,1,541,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(600,'Marquetalia',NULL,19800,1,542,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(601,'Marsella',NULL,19800,1,543,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(602,'Marulanda',NULL,19800,1,544,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(603,'María la Baja',NULL,19800,1,545,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(604,'Matanza',NULL,19800,1,546,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(605,'Medina',NULL,19800,1,548,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(606,'Medio Atrato',NULL,19800,1,549,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(607,'Medio Baudó',NULL,19800,1,550,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(608,'Medio San Juan (ANDAGOYA)',NULL,19800,1,551,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(609,'Melgar',NULL,16800,1,552,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(610,'Mercaderes',NULL,19800,1,553,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(611,'Mesetas',NULL,19800,1,554,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(612,'Milán',NULL,19800,1,555,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(613,'Miraflores',NULL,19800,1,556,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(614,'Miraflores',NULL,19800,1,557,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(615,'Miranda',NULL,19800,1,558,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(616,'Mistrató',NULL,19800,1,559,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(617,'Mitú',NULL,19800,1,560,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(618,'Mocoa',NULL,19800,1,561,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(619,'Mogotes',NULL,19800,1,562,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(620,'Molagavita',NULL,19800,1,563,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(621,'Momil',NULL,19800,1,564,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(622,'Mompós',NULL,19800,1,565,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(623,'Mongua',NULL,19800,1,566,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(624,'Monguí',NULL,19800,1,567,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(625,'Moniquirá',NULL,19800,1,568,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(626,'Montecristo',NULL,19800,1,570,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(627,'Montelíbano',NULL,19800,1,571,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(628,'Montenegro',NULL,13300,1,572,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(629,'Monteria',NULL,13300,1,573,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(630,'Monterrey',NULL,19800,1,574,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(631,'Morales',NULL,19800,1,575,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(632,'Morales',NULL,19800,1,576,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(633,'Morelia',NULL,19800,1,577,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(634,'Morroa',NULL,13300,1,578,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(635,'Mosquera',NULL,19800,1,579,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(636,'Mosquera',NULL,19800,1,580,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(637,'Motavita',NULL,19800,1,581,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(638,'Moñitos',NULL,19800,1,582,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(639,'Murillo',NULL,19800,1,583,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(640,'Mutiscua',NULL,19800,1,586,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(641,'Muzo',NULL,19800,1,587,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(642,'Málaga',NULL,19800,1,588,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(643,'Nariño',NULL,19800,1,590,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(644,'Nariño',NULL,19800,1,591,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(645,'Natagaima',NULL,19800,1,592,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(646,'Neira',NULL,19800,1,595,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(647,'Neiva',NULL,13300,1,596,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(648,'Nemocón',NULL,19800,1,597,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(649,'Nilo',NULL,19800,1,598,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(650,'Nimaima',NULL,19800,1,599,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(651,'Nobsa',NULL,19800,1,600,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(652,'Nocaima',NULL,19800,1,601,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(653,'Norcasia',NULL,19800,1,602,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(654,'Norosí',NULL,19800,1,603,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(655,'Novita',NULL,19800,1,604,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(656,'Nueva Granada',NULL,19800,1,605,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(657,'Nuevo Colón',NULL,19800,1,606,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(658,'Nunchía',NULL,19800,1,607,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(659,'Nuquí',NULL,19800,1,608,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(660,'Nátaga',NULL,19800,1,609,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(661,'Obando',NULL,19800,1,610,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(662,'Ocamonte',NULL,19800,1,611,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(663,'Ocaña',NULL,16800,1,612,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(664,'Oiba',NULL,19800,1,613,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(665,'Oicatá',NULL,19800,1,614,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(666,'Olaya Herrera',NULL,19800,1,616,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(667,'Onzaga',NULL,19800,1,617,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(668,'Oporapa',NULL,19800,1,618,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(669,'Orito',NULL,19800,1,619,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(670,'Orocué',NULL,19800,1,620,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(671,'Ortega',NULL,19800,1,621,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(672,'Ospina',NULL,19800,1,622,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(673,'Otanche',NULL,19800,1,623,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(674,'Ovejas',NULL,13300,1,624,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(675,'Pachavita',NULL,19800,1,625,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(676,'Pacho',NULL,19800,1,626,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(677,'Padilla',NULL,19800,1,627,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(678,'Paicol',NULL,19800,1,628,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(679,'Pailitas',NULL,19800,1,629,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(680,'Paime',NULL,19800,1,630,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(681,'Paipa',NULL,13300,1,631,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(682,'Pajarito',NULL,19800,1,632,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(683,'Palermo',NULL,13300,1,633,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(684,'Palestina',NULL,13300,1,634,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(685,'Palestina',NULL,19800,1,635,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(686,'Palmar',NULL,19800,1,636,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(687,'Palmar de Varela',NULL,16800,1,637,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(688,'Palmas del Socorro',NULL,13300,1,638,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(689,'Palmira',NULL,19800,1,639,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(690,'Palmito',NULL,19800,1,640,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(691,'Palocabildo',NULL,19800,1,641,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(692,'Pamplona',NULL,16800,1,642,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(693,'Pamplonita',NULL,19800,1,643,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(694,'Pandi',NULL,19800,1,644,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(695,'Panqueba',NULL,19800,1,645,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(696,'Paratebueno',NULL,19800,1,646,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(697,'Pasca',NULL,19800,1,647,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(698,'Patía (El Bordo)',NULL,19800,1,648,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(699,'Pauna',NULL,19800,1,649,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(700,'Paya',NULL,19800,1,650,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(701,'Paz de Ariporo',NULL,19800,1,651,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(702,'Paz de Río',NULL,19800,1,652,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(703,'Pedraza',NULL,19800,1,653,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(704,'Pelaya',NULL,19800,1,654,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(705,'Pensilvania',NULL,19800,1,655,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(706,'Pereira',NULL,13300,1,657,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(707,'Pesca',NULL,19800,1,658,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(708,'Piamonte',NULL,19800,1,660,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(709,'Pie de Cuesta',NULL,19800,1,661,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(710,'Piedras',NULL,19800,1,662,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(711,'Piendamó',NULL,19800,1,663,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(712,'Pijao',NULL,19800,1,664,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(713,'Pijiño',NULL,19800,1,665,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(714,'Pinchote',NULL,19800,1,666,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(715,'Pinillos',NULL,19800,1,667,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(716,'Piojo',NULL,19800,1,668,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(717,'Pisva',NULL,19800,1,669,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(718,'Pital',NULL,19800,1,670,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(719,'Pitalito',NULL,19800,1,671,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(720,'Pivijay',NULL,19800,1,672,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(721,'Planadas',NULL,19800,1,673,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(722,'Planeta Rica',NULL,13300,1,674,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(723,'Plato',NULL,19800,1,675,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(724,'Policarpa',NULL,19800,1,676,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(725,'Polonuevo',NULL,19800,1,677,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(726,'Ponedera',NULL,19800,1,678,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(727,'Popayán',NULL,19800,1,679,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(728,'Pore',NULL,19800,1,680,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(729,'Potosí',NULL,19800,1,681,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(730,'Pradera',NULL,19800,1,682,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(731,'Prado',NULL,19800,1,683,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(732,'Providencia',NULL,19800,1,684,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(733,'Providencia',NULL,19800,1,685,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(734,'Pueblo Bello',NULL,19800,1,686,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(735,'Pueblo Nuevo',NULL,19800,1,687,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(736,'Pueblo Rico',NULL,19800,1,688,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(737,'Puebloviejo',NULL,19800,1,690,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(738,'Puente Nacional',NULL,19800,1,691,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(739,'Puerres',NULL,19800,1,692,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(740,'Puerto Asís',NULL,19800,1,693,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(741,'Puerto Boyacá',NULL,19800,1,695,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(742,'Puerto Caicedo',NULL,19800,1,696,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(743,'Puerto Carreño',NULL,19800,1,697,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(744,'Puerto Colombia',NULL,13300,1,698,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(745,'Puerto Concordia',NULL,19800,1,699,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(746,'Puerto Escondido',NULL,19800,1,700,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(747,'Puerto Gaitán',NULL,19800,1,701,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(748,'Puerto Guzmán',NULL,19800,1,702,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(749,'Puerto Leguízamo',NULL,19800,1,703,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(750,'Puerto Libertador',NULL,19800,1,704,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(751,'Puerto Lleras',NULL,19800,1,705,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(752,'Puerto López',NULL,19800,1,706,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(753,'Puerto Nariño',NULL,19800,1,708,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(754,'Puerto Parra',NULL,19800,1,709,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(755,'Puerto Rico',NULL,19800,1,710,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(756,'Puerto Rico',NULL,19800,1,711,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(757,'Puerto Rondón',NULL,19800,1,712,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(758,'Puerto Salgar',NULL,19800,1,713,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(759,'Puerto Santander',NULL,19800,1,714,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(760,'Puerto Tejada',NULL,13300,1,715,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(761,'Puerto Wilches',NULL,19800,1,717,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(762,'Pulí',NULL,19800,1,718,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(763,'Pupiales',NULL,19800,1,719,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(764,'Puracé (Coconuco)',NULL,19800,1,720,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(765,'Purificación',NULL,19800,1,721,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(766,'Purísima',NULL,19800,1,722,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(767,'Pácora',NULL,19800,1,723,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(768,'Páez',NULL,19800,1,724,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(769,'Páez (Belalcazar)',NULL,19800,1,725,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(770,'Páramo',NULL,19800,1,726,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(771,'Quebradanegra',NULL,19800,1,727,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(772,'Quetame',NULL,19800,1,728,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(773,'Quibdó',NULL,19800,1,729,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(774,'Quimbaya',NULL,13300,1,730,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(775,'Quinchía',NULL,19800,1,731,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(776,'Quipama',NULL,19800,1,732,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(777,'Quipile',NULL,19800,1,733,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(778,'Ragonvalia',NULL,19800,1,734,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(779,'Ramiriquí',NULL,19800,1,735,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(780,'Recetor',NULL,19800,1,736,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(781,'Regidor',NULL,19800,1,737,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(782,'Remolino',NULL,19800,1,739,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(783,'Repelón',NULL,19800,1,740,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(784,'Restrepo',NULL,19800,1,741,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(785,'Restrepo',NULL,19800,1,742,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(786,'Ricaurte',NULL,19800,1,744,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(787,'Ricaurte',NULL,19800,1,745,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(788,'Rio Negro',NULL,6000,1,746,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(789,'Rioblanco',NULL,19800,1,747,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(790,'Riofrío',NULL,19800,1,748,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(791,'Riohacha',NULL,16800,1,749,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(792,'Risaralda',NULL,19800,1,750,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(793,'Rivera',NULL,19800,1,751,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(794,'Roberto Payán (San José)',NULL,19800,1,752,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(795,'Roldanillo',NULL,19800,1,753,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(796,'Roncesvalles',NULL,19800,1,754,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(797,'Rondón',NULL,19800,1,755,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(798,'Rosas',NULL,19800,1,756,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(799,'Rovira',NULL,16800,1,757,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(800,'Ráquira',NULL,19800,1,758,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(801,'Río Iró',NULL,19800,1,759,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(802,'Río Quito',NULL,19800,1,760,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(803,'Río Sucio',NULL,19800,1,761,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(804,'Río Viejo',NULL,19800,1,762,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(805,'Río de oro',NULL,19800,1,763,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(806,'Ríosucio',NULL,19800,1,765,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(807,'Sabana de Torres',NULL,19800,1,766,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(808,'Sabanagrande',NULL,16800,1,767,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(809,'Sabanalarga',NULL,19800,1,769,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(810,'Sabanalarga',NULL,19800,1,770,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(811,'Sabanas de San Angel (SAN ANGEL)',NULL,19800,1,771,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(812,'Saboyá',NULL,19800,1,773,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(813,'Sahagún',NULL,19800,1,774,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(814,'Saladoblanco',NULL,19800,1,775,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(815,'Salamina',NULL,19800,1,776,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(816,'Salamina',NULL,19800,1,777,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(817,'Salazar',NULL,19800,1,778,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(818,'Saldaña',NULL,19800,1,779,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(819,'Salento',NULL,19800,1,780,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(820,'Samacá',NULL,19800,1,782,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(821,'Samaniego',NULL,19800,1,783,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(822,'Samaná',NULL,19800,1,784,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(823,'Sampués',NULL,19800,1,785,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(824,'San Agustín',NULL,19800,1,786,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(825,'San Alberto',NULL,19800,1,787,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(826,'San Andrés',NULL,19800,1,788,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(827,'San Andrés Sotavento',NULL,19800,1,789,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(828,'San Antero',NULL,19800,1,791,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(829,'San Antonio',NULL,19800,1,792,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(830,'San Antonio de Tequendama',NULL,19800,1,793,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(831,'San Benito',NULL,19800,1,794,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(832,'San Benito Abad',NULL,19800,1,795,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(833,'San Bernardo',NULL,19800,1,796,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(834,'San Bernardo',NULL,19800,1,797,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(835,'San Bernardo del Viento',NULL,19800,1,798,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(836,'San Calixto',NULL,19800,1,799,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(837,'San Carlos',NULL,19800,1,801,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(838,'San Carlos de Guaroa',NULL,19800,1,802,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(839,'San Cayetano',NULL,19800,1,803,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(840,'San Cayetano',NULL,19800,1,804,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(841,'San Cristobal',NULL,19800,1,805,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(842,'San Diego',NULL,19800,1,806,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(843,'San Eduardo',NULL,19800,1,807,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(844,'San Estanislao',NULL,19800,1,808,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(845,'San Fernando',NULL,19800,1,809,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(846,'San Francisco',NULL,19800,1,811,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(847,'San Francisco',NULL,19800,1,812,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(848,'San Gíl',NULL,19800,1,813,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(849,'San Jacinto',NULL,13300,1,814,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(850,'San Jacinto del Cauca',NULL,19800,1,815,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(851,'San Joaquín',NULL,19800,1,817,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(852,'San José',NULL,19800,1,818,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(853,'San José de Miranda',NULL,19800,1,819,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(854,'San José de Pare',NULL,19800,1,821,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(855,'San José de Uré',NULL,19800,1,822,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(856,'San José del Fragua',NULL,19800,1,823,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(857,'San José del Guaviare',NULL,19800,1,824,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(858,'San José del Palmar',NULL,19800,1,825,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(859,'San Juan de Arama',NULL,19800,1,826,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(860,'San Juan de Betulia',NULL,19800,1,827,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(861,'San Juan de Nepomuceno',NULL,19800,1,828,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(862,'San Juan de Pasto',NULL,13300,1,829,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(863,'San Juan de Río Seco',NULL,19800,1,830,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(864,'San Juan del Cesar',NULL,19800,1,832,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(865,'San Juanito',NULL,19800,1,833,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(866,'San Lorenzo',NULL,19800,1,834,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(867,'San Luis',NULL,19800,1,835,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(868,'San Luís de Gaceno',NULL,19800,1,837,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(869,'San Luís de Palenque',NULL,19800,1,838,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(870,'San Marcos',NULL,19800,1,839,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(871,'San Martín',NULL,19800,1,840,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(872,'San Martín',NULL,19800,1,841,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(873,'San Martín de Loba',NULL,19800,1,842,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(874,'San Mateo',NULL,19800,1,843,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(875,'San Miguel',NULL,19800,1,844,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(876,'San Miguel',NULL,19800,1,845,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(877,'San Miguel de Sema',NULL,19800,1,846,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(878,'San Onofre',NULL,19800,1,847,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(879,'San Pablo',NULL,19800,1,848,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(880,'San Pablo',NULL,19800,1,849,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(881,'San Pablo de Borbur',NULL,19800,1,850,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(882,'San Pedro',NULL,13300,1,852,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(883,'San Pedro',NULL,19800,1,853,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(884,'San Pedro de Cartago',NULL,19800,1,854,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(885,'San Pelayo',NULL,19800,1,856,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(886,'San Sebastián',NULL,19800,1,859,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(887,'San Sebastián de Buenavista',NULL,19800,1,860,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(888,'San Vicente del Caguán',NULL,19800,1,862,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(889,'San Vicente del Chucurí',NULL,19800,1,863,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(890,'San Zenón',NULL,19800,1,864,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(891,'Sandoná',NULL,19800,1,865,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(892,'Santa Ana',NULL,19800,1,866,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(893,'Santa Bárbara',NULL,19800,1,868,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(894,'Santa Bárbara (Iscuandé)',NULL,19800,1,869,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(895,'Santa Bárbara de Pinto',NULL,19800,1,870,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(896,'Santa Catalina',NULL,19800,1,871,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(897,'Santa Genoveva de Docorodó',NULL,19800,1,873,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(898,'Santa Helena del Opón',NULL,19800,1,874,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(899,'Santa Isabel',NULL,19800,1,875,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(900,'Santa Lucía',NULL,19800,1,876,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(901,'Santa Marta',NULL,13300,1,877,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(902,'Santa María',NULL,19800,1,878,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(903,'Santa María',NULL,19800,1,879,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(904,'Santa Rosa',NULL,19800,1,880,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(905,'Santa Rosa',NULL,19800,1,881,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(906,'Santa Rosa de Cabal',NULL,13300,1,882,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(907,'Santa Rosa de Viterbo',NULL,13300,1,884,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(908,'Santa Rosa del Sur',NULL,19800,1,885,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(909,'Santa Rosalía',NULL,19800,1,886,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(910,'Santa Sofía',NULL,19800,1,887,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(911,'Santana',NULL,19800,1,888,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(912,'Santander de Quilichao',NULL,13300,1,889,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(913,'Santiago',NULL,19800,1,890,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(914,'Santiago',NULL,19800,1,891,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(915,'Santo Tomás',NULL,19800,1,893,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(916,'Santuario',NULL,19800,1,895,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(917,'Sapuyes',NULL,19800,1,896,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(918,'Saravena',NULL,19800,1,897,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(919,'Sardinata',NULL,19800,1,898,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(920,'Sasaima',NULL,19800,1,899,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(921,'Sativanorte',NULL,19800,1,900,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(922,'Sativasur',NULL,19800,1,901,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(923,'Sesquilé',NULL,19800,1,903,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(924,'Sevilla',NULL,19800,1,904,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(925,'Siachoque',NULL,19800,1,905,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(926,'Sibaté',NULL,19800,1,906,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(927,'Sibundoy',NULL,19800,1,907,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(928,'Silos',NULL,19800,1,908,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(929,'Silvania',NULL,19800,1,909,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(930,'Silvia',NULL,19800,1,910,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(931,'Simacota',NULL,19800,1,911,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(932,'Simijaca',NULL,19800,1,912,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(933,'Simití',NULL,19800,1,913,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(934,'Sincelejo',NULL,13300,1,914,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(935,'Sincé',NULL,19800,1,915,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(936,'Sipí',NULL,19800,1,916,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(937,'Sitionuevo',NULL,19800,1,917,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(938,'Soacha',NULL,19800,1,918,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(939,'Soatá',NULL,19800,1,919,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(940,'Socha',NULL,19800,1,920,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(941,'Socorro',NULL,19800,1,921,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(942,'Socotá',NULL,19800,1,922,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(943,'Sogamoso',NULL,13300,1,923,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(944,'Solano',NULL,19800,1,924,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(945,'Soledad',NULL,13300,1,925,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(946,'Solita',NULL,19800,1,926,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(947,'Somondoco',NULL,19800,1,927,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(948,'Soplaviento',NULL,19800,1,930,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(949,'Sopó',NULL,19800,1,931,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(950,'Sora',NULL,19800,1,932,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(951,'Soracá',NULL,19800,1,933,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(952,'Sotaquirá',NULL,19800,1,934,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(953,'Sotara (Paispamba)',NULL,19800,1,935,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(954,'Sotomayor (Los Andes)',NULL,19800,1,936,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(955,'Suaita',NULL,19800,1,937,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(956,'Suan',NULL,19800,1,938,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(957,'Suaza',NULL,19800,1,939,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(958,'Subachoque',NULL,19800,1,940,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(959,'Sucre',NULL,19800,1,941,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(960,'Sucre',NULL,19800,1,942,NULL,'2023-09-14 22:08:03','2023-09-14 22:08:03'),(961,'Sucre',NULL,19800,1,943,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(962,'Suesca',NULL,19800,1,944,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(963,'Supatá',NULL,19800,1,945,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(964,'Supía',NULL,19800,1,946,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(965,'Suratá',NULL,19800,1,947,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(966,'Susa',NULL,19800,1,948,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(967,'Susacón',NULL,19800,1,949,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(968,'Sutamarchán',NULL,19800,1,950,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(969,'Sutatausa',NULL,19800,1,951,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(970,'Sutatenza',NULL,19800,1,952,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(971,'Suárez',NULL,19800,1,953,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(972,'Suárez',NULL,19800,1,954,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(973,'Sácama',NULL,19800,1,955,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(974,'Sáchica',NULL,19800,1,956,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(975,'Tabio',NULL,19800,1,957,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(976,'Tadó',NULL,19800,1,958,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(977,'Talaigua Nuevo',NULL,19800,1,959,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(978,'Tamalameque',NULL,19800,1,960,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(979,'Tame',NULL,19800,1,961,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(980,'Taminango',NULL,19800,1,962,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(981,'Tangua',NULL,19800,1,963,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(982,'Taraira',NULL,19800,1,964,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(983,'Tarqui',NULL,19800,1,966,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(984,'Tasco',NULL,19800,1,968,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(985,'Tauramena',NULL,19800,1,969,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(986,'Tausa',NULL,19800,1,970,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(987,'Tello',NULL,19800,1,971,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(988,'Tena',NULL,19800,1,972,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(989,'Tenerife',NULL,19800,1,973,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(990,'Tenjo',NULL,19800,1,974,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(991,'Tenza',NULL,19800,1,975,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(992,'Teorama',NULL,19800,1,976,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(993,'Teruel',NULL,19800,1,977,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(994,'Tesalia',NULL,19800,1,978,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(995,'Tibacuy',NULL,19800,1,979,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(996,'Tibaná',NULL,19800,1,980,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(997,'Tibasosa',NULL,13300,1,981,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(998,'Tibirita',NULL,19800,1,982,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(999,'Tibú',NULL,19800,1,983,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1000,'Tierralta',NULL,19800,1,984,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1001,'Timaná',NULL,19800,1,985,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1002,'Timbiquí',NULL,19800,1,986,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1003,'Timbío',NULL,19800,1,987,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1004,'Tinjacá',NULL,19800,1,988,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1005,'Tipacoque',NULL,19800,1,989,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1006,'Tiquisio (Puerto Rico)',NULL,19800,1,990,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1007,'Toca',NULL,19800,1,992,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1008,'Tocaima',NULL,19800,1,993,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1009,'Tocancipá',NULL,19800,1,994,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1010,'Toguí',NULL,19800,1,995,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1011,'Toledo',NULL,19800,1,997,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1012,'Tolú',NULL,19800,1,998,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1013,'Tolú Viejo',NULL,19800,1,999,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1014,'Tona',NULL,19800,1,1000,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1015,'Topagá',NULL,19800,1,1001,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1016,'Topaipí',NULL,19800,1,1002,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1017,'Toribío',NULL,19800,1,1003,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1018,'Toro',NULL,16800,1,1004,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1019,'Tota',NULL,19800,1,1005,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1020,'Totoró',NULL,19800,1,1006,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1021,'Trinidad',NULL,19800,1,1007,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1022,'Trujillo',NULL,19800,1,1008,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1023,'Tubará',NULL,19800,1,1009,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1024,'Tuchín',NULL,19800,1,1010,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1025,'Tulúa',NULL,19800,1,1011,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1026,'Tumaco',NULL,19800,1,1012,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1027,'Tunja',NULL,13300,1,1013,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1028,'Tunungua',NULL,19800,1,1014,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1029,'Turbaco',NULL,13300,1,1015,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1030,'Turbaná',NULL,19800,1,1016,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1031,'Turmequé',NULL,19800,1,1018,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1032,'Tuta',NULL,19800,1,1019,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1033,'Tutasá',NULL,19800,1,1020,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1034,'Támara',NULL,19800,1,1021,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1035,'Túquerres',NULL,19800,1,1023,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1036,'Ubalá',NULL,19800,1,1024,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1037,'Ubaque',NULL,19800,1,1025,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1038,'Ubaté',NULL,19800,1,1026,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1039,'Ulloa',NULL,19800,1,1027,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1040,'Une',NULL,19800,1,1028,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1041,'Unguía',NULL,19800,1,1029,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1042,'Unión Panamericana (ÁNIMAS)',NULL,19800,1,1030,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1043,'Uribe',NULL,19800,1,1032,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1044,'Uribia',NULL,19800,1,1033,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1045,'Urumita',NULL,19800,1,1035,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1046,'Usiacuri',NULL,19800,1,1036,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1047,'Valencia',NULL,19800,1,1038,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1048,'Valle de San José',NULL,19800,1,1039,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1049,'Valle de San Juan',NULL,19800,1,1040,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1050,'Valle del Guamuez',NULL,19800,1,1041,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1051,'Valledupar',NULL,13300,1,1042,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1052,'Valparaiso',NULL,19800,1,1044,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1053,'Venadillo',NULL,16800,1,1046,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1054,'Venecia (Ospina Pérez)',NULL,19800,1,1048,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1055,'Ventaquemada',NULL,19800,1,1049,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1056,'Vergara',NULL,19800,1,1050,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1057,'Versalles',NULL,19800,1,1051,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1058,'Vetas',NULL,19800,1,1052,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1059,'Viani',NULL,19800,1,1053,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1060,'Vijes',NULL,19800,1,1055,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1061,'Villa Caro',NULL,19800,1,1056,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1062,'Villa Rica',NULL,13300,1,1057,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1063,'Villa de Leiva',NULL,19800,1,1058,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1064,'Villa del Rosario',NULL,13300,1,1059,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1065,'Villagarzón',NULL,19800,1,1060,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1066,'Villagómez',NULL,19800,1,1061,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1067,'Villahermosa',NULL,19800,1,1062,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1068,'Villamaría',NULL,19800,1,1063,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1069,'Villanueva',NULL,19800,1,1064,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1070,'Villanueva',NULL,19800,1,1065,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1071,'Villanueva',NULL,19800,1,1066,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1072,'Villanueva',NULL,19800,1,1067,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1073,'Villapinzón',NULL,19800,1,1068,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1074,'Villarrica',NULL,19800,1,1069,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1075,'Villavicencio',NULL,13300,1,1070,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1076,'Villavieja',NULL,19800,1,1071,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1077,'Villeta',NULL,13300,1,1072,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1078,'Viotá',NULL,19800,1,1073,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1079,'Viracachá',NULL,19800,1,1074,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1080,'Vista Hermosa',NULL,19800,1,1075,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1081,'Viterbo',NULL,19800,1,1076,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1082,'Vélez',NULL,19800,1,1077,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1083,'Yacopí',NULL,19800,1,1078,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1084,'Yacuanquer',NULL,19800,1,1079,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1085,'Yaguará',NULL,19800,1,1080,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1086,'Yopal',NULL,16800,1,1085,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1087,'Yotoco',NULL,19800,1,1086,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1088,'Yumbo',NULL,19800,1,1087,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1089,'Zambrano',NULL,19800,1,1088,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1090,'Zapatoca',NULL,19800,1,1089,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1091,'Zapayán (PUNTA DE PIEDRAS)',NULL,19800,1,1090,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1092,'Zarzal',NULL,19800,1,1092,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1093,'Zetaquirá',NULL,19800,1,1093,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1094,'Zipacón',NULL,19800,1,1094,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1095,'Zipaquirá',NULL,19800,1,1095,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1096,'Zona Bananera (PRADO - SEVILLA)',NULL,19800,1,1096,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1097,'Ábrego',NULL,19800,1,1097,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1098,'Íquira',NULL,19800,1,1098,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1099,'Úmbita',NULL,19800,1,1099,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04'),(1100,'Útica',NULL,19800,1,1100,NULL,'2023-09-14 22:08:04','2023-09-14 22:08:04');
/*!40000 ALTER TABLE `coverages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `discount_order_users`
--

DROP TABLE IF EXISTS `discount_order_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `discount_order_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned DEFAULT NULL,
  `order_id` int(10) unsigned DEFAULT NULL,
  `discount_id` int(10) unsigned DEFAULT NULL,
  `limit_discount` date DEFAULT NULL COMMENT 'Solo para descuento envios,indica la fecha del fin del descuento en el domicilio para el usuario',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `discount_order_users_user_id_foreign` (`user_id`),
  KEY `discount_order_users_order_id_foreign` (`order_id`),
  KEY `discount_order_users_discount_id_foreign` (`discount_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_order_users`
--

LOCK TABLES `discount_order_users` WRITE;
/*!40000 ALTER TABLE `discount_order_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `discount_order_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `discount_product_users`
--

DROP TABLE IF EXISTS `discount_product_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `discount_product_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `quantity` int(11) NOT NULL,
  `price` double NOT NULL,
  `plu` varchar(191) NOT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `order_id` int(10) unsigned DEFAULT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `discount_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `discount_product_users_user_id_foreign` (`user_id`),
  KEY `discount_product_users_order_id_foreign` (`order_id`),
  KEY `discount_product_users_product_id_foreign` (`product_id`),
  KEY `discount_product_users_discount_id_foreign` (`discount_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_product_users`
--

LOCK TABLES `discount_product_users` WRITE;
/*!40000 ALTER TABLE `discount_product_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `discount_product_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `discount_products`
--

DROP TABLE IF EXISTS `discount_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `discount_products` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `is_gift` tinyint(1) DEFAULT NULL,
  `plu` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `discount_id` int(10) unsigned DEFAULT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `quantity` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `discount_products_discount_id_foreign` (`discount_id`),
  KEY `discount_products_product_id_foreign` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_products`
--

LOCK TABLES `discount_products` WRITE;
/*!40000 ALTER TABLE `discount_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `discount_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `discount_types`
--

DROP TABLE IF EXISTS `discount_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `discount_types` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_types`
--

LOCK TABLES `discount_types` WRITE;
/*!40000 ALTER TABLE `discount_types` DISABLE KEYS */;
INSERT INTO `discount_types` VALUES (1,'Descuento Envios',1,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(2,'Descuento Pedidos',0,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(3,'Descuento Campañas',1,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(4,'Descuento Cupones',1,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(5,'Descuento Grupos',1,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(6,'Descuento Obsequios',1,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(7,'Descuento Porcentajes',1,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(8,'Descuento Referidos',1,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(9,'Descuento Topes',1,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(10,'Descuento Categorias',1,'2021-05-01 21:58:24','2021-05-01 21:58:24');
/*!40000 ALTER TABLE `discount_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `discounts`
--

DROP TABLE IF EXISTS `discounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `discounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) DEFAULT NULL,
  `message_to_user` varchar(191) DEFAULT NULL,
  `value_for_win` int(11) DEFAULT NULL,
  `current_winners` int(11) DEFAULT NULL,
  `max_winners` int(11) DEFAULT NULL,
  `when_start` datetime DEFAULT NULL,
  `when_finish` datetime DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `code_coupon` varchar(191) DEFAULT NULL,
  `price_discount` int(11) DEFAULT NULL,
  `percentage_discount` int(11) DEFAULT NULL,
  `is_multiple_redeem` tinyint(1) DEFAULT NULL COMMENT 'si el usuario puede aplicar este descuento varias veces',
  `is_cumulative_another_discounts` tinyint(1) DEFAULT NULL COMMENT 'si es acumulable con otros descuentos a la vez',
  `days_register_discount_delivery` int(11) DEFAULT 0 COMMENT 'Solo para descuento envios,indica los dias de promocion en el envio para usuario nuevos',
  `discount_global_shipping` int(11) DEFAULT 0 COMMENT 'Solo para descuento envios,indica el valor del descuento para todos los usuarios en el domicilio',
  `apply_value` tinyint(1) DEFAULT NULL COMMENT 'Aplica solamente para el descuento categoria indica a que se aplica el descuento: 0 domicilio 1 producto',
  `category_id` int(10) unsigned DEFAULT NULL COMMENT 'Aplica solamente para el descuento categoria indica el id de la categoria que se va aplicar el descuento',
  `discount_type_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `discounts_discount_type_id_foreign` (`discount_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discounts`
--

LOCK TABLES `discounts` WRITE;
/*!40000 ALTER TABLE `discounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `discounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `document_types`
--

DROP TABLE IF EXISTS `document_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `document_types` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `alias` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `document_types`
--

LOCK TABLES `document_types` WRITE;
/*!40000 ALTER TABLE `document_types` DISABLE KEYS */;
INSERT INTO `document_types` VALUES (0,'Identificación Genérica','ID',0,'2023-07-21 17:12:13','2023-07-21 17:12:13'),(1,'Cédula de Ciudadanía','CC',1,'2021-05-05 22:16:41','2021-05-05 22:16:41'),(2,'Cédula de Extranjería','CE',1,'2021-05-05 22:16:41','2021-05-05 22:16:41'),(3,'Pasaporte','PA',1,'2021-05-05 22:16:41','2021-05-05 22:16:41'),(4,'Tarjeta de Identidad','TI',1,'2021-05-05 22:16:41','2021-05-05 22:16:41'),(5,'Registro Civil','RC',1,'2021-05-05 22:16:41','2021-05-05 22:16:41');
/*!40000 ALTER TABLE `document_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `doors`
--

DROP TABLE IF EXISTS `doors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doors` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doors`
--

LOCK TABLES `doors` WRITE;
/*!40000 ALTER TABLE `doors` DISABLE KEYS */;
INSERT INTO `doors` VALUES (1,'Puerta 1 Occidental',1,'2020-11-26 23:24:42','2020-12-04 01:14:38'),(2,'Puerta 2 Occidental',1,'2020-11-26 23:24:42','2020-12-04 01:14:25'),(3,'Puerta 3 Occidental',1,'2020-11-26 23:24:42','2020-12-04 01:05:47'),(4,'Puerta 4 Occidental',1,'2020-11-26 23:24:42','2020-12-04 01:05:31'),(5,'Puerta 5 Norte',1,'2020-11-26 23:24:42','2020-12-04 01:04:10'),(6,'Puerta 6 Norte',1,'2020-11-26 23:24:42','2020-12-04 01:19:53'),(7,'Puerta 7 Norte',1,'2020-11-26 23:24:42','2020-12-04 01:20:04'),(8,'Puerta 8 Norte',1,'2020-11-26 23:24:42','2020-12-04 01:20:31'),(9,'Puerta 9 Norte',1,'2020-11-26 23:24:42','2020-12-04 01:20:44'),(10,'Puerta 10 Norte',1,'2020-11-26 23:24:42','2020-12-04 01:20:59'),(11,'Puerta 11 Norte',1,'2020-11-26 23:24:42','2020-12-04 01:21:15'),(12,'Puerta 12 Norte',1,'2020-11-26 23:24:42','2020-12-04 01:04:26'),(13,'Puerta 13 General',1,'2020-11-26 23:24:42','2020-12-04 01:21:35'),(14,'Puerta 14 General',1,'2020-11-26 23:24:42','2020-12-04 01:21:53'),(15,'Puerta 15 General',1,'2020-11-26 23:24:42','2020-12-04 01:22:06'),(16,'Puerta 16 General',1,'2020-11-26 23:24:42','2020-12-04 01:22:23'),(17,'Puerta 17 General',1,'2020-11-26 23:24:42','2020-12-04 01:22:39'),(18,'Puerta 18 General',1,'2020-11-26 23:24:42','2020-12-04 01:22:55'),(19,'Puerta 19 General',1,'2020-11-26 23:24:42','2020-12-04 01:23:14'),(20,'Puerta 20 General',1,'2020-11-26 23:24:42','2020-12-04 01:23:35'),(21,'Puerta 21 General',1,'2020-11-26 23:24:42','2020-12-04 01:24:17'),(22,'Puerta 22 General',1,'2020-11-26 23:24:42','2020-12-04 01:24:37'),(23,'Puerta 23 Sur',1,'2020-11-26 23:24:42','2020-12-04 01:17:46'),(24,'Puerta 24 Sur',1,'2020-11-26 23:24:42','2020-12-04 01:18:21'),(25,'Puerta 25 Sur',1,'2020-11-26 23:24:42','2020-12-04 01:18:36'),(26,'Puerta 26 Sur',1,'2020-11-26 23:24:42','2020-12-04 01:18:50'),(27,'Puerta 27 Sur',1,'2020-11-26 23:24:42','2020-12-04 01:19:04'),(28,'Puerta 28 Sur',1,'2020-11-26 23:24:42','2020-12-04 01:19:16'),(29,'Puerta 29 Sur',1,'2020-11-26 23:24:42','2020-12-04 01:19:35'),(30,'Puerta 30 Sur',1,'2020-11-26 23:24:42','2020-12-04 01:18:01'),(31,'Puerta 31 Occidental',1,'2020-11-26 23:24:42','2020-12-04 01:15:15'),(32,'Puerta 32 Occidental',1,'2020-11-26 23:24:42','2020-12-04 01:15:32'),(33,'Puerta 33 Occidental',1,'2020-11-26 23:24:42','2020-12-04 01:15:47'),(34,'Puerta 34 Occidental',1,'2020-11-26 23:24:42','2020-12-04 01:16:03'),(35,'Puerta 35 Occidental',1,'2020-11-26 23:24:42','2020-12-04 01:16:20'),(36,'Puerta 36 Occidental',1,'2020-11-26 23:24:42','2020-12-04 01:16:42');
/*!40000 ALTER TABLE `doors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dorsals`
--

DROP TABLE IF EXISTS `dorsals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dorsals` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `text_color` varchar(255) DEFAULT NULL,
  `offset` int(11) NOT NULL,
  `offset_number` int(11) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dorsals`
--

LOCK TABLES `dorsals` WRITE;
/*!40000 ALTER TABLE `dorsals` DISABLE KEYS */;
INSERT INTO `dorsals` VALUES (7,'Dorsal Envigado Naranja','7.png','#ffffff',20,30,1,'2022-11-23 14:36:18','2022-11-23 14:36:19'),(8,'Dorsal Envigado Negra','8.png','#ffffff',20,30,1,'2022-11-23 14:37:00','2022-11-23 14:37:00'),(9,'Dorsal Envigado Blanca','9.png','#000000',20,30,1,'2022-11-23 14:37:46','2022-11-23 14:37:47');
/*!40000 ALTER TABLE `dorsals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecommerce_types`
--

DROP TABLE IF EXISTS `ecommerce_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ecommerce_types` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecommerce_types`
--

LOCK TABLES `ecommerce_types` WRITE;
/*!40000 ALTER TABLE `ecommerce_types` DISABLE KEYS */;
INSERT INTO `ecommerce_types` VALUES (1,'Puntos Colombia',1,'2023-07-05 23:10:01','2023-07-05 23:10:01'),(2,'Woocommerce',1,'2023-07-05 23:10:01','2023-07-05 23:10:01'),(3,'Shopify',1,'2023-07-05 23:10:01','2023-07-05 23:10:01');
/*!40000 ALTER TABLE `ecommerce_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `equipment_categories`
--

DROP TABLE IF EXISTS `equipment_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `equipment_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_categories`
--

LOCK TABLES `equipment_categories` WRITE;
/*!40000 ALTER TABLE `equipment_categories` DISABLE KEYS */;
INSERT INTO `equipment_categories` VALUES (1,'EQUIPO PROFESIONAL','2022-09-02 18:56:42','2022-11-16 12:00:54');
/*!40000 ALTER TABLE `equipment_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `evidence`
--

DROP TABLE IF EXISTS `evidence`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `evidence` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `image` varchar(191) NOT NULL,
  `order_id` int(10) unsigned NOT NULL,
  `delivery_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `evidence_order_id_foreign` (`order_id`),
  KEY `evidence_delivery_id_foreign` (`delivery_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `evidence`
--

LOCK TABLES `evidence` WRITE;
/*!40000 ALTER TABLE `evidence` DISABLE KEYS */;
/*!40000 ALTER TABLE `evidence` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `external_providers`
--

DROP TABLE IF EXISTS `external_providers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `external_providers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `user` varchar(191) DEFAULT NULL,
  `pass` varchar(191) DEFAULT NULL,
  `secret` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `external_providers`
--

LOCK TABLES `external_providers` WRITE;
/*!40000 ALTER TABLE `external_providers` DISABLE KEYS */;
/*!40000 ALTER TABLE `external_providers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_datasources`
--

DROP TABLE IF EXISTS `field_datasources`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_datasources` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(45) NOT NULL,
  `type` enum('service','hard') NOT NULL,
  `url` varchar(190) DEFAULT NULL COMMENT 'Url relativa',
  `main_datasource_id` bigint(20) unsigned NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `field_datasources_main_datasource_id_foreign` (`main_datasource_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_datasources`
--

LOCK TABLES `field_datasources` WRITE;
/*!40000 ALTER TABLE `field_datasources` DISABLE KEYS */;
/*!40000 ALTER TABLE `field_datasources` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_inputs`
--

DROP TABLE IF EXISTS `field_inputs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_inputs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(45) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_inputs`
--

LOCK TABLES `field_inputs` WRITE;
/*!40000 ALTER TABLE `field_inputs` DISABLE KEYS */;
INSERT INTO `field_inputs` VALUES (1,'select',1,NULL,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(2,'checkbox',1,NULL,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(3,'date',1,NULL,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(4,'datetime',1,NULL,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(5,'email',1,NULL,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(6,'number',1,NULL,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(7,'text',1,NULL,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(8,'time',1,NULL,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(9,'url',1,NULL,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(10,'toggle',1,NULL,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(11,'textarea',1,NULL,'2021-05-01 21:58:25','2021-05-01 21:58:25');
/*!40000 ALTER TABLE `field_inputs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_values`
--

DROP TABLE IF EXISTS `field_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(45) DEFAULT NULL,
  `value` varchar(190) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_values`
--

LOCK TABLES `field_values` WRITE;
/*!40000 ALTER TABLE `field_values` DISABLE KEYS */;
INSERT INTO `field_values` VALUES (1,'true','1',1,NULL,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(2,'false','0',1,NULL,'2021-05-01 21:58:25','2021-05-01 21:58:25');
/*!40000 ALTER TABLE `field_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fields`
--

DROP TABLE IF EXISTS `fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fields` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` text DEFAULT NULL,
  `field_datasource_id` bigint(20) unsigned DEFAULT NULL,
  `field_value_id` bigint(20) unsigned DEFAULT NULL,
  `field_input_id` bigint(20) unsigned DEFAULT NULL,
  `min` double DEFAULT NULL,
  `max` double DEFAULT NULL,
  `maxlength` double DEFAULT NULL,
  `minlength` double DEFAULT NULL,
  `name_control` varchar(45) DEFAULT NULL,
  `placeholder` varchar(190) DEFAULT NULL,
  `scale` double DEFAULT NULL COMMENT 'Es la escala del valor del campo',
  `disabled` tinyint(1) DEFAULT 0,
  `readonly` tinyint(1) DEFAULT 0,
  `required` tinyint(1) DEFAULT 0,
  `multiple` tinyint(1) DEFAULT 0,
  `active` tinyint(1) DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `fields_field_datasource_id_foreign` (`field_datasource_id`),
  KEY `fields_field_value_id_foreign` (`field_value_id`),
  KEY `fields_field_input_id_foreign` (`field_input_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fields`
--

LOCK TABLES `fields` WRITE;
/*!40000 ALTER TABLE `fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `flash_ticket_configuration`
--

DROP TABLE IF EXISTS `flash_ticket_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `flash_ticket_configuration` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `match_event_id` bigint(20) unsigned DEFAULT NULL,
  `zone_id` bigint(20) unsigned NOT NULL,
  `price` double DEFAULT NULL,
  `salable_capacity` double DEFAULT NULL COMMENT 'Aforo vendible',
  `maximum_number_ballots` double DEFAULT NULL COMMENT 'Numero maximo de boletas que puede comprar un usuario',
  `web_price` double DEFAULT NULL COMMENT 'Precio de venta por el panel',
  `special_price` double DEFAULT NULL COMMENT 'Precio de venta para boletas con tarifa especial	',
  `courtesy_price` double DEFAULT NULL COMMENT 'Precio de venta para boletas de cortesia',
  `image` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `flash_ticket_configuration_match_event_id_foreign` (`match_event_id`),
  KEY `flash_ticket_configuration_zone_id_foreign` (`zone_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `flash_ticket_configuration`
--

LOCK TABLES `flash_ticket_configuration` WRITE;
/*!40000 ALTER TABLE `flash_ticket_configuration` DISABLE KEYS */;
INSERT INTO `flash_ticket_configuration` VALUES (3,3,3,200000,16000,10,NULL,NULL,NULL,'https://s3.us-east-2.amazonaws.com/b001-si/bikenow/envigado/ticketing/flash/3.jpg','“Corazón y Valentía” Incluye un (1) ingreso a todos los partidos que el equipo juegue de local en la fase todos contra todos de la Liga BetPlay del semestre 2023-II, ingreso exclusivo al estadio, participación en sorteos de experiencias naranjas, acceso a la tiquetera de beneficios, 10% de descuento en la Tienda Naranja Oficial del club, además de un termo, una libreta y unas postales del club.',1,'2023-06-14 19:53:48','2023-08-01 22:34:28'),(4,3,2,240000,9000,10,NULL,NULL,NULL,'https://s3.us-east-2.amazonaws.com/b001-si/bikenow/envigado/ticketing/flash/4.jpg','“Nacidos para brillar” Incluye un (1) ingreso a todos los partidos que el equipo juegue de local\nen la fase todos contra todos de la Liga BetPlay del semestre 2023-II, además tendrá ingreso doble en cinco (5) fechas, las cuales son #3 vs Unión Magdalena, #10 vs Águilas Doradas, #12 vs Jaguares, #16 vs Deportivo Pereira y #20 vs Deportivo Pasto, para un total de quince (15) ingresos al semestre, ingreso exclusivo al estadio, participación en sorteos de experiencias naranjas, acceso a la de beneficios, 10% de descuento en la Tienda Naranja Oficial del club, además una riñonera, una libreta y\npostales del club.',1,'2023-06-14 19:55:00','2023-08-01 22:33:37'),(5,3,5,280000,1000,10,2000,NULL,NULL,'https://s3.us-east-2.amazonaws.com/b001-si/bikenow/envigado/ticketing/flash/5.jpg','“La Familia Naranja” Incluye tres (3) ingresos a todos los partidos que el equipo juegue de local en la fase todos contra todos de la Liga BetPlay de 2023-II, ingreso exclusivo al estadio, participación en sorteos de experiencias naranjas, acceso a la tiquetera de beneficios, 10% de descuento en la Tienda Naranja Oficial del club, además de una camiseta, un termo y postales del club.',1,'2023-06-14 19:56:14','2023-08-01 22:31:37');
/*!40000 ALTER TABLE `flash_ticket_configuration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `form_fields`
--

DROP TABLE IF EXISTS `form_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `form_fields` (
  `form_id` bigint(20) unsigned NOT NULL,
  `field_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`form_id`,`field_id`),
  KEY `form_fields_field_id_foreign` (`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_fields`
--

LOCK TABLES `form_fields` WRITE;
/*!40000 ALTER TABLE `form_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `form_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `form_tags`
--

DROP TABLE IF EXISTS `form_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `form_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_tags_form_id_foreign` (`form_id`),
  KEY `form_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_tags`
--

LOCK TABLES `form_tags` WRITE;
/*!40000 ALTER TABLE `form_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `form_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `forms`
--

DROP TABLE IF EXISTS `forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forms` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(45) NOT NULL,
  `description` varchar(250) DEFAULT NULL,
  `priority` int(11) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `show_in_home` tinyint(1) NOT NULL DEFAULT 1,
  `show_in_setting` tinyint(1) NOT NULL DEFAULT 1,
  `show_text` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forms`
--

LOCK TABLES `forms` WRITE;
/*!40000 ALTER TABLE `forms` DISABLE KEYS */;
/*!40000 ALTER TABLE `forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `gateway_payments`
--

DROP TABLE IF EXISTS `gateway_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gateway_payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `description` varchar(191) DEFAULT NULL,
  `user` varchar(191) DEFAULT NULL,
  `pass` varchar(191) DEFAULT NULL,
  `secret` varchar(191) DEFAULT NULL,
  `public` varchar(191) DEFAULT NULL,
  `client_public` varchar(191) DEFAULT NULL,
  `client_secret` varchar(191) DEFAULT NULL,
  `client_id` varchar(191) DEFAULT NULL,
  `api_key` varchar(191) DEFAULT NULL,
  `api_login` varchar(191) DEFAULT NULL,
  `merchant_id` varchar(191) DEFAULT NULL,
  `account_id` varchar(191) DEFAULT NULL,
  `language` varchar(191) DEFAULT NULL,
  `currency` varchar(191) NOT NULL COMMENT 'Indica la moneda de la pasarela de pago.',
  `gw_url_prd` varchar(191) DEFAULT NULL COMMENT 'URL productiva del Gateway',
  `gw_url_sandbox` varchar(191) DEFAULT NULL COMMENT 'URL sandbox del Gateway',
  `page_user_payment` varchar(191) DEFAULT NULL,
  `page_confirm_user` varchar(191) DEFAULT NULL,
  `page_response_for_gateway` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `is_productive` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Indica si actualmente se usa en modo SANDBOX | PRODUCTIVE',
  `valid_payments` varchar(20) NOT NULL DEFAULT 'all' COMMENT 'Indica los procesos donde es valido el pago con la pasarela',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `class` varchar(255) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gateway_payments`
--

LOCK TABLES `gateway_payments` WRITE;
/*!40000 ALTER TABLE `gateway_payments` DISABLE KEYS */;
INSERT INTO `gateway_payments` VALUES (1,'PayU sandbox','Sandbox credenciales test',NULL,NULL,NULL,NULL,'',NULL,NULL,'4Vj8eK4rloUd272L48hsrarnUA','pRRXKOl8ikMmt9u','508029','512321','es','COP','https://api.payulatam.com','https://sandbox.api.payulatam.com','response.html','confirm.html','response_gateway.html',0,0,'all','2021-05-01 21:58:24','2023-01-06 13:57:02','',NULL),(2,'Worldpay sandbox','Sandbox Worldpay',NULL,NULL,NULL,NULL,'',NULL,NULL,'T_S_5f897fb3-4738-4daa-95a0-c69c37c9adce','T_C_6d0af4f0-6e9f-4627-916f-c69535bd32cc','ce929feb-2b3f-4877-b752-eb55b67f3ede','','es','COP','https://api.worldpay.com','https://api.worldpay.com','','','',0,0,'all','2021-05-01 21:58:24','2023-01-06 13:57:07','',NULL),(3,'Worldpay PRD','Worldpay PRD',NULL,NULL,NULL,NULL,'',NULL,NULL,'','','','','es','COP','https://api.worldpay.com','https://api.worldpay.com','','','',0,0,'all','2021-05-01 21:58:24','2023-01-06 13:57:15','',NULL),(4,'Leal_sandbox','Sandbox Leal','cajero_SportsCrowd','CajeroSportsCrowd2022*',NULL,NULL,'',NULL,NULL,'','','','','es','COP','https://coinstest.leal.co/apiexterno/api','https://testapi.puntosleal.com/api','','','',0,0,'all','2022-06-01 02:13:33','2023-01-06 13:57:11','',NULL),(5,'Leal_PRD','Leal PRD','cajero_SportsCrowd','CajeroSportsCrowd2022*',NULL,NULL,'',NULL,NULL,'','','','','es','COP','https://coinstest.leal.co/apiexterno/api','https://testapi.puntosleal.com/api','','','',0,0,'all','2022-06-01 02:13:33','2023-01-19 13:15:47','',NULL),(6,'wompi','Wompi Sandbox','NA','NA',NULL,NULL,'pub_test_YViKlbsiRQiSpnAIFqIj5Iu8FiqzRhKy','prv_test_nAEf2Y9cewj9Br0qMwiT4yS5iVoIVSsm',NULL,NULL,NULL,NULL,NULL,'es','COP','https://sandbox.wompi.co/v1','https://sandbox.wompi.co/v1',NULL,NULL,NULL,0,1,'order','2022-08-25 14:50:12','2023-01-06 13:57:22','App\\Http\\Controllers\\WompiControllerNew','6.png'),(7,'wompiTicketOffice','Wompi Sandbox','NA','NA',NULL,NULL,'pub_test_YViKlbsiRQiSpnAIFqIj5Iu8FiqzRhKy','prv_test_nAEf2Y9cewj9Br0qMwiT4yS5iVoIVSsm',NULL,NULL,NULL,NULL,NULL,'es','COP','https://sandbox.wompi.co/v1','https://sandbox.wompi.co/v1',NULL,NULL,NULL,0,1,'ticket','2022-08-25 14:50:12','2023-01-06 13:57:27','App\\Http\\Controllers\\WompiControllerNew','6.png'),(8,'Leal_sandbox','Sandbox Leal','cajero_SportsCrowd','CajeroSportsCrowd2022*',NULL,NULL,'',NULL,NULL,'','','','','es','COP','https://coinstest.leal.co/apiexterno/api','https://testapi.puntosleal.com/api','','','',0,0,'','2022-05-19 18:56:37','2023-01-06 13:57:32','',NULL),(9,'Leal_PRD','Leal PRD','cajero_SportsCrowd','CajeroSportsCrowd2022*',NULL,NULL,'',NULL,NULL,'','','','','es','COP','https://coinstest.leal.co/apiexterno/api','https://testapi.puntosleal.com/api','','','',0,0,'','2022-05-19 18:56:37','2023-01-06 13:57:41','',NULL),(10,'Culqi_sandbox','Sandbox Culqi, doc: https://docs.culqi.com/, CLUB SPORTING CRISTAL APP, ID: 54351','test','1234',NULL,NULL,'pk_test_mViq27IrjrzUBicA','sk_test_OmLBFgRUAXxhwjxC',NULL,NULL,NULL,NULL,NULL,'es','PEN','https://api.culqi.com/v2','https://api.culqi.com/v2',NULL,NULL,NULL,0,0,'all','2022-07-05 20:23:00','2023-01-06 13:57:47','App\\Http\\Controllers\\CulqiController','10.png'),(11,'Culqi_prd','PRD Culqi, doc: https://docs.culqi.com/','','',NULL,NULL,'',NULL,NULL,'','','','','es','PEN','','','','','',0,0,'','2022-07-05 20:23:01','2023-01-06 13:57:58','',NULL),(12,'nmi','NMI Sandbox','test','1234',NULL,NULL,'TauroFcTest','TauroFcTest',NULL,'yqd8K228JDnfbE67B78mYYGSq3nStXP7',NULL,NULL,NULL,'es','USD','https://secure.networkmerchants.com/api/v2/three-step','https://secure.networkmerchants.com/api/v2/three-step',NULL,NULL,NULL,0,0,'','2022-08-04 02:17:37','2023-01-06 13:58:06','App\\Http\\Controllers\\NmiController','12.jpeg'),(13,'nmi','NMI producción','test','1234',NULL,NULL,'TAUROFC','TAUROFC',NULL,'Rfq5j9e7z6hD3E44j4996MsKZpj479sH',NULL,NULL,NULL,'es','USD','https://secure.networkmerchants.com/api/v2/three-step','https://secure.networkmerchants.com/api/v2/three-step',NULL,NULL,NULL,0,0,'','2022-08-04 02:17:37','2023-01-19 13:15:58','App\\Http\\Controllers\\NmiController','13.jpeg'),(14,'Yappy','Yappy - Tauro','NA','NA',NULL,NULL,'QkdfbTJyOU5Gb0c5UnA3WlJRMW0xMzguRFh1NnF5SzBuV1NmUmhwVTNMZE95TTREVTdDcUc2SHhQYXEyNWxydw==','QkdfbTJyOU5Gb0c5UnA3WlJRMW0xMzguRFh1NnF5SzBuV1NmUmhwVTNMZE95TTREVTdDcUc2SHhQYXEyNWxydw==',NULL,NULL,NULL,'b1a01602-cfe0-4e27-b28b-e6857b255f66',NULL,'es','USD','https://apipagosbg.bgeneral.cloud','https://apipagosbg.bgeneral.cloud',NULL,NULL,NULL,0,0,'','2022-08-05 23:09:41','2023-01-06 13:58:10','App\\Http\\Controllers\\YappyController','12.jpeg'),(15,'OpenPay Sandbox','Pasarela de pago BBVA','NA','NA',NULL,NULL,'pk_e65f35f9d02e48689a00392eefc1eecf','sk_3577ee839d814f18b434aabf3789010e',NULL,NULL,NULL,'mceveozm8ndd2nko5cut',NULL,'es','COP','https://sandbox-dashboard.openpay.co','https://sandbox-dashboard.openpay.co',NULL,NULL,NULL,0,0,'all','2023-01-06 20:07:31','2023-01-20 13:37:43','App\\Http\\Controllers\\OpenpayController','15.png'),(16,'Openpay Prod','Prod','Envg','123',NULL,NULL,'pk_d7fd060274b44833a60e11374938a46f','sk_b38ff9d12e85471b9dbf79ff45176e80',NULL,NULL,NULL,'mwttwfjphsmuukkzyrx3',NULL,'es','COP','https://dashboard.openpay.co','https://dashboard.openpay.co',NULL,NULL,NULL,1,1,'academy','2023-01-19 13:15:35','2023-01-20 14:19:29','App\\Http\\Controllers\\OpenpayController','16.png'),(17,'Openpay Tienda Prod','Prod','Envg','123',NULL,NULL,'pk_13fb53d6ec124f46a99870bf12fff07a','sk_9a096fcb62d642bf81c4d150e24a1dba',NULL,NULL,NULL,'mtndfclemlqlzqoycyam',NULL,'es','COP','https://dashboard.openpay.co','https://dashboard.openpay.co',NULL,NULL,NULL,1,1,'order','2023-04-04 14:15:35','2023-04-04 14:15:35','App\\Http\\Controllers\\OpenpayController','16.png'),(18,'Openpay Abonos Prod','Prod','Envg','123',NULL,NULL,'pk_13fb53d6ec124f46a99870bf12fff07a','sk_9a096fcb62d642bf81c4d150e24a1dba',NULL,NULL,NULL,'mtndfclemlqlzqoycyam',NULL,'es','COP','https://dashboard.openpay.co','https://dashboard.openpay.co',NULL,NULL,NULL,1,1,'ticket','2023-04-04 14:15:35','2023-04-04 14:15:35','App\\Http\\Controllers\\OpenpayController','16.png');
/*!40000 ALTER TABLE `gateway_payments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `header_value_details`
--

DROP TABLE IF EXISTS `header_value_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `header_value_details` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `header_value_id` bigint(20) unsigned NOT NULL,
  `field_id` bigint(20) unsigned NOT NULL,
  `value` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `header_value_details_header_value_id_foreign` (`header_value_id`),
  KEY `header_value_details_field_id_foreign` (`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `header_value_details`
--

LOCK TABLES `header_value_details` WRITE;
/*!40000 ALTER TABLE `header_value_details` DISABLE KEYS */;
/*!40000 ALTER TABLE `header_value_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `header_values`
--

DROP TABLE IF EXISTS `header_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `header_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `header_values_form_id_foreign` (`form_id`),
  KEY `header_values_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `header_values`
--

LOCK TABLES `header_values` WRITE;
/*!40000 ALTER TABLE `header_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `header_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `home_images`
--

DROP TABLE IF EXISTS `home_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `home_images` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `home_images`
--

LOCK TABLES `home_images` WRITE;
/*!40000 ALTER TABLE `home_images` DISABLE KEYS */;
INSERT INTO `home_images` VALUES (1,'Valledupar 1','1.jpg',0,'2022-09-02 13:25:51','2022-11-22 18:05:27'),(2,'Bannerhome Envigado','2.jpg',1,'2022-11-22 18:05:27','2022-11-22 18:05:31');
/*!40000 ALTER TABLE `home_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `integration_providers`
--

DROP TABLE IF EXISTS `integration_providers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `integration_providers` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name_provider` varchar(191) NOT NULL,
  `ecommerce_type_id` bigint(20) unsigned DEFAULT NULL,
  `endpoint` varchar(191) NOT NULL,
  `nit` varchar(191) DEFAULT NULL,
  `username` varchar(191) DEFAULT NULL,
  `password` varchar(191) DEFAULT NULL,
  `key_public` varchar(500) DEFAULT NULL,
  `key_private` varchar(500) DEFAULT NULL,
  `consecutive` bigint(20) DEFAULT NULL,
  `interface` varchar(191) DEFAULT NULL,
  `env` enum('TST','PRD') DEFAULT NULL,
  `last_load_date` timestamp NULL DEFAULT NULL,
  `last_load_date_web_shop` timestamp NULL DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `integration_providers_ecommerce_type_id_foreign` (`ecommerce_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `integration_providers`
--

LOCK TABLES `integration_providers` WRITE;
/*!40000 ALTER TABLE `integration_providers` DISABLE KEYS */;
INSERT INTO `integration_providers` VALUES (1,'Tienda envigado',2,'https://tiendaenvigado.sports-crowd.com/',NULL,'jorge.mina@fanaticadas.co',NULL,'ck_813e0cec34f1c77f4ef3a081ce27ae31afc9ceaf','cs_d2edbeca9a7b090081fed72e341cd96ef9f24802',NULL,NULL,NULL,'2023-08-17 05:00:23',NULL,1,'2023-07-05 23:11:37','2023-08-17 05:00:23');
/*!40000 ALTER TABLE `integration_providers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `integration_tickets`
--

DROP TABLE IF EXISTS `integration_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `integration_tickets` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) DEFAULT NULL,
  `api_url` varchar(191) DEFAULT NULL,
  `username` varchar(191) DEFAULT NULL,
  `password` varchar(191) DEFAULT NULL,
  `api_key` varchar(191) DEFAULT NULL,
  `secret` varchar(191) DEFAULT NULL,
  `integrations_ticketscol` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `integration_tickets`
--

LOCK TABLES `integration_tickets` WRITE;
/*!40000 ALTER TABLE `integration_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `integration_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_movement_types`
--

DROP TABLE IF EXISTS `inventory_movement_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_movement_types` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_movement_types`
--

LOCK TABLES `inventory_movement_types` WRITE;
/*!40000 ALTER TABLE `inventory_movement_types` DISABLE KEYS */;
INSERT INTO `inventory_movement_types` VALUES (1,'Proveedor','2021-06-01 19:45:00','2021-06-01 19:45:00'),(2,'Devolución de cliente','2021-06-01 19:45:00','2021-06-01 19:45:00'),(3,'Otro','2021-06-01 19:45:00','2021-06-01 19:45:00');
/*!40000 ALTER TABLE `inventory_movement_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_tweaks`
--

DROP TABLE IF EXISTS `inventory_tweaks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_tweaks` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `inventory_movement_type_id` bigint(20) unsigned DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `sku_attribute` varchar(191) DEFAULT NULL,
  `value_attribute` varchar(191) DEFAULT NULL,
  `quantity` int(11) NOT NULL COMMENT 'Cantidad del movimiento',
  `description` varchar(191) NOT NULL COMMENT 'Comentario del movimiento',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `inventory_tweaks_user_id_foreign` (`user_id`),
  KEY `inventory_tweaks_product_id_foreign` (`product_id`),
  KEY `inventory_tweaks_inventory_movement_type_id_foreign` (`inventory_movement_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_tweaks`
--

LOCK TABLES `inventory_tweaks` WRITE;
/*!40000 ALTER TABLE `inventory_tweaks` DISABLE KEYS */;
/*!40000 ALTER TABLE `inventory_tweaks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `leal_coins`
--

DROP TABLE IF EXISTS `leal_coins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `leal_coins` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `all_coins` double NOT NULL,
  `locked` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Campo que nos permitirá bloquear o desbloquear las transacciones del usuario',
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leal_coins_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `leal_coins`
--

LOCK TABLES `leal_coins` WRITE;
/*!40000 ALTER TABLE `leal_coins` DISABLE KEYS */;
/*!40000 ALTER TABLE `leal_coins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `leal_coins_transactions_details`
--

DROP TABLE IF EXISTS `leal_coins_transactions_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `leal_coins_transactions_details` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `invoice` varchar(191) NOT NULL,
  `reference` varchar(191) NOT NULL,
  `coins` double NOT NULL,
  `sign` int(11) NOT NULL,
  `cancelled` tinyint(1) NOT NULL,
  `detail` varchar(191) NOT NULL,
  `leal_coins_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leal_coins_transactions_details_leal_coins_id_foreign` (`leal_coins_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `leal_coins_transactions_details`
--

LOCK TABLES `leal_coins_transactions_details` WRITE;
/*!40000 ALTER TABLE `leal_coins_transactions_details` DISABLE KEYS */;
/*!40000 ALTER TABLE `leal_coins_transactions_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `letters`
--

DROP TABLE IF EXISTS `letters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `letters` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=703 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `letters`
--

LOCK TABLES `letters` WRITE;
/*!40000 ALTER TABLE `letters` DISABLE KEYS */;
INSERT INTO `letters` VALUES (1,'A','2021-05-01 21:58:25','2021-05-01 21:58:25'),(2,'B','2021-05-01 21:58:25','2021-05-01 21:58:25'),(3,'C','2021-05-01 21:58:25','2021-05-01 21:58:25'),(4,'D','2021-05-01 21:58:25','2021-05-01 21:58:25'),(5,'E','2021-05-01 21:58:25','2021-05-01 21:58:25'),(6,'F','2021-05-01 21:58:25','2021-05-01 21:58:25'),(7,'G','2021-05-01 21:58:25','2021-05-01 21:58:25'),(8,'H','2021-05-01 21:58:25','2021-05-01 21:58:25'),(9,'I','2021-05-01 21:58:25','2021-05-01 21:58:25'),(10,'J','2021-05-01 21:58:25','2021-05-01 21:58:25'),(11,'K','2021-05-01 21:58:25','2021-05-01 21:58:25'),(12,'L','2021-05-01 21:58:25','2021-05-01 21:58:25'),(13,'M','2021-05-01 21:58:25','2021-05-01 21:58:25'),(14,'N','2021-05-01 21:58:25','2021-05-01 21:58:25'),(15,'O','2021-05-01 21:58:25','2021-05-01 21:58:25'),(16,'P','2021-05-01 21:58:25','2021-05-01 21:58:25'),(17,'Q','2021-05-01 21:58:25','2021-05-01 21:58:25'),(18,'R','2021-05-01 21:58:25','2021-05-01 21:58:25'),(19,'S','2021-05-01 21:58:25','2021-05-01 21:58:25'),(20,'T','2021-05-01 21:58:25','2021-05-01 21:58:25'),(21,'U','2021-05-01 21:58:25','2021-05-01 21:58:25'),(22,'V','2021-05-01 21:58:25','2021-05-01 21:58:25'),(23,'W','2021-05-01 21:58:25','2021-05-01 21:58:25'),(24,'X','2021-05-01 21:58:25','2021-05-01 21:58:25'),(25,'Y','2021-05-01 21:58:25','2021-05-01 21:58:25'),(26,'Z','2021-05-01 21:58:25','2021-05-01 21:58:25'),(27,'AA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(28,'AB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(29,'AC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(30,'AD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(31,'AE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(32,'AF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(33,'AG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(34,'AH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(35,'AI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(36,'AJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(37,'AK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(38,'AL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(39,'AM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(40,'AN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(41,'AO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(42,'AP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(43,'AQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(44,'AR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(45,'AS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(46,'AT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(47,'AU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(48,'AV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(49,'AW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(50,'AX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(51,'AY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(52,'AZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(53,'BA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(54,'BB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(55,'BC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(56,'BD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(57,'BE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(58,'BF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(59,'BG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(60,'BH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(61,'BI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(62,'BJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(63,'BK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(64,'BL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(65,'BM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(66,'BN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(67,'BO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(68,'BP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(69,'BQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(70,'BR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(71,'BS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(72,'BT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(73,'BU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(74,'BV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(75,'BW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(76,'BX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(77,'BY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(78,'BZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(79,'CA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(80,'CB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(81,'CC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(82,'CD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(83,'CE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(84,'CF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(85,'CG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(86,'CH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(87,'CI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(88,'CJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(89,'CK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(90,'CL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(91,'CM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(92,'CN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(93,'CO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(94,'CP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(95,'CQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(96,'CR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(97,'CS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(98,'CT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(99,'CU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(100,'CV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(101,'CW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(102,'CX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(103,'CY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(104,'CZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(105,'DA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(106,'DB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(107,'DC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(108,'DD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(109,'DE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(110,'DF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(111,'DG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(112,'DH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(113,'DI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(114,'DJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(115,'DK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(116,'DL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(117,'DM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(118,'DN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(119,'DO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(120,'DP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(121,'DQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(122,'DR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(123,'DS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(124,'DT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(125,'DU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(126,'DV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(127,'DW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(128,'DX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(129,'DY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(130,'DZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(131,'EA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(132,'EB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(133,'EC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(134,'ED','2021-05-01 21:58:25','2021-05-01 21:58:25'),(135,'EE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(136,'EF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(137,'EG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(138,'EH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(139,'EI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(140,'EJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(141,'EK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(142,'EL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(143,'EM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(144,'EN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(145,'EO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(146,'EP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(147,'EQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(148,'ER','2021-05-01 21:58:25','2021-05-01 21:58:25'),(149,'ES','2021-05-01 21:58:25','2021-05-01 21:58:25'),(150,'ET','2021-05-01 21:58:25','2021-05-01 21:58:25'),(151,'EU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(152,'EV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(153,'EW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(154,'EX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(155,'EY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(156,'EZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(157,'FA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(158,'FB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(159,'FC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(160,'FD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(161,'FE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(162,'FF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(163,'FG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(164,'FH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(165,'FI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(166,'FJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(167,'FK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(168,'FL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(169,'FM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(170,'FN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(171,'FO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(172,'FP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(173,'FQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(174,'FR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(175,'FS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(176,'FT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(177,'FU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(178,'FV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(179,'FW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(180,'FX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(181,'FY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(182,'FZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(183,'GA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(184,'GB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(185,'GC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(186,'GD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(187,'GE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(188,'GF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(189,'GG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(190,'GH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(191,'GI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(192,'GJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(193,'GK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(194,'GL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(195,'GM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(196,'GN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(197,'GO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(198,'GP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(199,'GQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(200,'GR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(201,'GS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(202,'GT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(203,'GU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(204,'GV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(205,'GW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(206,'GX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(207,'GY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(208,'GZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(209,'HA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(210,'HB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(211,'HC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(212,'HD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(213,'HE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(214,'HF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(215,'HG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(216,'HH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(217,'HI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(218,'HJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(219,'HK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(220,'HL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(221,'HM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(222,'HN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(223,'HO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(224,'HP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(225,'HQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(226,'HR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(227,'HS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(228,'HT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(229,'HU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(230,'HV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(231,'HW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(232,'HX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(233,'HY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(234,'HZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(235,'IA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(236,'IB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(237,'IC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(238,'ID','2021-05-01 21:58:25','2021-05-01 21:58:25'),(239,'IE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(240,'IF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(241,'IG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(242,'IH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(243,'II','2021-05-01 21:58:25','2021-05-01 21:58:25'),(244,'IJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(245,'IK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(246,'IL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(247,'IM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(248,'IN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(249,'IO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(250,'IP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(251,'IQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(252,'IR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(253,'IS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(254,'IT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(255,'IU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(256,'IV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(257,'IW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(258,'IX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(259,'IY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(260,'IZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(261,'JA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(262,'JB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(263,'JC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(264,'JD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(265,'JE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(266,'JF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(267,'JG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(268,'JH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(269,'JI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(270,'JJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(271,'JK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(272,'JL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(273,'JM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(274,'JN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(275,'JO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(276,'JP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(277,'JQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(278,'JR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(279,'JS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(280,'JT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(281,'JU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(282,'JV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(283,'JW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(284,'JX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(285,'JY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(286,'JZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(287,'KA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(288,'KB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(289,'KC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(290,'KD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(291,'KE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(292,'KF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(293,'KG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(294,'KH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(295,'KI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(296,'KJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(297,'KK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(298,'KL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(299,'KM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(300,'KN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(301,'KO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(302,'KP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(303,'KQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(304,'KR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(305,'KS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(306,'KT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(307,'KU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(308,'KV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(309,'KW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(310,'KX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(311,'KY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(312,'KZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(313,'LA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(314,'LB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(315,'LC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(316,'LD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(317,'LE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(318,'LF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(319,'LG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(320,'LH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(321,'LI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(322,'LJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(323,'LK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(324,'LL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(325,'LM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(326,'LN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(327,'LO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(328,'LP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(329,'LQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(330,'LR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(331,'LS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(332,'LT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(333,'LU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(334,'LV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(335,'LW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(336,'LX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(337,'LY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(338,'LZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(339,'MA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(340,'MB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(341,'MC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(342,'MD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(343,'ME','2021-05-01 21:58:25','2021-05-01 21:58:25'),(344,'MF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(345,'MG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(346,'MH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(347,'MI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(348,'MJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(349,'MK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(350,'ML','2021-05-01 21:58:25','2021-05-01 21:58:25'),(351,'MM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(352,'MN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(353,'MO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(354,'MP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(355,'MQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(356,'MR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(357,'MS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(358,'MT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(359,'MU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(360,'MV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(361,'MW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(362,'MX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(363,'MY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(364,'MZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(365,'NA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(366,'NB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(367,'NC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(368,'ND','2021-05-01 21:58:25','2021-05-01 21:58:25'),(369,'NE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(370,'NF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(371,'NG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(372,'NH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(373,'NI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(374,'NJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(375,'NK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(376,'NL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(377,'NM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(378,'NN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(379,'NO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(380,'NP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(381,'NQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(382,'NR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(383,'NS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(384,'NT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(385,'NU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(386,'NV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(387,'NW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(388,'NX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(389,'NY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(390,'NZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(391,'OA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(392,'OB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(393,'OC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(394,'OD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(395,'OE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(396,'OF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(397,'OG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(398,'OH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(399,'OI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(400,'OJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(401,'OK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(402,'OL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(403,'OM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(404,'ON','2021-05-01 21:58:25','2021-05-01 21:58:25'),(405,'OO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(406,'OP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(407,'OQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(408,'OR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(409,'OS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(410,'OT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(411,'OU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(412,'OV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(413,'OW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(414,'OX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(415,'OY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(416,'OZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(417,'PA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(418,'PB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(419,'PC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(420,'PD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(421,'PE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(422,'PF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(423,'PG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(424,'PH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(425,'PI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(426,'PJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(427,'PK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(428,'PL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(429,'PM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(430,'PN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(431,'PO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(432,'PP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(433,'PQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(434,'PR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(435,'PS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(436,'PT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(437,'PU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(438,'PV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(439,'PW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(440,'PX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(441,'PY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(442,'PZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(443,'QA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(444,'QB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(445,'QC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(446,'QD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(447,'QE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(448,'QF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(449,'QG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(450,'QH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(451,'QI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(452,'QJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(453,'QK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(454,'QL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(455,'QM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(456,'QN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(457,'QO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(458,'QP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(459,'QQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(460,'QR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(461,'QS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(462,'QT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(463,'QU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(464,'QV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(465,'QW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(466,'QX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(467,'QY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(468,'QZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(469,'RA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(470,'RB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(471,'RC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(472,'RD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(473,'RE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(474,'RF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(475,'RG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(476,'RH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(477,'RI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(478,'RJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(479,'RK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(480,'RL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(481,'RM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(482,'RN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(483,'RO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(484,'RP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(485,'RQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(486,'RR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(487,'RS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(488,'RT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(489,'RU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(490,'RV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(491,'RW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(492,'RX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(493,'RY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(494,'RZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(495,'SA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(496,'SB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(497,'SC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(498,'SD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(499,'SE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(500,'SF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(501,'SG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(502,'SH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(503,'SI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(504,'SJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(505,'SK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(506,'SL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(507,'SM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(508,'SN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(509,'SO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(510,'SP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(511,'SQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(512,'SR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(513,'SS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(514,'ST','2021-05-01 21:58:25','2021-05-01 21:58:25'),(515,'SU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(516,'SV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(517,'SW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(518,'SX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(519,'SY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(520,'SZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(521,'TA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(522,'TB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(523,'TC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(524,'TD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(525,'TE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(526,'TF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(527,'TG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(528,'TH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(529,'TI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(530,'TJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(531,'TK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(532,'TL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(533,'TM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(534,'TN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(535,'TO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(536,'TP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(537,'TQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(538,'TR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(539,'TS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(540,'TT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(541,'TU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(542,'TV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(543,'TW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(544,'TX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(545,'TY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(546,'TZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(547,'UA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(548,'UB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(549,'UC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(550,'UD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(551,'UE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(552,'UF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(553,'UG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(554,'UH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(555,'UI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(556,'UJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(557,'UK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(558,'UL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(559,'UM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(560,'UN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(561,'UO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(562,'UP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(563,'UQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(564,'UR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(565,'US','2021-05-01 21:58:25','2021-05-01 21:58:25'),(566,'UT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(567,'UU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(568,'UV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(569,'UW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(570,'UX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(571,'UY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(572,'UZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(573,'VA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(574,'VB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(575,'VC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(576,'VD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(577,'VE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(578,'VF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(579,'VG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(580,'VH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(581,'VI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(582,'VJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(583,'VK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(584,'VL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(585,'VM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(586,'VN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(587,'VO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(588,'VP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(589,'VQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(590,'VR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(591,'VS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(592,'VT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(593,'VU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(594,'VV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(595,'VW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(596,'VX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(597,'VY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(598,'VZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(599,'WA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(600,'WB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(601,'WC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(602,'WD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(603,'WE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(604,'WF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(605,'WG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(606,'WH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(607,'WI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(608,'WJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(609,'WK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(610,'WL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(611,'WM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(612,'WN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(613,'WO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(614,'WP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(615,'WQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(616,'WR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(617,'WS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(618,'WT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(619,'WU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(620,'WV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(621,'WW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(622,'WX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(623,'WY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(624,'WZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(625,'XA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(626,'XB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(627,'XC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(628,'XD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(629,'XE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(630,'XF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(631,'XG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(632,'XH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(633,'XI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(634,'XJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(635,'XK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(636,'XL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(637,'XM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(638,'XN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(639,'XO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(640,'XP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(641,'XQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(642,'XR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(643,'XS','2021-05-01 21:58:25','2021-05-01 21:58:25'),(644,'XT','2021-05-01 21:58:25','2021-05-01 21:58:25'),(645,'XU','2021-05-01 21:58:25','2021-05-01 21:58:25'),(646,'XV','2021-05-01 21:58:25','2021-05-01 21:58:25'),(647,'XW','2021-05-01 21:58:25','2021-05-01 21:58:25'),(648,'XX','2021-05-01 21:58:25','2021-05-01 21:58:25'),(649,'XY','2021-05-01 21:58:25','2021-05-01 21:58:25'),(650,'XZ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(651,'YA','2021-05-01 21:58:25','2021-05-01 21:58:25'),(652,'YB','2021-05-01 21:58:25','2021-05-01 21:58:25'),(653,'YC','2021-05-01 21:58:25','2021-05-01 21:58:25'),(654,'YD','2021-05-01 21:58:25','2021-05-01 21:58:25'),(655,'YE','2021-05-01 21:58:25','2021-05-01 21:58:25'),(656,'YF','2021-05-01 21:58:25','2021-05-01 21:58:25'),(657,'YG','2021-05-01 21:58:25','2021-05-01 21:58:25'),(658,'YH','2021-05-01 21:58:25','2021-05-01 21:58:25'),(659,'YI','2021-05-01 21:58:25','2021-05-01 21:58:25'),(660,'YJ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(661,'YK','2021-05-01 21:58:25','2021-05-01 21:58:25'),(662,'YL','2021-05-01 21:58:25','2021-05-01 21:58:25'),(663,'YM','2021-05-01 21:58:25','2021-05-01 21:58:25'),(664,'YN','2021-05-01 21:58:25','2021-05-01 21:58:25'),(665,'YO','2021-05-01 21:58:25','2021-05-01 21:58:25'),(666,'YP','2021-05-01 21:58:25','2021-05-01 21:58:25'),(667,'YQ','2021-05-01 21:58:25','2021-05-01 21:58:25'),(668,'YR','2021-05-01 21:58:25','2021-05-01 21:58:25'),(669,'YS','2021-05-01 21:58:26','2021-05-01 21:58:26'),(670,'YT','2021-05-01 21:58:26','2021-05-01 21:58:26'),(671,'YU','2021-05-01 21:58:26','2021-05-01 21:58:26'),(672,'YV','2021-05-01 21:58:26','2021-05-01 21:58:26'),(673,'YW','2021-05-01 21:58:26','2021-05-01 21:58:26'),(674,'YX','2021-05-01 21:58:26','2021-05-01 21:58:26'),(675,'YY','2021-05-01 21:58:26','2021-05-01 21:58:26'),(676,'YZ','2021-05-01 21:58:26','2021-05-01 21:58:26'),(677,'ZA','2021-05-01 21:58:26','2021-05-01 21:58:26'),(678,'ZB','2021-05-01 21:58:26','2021-05-01 21:58:26'),(679,'ZC','2021-05-01 21:58:26','2021-05-01 21:58:26'),(680,'ZD','2021-05-01 21:58:26','2021-05-01 21:58:26'),(681,'ZE','2021-05-01 21:58:26','2021-05-01 21:58:26'),(682,'ZF','2021-05-01 21:58:26','2021-05-01 21:58:26'),(683,'ZG','2021-05-01 21:58:26','2021-05-01 21:58:26'),(684,'ZH','2021-05-01 21:58:26','2021-05-01 21:58:26'),(685,'ZI','2021-05-01 21:58:26','2021-05-01 21:58:26'),(686,'ZJ','2021-05-01 21:58:26','2021-05-01 21:58:26'),(687,'ZK','2021-05-01 21:58:26','2021-05-01 21:58:26'),(688,'ZL','2021-05-01 21:58:26','2021-05-01 21:58:26'),(689,'ZM','2021-05-01 21:58:26','2021-05-01 21:58:26'),(690,'ZN','2021-05-01 21:58:26','2021-05-01 21:58:26'),(691,'ZO','2021-05-01 21:58:26','2021-05-01 21:58:26'),(692,'ZP','2021-05-01 21:58:26','2021-05-01 21:58:26'),(693,'ZQ','2021-05-01 21:58:26','2021-05-01 21:58:26'),(694,'ZR','2021-05-01 21:58:26','2021-05-01 21:58:26'),(695,'ZS','2021-05-01 21:58:26','2021-05-01 21:58:26'),(696,'ZT','2021-05-01 21:58:26','2021-05-01 21:58:26'),(697,'ZU','2021-05-01 21:58:26','2021-05-01 21:58:26'),(698,'ZV','2021-05-01 21:58:26','2021-05-01 21:58:26'),(699,'ZW','2021-05-01 21:58:26','2021-05-01 21:58:26'),(700,'ZX','2021-05-01 21:58:26','2021-05-01 21:58:26'),(701,'ZY','2021-05-01 21:58:26','2021-05-01 21:58:26'),(702,'ZZ','2021-05-01 21:58:26','2021-05-01 21:58:26');
/*!40000 ALTER TABLE `letters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `line_businesses`
--

DROP TABLE IF EXISTS `line_businesses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `line_businesses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `line_businesses`
--

LOCK TABLES `line_businesses` WRITE;
/*!40000 ALTER TABLE `line_businesses` DISABLE KEYS */;
/*!40000 ALTER TABLE `line_businesses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `live_score_caches`
--

DROP TABLE IF EXISTS `live_score_caches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `live_score_caches` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_id` varchar(191) NOT NULL,
  `json_events` text NOT NULL,
  `status` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `live_score_caches`
--

LOCK TABLES `live_score_caches` WRITE;
/*!40000 ALTER TABLE `live_score_caches` DISABLE KEYS */;
INSERT INTO `live_score_caches` VALUES (33,'408077','{\"success\":true,\"data\":{\"match\":{\"id\":\"408077\",\"home_name\":\"Millonarios\",\"away_name\":\"Deportivo Pasto\",\"score\":\"2 - 0\",\"ht_score\":\"0 - 0\",\"ft_score\":\"2 - 0\",\"et_score\":\"\",\"ps_score\":\"\",\"time\":\"FT\",\"league_id\":\"0\",\"status\":\"FINISHED\",\"added\":\"2023-03-23 00:45:05\",\"last_changed\":\"2023-03-23 02:58:04\",\"home_id\":\"755\",\"away_id\":\"757\",\"competition_id\":\"51\",\"location\":\"Estadio Nemesio Camacho El Campín\",\"fixture_id\":\"1592035\",\"scheduled\":\"01:00\",\"home\":{\"id\":\"755\",\"name\":\"Millonarios\",\"stadium\":\"Estadio Nemesio Camacho El Campín\",\"location\":\"Estadio Nemesio Camacho El Campín\"},\"away\":{\"id\":\"757\",\"name\":\"Deportivo Pasto\",\"stadium\":\"Estadio Departamental Libertad\",\"location\":\"Estadio Departamental Libertad\"},\"competition\":{\"id\":\"51\",\"name\":\"Primera A\",\"is_league\":\"1\",\"is_cup\":\"0\",\"tier\":\"1\",\"has_groups\":\"1\",\"active\":\"1\",\"national_teams_only\":\"0\"}},\"event\":[{\"id\":\"61933221\",\"match_id\":\"408077\",\"player\":\"Edwar López\",\"time\":\"29\",\"event\":\"YELLOW_CARD\",\"sort\":\"0\",\"home_away\":\"a\",\"info\":\"\"},{\"id\":\"61933222\",\"match_id\":\"408077\",\"player\":\"Johan Caicedo Caicedo\",\"time\":\"44\",\"event\":\"YELLOW_CARD\",\"sort\":\"1\",\"home_away\":\"a\",\"info\":\"\"},{\"id\":\"61933223\",\"match_id\":\"408077\",\"player\":\"Luis Andrés Paredes Busatamante\",\"time\":\"46\",\"event\":\"SUBSTITUTION\",\"sort\":\"2\",\"home_away\":\"h\",\"info\":\"Jarrinson Yuber Quiñones Guerrero\"}]}}','FINISHED','2023-03-22 23:02:03','2023-03-23 00:59:03'),(34,'409506','{\"success\":true,\"data\":{\"match\":{\"id\":\"409506\",\"home_name\":\"Envigado\",\"away_name\":\"Tigres FC\",\"score\":\"0 - 0\",\"ht_score\":\"0 - 0\",\"ft_score\":\"0 - 0\",\"et_score\":\"\",\"ps_score\":\"\",\"time\":\"FT\",\"league_id\":\"0\",\"status\":\"FINISHED\",\"added\":\"2023-03-29 19:45:05\",\"last_changed\":\"2023-03-29 23:01:06\",\"home_id\":\"1641\",\"away_id\":\"4057\",\"competition_id\":\"116\",\"location\":\"Estadio Polideportivo Sur\",\"fixture_id\":\"1592858\",\"scheduled\":\"20:00\",\"home\":{\"id\":\"1641\",\"name\":\"Envigado\",\"stadium\":\"Estadio Polideportivo Sur\",\"location\":\"Estadio Polideportivo Sur\"},\"away\":{\"id\":\"4057\",\"name\":\"Tigres FC\",\"stadium\":\"Estadio Metropolitano de Techo\",\"location\":\"Estadio Metropolitano de Techo\"},\"competition\":{\"id\":\"116\",\"name\":\"Copa Colombia\",\"is_league\":\"0\",\"is_cup\":\"1\",\"tier\":\"0\",\"has_groups\":\"0\",\"active\":\"1\",\"national_teams_only\":\"0\"}},\"event\":[{\"id\":\"62095401\",\"match_id\":\"409506\",\"player\":\"Daniel Alexander Zapata Ruiz\",\"time\":\"25\",\"event\":\"YELLOW_CARD\",\"sort\":\"0\",\"home_away\":\"h\",\"info\":\"\"},{\"id\":\"62095402\",\"match_id\":\"409506\",\"player\":\"Yilmar Zamir Celedón Salas\",\"time\":\"46\",\"event\":\"SUBSTITUTION\",\"sort\":\"1\",\"home_away\":\"h\",\"info\":\"S. Londoño\"},{\"id\":\"62095403\",\"match_id\":\"409506\",\"player\":\"Jefferson David Laiton Lesmes\",\"time\":\"57\",\"event\":\"YELLOW_CARD\",\"sort\":\"2\",\"home_away\":\"a\",\"info\":\"\"},{\"id\":\"62095404\",\"match_id\":\"409506\",\"player\":\"Diego Betancourth\",\"time\":\"63\",\"event\":\"SUBSTITUTION\",\"sort\":\"3\",\"home_away\":\"h\",\"info\":\"Camilo Andrés Paternina Molina\"},{\"id\":\"62095405\",\"match_id\":\"409506\",\"player\":\"Daniel Steven Ramírez Peña\",\"time\":\"65\",\"event\":\"SUBSTITUTION\",\"sort\":\"4\",\"home_away\":\"a\",\"info\":\"Jefferson David Laiton Lesmes\"},{\"id\":\"62095406\",\"match_id\":\"409506\",\"player\":\"C. Andrade\",\"time\":\"68\",\"event\":\"YELLOW_CARD\",\"sort\":\"5\",\"home_away\":\"h\",\"info\":\"\"},{\"id\":\"62095407\",\"match_id\":\"409506\",\"player\":\"S. Hurtado\",\"time\":\"69\",\"event\":\"YELLOW_CARD\",\"sort\":\"6\",\"home_away\":\"a\",\"info\":\"\"},{\"id\":\"62095408\",\"match_id\":\"409506\",\"player\":\"M. Álvarez\",\"time\":\"70\",\"event\":\"SUBSTITUTION\",\"sort\":\"7\",\"home_away\":\"a\",\"info\":\"S. Hurtado\"},{\"id\":\"62095409\",\"match_id\":\"409506\",\"player\":\"Yilson Mosquera\",\"time\":\"72\",\"event\":\"SUBSTITUTION\",\"sort\":\"8\",\"home_away\":\"h\",\"info\":\"C. Andrade\"},{\"id\":\"62095410\",\"match_id\":\"409506\",\"player\":\"Daniel Felipe Arcila Rojas\",\"time\":\"72\",\"event\":\"SUBSTITUTION\",\"sort\":\"9\",\"home_away\":\"h\",\"info\":\"William Camilo Hurtado Ortiz\"},{\"id\":\"62095411\",\"match_id\":\"409506\",\"player\":\"P. Álvarez\",\"time\":\"79\",\"event\":\"SUBSTITUTION\",\"sort\":\"10\",\"home_away\":\"h\",\"info\":\"Jesús Vargas\"},{\"id\":\"62095412\",\"match_id\":\"409506\",\"player\":\"Martín Payares\",\"time\":\"83\",\"event\":\"SUBSTITUTION\",\"sort\":\"11\",\"home_away\":\"a\",\"info\":\"Christian Mateo Chaves Castañeda\"},{\"id\":\"62095413\",\"match_id\":\"409506\",\"player\":\"César Steven Salguero Zapata\",\"time\":\"83\",\"event\":\"SUBSTITUTION\",\"sort\":\"12\",\"home_away\":\"a\",\"info\":\"Luis Miguel López González\"},{\"id\":\"62095414\",\"match_id\":\"409506\",\"player\":\"Geovan Montes\",\"time\":\"89\",\"event\":\"YELLOW_CARD\",\"sort\":\"13\",\"home_away\":\"a\",\"info\":\"\"},{\"id\":\"62095415\",\"match_id\":\"409506\",\"player\":\"Juan Zapata\",\"time\":\"90\",\"event\":\"YELLOW_CARD\",\"sort\":\"14\",\"home_away\":\"h\",\"info\":\"\"},{\"id\":\"62095416\",\"match_id\":\"409506\",\"player\":\"Geovan Montes\",\"time\":\"90\",\"event\":\"YELLOW_RED_CARD\",\"sort\":\"15\",\"home_away\":\"a\",\"info\":\"\"},{\"id\":\"62095417\",\"match_id\":\"409506\",\"player\":\"M. Álvarez\",\"time\":\"90\",\"event\":\"YELLOW_CARD\",\"sort\":\"16\",\"home_away\":\"a\",\"info\":\"\"},{\"id\":\"62095418\",\"match_id\":\"409506\",\"player\":\"P. Álvarez\",\"time\":\"90\",\"event\":\"YELLOW_CARD\",\"sort\":\"17\",\"home_away\":\"h\",\"info\":\"\"}]}}','FINISHED','2023-03-29 20:01:03','2023-03-29 21:02:03'),(35,'410698','{\"success\":true,\"data\":{\"match\":{\"id\":\"410698\",\"home_name\":\"Envigado\",\"away_name\":\"CD Once Caldas\",\"score\":\"0 - 0\",\"ht_score\":\"0 - 0\",\"ft_score\":\"0 - 0\",\"et_score\":\"\",\"ps_score\":\"\",\"time\":\"FT\",\"league_id\":\"0\",\"status\":\"FINISHED\",\"added\":\"2023-04-01 18:45:29\",\"last_changed\":\"2023-04-01 21:02:18\",\"home_id\":\"1641\",\"away_id\":\"2401\",\"competition_id\":\"51\",\"location\":\"Estadio Polideportivo Sur\",\"fixture_id\":\"1593383\",\"scheduled\":\"19:00\",\"home\":{\"id\":\"1641\",\"name\":\"Envigado\",\"stadium\":\"Estadio Polideportivo Sur\",\"location\":\"Estadio Polideportivo Sur\"},\"away\":{\"id\":\"2401\",\"name\":\"CD Once Caldas\",\"stadium\":\"Estadio Palogrande\",\"location\":\"Estadio Palogrande\"},\"competition\":{\"id\":\"51\",\"name\":\"Primera A\",\"is_league\":\"1\",\"is_cup\":\"0\",\"tier\":\"1\",\"has_groups\":\"1\",\"active\":\"1\",\"national_teams_only\":\"0\"}},\"event\":[{\"id\":\"62162377\",\"match_id\":\"410698\",\"player\":\"TORIJANO CANO FAINER\",\"time\":\"9\",\"event\":\"YELLOW_RED_CARD\",\"sort\":\"0\",\"home_away\":\"a\",\"info\":\"\"}]}}','FINISHED','2023-04-01 17:04:03','2023-04-01 19:03:03'),(36,'413176','{\"success\":true,\"data\":{\"match\":{\"id\":\"413176\",\"home_name\":\"CD Jaguares\",\"away_name\":\"Envigado\",\"score\":\"2 - 0\",\"ht_score\":\"0 - 0\",\"ft_score\":\"2 - 0\",\"et_score\":\"\",\"ps_score\":\"\",\"time\":\"FT\",\"league_id\":\"0\",\"status\":\"FINISHED\",\"added\":\"2023-04-08 20:46:14\",\"last_changed\":\"2023-04-08 23:19:08\",\"home_id\":\"1549\",\"away_id\":\"1641\",\"competition_id\":\"51\",\"location\":\"Estadio de Fútbol Jaraguay de Montería\",\"fixture_id\":\"1597195\",\"scheduled\":\"21:01\",\"home\":{\"id\":\"1549\",\"name\":\"CD Jaguares\",\"stadium\":\"Estadio de Fútbol Jaraguay de Montería\",\"location\":\"Estadio de Fútbol Jaraguay de Montería\"},\"away\":{\"id\":\"1641\",\"name\":\"Envigado\",\"stadium\":\"Estadio Polideportivo Sur\",\"location\":\"Estadio Polideportivo Sur\"},\"competition\":{\"id\":\"51\",\"name\":\"Primera A\",\"is_league\":\"1\",\"is_cup\":\"0\",\"tier\":\"1\",\"has_groups\":\"1\",\"active\":\"1\",\"national_teams_only\":\"0\"}},\"event\":[]}}','FINISHED','2023-04-08 20:12:03','2023-04-08 22:20:02'),(37,'414868','{\"success\":true,\"data\":{\"match\":{\"id\":\"414868\",\"home_name\":\"Envigado\",\"away_name\":\"Tolima\",\"score\":\"2 - 1\",\"ht_score\":\"1 - 1\",\"ft_score\":\"2 - 1\",\"et_score\":\"\",\"ps_score\":\"\",\"time\":\"FT\",\"league_id\":\"0\",\"status\":\"FINISHED\",\"added\":\"2023-04-13 19:48:07\",\"last_changed\":\"2023-04-13 22:34:04\",\"home_id\":\"1641\",\"away_id\":\"948\",\"competition_id\":\"51\",\"location\":\"Estadio Polideportivo Sur\",\"fixture_id\":\"1597213\",\"scheduled\":\"20:30\",\"home\":{\"id\":\"1641\",\"name\":\"Envigado\",\"stadium\":\"Estadio Polideportivo Sur\",\"location\":\"Estadio Polideportivo Sur\"},\"away\":{\"id\":\"948\",\"name\":\"Tolima\",\"stadium\":\"Estadio Manuel Murillo Toro\",\"location\":\"Estadio Manuel Murillo Toro\"},\"competition\":{\"id\":\"51\",\"name\":\"Primera A\",\"is_league\":\"1\",\"is_cup\":\"0\",\"tier\":\"1\",\"has_groups\":\"1\",\"active\":\"1\",\"national_teams_only\":\"0\"}},\"event\":[]}}','FINISHED','2023-04-13 19:32:03','2023-04-13 21:35:04'),(38,'420005','{\"success\":true,\"data\":{\"match\":{\"id\":\"420005\",\"home_name\":\"Envigado\",\"away_name\":\"Atlético Nacional\",\"score\":\"0 - 0\",\"ht_score\":\"\",\"ft_score\":\"0 - 0\",\"et_score\":\"\",\"ps_score\":\"\",\"time\":\"FT\",\"league_id\":\"0\",\"status\":\"FINISHED\",\"added\":\"2023-04-24 06:26:52\",\"last_changed\":\"2023-04-24 07:26:38\",\"home_id\":\"1641\",\"away_id\":\"2427\",\"competition_id\":\"51\",\"location\":\"Estadio Polideportivo Sur\",\"fixture_id\":\"0\",\"scheduled\":\"21:00\",\"home\":{\"id\":\"1641\",\"name\":\"Envigado\",\"stadium\":\"Estadio Polideportivo Sur\",\"location\":\"Estadio Polideportivo Sur\"},\"away\":{\"id\":\"2427\",\"name\":\"Atlético Nacional\",\"stadium\":\"Estadio Atanasio Girardot\",\"location\":\"Estadio Atanasio Girardot\"},\"competition\":{\"id\":\"51\",\"name\":\"Primera A\",\"is_league\":\"1\",\"is_cup\":\"0\",\"tier\":\"1\",\"has_groups\":\"1\",\"active\":\"1\",\"national_teams_only\":\"0\"}},\"event\":[]}}','FINISHED','2023-04-24 06:27:03','2023-04-24 06:27:03');
/*!40000 ALTER TABLE `live_score_caches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `logs`
--

DROP TABLE IF EXISTS `logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `logs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `description_operation` varchar(191) NOT NULL COMMENT 'describir la operacion que se realiza brevemente',
  `data_operation` text NOT NULL COMMENT 'colocar datos en formatos json de la operacion, para el CUD',
  `task` enum('Create','Retrievement','Update','Delete') NOT NULL COMMENT 'solo operaciones CRUD',
  `module_id` int(10) unsigned NOT NULL COMMENT 'modulo al que pertenece la operacion',
  `user_id` int(10) unsigned NOT NULL COMMENT 'usuario que realiza la operacion',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `logs_module_id_foreign` (`module_id`),
  KEY `logs_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `logs`
--

LOCK TABLES `logs` WRITE;
/*!40000 ALTER TABLE `logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mailboxes`
--

DROP TABLE IF EXISTS `mailboxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mailboxes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `message` text NOT NULL,
  `read_message` tinyint(1) NOT NULL DEFAULT 0,
  `user_id` int(10) unsigned NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `mailboxes_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mailboxes`
--

LOCK TABLES `mailboxes` WRITE;
/*!40000 ALTER TABLE `mailboxes` DISABLE KEYS */;
/*!40000 ALTER TABLE `mailboxes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `main_datasources`
--

DROP TABLE IF EXISTS `main_datasources`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `main_datasources` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `main_datasources`
--

LOCK TABLES `main_datasources` WRITE;
/*!40000 ALTER TABLE `main_datasources` DISABLE KEYS */;
/*!40000 ALTER TABLE `main_datasources` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `manual_datasources`
--

DROP TABLE IF EXISTS `manual_datasources`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `manual_datasources` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `value` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `main_datasource_id` bigint(20) unsigned NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `manual_datasources_main_datasource_id_foreign` (`main_datasource_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `manual_datasources`
--

LOCK TABLES `manual_datasources` WRITE;
/*!40000 ALTER TABLE `manual_datasources` DISABLE KEYS */;
/*!40000 ALTER TABLE `manual_datasources` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `match_event_stages`
--

DROP TABLE IF EXISTS `match_event_stages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `match_event_stages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `stage_type_id` bigint(20) unsigned NOT NULL,
  `match_event_id` bigint(20) unsigned NOT NULL,
  `seat_id` bigint(20) unsigned DEFAULT NULL,
  `zone_id` bigint(20) unsigned DEFAULT NULL,
  `total_capacity` double DEFAULT NULL,
  `salable_capacity` double DEFAULT NULL COMMENT 'Aforo vendible',
  `special_text` varchar(50) DEFAULT NULL COMMENT 'Campo para almacenar la etiqueta que se fijara en la generación de boletas de una tribuna/zona especifica',
  `active` tinyint(1) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `match_event_stages_stage_type_id_foreign` (`stage_type_id`),
  KEY `match_event_stages_match_event_id_foreign` (`match_event_id`),
  KEY `match_event_stages_seat_id_foreign` (`seat_id`),
  KEY `match_event_stages_zone_id_foreign` (`zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `match_event_stages`
--

LOCK TABLES `match_event_stages` WRITE;
/*!40000 ALTER TABLE `match_event_stages` DISABLE KEYS */;
/*!40000 ALTER TABLE `match_event_stages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `match_event_tags`
--

DROP TABLE IF EXISTS `match_event_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `match_event_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `match_event_id` bigint(20) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `match_event_tags_match_event_id_foreign` (`match_event_id`),
  KEY `match_event_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `match_event_tags`
--

LOCK TABLES `match_event_tags` WRITE;
/*!40000 ALTER TABLE `match_event_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `match_event_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `match_event_zone_prices`
--

DROP TABLE IF EXISTS `match_event_zone_prices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `match_event_zone_prices` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `match_event_id` bigint(20) unsigned NOT NULL,
  `price` double NOT NULL DEFAULT 0,
  `price_suscription` double NOT NULL DEFAULT 0 COMMENT 'Precio para el abono en la fecha actual del evento, si esta en 0 no se vende el abono',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `match_event_zone_prices_zone_id_foreign` (`zone_id`),
  KEY `match_event_zone_prices_match_event_id_foreign` (`match_event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `match_event_zone_prices`
--

LOCK TABLES `match_event_zone_prices` WRITE;
/*!40000 ALTER TABLE `match_event_zone_prices` DISABLE KEYS */;
/*!40000 ALTER TABLE `match_event_zone_prices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `match_events`
--

DROP TABLE IF EXISTS `match_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `match_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `code` varchar(500) NOT NULL,
  `date_name` varchar(500) NOT NULL,
  `event_start_sale` datetime NOT NULL,
  `event_end_sale` datetime NOT NULL,
  `event_start` datetime NOT NULL,
  `season_id` bigint(20) unsigned DEFAULT NULL,
  `team_id` bigint(20) unsigned NOT NULL,
  `stadium_to_play` varchar(50) DEFAULT NULL COMMENT 'Indica el nombre del estadio a jugar, si el equipo tiene mas de un estadio donde juega',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `match_events_team_id_foreign` (`team_id`),
  KEY `match_events_season_id_foreign` (`season_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `match_events`
--

LOCK TABLES `match_events` WRITE;
/*!40000 ALTER TABLE `match_events` DISABLE KEYS */;
INSERT INTO `match_events` VALUES (1,'ABONO 2023-I','caa03a59-d20e-46bf-bfb7-1be3c6a5e7cf','Fecha 2','2023-01-18 08:00:00','2023-05-12 15:00:00','2023-05-28 15:10:00',1,17,NULL,0,'2022-09-02 14:04:06','2023-06-14 19:49:18'),(2,'Envigado vs Itagüí Leones','d3359bba-890a-4736-b8d3-6c0c0e568dbc','Test','2023-05-11 16:00:00','2023-05-15 16:00:00','2023-05-15 16:00:00',1,10,'Estadio Envigado',0,'2023-05-11 14:43:28','2023-05-11 14:43:28'),(3,'ABONOS 2023 - II','fc898a66-6e7b-4f82-90e4-0b0fb53da834','ABONOS 2023 - II','2023-06-15 14:30:00','2023-08-09 18:01:00','2023-08-01 18:01:00',2,18,NULL,1,'2023-06-06 21:59:51','2023-08-03 05:29:13');
/*!40000 ALTER TABLE `match_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `messages`
--

DROP TABLE IF EXISTS `messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `messages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `message` varchar(500) DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `read_user` tinyint(1) NOT NULL DEFAULT 0,
  `read_admin` tinyint(1) NOT NULL DEFAULT 0,
  `admin_id` int(10) unsigned DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `messages_user_id_foreign` (`user_id`),
  KEY `messages_admin_id_foreign` (`admin_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `messages`
--

LOCK TABLES `messages` WRITE;
/*!40000 ALTER TABLE `messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `migrations`
--

DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migrations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(191) NOT NULL,
  `batch` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=380 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `migrations`
--

LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (1,'2014_10_11_102013_create_sizing_units_table',1),(2,'2014_10_12_000001_create_rols_table',1),(3,'2014_10_12_000002_create_users_table',1),(4,'2014_10_12_000003_create_target_notifications_table',1),(5,'2014_10_12_000004_create_corporate_identities_table',1),(6,'2014_10_12_000005_create_modules_table',1),(7,'2014_10_12_000006_create_module_items_table',1),(8,'2014_10_12_000007_create_module_rols_table',1),(9,'2014_10_12_000008_create_countries_table',1),(10,'2014_10_12_000009_create_states_table',1),(11,'2014_10_12_000010_create_cities_table',1),(12,'2014_10_12_000011_create_categories_table',1),(13,'2014_10_12_000012_create_subcategories_table',1),(14,'2014_10_12_000013_create_banners_table',1),(15,'2014_10_12_000014_create_sales_channels_table',1),(16,'2014_10_12_000015_create_line_businesses_table',1),(17,'2014_10_12_000016_create_coverages_table',1),(18,'2014_10_12_000018_create_order_states_table',1),(19,'2014_10_12_000019_create_payment_types_table',1),(20,'2014_10_12_000020_create_brands_table',1),(21,'2014_10_12_000021_create_order_types_table',1),(22,'2014_10_12_000023_create_terms_table',1),(23,'2014_10_12_000024_create_term_clients_table',1),(24,'2014_10_12_000025_create_segmentations_table',1),(25,'2014_10_12_000026_create_discount_types_table',1),(26,'2014_10_12_000027_create_discounts_table',1),(27,'2014_10_12_000028_create_mailboxes_table',1),(28,'2014_10_12_000030_create_addresses_table',1),(29,'2014_10_12_000031_create_logs_table',1),(30,'2014_10_12_000032_create_notifications_table',1),(31,'2014_10_12_000033_create_start_positions_table',1),(32,'2014_10_12_000034_create_products_table',1),(33,'2014_10_12_000035_create_subcategory_products_table',1),(34,'2014_10_12_000036_create_sucursals_table',1),(35,'2014_10_12_000037_create_average_times_table',1),(36,'2014_10_12_000038_create_average_months_table',1),(37,'2014_10_12_000039_create_orders_table',1),(38,'2014_10_12_000040_create_transfers_table',1),(39,'2014_10_12_000042_create_order_products_table',1),(40,'2014_10_12_000043_create_discount_products_table',1),(41,'2014_10_12_000044_create_discount_product_users_table',1),(42,'2014_10_12_000045_create_discount_order_users_table',1),(43,'2014_10_12_000046_create_password_resets_table',1),(44,'2014_10_12_000047_create_comments_table',1),(45,'2014_10_12_000048_create_courier_companies_table',1),(46,'2014_10_12_000049_create_user_informations_table',1),(47,'2014_10_12_000050_create_parameters_table',1),(48,'2014_11_14_150106_create_order_frozens_table',1),(49,'2014_11_14_150107_create_gateway_payments_table',1),(50,'2014_11_14_150108_create_external_providers_table',1),(51,'2014_11_14_150109_create_chats_table',1),(52,'2014_11_14_150110_create_messages_table',1),(53,'2014_11_14_150111_create_chat_messages_table',1),(54,'2014_11_14_150112_create_evidence_table',1),(55,'2014_11_14_150113_create_changelogs_table',1),(56,'2014_11_14_150114_create_planning_routes_table',1),(57,'2014_11_14_150115_create_scrap_results_table',1),(58,'2014_11_14_150116_create_coverage_pendings_table',1),(59,'2014_11_14_150117_create_token_credit_cards_table',1),(60,'2014_11_14_150118_create_payments_histories_table',1),(61,'2014_11_14_150119_add_sucursal_products',1),(62,'2014_11_14_150120_add_fields_discount_category',1),(63,'2014_11_14_150121_add_fields_to_parameters',1),(64,'2014_11_14_150122_add_discount_id_to_discount_product_users',1),(65,'2014_11_14_150123_add_image_to_sucursals',1),(66,'2014_11_14_150124_create_attribute_types_table',1),(67,'2014_11_14_150125_create_attributes_table',1),(68,'2014_11_14_150126_create_product_attributes_table',1),(69,'2014_11_14_150127_remove_column_to_products',1),(70,'2014_11_14_150128_create_product_images_table',1),(71,'2014_11_14_150129_create_order_product_attributes_table',1),(72,'2014_11_14_150130_add_paid_to_order_products_table',1),(73,'2014_11_14_150131_add_paid_to_parameters_table',1),(74,'2014_11_14_150132_add_paid_to_coverages_table',1),(75,'2014_11_14_150133_add_paid_to_addresses_table',1),(76,'2016_06_01_000001_create_oauth_auth_codes_table',1),(77,'2016_06_01_000002_create_oauth_access_tokens_table',1),(78,'2016_06_01_000003_create_oauth_refresh_tokens_table',1),(79,'2016_06_01_000004_create_oauth_clients_table',1),(80,'2016_06_01_000005_create_oauth_personal_access_clients_table',1),(81,'2019_10_30_155545_create_main_datasources_table',1),(82,'2019_10_30_156506_create_manual_datasources_table',1),(83,'2019_10_31_160417_create_field_datasources_table',1),(84,'2019_10_31_160727_create_field_values_table',1),(85,'2019_10_31_161358_create_field_inputs_table',1),(86,'2019_10_31_163230_create_forms_table',1),(87,'2019_10_31_164034_create_fields_table',1),(88,'2019_10_31_165441_create_form_fields_table',1),(89,'2020_04_30_184522_create_header_values_table',1),(90,'2020_04_30_185215_create_header_value_details_table',1),(91,'2020_10_27_095618_create_video_youtubes_table',1),(92,'2020_10_27_095722_create_video_tiktoks_table',1),(93,'2020_10_27_100454_create_radio_embeds_table',1),(94,'2020_10_27_100716_create_bookcase_embeds_table',1),(95,'2020_10_27_133429_create_popup_embeds_table',1),(96,'2020_11_03_094534_create_integration_providers_table',1),(97,'2020_11_10_093255_create_tournaments_table',1),(98,'2020_11_11_110120_create_teams_table',1),(99,'2020_11_11_112943_create_match_events_table',1),(100,'2020_11_11_163549_create_ticket_types_table',1),(101,'2020_11_11_172341_create_ticket_statuses_table',1),(102,'2020_11_13_094511_create_doors_table',1),(103,'2020_11_13_094512_create_zones_table',1),(104,'2020_11_16_172531_create_letters_table',1),(105,'2020_11_17_075041_create_seats_table',1),(106,'2020_11_17_081245_create_match_event_zone_prices_table',1),(107,'2020_11_17_082711_create_ticket_user_blocks_table',1),(108,'2020_11_17_110255_create_tickets_table',1),(109,'2020_11_17_145051_create_integration_tickets_table',1),(110,'2020_11_17_150131_add_paid_to_parameters_stadium_table',1),(111,'2020_11_25_175906_create_ticket_logs_table',1),(112,'2020_12_19_104612_create_point_sales_table',1),(113,'2020_12_19_152509_add_point_sale_to_order_table',1),(114,'2020_12_22_144637_add_field_to_product_attributes_table',1),(115,'2021_01_05_095014_create_symbolic_tickets_table',1),(116,'2021_01_05_095234_create_symbolic_ticket_prices_table',1),(117,'2021_01_05_095244_create_symbolic_ticket_users_table',1),(118,'2021_01_15_150133_add_paid_to_notifications_table',1),(119,'2021_02_03_151412_create_photo_instagrams_table',1),(120,'2021_02_10_105325_add_field_to_parameters_table',1),(121,'2021_02_18_145333_create_ticket_mains_table',1),(122,'2021_02_18_151453_remove_field_to_tickets_table',1),(123,'2021_02_23_151453_add_field_to_ticket_user_blocks_table',1),(124,'2021_03_02_162036_create_wallet_points_table',1),(125,'2021_03_02_212519_create_coupons_table',1),(126,'2021_03_04_151876_add_fields_to_ticket_user_blocks_table',1),(127,'2021_03_17_172402_create_token_user_tickets_table',1),(128,'2021_03_23_230321_add_product_attributes_table',1),(129,'2021_03_26_260321_add_field_orders_table',1),(130,'2021_03_29_150131_add_paid_to_parameters_inventory_table',1),(131,'2021_03_29_153628_create_inventory_tweaks_table',1),(132,'2021_03_29_290321_add_field_product_table',1),(133,'2021_04_05_170457_create_type_actions_table',1),(134,'2021_04_05_170458_add_field_to_popup_embeds_table',1),(135,'2021_04_07_070421_ add_field_parameter_table',1),(136,'2021_04_08_120053_add_field_to_integration_providers_table',1),(137,'2021_04_09_173101_add_field_to_products_woocommerce_table',1),(138,'2021_04_12_110606_add_field_to_parameters_woocommerce_table',1),(139,'2021_04_12_115611_add_field_to_category_woocommerce_table',1),(140,'2021_04_12_115630_add_field_to_subcategory_woocommerce_table',1),(141,'2021_04_13_102918_add_field_to_attributes_woocommerce_table',1),(142,'2021_04_13_142729_add_field_to_product_attributes_woocommerce_table',1),(143,'2021_04_14_140421_add_field_button_to_parameters_table',1),(144,'2019_04_19_190419_create_document_types_table',2),(145,'2021_04_19_190421_add_column_document_type_to_user_table',2),(146,'2021_04_19_190421_add_column_pco_parameters_table',2),(147,'2021_04_19_190421_add_column_to_orders_table',2),(148,'2021_04_27_115926_add_field_to_parameters_shopify_table',2),(149,'2021_04_27_150800_add_field_to_fields_shopify_table',2),(150,'2021_05_05_184127_add_fk_banners_type_action',2),(151,'2021_05_06_060521_add_notification_inventory_parameters_table',2),(152,'2021_05_11_082122_create_ecommerce_types_table',2),(153,'2021_05_11_083258_add_field_to_integration_providers_ecommerce_table',2),(154,'2021_05_12_120521_add_column_academy_value_to_parameters',2),(155,'2021_05_13_130521_create_academy_table',2),(156,'2021_05_19_190521_add_field_change_orders_table',2),(157,'2021_05_21_115846_create_inventory_movement_types_table',2),(158,'2021_05_21_120003_add_fk_inventory_tweaks_x_inventory_movement_type',2),(159,'2021_05_24_240521_create_new_academy_users_table',2),(160,'2021_05_24_240522_add_fields_academy_purchase_table',2),(161,'2021_05_25_093255_create_dorsal_table',2),(162,'2021_05_27_270521_add_column_academy_monthly_to_parameters',2),(163,'2021_06_02_190421_add_column_parameter_dim_tickets_table',2),(164,'2021_06_03_095704_add_field_to_ticket_mains_table',2),(165,'2021_06_11_095704_add_columns_to_dorsal_table',2),(166,'2021_06_15_213600_add_quantity_to_discount_products_table',2),(167,'2021_06_16_160621_add_column_album_tickets_table',2),(168,'2021_06_18_093255_create_welcome_logo_table',2),(169,'2021_06_30_121313_add_columns_to_corporate_identities_table',2),(170,'2021_11_06_061121_add_column_to_academy_users_table',2),(171,'2021_07_19_143912_create_sessions_table',3),(172,'2021_07_19_144251_create_cache_table',3),(173,'2021_07_05_101854_create_equipment_categories_table',4),(174,'2021_07_05_101948_create_positions_table',4),(175,'2021_07_05_102019_create_players_table',4),(176,'2021_07_21_201353_add_instagram_player',4),(177,'2021_08_02_161156_add_tshirt_size_to_academy_users',4),(178,'2021_08_03_214959_create_reports_power_table',4),(179,'2021_08_06_155444_add_monthly_academy_price_to_academy_purchases',4),(180,'2021_08_07_202144_add_field_to_integration_providers_last_load_date',4),(181,'2021_08_26_194404_add_column_inactive_player_table',4),(182,'2021_09_11_101537_delete_column_cuontry_player',4),(183,'2021_09_11_101745_add_column_country_player',4),(184,'2021_09_22_105548_add_is_an_email_sent_to_tickets',4),(185,'2021_09_23_182711_create_ticket_user_block_backups_table',4),(186,'2021_09_30_123045_add_field_to_active_table',4),(187,'2021_10_28_195021_add_field_presale_to_parameter_table',4),(188,'2021_11_06_071121_add_column_log_to_ticket_mains',4),(189,'2021_11_07_071121_add_column_letter_seat_to_tickets',4),(190,'2021_11_18_181121_add_columns_dia_sin_iva_to_parameters_table',4),(191,'2021_12_04_112143_create_pre_subscribers_table',5),(192,'2021_12_14_205057_create_seasons_table',5),(193,'2021_12_14_211145_remove_field_to_match_events_table',5),(194,'2021_12_14_212443_remove_field_to_tournaments_table',5),(195,'2021_12_29_295021_add_field_preabonado_to_parameter_table',5),(196,'2021_12_30_144545_add_product_link_to_products',5),(197,'2022_01_06_195632_create_tournament_organizers_table',5),(198,'2022_01_06_195633_add_field_to_tournaments_table',5),(199,'2022_01_18_192002_add_field_to_pre_subscribers_table',5),(200,'2022_01_19_183007_add_see_ticket_to_parameters_table',5),(201,'2022_01_26_203730_add_image_ticket_to_parameters_table',5),(202,'2022_02_14_165645_add_image_link_finish_payment_to_parameters_table',5),(203,'2022_02_28_141905_add_seller_user_id_to_ticket_mains',5),(204,'2022_03_07_183809_add_tournament_ticket_customization_to_tournaments_table',5),(205,'2022_04_02_235657_add_column_is_subscriber_to_coupons_table',5),(206,'2022_04_07_184338_create_ticket_validation_histories_table',5),(207,'2022_04_24_145311_add_field_match_mode_to_parameter_table',6),(208,'2022_05_18_151506_add_web_presuscription_to_parameters_table',6),(209,'2022_05_19_112728_add_ecommerce_url_to_parameters_table',6),(210,'2022_05_20_143917_create_official_twitters_table',6),(211,'2022_05_23_174343_create_official_facebooks_table',6),(212,'2022_03_02_121045_create_token_user_coins_table',7),(213,'2022_05_04_094015_create_user_coins_table',7),(214,'2022_05_18_104143_create_leal_coins_table',7),(215,'2022_06_01_152619_create_payment_coins_table',8),(216,'2022_05_29_095947_create_stage_types_table',9),(217,'2022_05_30_090259_create_match_event_stages_table',9),(218,'2022_06_22_145200_add_max_units_per_product_to_product_table',9),(219,'2022_06_23_094846_add_column_is_subscriber_to_users_table',9),(220,'2022_06_24_155500_create_home_image_table',9),(221,'2022_06_29_100909_add_column_debt_and_credit_coins_to_user_coins_table',9),(222,'2022_07_01_154724_new_colums_forms',9),(223,'2022_07_12_123538_add_column_is_subscriber_to_symbolic_tickets_table',9),(224,'2022_07_14_185246_create_live_score_caches_table',9),(225,'2022_07_26_103759_create_flash_ticket_configuration_table',9),(226,'2022_07_29_150445_class_field_in_gateway_payment',9),(227,'2022_08_01_101447_image_field_gateway_payments',9),(228,'2022_08_03_160347_payment_gateway_id_field_in_orders',9),(229,'2022_08_08_102500_fields_to_save_transaction_data',9),(230,'2022_08_15_123730_add_live_score_parameters',9),(231,'2022_07_19_180402_add_corporate_identities_table',10),(232,'2022_08_22_092033_add_hide_match_table',10),(233,'2022_08_23_145816_add_column_is_special_tickets_table',10),(234,'2022_08_26_114321_add_column_special_text_tickets_table',10),(235,'2022_08_30_212954_add_column_confirm_stadium_ticket_tickets_table',10),(236,'2022_08_29_160000_add_column_purchase_origin_orders_table',11),(237,'2022_08_31_104822_add_columns_for_ticket_office_selling_to_flash_ticket_configuration',11),(238,'2022_09_06_143620_ticket_tags_table',11),(239,'2022_08_18_105102_create_tag_table',12),(240,'2022_08_19_123848_create_user_tags_table',12),(241,'2022_08_22_182238_create_notification_tags_table',12),(242,'2022_08_23_152722_create_popup_tags_table',12),(243,'2022_09_07_143817_drop_column_alias',12),(244,'2022_09_08_092436_add_name_of_the_stadium_to_play_table',12),(245,'2022_09_09_163702_add_column_valid_payments_to_gateway_payments_table',12),(246,'2022_09_12_115542_create_form_tags_table',13),(247,'2022_09_15_153613_add_exclusive_subscriber_login_to_parameters_table',13),(248,'2022_09_21_144914_show_flash_selling_alerts_parameter',13),(249,'2022_05_26_260522_add_fields_to_academy_payments_table',14),(250,'2022_06_14_140622_add_new_field_academy_user_table',14),(251,'2022_09_15_150453_create_shop_categories_table',14),(252,'2022_09_15_173909_create_business_table',14),(253,'2022_09_21_090950_score_field_business_table',14),(254,'2022_09_21_091918_business_fields_popup_embeds_table',15),(255,'2022_09_21_093538_business_fields_banners_table',15),(256,'2022_09_21_095100_create_banner_tags_table',15),(257,'2022_10_04_151914_create_symbolic_ticket_tags_table',15),(258,'2022_10_06_104252_update_symbolic_ticket_fields',15),(259,'2022_10_07_103920_create_carnet_table',16),(260,'2022_10_07_110705_create_carnet_tags_table',16),(261,'2022_10_11_174528_nullable_lat_long_addresses_table',16),(262,'2022_10_12_162350_frecuency_in_popup_embeds_table',16),(263,'2022_10_12_224327_optional_field_in_carnets_table',16),(264,'2022_10_13_092320_default_target_in_banners_and_popups_tables',16),(265,'2022_10_20_165022_add_id_onesignal_to_notifications_table',16),(266,'2022_10_25_105201_create_team_statistics_table',16),(267,'2022_11_04_144531_create_academy_parameters_table',17),(268,'2022_11_08_214859_create_academy_states_table',17),(269,'2022_11_08_223652_add_academy_state_in_academy_user_table',17),(270,'2022_11_09_162212_create_academy_documents_table',17),(271,'2022_11_09_162941_create_academy_document_users_table',17),(272,'2022_11_10_152624_preregister_academy_fields',17),(273,'2022_11_11_075723_create_academy_state_users_table',17),(274,'2022_11_11_151337_fullregister_academy_fields',17),(275,'2022_11_18_151856_add_payment_support_to_academy_purchases_table',17),(276,'2022_11_22_084901_create_academy_categories_table',17),(277,'2022_11_22_145513_academy_category_user_relation',17),(278,'2022_11_22_213035_create_transaction_table',17),(279,'2022_11_23_110333_academy_purchase_and_payment_transaction_relation',17),(280,'2022_11_23_211144_create_academy_periods_table',17),(281,'2022_11_23_211744_academy_period_user_relation',17),(282,'2022_11_24_232940_add_softdelete_academy_user_table',18),(283,'2022_11_25_095152_origin_class_field_payment_transaction',18),(284,'2022_11_27_222556_create_academy_schedules_table',18),(285,'2022_11_27_222835_academy_schedule_user_relation',18),(286,'2022_12_02_161800_last_inscription_year_field',19),(287,'2022_12_02_154148_add_color_and_font_type',20),(288,'2022_12_06_143217_show_in_field_in_carnets',20),(289,'2022_12_13_131021_create_app_sections_table',21),(290,'2022_12_13_131508_create_app_section_tags_table',21),(291,'2022_12_16_102747_add_flash_stadium_image_parameters_table',22),(292,'2022_12_23_143648_date_fields_in_academy_periods_table',23),(293,'2022_12_27_112937_add_payment_status_validation_academy_fields',24),(294,'2022_12_28_160535_add_validate_payments_field_to_academy_states_table',24),(295,'2023_01_06_162130_change_user_id_to_academy_purchases_table',25),(296,'2023_01_11_111604_create_fields_message_buy_tickets_for_app_to_parameters_table',26),(297,'2022_12_28_162639_create_app_validation_sections_table',27),(298,'2022_12_28_163645_create_app_validation_section_tags_table',27),(299,'2023_01_03_150723_create_academy_attendance_table',27),(300,'2023_01_03_153028_image_field_in_app_validation_sections_table',27),(301,'2023_01_12_115318_create_academy_reports_table',27),(302,'2022_10_26_081454_add_flag_text_message_to_notifications_table',28),(303,'2022_11_04_095729_create_sms_parameters_table',28),(304,'2023_02_14_142845_create_system_logs_table',29),(305,'2023_02_17_104231_gw_state_type_varchar',30),(306,'2023_01_03_150723_create_academy_attendances_table',30),(307,'2023_01_15_211040_create_academy_locations_table',31),(308,'2023_01_15_211118_academy_location_user_relation',31),(309,'2023_01_16_092734_academy_category_schedule_relation',31),(310,'2023_01_16_164930_user_academy_schedule_relation',31),(311,'2023_02_02_152934_create_academy_schedules_coaches_table',31),(312,'2022_10_21_162331_modify_coupons_table',32),(313,'2022_10_25_144756_create_coupon_tags_table',32),(314,'2022_10_25_155303_codes_field_coupons_table',32),(315,'2022_12_27_150649_add_optional_app_update',33),(316,'2023_02_27_114457_init_month_academy_period',34),(317,'2023_03_13_102745_create_academy_category_schedules_table',35),(318,'2023_03_13_112326_add_module_items_module_rols_table',35),(319,'2023_03_23_124543_add_softdelete_user_informations_table',36),(320,'2023_03_28_105728_create_match_event_tags_table',37),(321,'2023_03_31_111042_add_optional_app_update_ios_field_to_parameters_table',37),(322,'2023_03_29_151059_create_business_parameter_table',38),(323,'2023_04_03_103315_create_academy_discounts_table',38),(324,'2023_04_03_103404_create_academy_users_discounts_table',38),(325,'2023_04_10_204354_drop_academy_category_from_academy_schedule_table',38),(326,'2023_05_03_162238_add_view_on_field_to_academy_discounts_table',39),(327,'2023_05_30_093332_adjust_field_comment_purchase_log_to_ticket_mains_table',40),(328,'2023_05_30_120939_add_field_special_text_to_match_event_stages_table',40),(329,'2023_05_03_162429_new_fields_app_validation_sections',41),(330,'2023_05_11_083806_create_redemptions_table',41),(331,'2023_06_06_142654_add_field_status_notification_email_client_to_orders_table',41),(332,'2023_06_13_210723_add_information_fields_to_flash_ticket_configuration_table',42),(333,'2023_02_28_082654_create_collection_invoices_table',43),(334,'2023_04_10_152108_add_customize_home_buttons_to_app_sections_table',43),(335,'2023_04_14_094718_create_service_charges_table',43),(336,'2023_04_19_091842_add_service_charge_field_tables',43),(337,'2023_04_27_145341_add_social_media_business_to_businesses_table',43),(338,'2023_05_04_143115_create_business_ratings_table',43),(339,'2023_05_04_144623_add_modules_child_to_modules_table',43),(340,'2023_05_08_103620_add_hide_name_popup_to_popup_embeds_table',43),(341,'2023_05_08_103710_add_hide_name_banners_to_banners_table',43),(342,'2023_05_11_202140_create_seeders_table',43),(343,'2023_05_12_170450_create_business_user_ratings_table',43),(344,'2023_05_15_074955_add_foreign_keys_to_business_user_ratings_table',43),(345,'2023_05_15_160312_nullable_value_order_product_attributes',43),(346,'2023_05_18_083526_create_tutorial_slides_table',43),(347,'2023_05_25_084340_create_ticket_user_logs',43),(348,'2023_05_25_084443_create_ticket_parameters',43),(349,'2023_05_25_104457_add_foreign_keys_to_ticket_user_logs_table',43),(350,'2023_05_25_225136_add_field_pmu_to_product_attributes_table',43),(351,'2023_05_26_182630_add_number_transfers_to_tickets_table',43),(352,'2023_05_29_101133_adjust_field_pum_to_product_attributes_table',43),(353,'2023_05_31_144956_create_academy_tournaments_table',43),(354,'2023_06_08_162231_add_field_finish_payment_to_payment_transactions_table',43),(355,'2023_06_12_232040_add_fields_enable_alls_to_app_sections_table',43),(356,'2023_06_14_123711_new_fields_academy_attendances',43),(357,'2023_06_14_141900_create_social_network_accounts_table',43),(358,'2023_06_15_093243_add_enable_section_on_home_to_app_sections_table',43),(359,'2023_06_16_162037_create_official_youtubes_table',43),(360,'2023_06_28_095610_add_link_section_home_to_app_sections_table',43),(361,'2023_06_28_141124_create_product_tags_table',43),(362,'2023_07_04_190802_add_null_value_coords_to_coverages_table',44),(363,'2023_07_21_113823_add_default_data_document_type_to_users_table',45),(364,'2023_07_31_094134_add_videos_field_to_official_youtubes_table',46),(365,'2023_08_09_200025_add_softdelete_to_academy_purchases_table',47),(366,'2023_08_10_100920_add_payment_due_date_to_academy_purchases_table',48),(367,'2023_08_24_080144_add_payment_installments_to_academy_tournaments_table',48),(368,'2023_08_02_112423_adult_academy',49),(369,'2023_08_03_085715_adult_academy_parameters',49),(370,'2023_08_09_160934_type_academy_in_academy_users_table',49),(371,'2023_08_10_094608_drop_primary_key_in_academy_parameters_table',49),(372,'2023_08_10_154259_emergengy_fields_in_academy_users_table',49),(373,'2023_08_10_210641_nullable_school_name_field_in_academy_users_table',49),(374,'2023_08_16_083449_type_academy_in_academy_documents_table',49),(375,'2023_08_16_163452_integer_primary_key_in_academy_parameters_table',49),(376,'2023_08_23_150701_type_academy_in_academy_tournaments_table',49),(377,'2023_09_04_151947_create_show_in_field_in_academy_category_table',50),(378,'2023_09_07_133133_add_end_date_column_period_table',50),(379,'2023_10_02_232838_add_payment_identifier_to_academy_purchases_table',50);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `module_rols`
--

DROP TABLE IF EXISTS `module_rols`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `module_rols` (
  `module_id` int(10) unsigned NOT NULL,
  `rol_id` int(10) unsigned NOT NULL,
  `order` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  KEY `module_rols_module_id_foreign` (`module_id`),
  KEY `module_rols_rol_id_foreign` (`rol_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_spanish2_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `module_rols`
--

LOCK TABLES `module_rols` WRITE;
/*!40000 ALTER TABLE `module_rols` DISABLE KEYS */;
INSERT INTO `module_rols` VALUES (1,1,1,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(27,1,2,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(43,1,3,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(65,1,4,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(99,1,5,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(106,1,6,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(114,1,7,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(119,1,8,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(1,18,1,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(2,18,2,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(3,18,3,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(4,18,4,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(5,18,5,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(6,18,6,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(7,18,7,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(8,18,8,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(9,18,9,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(10,18,10,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(11,18,11,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(12,18,12,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(13,18,13,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(14,18,14,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(15,18,15,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(16,18,16,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(17,18,17,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(18,18,18,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(19,18,19,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(20,18,20,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(21,18,21,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(22,18,22,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(23,18,23,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(24,18,24,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(25,18,25,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(26,18,26,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(65,18,27,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(66,18,28,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(67,18,29,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(68,18,30,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(69,18,31,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(70,18,32,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(71,18,33,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(72,18,34,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(73,18,35,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(74,18,36,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(75,18,37,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(76,18,38,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(77,18,39,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(78,18,40,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(79,18,41,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(80,18,42,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(81,18,43,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(82,18,44,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(83,18,45,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(84,18,46,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(85,18,47,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(86,18,48,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(87,18,49,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(88,18,50,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(89,18,51,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(90,18,52,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(91,18,53,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(92,18,54,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(93,18,55,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(94,18,56,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(95,18,57,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(96,18,58,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(97,18,59,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(98,18,60,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(119,18,61,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(120,18,62,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(121,18,63,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(126,18,64,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(135,18,65,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(136,18,66,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(140,18,67,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(146,18,68,'2023-07-07 22:09:23','2023-07-07 22:09:23'),(43,15,1,'2023-07-07 22:18:07','2023-07-07 22:18:07'),(51,15,2,'2023-07-07 22:18:07','2023-07-07 22:18:07'),(54,15,3,'2023-07-07 22:18:07','2023-07-07 22:18:07'),(55,15,4,'2023-07-07 22:18:07','2023-07-07 22:18:07'),(57,15,5,'2023-07-07 22:18:07','2023-07-07 22:18:07'),(58,15,6,'2023-07-07 22:18:07','2023-07-07 22:18:07'),(147,15,7,'2023-07-07 22:18:07','2023-07-07 22:18:07'),(27,14,1,'2023-07-07 22:18:27','2023-07-07 22:18:27'),(28,14,2,'2023-07-07 22:18:27','2023-07-07 22:18:27'),(31,14,3,'2023-07-07 22:18:27','2023-07-07 22:18:27'),(114,13,1,'2023-07-07 22:18:47','2023-07-07 22:18:47'),(117,13,2,'2023-07-07 22:18:47','2023-07-07 22:18:47'),(118,13,3,'2023-07-07 22:18:47','2023-07-07 22:18:47'),(1,2,1,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(2,2,2,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(3,2,3,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(4,2,4,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(5,2,5,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(6,2,6,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(7,2,7,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(8,2,8,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(9,2,9,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(10,2,10,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(11,2,11,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(12,2,12,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(13,2,13,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(14,2,14,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(15,2,15,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(16,2,16,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(17,2,17,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(18,2,18,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(19,2,19,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(20,2,20,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(21,2,21,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(22,2,22,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(23,2,23,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(24,2,24,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(25,2,25,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(26,2,26,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(27,2,27,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(28,2,28,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(29,2,29,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(30,2,30,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(31,2,31,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(32,2,32,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(33,2,33,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(34,2,34,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(35,2,35,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(36,2,36,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(37,2,37,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(38,2,38,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(39,2,39,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(40,2,40,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(141,2,41,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(142,2,42,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(143,2,43,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(43,2,44,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(44,2,45,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(45,2,46,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(46,2,47,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(47,2,48,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(48,2,49,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(49,2,50,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(50,2,51,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(51,2,52,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(52,2,53,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(55,2,54,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(57,2,55,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(54,2,56,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(58,2,57,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(147,2,58,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(62,2,59,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(63,2,60,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(64,2,61,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(148,2,62,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(53,2,63,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(56,2,64,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(59,2,65,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(60,2,66,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(61,2,67,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(144,2,68,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(145,2,69,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(65,2,70,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(66,2,71,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(67,2,72,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(68,2,73,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(69,2,74,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(70,2,75,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(71,2,76,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(72,2,77,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(73,2,78,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(146,2,79,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(74,2,80,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(75,2,81,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(76,2,82,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(77,2,83,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(78,2,84,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(79,2,85,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(80,2,86,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(81,2,87,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(82,2,88,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(83,2,89,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(84,2,90,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(85,2,91,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(86,2,92,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(87,2,93,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(88,2,94,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(89,2,95,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(90,2,96,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(91,2,97,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(92,2,98,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(140,2,99,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(93,2,100,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(94,2,101,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(95,2,102,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(96,2,103,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(97,2,104,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(98,2,105,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(114,2,106,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(115,2,107,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(116,2,108,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(117,2,109,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(118,2,110,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(119,2,111,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(120,2,112,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(121,2,113,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(126,2,114,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(128,2,115,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(129,2,116,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(130,2,117,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(131,2,118,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(135,2,119,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(136,2,120,'2023-07-19 23:44:37','2023-07-19 23:44:37'),(1,8,1,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(2,8,2,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(3,8,3,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(4,8,4,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(5,8,5,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(6,8,6,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(7,8,7,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(8,8,8,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(9,8,9,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(10,8,10,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(11,8,11,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(12,8,12,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(13,8,13,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(14,8,14,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(15,8,15,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(16,8,16,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(17,8,17,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(18,8,18,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(19,8,19,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(20,8,20,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(21,8,21,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(22,8,22,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(23,8,23,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(24,8,24,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(25,8,25,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(26,8,26,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(27,8,27,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(28,8,28,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(29,8,29,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(30,8,30,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(31,8,31,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(32,8,32,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(33,8,33,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(34,8,34,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(35,8,35,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(36,8,36,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(37,8,37,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(38,8,38,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(39,8,39,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(40,8,40,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(141,8,41,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(142,8,42,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(143,8,43,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(43,8,44,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(44,8,45,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(45,8,46,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(46,8,47,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(47,8,48,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(48,8,49,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(49,8,50,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(50,8,51,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(51,8,52,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(52,8,53,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(55,8,54,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(57,8,55,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(54,8,56,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(58,8,57,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(147,8,58,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(62,8,59,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(63,8,60,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(64,8,61,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(148,8,62,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(53,8,63,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(56,8,64,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(59,8,65,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(60,8,66,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(61,8,67,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(144,8,68,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(145,8,69,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(65,8,70,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(66,8,71,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(67,8,72,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(68,8,73,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(69,8,74,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(70,8,75,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(71,8,76,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(72,8,77,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(73,8,78,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(146,8,79,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(74,8,80,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(75,8,81,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(76,8,82,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(77,8,83,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(78,8,84,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(79,8,85,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(80,8,86,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(81,8,87,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(82,8,88,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(83,8,89,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(84,8,90,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(86,8,91,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(87,8,92,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(88,8,93,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(89,8,94,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(90,8,95,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(91,8,96,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(92,8,97,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(140,8,98,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(93,8,99,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(94,8,100,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(95,8,101,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(96,8,102,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(97,8,103,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(98,8,104,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(99,8,105,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(100,8,106,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(101,8,107,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(102,8,108,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(103,8,109,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(104,8,110,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(105,8,111,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(139,8,112,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(114,8,113,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(117,8,114,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(118,8,115,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(119,8,116,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(120,8,117,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(121,8,118,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(124,8,119,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(126,8,120,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(128,8,121,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(129,8,122,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(130,8,123,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(131,8,124,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(135,8,125,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(136,8,126,'2023-07-21 13:40:20','2023-07-21 13:40:20'),(1,12,1,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(2,12,2,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(4,12,3,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(27,12,4,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(28,12,5,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(29,12,6,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(30,12,7,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(154,12,8,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(155,12,9,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(156,12,10,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(157,12,11,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(158,12,12,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(161,12,13,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(163,12,14,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(43,12,15,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(51,12,16,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(57,12,17,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(114,12,18,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(118,12,19,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(119,12,20,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(128,12,21,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(129,12,22,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(130,12,23,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(131,12,24,'2023-09-05 21:11:29','2023-09-05 21:11:29'),(1,17,1,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(2,17,2,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(3,17,3,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(4,17,4,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(5,17,5,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(6,17,6,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(7,17,7,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(8,17,8,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(9,17,9,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(10,17,10,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(11,17,11,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(12,17,12,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(13,17,13,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(14,17,14,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(15,17,15,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(16,17,16,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(17,17,17,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(18,17,18,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(19,17,19,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(20,17,20,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(21,17,21,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(22,17,22,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(23,17,23,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(24,17,24,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(25,17,25,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(26,17,26,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(27,17,27,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(153,17,28,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(28,17,29,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(29,17,30,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(30,17,31,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(31,17,32,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(41,17,33,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(42,17,34,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(141,17,35,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(142,17,36,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(143,17,37,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(40,17,38,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(154,17,39,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(155,17,40,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(156,17,41,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(157,17,42,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(158,17,43,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(159,17,44,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(160,17,45,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(161,17,46,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(162,17,47,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(163,17,48,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(164,17,49,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(32,17,50,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(33,17,51,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(34,17,52,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(35,17,53,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(36,17,54,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(37,17,55,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(38,17,56,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(39,17,57,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(43,17,58,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(44,17,59,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(45,17,60,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(46,17,61,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(49,17,62,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(50,17,63,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(51,17,64,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(57,17,65,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(62,17,66,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(63,17,67,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(64,17,68,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(54,17,69,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(147,17,70,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(58,17,71,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(65,17,72,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(66,17,73,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(146,17,74,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(67,17,75,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(68,17,76,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(69,17,77,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(70,17,78,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(71,17,79,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(72,17,80,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(73,17,81,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(74,17,82,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(75,17,83,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(76,17,84,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(77,17,85,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(78,17,86,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(79,17,87,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(80,17,88,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(81,17,89,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(82,17,90,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(83,17,91,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(84,17,92,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(85,17,93,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(86,17,94,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(87,17,95,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(88,17,96,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(89,17,97,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(90,17,98,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(91,17,99,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(92,17,100,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(140,17,101,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(93,17,102,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(94,17,103,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(95,17,104,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(96,17,105,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(97,17,106,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(98,17,107,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(114,17,108,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(118,17,109,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(119,17,110,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(120,17,111,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(121,17,112,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(123,17,113,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(128,17,114,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(129,17,115,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(130,17,116,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(131,17,117,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(135,17,118,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(136,17,119,'2023-09-05 22:15:50','2023-09-05 22:15:50'),(27,19,1,'2023-09-05 22:23:39','2023-09-05 22:23:39'),(153,19,2,'2023-09-05 22:23:39','2023-09-05 22:23:39'),(28,19,3,'2023-09-05 22:23:39','2023-09-05 22:23:39'),(29,19,4,'2023-09-05 22:23:39','2023-09-05 22:23:39'),(154,19,5,'2023-09-05 22:23:39','2023-09-05 22:23:39'),(155,19,6,'2023-09-05 22:23:39','2023-09-05 22:23:39'),(156,19,7,'2023-09-05 22:23:39','2023-09-05 22:23:39'),(158,19,8,'2023-09-05 22:23:39','2023-09-05 22:23:39'),(27,16,1,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(153,16,2,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(28,16,3,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(29,16,4,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(30,16,5,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(31,16,6,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(141,16,7,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(142,16,8,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(143,16,9,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(40,16,10,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(154,16,11,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(155,16,12,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(156,16,13,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(157,16,14,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(158,16,15,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(161,16,16,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(163,16,17,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(164,16,18,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(32,16,19,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(33,16,20,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(34,16,21,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(35,16,22,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(36,16,23,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(38,16,24,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(39,16,25,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(106,16,26,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(109,16,27,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(110,16,28,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(114,16,29,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(118,16,30,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(119,16,31,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(120,16,32,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(121,16,33,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(126,16,34,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(128,16,35,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(129,16,36,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(130,16,37,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(131,16,38,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(135,16,39,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(136,16,40,'2023-09-05 22:25:46','2023-09-05 22:25:46'),(1,10,1,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(2,10,2,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(3,10,3,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(4,10,4,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(5,10,5,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(6,10,6,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(7,10,7,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(8,10,8,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(9,10,9,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(10,10,10,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(11,10,11,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(12,10,12,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(13,10,13,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(14,10,14,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(15,10,15,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(16,10,16,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(17,10,17,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(18,10,18,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(19,10,19,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(20,10,20,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(21,10,21,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(22,10,22,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(23,10,23,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(24,10,24,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(25,10,25,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(26,10,26,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(27,10,27,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(153,10,28,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(28,10,29,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(29,10,30,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(30,10,31,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(154,10,32,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(155,10,33,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(156,10,34,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(157,10,35,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(65,10,36,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(66,10,37,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(146,10,38,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(67,10,39,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(68,10,40,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(69,10,41,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(70,10,42,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(71,10,43,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(72,10,44,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(73,10,45,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(74,10,46,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(75,10,47,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(76,10,48,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(77,10,49,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(78,10,50,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(79,10,51,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(80,10,52,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(81,10,53,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(82,10,54,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(83,10,55,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(84,10,56,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(85,10,57,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(86,10,58,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(87,10,59,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(88,10,60,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(89,10,61,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(90,10,62,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(91,10,63,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(92,10,64,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(140,10,65,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(93,10,66,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(94,10,67,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(95,10,68,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(96,10,69,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(97,10,70,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(98,10,71,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(114,10,72,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(118,10,73,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(119,10,74,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(120,10,75,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(121,10,76,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(123,10,77,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(126,10,78,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(128,10,79,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(129,10,80,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(130,10,81,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(131,10,82,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(151,10,83,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(135,10,84,'2023-09-19 22:02:29','2023-09-19 22:02:29'),(136,10,85,'2023-09-19 22:02:29','2023-09-19 22:02:29');
/*!40000 ALTER TABLE `module_rols` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `modules`
--

DROP TABLE IF EXISTS `modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `modules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `route` varchar(191) NOT NULL,
  `order` int(11) NOT NULL,
  `module_id` int(10) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `modules_module_id_foreign` (`module_id`)
) ENGINE=InnoDB AUTO_INCREMENT=165 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `modules`
--

LOCK TABLES `modules` WRITE;
/*!40000 ALTER TABLE `modules` DISABLE KEYS */;
INSERT INTO `modules` VALUES (1,'E-Commerce','fa-shopping-bag','e-commerce',1,NULL,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(2,'Pedidos','fa-align-right','order-management',1,1,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(3,'Crear pedido','fa-id-card-o','orders/add',1,2,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(4,'Listado pedidos','fa-file-text','orders',2,2,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(5,'Datos maestros','fa-folder-open','master-data',2,1,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(6,'Sucursales','fa-building','sucursals',1,5,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(7,'Coberturas','fa-map','coverages',2,5,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(8,'Línea de negocio','fa-bank','lineBusiness',3,5,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(9,'Canal de venta','fa-arrows-h','salesChannel',4,5,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(10,'Empresas asociadas','fa-share-alt','companies',5,5,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(11,'Catálogo','fa-list-alt','catalog',3,1,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(12,'Marcas','fa-tag','brands',1,11,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(13,'Productos','fa-archive','products',2,11,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(14,'Categorías','fa-list','categories',3,11,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(15,'Subcategorías','fa-list-ol','subcategories',4,11,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(16,'Descuentos','fa-dollar','discounts',5,11,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(17,'Formas de pago','fa-money','payments',6,11,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(18,'Atributos','fa-th-large','attributes',7,11,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(19,'Imagen bienvenida','fa-picture-o','welcome_logo',8,11,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(20,'Planeación','fa-line-chart','e-commerce-planning',4,1,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(21,'Mapa','fa-map-marker','map',1,20,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(22,'Simulación de ruta','fa-map-signs','planning',2,20,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(23,'Coberturas pendientes','fa-globe','coverages/pending',3,20,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(24,'Inventario','fa-book','inventory',5,1,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(25,'Stock','fa-archive','stock',1,24,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(26,'Ajustes de inventario','fa-edit','inventory_tweaks',2,24,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(27,'Academias','fa-futbol-o','academy',2,NULL,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(28,'Gestión Usuarios','fa-user','student-management',1,153,1,NULL,'2023-07-07 22:06:50','2023-09-05 20:30:30'),(29,'Monitor','fa-id-card-o','academy_user',1,28,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(30,'Pagos','fa-list-ul','academy_purchase',2,28,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(31,'Asistencias','fa-check-square-o','academy_attendances',3,28,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(32,'Datos maestros','fa-folder-open','academy-master-data',3,27,1,NULL,'2023-07-07 22:06:50','2023-09-05 20:30:30'),(33,'Sedes','fa-location-arrow','academy_locations',1,32,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(34,'Categorías','fa-list','academy_categories',2,32,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(35,'Horarios','fa-calendar','academy_schedules',3,32,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(36,'Entrenadores','fa-users','academy_coaches',4,32,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(37,'Flujo de estados','fa-list-ol','academy_states',5,32,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(38,'Períodos','fa-calendar-check-o','academy_periods',6,32,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(39,'Descuentos','fa-usd','academy_discounts',7,32,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(40,'Gestion de documentos','fa-file','academy_document',4,153,1,NULL,'2023-07-07 22:06:50','2023-09-05 20:30:30'),(41,'Academia config','fa-gears','academy-config',2,153,1,NULL,'2023-07-07 22:06:50','2023-09-05 20:30:30'),(42,'Parámetros','fa-gears','academy_parameters',1,41,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(43,'Ticketing','fa-ticket','ticketing',3,NULL,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(44,'Estadio','fa-soccer-ball-o','stadium',1,43,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(45,'Torneos','fa-soccer-ball-o','tournaments',1,44,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(46,'Equipos','fa-soccer-ball-o','teams',2,44,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(47,'Tribunas','fa-soccer-ball-o','zones',3,44,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(48,'Puertas','fa-soccer-ball-o','doors',4,44,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(49,'Dorsal','fa-soccer-ball-o','dorsal',5,44,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(50,'Organizadores','fa-soccer-ball-o','organizer',6,44,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(51,'Boletería estandar','fa-ticket','ticket-office',1,43,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(52,'Entradas partidos','fa-qrcode','tickets_matches',3,51,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(53,'Mensaje personalizado de pago/correo','fa-pencil','payment_completion_message/list',6,148,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(54,'Boletería flash','fa-ticket','flash_ticket',4,43,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(55,'Ventas','fa-ticket','tickets',2,51,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(56,'Carné','fa-address-card','symbolic_tickets',5,148,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(57,'Boletas','fa-soccer-ball-o','tournaments',1,51,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(58,'Venta flash','fa-money','flash_ticket/selling',2,54,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(59,'Etiquetas','fa-tag','ticket_tag',2,148,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(60,'Ticket backups','fa-soccer-ball-o','ticket_backups',4,148,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(61,'Boletería masiva','fa-users','massive_fans',3,148,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(62,'Estadísticas','fa-line-chart','statistics',3,43,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(63,'Partidos','fa-futbol-o','stats/matches',1,62,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(64,'Tabla de posiciones','fa-tablet','statistics',2,62,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(65,'Comunicación y publicidad','fa-bullhorn','communication-advertising',4,NULL,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(66,'Redes Sociales','fa-group','social_media',1,65,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(67,'Twitter','fa-twitter','official_twitter',1,66,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(68,'Facebook','fa-facebook','official_facebook',2,66,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(69,'Videos de youtube','fa-youtube-play','video_youtube',3,66,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(70,'Videos de tikTok','fa-play','video_tiktok',4,66,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(71,'Episodios podcast','fa-spotify','radio_embed',5,66,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(72,'Revista','fa-book','bookcase_embed',6,66,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(73,'Fotos instagram','fa-instagram','photo_instagram',7,66,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(74,'Encuestas','fa-file-text-o','surveys',1,65,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(75,'Listas manuales','fa-database','main_datasources',1,74,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(76,'Gestor de datos','fa-database','field_datasources',2,74,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(77,'Valores','fa-database','field_values',3,74,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(78,'Campos','fa-database','fields',4,74,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(79,'Formularios','fa-database','forms',5,74,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(80,'Resultados','fa-database','results',6,74,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(81,'Servicio al cliente','fa-fax','client_service',1,65,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(82,'Buzón de sugerencias','fa-inbox','mailbox',1,81,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(83,'Chats','fa-wechat','chats',2,81,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(84,'Comentarios','fa-commenting','comments',3,81,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(85,'Parámetros de notificaciones','fa-cogs','smsnotifications/smsparameters',4,81,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(86,'Publicaciones','fa-fax','publications',4,65,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(87,'Publicaciones App','fa-picture-o','app_customization/advertising_app',1,86,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(88,'Banners','fa-picture-o','banners',2,86,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(89,'Popups','fa-tablet','popup_embed',3,86,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(90,'Notificaciones push','fa-bell','notifications',4,86,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(91,'Notificaciones sms','fa-commenting','smsnotifications',5,86,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(92,'Banners home','fa-id-card-o','home_image',6,86,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(93,'Plantilla deportiva','fa-users','sports_squad',6,65,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(94,'Categorias','fa-file-text-o','equipment_categories',1,93,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(95,'Posiciones','fa-file','positions',2,93,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(96,'Jugadores','fa-soccer-ball-o','players',3,93,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(97,'Beneficios','fa-google-wallet','benefits',6,65,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(98,'Cupones','fa-tags','coupons',1,97,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(99,'Directorio negocios','fa-briefcase','business_directory',5,NULL,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(100,'Gestión negocios','fa-address-book','business_management',1,99,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(101,'Negocios','fa-building','business',1,100,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(102,'Datos maestros','fa-folder-open','business_master_data',2,99,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(103,'Categorias','fa-list','micro_trading_categories',1,102,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(104,'Directorio config','fa-folder-open','config_directory',3,99,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(105,'Parámetros','fa-gears','app_customization_config',1,104,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(106,'Fintech','fa-dollar','fintech',6,NULL,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(107,'Billetera','fa-google-wallet','wallet',1,106,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(108,'Monedas','fa-money','coins',1,107,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(109,'Pagos en línea','fa-calculator','online_payments',1,106,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(110,'Ref. Pasarela de pagos','fa-search-plus','wompi_reference',1,109,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(111,'Pasarela de pagos','fa-credit-card','paymentGateway',2,109,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(112,'Cuentas de cobro','fa-list-ol','collection_invoices',3,109,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(113,'Cobro de servicio','fa-usd','service_charges',4,109,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(114,'Análisis de datos','fa-database','data-analysis',7,NULL,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(115,'Dashboard de Inicio','fa-home','home',1,114,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(116,'BI','fa-file-text-o','analytics',2,114,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(117,'Reportes hacienda','fa-file','reports_state',3,114,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(118,'Reportes internos','fa-file','reports_internal',4,114,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(119,'Administración y configuración','fa-gears','administration-configuration',8,NULL,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(120,'Usuarios','fa-users','users',1,119,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(121,'Clientes','fa-user-plus','clients',1,120,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(122,'Administradores','fa-gear','admins',2,120,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(123,'Otros roles','fa-users','other-users',3,120,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(124,'Mensajeros','fa-motorcycle','deliveryMan',4,120,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(125,'Lista abonados','fa-user','preSubscribers',5,120,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(126,'Carnés','fa-address-card','carnet',6,120,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(127,'Roles y permisos','fa-user-circle','roles_permissions',7,120,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(128,'Logs','fa-list','logs',1,119,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(129,'Log e-commerce','fa-list','order_logs',1,128,1,NULL,'2023-07-07 22:06:50','2023-08-14 20:46:20'),(130,'Log academias','fa-list','academy_logs',2,128,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(131,'Log ticketing','fa-list','ticket_logs',3,128,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(132,'Secciones App','fa-tablet','app_section',3,119,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(133,'Parámetros','fa-cogs','parameters',4,119,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(134,'Integraciones','fa-wordpress','integrations',5,119,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(135,'Segmentación','fa-filter','segmentation',6,119,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(136,'Etiquetas','fa-tags','tag',1,135,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(137,'App de experiencias','fa-solid fa-qrcode','experience_app',7,119,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(138,'Secciones','fa-bars','app_validation_section',1,137,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(139,'Calificación comercial','fa-file-text-o','business_rating',2,104,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(140,'Inicio app','fa-columns','tutorial_slides',7,86,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(141,'Torneos','fa-futbol-o','academy_tournaments_module',3,153,1,NULL,'2023-07-07 22:06:50','2023-09-05 20:30:30'),(142,'Configuración torneos','fa-gears','academy_tournaments',1,141,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(143,'Pagos torneos','fa-list-ul','academy_tournament_payments',2,141,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(144,'Lista de boletas cedidas','fa-list','tickets/listTickeLogs',7,148,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(145,'Parámetros','fa-gears','tickets/parameter',1,148,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:51'),(146,'Cuentas oficiales','fa-users','social_network_accounts',0,66,1,NULL,'2023-07-07 22:06:50','2023-07-07 22:06:50'),(147,'Boletería flash','fa-ticket','flash_ticket',1,54,1,NULL,'2023-07-07 22:06:51','2023-07-07 22:06:51'),(148,'Boleteria Config','fa-gears','ticket_office_config',6,43,1,NULL,'2023-07-07 22:06:51','2023-07-07 22:06:51'),(149,'Créditos','fa-money','credit-coins',2,107,1,NULL,'2023-07-07 22:06:51','2023-07-07 22:06:51'),(150,'Reporte redenciones','fa-file','report_redemptions',2,137,1,NULL,'2023-07-13 13:44:35','2023-07-13 13:44:35'),(151,'Log administración','fa-list','administration_logs',8,128,1,NULL,'2023-08-14 20:46:20','2023-08-14 20:46:20'),(152,'Métodos de pago','fa-money','payment_methods',5,109,1,NULL,'2023-08-26 00:36:05','2023-08-26 00:36:05'),(153,'Niños','fa-child','academy/children',1,27,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30'),(154,'Adultos','fa-user','academy/adult',2,27,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30'),(155,'Gestión Usuarios','fa-user','student-management/adult',1,154,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30'),(156,'Monitor','fa-id-card-o','academy_user/adult',1,155,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30'),(157,'Pagos','fa-list-ul','academy_purchase/adult',2,155,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30'),(158,'Asistencias','fa-check-square-o','academy_attendances/adult',3,155,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30'),(159,'Academia config','fa-gears','academy-config/adult',2,154,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30'),(160,'Parámetros','fa-gears','academy_parameters/adult',1,159,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30'),(161,'Torneos','fa-futbol-o','academy_tournaments_module/adult',3,154,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30'),(162,'Configuración torneos','fa-gears','academy_tournaments/adult',1,161,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30'),(163,'Pagos torneos','fa-list-ul','academy_tournament_payments/adult',2,161,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30'),(164,'Gestion de documentos','fa-file','academy_document/adult',4,154,1,NULL,'2023-09-05 20:30:30','2023-09-05 20:30:30');
/*!40000 ALTER TABLE `modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notification_tags`
--

DROP TABLE IF EXISTS `notification_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notification_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `notification_id` int(10) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notification_tags_notification_id_foreign` (`notification_id`),
  KEY `notification_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notification_tags`
--

LOCK TABLES `notification_tags` WRITE;
/*!40000 ALTER TABLE `notification_tags` DISABLE KEYS */;
INSERT INTO `notification_tags` VALUES (1,1,2,'2022-12-15 14:02:26','2022-12-15 14:02:26'),(2,12,2,'2023-01-06 19:29:44','2023-01-06 19:29:44'),(3,13,2,'2023-01-13 20:36:53','2023-01-13 20:36:53'),(4,15,2,'2023-01-19 16:50:04','2023-01-19 16:50:04'),(5,26,3,'2023-03-07 13:18:27','2023-03-07 13:18:27'),(6,27,3,'2023-03-07 13:23:05','2023-03-07 13:23:05'),(7,29,4,'2023-03-17 17:52:12','2023-03-17 17:52:12'),(8,30,4,'2023-03-17 19:33:34','2023-03-17 19:33:34'),(9,31,4,'2023-04-05 15:03:49','2023-04-05 15:03:49'),(10,32,5,'2023-05-25 21:31:13','2023-05-25 21:31:13'),(11,34,5,'2023-06-21 17:58:50','2023-06-21 17:58:50'),(12,35,3,'2023-06-21 18:01:12','2023-06-21 18:01:12'),(13,36,3,'2023-06-21 18:02:24','2023-06-21 18:02:24'),(14,37,3,'2023-06-21 18:04:05','2023-06-21 18:04:05'),(15,38,3,'2023-06-21 18:09:18','2023-06-21 18:09:18'),(16,39,2,'2023-06-26 20:26:32','2023-06-26 20:26:32'),(17,39,3,'2023-06-26 20:26:32','2023-06-26 20:26:32'),(18,40,2,'2023-06-26 20:28:29','2023-06-26 20:28:29'),(19,40,3,'2023-06-26 20:28:29','2023-06-26 20:28:29'),(20,41,2,'2023-06-28 20:04:38','2023-06-28 20:04:38'),(21,41,3,'2023-06-28 20:04:38','2023-06-28 20:04:38'),(22,42,2,'2023-06-28 20:05:56','2023-06-28 20:05:56'),(23,42,3,'2023-06-28 20:05:57','2023-06-28 20:05:57'),(24,43,2,'2023-07-04 19:49:39','2023-07-04 19:49:39'),(25,43,3,'2023-07-04 19:49:40','2023-07-04 19:49:40'),(26,45,4,'2023-07-06 20:48:00','2023-07-06 20:48:00'),(27,46,4,'2023-07-08 15:41:21','2023-07-08 15:41:21');
/*!40000 ALTER TABLE `notification_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notifications`
--

DROP TABLE IF EXISTS `notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notifications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `message` text NOT NULL,
  `when_send` datetime DEFAULT NULL,
  `is_pending` tinyint(1) NOT NULL DEFAULT 0,
  `admin_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `link` text DEFAULT NULL,
  `target_city` varchar(500) DEFAULT NULL,
  `target_state` varchar(500) DEFAULT NULL,
  `target_country` varchar(500) DEFAULT NULL,
  `target_notification_id` int(10) unsigned DEFAULT NULL,
  `transactionIdSms` varchar(191) DEFAULT NULL COMMENT 'Id de la notificación del mensaje de texto',
  `notifications_origin` varchar(20) NOT NULL DEFAULT 'PUSH' COMMENT 'Indica el origen de donde se realizo la notificación',
  `reference_onesignal_notification_id` varchar(191) DEFAULT NULL COMMENT 'Indica que es el ID con el que se guarda la notificación en onesignal',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notifications_admin_id_foreign` (`admin_id`),
  KEY `notifications_target_notification_id_foreign` (`target_notification_id`),
  KEY `notifications_user_id_foreign` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notifications`
--

LOCK TABLES `notifications` WRITE;
/*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
INSERT INTO `notifications` VALUES (1,'mensaje prueba envigado','2022-12-15 11:05:00',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2022-12-15 14:02:26','2022-12-15 14:02:26'),(2,'PRUEBA NOTI','2022-12-15 11:30:00',1,11,335,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2022-12-15 14:28:18','2022-12-15 14:28:18'),(3,'HI HI','2022-12-15 11:38:00',1,11,336,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2022-12-15 14:36:29','2022-12-15 14:36:29'),(4,'TEST ENVI','2022-12-15 11:39:00',1,11,336,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2022-12-15 14:38:35','2022-12-15 14:38:35'),(5,'MENSAJE TEST','2022-12-15 11:50:00',1,11,336,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2022-12-15 14:49:14','2022-12-15 14:49:14'),(6,'TEST COMU','2022-12-15 12:02:00',1,11,337,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','6ece3511-670e-4b31-bdf0-d74aa45bdd9f',NULL,'2022-12-15 15:01:25','2022-12-15 15:01:25'),(7,'TEST JOHAN','2022-12-15 12:04:00',1,11,5,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','d0ef044d-e1e6-4a38-94b5-dcea465ca085',NULL,'2022-12-15 15:03:04','2022-12-15 15:03:04'),(8,'TEST MS','2022-12-15 12:17:00',1,11,336,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','77985cc8-9ddd-4ad7-9ddc-579107e9ad2d',NULL,'2022-12-15 15:15:19','2022-12-15 15:15:19'),(9,'Buenas tardes Familia Naranja.\n\nLes recordamos realizar las actualizaciones a los datos suministradas en la APP del Envigado FC, es importante resaltar que, si los datos de contacto pertenecen al Papá del niño, los datos del responsable serán los de la madre o en viceversa; este responsable es la persona que firma y quien se le facturara todo lo concerniente a la matricula y la mensualidad.\nMucha atención los datos de nombres y apellidos suministrados en la APP deben ser completos (apellidos y nombre completos).\nPor último, ya pueden montar los documentos requeridos en la Aplicación para ello deben descargar, diligenciar y volver a cargar.\nLa escuela saldrá a vacaciones el Área Administrativa desde este 22 de diciembre hasta el 03 de enero 2023.\nFelices Fiestas !.','2022-12-19 14:00:00',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','e76b37f6-328f-4436-93f4-eaee3a53044e',NULL,'2022-12-19 13:58:37','2022-12-19 13:58:38'),(10,'Recuerda que debes Actualizar los datos  de la Escuela  en la Aplicación del Envigado FC.\nNo olvides datos completos Nombres y  Apellidos .','2022-12-20 10:00:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','03c47f99-4364-44fd-af0f-b7cc457213e3',NULL,'2022-12-20 12:34:47','2022-12-20 12:34:48'),(11,'Familia Naranja Feliz Año Bendiciones para todos y todas !\n\nLes recordamos que a partir de la próxima semana iniciamos proceso de matriculas por la APP Envigado FC; deben estar atentos a la comunicación por parte de  nuestra escuela para realizar adecuadamente el proceso del pago  de la matricula.\n\nLes recordamos que los entrenamientos inician a partir del mes Febrero.','2023-01-05 12:00:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','db472e5c-be90-43bd-929c-3f896020d4dd',NULL,'2023-01-05 12:56:30','2023-01-05 12:56:31'),(12,'Hola buenas tardes  padres de familia por favor hasta el día martes 10 de Enero deben cargar los documentos requeridos  en la plataforma del Envigado FC, deben de descargar, firmar y volver a cargar los documentos del contrato y la ficha de matricula , complementado con el registro civil , el certificado de la eps , y la cedula de la responsable de la firma del contrato.','2023-01-06 17:00:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-01-06 19:29:44','2023-01-06 19:29:44'),(13,'Buenas tardes padres de Familia , en este momento nos encontramos en proceso de revisión de la Documentación , por favor quienes faltan ,deben realizarlo de manera completa cada uno de los formatos ; por otro lado, la otra semana estaremos liberando en la aplicación quienes tengan todo listo  para realizar los pagos. Ojo... NO SE PUEDEN HACER  PAGOS POR OTROS MEDIOS DISTINTOS A LA  APLICACION. Feliz fin de Semana !','2023-01-13 18:00:00',1,24,NULL,'Recorderis',NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-01-13 20:36:53','2023-01-13 20:36:53'),(14,'Hola buenas tardes padres de Familia , estamos realizando las pruebas necesarias para el proceso de pagos , a traves, de los grupos deportivos y los profesores informaran oportunamente como y cuando realizar los pagos ,  de antemo aprovecho este medio para despedirme como coordinador de la Escuela fue un placer muy grande compartir con cada uno de ustedes y sus hijos Dios los bendiga a  todos ! Giovanny Acevedo Castro .','2023-01-19 16:00:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-01-19 16:49:15','2023-01-19 16:49:15'),(15,'Hola buenas tardes padres de Familia , estamos realizando las pruebas necesarias para el proceso de pagos , a través de los grupos deportivos y los profesores informaran oportunamente como y cuando realizar los pagos ,  de antemano aprovecho este medio para despedirme como coordinador de la Escuela fue un placer muy grande compartir con cada uno de ustedes y sus hijos Dios los bendiga a  todos ! Giovanny Acevedo Castro .','2023-01-19 16:00:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-01-19 16:50:04','2023-01-19 16:50:04'),(16,'Buenas tardes padres de familia, les agradezco el apoyo y el acompañamiento durante estos 2 años al frente de la coordinación de la escuela de fútbol de la mejor cantera del país. Les deseo muchos éxitos y bendiciones, gracias por todo.\nGiovanny Acevedo Castro.','2023-01-20 12:30:00',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-01-20 14:36:56','2023-01-20 14:36:56'),(17,'Buenas tardes padres de familia, les agradezco el apoyo y el acompañamiento durante estos 2 años al frente de la coordinación de la escuela de fútbol de la mejor cantera del país. Les deseo muchos éxitos y bendiciones, gracias por todo.\nGiovanny Acevedo Castro.','2023-01-20 12:30:00',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-01-20 14:37:23','2023-01-20 14:37:23'),(18,'Buenas tardes padres de familia, les agradezco el apoyo y el acompañamiento durante estos 2 años al frente de la coordinación de la escuela de fútbol de la mejor cantera del país. Les deseo muchos éxitos y bendiciones, gracias por todo.\nGiovanny Acevedo Castro.','2023-01-20 12:30:00',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-01-20 14:37:52','2023-01-20 14:37:52'),(19,'Buenas tardes padres de familia, les agradezco el apoyo y el acompañamiento durante estos 2 años al frente de la coordinación de la escuela de fútbol de la mejor cantera del país. Les deseo muchos éxitos y bendiciones, gracias por todo.\nGiovanny Acevedo Castro.','2023-01-20 12:30:00',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-01-20 14:38:04','2023-01-20 14:38:04'),(20,'Buenas tardes padres de familia, les agradezco el apoyo y el acompañamiento durante estos 2 años al frente de la coordinación de la escuela de fútbol de la mejor cantera del país. Les deseo muchos éxitos y bendiciones, gracias por todo.\nGiovanny Acevedo Castro.','2023-01-20 12:30:00',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-01-20 14:44:31','2023-01-20 14:44:31'),(21,'Envigado FC','2023-01-20 19:11:00',1,1,458,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','d58cbf2f-6d3e-4bf2-967d-23c7b11d44d8',NULL,'2023-01-20 22:09:50','2023-01-20 22:09:50'),(22,'Buenas tardes padres de familia, les agradezco el apoyo y el acompañamiento durante estos 2 años al frente de la coordinación de la escuela de fútbol de la mejor cantera del país. Les deseo muchos éxitos y bendiciones, gracias por todo. Giovanny Acevedo Castro.','2023-01-20 19:30:00',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','e4644340-81ca-4638-a23e-5a69f43da2ec',NULL,'2023-01-20 22:15:24','2023-01-20 22:15:24'),(23,'¿YA CONOCES NUESTRA NUEVA CAMISETA 2023?  😍 ¡PREVENTA EXCLUSIVA EN NUESTRA APP! SÉ EL PRIMERO EN TENER LA CAMISETA MÁS BONITA DEL FPC ⚽','2023-01-25 13:15:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','96c6b6f8-3d1b-4800-9f7d-15567409ad36',NULL,'2023-01-25 16:03:50','2023-01-25 16:03:50'),(24,'👀⚽ Con el Abono 2023-I partidos vs DIM y Nacional a $8.000* 😱 ¡Abónate en la APP con el descuento y recibe las boletas para el partido de mañana vs Equidad!','2023-01-27 08:00:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','037a6ce0-4ca0-4b88-bb76-97b825dbbe71',NULL,'2023-01-27 08:48:15','2023-01-27 08:48:15'),(25,'MATCHDAY ⚽ 💪 EFC VS EQUIDAD / 3:10PM / DITAIRES / BOLETAS 2X1 EN TUBOLETA. ¡VAMOS ENVIGADO!','2023-01-28 08:30:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','b2d474f3-f913-434f-8c2c-10cd0410858d',NULL,'2023-01-28 11:06:30','2023-01-28 11:06:30'),(26,'No olvides!!!Realizar el pago del mes de febrero por medio de la app.','2023-03-07 10:30:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,'2023-03-07 13:19:53','2023-03-07 13:18:27','2023-03-07 13:19:53'),(27,'👪Recuerda, Realizar el pago 💵 del mes de Febrero por medio de la app.  🍊 ⚽ 🏃 🥉','2023-03-07 10:30:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-03-07 13:23:05','2023-03-07 13:23:05'),(28,'Cordial Saludo Familia Naranja  🧡  🍊 ⚽. La coordinación operativa de la escuela le informa que al día de hoy no se encuentra finalizado el proceso de matricula del menor a cargo; se le entregara su cupo a otro deportista interesado sino finaliza el proceso al 20 de marzo de 2023. Feliz Dia!!!','2023-03-17 15:00:00',1,24,412,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','8652d762-b673-432b-bdc9-9dd734b77541','2023-03-17 17:43:43','2023-03-17 17:43:04','2023-03-17 17:43:43'),(29,'Cordial Saludo Familia Naranja 🧡 🍊 ⚽. La coordinación operativa de la escuela le informa que al día de hoy no se encuentra finalizado el proceso de matrícula del menor a cargo; se le entregara su cupo a otro deportista interesado sino finaliza el proceso al 20 de marzo de 2023. ¡¡¡Feliz Dia!!!','2023-03-17 15:00:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-03-17 17:52:12','2023-03-17 17:52:12'),(30,'Cordial Saludo, Familia Naranja👪 🧡 🍊 ⚽Recuerda, Realizar el pago 💵 del mes de Febrero por medio de la app. 🍊 ⚽ 🏃 🥉','2023-03-17 16:45:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-03-17 19:33:34','2023-03-17 19:33:34'),(31,'👪Cordial Saludo Familia Naranja. Recuerda realizar el pago 💵 del mes de Febrero por medio de la app. 🍊 ⚽ 🏃 🥉Los deportistas en mora serán retirados de sus entrenamientos.','2023-04-05 11:15:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-04-05 15:03:49','2023-04-05 15:03:49'),(32,'Hola Envigado','2023-05-25 16:32:00',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-05-25 21:31:13','2023-05-25 21:31:13'),(33,'👀⚽ Con el Abono \"La Familia Naranja\", partidos vs Millonarios y América a $5.300* 😱 ¡Abónate en la APP con el 20% descuento y acompáñanos el otro semestre!','2023-06-21 12:57:00',1,39,470,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','6c33bbbe-1dde-4605-855b-cd6f8f37bbb1',NULL,'2023-06-21 17:57:21','2023-06-21 17:57:21'),(34,'👀⚽ Con el Abono \"La Familia Naranja\", partidos vs Millonarios y América a $5.300* 😱 ¡Abónate en la APP con el 20% descuento y acompáñanos el otro semestre!','2023-06-21 12:59:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-06-21 17:58:50','2023-06-21 17:58:50'),(35,'👀⚽ Con el Abono \"La Familia Naranja\", partidos vs Millonarios y América a $5.300 😱 ¡Abónate en la APP con el 20% descuento y acompáñanos el otro semestre! 🧡','2023-06-21 13:30:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,'2023-06-21 18:10:29','2023-06-21 18:01:12','2023-06-21 18:10:29'),(36,'👀⚽ Con el Abono \"La Familia Naranja\", partidos vs Millonarios y América a $5.300 😱 ¡Abónate en la APP con el 20% descuento y acompáñanos el otro semestre! 🧡','2023-06-21 13:30:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,'2023-06-21 18:10:23','2023-06-21 18:02:24','2023-06-21 18:10:23'),(37,'👀⚽ Con el Abono \"La Familia Naranja\", partidos vs Millonarios y América a $5.300 😱 ¡Abónate en la APP con el 20% descuento y acompáñanos el otro semestre! 🧡','2023-06-21 13:30:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-06-21 18:04:05','2023-06-21 18:04:05'),(38,'👀⚽ Con el Abono \"La Familia Naranja\", partidos vs Millonarios y América a $5.300 😱 ¡Abónate en la APP con el 20% descuento y acompáñanos el otro semestre! 🧡','2023-06-21 13:30:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,'2023-06-21 18:10:11','2023-06-21 18:09:18','2023-06-21 18:10:11'),(39,'⏳Cada vez más cerca de ver jugar a nuestro equipo 🧡 No te quedes sin abonarte y acompáñanos el próximo semestre con boletas a tan solo $5.300 con \"La Familia Naranja\" ⚽','2023-06-26 15:30:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-06-26 20:26:32','2023-06-26 20:26:32'),(40,'⏳Cada vez más cerca de ver jugar a nuestro equipo 🧡 No te quedes sin abonarte y acompáñanos el próximo semestre con boletas a tan solo $5.300 con \"La Familia Naranja\" ⚽','2023-06-26 15:30:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,'2023-06-26 20:29:10','2023-06-26 20:28:29','2023-06-26 20:29:10'),(41,'⏳Últimos días con el 20% de descuento en la compra del abono 2023-II 🧡 No dejes pasar la oportunidad de acompañar a tu familia naranja este semestre 🤩','2023-06-28 15:15:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-06-28 20:04:38','2023-06-28 20:04:38'),(42,'⏳Últimos días con el 20% de descuento en la compra del abono 2023-II 🧡 No dejes pasar la oportunidad de acompañar a tu familia naranja este semestre 🤩','2023-06-28 15:15:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,'2023-06-28 20:06:21','2023-06-28 20:05:56','2023-06-28 20:06:21'),(43,'‼️Último día con el 20% de descuento😱 en los abonos 🧡 No dejes pasar este gran descuento y acompáñanos este semestre 🫶🏼✨','2023-07-04 15:00:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-07-04 19:49:39','2023-07-04 19:49:39'),(44,'⏳ Últimas horas para aprovechar el 20% de descuento en los abonos 🧡 ¡No dejes pasar la oportunidad! 😱','2023-07-04 18:15:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH','89598bc5-60e1-4482-822a-6c75517a958d',NULL,'2023-07-04 23:01:20','2023-07-04 23:01:20'),(45,'Recuerda realizar el pago 💵 de tus mensualidades en mora por medio de la app. 🍊 ⚽ 🏃 🥉Los deportistas en mora serán retirados de sus entrenamientos.','2023-07-06 16:00:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-07-06 20:48:00','2023-07-06 20:48:00'),(46,'Familia 🍊 ⚽ Recuerda  que el pago de la inscripción no cubre la mensualidad del mes de junio, al día de hoy te encuentras en mora en el mes de junio del deportista matriculado; no olvides realizar el pago 💵 de tus mensualidades en mora por medio de la app. 🍊 ⚽ 🏃 🥉Los deportistas en mora serán retirados de sus entrenamientos.','2023-07-08 11:00:00',1,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-07-08 15:41:21','2023-07-08 15:41:21'),(47,'😱¿Todavía no haz comprado tu abono? Aprovecha los últimos días con el 10% de descuento 🚨y vamos todos juntos al Poli desde este viernes en el partido Envigado FC vs Bucaramanga  🧡','2023-07-12 14:00:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-07-12 18:52:36','2023-07-12 18:52:36'),(48,'¡Hola familia Naranja! 🧡\n\nSe extiende la fecha para abonarte en el semestre 2023-ll, hasta el día 14 de agosto, 2023.','2023-08-10 15:24:00',1,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-08-10 20:21:21','2023-08-10 20:21:21'),(49,'Hola Andrea! Gracia por tu apoyo','2023-08-10 17:21:00',1,9,800,NULL,NULL,NULL,NULL,NULL,NULL,'PUSH',NULL,NULL,'2023-08-10 22:19:56','2023-08-10 22:19:56');
/*!40000 ALTER TABLE `notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_access_tokens`
--

DROP TABLE IF EXISTS `oauth_access_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_access_tokens` (
  `id` varchar(100) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `client_id` int(10) unsigned NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `scopes` text DEFAULT NULL,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `expires_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_access_tokens_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_access_tokens`
--

LOCK TABLES `oauth_access_tokens` WRITE;
/*!40000 ALTER TABLE `oauth_access_tokens` DISABLE KEYS */;
INSERT INTO `oauth_access_tokens` VALUES ('000544baf7080ff9a2290f2a9377398dee36e074ed0f85773ddc4e93fb7076d9b3aaef53c86cc210',1568,1,NULL,'[\"user-app\"]',0,'2023-07-06 02:39:54','2023-07-06 02:39:54','2024-07-04 21:39:54'),('000d1b11ff7f951cd09b5a12f0130f7a08ac4b3238a1c9b698c9e93b48a2ee384f80ba1f1d3718c0',1769,1,NULL,'[\"user-app\"]',0,'2023-07-15 22:17:34','2023-07-15 22:17:34','2024-07-14 17:17:34'),('001019fbc55c7175caf748d38e736fa8b18f862c34c47e6844c351bfbd1364804883d56ceafff549',1227,1,NULL,'[\"user-app\"]',0,'2023-04-01 17:11:50','2023-04-01 17:11:50','2024-03-31 14:11:50'),('00263169648fb77785d92345a61504153aadd142d12db0129d93cbec44d2a9ac8d249d7389a0c804',2,1,NULL,'[\"user-app\"]',0,'2023-07-21 21:42:34','2023-07-21 21:42:34','2024-07-20 16:42:34'),('00588669ac519c9665222ed954938eccb845a9b67ef1037cdb47842be4de0f3f4e68a2bd03444334',1437,1,NULL,'[\"user-app\"]',0,'2023-07-05 22:29:24','2023-07-05 22:29:24','2024-07-04 17:29:24'),('0068fe13c4f369de91d8b420fd27b3f5eedc79d1b9fef023f8bad1984c3582308d2e1de37e927c8b',814,1,NULL,'[\"user-app\"]',0,'2023-01-31 11:27:21','2023-01-31 11:27:21','2024-01-31 08:27:21'),('007bc49dfc0537238eadeb64fbb14733b2888e22a43610a5283a8afb717da98552e50b021d05554e',994,1,NULL,'[\"user-app\"]',0,'2023-02-19 21:14:11','2023-02-19 21:14:11','2024-02-19 18:14:11'),('0083437022b8d6f506087f6e2a414da1dbf2fdcbff53d6815185e3276157645c80f5da4b938c215c',2,1,NULL,'[\"user-app\"]',0,'2023-08-19 18:46:08','2023-08-19 18:46:08','2024-08-18 13:46:08'),('008e870f12324ec43df8bed126aa7fc222dfec4d1f025e9c2c7ad509e50f102da849e239479db628',2,1,NULL,'[\"user-app\"]',0,'2023-02-21 20:24:53','2023-02-21 20:24:53','2024-02-21 17:24:53'),('00b89c85030dc247d67f3f31373601f7d3b4afb5b592a57836a83c4569ea520eb8c0b9ced24ebcdc',1744,1,NULL,'[\"user-app\"]',0,'2023-07-12 17:37:02','2023-07-12 17:37:02','2024-07-11 12:37:01'),('00ce432465a4389eb6d41dcf4048d2dca483e23a862b8a4e6c1f01d8bd24d14586ab31993e8a6253',1999,1,NULL,'[\"user-app\"]',0,'2023-09-21 16:48:02','2023-09-21 16:48:02','2024-09-20 11:48:02'),('00e0620e76f9d29b3746d97632271371d0da14b6834f61f00d01d2a41242ebfe66e95fc0022ea71d',1567,1,NULL,'[\"user-app\"]',0,'2023-06-15 01:56:44','2023-06-15 01:56:44','2024-06-13 20:56:44'),('00e4e5cdead07284970b53a93f76e81eaac92519df3b1ef343a69047c5fa97599277ab08fba7020f',1046,1,NULL,'[\"user-app\"]',0,'2023-09-04 20:14:14','2023-09-04 20:14:14','2024-09-03 15:14:14'),('00e826f957e25e3c383e3c8821d755622f37dc1a34762457f0f65f921623fdf8709c4c25fee07385',106,1,NULL,'[\"user-app\"]',0,'2023-03-29 20:29:27','2023-03-29 20:29:27','2024-03-28 17:29:27'),('00f5308eebf27e8a1da591214b63ad04fdda22875def7f1e4f18716a9d3d1f799555922260d479a3',630,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:01:33','2023-01-25 03:01:33','2024-01-25 00:01:33'),('00f87571bec73c093b0d3a4aa16c632c4ce29ab3b6ce71837a8796531ce5cffc99666fff2602a8cc',1786,1,NULL,'[\"user-app\"]',0,'2023-07-20 03:55:08','2023-07-20 03:55:08','2024-07-18 22:55:08'),('00fc5368c225fa615a1a188740ac3cf22b26fce7998d9612140ab3e540a8b71ad4c33344735dfc51',2,1,NULL,'[\"user-app\"]',0,'2023-10-04 10:24:21','2023-10-04 10:24:21','2024-10-03 05:24:21'),('00ff6030e5c5fbef8da482ce37687954cd1efa7368c7c208a92dc915f52ff5b39e2addacf6c13966',1481,1,NULL,'[\"user-app\"]',0,'2023-05-18 22:35:39','2023-05-18 22:35:39','2024-05-17 17:35:39'),('0110c1123f7cb2c581ac524f4419ca983242780c80a931ef09dc507dffe676de299f3c7b24f1941f',2,1,NULL,'[\"user-app\"]',0,'2023-09-23 17:18:59','2023-09-23 17:18:59','2024-09-22 12:18:59'),('01144ae98436f0d42b44c561e4cd16e7e190a24748ad47c6eb965933a4085e730df2087691282841',844,1,NULL,'[\"user-app\"]',0,'2023-02-02 10:23:48','2023-02-02 10:23:48','2024-02-02 07:23:48'),('01236a13eea170969e58cdb1e54479203ea67973a308cf65041b1908b885377bed707c487ce96936',1929,1,NULL,'[\"user-app\"]',0,'2023-08-30 04:18:13','2023-08-30 04:18:13','2024-08-28 23:18:13'),('0128c3d66c8cb3ab4b200000c99c9c5b8d7fac33aef9c0dd910007ebb882de052c9f3a6445ff00ba',1787,1,NULL,'[\"user-app\"]',0,'2023-07-20 20:11:31','2023-07-20 20:11:31','2024-07-19 15:11:31'),('012fae97dcd5ec40f625386585ae86a7ee87c2694423535e1d5bb618e83ddc11f14add78b7540960',2,1,NULL,'[\"user-app\"]',0,'2023-08-15 16:51:21','2023-08-15 16:51:21','2024-08-14 11:51:21'),('0136eceed8077076873aca1b98bef2c52d48e694f8f5fa7e6f39f5c92bdefe2a7531df148a6ee620',953,1,NULL,'[\"user-app\"]',0,'2023-06-05 19:18:49','2023-06-05 19:18:49','2024-06-04 14:18:49'),('0165228601e170729e8674a5ff13948c954796c4e4480f05307210df50fa1049a75aa0e13b34bcf3',1564,1,NULL,'[\"user-app\"]',0,'2023-06-14 00:39:17','2023-06-14 00:39:17','2024-06-12 19:39:17'),('016a926e94e3b03bf09afe0c2b49d06547dea3f6f7efdeac1734217bc28d547a6fe8b15beaf4db5b',2,1,NULL,'[\"user-app\"]',0,'2023-05-24 01:01:04','2023-05-24 01:01:04','2024-05-22 20:01:04'),('016abb05fe466f113f3e6084c9233e88ac617600969a52c77d3e9059241f360473190bbda02b800d',1494,1,NULL,'[\"user-app\"]',0,'2023-05-24 02:46:49','2023-05-24 02:46:49','2024-05-22 21:46:49'),('016f5f8325d9192e17a305d4e40f4a167d34679276030b6d53c23eac09c281d6d614bff19337e3fa',792,1,NULL,'[\"user-app\"]',0,'2023-01-29 01:48:19','2023-01-29 01:48:19','2024-01-28 22:48:19'),('0170e71bdaa0b98943d78c53daf419827c532cc3ce9b9098cce42030a7b74c0b3a744a51382e5cd7',602,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:32:11','2023-01-25 15:32:11','2024-01-25 12:32:11'),('01757b949022b2d697a3923ae7e5669c869800857de73a3a5e2d17c321f07838974d0e165ee62ec3',174,1,NULL,'[\"user-app\"]',0,'2023-01-26 18:33:45','2023-01-26 18:33:45','2024-01-26 15:33:45'),('01844752f99c78e6d6275755ad441ee1f13b122e57fbc8e05ecd87667fa9d928f44d77117f259fc6',710,1,NULL,'[\"user-app\"]',0,'2023-01-25 22:15:03','2023-01-25 22:15:03','2024-01-25 19:15:03'),('0188f0cd65885cd8f4b346c376b7df168740a17b339e65ce67695fc0308828fd87d1746803f1c2f0',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 20:30:58','2023-05-01 20:30:58','2024-04-30 16:30:58'),('01b77699fc429cff6d66e4a4ac3ea1ee7d1e89ad3032ab53b7ceeb55ec025a376c3381119f513819',1052,1,NULL,'[\"user-app\"]',0,'2023-08-03 04:43:07','2023-08-03 04:43:07','2024-08-01 23:43:07'),('01e93cecf95b73b49a2f49a53b77422bd5905a7784c7a1141649aabb7fdb84f14752695fc31566a8',2,1,NULL,'[\"user-app\"]',0,'2023-02-20 18:05:29','2023-02-20 18:05:29','2024-02-20 15:05:29'),('021dedbb031d806ea5c32b0179183a9ce6703456c7045e94767edbdf9eb7f766bed894bb213d6e39',884,1,NULL,'[\"user-app\"]',0,'2023-02-08 17:24:16','2023-02-08 17:24:16','2024-02-08 14:24:16'),('021eacf958f743f3916a054b1a1cdaedf6b91680b701e3e238e2d4a296fdd74c9149c9fffb236ace',1180,1,NULL,'[\"user-app\"]',0,'2023-03-22 22:04:09','2023-03-22 22:04:09','2024-03-21 19:04:09'),('0224293b224a4d30988569c03f7d46575b130f54d958ee06fe20a6039a3ec5e0c727a7918d58cf47',833,1,NULL,'[\"user-app\"]',0,'2023-02-01 14:19:14','2023-02-01 14:19:14','2024-02-01 11:19:14'),('0225f84207850a7bd383e8411b914afc1f1a6439f69d2c5cf45504de4aa6840c63c7a58272a51478',2,1,NULL,'[\"user-app\"]',0,'2023-07-26 00:03:52','2023-07-26 00:03:52','2024-07-24 19:03:52'),('024a9a0f61631d103b839c49ea8234674559fdc83122dfda827ea0a91778cded83ecdade6d28ace8',1865,1,NULL,'[\"user-app\"]',0,'2023-08-06 16:10:49','2023-08-06 16:10:49','2024-08-05 11:10:49'),('025dcd29244265eca5b285f5a39350648ca6193e42cef02d67008f240c204c35f96847471bb06b1b',961,1,NULL,'[\"user-app\"]',0,'2023-02-17 09:43:31','2023-02-17 09:43:31','2024-02-17 06:43:31'),('025f4438d0557e5e5e083fad771431abf97b8b33fa37df2c159bc9d2f060d488438d86eff96d5253',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 20:12:52','2023-09-04 20:12:52','2024-09-03 15:12:52'),('0264f4e50097460a934c61fad792cd1995f8ff05fb716cadfbb5f2fd359b70b41049cbbe8b1eeee7',2,1,NULL,'[\"user-app\"]',0,'2023-03-03 16:21:55','2023-03-03 16:21:55','2024-03-02 13:21:55'),('0280911e89e91d5415b90aef2e035200ed017b5421213872ecd90b969b8c47a83b43937343454595',1893,1,NULL,'[\"user-app\"]',0,'2023-08-18 01:22:34','2023-08-18 01:22:34','2024-08-16 20:22:34'),('029dbda730384bc09c16cc34e031a9be8577e625ed8d5d2361003e81d3d39154199a9b2c715e53e9',1194,1,NULL,'[\"user-app\"]',0,'2023-03-25 08:17:13','2023-03-25 08:17:13','2024-03-24 05:17:13'),('02aecbcc7c9b26562df48188765efa527cd81ce67d999d87a5b3d2d14d081082ca45e2a3c6300078',2,1,NULL,'[\"user-app\"]',0,'2023-03-22 20:43:13','2023-03-22 20:43:13','2024-03-21 17:43:13'),('02cc7de98a9b96f915ebbbd90295e7a4be35f81dcbe9a17e5e972c7d59bc724a6a0789fa51289fc2',198,1,NULL,'[\"user-app\"]',0,'2023-06-23 00:39:41','2023-06-23 00:39:41','2024-06-21 19:39:41'),('02ddfe9742ddd18751f631ca8beb7c4c94c7a5d7d26691e3569dd397448ffa4ca13fef12d516fa67',2,1,NULL,'[\"user-app\"]',0,'2023-08-21 06:06:52','2023-08-21 06:06:52','2024-08-20 01:06:52'),('02e13a269a60d7bc2e54ba1452f7840bcd96e2a82332794cee46e33d49074ffbf7ab5d129efcd53d',651,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:03:56','2023-01-25 12:03:56','2024-01-25 09:03:56'),('030288d834c9ec80c63a0aa03988f8135960876947e7b007b96368d13d6821d269b1c4728138927c',245,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:24:29','2023-01-25 12:24:29','2024-01-25 09:24:29'),('030fa32d539187269e238ff2f567484d22bddbd9f21778e7d582f4ba5dc4c78757724e9b1c4a8a09',2,1,NULL,'[\"user-app\"]',0,'2023-02-22 17:50:21','2023-02-22 17:50:21','2024-02-22 14:50:21'),('0317cca6736f1cfc9d9f5393c62c07aadf83a25bdb8ecbf67f891c8424e0379b3327a347186a4d10',2,1,NULL,'[\"user-app\"]',0,'2023-08-17 02:07:24','2023-08-17 02:07:24','2024-08-15 21:07:24'),('031edfbeaa94e7418b96445b63ea8ffdffff1079a9afa34573216585db8e63c6fc0c3e8990a10626',1446,1,NULL,'[\"user-app\"]',0,'2023-05-14 16:45:07','2023-05-14 16:45:07','2024-05-13 12:45:07'),('032a552f4061ae3ceeb0b609d970214e5704f3a7d542b5119e8ec461d8a1a87f5659726dd183793a',996,1,NULL,'[\"user-app\"]',0,'2023-02-20 14:13:21','2023-02-20 14:13:21','2024-02-20 11:13:21'),('032ce115afdaec1fa83cb485922680cbf4e5aea9fceb84e3dddf58d5e5ff0b1a9bae30f26d4da02f',5,1,NULL,'[\"user-app\"]',0,'2023-02-15 13:29:02','2023-02-15 13:29:02','2024-02-15 10:29:02'),('033a789b6d31a2f9828e5db4e13a523278ccaa0e96368be09abe76af16a63e3d6526c3b0549af53e',1595,1,NULL,'[\"user-app\"]',0,'2023-06-18 17:47:49','2023-06-18 17:47:49','2024-06-17 12:47:49'),('0342d2133b16761e9b93dea11fb5cb8758630586a5946768dc193ddfdcc4798c036c0359d0c6540f',1270,1,NULL,'[\"user-app\"]',0,'2023-04-18 14:45:05','2023-04-18 14:45:05','2024-04-17 10:45:05'),('036035b3a329715e967fd99f5953de6411571f22bb4adcad495bfc692ff159b4783fd2b011aae7f2',550,1,NULL,'[\"user-app\"]',0,'2023-02-24 23:42:55','2023-02-24 23:42:55','2024-02-24 20:42:55'),('0386e94a524da3cf1af6284edb6bad543a596b74cfbf1d90608bc12b1749cb0fae47465ca083b5e8',1431,1,NULL,'[\"user-app\"]',0,'2023-05-16 12:21:04','2023-05-16 12:21:04','2024-05-15 08:21:04'),('03a910e64d8e7a9869ea4b7e907224f04060a7a3c73a09f687da710063174a0306e1f2e81f1069e4',2,1,NULL,'[\"user-app\"]',0,'2023-09-08 02:17:32','2023-09-08 02:17:32','2024-09-06 21:17:32'),('03b2b7b0c679e12885c0cc3c932eb0de8d4c783d8cbdf1663f0546c2202e7fa6c035d63da11cc129',134,1,NULL,'[\"user-app\"]',0,'2023-09-05 18:54:16','2023-09-05 18:54:16','2024-09-04 13:54:16'),('03bec3c60d0b9e371240931b93c1e2d738825edf45ae031207cc70e6f85f091840d57c513eda92d9',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 20:50:11','2023-09-04 20:50:11','2024-09-03 15:50:11'),('03d22645634ed5bcd3832b4d641a47cb1298cd61d42fb9231c54c84992afc18f7148f53a87a8243b',8,1,NULL,'[\"user-app\"]',0,'2023-06-22 16:38:42','2023-06-22 16:38:42','2024-06-21 11:38:42'),('03e4bce2de74c4136dae2be979000db327c1f92d2d779716e6658a40841a734133403c8ce858fda0',653,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:12:14','2023-01-25 12:12:14','2024-01-25 09:12:14'),('03fb6daea4cf28dbd92c4f7af02a635900cc393ce1234fd7bd36bc8e5aa337fd32ace66ff64c0cd6',477,1,NULL,'[\"user-app\"]',0,'2023-10-06 23:39:20','2023-10-06 23:39:20','2024-10-05 18:39:20'),('040535543836dad5f46757ffb2d27e4b4be6ef7f56fc7fd393ca2032b8a6674523bcd5dc07fa415a',1026,1,NULL,'[\"user-app\"]',0,'2023-02-21 22:27:31','2023-02-21 22:27:31','2024-02-21 19:27:31'),('041e30da9f8ff1a4fb6e095dfbdfbb5e042a36f7bc93eaabb59047b24a0a459dd0a584ec3026d5c0',1633,1,NULL,'[\"user-app\"]',0,'2023-08-04 01:51:08','2023-08-04 01:51:08','2024-08-02 20:51:08'),('0420dd2b07cc9126da475650c102aa25c0efeaf21ef9d8f311f3f5b2fb89ef12d3e51734c4cb0bec',120,1,NULL,'[\"user-app\"]',0,'2023-02-23 20:28:54','2023-02-23 20:28:54','2024-02-23 17:28:54'),('04231d1a6cf98c5eb08dc31eeea53a5cb110d269e78bd3715396228213e32300299eaf175fb0ea9d',8,1,NULL,'[\"user-app\"]',0,'2023-02-20 16:12:10','2023-02-20 16:12:10','2024-02-20 13:12:10'),('042e97e672895f830bcb5aec812faf55e52a989b0b7663a065b88ac3122e139f83b58e73b4ff91bd',1700,1,NULL,'[\"user-app\"]',0,'2023-07-05 13:47:33','2023-07-05 13:47:33','2024-07-04 08:47:33'),('0441f442a3c12610d176c55e59da17be1ab1c4e19772b2fc6a1dad6918d66df62c50485b2b74ec20',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 02:28:40','2023-09-25 02:28:40','2024-09-23 21:28:40'),('0449f227be31b1edaea494a085bbdf40ad7c4a0641f51457c138c0f630c74945cebec65b6f813dc5',480,1,NULL,'[\"user-app\"]',0,'2023-01-28 10:20:25','2023-01-28 10:20:25','2024-01-28 07:20:25'),('0456f22633e1b323d89cc27cad72f5f1e534aef07c5e7d78eacb6190c71b91f85690eb1cc433a046',1085,1,NULL,'[\"user-app\"]',0,'2023-02-26 16:54:51','2023-02-26 16:54:51','2024-02-26 13:54:51'),('045762ee2716d7496ec7fb8e67e2fb8ed23981772417ede1c1eb5af9cfa3016f3d6d3985a3b8ddcb',1407,1,NULL,'[\"user-app\"]',0,'2023-05-17 17:02:46','2023-05-17 17:02:46','2024-05-16 13:02:46'),('0479ec341095782af860c8fc12a37eec6feada0aa1970467285b9ca0be8caddb724b139089d97626',466,1,NULL,'[\"user-app\"]',0,'2023-10-04 03:32:24','2023-10-04 03:32:24','2024-10-02 22:32:24'),('0492ec3a89fbcb66b16eb5f2055e0fac67679496c227b329309a330e073127a2c56529db02b06066',755,1,NULL,'[\"user-app\"]',0,'2023-03-18 15:41:18','2023-03-18 15:41:18','2024-03-17 12:41:18'),('0495afe3594e6f018cd63cf026139782f29223f239330268bcbf9df7337383f444efc11e85002aee',2,1,NULL,'[\"user-app\"]',0,'2023-07-07 16:10:16','2023-07-07 16:10:16','2024-07-06 11:10:16'),('04bf224ee51326262cbcf04cd5a0ce247ade06c7b30175f6d6adf397a1fc0b12320bb372fbf3e889',830,1,NULL,'[\"user-app\"]',0,'2023-02-02 15:08:57','2023-02-02 15:08:57','2024-02-02 12:08:57'),('04c6f8aeb7015caaa2a6fb6681cf2993f77595e1b25bb67fbcca80b314af52a55ef824b5d75ee227',388,1,NULL,'[\"user-app\"]',0,'2023-07-14 19:47:08','2023-07-14 19:47:08','2024-07-13 14:47:08'),('04d0d8fe92f5430e9f2a438d765df7bdc00043f4407b445350a611eccd24e5e0524692d255d48236',1618,1,NULL,'[\"user-app\"]',0,'2023-06-22 04:31:45','2023-06-22 04:31:45','2024-06-20 23:31:45'),('04d35bf0fa2af7a3c7c4e770afe161d5fedc16fe0d69cf880d149bb49c9f1a01e1ecc414d5f129ea',940,1,NULL,'[\"user-app\"]',0,'2023-02-16 11:03:25','2023-02-16 11:03:25','2024-02-16 08:03:25'),('04d558d6637dde0641481edcd4da2a802d7f99a75a890934a5b24327a30ac6fed132ca7aa29d8f03',838,1,NULL,'[\"user-app\"]',0,'2023-02-03 00:08:33','2023-02-03 00:08:33','2024-02-02 21:08:33'),('04e772518ee53c7a789f1fca14b9dbdbd3e97e4c3496c56ab384d604f234a07431caa81387c77123',1005,1,NULL,'[\"user-app\"]',0,'2023-02-20 22:31:07','2023-02-20 22:31:07','2024-02-20 19:31:07'),('04ec8c6a01aa49621f2b95d31dc2b3e12552cc5b5c409f2a278d67f77d798da195be7333620d7e14',1870,1,NULL,'[\"user-app\"]',0,'2023-08-09 22:27:11','2023-08-09 22:27:11','2024-08-08 17:27:10'),('04ece7514f247a0eb9e61f4b644bc9c6f5e1a39da134d2b72490140eb862c6479a0e9747fc439c0b',2,1,NULL,'[\"user-app\"]',0,'2023-05-18 03:50:54','2023-05-18 03:50:54','2024-05-16 22:50:54'),('04f585aba535e4e8f0141dc44aecd00da47aab92872efa7d20f18c723f3a80643446e6e38fbb548e',1501,1,NULL,'[\"user-app\"]',0,'2023-07-07 15:46:34','2023-07-07 15:46:34','2024-07-06 10:46:34'),('04faea3e6454eecaefa56c8b81e4c70d0f3f37cbc67c39e24cab2e3d581028e01317062e3d6e8023',2,1,NULL,'[\"user-app\"]',0,'2023-02-27 19:05:26','2023-02-27 19:05:26','2024-02-27 16:05:26'),('050a4534970f3f0fe11a49d3ce4bca34835e910b8454aa61c2fcc52d8d34edf3635eb7ab86d2c554',1688,1,NULL,'[\"user-app\"]',0,'2023-07-03 13:10:24','2023-07-03 13:10:24','2024-07-02 08:10:24'),('050d93035eb3a3e51b06478dd148387805160f952c8bb45e9888c5b5a51dfe8e82313c265da309f1',2,1,NULL,'[\"user-app\"]',0,'2023-09-14 18:55:47','2023-09-14 18:55:47','2024-09-13 13:55:47'),('051a81a8de2a5f12353eee3d13caeaecccdd9871542e64167c52b9879246a909d5be0e944ea6e4b6',2,1,NULL,'[\"user-app\"]',0,'2023-05-18 05:44:27','2023-05-18 05:44:27','2024-05-17 00:44:27'),('051c061c58fef2c7f6b1f9ea32a1eae6c377d824f481eb29de56ceae6eb068788a75bd7fbc9de9c9',2030,1,NULL,'[\"user-app\"]',0,'2023-09-22 16:51:31','2023-09-22 16:51:31','2024-09-21 11:51:31'),('0523edd537b7db655d61fdabab0e3331403bebe78e12a01b3bebeb057792bbf1e67f5c3dfe2c6ab3',1958,1,NULL,'[\"user-app\"]',0,'2023-09-07 03:40:57','2023-09-07 03:40:57','2024-09-05 22:40:57'),('052722a55bfc6b5dc148b37d511c3dad58db852939dfd4fef2678ba594fbb944d0df649d380250e4',358,1,NULL,'[\"user-app\"]',0,'2023-08-18 19:08:14','2023-08-18 19:08:14','2024-08-17 14:08:14'),('052811b7588a56afc45e0debf31591c85a88fd1729247948739fa4b96e17595c8f5b82ca32aff2ac',1082,1,NULL,'[\"user-app\"]',0,'2023-02-26 13:15:10','2023-02-26 13:15:10','2024-02-26 10:15:10'),('052ec8c8f77ce1bff915fafc0650f37b27734789e21cf1ddee6ee6afb1a02e4b15d95f24f629a6f8',259,1,NULL,'[\"user-app\"]',0,'2023-01-31 15:01:48','2023-01-31 15:01:48','2024-01-31 12:01:48'),('0530f8eb2aacd1e29add6615bab8ad661d95de526435cdee2d25cfe126ee77fc665052081f87265d',2,1,NULL,'[\"user-app\"]',0,'2023-02-05 17:03:27','2023-02-05 17:03:27','2024-02-05 14:03:27'),('05455437ab3e29311062caa4327cf886b72e94789f4bffee168dd278615d67e29fa38264145f38bb',1632,1,NULL,'[\"user-app\"]',0,'2023-06-24 02:55:26','2023-06-24 02:55:26','2024-06-22 21:55:26'),('054f8721957501fc975b06492acbeb89a93d767fb98970f39e8d4ad224978517676abd6c70988d00',1424,1,NULL,'[\"user-app\"]',0,'2023-10-01 14:10:00','2023-10-01 14:10:00','2024-09-30 09:10:00'),('055d34fbde521c9519fab60b9f057df2af2ee6cda3d4f43c60e24753e9c7879c52b1b96bbed467f5',1454,1,NULL,'[\"user-app\"]',0,'2023-05-15 20:32:34','2023-05-15 20:32:34','2024-05-14 16:32:34'),('055e0d9ae7df2f060cfdd63136d2154bdb74eb1177e01bcf5d5c872f23528a4d042a8c03888aa5cc',2,1,NULL,'[\"user-app\"]',0,'2023-09-11 13:51:27','2023-09-11 13:51:27','2024-09-10 08:51:27'),('0563eb6194fbbfb171903194104207712334a4d351921d79ff2ec22d10e13a0eb92bd46369a8c800',1129,1,NULL,'[\"user-app\"]',0,'2023-03-09 21:06:27','2023-03-09 21:06:27','2024-03-08 18:06:27'),('0567208101fc9f60e8b02fefc51cbf34547612c813ffffe3b3f9d430a7248ae49616ebf5e3eee477',691,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:54:34','2023-01-25 17:54:34','2024-01-25 14:54:34'),('05801207ad5a6f80abb95e4e6f5c3ec2b5838f05e24b74d5e076465ae2816dea522dce0f9d99fc29',1985,1,NULL,'[\"user-app\"]',0,'2023-09-15 18:16:21','2023-09-15 18:16:21','2024-09-14 13:16:21'),('05820739c0fcbefa6f3acda7167415c55a67ffdfa87f5b00f90482d6239dee27c44b8847c949e8f6',776,1,NULL,'[\"user-app\"]',0,'2023-01-28 15:13:46','2023-01-28 15:13:46','2024-01-28 12:13:46'),('05b5c73d193138e0ec61f9bfdb98a15c7cb1726cf8028a580e4c46384fcb14601f839e382313c1dd',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:18:56','2023-01-25 15:18:56','2024-01-25 12:18:56'),('05b65f3a3d860dd1e021e9646b91c4a00b94368f8f47c1573b511561f7756d2dcada3906e53395b5',8,1,NULL,'[\"user-app\"]',0,'2023-02-13 17:41:46','2023-02-13 17:41:46','2024-02-13 14:41:46'),('05bacacba712b82c8b61f98d52bd48b543b1f691dff266f29132afd213b588d6646141e6cbe7cf2b',2,1,NULL,'[\"user-app\"]',0,'2023-07-30 19:59:37','2023-07-30 19:59:37','2024-07-29 14:59:37'),('05cb09df7504c50cacd5d7873ad7f2a8125959bd769a5c283fb43d7407e7e642fdff7fcfd06b0545',1617,1,NULL,'[\"user-app\"]',0,'2023-06-22 01:05:29','2023-06-22 01:05:29','2024-06-20 20:05:29'),('05eedb392caa23c1bb6ff781797095aa85f3d016e3180e0783dbc4737c58af6466dde2058a76d8fe',1124,1,NULL,'[\"user-app\"]',0,'2023-09-16 09:01:46','2023-09-16 09:01:46','2024-09-15 04:01:46'),('05f392d5dd8533416938aa7d90106b43725843302165cbe8682f281231ed10be454ff1c2428eca25',2,1,NULL,'[\"user-app\"]',0,'2023-03-05 23:46:01','2023-03-05 23:46:01','2024-03-04 20:46:01'),('060f6176c0257c7663e3d3e9459b8002d887e7fc322949468481f00a5681a16f031be8eb43f55f0b',407,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:37:42','2023-01-25 14:37:42','2024-01-25 11:37:42'),('06463001a13962953bdc624b4fa1261e1c635f804d3c8fae37e8350e505b0f786fe0da79b7cbbfb8',129,1,NULL,'[\"user-app\"]',0,'2023-02-13 21:26:14','2023-02-13 21:26:14','2024-02-13 18:26:14'),('0646e2b949f4b1b5056f50ff3f0e05ce9768ca82f51cf48424d5e919d48179d7004535376ef322e6',1358,1,NULL,'[\"user-app\"]',0,'2023-05-02 03:55:28','2023-05-02 03:55:28','2024-04-30 23:55:28'),('06479639c1da331a32240c1fc0cae1333703104c3f219c13fb8008938bfef5882cb82fb4d78a365b',1415,1,NULL,'[\"user-app\"]',0,'2023-05-10 18:59:19','2023-05-10 18:59:19','2024-05-09 14:59:19'),('065225923f8f25b98fb51c01dc6a1eab5d8750451e8c0aefb1ff7f7066a93069fae9935fb30273d4',2,1,NULL,'[\"user-app\"]',0,'2023-08-04 14:08:20','2023-08-04 14:08:20','2024-08-03 09:08:20'),('065a6a27d6fded9ecd21f122d580f64920cdbb53a78d12e12de15c089ea732fe056b15d5adc76373',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 12:21:48','2023-09-25 12:21:48','2024-09-24 07:21:48'),('0664905f9abfd7b4f2ce74ed18ca4abd398a2e0c261afc8683bc24052cd9325a2cfc876d580646d4',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 15:53:47','2023-09-25 15:53:47','2024-09-24 10:53:47'),('0665166ef4c2117b69402feb0f5e69a67c50c369ad024d8db1fbed7159cae397b3ff2951bc29b0c4',952,1,NULL,'[\"user-app\"]',0,'2023-04-11 18:21:21','2023-04-11 18:21:21','2024-04-10 14:21:21'),('068e4d9f75111d90af1c009788b8b105bec3abb8630089baa8fbb66d8346a625aefbf1ebdc4da0eb',1557,1,NULL,'[\"user-app\"]',0,'2023-06-12 20:01:08','2023-06-12 20:01:08','2024-06-11 15:01:08'),('06a46c888af111d81b95243b72f669056637b5def94aa036a15c15309c2478da28dd93565b5f8142',1229,1,NULL,'[\"user-app\"]',0,'2023-04-02 01:28:19','2023-04-02 01:28:19','2024-03-31 22:28:19'),('06ad5958b44c47e0474512d6317e2e1bb8792e4abdb26f25e38c1cae43c472018e39d9658ebfec5b',403,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:46:53','2023-01-25 17:46:53','2024-01-25 14:46:53'),('06ae375efe85a025fda273c0e002826af9528c0b1980145d38b360eecc1bbb22048d5a37edfb7cd6',1235,1,NULL,'[\"user-app\"]',0,'2023-04-07 06:30:42','2023-04-07 06:30:42','2024-04-06 02:30:42'),('06b2c3b5ab920c714bf57bb5363a88b511d57a104b9be878b946b99b2973503cfc2dbe082ecc70cf',485,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:04:53','2023-01-25 11:04:53','2024-01-25 08:04:53'),('06b5fd60bb6857a885c5c0f8e9e0cc1cba3cd81553643407ed7b86b14ef4549e0caf39cd20f5a83f',2,1,NULL,'[\"user-app\"]',0,'2023-09-16 13:30:46','2023-09-16 13:30:46','2024-09-15 08:30:46'),('06ba12c03765d9b7034579378230073a9ce5c53d90360a9c4b6a500e768a730f033f98f538f01763',1018,1,NULL,'[\"user-app\"]',0,'2023-04-13 17:22:19','2023-04-13 17:22:19','2024-04-12 13:22:19'),('06c8c38df9491ef4278d556a33b3f85d2a44224f0865e62a26e163876d891b71da17eb8ee2be3e0d',957,1,NULL,'[\"user-app\"]',0,'2023-04-13 22:57:13','2023-04-13 22:57:13','2024-04-12 18:57:13'),('06d3e5241161201e5b745d1560534d5f83e3baafc89c070ab9b0e6f3c70712869ef898218fbc898f',1132,1,NULL,'[\"user-app\"]',0,'2023-03-11 13:13:51','2023-03-11 13:13:51','2024-03-10 10:13:51'),('06d7e942a5079506f83600d93c74f32327890802ae8c5944f4f78669e41978dabcbd058161577a5b',1999,1,NULL,'[\"user-app\"]',0,'2023-09-22 02:27:55','2023-09-22 02:27:55','2024-09-20 21:27:55'),('06dc66962a2ce13953b69c5c427cbc8a41180db5bc8887d6d3b5e429242eb8d1dd0f427b74cd0004',1483,1,NULL,'[\"user-app\"]',0,'2023-05-19 16:41:16','2023-05-19 16:41:16','2024-05-18 11:41:16'),('06e1484aec5e1ed72a5b56c037671dc4fdc17bb3d7fe4383655744910de172224c7c0dd294bad39a',555,1,NULL,'[\"user-app\"]',0,'2023-01-30 00:38:38','2023-01-30 00:38:38','2024-01-29 21:38:38'),('06e62a9a16e52587f91d3b9f58448fb55bc32b9f8c20e62a3e7f26c77f222a2c510fe72761984533',1532,1,NULL,'[\"user-app\"]',0,'2023-06-07 13:36:53','2023-06-07 13:36:53','2024-06-06 08:36:53'),('0706488f166dd6b712d011ec6df5e89ff79eea1149b23ad88acccae31defff3946b8b1f60fdf30fd',1539,1,NULL,'[\"user-app\"]',0,'2023-06-08 22:49:29','2023-06-08 22:49:29','2024-06-07 17:49:29'),('072fbb61a1b8892358844279f91f42b89412671128ee6458dc39909dd168995ffc312ba3e145c22d',147,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:01:13','2023-01-25 03:01:13','2024-01-25 00:01:13'),('07353c724f50bc19cc77d61b77cbca4182e7d1faab2e07ddfaeb51f3f232ce553e7d4e67652eb894',1292,1,NULL,'[\"user-app\"]',0,'2023-09-27 17:00:29','2023-09-27 17:00:29','2024-09-26 12:00:29'),('074ba8684fdd67917d119a63537601b3afe995eb1907e08b1c48fd84ca66de42153a8acdb0303650',1665,1,NULL,'[\"user-app\"]',0,'2023-06-29 11:46:36','2023-06-29 11:46:36','2024-06-28 06:46:36'),('07567daf605e8b619ada70bb760cff4b129e32c6339d4739519c392b60131de89672b631d9602149',344,1,NULL,'[\"user-app\"]',0,'2023-02-21 12:21:54','2023-02-21 12:21:54','2024-02-21 09:21:54'),('0759926df8c950addbf0cfa5ccf4f4e7674010f23bd00e022db583aada670c0a12e999510c98545f',2,1,NULL,'[\"user-app\"]',0,'2023-09-01 11:53:32','2023-09-01 11:53:32','2024-08-31 06:53:32'),('07743fcdd30e78c0679837b2a88843669caf1adacab29bf44cc04da206df90ea9c88c76aec4996fb',1901,1,NULL,'[\"user-app\"]',0,'2023-08-21 14:13:15','2023-08-21 14:13:15','2024-08-20 09:13:15'),('0777b402a53aa3e6cd078af8044610fc7ca033408c2e40ab18d900d4e9eb5fa63495cd6291258f54',1133,1,NULL,'[\"user-app\"]',0,'2023-03-11 18:37:13','2023-03-11 18:37:13','2024-03-10 15:37:13'),('078b522baa47325aa000460debf7e5194615210b0fef91a685799932d19369ef9cf6670e748ccfca',1163,1,NULL,'[\"user-app\"]',0,'2023-03-29 16:26:43','2023-03-29 16:26:43','2024-03-28 13:26:43'),('078d609a7c211d09a0f3eef2dcabc3ba9702eb0cd00f90894ed54b1f7ee4503eed0fecdb651d7dd2',1337,1,NULL,'[\"user-app\"]',0,'2023-04-28 02:15:09','2023-04-28 02:15:09','2024-04-26 22:15:09'),('078da3a8abb1601d5f66a0e66cd0090e92dd3f7c4713db52a270232f376ca0d022ea3c0501cca060',1887,1,NULL,'[\"user-app\"]',0,'2023-09-23 18:19:07','2023-09-23 18:19:07','2024-09-22 13:19:07'),('078e63b2a105b027a883e0cd3ec59cde2ddf8627c7f2bf320345fc6c0a5f13be7cfdadb134897969',1221,1,NULL,'[\"user-app\"]',0,'2023-03-31 12:55:34','2023-03-31 12:55:34','2024-03-30 09:55:34'),('079c158939c7e0468bb78eb8644b8e8ad92c0e3ff159422c5ea90361482c91e08f5d14b33f432217',1486,1,NULL,'[\"user-app\"]',0,'2023-05-20 04:43:20','2023-05-20 04:43:20','2024-05-18 23:43:20'),('079ec4710280c21024952cd237dce3ab1ac6844e7f5076431851011d32467acdb6ade72d2e11d2dc',2070,1,NULL,'[\"user-app\"]',0,'2023-09-29 04:25:57','2023-09-29 04:25:57','2024-09-27 23:25:57'),('07ab7349d7bc30f96f87594a3fd7dc52e801623f7a0e7a50400896fe366a8e84e4007aceb0b819e6',1028,1,NULL,'[\"user-app\"]',0,'2023-02-21 23:15:25','2023-02-21 23:15:25','2024-02-21 20:15:25'),('07d495203879121be2ab2eea446d4023f1d85c9aa304b11b8a75883d48e89b96462d84a2026ce007',1028,1,NULL,'[\"user-app\"]',0,'2023-05-04 23:55:48','2023-05-04 23:55:48','2024-05-03 19:55:48'),('07e987eddf2539f33491ab5c3a06f814ce7ef4ae2bf6e88adc1a7e4da27e2a91ac8ea8f28cb01d42',1605,1,NULL,'[\"user-app\"]',0,'2023-07-01 01:29:42','2023-07-01 01:29:42','2024-06-28 20:29:41'),('07ed02c313329f9c91bd6ac59c0b66f6843446f49771194510b23518f0229fd077b98e4d62c98fd5',1659,1,NULL,'[\"user-app\"]',0,'2023-06-28 16:41:09','2023-06-28 16:41:09','2024-06-27 11:41:09'),('0829a3b17f502e6f3fe06522d1b5dcb4874f8beef816f4ed9b08bf00da252b59ec07287ebf3927c8',2,1,NULL,'[\"user-app\"]',0,'2023-08-10 06:12:48','2023-08-10 06:12:48','2024-08-09 01:12:48'),('083d7b6c01cd346c314b7c57cd1acfe05a97ee8fdd5c51440fde1dde71a4a698e68d8a36cdcf0524',2,1,NULL,'[\"user-app\"]',0,'2023-05-17 22:36:52','2023-05-17 22:36:52','2024-05-16 17:36:52'),('0842c116f730346855c8f58621da7977ac337f7f4bf164d4610ee287a5a0e322dc644d398661394c',1914,1,NULL,'[\"user-app\"]',0,'2023-08-25 02:41:28','2023-08-25 02:41:28','2024-08-23 21:41:28'),('0853e612fe4a30872ceee38fddb0ad07a0ba1aba673099ffe1dff45351f1a13a44949f31fd2dcf87',2,1,NULL,'[\"user-app\"]',0,'2023-03-19 02:07:05','2023-03-19 02:07:05','2024-03-17 23:07:05'),('08544bc6fb8ba9ddd95f1aea95eec51291e2fe142143a0fa064f386b387c7438752953a28f636999',224,1,NULL,'[\"user-app\"]',0,'2023-10-01 14:44:00','2023-10-01 14:44:00','2024-09-30 09:44:00'),('0859e052e5231851be2babe714291d61f07b61a85735660ea50dd95f2b1e9a91f3cc4e457a4445cc',2,1,NULL,'[\"user-app\"]',0,'2023-09-15 18:57:39','2023-09-15 18:57:39','2024-09-14 13:57:39'),('085c5e0dc7c97550c80cb0245dfb040ecb462f12a13f63517dca4da6f7c5beb121b3b7ca546384c8',1354,1,NULL,'[\"user-app\"]',0,'2023-05-01 02:07:03','2023-05-01 02:07:03','2024-04-28 22:07:02'),('0862e9fb37a817cbea51ae7e43de918bf61f07b50f87ed7dd22c1a8fe6203a4119a984fb978c6edc',270,1,NULL,'[\"user-app\"]',0,'2023-03-15 17:43:38','2023-03-15 17:43:38','2024-03-14 14:43:38'),('0877b757be83cd40aafc84d55e79af02a26feb9ed655fafa57ad380a2a8f278c4c835913a1c56e3f',2,1,NULL,'[\"user-app\"]',0,'2023-09-29 20:03:29','2023-09-29 20:03:29','2024-09-28 15:03:29'),('087f55ed6c6ffebab4366ba09f51593b28f735ecbd8eeef8029715daae33f1a97291d2198b9c2bc7',917,1,NULL,'[\"user-app\"]',0,'2023-02-14 23:14:14','2023-02-14 23:14:14','2024-02-14 20:14:14'),('08809bdb7d334e7941836c9cbe1d5475e497342956a8ecbc2412ec37b0bd14bff3375433f1383197',221,1,NULL,'[\"user-app\"]',0,'2023-03-07 13:30:57','2023-03-07 13:30:57','2024-03-06 10:30:57'),('0882de6f5a71e66fd78dc26daaa0f4d043574bdba51021bc03a8b37bf28bc633483cde03b2ab0767',2,1,NULL,'[\"user-app\"]',0,'2023-05-07 00:23:05','2023-05-07 00:23:05','2024-05-05 20:23:05'),('0888a21e16bc9ba230ece59d0f162b5ffba2d7310167c2369896c148cb6b3a398292423ef1223d9d',91,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:03:53','2023-01-25 11:03:53','2024-01-25 08:03:53'),('08a0c9ab0a26e9f0efeac3aed0817d208097cdc2022664725f9bd56270b33ceb23fee0d16d936ed0',8,1,NULL,'[\"user-app\"]',0,'2023-04-03 19:40:59','2023-04-03 19:40:59','2024-04-02 15:40:59'),('08a98752c2212767ee47ad6cc83e1f641109f12aae8f14ce0b58bb71f07b88a87e103426bde7016a',72,1,NULL,'[\"user-app\"]',0,'2023-09-20 17:52:22','2023-09-20 17:52:22','2024-09-19 12:52:22'),('08b9aa8e45f41e17409f300a5cc3acf3213e1c13849d819e1b799351bcdfe5b660fe827340e2b82e',1224,1,NULL,'[\"user-app\"]',0,'2023-04-01 11:46:04','2023-04-01 11:46:04','2024-03-31 08:46:04'),('08bf7382ec707ec8f5043eb311adf9062680f0c80e73ce8970a99802b8026f87f126d3e0ca880037',411,1,NULL,'[\"user-app\"]',0,'2023-06-28 18:04:37','2023-06-28 18:04:37','2024-06-27 13:04:37'),('08d0599bba4ce6e53ee733c83114b946f8ed5b8b5a3dcc99ba4d172f971f7dce3a129ac5df2440b8',2,1,NULL,'[\"user-app\"]',0,'2023-05-16 16:31:29','2023-05-16 16:31:29','2024-05-15 12:31:29'),('08d237914ab4948f1caa62423b6eb4710ab487659bf3e462fdf4c91fc9186fa13fd3dceb73e9b855',192,1,NULL,'[\"user-app\"]',0,'2023-09-26 14:01:15','2023-09-26 14:01:15','2024-09-25 09:01:15'),('08ed7ceecab3ac47805fdabba4163dd3bc7b76e04b7d80218c45633ebcc21d7bab9cfe578fbab133',999,1,NULL,'[\"user-app\"]',0,'2023-02-23 01:21:03','2023-02-23 01:21:03','2024-02-22 22:21:03'),('0929021291f3631e0e3d768777d604fa1123ea95144d4dfaf2e482be26d28081655b74eff6078172',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:58:17','2023-01-25 15:58:17','2024-01-25 12:58:17'),('0945495f04a55061041290b4e3de71d8c332da5d19e6c4b05b606cae52ae3144b78bbdebb6cec05c',1125,1,NULL,'[\"user-app\"]',0,'2023-03-09 13:02:30','2023-03-09 13:02:30','2024-03-08 10:02:30'),('0971c3e375c57e434f4c01a97327b6086d175ebc0a5580c8e1a8857809a6d18014f30743e5f7a3f7',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 02:49:12','2023-10-07 02:49:12','2024-10-05 21:49:12'),('09764d49b696d73e09144f96f8679320834d942108a21f0563f9af97f1918ac268639b8e569e2d2d',628,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:52:38','2023-01-25 02:52:38','2024-01-24 23:52:38'),('098353566d93b457333cd67eb6d6de8cbf4ece5cde6fb5abc0146967919e02a2d3202974584c30a4',1942,1,NULL,'[\"user-app\"]',0,'2023-09-02 22:47:38','2023-09-02 22:47:38','2024-09-01 17:47:38'),('09848ccecf422f610639bf84bb9eac3516f98704cc89f17067ba8636cbdd3f57ba242ffbf5fdcb32',2061,1,NULL,'[\"user-app\"]',0,'2023-09-27 16:42:16','2023-09-27 16:42:16','2024-09-26 11:42:16'),('098bd703288f8bd3f03a57c615a4c750d0f273179870696e304a57cbdcfec6ccc2487148b46f80f4',2115,1,NULL,'[\"user-app\"]',0,'2023-10-07 20:24:43','2023-10-07 20:24:43','2024-10-06 15:24:43'),('099b1065a94593cc59b3099dda2585bd931a0b15cc5430c35ecdf037a1f83b1ea9a63bb6497f6080',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 19:24:08','2023-09-04 19:24:08','2024-09-03 14:24:08'),('09b54eac1c5392eed106e4dffc4ded247116cc617ee1ec1982ecf61cd481a0a01070b8e341558cd5',822,1,NULL,'[\"user-app\"]',0,'2023-10-02 15:33:35','2023-10-02 15:33:35','2024-10-01 10:33:35'),('09b9bdbc789e3e911c1c6b84bb8f4df3ac3ec8dbd5f8f3b0c340937ea995385c914688f8b68785c6',2,1,NULL,'[\"user-app\"]',0,'2023-09-16 01:00:46','2023-09-16 01:00:46','2024-09-14 20:00:46'),('09bc0dcc637f9509e85fd4bf743dc843e1a365f8138f840654e5d2cda743c936766da883e10dba36',2,1,NULL,'[\"user-app\"]',0,'2023-08-05 17:10:32','2023-08-05 17:10:32','2024-08-04 12:10:32'),('09c0848ee0087f057ec1070a32b832b1d0cf3412048ad561baae26cf250772070c417c08fa403879',1075,1,NULL,'[\"user-app\"]',0,'2023-03-29 18:52:14','2023-03-29 18:52:14','2024-03-28 15:52:14'),('09cc957cf6062c16ce88bf167e52c9ea7f8bd20b83ec8a9cdbf6f347a442c636e4569cdbba83bdb7',2037,1,NULL,'[\"user-app\"]',0,'2023-09-23 22:58:42','2023-09-23 22:58:42','2024-09-22 17:58:42'),('09d3821c0d14f22de4072e8f60a23eb22777ac49a885b43dfa6d18b38cad353b4e7760cc10c557a6',2,1,NULL,'[\"user-app\"]',0,'2023-05-05 05:27:09','2023-05-05 05:27:09','2024-05-04 01:27:09'),('09de14a50423c9f9b27d68caeb70df9ad890b0277470b9702278abf78272c160d4693fffa4ad54f0',1605,1,NULL,'[\"user-app\"]',0,'2023-07-01 14:30:24','2023-07-01 14:30:24','2024-06-30 09:30:24'),('09e3f72976760a0c7826efc788787d00ef7020da688b22494469fd17bda18e88cf11d6e4e44251f2',1199,1,NULL,'[\"user-app\"]',0,'2023-03-26 03:03:27','2023-03-26 03:03:27','2024-03-25 00:03:27'),('09f1226b6869c57c67fd4eaa74736c39d78e971ecf5ba71d54dbbe416a071267743107408eb4d197',408,1,NULL,'[\"user-app\"]',0,'2023-04-29 13:11:55','2023-04-29 13:11:55','2024-04-28 09:11:55'),('0a0b07fe7de15c2546e76c800f4671e3c7c9980a869c5f3e3e7b089f8decc28c6f328c37afa91809',1379,1,NULL,'[\"user-app\"]',0,'2023-05-06 19:55:14','2023-05-06 19:55:14','2024-05-05 15:55:14'),('0a0b0f77d9f35c531dda40b4fa890dd869158bd6212e9a2e0ca0458830e43589d71a063cb0d1df6c',1626,1,NULL,'[\"user-app\"]',0,'2023-06-23 15:13:11','2023-06-23 15:13:11','2024-06-22 10:13:11'),('0a15fb858c9695d387cc182cc45883491ad8709b4a9878eb4d6032cf6a2e4c3c71956dd9b899bf58',2015,1,NULL,'[\"user-app\"]',0,'2023-09-19 19:34:58','2023-09-19 19:34:58','2024-09-18 14:34:58'),('0a217e8f61a16e28014f627092d7fc70f6a41c555ab9ec509c107631250562f4aff4e13d776bcd66',1648,1,NULL,'[\"user-app\"]',0,'2023-06-27 00:42:24','2023-06-27 00:42:24','2024-06-25 19:42:24'),('0a232e7db80199bbae7c6b805ebd3fda7ea9967a750c9ec1c61820a22531d420dc13163d2e233b68',1334,1,NULL,'[\"user-app\"]',0,'2023-04-27 23:32:10','2023-04-27 23:32:10','2024-04-26 19:32:10'),('0a25c42279be4d7b17a3ef4d5ad0541d05f30e59761335d567902c454fb4f8d7c9ad28dc5818da60',1431,1,NULL,'[\"user-app\"]',0,'2023-05-12 01:33:17','2023-05-12 01:33:17','2024-05-10 21:33:17'),('0a27a9b5e0a245eba268b7cd819c705b9ff7fd05b4e3ab148c9a238bb16d544f8a5d83a9c6f22d32',2,1,NULL,'[\"user-app\"]',0,'2023-06-29 20:36:30','2023-06-29 20:36:30','2024-06-28 15:36:30'),('0a37143c6fca9df436099ef6a5a6c40019201afdecc236574f386545ea78da8bbdeeeced211709fc',85,1,NULL,'[\"user-app\"]',0,'2023-02-24 23:39:38','2023-02-24 23:39:38','2024-02-24 20:39:38'),('0a52eaa95346206d05c820b73982ffc4c6b5c9b1d60d0def809707cff57188c70f4673f516f3dce1',2,1,NULL,'[\"user-app\"]',0,'2023-06-30 16:32:39','2023-06-30 16:32:39','2024-06-29 11:32:39'),('0a5e8608eae9d0ceda8508930568e4b941fa3ed8732ecb6b9253e801f6fe09c4b771da4ef6da13be',1428,1,NULL,'[\"user-app\"]',0,'2023-09-29 17:11:07','2023-09-29 17:11:07','2024-09-28 12:11:07'),('0a6dcb5c267c020a4f1c8ead9f4e6f80d3b4f11e8145874c17a2717e9fb9c9566195cab59af1f7f9',1422,1,NULL,'[\"user-app\"]',0,'2023-05-24 23:36:43','2023-05-24 23:36:43','2024-05-23 18:36:43'),('0a6f3881fe687acc219c1a531a730b2b7d6c7e50579e6ecd473a141fbf42e612ad06819762aa6bfd',1119,1,NULL,'[\"user-app\"]',0,'2023-03-07 10:41:55','2023-03-07 10:41:55','2024-03-06 07:41:55'),('0a80a276b8d2907d3314fc649610c731207075a9b5360ce5b798c25faeefeb5cf94a1cca9d883ce4',405,1,NULL,'[\"user-app\"]',0,'2023-10-09 14:39:08','2023-10-09 14:39:08','2024-10-08 09:39:08'),('0a90c71710f7aee0b0895a685b22ebce25bb13d7d67f5865641d26e32da46e65d4f6c94fcd6aa9bd',1571,1,NULL,'[\"user-app\"]',0,'2023-06-15 19:05:18','2023-06-15 19:05:18','2024-06-14 14:05:18'),('0aa3f19d7dca759871173f25922f5cc39dd1c27220e70c44b9e4f9d657f2bfc13182998fba7fe7e9',1530,1,NULL,'[\"user-app\"]',0,'2023-06-06 21:52:06','2023-06-06 21:52:06','2024-06-05 16:52:06'),('0aa89a0cc2dcc80af55760a8acce703e74586c9ec3d561e3508b59e833d057cfe68c25fb8daef0fb',1507,1,NULL,'[\"user-app\"]',0,'2023-05-28 03:00:13','2023-05-28 03:00:13','2024-05-26 22:00:13'),('0aabcaadb8a68595a877d4172a09a9a71e41f9c1d4e2db8c031ccf874cd9d52c6ed015691e06beb1',1451,1,NULL,'[\"user-app\"]',0,'2023-10-05 21:55:13','2023-10-05 21:55:13','2024-10-04 16:55:13'),('0ab127ca73cc93f5d17d2863de91293b671f237d7784e41fb3acf6523cd53a0e4ecdff131920ef7e',1188,1,NULL,'[\"user-app\"]',0,'2023-10-06 03:09:29','2023-10-06 03:09:29','2024-10-04 22:09:29'),('0ac297e257071f5c78ab6fa9ba71a5a8f26e3e5fc563695d4cb5a304146551eacd7e418aa1901c10',387,1,NULL,'[\"user-app\"]',0,'2023-04-29 20:09:59','2023-04-29 20:09:59','2024-04-28 16:09:59'),('0acd915b440881f0209e3e6fd9a4473e09255ebf0042f489490a044dee0631c0a4070d36a5125090',1571,1,NULL,'[\"user-app\"]',0,'2023-06-15 20:17:40','2023-06-15 20:17:40','2024-06-14 15:17:40'),('0ade8440afea1e7933d125584ca0068652801e4138528d940945148a518e0e10589dd697370531ad',118,1,NULL,'[\"user-app\"]',0,'2023-01-27 22:51:14','2023-01-27 22:51:14','2024-01-27 19:51:14'),('0ae3ba3998c5e37749c88d99a2104f125a9f9c83e09b5072f45c69239fbb1c78d0d871bb2d8f45e3',8,1,NULL,'[\"user-app\"]',0,'2023-02-13 18:17:59','2023-02-13 18:17:59','2024-02-13 15:17:59'),('0ae8a9445d7b2422247da975ee7f469f98e82122cc9685b7a242a681494b51f47960d37e0a4611c2',1063,1,NULL,'[\"user-app\"]',0,'2023-05-01 14:11:45','2023-05-01 14:11:45','2024-04-30 10:11:45'),('0b1afc87b8762e929edcf5622167dea510b0279a77904ca4fd0224893c89fda9c1aba729e4e6562f',2048,1,NULL,'[\"user-app\"]',0,'2023-09-25 14:54:29','2023-09-25 14:54:29','2024-09-24 09:54:29'),('0b2a2f9a10cd494b68fb8ef65e1d05aa03023d2e49303cc8d538db7892951745cda828534eb8333b',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:31:23','2023-01-25 12:31:23','2024-01-25 09:31:23'),('0b2cc89becf3eaf7d00500c267c2e41f75d951fc65b10b1f837a1c45cef0793355c1d8010bee771e',8,1,NULL,'[\"user-app\"]',0,'2023-01-31 17:21:50','2023-01-31 17:21:50','2024-01-31 14:21:50'),('0b3173fc09d96d9b654dbd84f5cd9080ce8d233f488acabf474c0ebf78abdcd747df9aa78a48e5e1',2069,1,NULL,'[\"user-app\"]',0,'2023-09-29 00:15:05','2023-09-29 00:15:05','2024-09-27 19:15:05'),('0b3541fbe1ce81c96f62ea6463bc65a6e77cc2c951d8cd82c29b88ebd666666b465806f07ec4177e',1396,1,NULL,'[\"user-app\"]',0,'2023-09-25 01:25:37','2023-09-25 01:25:37','2024-09-23 20:25:37'),('0b35c4fe72a6a6503de08be2a456c3ec6a1ad2bb6c8d5304af72260811c9996b012dbfd27dca295d',1604,1,NULL,'[\"user-app\"]',0,'2023-07-13 01:35:54','2023-07-13 01:35:54','2024-07-11 20:35:54'),('0b4700ef56d6c378c782d7569053673f0ad020a9ffcdaee13b2ea7e6cb498d7c4e8a6be2489ac11d',2,1,NULL,'[\"user-app\"]',0,'2023-10-02 08:27:48','2023-10-02 08:27:48','2024-10-01 03:27:48'),('0b5128e90d62a283ad0aea6b6522141fdb7d1b9e22db52dc36764abff4590652976191e6f29b59af',343,1,NULL,'[\"user-app\"]',0,'2023-08-15 19:02:18','2023-08-15 19:02:18','2024-08-14 14:02:18'),('0b5820b567298a6a1c1d19d8d4c819ccfd77c57f486d0e2d164a65b74d289d3f785fcfa59cd41e06',967,1,NULL,'[\"user-app\"]',0,'2023-02-17 22:54:01','2023-02-17 22:54:01','2024-02-17 19:54:01'),('0b6471813535450f675889dcf3d90799ecfbb885114f6a7f66f2249f9a66c49704879044812c97df',1146,1,NULL,'[\"user-app\"]',0,'2023-03-13 04:16:01','2023-03-13 04:16:01','2024-03-12 01:16:01'),('0b64abff0e5b0f44dc240b63664cf33cf734d36bb8d1558bb21b571fc817fa6ee55e19934f811967',2,1,NULL,'[\"user-app\"]',0,'2023-05-17 20:44:25','2023-05-17 20:44:25','2024-05-16 15:44:25'),('0b688a9e08b5f6cb97da29ff5338327b2bef7492f6a66924a961a91e92cc95140e0d1c38cdff821c',2,1,NULL,'[\"user-app\"]',0,'2023-04-30 03:25:26','2023-04-30 03:25:26','2024-04-28 23:25:26'),('0b6ce03f5ebb758743c1e2c30b30f67020731ec41b202229332cf675d5bbb4d620697166a448d8d8',875,1,NULL,'[\"user-app\"]',0,'2023-04-18 19:33:26','2023-04-18 19:33:26','2024-04-17 15:33:26'),('0b7815693fe00b4f2b187e62c4699c3e58a2ad0b8f74ba15f3bbd62d13e537ec04520e37d69d9801',2,1,NULL,'[\"user-app\"]',0,'2023-09-13 16:36:28','2023-09-13 16:36:28','2024-09-12 11:36:28'),('0b9b9ee7ef0c7f8e24cab443ff5033e1e04cb379b9975c9be22cd9452712b9ff9042d6d67c22fd50',1153,1,NULL,'[\"user-app\"]',0,'2023-03-13 22:41:24','2023-03-13 22:41:24','2024-03-12 19:41:24'),('0bb8e65cf14c41216f3d1f194fdcc6592beef6ba76adcdfa56107271dc10688329f48985d6e0983b',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 16:44:34','2023-09-25 16:44:34','2024-09-24 11:44:34'),('0bc22b3c950225b8f9802608cf3b86edcc7f874cfa1534dccf42a8499eefb3a441323e3864da6c90',1007,1,NULL,'[\"user-app\"]',0,'2023-04-11 16:27:16','2023-04-11 16:27:16','2024-04-10 12:27:16'),('0bdbf78ceae89078ec6fd36577907e3e4c07b00cf2b17fa8a384b5a77c5ff81dbc6989237c8f6456',2,1,NULL,'[\"user-app\"]',0,'2023-07-31 17:20:02','2023-07-31 17:20:02','2024-07-30 12:20:02'),('0bdbff46b7bb84713fdd6d8885571bcfa3e5ef9da12cdbaaf8c50e2c3455b12bb7a1f25c7e0e446f',1605,1,NULL,'[\"user-app\"]',0,'2023-09-30 22:15:38','2023-09-30 22:15:38','2024-09-29 17:15:38'),('0be73ed413d100e1083c07a87c5d1eddc75031ff07cb0be0fcb5d7efbda08cd4670a91905ff24dfc',2,1,NULL,'[\"user-app\"]',0,'2023-06-24 12:27:40','2023-06-24 12:27:40','2024-06-23 07:27:40'),('0c0c3845b557b5a556407ec9bd6ce3381e1d642058d8a20e563d78b82a05d390684a1d1c34f55ca0',38,1,NULL,'[\"user-app\"]',0,'2023-02-16 13:05:49','2023-02-16 13:05:49','2024-02-16 10:05:49'),('0c2bd36ab94018e73f9f93a716bb9ca456337962292945d69360239de0efd67a74826bb1aae2398d',1806,1,NULL,'[\"user-app\"]',0,'2023-07-25 00:13:31','2023-07-25 00:13:31','2024-07-23 19:13:31'),('0c388bfda570d9e298403f93ab68fa80e78c29af658c0b17bcf27b5cc5cba07d44c76f1997401c52',957,1,NULL,'[\"user-app\"]',0,'2023-07-15 13:49:05','2023-07-15 13:49:05','2024-07-14 08:49:05'),('0c515ab2d28dc54d79ef4a3fdbbd63b256aba990ee6cf4c8d233d5202662d63c7984dfc9e75e83be',895,1,NULL,'[\"user-app\"]',0,'2023-02-09 19:33:58','2023-02-09 19:33:58','2024-02-09 16:33:58'),('0c723138a7a8830d64464b260a2c3d3616314189d57cedae2dbd8f34fa4d8dc4a573cffde173f6e0',1777,1,NULL,'[\"user-app\"]',0,'2023-07-17 22:05:29','2023-07-17 22:05:29','2024-07-16 17:05:29'),('0c9e934a5dc9be3f23b097e7766f4ce7108c558e86b94f348f758ab040979d5e1579f44d52027a4f',1336,1,NULL,'[\"user-app\"]',0,'2023-05-04 01:47:59','2023-05-04 01:47:59','2024-05-02 21:47:59'),('0c9fbc19d10e1a39b781e85ee58291badab014547f359bd6babae32fe18c9ba9aee544c903acae85',1993,1,NULL,'[\"user-app\"]',0,'2023-10-06 21:38:30','2023-10-06 21:38:30','2024-10-05 16:38:30'),('0cb28830e581415d310382ff27db121835ccfe07f67dd60857c1d546fbde7cd37f01ce75c4baa7e1',891,1,NULL,'[\"user-app\"]',0,'2023-02-09 02:38:10','2023-02-09 02:38:10','2024-02-08 23:38:10'),('0cbe4ac53d1ef2d47bc69578d2eaaece50b2f5bd3a4856de28e98dde57d2e70397b54e301016ce7d',2,1,NULL,'[\"user-app\"]',0,'2023-05-02 02:55:43','2023-05-02 02:55:43','2024-04-30 22:55:43'),('0cbfd84bbcb040d2179db78dc08a194dc27d51311b5a35b5f1fd50a3543cc9ba07e56f9e55ced435',1187,1,NULL,'[\"user-app\"]',0,'2023-09-28 19:33:11','2023-09-28 19:33:11','2024-09-27 14:33:11'),('0ccc38449f0c835948b07e9adb7b3feca5389fc7c5140ae4542f0431cebbce32973717e4a007c660',635,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:40:53','2023-01-25 03:40:53','2024-01-25 00:40:53'),('0cf43133d5e44b039930641d787a091e350f8a67b4de4fc856fca7a855bfdac4faacedc9e30510db',953,1,NULL,'[\"user-app\"]',0,'2023-04-19 21:56:50','2023-04-19 21:56:50','2024-04-18 17:56:50'),('0cfcb008ca4f02962d3f52b59ee19c3707dafcd9ec92b4bcf4f67fc0d33fefc8bc0c19f65f41fc7e',926,1,NULL,'[\"user-app\"]',0,'2023-09-05 20:14:50','2023-09-05 20:14:50','2024-09-04 15:14:50'),('0cfe7ce68ea490ca368c3d66d3c926837d0d7804abeec0220d3c331f9589ac548a889972481b3bce',2,1,NULL,'[\"user-app\"]',0,'2023-08-08 12:09:06','2023-08-08 12:09:06','2024-08-07 07:09:05'),('0d064f9141a5d736f548ad5bf677f1509411c72a3606c1bdf4941e02c890af721b285c511549439b',438,1,NULL,'[\"user-app\"]',0,'2023-02-10 10:05:38','2023-02-10 10:05:38','2024-02-10 07:05:38'),('0d2159328fc9235ea2e0979c50fc200631997c5b62d7e32704e5368547b408d6c3a741f50843d420',2,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:01:04','2023-07-08 01:01:04','2024-07-06 20:01:04'),('0d413284282ad1672a7f8c07edbecdef2bec7683ef25ad01a3232955322b2d433933d714065239ac',740,1,NULL,'[\"user-app\"]',0,'2023-01-26 17:30:53','2023-01-26 17:30:53','2024-01-26 14:30:52'),('0d49ac8401580873c372c30bc41160eaebc1f62e4859d3ddbb6b3e23b923d11980f045c9a185f7de',1478,1,NULL,'[\"user-app\"]',0,'2023-05-18 03:52:34','2023-05-18 03:52:34','2024-05-16 22:52:34'),('0d5bffbcaba28c04b46022a2401f25e34bb51a45aaf2e202d099565ea1965be060c7ce0155a12b3e',78,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:23:16','2023-01-25 13:23:16','2024-01-25 10:23:16'),('0d7108238f5f5123031a63a04eabe53ed6bd777c6b0f5eca10866bd288414fc26954e57d58323e31',2036,1,NULL,'[\"user-app\"]',0,'2023-09-23 17:20:54','2023-09-23 17:20:54','2024-09-22 12:20:54'),('0d741f85e13ccda0bdd549d359ecce6dfb421c4c1fa4ff8b7bd39221be5763b9babb5aa36cfb9f6b',1422,1,NULL,'[\"user-app\"]',0,'2023-05-11 02:23:40','2023-05-11 02:23:40','2024-05-09 22:23:40'),('0d8593a4011319dbd7eda94cabe4b0c5806db6de6012470fa3d1ae408fa9c22d20dc2cf7fd12121e',1018,1,NULL,'[\"user-app\"]',0,'2023-03-29 20:59:36','2023-03-29 20:59:36','2024-03-28 17:59:36'),('0d87d6aba37c233d4f6e151cd0f28e038429e5ddb98ed4980826772d5b93237b3d6a6a6e1b88e94f',765,1,NULL,'[\"user-app\"]',0,'2023-01-27 22:12:07','2023-01-27 22:12:07','2024-01-27 19:12:07'),('0d8d88b87b33ee3413f042a3c415228f8dc00b298ce4ecb3c9bdf4afd92b7f10cfdfa3bc4b561b0a',816,1,NULL,'[\"user-app\"]',0,'2023-08-02 12:36:08','2023-08-02 12:36:08','2024-08-01 07:36:08'),('0d98753c498e65c1e704a59ac7dc171aa7671a57afea4607fba3d3fda715588eefc698641e917fd2',167,1,NULL,'[\"user-app\"]',0,'2023-01-25 23:05:32','2023-01-25 23:05:32','2024-01-25 20:05:32'),('0db31967e64d7c86410a09e18052d5c09f3f86b4098bc7ccd86ad73734696a88892a1091f8a612a8',2,1,NULL,'[\"user-app\"]',0,'2023-09-09 23:21:57','2023-09-09 23:21:57','2024-09-08 18:21:57'),('0db873a7b7bc66ef9c7358e263f36e0b816966c5386385fc56315a5edccd2db38d464c4e3dc94a6f',2093,1,NULL,'[\"user-app\"]',0,'2023-10-04 12:19:30','2023-10-04 12:19:30','2024-10-03 07:19:30'),('0dc5270e51cb51c221fe021efd13125d271a27dbd9a1dcd1e8dfe81eaf3831e2386cdd0c85b08b05',832,1,NULL,'[\"user-app\"]',0,'2023-03-01 12:41:13','2023-03-01 12:41:13','2024-02-29 09:41:13'),('0dcc9bd9cb0c022ac4926370a602f647fe0716ced067346a25fabb6f1023dca970e2d3b58a96a322',1281,1,NULL,'[\"user-app\"]',0,'2023-04-19 22:16:13','2023-04-19 22:16:13','2024-04-18 18:16:13'),('0de2dd667ae8db2eec320ab8d6a1482ea6e9535cecbea5bf813ada947f6a577bc0aaf7cf3be41a41',1602,1,NULL,'[\"user-app\"]',0,'2023-06-20 15:25:32','2023-06-20 15:25:32','2024-06-19 10:25:32'),('0de7281f294962dd6aa16dfb1696bc635af3f2064cce27face8a37b64bbb02137116cf0200213efb',1407,1,NULL,'[\"user-app\"]',0,'2023-05-17 20:35:48','2023-05-17 20:35:48','2024-05-16 15:35:48'),('0dfaabae96ff9721e2d4a293191717fab2578bb72716cb3b97a05289a2211ee8316fdcac07e8fd77',8,1,NULL,'[\"user-app\"]',0,'2023-02-20 15:17:59','2023-02-20 15:17:59','2024-02-20 12:17:59'),('0e0a733ff52cab473efb5d7919c1877929ac5fdd6b64061223c970561c78663e56d3095a377c6bf2',438,1,NULL,'[\"user-app\"]',0,'2023-01-26 14:39:38','2023-01-26 14:39:38','2024-01-26 11:39:38'),('0e12e318fe5eef007aab8b939349389d245771e84fb82883c5f4b50d3ffdf44f4995aeef7c2eaefb',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 16:02:51','2023-07-17 16:02:51','2024-07-16 11:02:51'),('0e13c3707ba6187ad2b83f62559cf53523e0b1375e5b83fc30fb764ef13894598f3ef728d8d765c9',858,1,NULL,'[\"user-app\"]',0,'2023-02-04 16:17:31','2023-02-04 16:17:31','2024-02-04 13:17:31'),('0e5378943a509750a543c052e525c584b63788f1fc637a2161d20b60a37c542259358496c5b97795',2,1,NULL,'[\"user-app\"]',0,'2023-04-23 16:21:28','2023-04-23 16:21:28','2024-04-22 12:21:28'),('0e57e917aa0618eb296531381ff0ac5563577504cbfaa79ae4556401519a2acf5198e0fdecdbe473',1371,1,NULL,'[\"user-app\"]',0,'2023-05-05 05:28:46','2023-05-05 05:28:46','2024-05-04 01:28:46'),('0e5d22c5264791e690c50a59e491ab271e71c49a16cece54f6d12f2a4eb89353e4d80718c0c8e2b7',318,1,NULL,'[\"user-app\"]',0,'2023-07-11 15:41:58','2023-07-11 15:41:58','2024-07-10 10:41:58'),('0e602995f27610753feb1e9c70795c2e5a3977c2b2f3d3134022ed59c021bb0898c9920f79f2e744',2031,1,NULL,'[\"user-app\"]',0,'2023-09-22 20:20:11','2023-09-22 20:20:11','2024-09-21 15:20:11'),('0e6235a1c186fd1bc5ee5b46aedfd4d206a65a52021c79da24f1b264846bf9f8cd3873cde54ce0d1',1605,1,NULL,'[\"user-app\"]',0,'2023-06-20 18:52:53','2023-06-20 18:52:53','2024-06-19 13:52:53'),('0e6611c82f32937d0ba2415d25822aa0cf7d88d96477851a3860fc60ef0cd8bae6980621cbadf3ad',2,1,NULL,'[\"user-app\"]',0,'2023-05-17 18:01:50','2023-05-17 18:01:50','2024-05-16 14:01:50'),('0e78431e53251617bc7150e9dce03446e1c761ee49ce801f48501aa471dcab67d9573543e6e92473',365,1,NULL,'[\"user-app\"]',0,'2023-05-05 13:46:54','2023-05-05 13:46:54','2024-05-04 09:46:54'),('0e8cd437fc6d35075a7e6b566f08a41c0aafb2e57b87faad0dc5d8901599770fb4381f6b8f1d3e60',2,1,NULL,'[\"user-app\"]',0,'2023-07-16 19:51:26','2023-07-16 19:51:26','2024-07-15 14:51:26'),('0e8ebae7735820021c547d5b02e0a93ea80fb7e36edaef533f0aa125a77d39198a982d03285af152',855,1,NULL,'[\"user-app\"]',0,'2023-02-03 21:09:33','2023-02-03 21:09:33','2024-02-03 18:09:33'),('0e9e879c58927f922dd58dc42591598b8a4ba48fadd3f624b7962318b2c881e63b7579a4fd410675',1018,1,NULL,'[\"user-app\"]',0,'2023-04-13 17:17:55','2023-04-13 17:17:55','2024-04-12 13:17:55'),('0eabff45421305815953d061eed9f955e18fa451cfba972ba9e4d15cf78b17cd288234b95b625a27',1107,1,NULL,'[\"user-app\"]',0,'2023-03-05 12:13:15','2023-03-05 12:13:15','2024-03-04 09:13:15'),('0eaf7c41f5f0e71f3c7f6b1bce91c6a429eb7ad4eea0cab1a307d50a76aeadfe42e3c1b118367f32',2,1,NULL,'[\"user-app\"]',0,'2023-04-03 12:56:24','2023-04-03 12:56:24','2024-04-02 08:56:24'),('0ec95ec1f584dccfa45fb0da6224040b9f47310d81842cf6c89975953e7daed394bcb5e129a4b4f1',1852,1,NULL,'[\"user-app\"]',0,'2023-08-03 13:17:37','2023-08-03 13:17:37','2024-08-02 08:17:37'),('0ed1b7545512adcc9160378f6260b5c89e31822ea2e6f2389bf2fecf0153c3c88177bb569d9e3a53',977,1,NULL,'[\"user-app\"]',0,'2023-09-20 19:10:33','2023-09-20 19:10:33','2024-09-19 14:10:33'),('0ee5c68a7d385619637a536d506a2a8a60d07337d2892481db773dd3131394ac1da6d45b28c73b9a',205,1,NULL,'[\"user-app\"]',0,'2023-01-25 20:23:53','2023-01-25 20:23:53','2024-01-25 17:23:53'),('0f0f5706e4593050669cee9593b7eb98155eba43c359ea1c318a748655ef6003fc6eeff4be864407',2,1,NULL,'[\"user-app\"]',0,'2023-06-09 20:08:31','2023-06-09 20:08:31','2024-06-08 15:08:31'),('0f11802a08d8e26bd4043784c0584166cbfc03504f8de641bf8ca20a1f42ecb6f87836b6418202dc',1940,1,NULL,'[\"user-app\"]',0,'2023-09-14 22:30:32','2023-09-14 22:30:32','2024-09-13 17:30:32'),('0f145fab9294418fc8399fc62a8c7917e4d228cacdc38b43aa3cbb6fa25bdad616e865da6e6e6182',1071,1,NULL,'[\"user-app\"]',0,'2023-02-24 16:30:05','2023-02-24 16:30:05','2024-02-24 13:30:05'),('0f15a42bd0451a8d86a87f5a8e7fbbfb50c233354e4e3d7de104d2d45e2a83605f2d48f3ef772906',1058,1,NULL,'[\"user-app\"]',0,'2023-02-28 21:43:20','2023-02-28 21:43:20','2024-02-28 18:43:20'),('0f18d1278f2cf590b606b01695051f59a2c1fe511be8c9e04a5fa436fa316199f8fe27ea387a34f7',1929,1,NULL,'[\"user-app\"]',0,'2023-08-29 21:30:46','2023-08-29 21:30:46','2024-08-28 16:30:46'),('0f30d8b0c8579c1c3144f1ca844ca4817cc691993072071e95379e128e2560a8e35fa85da9504d0f',2,1,NULL,'[\"user-app\"]',0,'2023-04-23 22:11:39','2023-04-23 22:11:39','2024-04-22 18:11:39'),('0f46862ffc2933da5ee9e249d8c20642474ae13fbfede39b9287748e3dedcf122092fe2a85bad4a8',148,1,NULL,'[\"user-app\"]',0,'2023-03-02 15:09:02','2023-03-02 15:09:02','2024-03-01 12:09:02'),('0f645e4ef33d87e7df0680f1e355525d8300ed6015537eb7153fd405af4e5aa525fb13a048602f2d',1397,1,NULL,'[\"user-app\"]',0,'2023-05-09 20:37:46','2023-05-09 20:37:46','2024-05-08 16:37:46'),('0f6581bfff7b361647653e86ce4507a11b8bf402ca62e8d27d1204cdef0032ecda2d0fc9eb380dc4',1518,1,NULL,'[\"user-app\"]',0,'2023-06-01 09:01:16','2023-06-01 09:01:16','2024-05-31 04:01:16'),('0f73dd611168350c7bbde528a0169292dd085b0ca28377aa62752043c478f43cf181a1a0b76226e5',2,1,NULL,'[\"user-app\"]',0,'2023-03-16 08:49:25','2023-03-16 08:49:25','2024-03-15 05:49:25'),('0f8578690cabf3e642d0a63be117ec3f6f1b3805c002b5e88d76fef1bed7bfc81929c5b344a0e72d',917,1,NULL,'[\"user-app\"]',0,'2023-02-16 13:46:03','2023-02-16 13:46:03','2024-02-16 10:46:03'),('0fcea94cdc014ffb7e1ab214b2b7ea3d5ab9f5a5ab945ea4771b96170c5112529d94e60f27c2f39d',2,1,NULL,'[\"user-app\"]',0,'2023-06-17 02:54:48','2023-06-17 02:54:48','2024-06-15 21:54:48'),('0fd476b7af3b4273cab7461ba7487a5027c4dd1491a461978a45658984358bcaaa773fb5a96e5e2b',1094,1,NULL,'[\"user-app\"]',0,'2023-06-18 01:26:27','2023-06-18 01:26:27','2024-06-16 20:26:27'),('0fd75d39bf3131b1d72332cf80e4601462680ee9221c9ab984c28c0cdedec84173d33c659ff6a27c',1042,1,NULL,'[\"user-app\"]',0,'2023-04-22 13:16:56','2023-04-22 13:16:56','2024-04-21 09:16:56'),('0fda013d74d195571c54beea0d65b7349fc9aaee7aeb00cc49bd450bb9b1059756bcc93b48aba8f6',495,1,NULL,'[\"user-app\"]',0,'2023-01-27 16:10:15','2023-01-27 16:10:15','2024-01-27 13:10:15'),('0fdae596f83cadf5c9f84e9096548ba9072cd7ae1f455606db956838d6f31d6b7bd7dbba778bb50d',2,1,NULL,'[\"user-app\"]',0,'2023-07-07 16:33:12','2023-07-07 16:33:12','2024-07-06 11:33:12'),('10054a3ffb220491a3d222af2b8ccef3acbe221533fde9e4925d2ddc4bdc8056cc9c52c89257fbce',2,1,NULL,'[\"user-app\"]',0,'2023-08-05 20:56:13','2023-08-05 20:56:13','2024-08-04 15:56:13'),('1007c6aaf6d29fa02eb80822e4b1d13126ee62d28426189bfc9c701e935e2a141a5792ef95fc3ed2',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 19:37:42','2023-09-04 19:37:42','2024-09-03 14:37:42'),('100b9d4bd751ebcf9e18417eeaad4299edb6d815e4d4d656681614325317de55a4e87e5a4310a450',1290,1,NULL,'[\"user-app\"]',0,'2023-04-21 02:39:44','2023-04-21 02:39:44','2024-04-19 22:39:44'),('1011545c4c2aa5c042de633cce76b359d0c34762c9a255765e3be349676b15edc3708c3dd67cd44f',2,1,NULL,'[\"user-app\"]',0,'2023-05-22 01:39:24','2023-05-22 01:39:24','2024-05-20 20:39:24'),('1015c1793887cc291ba987d40014ba9880aaccd219f66a5fbb4824be1fea55fad453463fec0dfbd2',903,1,NULL,'[\"user-app\"]',0,'2023-02-11 07:43:54','2023-02-11 07:43:54','2024-02-11 04:43:54'),('1038c84fa4cfa5dc6340ffde9470a967d0c11b4d69fafddeb822b28d3f327be1fd51d847ae93e7d8',962,1,NULL,'[\"user-app\"]',0,'2023-02-17 11:10:52','2023-02-17 11:10:52','2024-02-17 08:10:52'),('103e0ab3f580ce28774d9b5d72777e8ee3af4a8f8e8e9272a51a60efd9a6dc703af89fe0efcd48e6',2,1,NULL,'[\"user-app\"]',0,'2023-04-15 03:03:25','2023-04-15 03:03:25','2024-04-13 23:03:25'),('10415f8aceb801cf0d7819d54428d3e0fd12ab884beefab483557ca9e867f25489a6775d0b32def4',2,1,NULL,'[\"user-app\"]',0,'2023-09-28 00:49:40','2023-09-28 00:49:40','2024-09-26 19:49:40'),('10418968b615ee17c206e460ccc5c4b49c6b31fbf7aea87f18ea525522542f252f1242d1adbe3103',120,1,NULL,'[\"user-app\"]',0,'2023-02-23 20:26:34','2023-02-23 20:26:34','2024-02-23 17:26:34'),('1047db09684a4b338122c83dc42e42ce165143463261a3a8d490cc227f7480022c51ed3f357b543b',945,1,NULL,'[\"user-app\"]',0,'2023-02-16 17:50:46','2023-02-16 17:50:46','2024-02-16 14:50:46'),('104b86a20ee8cebeb0ad8a493fb35549a53bcbc8cbe7d5cf61840554fa7b3b31126af92f0549c608',1846,1,NULL,'[\"user-app\"]',0,'2023-07-31 22:21:13','2023-07-31 22:21:13','2024-07-30 17:21:13'),('104e24e224bdc37a6b07965913ad82c41ed84e81180b9040bcb350e9e4f2eb0bbbe49c649f7733ab',272,1,NULL,'[\"user-app\"]',0,'2023-09-30 03:57:23','2023-09-30 03:57:23','2024-09-28 22:57:23'),('105ad7756a29047e2501e2b228f6262aa78817258d640891d5b301c0d8f0b7da402a79e6bbc9acda',691,1,NULL,'[\"user-app\"]',0,'2023-07-10 16:55:32','2023-07-10 16:55:32','2024-07-09 11:55:32'),('105dddc59588685e9bbc8a7513458283437a705505c2d72cf952fce1e95919077cdb4ba5aea6d81c',2024,1,NULL,'[\"user-app\"]',0,'2023-10-05 21:52:28','2023-10-05 21:52:28','2024-10-04 16:52:28'),('107ae666890db44f31d8691d15213c345360964f40b06472c12f68e7b63cf0ce8232d83dfe2034c2',2,1,NULL,'[\"user-app\"]',0,'2023-09-13 16:37:52','2023-09-13 16:37:52','2024-09-12 11:37:52'),('107e616d542fb62ce6dd920beb4bc1b39dad2d9bf1f8fe3e5d72f2e66ce70b9b327d6abddd3ce587',2,1,NULL,'[\"user-app\"]',0,'2023-07-22 01:41:24','2023-07-22 01:41:24','2024-07-20 20:41:24'),('108648acb4ded67a374af4b7625c7e17517df7a0a61ea2c65a4cf271ead24f4f61977d08a4decfa4',1179,1,NULL,'[\"user-app\"]',0,'2023-03-22 20:44:58','2023-03-22 20:44:58','2024-03-21 17:44:58'),('109064f04ef8bb1be1b77b0d1d5c86fd814c4fe2c74385c3c3c52d55873c4d7d17849608e79d6bb2',2,1,NULL,'[\"user-app\"]',0,'2023-05-17 19:09:16','2023-05-17 19:09:16','2024-05-16 15:09:16'),('109a5e1d4f450671761c19b15aa9fa567c593e312486b3f09706715b3660ffc03ab0075c251afbd2',571,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:44:30','2023-01-25 02:44:30','2024-01-24 23:44:30'),('10a65bcd2fc9d790c4d99a7d495d50a795abf6dd567cdc2162fd9060bf6d3b17e2d37f402bd44d16',2,1,NULL,'[\"user-app\"]',0,'2023-04-19 21:16:27','2023-04-19 21:16:27','2024-04-18 17:16:27'),('10b03bf28bf72d3ba3c00aa454d780902c60d9d11e720c2478734ec7205e059a7ff2af0af2d831ad',2,1,NULL,'[\"user-app\"]',0,'2023-05-05 19:20:24','2023-05-05 19:20:24','2024-05-04 15:20:24'),('10e092d82dc32f518ffc40f777858b73e61d4adfe27fc5aa55b0bc3537455cdcfffd783644a40f92',2,1,NULL,'[\"user-app\"]',0,'2023-07-29 00:03:01','2023-07-29 00:03:01','2024-07-27 19:03:01'),('10ee5e7b321ca9eca664ae30524e6a627b23a207686aa871284ceb18bde7ee997d9a6ec6d98ed3a2',8,1,NULL,'[\"user-app\"]',0,'2023-03-29 01:17:17','2023-03-29 01:17:17','2024-03-27 22:17:17'),('10fc1661227f55dc3c96c0b865acfef0160e346cb5bfda2a1f7ba1c0be6ea465d6e6cafe02b2f2b8',685,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:06:34','2023-01-25 17:06:34','2024-01-25 14:06:34'),('113fdf79a19f34a7e74c2e68165f28d32362cf3305dffeb8b754ec40aa06667c875567b3fce9d800',1899,1,NULL,'[\"user-app\"]',0,'2023-08-19 22:51:39','2023-08-19 22:51:39','2024-08-18 17:51:39'),('11547d46cdbea78370a0fdb599d07165c2d88f5c691198be62386168a2f2e371176eca832959f5f7',1822,1,NULL,'[\"user-app\"]',0,'2023-07-27 01:16:42','2023-07-27 01:16:42','2024-07-25 20:16:42'),('116bd56a9cde02337283fcdf93c51eeb6530bad2f20618a7c09be4222bebc6f18c2a2784d25ec088',115,1,NULL,'[\"user-app\"]',0,'2023-10-01 17:11:52','2023-10-01 17:11:52','2024-09-30 12:11:52'),('117f2809c452abee892221f699e829f42329d03b08958624a12caf3f0893eda19c86f1141e1ce4b1',1642,1,NULL,'[\"user-app\"]',0,'2023-06-25 20:06:30','2023-06-25 20:06:30','2024-06-24 15:06:30'),('11a3ccef98d20cf3b25dc3b43a35a44a4648a71dd9068d9d93935bf220d5ad6a1072d3f0cbb032b3',1581,1,NULL,'[\"user-app\"]',0,'2023-09-20 17:44:12','2023-09-20 17:44:12','2024-09-19 12:44:12'),('11af18f38d2f3f3ba6c6ff29e9e6acb54f4a68f80eb9fd54533290a6202b971f00b84fe6c2e64ba8',1762,1,NULL,'[\"user-app\"]',0,'2023-07-17 15:06:45','2023-07-17 15:06:45','2024-07-16 10:06:45'),('11bc0b058e0ce7d18ac76fd55ea8a0433a227bd4be80e1964e5be95baec6a5fdf22b8967c57bfff4',1418,1,NULL,'[\"user-app\"]',0,'2023-07-14 14:20:57','2023-07-14 14:20:57','2024-07-13 09:20:57'),('11c1b7f258885a3324a1c4d97c38c8d8ee7671515e71e7c4e81d6405cd7365d78302c20aabc66c52',2,1,NULL,'[\"user-app\"]',0,'2023-05-06 19:53:45','2023-05-06 19:53:45','2024-05-05 15:53:45'),('11c76f2856e18885d284500342009b9eab0446c26bc354c4cd92f6be10005c948011786dcde0003a',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 21:25:40','2023-10-07 21:25:40','2024-10-06 16:25:40'),('11d3e2ca31b1e3b1de3694d73e466d47abaa101481a46e009389ad22c10d9ddc4e7c5c2b1d7c13dc',2,1,NULL,'[\"user-app\"]',0,'2023-05-19 20:07:56','2023-05-19 20:07:56','2024-05-18 15:07:56'),('11f784c1a1b07f8db431419251b7d8af0f75490738a42a64fb381122ce169c9d8cf75a34c94f5713',977,1,NULL,'[\"user-app\"]',0,'2023-02-18 18:09:26','2023-02-18 18:09:26','2024-02-18 15:09:26'),('1210d55f0d4ccc2ebd5bf6967b8f81ffb605537547a4ef0ada9f06289401da32921b55aba9bda8e6',208,1,NULL,'[\"user-app\"]',0,'2023-06-05 16:12:13','2023-06-05 16:12:13','2024-06-04 11:12:13'),('1218338aa0bcaec5b9e76c4304606b3e45ffcc58dc51aac86f5bf9420b4957aefb865e7337c1c511',109,1,NULL,'[\"user-app\"]',0,'2023-02-01 18:48:17','2023-02-01 18:48:17','2024-02-01 15:48:17'),('12189dd5ac5507e26e39201e00ff0303d185f9d7d3bef10c6d0c4dd66ec2549cc9f14addeec2194f',1491,1,NULL,'[\"user-app\"]',0,'2023-05-22 15:31:30','2023-05-22 15:31:30','2024-05-21 10:31:30'),('121ba777b7498f6638a72125f9320077b8276842ea40064badf8806f93ccd2acec2e19f106e94a46',712,1,NULL,'[\"user-app\"]',0,'2023-09-23 22:55:10','2023-09-23 22:55:10','2024-09-22 17:55:10'),('1221bbf9fc7be372b394b0faeb5b31e56cba9530dfbaa429a40be96cf388322c61b2d8f147b2e56a',1858,1,NULL,'[\"user-app\"]',0,'2023-08-04 18:50:09','2023-08-04 18:50:09','2024-08-03 13:50:09'),('122c783c75e6f55705354ed2d4b17474ab495fe4339ee4ad60e0386cba49eeee1af67b635cdb61b7',2,1,NULL,'[\"user-app\"]',0,'2023-03-02 03:24:32','2023-03-02 03:24:32','2024-03-01 00:24:32'),('122f2ed8a2272e13ab6b4964807486ddd97ead14aa0e783c5de2c15da3daaae4aea21be5768fdf9e',2,1,NULL,'[\"user-app\"]',0,'2023-06-26 20:37:45','2023-06-26 20:37:45','2024-06-25 15:37:45'),('122fd283e400dcca18aa29ee99a869cf611f14dd8bf38a8451fe2287e87e4a0e526279316f9209f5',2,1,NULL,'[\"user-app\"]',0,'2023-07-20 03:27:17','2023-07-20 03:27:17','2024-07-18 22:27:17'),('1236decefafa09f4ec5798787555c457907c13d6f5dfe1fbe2325acf24a1138e0663674c26e16872',1007,1,NULL,'[\"user-app\"]',0,'2023-02-20 23:05:27','2023-02-20 23:05:27','2024-02-20 20:05:27'),('1266f44f9f6a00d6bde7ce800050439b12fbebb854ddb98a12f22a531009e9aa6901eb0f29892a7c',255,1,NULL,'[\"user-app\"]',0,'2023-09-09 12:14:48','2023-09-09 12:14:48','2024-09-08 07:14:48'),('1274cabd931f69116f9fbce9bb28cd10de2e50d53b581f5ebc29a74434234bf8842990a065e6d235',2,1,NULL,'[\"user-app\"]',0,'2023-09-09 19:57:38','2023-09-09 19:57:38','2024-09-08 14:57:38'),('127ac91a421073656be5daf8dccec2a7e2b1c3e05b3552d556fc1a57f845526f7cfc160fc75f1556',2,1,NULL,'[\"user-app\"]',0,'2023-06-02 01:12:03','2023-06-02 01:12:03','2024-05-31 20:12:03'),('127ec94d78326eed1a61b1354f8fa3f58e941c021eb61da703e173b2a29bf1e73782db2fa2cd9214',1605,1,NULL,'[\"user-app\"]',0,'2023-07-09 23:14:31','2023-07-09 23:14:31','2024-07-08 18:14:31'),('128874f8e6ba550d9ef7f66d4b2db6e8e28b7682076edd4d302394fd742f175ef29f58c0d9c504dc',1928,1,NULL,'[\"user-app\"]',0,'2023-08-29 13:03:35','2023-08-29 13:03:35','2024-08-28 08:03:35'),('12931697ab155fc1ced11cffad03943b3879b528acb37cad5bea024b7db36ec31232050db1e6aad0',953,1,NULL,'[\"user-app\"]',0,'2023-04-24 15:16:44','2023-04-24 15:16:44','2024-04-23 11:16:44'),('12aae7ab046cfbb58a634aaf3b1f708f48253609210d1fad8d0e36d971a804c2b1939b771d7e0dd2',133,1,NULL,'[\"user-app\"]',0,'2023-09-30 13:57:53','2023-09-30 13:57:53','2024-09-29 08:57:53'),('12bcdbf4b9f6d1a06393046de95ce01905414ba5aa709cc6a84951215c221715218d1fc91d8f04ae',1770,1,NULL,'[\"user-app\"]',0,'2023-07-16 00:19:58','2023-07-16 00:19:58','2024-07-14 19:19:58'),('12c13e655c45e46628ec6f16b99e3b11e946b7fcd23a8c6f744b37ef420a869d3bf1a4553c774f19',917,1,NULL,'[\"user-app\"]',0,'2023-07-06 23:58:15','2023-07-06 23:58:15','2024-07-05 18:58:15'),('13019a7b37ff1a4998f49627e986b79e9fce24876ef7c3e226b95a016c5628aed12bde47670d759b',908,1,NULL,'[\"user-app\"]',0,'2023-09-20 20:58:05','2023-09-20 20:58:05','2024-09-19 15:58:05'),('131c6431bb8870d351869a7f20d9c8bff9c0a863ef8b5b5d30689fc8781cfd5a6b18cf5bdd355ffe',8,1,NULL,'[\"user-app\"]',0,'2023-04-20 19:19:44','2023-04-20 19:19:44','2024-04-19 15:19:44'),('1324f2829c242fecc7d002822ab1a8b8486cf31c7a09a3131cc51db3222d9feeac90f23f33cbe408',1090,1,NULL,'[\"user-app\"]',0,'2023-02-27 17:19:01','2023-02-27 17:19:01','2024-02-27 14:19:01'),('133adc4f8eafd41ea8e8ec9fe7d00f6d11551aebdaf576b0d4856d271cc531c6cec13852c6214581',1788,1,NULL,'[\"user-app\"]',0,'2023-07-21 21:43:50','2023-07-21 21:43:50','2024-07-20 16:43:50'),('133f0346e10a4785d102e3a9e476be1c2447d02c0c0872b2c0519a334eaea933040b4d9a71f623ff',8,1,NULL,'[\"user-app\"]',0,'2023-03-29 00:51:22','2023-03-29 00:51:22','2024-03-27 21:51:22'),('1355eb2f4f520aa74ca4f0fda784b814ce14f8ec41fc9dc4357458e5e11935ef97841f64e4a64ca5',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 21:43:47','2023-09-25 21:43:47','2024-09-24 16:43:47'),('1374e89fb9bfadba4cb71b3aebb6fa90407447a28f636b5c024b5861ca522094eab43c7a5bc2e51e',1590,1,NULL,'[\"user-app\"]',0,'2023-06-18 00:50:03','2023-06-18 00:50:03','2024-06-16 19:50:03'),('1383b1daaf1652ad85dec8fc3872f5a342ea00da28f675df7bfef276aeb37be6e5424cd35cd4d8e8',68,1,NULL,'[\"user-app\"]',0,'2023-03-01 12:29:23','2023-03-01 12:29:23','2024-02-29 09:29:23'),('13b5792e35f56533258ee1bfda2a4fed55533b6c5307cbe8547f76d06a39b57c7a2e50d2f221734d',1093,1,NULL,'[\"user-app\"]',0,'2023-02-27 20:24:12','2023-02-27 20:24:12','2024-02-27 17:24:12'),('13b671b30723a272070938c02991a0e4f42d2abbc918641e8ab4aa1c050a5e6bfb1feefac4d138cc',1102,1,NULL,'[\"user-app\"]',0,'2023-03-01 17:10:07','2023-03-01 17:10:07','2024-02-29 14:10:07'),('13b7c5681324c1e5a54691b9e2976121b91a9caf11b6a7a9c5479e622571427506f20d4eb9c6fa49',200,1,NULL,'[\"user-app\"]',0,'2023-02-02 23:12:46','2023-02-02 23:12:46','2024-02-02 20:12:46'),('13cb5b8adecc7bc6411f225ae68d62651177057f2e9d915ebb1551e53f0bacd953f099e4494667c5',829,1,NULL,'[\"user-app\"]',0,'2023-02-01 00:59:31','2023-02-01 00:59:31','2024-01-31 21:59:31'),('13e449d825711cf50025234a10c68161f8cbde442bf6a98c3a02b4536dc289b83f7a13c1d4e78ce5',8,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:19:55','2023-01-25 15:19:55','2024-01-25 12:19:55'),('13e57b284a1d7e7a00c079852e7ed627f25edd3e210271b4504cfd09f069089a33a60c16384d9c16',2,1,NULL,'[\"user-app\"]',0,'2023-07-23 01:34:48','2023-07-23 01:34:48','2024-07-21 20:34:48'),('13f0837c6867cb1b35bc1af83660d954abc6bab30fb8ab7e0210374d6fec4854f2c3dced01fedc65',1043,1,NULL,'[\"user-app\"]',0,'2023-10-06 01:49:56','2023-10-06 01:49:56','2024-10-04 20:49:56'),('13f4e1c044fce1c4e4ae275e753f5e4e02d0d52984351790f37c7a49dbabe98de28cd4106546012c',957,1,NULL,'[\"user-app\"]',0,'2023-04-12 18:58:07','2023-04-12 18:58:07','2024-04-11 14:58:07'),('1402f53a3cf9c9856ae442992c1ebc7403301407d22a5f873cc05f42b4128a0c1ce01af2415fa357',1282,1,NULL,'[\"user-app\"]',0,'2023-04-20 00:35:17','2023-04-20 00:35:17','2024-04-18 20:35:17'),('14127b7b39c8bfc70995296f939548dd24665d83741367339b8067c038e75a308a2d8fdf5c6103c3',1487,1,NULL,'[\"user-app\"]',0,'2023-06-05 19:12:46','2023-06-05 19:12:46','2024-06-04 14:12:46'),('142c2e3847415cd48aeaaf867fcf19e0a6518954d9da8677c21543c9798a7fb7fab356c82e714017',104,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:42:31','2023-01-25 16:42:31','2024-01-25 13:42:31'),('14300ce443da267e46e25ecff070e81d262651ba17b14b72f7b23af36b0f85200782273a9f7c79fa',1299,1,NULL,'[\"user-app\"]',0,'2023-04-22 02:01:12','2023-04-22 02:01:12','2024-04-20 22:01:12'),('143690d62ba2752e734d1419d3a18f006d6bf5b15ea6d88f89dc5c996dce5430234432fce695f8dc',2,1,NULL,'[\"user-app\"]',0,'2023-08-19 18:35:29','2023-08-19 18:35:29','2024-08-18 13:35:29'),('143adfb26c2e9842ff5db0f45628b97de2c7889d509a5a7b909b4bff2c0388c2ecf5ced2f36e946f',247,1,NULL,'[\"user-app\"]',0,'2023-01-27 11:10:30','2023-01-27 11:10:30','2024-01-27 08:10:30'),('14427860af4aeae21f4ded47ea8fffb65aae52543417554ca00267047a08c1ecb851b22d8fb4b44f',255,1,NULL,'[\"user-app\"]',0,'2023-05-05 15:00:53','2023-05-05 15:00:53','2024-05-04 11:00:53'),('144788d07336e89172243eb3b6d66043d0c163d622484b53a0863c365b9a459004a5bcb85acfe541',1803,1,NULL,'[\"user-app\"]',0,'2023-07-24 20:58:20','2023-07-24 20:58:20','2024-07-23 15:58:20'),('14493c18e7ee36d2da9a293a66578188ca477c25708a86d9c30ce7147ef8b421c9d088a563813af8',2,1,NULL,'[\"user-app\"]',0,'2023-04-22 12:58:48','2023-04-22 12:58:48','2024-04-21 08:58:48'),('1450d280e959e09afec30e04f2837992c902d2b3e023ce27e1aae03ec713a0d3c23467b77b2483eb',1122,1,NULL,'[\"user-app\"]',0,'2023-03-07 21:38:20','2023-03-07 21:38:20','2024-03-06 18:38:20'),('145a25b70fec186f811d27d60471ac9ed6a3d01b1c98e83a4b843a5711bf560b3e78dc6514392e68',81,1,NULL,'[\"user-app\"]',0,'2023-03-07 21:05:44','2023-03-07 21:05:44','2024-03-06 18:05:44'),('14a1a1a68720ace29a878bd0ce4834a715f4fa7f55d4817ca0d098ac3a265566668e8a45b6496846',2,1,NULL,'[\"user-app\"]',0,'2023-08-30 00:06:23','2023-08-30 00:06:23','2024-08-28 19:06:23'),('14a4e43eb7982d93294680ab627fddc3b3349774a8a8e402331eca9868e81a7bbd0659e56ed9e427',1827,1,NULL,'[\"user-app\"]',0,'2023-09-10 05:30:34','2023-09-10 05:30:34','2024-09-09 00:30:34'),('14c3dca7d0fab9413ec3f567894d288ce0accc382f572146c0dbca0f1af6eb087b1da05401607d3c',540,1,NULL,'[\"user-app\"]',0,'2023-06-20 03:13:17','2023-06-20 03:13:17','2024-06-18 22:13:17'),('14d3d9671907d91fddb8679ed38a5a2e7334cc5305f01573a556fd6d7b1456597faac0ff8296bd1e',417,1,NULL,'[\"user-app\"]',0,'2023-02-09 19:26:21','2023-02-09 19:26:21','2024-02-09 16:26:21'),('14da62071411224e3ef80a89b54e25f7f85905ccdd06cd70833079f27cea26f90a91961abc6e3894',2,1,NULL,'[\"user-app\"]',0,'2023-03-12 17:12:30','2023-03-12 17:12:30','2024-03-11 14:12:30'),('14e286125aa8aaa8379e954f704215d6d50c4d7456a45cd873f58a8e6bfc99fbebe63aa96843e640',8,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:55:02','2023-01-25 17:55:02','2024-01-25 14:55:02'),('14f7b5029527e4fbecd9848c551199e1ff109fb9af1bfad805c793bc877013d7a15ca0d16a9cc77c',2,1,NULL,'[\"user-app\"]',0,'2023-08-19 22:04:14','2023-08-19 22:04:14','2024-08-18 17:04:14'),('14fec6b28ee50ca522cf982b4603f96be584d972fbfa129ca4a189883294db0ebbc668f75863b468',1422,1,NULL,'[\"user-app\"]',0,'2023-05-15 14:38:42','2023-05-15 14:38:42','2024-05-14 10:38:42'),('150a703d9cbc3083f3ece706af3bc9d185ee07ea913e7cf1a6282abd3a5a53507031db92d0531df0',2071,1,NULL,'[\"user-app\"]',0,'2023-09-29 19:18:49','2023-09-29 19:18:49','2024-09-28 14:18:49'),('150e8eac29d9a30247f36087ab44c7bbfa2a78f7d69743b1d21603f0784defa008b6c4b20da28768',1708,1,NULL,'[\"user-app\"]',0,'2023-07-10 18:42:23','2023-07-10 18:42:23','2024-07-09 13:42:23'),('151c7391121f1d9bfeeb48bce0760ef7ada14cb2e190b23559399f136fa6aeeaff66010c7d668ff7',699,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:46:26','2023-01-25 19:46:26','2024-01-25 16:46:26'),('15268cacddac6934d3c8f4c5185d7df9ed8c13f12a0f45ba9b65d5c475719e8b7cce7cf4e81d6acd',387,1,NULL,'[\"user-app\"]',0,'2023-06-13 15:54:47','2023-06-13 15:54:47','2024-06-12 10:54:47'),('15430472a580fcb6775025c0aa484e3b81563444beb3bd3351c806fefb44117c1d6d5f1648e15560',927,1,NULL,'[\"user-app\"]',0,'2023-02-15 00:16:22','2023-02-15 00:16:22','2024-02-14 21:16:22'),('154c1c3ab5d3e9570643cf57fd130f015b7a7efbc3ac1b6bccf7f7d045b3e444f031b7989a07dcd6',714,1,NULL,'[\"user-app\"]',0,'2023-01-25 23:49:24','2023-01-25 23:49:24','2024-01-25 20:49:24'),('155a2676b9b0fc1e0ea92f407116db092a6178b94ac201b0ed4fc3719d5f0426802516df70c04360',1115,1,NULL,'[\"user-app\"]',0,'2023-03-05 00:11:56','2023-03-05 00:11:56','2024-03-03 21:11:56'),('15786bd656aff8220ad53aaff8dff9ff2984cfd5ddd0a94ab4ddb5c834b869fa550ac07d11eb5df9',1174,1,NULL,'[\"user-app\"]',0,'2023-03-19 22:40:44','2023-03-19 22:40:44','2024-03-18 19:40:44'),('157ff63b66bbe02a7150c623abf17c550e098006b7860daae0236dcbec041b92be1f033f0f9e1ed9',2,1,NULL,'[\"user-app\"]',0,'2023-05-16 19:30:32','2023-05-16 19:30:32','2024-05-15 15:30:32'),('15855929e8f18335e805d477b59d9147dde71b0d88ccd5ff8d51f0e051e008d827c483935be01c76',2,1,NULL,'[\"user-app\"]',0,'2023-05-05 19:37:19','2023-05-05 19:37:19','2024-05-04 15:37:18'),('1589d2d2588108f43b7a7f5199a214b8fa6bb038b9977951f9c80cee21f6e004d5a00869620d6c06',877,1,NULL,'[\"user-app\"]',0,'2023-02-08 01:29:11','2023-02-08 01:29:11','2024-02-07 22:29:11'),('15ceb43ce0c9104ba9fb02a73a18aa6a719a7ffa140e5b7b51800bd41dc04daf07f96df6c84e03c5',1605,1,NULL,'[\"user-app\"]',0,'2023-07-13 02:18:21','2023-07-13 02:18:21','2024-07-11 21:18:21'),('15ee1acca39cb1c309fe3935b23e4895c37e3ef2e2f43f1ea91e8a02c4ede975e31bb60c1758ed03',1016,1,NULL,'[\"user-app\"]',0,'2023-08-10 21:31:24','2023-08-10 21:31:24','2024-08-09 16:31:24'),('15eff136761701bd076620d443e707bcbb5d46817c991710688ac2528dd9670f1f6a3df98a14303a',172,1,NULL,'[\"user-app\"]',0,'2023-07-21 16:24:03','2023-07-21 16:24:03','2024-07-20 11:24:03'),('16041a1cebccf8df5ed0fdb1e3d083ed9ee6e7b75e87ec14c5d22112b0f2a23058fff763532c9aa9',1498,1,NULL,'[\"user-app\"]',0,'2023-06-04 15:53:00','2023-06-04 15:53:00','2024-06-03 10:53:00'),('160578452c2ac1223ec5a6791e5ba4d6de514b40cb795c3eac56bec05ea0d1ac80b94a479fd56b8b',1516,1,NULL,'[\"user-app\"]',0,'2023-07-16 15:53:01','2023-07-16 15:53:01','2024-07-15 10:53:01'),('16189e7eae00f0f1d9391f19f1d3c5fbce4d4dc6cab8e89d02b8dcdddd95736a2a274af4ca53cf5c',321,1,NULL,'[\"user-app\"]',0,'2023-04-25 22:31:01','2023-04-25 22:31:01','2024-04-24 18:31:01'),('161a4d3016d6d95718cd9d8c6671d98ebcdd6e5b16a78f8848fc6bde98f13c081978639013067956',585,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:09:41','2023-01-25 11:09:41','2024-01-25 08:09:41'),('162760c25c8006ecf9360f29efc76a1a86b9dbf75204a711c24ba0e01c98e8a567686d48b1eec716',2060,1,NULL,'[\"user-app\"]',0,'2023-09-27 15:43:54','2023-09-27 15:43:54','2024-09-26 10:43:54'),('163255b25614dfa0ad8fff7a84cb3f5bbaf7a81693016b6e019e642f0a75bfe4e5024c37a5cf8e2d',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 13:48:20','2023-01-26 13:48:20','2024-01-26 10:48:20'),('1634fffb0d5249664fdef78af5d1c84867c7587803c4d5118c43864c7a74f3355d5ea29f1d1ceb66',1930,1,NULL,'[\"user-app\"]',0,'2023-08-29 23:46:40','2023-08-29 23:46:40','2024-08-28 18:46:40'),('1638c81224eb48704662562a2a1bfc51f495257d85bb5e949a60168bc80cbd2eb5d5a5df74232cc9',244,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:58:03','2023-01-25 11:58:03','2024-01-25 08:58:03'),('16403bcda9f5f1ef2dff25fb0876c38da5bbeb035164685e6fd0ab406c3f8b4b32d716322497a880',2049,1,NULL,'[\"user-app\"]',0,'2023-09-25 15:06:31','2023-09-25 15:06:31','2024-09-24 10:06:31'),('164dba70b031628bbc6d4a8406167fdc68ce0311227e215acf1a08d35de2aaab60b0bf2a1dd7b30e',1654,1,NULL,'[\"user-app\"]',0,'2023-09-24 16:49:06','2023-09-24 16:49:06','2024-09-23 11:49:06'),('1660af97523dbe7c9273ac096ae3cc2b6916d8d11a1c798c2bd9c9957fb6bfcdee2381adda792ad5',631,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:01:39','2023-01-25 03:01:39','2024-01-25 00:01:39'),('1661c52a7de13972af23ccc7274e55c239d60256b686fa6eed5d06bd28b71225c21df287445d82ad',2,1,NULL,'[\"user-app\"]',0,'2023-10-04 17:48:10','2023-10-04 17:48:10','2024-10-03 12:48:09'),('1664ce0c581f1f8dffc021924c57e0cea38fea97e79328ae20a916060bbe86f3740157d303e1c992',2,1,NULL,'[\"user-app\"]',0,'2023-09-28 03:03:19','2023-09-28 03:03:19','2024-09-26 22:03:19'),('166f2b4c1e061e797d38df9c48ac15984dbd718b4c21239b0043700793b7524ba3fd8d7ce3b3273f',2,1,NULL,'[\"user-app\"]',0,'2023-02-22 21:13:47','2023-02-22 21:13:47','2024-02-22 18:13:47'),('1670a24330e838938b003cfcb740920339b27a6f405feba53283f561869f5a95168b6cb83eb15088',359,1,NULL,'[\"user-app\"]',0,'2023-07-07 20:07:26','2023-07-07 20:07:26','2024-07-06 15:07:26'),('1688308f422982b22bc13bbf2818d8d16dc55a08016bba23b91880400583ad0d18693761cb79ddb7',1597,1,NULL,'[\"user-app\"]',0,'2023-07-09 22:31:10','2023-07-09 22:31:10','2024-07-08 17:31:10'),('168a4a304629dbe609f85769c571ed5bd75637decb4b425cc6ff125adeeb5fe72d95e2093d286a48',784,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:08:02','2023-01-28 19:08:02','2024-01-28 16:08:02'),('168d6977e8e331b9034da1f24243feeb8a4552da44f350e227dc678e5bc3fcc1a8e36d529cdc5a23',30,1,NULL,'[\"user-app\"]',0,'2023-08-01 14:31:20','2023-08-01 14:31:20','2024-07-31 09:31:20'),('16ac98b5628a89a7ccb0182e127d764c1f3f01a80b4739a3ac434bda22f1f9343942da555d4f0118',1517,1,NULL,'[\"user-app\"]',0,'2023-08-16 04:18:50','2023-08-16 04:18:50','2024-08-14 23:18:50'),('16c2a1980df602d570e64355beb69bef414d218c719e193c72665af7c4b195d728feff1ea78285b5',1378,1,NULL,'[\"user-app\"]',0,'2023-05-06 13:19:03','2023-05-06 13:19:03','2024-05-05 09:19:03'),('16c59f58a6c37855d2f8c264fc15bfc7a039e3fd02e5d58945919ba0c622ef5aa9228036e22a52e8',1086,1,NULL,'[\"user-app\"]',0,'2023-03-03 14:23:01','2023-03-03 14:23:01','2024-03-02 11:23:01'),('16ccf658ecf89b55eb7e94ec9510bdd32ce2a6ddb0a1fde5cde3b6974c317e6cbe89dac6aded533f',1328,1,NULL,'[\"user-app\"]',0,'2023-04-26 12:34:43','2023-04-26 12:34:43','2024-04-25 08:34:43'),('16ce0c14917c6fe97e469023418ff7f6949812f3ccc832c4a47a18466d6d25b839df11ea3c485df5',863,1,NULL,'[\"user-app\"]',0,'2023-02-05 16:57:45','2023-02-05 16:57:45','2024-02-05 13:57:45'),('16e0d1c62f2059fc0509dc80a5c4ba6dd3d282a35f567196a4934a70bbb6fabf1192505e3f8deb3a',972,1,NULL,'[\"user-app\"]',0,'2023-08-20 15:34:59','2023-08-20 15:34:59','2024-08-19 10:34:59'),('16f2d021f0fdabbd2bae0692843ff83632fd6c905c7187fe286baaa0e9fb77b4472c5f10a905a219',2038,1,NULL,'[\"user-app\"]',0,'2023-09-24 14:09:13','2023-09-24 14:09:13','2024-09-23 09:09:13'),('17053dfd180bd2c01b4115049f04433ba0ff3350f9203226ed11bb01b966a77495f0333bb95e26ca',1808,1,NULL,'[\"user-app\"]',0,'2023-07-25 02:22:26','2023-07-25 02:22:26','2024-07-23 21:22:26'),('170e683773f3f25dc55d88cab12ae256f51d0b73d37b24ead9020a26124fd06ee5f35c62a5af3fbb',1073,1,NULL,'[\"user-app\"]',0,'2023-03-01 13:25:43','2023-03-01 13:25:43','2024-02-29 10:25:43'),('17136b523fc9aea3dbdcb5ad7cbabeb7bf891b7e7b8524fd696a1aaa81380033a2880f6b4fe35ee6',423,1,NULL,'[\"user-app\"]',0,'2023-02-18 12:04:13','2023-02-18 12:04:13','2024-02-18 09:04:12'),('1727405f2ba310696c4d94d36491a649f9d98a4a8cd446c1b9c451e03e1a2aeb5430a7f5fa474247',2,1,NULL,'[\"user-app\"]',0,'2023-09-06 11:04:37','2023-09-06 11:04:37','2024-09-05 06:04:37'),('172e8ed5ae93322b2c1e635b8b3650f392ecdc77b116fb8f3f1080f07f6bfc99606b3854758cd2f8',1150,1,NULL,'[\"user-app\"]',0,'2023-03-13 17:15:53','2023-03-13 17:15:53','2024-03-12 14:15:53'),('1748bacc9fe594184525de5bb58389f1be30f8d6d50ecdaa8fb80e996fc8319cbe6305de279b3a8e',1355,1,NULL,'[\"user-app\"]',0,'2023-05-01 02:16:36','2023-05-01 02:16:36','2024-04-28 22:16:36'),('175765d222bc53d436bfd4a003b8a210e28f619ff23bf413f5bd625d29d9dd0caaf430ea34c01133',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 15:58:28','2023-07-17 15:58:28','2024-07-16 10:58:28'),('1757aef253c298e3243d0b2a85b517e301f4a7d7215d34dc88a23c7b67603bcf33ee032236308fb5',916,1,NULL,'[\"user-app\"]',0,'2023-02-14 11:07:33','2023-02-14 11:07:33','2024-02-14 08:07:33'),('175b26e50f6de60a6bc6309e2f51b2b54a0b9efab433ee2498ff27023685d5ae519db62464f37a5e',1416,1,NULL,'[\"user-app\"]',0,'2023-09-23 18:58:10','2023-09-23 18:58:10','2024-09-22 13:58:10'),('1762a2e09ad065da554b1874b1e5e589ea7dbdce07ccadc7d799ca898e2429bd71507750a3e791a2',187,1,NULL,'[\"user-app\"]',0,'2023-02-03 11:27:02','2023-02-03 11:27:02','2024-02-03 08:27:02'),('1764072c7a3cc11cfc4f1b188de5e3fb2456a54a5188d547e3c3599d83acf7f9c1625e4130cb907d',1523,1,NULL,'[\"user-app\"]',0,'2023-06-05 19:43:40','2023-06-05 19:43:40','2024-06-04 14:43:40'),('176dde6824efd42bbf06afdafd3e3875d148d99d34322a530b5a06de99f34cab0746b018f464a0e7',1487,1,NULL,'[\"user-app\"]',0,'2023-05-20 12:00:51','2023-05-20 12:00:51','2024-05-19 07:00:51'),('177a98614a4890008dfb88441c8202433e101afe06ccd5ba731c15229b346c1a30082717519d51ff',748,1,NULL,'[\"user-app\"]',0,'2023-01-26 22:14:53','2023-01-26 22:14:53','2024-01-26 19:14:53'),('1780350dde0bd887fc8fe8a111cecdd65956fc034688038d33c6ff5432ca99a8f3a4a20039e13327',1203,1,NULL,'[\"user-app\"]',0,'2023-03-27 18:48:20','2023-03-27 18:48:20','2024-03-26 15:48:20'),('178bc78d2eb465a71f9cc462ac318de57e3c361ba656856c79266a802ba6fa33ef674cbf5a80af8b',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 23:30:58','2023-10-05 23:30:58','2024-10-04 18:30:58'),('1790b1c55695f6c823023f9757ede41586bf7f84413a02a57de21f66bb11e5e2dd9e8cbfd4584660',2,1,NULL,'[\"user-app\"]',0,'2023-02-13 23:18:37','2023-02-13 23:18:37','2024-02-13 20:18:37'),('17a304709cfae664cb60fdcf21fac629ef3a560c356dcec1dbced0d208ab92229d63f6109d82a7eb',2,1,NULL,'[\"user-app\"]',0,'2023-08-24 23:41:36','2023-08-24 23:41:36','2024-08-23 18:41:36'),('17a652af5308f6ec21b415cb4c3b68869208d6a00c20d393ef0bdcf962fe53593c492115d1b23b1c',1314,1,NULL,'[\"user-app\"]',0,'2023-04-23 17:14:37','2023-04-23 17:14:37','2024-04-22 13:14:37'),('17ad30ea3ca9d8b37f492f1bc2fb8884945da449cbd514537c6f5793b6f0b2bf89fa4f60a7c77730',1187,1,NULL,'[\"user-app\"]',0,'2023-09-01 22:31:59','2023-09-01 22:31:59','2024-08-31 17:31:59'),('17bacc24909ba82ef5a20e7c0f1eda82dacd33fe4a139356727599a920d56ad32769ed0fcc746fd6',2,1,NULL,'[\"user-app\"]',0,'2023-06-23 16:21:48','2023-06-23 16:21:48','2024-06-22 11:21:48'),('17bade14287c9a9eaa068250e4e3bf1be3aa7d29c02afb701418845ff581f5c34d42ae61682bffb6',1794,1,NULL,'[\"user-app\"]',0,'2023-07-22 23:19:34','2023-07-22 23:19:34','2024-07-21 18:19:34'),('17db11711f1faf65fadd49b93794d472f8e1a6d99c8f57779bb3b4ee87c5e4da9dac43fc868b51b3',811,1,NULL,'[\"user-app\"]',0,'2023-01-31 10:34:11','2023-01-31 10:34:11','2024-01-31 07:34:11'),('17e03c18e538461a7722ced8f09fa8e1f078e6983cc3c76dbaf2aeb5ac840c51e34859637481b0fd',1738,1,NULL,'[\"user-app\"]',0,'2023-07-11 18:06:52','2023-07-11 18:06:52','2024-07-10 13:06:52'),('17e0f9a4f6c92afabf43afda23fa102db6af7809a8fc06ea8fdb31da755ac57a0709d9c352032e75',2100,1,NULL,'[\"user-app\"]',0,'2023-10-05 18:23:30','2023-10-05 18:23:30','2024-10-04 13:23:30'),('180fc6bd90cd7ca49d2b3574a29ef7e3fbd3190e00f96121b0ac38f20f2c6d5326c254334fd99d74',2,1,NULL,'[\"user-app\"]',0,'2023-08-11 18:48:12','2023-08-11 18:48:12','2024-08-10 13:48:12'),('182415bf66b8f3ca46ee8874b74d1993a5038e1c1fd7108adae104517aba2993f59397a2fa3cca67',698,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:48:10','2023-01-25 18:48:10','2024-01-25 15:48:10'),('1829c2782ff842174feeffd19d0e836813b30ddc7a56b069760b8fdf6bc1722d12d59a3909e40239',142,1,NULL,'[\"user-app\"]',0,'2023-01-26 18:35:34','2023-01-26 18:35:34','2024-01-26 15:35:34'),('1853150cceca2e4a2ffa56bb6c1308abc0b8cbc61969edc85aea88b4d28d69103e450176b2f13e31',8,1,NULL,'[\"user-app\"]',0,'2023-02-13 18:15:58','2023-02-13 18:15:58','2024-02-13 15:15:58'),('18533fe3d80e40a926453f1d73f3122445a8d77d7677f3eba5df6d6a24a14e73d5a898b5b7dea1e3',702,1,NULL,'[\"user-app\"]',0,'2023-01-25 21:04:31','2023-01-25 21:04:31','2024-01-25 18:04:31'),('185e3db7d3346bdfe921c83b354cd96748bafd62edc8130f3924a803b5b485be26327c269aa28d4f',1990,1,NULL,'[\"user-app\"]',0,'2023-09-13 23:26:00','2023-09-13 23:26:00','2024-09-12 18:26:00'),('188302ba1c1ed98566e26d865c4afaf90640d552fb75d0ee7d88fd959ab3e51ab32ad4b134ccedcf',289,1,NULL,'[\"user-app\"]',0,'2023-03-23 13:03:06','2023-03-23 13:03:06','2024-03-22 10:03:06'),('1884a6130951d608069e098fd52a010ea6bd716395ea93974c243b54e8cc68d65189a39bc86b7168',1919,1,NULL,'[\"user-app\"]',0,'2023-08-26 15:08:52','2023-08-26 15:08:52','2024-08-25 10:08:52'),('1888e707c38351e7427ccf44c6a6333aecbd8148ceabeebb4e8ece41d0d47ec12011dd876dd02272',1423,1,NULL,'[\"user-app\"]',0,'2023-05-23 03:44:02','2023-05-23 03:44:02','2024-05-21 22:44:02'),('188c73850fa57386967ac41c18b08073785804dbf0ca39a12ab2c4509c06bfa10d0886812ea02b3b',2,1,NULL,'[\"user-app\"]',0,'2023-06-19 17:19:11','2023-06-19 17:19:11','2024-06-18 12:19:11'),('188f23949a8d36c77e4773083727f302117b62b4468afd3d40d95d4d2e903f64580ac7d8a90918fa',2,1,NULL,'[\"user-app\"]',0,'2023-05-04 01:46:54','2023-05-04 01:46:54','2024-05-02 21:46:54'),('18a5848ec7b28fdc660e09f5104e623c664fd0ea123ac5b3d0b2f71fc7e2a5338f68af5c28927a42',953,1,NULL,'[\"user-app\"]',0,'2023-04-24 13:56:36','2023-04-24 13:56:36','2024-04-23 09:56:36'),('18aaf74650be7696a12048a7a172332733129a7f9dda622b6f69420e2568b815738b8a42ccc43dd7',449,1,NULL,'[\"user-app\"]',0,'2023-10-05 23:39:03','2023-10-05 23:39:03','2024-10-04 18:39:03'),('18ac0d73244d7e8fc882935428553c3eef679d384df3f847adb43980f6c7867a273a5813464d4ded',953,1,NULL,'[\"user-app\"]',0,'2023-04-13 23:49:18','2023-04-13 23:49:18','2024-04-12 19:49:18'),('18bb78d2a72bca34b1f4596ce498c9c8cfedd14e4eabec8edbf86198cf5a94743524589c844a99f3',359,1,NULL,'[\"user-app\"]',0,'2023-02-17 13:05:05','2023-02-17 13:05:05','2024-02-17 10:05:05'),('18ca10f51897b04ace0e90d3d97f989410b36e47cf9c8653b2ca0e434f20ea3c54c5d44e350d8168',1094,1,NULL,'[\"user-app\"]',0,'2023-02-27 23:28:14','2023-02-27 23:28:14','2024-02-27 20:28:14'),('18df754b92dd2e2bc2fa5804c7b4b566962b7d69d20435e7cbfafaf9a9ca3a4c85bb4e89077bcd68',2,1,NULL,'[\"user-app\"]',0,'2023-04-17 23:28:53','2023-04-17 23:28:53','2024-04-16 19:28:53'),('190c3b85aed7bbf2d2af61288f193e7950594f147d65a288ebf3c89642ec60c00adb8cc6426550ca',13,1,NULL,'[\"user-app\"]',0,'2023-02-22 01:18:05','2023-02-22 01:18:05','2024-02-21 22:18:05'),('1910a833a451fe641bd219588756887152e957c19476cbc9146823d1340b923732e3ad9afaab46fc',1921,1,NULL,'[\"user-app\"]',0,'2023-08-26 20:06:30','2023-08-26 20:06:30','2024-08-25 15:06:30'),('1912f1df7bee1738ff3666d0e4ecf92dde6f30bbd1bc6a6ad2c73e3862cb253a328b686b44cbf4b7',1094,1,NULL,'[\"user-app\"]',0,'2023-08-07 15:22:08','2023-08-07 15:22:08','2024-08-06 10:22:08'),('192080dd53b64f5d70213565161e1e7fe9335d25ae39ebab3d3772e4dc7bc32172485afcb7049e40',2,1,NULL,'[\"user-app\"]',0,'2023-04-27 17:51:21','2023-04-27 17:51:21','2024-04-26 13:51:21'),('19230cff7df394bee71530b37314a2d884839c2e61300a18981a5d088d3853d5f41c80cdfa004d3a',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 20:42:24','2023-09-21 20:42:24','2024-09-20 15:42:24'),('192bc7350367cb4a8cf0a5a82ad6a34129572809a4ec6832b8950e36451670b3bb7895fe54545d55',1231,1,NULL,'[\"user-app\"]',0,'2023-04-04 10:21:37','2023-04-04 10:21:37','2024-04-03 06:21:37'),('193cada61c971be2bfde3a17125806c8cef79a0507b627647f2624443dbbeddf9b6b7f3ade0b5915',1903,1,NULL,'[\"user-app\"]',0,'2023-09-09 19:01:39','2023-09-09 19:01:39','2024-09-08 14:01:39'),('194f4a66bca36eadf4729aebf01c4242b9a0200abe88585ea01768e1a36945c6cad0da31f79e0830',251,1,NULL,'[\"user-app\"]',0,'2023-10-09 12:50:33','2023-10-09 12:50:33','2024-10-08 07:50:33'),('19985271e171f01f49d17e2220b285e04457287d25e729d5ec0efe5d68dae33fcd8d5db13be9be91',2106,1,NULL,'[\"user-app\"]',0,'2023-10-07 01:31:46','2023-10-07 01:31:46','2024-10-05 20:31:46'),('19dba882bf890c1e5171141cccec7e1b6067b55471284a06dbeb3a1fd32acbcb38126e91c4174585',2,1,NULL,'[\"user-app\"]',0,'2023-10-01 17:04:40','2023-10-01 17:04:40','2024-09-30 12:04:40'),('1a016f54281377405f00aca02354028635228875bcfad02d1cb992acdf849b494cb957fecc34ccc2',168,1,NULL,'[\"user-app\"]',0,'2023-01-28 00:44:49','2023-01-28 00:44:49','2024-01-27 21:44:49'),('1a068bf448030ebdb348585b4cddb9bb3322686d8706a60440cf9a14ccaff70f0626c727282b0cf3',1204,1,NULL,'[\"user-app\"]',0,'2023-03-28 02:46:22','2023-03-28 02:46:22','2024-03-26 23:46:22'),('1a07b026e35143d261a831cc2cf7bc7aabaa8d9b4771fe256fc2235347852eaa00505b0caf2dfb2d',972,1,NULL,'[\"user-app\"]',0,'2023-02-22 13:40:51','2023-02-22 13:40:51','2024-02-22 10:40:51'),('1a12b44c85dc5ac3be11c8205f93a7218e3276b9a608d13c5aca9b50e6e1ea0f51e0077bc013cd3e',2028,1,NULL,'[\"user-app\"]',0,'2023-09-22 13:52:55','2023-09-22 13:52:55','2024-09-21 08:52:55'),('1a1bd3bd93c7506f849e99a425570dc1035cef7a09ff071e972c31b27611ec885141f3b71ebea246',1837,1,NULL,'[\"user-app\"]',0,'2023-07-30 20:01:42','2023-07-30 20:01:42','2024-07-29 15:01:42'),('1a20969bc9da76f5385d5f431c48bb37a8477dbbcbcfda10751247908205915a2b53d4b69232924f',5,1,NULL,'[\"user-app\"]',0,'2023-01-27 13:32:44','2023-01-27 13:32:44','2024-01-27 10:32:44'),('1a3528024a327f37333cdfd43e8ee57a22ff964a7b713d1da7e2bdf0bd5914d82ec3fe38bbe3a4e6',1388,1,NULL,'[\"user-app\"]',0,'2023-05-17 18:47:02','2023-05-17 18:47:02','2024-05-16 14:47:02'),('1a3a59c6de76c0aa786e364c81f8be608d63c99571b342bca580d9b0eee3c19259e34440fb0879a9',1459,1,NULL,'[\"user-app\"]',0,'2023-05-15 23:36:13','2023-05-15 23:36:13','2024-05-14 19:36:13'),('1a3cbd48e4c58201cbd8bb3b91ddea6a65924dc6b3379c2c09a9136272470fea153e5e002bdf6f06',1018,1,NULL,'[\"user-app\"]',0,'2023-05-16 16:43:11','2023-05-16 16:43:11','2024-05-15 12:43:11'),('1a5f23611721f02721429c1213c78c42a6179cd850c452e97a2db78350fcc3bb1adee5ea4409a673',2,1,NULL,'[\"user-app\"]',0,'2023-09-27 18:13:50','2023-09-27 18:13:50','2024-09-26 13:13:50'),('1a61ddce27f16296c81b456410bed8a6cd66449a35f13790d62e4010c3085897ab397856dd8e4929',1162,1,NULL,'[\"user-app\"]',0,'2023-03-16 08:54:46','2023-03-16 08:54:46','2024-03-15 05:54:46'),('1a6549160c840d2769f569ee62c63d4b06df0b0caa580e5d853f05fe9935ce4328bf3ab1a2ae9788',1423,1,NULL,'[\"user-app\"]',0,'2023-05-18 00:18:10','2023-05-18 00:18:10','2024-05-16 19:18:10'),('1a98a12b7689054cc535213f192744d6da7e7efa753f4a302023634456e4a58fec65e2f37d105184',2,1,NULL,'[\"user-app\"]',0,'2023-09-14 18:21:30','2023-09-14 18:21:30','2024-09-13 13:21:30'),('1a9a7bf0368f703af1f602aecae79b84bf3e9d30e86209fec27108425157041a56edba55dc8a9cfe',1818,1,NULL,'[\"user-app\"]',0,'2023-07-26 14:40:36','2023-07-26 14:40:36','2024-07-25 09:40:36'),('1aa0acd80bef9aa0714874585d49b8296a3be2d2690d7f6c7d57452a380f26520d5f47c43089494a',1419,1,NULL,'[\"user-app\"]',0,'2023-09-13 18:36:56','2023-09-13 18:36:56','2024-09-12 13:36:56'),('1aa24a9c266721668d72cabcd6b37adc6cfbc2807539b754bd9ef10b0f8642277fff540d00155051',2,1,NULL,'[\"user-app\"]',0,'2023-01-30 21:17:16','2023-01-30 21:17:16','2024-01-30 18:17:16'),('1aa2691c5c1e490311c8c0cbc73e61d460c5f95a1cea3ff1dfc7b498de98a42546d051c51de1c36d',2,1,NULL,'[\"user-app\"]',0,'2023-08-09 02:56:28','2023-08-09 02:56:28','2024-08-07 21:56:28'),('1aa81e3b1f69df97c51fe52c18c4384f32ba01efc5f350e3970b51673ca2d69e99794e96c72e2873',121,1,NULL,'[\"user-app\"]',0,'2023-04-07 20:00:54','2023-04-07 20:00:54','2024-04-06 16:00:54'),('1aaf63ec69036ff5525a54bacbedb39f0ac06c33ac8f1271057b090f409f80ceaa324faac22c86f4',2,1,NULL,'[\"user-app\"]',0,'2023-08-03 20:12:31','2023-08-03 20:12:31','2024-08-02 15:12:31'),('1ac1cfe985aac2f78dcdc009f9d186150b8d031f9debe37bc67dd57752d6abec4c76f8355674d83c',1000,1,NULL,'[\"user-app\"]',0,'2023-02-20 18:49:42','2023-02-20 18:49:42','2024-02-20 15:49:42'),('1acc1bcd08416b310455a2e4b31515ca2e29c55825662b1d7308edadd624d023ae76548accfb3277',2,1,NULL,'[\"user-app\"]',0,'2023-08-22 00:14:49','2023-08-22 00:14:49','2024-08-20 19:14:49'),('1accf982b736f5126d30a1a01c9f590aa311f1452f33bd1fcc173cee6c1e9722af8e78074a23bbef',1417,1,NULL,'[\"user-app\"]',0,'2023-05-24 01:15:02','2023-05-24 01:15:02','2024-05-22 20:15:02'),('1af22fb0e8de4b95245d856be2b89a9d5554cdc1bf7265952495e671a574be45423d1378b7cf0729',2,1,NULL,'[\"user-app\"]',0,'2023-04-29 06:04:34','2023-04-29 06:04:34','2024-04-28 02:04:34'),('1af594a7379265eb0c3f47904c13d03fa5c37fb0be5b362b09541daa51ecba5dd685e12ae5f75985',2,1,NULL,'[\"user-app\"]',0,'2023-08-15 15:04:08','2023-08-15 15:04:08','2024-08-14 10:04:08'),('1afca99f4f62c203131801b481ea8c11ba2932275d82e1c514b18b1239e7f272e1fc191413391c2f',733,1,NULL,'[\"user-app\"]',0,'2023-01-26 14:44:58','2023-01-26 14:44:58','2024-01-26 11:44:58'),('1b06f79f7bf9c6dcfe61a54306774d5bf206fa4c574bcfe22ba54d80c9ce081ec32c5b83739edabb',1086,1,NULL,'[\"user-app\"]',0,'2023-03-04 19:53:43','2023-03-04 19:53:43','2024-03-03 16:53:43'),('1b17d3d3cae0aa255198ca4cc9c91fbf4ba08a7d9727bc79c0476cc4de08e9684715abb890263d46',55,1,NULL,'[\"user-app\"]',0,'2023-02-14 15:02:03','2023-02-14 15:02:03','2024-02-14 12:02:03'),('1b223cadf725bbb6a6dd5fca8f2c3602f06d08b6682b2860c5d8f90a5594e694de4f7f5d60857913',1088,1,NULL,'[\"user-app\"]',0,'2023-06-09 21:55:35','2023-06-09 21:55:35','2024-06-08 16:55:35'),('1b3a361fa63d786db9ef739124338855366b48e5691845e0713ee12e37d39d481038aea1c2a4a34b',2,1,NULL,'[\"user-app\"]',0,'2023-07-13 02:40:44','2023-07-13 02:40:44','2024-07-11 21:40:44'),('1b3b36a22039a88f3c99c7e3c549e6da583c3dc28f2cb72846f8821b8726034307df22e0c1d74eb4',313,1,NULL,'[\"user-app\"]',0,'2023-04-14 16:04:42','2023-04-14 16:04:42','2024-04-13 12:04:42'),('1b3ce1fa98348669ceeaac8a1bfec4ae7d4be543af3bd1527f29321f6fc2457415f5b9903c49c009',2,1,NULL,'[\"user-app\"]',0,'2023-08-24 13:52:46','2023-08-24 13:52:46','2024-08-23 08:52:46'),('1b522c3c7e84e942d72b6fc62c4887c922d5a78db39644fc30a44915af54a75f41007dea8f6df2b7',62,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:16:37','2023-01-25 16:16:37','2024-01-25 13:16:37'),('1b659907a6a2f7f6c9a1f990f80ad28048b94abbad00b3900825944476a775b3acc7641da9efcb80',816,1,NULL,'[\"user-app\"]',0,'2023-01-31 11:30:30','2023-01-31 11:30:30','2024-01-31 08:30:30'),('1b696664e3541f07dc95779a57ae65c2032f860daacde4efc89fc5bb93694a61512999833cce9b50',170,1,NULL,'[\"user-app\"]',0,'2023-04-10 23:56:37','2023-04-10 23:56:37','2024-04-09 19:56:37'),('1b6b797855a72adb3e9542646874100b44cd9a274c6833f88bacbd7f5b9c323266504edb9a995410',1438,1,NULL,'[\"user-app\"]',0,'2023-05-12 20:24:53','2023-05-12 20:24:53','2024-05-11 16:24:53'),('1b7f7630e7f12e5283001c653739d0b0330901abf71604adbadc4b079e78869ee69556b3f374a014',2,1,NULL,'[\"user-app\"]',0,'2023-08-17 01:12:31','2023-08-17 01:12:31','2024-08-15 20:12:31'),('1b7f7f1ca63fdca5321d08bdbc5f100649a9dc3686831098ef7149419c33fe9f00b9b9d322e69e47',5,1,NULL,'[\"user-app\"]',0,'2023-01-26 13:05:43','2023-01-26 13:05:43','2024-01-26 10:05:43'),('1baa8115144031db177413fb1828419a5be1c62d75c53de38f5e3bebb02927023abf605d00c4ca11',687,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:08:39','2023-01-25 17:08:39','2024-01-25 14:08:39'),('1bb1bb5276df16139c30e171c66f5e1131cd9867ebb2aebeb5a46d790902bcf51e45f46ee85e01bc',1050,1,NULL,'[\"user-app\"]',0,'2023-02-28 17:37:03','2023-02-28 17:37:03','2024-02-28 14:37:03'),('1bb41f683e40267bea48fb9864b3030bd912068929400deae630d92a0d95b8948f9df39895a7b2b8',1617,1,NULL,'[\"user-app\"]',0,'2023-09-17 01:09:46','2023-09-17 01:09:46','2024-09-15 20:09:46'),('1bca091c38f09df865a783ba1239422e0dae485c80e3fb6666cce7b291cde664cdf00382b655e042',1086,1,NULL,'[\"user-app\"]',0,'2023-03-04 19:44:07','2023-03-04 19:44:07','2024-03-03 16:44:07'),('1be696d3694c321f5014d374f687e1ed647339e3d06fd7439f73dc926be7ce831b476a470831fa96',1147,1,NULL,'[\"user-app\"]',0,'2023-03-13 04:17:03','2023-03-13 04:17:03','2024-03-12 01:17:03'),('1bf898efd802a63e1221fa8d7c54f7120d1f0ca139cfd69c995c4344ce6a0e1abe5f9f6bb169cfd7',208,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:04:37','2023-01-25 14:04:37','2024-01-25 11:04:37'),('1c007ef304e99d51158ab7e2252214dc6e381568e63721bc30169796bc21c6027c1ad8c58f581cb4',1209,1,NULL,'[\"user-app\"]',0,'2023-03-29 16:27:00','2023-03-29 16:27:00','2024-03-28 13:27:00'),('1c2a22e3a37cd06000b46555c73554954654477073cd4d104be9f8ec9126d8e275986ed0190963e9',1541,1,NULL,'[\"user-app\"]',0,'2023-06-09 00:39:54','2023-06-09 00:39:54','2024-06-07 19:39:54'),('1c2f330f6693f6b1d7835077b4b8cf9da5f86ba0752bbbef84e13b1224c47901dc8bd84302e13901',2,1,NULL,'[\"user-app\"]',0,'2023-09-09 19:09:27','2023-09-09 19:09:27','2024-09-08 14:09:27'),('1c309ff751f8d213a2e7a96451d0cb5ae3b73fe02bbfc1e3e772817ea7255186fe7a4ed7bccfef14',1533,1,NULL,'[\"user-app\"]',0,'2023-06-07 19:28:33','2023-06-07 19:28:33','2024-06-06 14:28:33'),('1c467d1b1a941f3b64e0484eff9f3de2c31798c46235f9aadc3ea48eda56d46aec65318e1a5e6dd9',2,1,NULL,'[\"user-app\"]',0,'2023-10-08 01:23:17','2023-10-08 01:23:17','2024-10-06 20:23:17'),('1c4db7ef3d1125a0ba838dbb7218d0b0c35fb09a66a4ab27d3e35f8f7a2036bb47cfcb5b4e5aa4ad',1870,1,NULL,'[\"user-app\"]',0,'2023-08-10 20:09:12','2023-08-10 20:09:12','2024-08-09 15:09:12'),('1c5f9726f269887d5d46aede4695dd08b8008346a32fd7b12096d2ec2c04c95b3add96fa721dac4f',548,1,NULL,'[\"user-app\"]',0,'2023-01-28 21:44:55','2023-01-28 21:44:55','2024-01-28 18:44:55'),('1c786c4818deff56207327179fcb1b88926c813c770da9e4c7140db6f969ebd785939246ef05729c',2,1,NULL,'[\"user-app\"]',0,'2023-09-06 20:51:10','2023-09-06 20:51:10','2024-09-05 15:51:10'),('1c89e79cc88349718dfa262c167b0ddb966976623ef7c802d058cda7ce429f31510f3b7b0a8887a2',1277,1,NULL,'[\"user-app\"]',0,'2023-04-19 20:03:51','2023-04-19 20:03:51','2024-04-18 16:03:51'),('1c8ec5fc540fe6d8876a75db38070afdfc545c1b1494f46e70520717c0b67d3f947f2e2984b75fb3',416,1,NULL,'[\"user-app\"]',0,'2023-02-15 20:30:33','2023-02-15 20:30:33','2024-02-15 17:30:33'),('1c90204a1433814f1b48d04b689246c5392aabb07924568577bc3bfb02cd55f125587e1e5aa7ffb0',2,1,NULL,'[\"user-app\"]',0,'2023-08-04 01:30:26','2023-08-04 01:30:26','2024-08-02 20:30:26'),('1c9cb484b306d755cd5a9bc31c646ea6483b4a8eab3f5b940f8c24df178d7dba8fbdf70c559be648',1619,1,NULL,'[\"user-app\"]',0,'2023-06-22 12:27:21','2023-06-22 12:27:21','2024-06-21 07:27:21'),('1ca52176f2622244f757a48302e9f293da528c7c2699dc5596c1f92a29cc984c5cc6e581c7d7cbf5',659,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:49:19','2023-01-25 12:49:19','2024-01-25 09:49:19'),('1cadb6c72c998649bdc3dcc701dede5d36fa9b80235f3d10a224ab9b080abc55bc2212ebe3e1f7ad',1034,1,NULL,'[\"user-app\"]',0,'2023-09-30 10:41:18','2023-09-30 10:41:18','2024-09-29 05:41:18'),('1cb317f5bf01b0f0a2a1d77957c83c62fa2b3c706065678fac2d475f1b1bdb85dfb4aac75a9d9b96',2,1,NULL,'[\"user-app\"]',0,'2023-02-11 13:23:27','2023-02-11 13:23:27','2024-02-11 10:23:27'),('1cb5ca2702cd465e2e0581044551171c0d5507c35bcd3f7ae5c47f5a649400e203e28b5b647bc98d',1741,1,NULL,'[\"user-app\"]',0,'2023-07-12 00:28:32','2023-07-12 00:28:32','2024-07-10 19:28:32'),('1cb9fc062893679cee1d7d08a69957bc4c803b9b2c0e4905ef6787ff2619f51cca2ad708d847fdfc',1829,1,NULL,'[\"user-app\"]',0,'2023-10-06 13:57:50','2023-10-06 13:57:50','2024-10-05 08:57:50'),('1cc8dd59cccfa580f09020f4f901dc7e53a29f4370eb3c493e55d5051cf3afd08907d8a3b3f81002',2,1,NULL,'[\"user-app\"]',0,'2023-02-23 20:28:01','2023-02-23 20:28:01','2024-02-23 17:28:01'),('1cd43b37684ae1e1be2e0b6b93fb9add3db9c13ed78d69bdc3f0e6c8084981a0dc99d35a92923c0f',677,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:15:24','2023-01-25 16:15:24','2024-01-25 13:15:23'),('1cea0fc88764446243abec6f098c6ad7546edcf23f89f54e69e47014ebabf5a32d1cef9686c70897',1257,1,NULL,'[\"user-app\"]',0,'2023-04-15 11:21:47','2023-04-15 11:21:47','2024-04-14 07:21:47'),('1d00713aca4b8467d91a6294ce4657c42f956f3473561092b366d02f1c7f3536e847d6313f51a283',2,1,NULL,'[\"user-app\"]',0,'2023-04-24 13:39:19','2023-04-24 13:39:19','2024-04-23 09:39:19'),('1d2de37d4ebbf5993bb8909b1a2234583d727f1a6a21fa38d4a9d7e4d1f4ed9e6ab1e8e4417900ca',2,1,NULL,'[\"user-app\"]',0,'2023-07-19 00:08:01','2023-07-19 00:08:01','2024-07-17 19:08:01'),('1d36ae80ef1d687ff839eead7d2a067f45cad45ad8ab4010c17f6821d1149bbd2d45b7470f9de8e4',2,1,NULL,'[\"user-app\"]',0,'2023-03-12 23:44:24','2023-03-12 23:44:24','2024-03-11 20:44:24'),('1d4a61e0e98e5181ebf21760012b8b5f7b1e33b908c1eb42bf5777a61b1ac5bb202b34bc365999ce',1512,1,NULL,'[\"user-app\"]',0,'2023-05-29 02:24:29','2023-05-29 02:24:29','2024-05-27 21:24:29'),('1d4afafac1a93c73bffe3be2983520d57244e48c0cb4f024860e79aefcb6f5a728331e62e800efa0',456,1,NULL,'[\"user-app\"]',0,'2023-09-08 21:37:23','2023-09-08 21:37:23','2024-09-07 16:37:23'),('1d4d840186a6038838e7d106c76a252140ce8005446c2e1659836bd0f7d729327a87244db5448319',723,1,NULL,'[\"user-app\"]',0,'2023-01-26 10:42:19','2023-01-26 10:42:19','2024-01-26 07:42:19'),('1d5028ff61b6719a3d7f7f3e08270cb59aceb9de13ba29ce37142086d057d7a2baf239d070009f11',1451,1,NULL,'[\"user-app\"]',0,'2023-05-15 19:32:04','2023-05-15 19:32:04','2024-05-14 15:32:04'),('1d507530d1118fdfe824c49f89308edee2dd15b8c981ccc21cdf4435e9d5703dc35c7fe7dee1895b',1861,1,NULL,'[\"user-app\"]',0,'2023-08-05 22:21:25','2023-08-05 22:21:25','2024-08-04 17:21:25'),('1d54b753097473a419afdbf685e10cd663252c08ac6d86705373181b7d0801625c165179ba211073',765,1,NULL,'[\"user-app\"]',0,'2023-06-26 01:29:35','2023-06-26 01:29:35','2024-06-24 20:29:34'),('1d59115a1900628cca80d03a5f8e5010afcfdee1c7ccc04b564a7b69a79966668bec877fc10de3df',1940,1,NULL,'[\"user-app\"]',0,'2023-09-01 22:43:08','2023-09-01 22:43:08','2024-08-31 17:43:08'),('1d5c38a7c4ccd47cc38008a27a74cff8946d6b3538dd78cbf24171bb74462e3c23e4f30ba14ad7e7',1086,1,NULL,'[\"user-app\"]',0,'2023-10-04 19:19:38','2023-10-04 19:19:38','2024-10-03 14:19:38'),('1d6b51ac79654bec205107d2ca2dcdf0d865fa9ed5a660189161611e640cb0d6158ec81df24a6dc7',8,1,NULL,'[\"user-app\"]',0,'2023-03-04 08:40:47','2023-03-04 08:40:47','2024-03-03 05:40:47'),('1d73cc2ca78f8cd2ca79fb424ed109a9598fa6ee6a00854bceee04f8ed2cea23b80fd8d4d44be70d',2,1,NULL,'[\"user-app\"]',0,'2023-09-26 22:11:15','2023-09-26 22:11:15','2024-09-25 17:11:15'),('1d7bfb5ad84ea064772ba499fd1d7f87eaf90b9958d96b3060d6a1709f47ddd7c3237cbcc415fb07',1726,1,NULL,'[\"user-app\"]',0,'2023-07-08 21:40:35','2023-07-08 21:40:35','2024-07-07 16:40:35'),('1d918880d593c176bace92214c5d5e1e2b20651e5da347fd4165dd58729fadc136950cce52242ce0',1201,1,NULL,'[\"user-app\"]',0,'2023-09-17 18:32:14','2023-09-17 18:32:14','2024-09-16 13:32:14'),('1d93abf51c1dc97114fbfd64b6c34409dddf7b39b24cc1f4b26db17294346b79741de282211e5f93',1250,1,NULL,'[\"user-app\"]',0,'2023-04-12 21:49:48','2023-04-12 21:49:48','2024-04-11 17:49:47'),('1d981ecb1e0f8a2ac2f1327bb5ac8980dc7e5b086c4021f48e41518d9a0f508b5513a87f5a6dff62',769,1,NULL,'[\"user-app\"]',0,'2023-01-28 00:01:23','2023-01-28 00:01:23','2024-01-27 21:01:23'),('1da3e8ff32bf82aaa71622c6405916759cf6c797ca307cc5675d6b1a3a8eff777d2e6d1947e930cd',2,1,NULL,'[\"user-app\"]',0,'2023-03-31 20:20:32','2023-03-31 20:20:32','2024-03-30 17:20:32'),('1da691a82f1f2e1dca0ccd8be6bb501bb14b7133c8f28a95058f3f6fa3874b9dd732b29f2623c2ba',1466,1,NULL,'[\"user-app\"]',0,'2023-05-16 20:45:45','2023-05-16 20:45:45','2024-05-15 16:45:45'),('1dc0f2b6939695cf03298698c3808ff4d43b41336d288c0c8e7e1589997775634e1fcaa62cb5e89a',671,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:44:48','2023-01-25 15:44:48','2024-01-25 12:44:48'),('1dc9fabb99252d0dc0429537828add0e6245991d826d2827f3d3ff5407a07f3a892edda2862e0651',1565,1,NULL,'[\"user-app\"]',0,'2023-06-16 00:10:04','2023-06-16 00:10:04','2024-06-14 19:10:04'),('1de80dc74853b1a16c5e66d14f76816ddd4c855746e18e1a5bd80b260da80ea173996821cbf1aa06',2086,1,NULL,'[\"user-app\"]',0,'2023-10-03 19:13:28','2023-10-03 19:13:28','2024-10-02 14:13:28'),('1df5d0048a13216db5ceb702357b3f8ba4512fcd531339f40a36cabedfbf76b5e51d4a10b7ee0dd0',56,1,NULL,'[\"user-app\"]',0,'2023-01-26 16:03:12','2023-01-26 16:03:12','2024-01-26 13:03:12'),('1dfa70aaaca5877c31d0d0a77504f3b99ec6d44a0d4bc78d5953ae8d3475468fcf2098bbd1e99726',813,1,NULL,'[\"user-app\"]',0,'2023-04-23 17:01:59','2023-04-23 17:01:59','2024-04-22 13:01:59'),('1dfbaa9f77c59ebfad63cbcd221c63d7cad8cc17a36b632c9236f34fc86fa0d8e5b40f40edfdffaf',1483,1,NULL,'[\"user-app\"]',0,'2023-06-13 19:08:06','2023-06-13 19:08:06','2024-06-12 14:08:06'),('1e178bb2a0365fdf765e999dfbe906b15a042609a73278f71d570f9b38a569d44a8c305a9aef1cd3',344,1,NULL,'[\"user-app\"]',0,'2023-06-07 03:09:35','2023-06-07 03:09:35','2024-06-05 22:09:35'),('1e4f5f8619115ba537eabc6392607de74e32534679c8bac558b6d3609b903b9b4272bb916b731aa7',816,1,NULL,'[\"user-app\"]',0,'2023-06-29 13:03:27','2023-06-29 13:03:27','2024-06-28 08:03:27'),('1e52d5af32f53080c5ca2024a440a95d38f8462c76d4a206053add620270276a0e06342cbb1c0a63',800,1,NULL,'[\"user-app\"]',0,'2023-10-02 19:11:10','2023-10-02 19:11:10','2024-10-01 14:11:10'),('1e60fc8e76440304375a8aaeb76303874be1a8da7a5ee438866e08fda04221510d928b7cccacb999',750,1,NULL,'[\"user-app\"]',0,'2023-01-26 23:31:50','2023-01-26 23:31:50','2024-01-26 20:31:50'),('1e68a1c5f4ed514d0e38a366ae9ab052fa7d6593fcf180a5c11b61cca7ccf8210fc3e8be45e6225d',1181,1,NULL,'[\"user-app\"]',0,'2023-07-17 21:34:46','2023-07-17 21:34:46','2024-07-16 16:34:46'),('1e7cfc3bec6a77431cfcab0c9ac3dbc5f162207c2627c2e6bdd8ccc8dad7bfb891bc4c7ddd506f5e',171,1,NULL,'[\"user-app\"]',0,'2023-02-14 13:29:03','2023-02-14 13:29:03','2024-02-14 10:29:03'),('1e84cfa41d01af316e73758bfe1a445808dbd5386c82d5d53f64b277e1df22709054bbdf1208748a',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 19:47:54','2023-09-18 19:47:54','2024-09-17 14:47:54'),('1e8937ad0af55294fe1cc10c3da5e348274e2699a37da2b7acc735567f9b7746069dec9d1a618407',1579,1,NULL,'[\"user-app\"]',0,'2023-06-17 15:02:11','2023-06-17 15:02:11','2024-06-16 10:02:11'),('1e8c12490825f665d79272574d7feb48dfea330d3ef0475749d216be4c2ad792dcf81019770e5375',1754,1,NULL,'[\"user-app\"]',0,'2023-07-13 22:38:20','2023-07-13 22:38:20','2024-07-12 17:38:20'),('1e9198a125ba7d0037f9d1dba31cbb6cdfa66a20e3dd6e6cc34435e6e989db995e7acd0f779efa82',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:48:11','2023-01-25 16:48:11','2024-01-25 13:48:11'),('1ebd9de28f8aa8065fd5234465febb24598b007d1ce91c428246c1e48509351eab5f2bef8b211cbd',2,1,NULL,'[\"user-app\"]',0,'2023-06-17 02:54:24','2023-06-17 02:54:24','2024-06-15 21:54:24'),('1ed093d58d14d5557eafe5778a494bc807ed6db1152021838ce9c15e71197b1ce913c222219e30ff',2,1,NULL,'[\"user-app\"]',0,'2023-05-15 20:29:50','2023-05-15 20:29:50','2024-05-14 16:29:50'),('1ed3213d7c4e30a5ac1faa8c3ec626bea2f55b41c47f3826ce1f126b38d153d260f7a9a8a17314d5',2,1,NULL,'[\"user-app\"]',0,'2023-09-12 12:56:51','2023-09-12 12:56:51','2024-09-11 07:56:51'),('1ed54773db5623ee23ba4f2b8e6c799f9d9c16886cc9d41d17fd2780194dfbadda8f348343d7735f',280,1,NULL,'[\"user-app\"]',0,'2023-01-30 19:22:51','2023-01-30 19:22:51','2024-01-30 16:22:51'),('1ee78abb8899a41ededa2f16e7c33936d3a0b6bbbebbbccb434c9fd3d368fcd827c85021fb9175a7',418,1,NULL,'[\"user-app\"]',0,'2023-01-26 10:15:42','2023-01-26 10:15:42','2024-01-26 07:15:42'),('1ef28970b0f47b38adf1af5bb3cddc439c62828e88ffcaf4da2e83352ab64ee2705c5cc0a867800e',1407,1,NULL,'[\"user-app\"]',0,'2023-05-10 00:38:28','2023-05-10 00:38:28','2024-05-08 20:38:28'),('1f07e6fe0db0f5179a3cacb70c68fb7226872d1f1e50f985bb02bda6356370f5a5d1f89cf8b2bb8f',2,1,NULL,'[\"user-app\"]',0,'2023-04-28 00:29:31','2023-04-28 00:29:31','2024-04-26 20:29:31'),('1f44e1486175089bc7cd194e5011a15e56aa06bf0a193d27837a6eed4a5616db44bd00f5a7a4cb6d',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 07:02:13','2023-10-07 07:02:13','2024-10-06 02:02:13'),('1f4e3a85050d0697ca1abab9aa670dfed9604ef6dd3bea18f7d07623f6bb634f1ab4b431305e711b',199,1,NULL,'[\"user-app\"]',0,'2023-09-26 17:37:15','2023-09-26 17:37:15','2024-09-25 12:37:15'),('1f5a9f707e56f5145503a1e0ac66c24e34e93b53f42f50da28dee58ae336d3d2abf02a22c9367d68',356,1,NULL,'[\"user-app\"]',0,'2023-10-03 03:11:11','2023-10-03 03:11:11','2024-10-01 22:11:11'),('1f61527d38237df912e4160b34486370db15d4105fe2257deb59d942aaac1d9fc1c6726e26caf9d9',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:43:54','2023-01-25 17:43:54','2024-01-25 14:43:53'),('1f6482218b67fd9476356b206a409fe45e5d524c71b6a787da646408a26874c91c6e13ec5125f01f',1222,1,NULL,'[\"user-app\"]',0,'2023-04-01 10:24:42','2023-04-01 10:24:42','2024-03-31 07:24:42'),('1f6ae9a387edc8b563d84c387fd019778a87e255f3dc772de7669f279ab0e139b580c1ad3182cc58',1061,1,NULL,'[\"user-app\"]',0,'2023-03-02 00:24:54','2023-03-02 00:24:54','2024-02-29 21:24:54'),('1f72d3e0485bcbc3470159a3d9f9765f32c7d2baabc1e6b8998cabc6210a59890a757bfb7e917e88',1014,1,NULL,'[\"user-app\"]',0,'2023-02-21 01:50:37','2023-02-21 01:50:37','2024-02-20 22:50:37'),('1f75100f02f6a90e1a7174fa70974d50aaf260088c0881c00aeda919d7026375bf6639ac9a95199b',1833,1,NULL,'[\"user-app\"]',0,'2023-07-29 01:56:37','2023-07-29 01:56:37','2024-07-27 20:56:37'),('1f84e7dac454b972149d840f371ac97a7de7855d5723d6f718ce0348597f50a6cd34e1e9f6d31424',2,1,NULL,'[\"user-app\"]',0,'2023-05-09 14:35:08','2023-05-09 14:35:08','2024-05-08 10:35:08'),('1f85a347e21708c5152d60600a648f58b91f14e455d4f04e945a12a461f2c3d8f308ce17ada0c8b4',1778,1,NULL,'[\"user-app\"]',0,'2023-09-19 01:35:29','2023-09-19 01:35:29','2024-09-17 20:35:29'),('1f864bb2a69ff339f73c4ec5021aac580d2af27540ac2902f65f28acd3cbe5ec485b070eb9b317f0',1326,1,NULL,'[\"user-app\"]',0,'2023-04-25 19:18:06','2023-04-25 19:18:06','2024-04-24 15:18:06'),('1f8944d829e3ae1c43325c38bdca886f79922b0cbc66e3c0b621b12922884af04e482e620732cfd8',1881,1,NULL,'[\"user-app\"]',0,'2023-08-15 19:50:19','2023-08-15 19:50:19','2024-08-14 14:50:19'),('1f8c0b9ccac10b8ad735bad0b7623842671a7fd1749e86638612ac5b6950bfd1a6c0d0059e06a981',343,1,NULL,'[\"user-app\"]',0,'2023-01-31 21:50:23','2023-01-31 21:50:23','2024-01-31 18:50:22'),('1f9792a839577469b00f7117a06f2e83fd08a4535b7b4abb0b16cd16340184d5af7efa1e5b0ec2a2',1406,1,NULL,'[\"user-app\"]',0,'2023-05-10 00:24:23','2023-05-10 00:24:23','2024-05-08 20:24:22'),('1f98a33f7ce7da197b8e60330bba7c1e7de37e88b5dde6978a04816bfe7cc519457eb4e685be26b6',200,1,NULL,'[\"user-app\"]',0,'2023-03-25 20:26:06','2023-03-25 20:26:06','2024-03-24 17:26:06'),('1f9cfe863fbb35882802d348d0325be1eb473f98f7e3488e1a6c10185c6251049372d71f9b2b1c04',718,1,NULL,'[\"user-app\"]',0,'2023-01-26 00:26:11','2023-01-26 00:26:11','2024-01-25 21:26:11'),('1fb2e0b6a4d5ee1ce605d4d5600198bfc9b17d5f15bf4a342038d12eb95b5f6547036adeedea6cc7',200,1,NULL,'[\"user-app\"]',0,'2023-03-06 14:35:34','2023-03-06 14:35:34','2024-03-05 11:35:34'),('1fb4471a947d9857982b44302b3dfaa5bdbde30ae3e38e61354a8c381ffdc6ce2a3a09eba35bfac5',1535,1,NULL,'[\"user-app\"]',0,'2023-06-08 21:21:32','2023-06-08 21:21:32','2024-06-07 16:21:32'),('1fc2d7c9c81fe537637bbf008b72784d876dd421b639d7db8c69703c93f4987facd02042240c627f',89,1,NULL,'[\"user-app\"]',0,'2023-06-25 02:36:47','2023-06-25 02:36:47','2024-06-23 21:36:47'),('1fc8c6065ca7ace6fea9a974437317ad258a08a2d927b7571ada079449e6a014dad59126ca3c8e95',2,1,NULL,'[\"user-app\"]',0,'2023-04-13 23:50:54','2023-04-13 23:50:54','2024-04-12 19:50:54'),('1fd1101e5e370b9280ba1eecd9a4fa974fbd0ef016cbc1648269f4f3fb31bc40c75c5ffc16464774',2,1,NULL,'[\"user-app\"]',0,'2023-07-24 20:56:48','2023-07-24 20:56:48','2024-07-23 15:56:48'),('1fd383f0bb496c398428a0f3dae8903cf20775f9015c3f13efe31879ed1791b7033d501305185f6d',1654,1,NULL,'[\"user-app\"]',0,'2023-09-04 21:28:58','2023-09-04 21:28:58','2024-09-03 16:28:58'),('1fd7f56377ac5511c83de45fbb64c5b872d5b63daf9ca987ad3694bde13ba0dd508cb8db5c7af8bc',2,1,NULL,'[\"user-app\"]',0,'2023-04-27 19:25:06','2023-04-27 19:25:06','2024-04-26 15:25:06'),('1fdabfeae81ab8a3a89cc367793616e58010e25bbf2af12ebae4a331e5a8d7772ec49900ca28bb75',2,1,NULL,'[\"user-app\"]',0,'2023-02-21 23:08:40','2023-02-21 23:08:40','2024-02-21 20:08:40'),('1fe3542cbb84c35004df21912e7010a711f9d9a1347cb4a330f7c80eda2334a16119f1248da33f66',868,1,NULL,'[\"user-app\"]',0,'2023-09-16 00:43:45','2023-09-16 00:43:45','2024-09-14 19:43:45'),('1feceec677d1820b373162b475b57a881c985f1cd2c804eb7c9ad75908edcdf830ac5a74ee047448',2,1,NULL,'[\"user-app\"]',0,'2023-07-05 20:31:53','2023-07-05 20:31:53','2024-07-04 15:31:53'),('1ff9a353a8977a75932a37cedd56cf9aee90ce610c9c0893d362491afeaf754f841a48e714b5086a',1835,1,NULL,'[\"user-app\"]',0,'2023-09-24 16:29:16','2023-09-24 16:29:16','2024-09-23 11:29:16'),('1ffa1cc0ce5e65441ae69e3a6fb0ceeba6f8d88e8845cab2ca5c59e4689eccf98e92ebb1d35fdfec',73,1,NULL,'[\"user-app\"]',0,'2023-01-27 17:24:22','2023-01-27 17:24:22','2024-01-27 14:24:22'),('200abf4402334a119e35f5eddf57abc6b10e1d4fd774ab34e25f06cea6ace0b8a05112678f7317e2',2,1,NULL,'[\"user-app\"]',0,'2023-07-04 04:39:11','2023-07-04 04:39:11','2024-07-02 23:39:11'),('201216915e1f8394131beb541bd404c774f8a44184b22e324c997baa4ecf11f789b7039c65c18648',614,1,NULL,'[\"user-app\"]',0,'2023-02-03 01:56:20','2023-02-03 01:56:20','2024-02-02 22:56:20'),('20296f2a5421931564318aebc3e8bbf36e9bc2d8381ff98044a2735e0cc14dfd644146db977abee1',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 10:23:30','2023-05-01 10:23:30','2024-04-30 06:23:30'),('202bb0135ae654d6ee28b2b21f6cd2da9bb1a128b2d6864c48127fc2a32ba962ea9ea6faef91e145',1849,1,NULL,'[\"user-app\"]',0,'2023-08-01 15:51:33','2023-08-01 15:51:33','2024-07-31 10:51:33'),('2041e44cbc9a21f9c9150e556fecf8c0cdabf36456d03cc0d48a7eb50c6c781f1f9a287b20deada5',920,1,NULL,'[\"user-app\"]',0,'2023-03-04 15:19:26','2023-03-04 15:19:26','2024-03-03 12:19:26'),('2043cb2be7ff067f1915c4625902a640b436a52b1eb4dd8cfdf2b8b9e83a129ae42c6a06c71486f3',2,1,NULL,'[\"user-app\"]',0,'2023-03-03 05:05:03','2023-03-03 05:05:03','2024-03-02 02:05:03'),('204c08ee561a595dc5ce658b32a85d4a47640d93eb13222f922449e129a543661eb393492ab2ddde',2,1,NULL,'[\"user-app\"]',0,'2023-05-09 02:47:56','2023-05-09 02:47:56','2024-05-07 22:47:56'),('204d8fadbc2b7ae88bfd84a5001c9a825b15cf786f14e422ab6a58a8cc6e50ace070f22b67a46c24',2098,1,NULL,'[\"user-app\"]',0,'2023-10-05 04:42:49','2023-10-05 04:42:49','2024-10-03 23:42:49'),('20708ffa3f4e88827e64c61828af8a68196d5c1166107121de078eddbc8218f203b5dc9158f4948f',793,1,NULL,'[\"user-app\"]',0,'2023-01-29 03:43:49','2023-01-29 03:43:49','2024-01-29 00:43:49'),('207685ba09a29b680f5048c6502509aad1b8e10be45c5d30a9f42e2e4350583b8c9bea6b6601c7c4',2,1,NULL,'[\"user-app\"]',0,'2023-09-22 16:04:47','2023-09-22 16:04:47','2024-09-21 11:04:47'),('20787c5b7fc8377dcb16c92be93226074245994c0cc4a1b56e42155f0d457be00c186d044aa5b78a',38,1,NULL,'[\"user-app\"]',0,'2023-02-01 11:46:10','2023-02-01 11:46:10','2024-02-01 08:46:10'),('207b7269b82ed59be804976f17d7757f11c937c0c59674e2d76dd238afe7447228259960b597bf7d',758,1,NULL,'[\"user-app\"]',0,'2023-01-27 16:39:03','2023-01-27 16:39:03','2024-01-27 13:39:03'),('20b6c82065f7d7cebe33c8ffe60781cf28b08e39f4bb7140dc9233979668a83d539bc7768096ff64',1929,1,NULL,'[\"user-app\"]',0,'2023-09-01 13:22:55','2023-09-01 13:22:55','2024-08-31 08:22:55'),('20c96c25aaa609ade5d456df944b6380ef49612f715cf8640e96f1dfe351e1bd2f8ed9c94da51587',338,1,NULL,'[\"user-app\"]',0,'2023-10-03 15:54:10','2023-10-03 15:54:10','2024-10-02 10:54:10'),('20cec86628e6927b685f096cb6dd5ece6c719df2a7940a7bafbce9303dffef9b196411fccbc385b7',2,1,NULL,'[\"user-app\"]',0,'2023-06-12 19:59:47','2023-06-12 19:59:47','2024-06-11 14:59:47'),('2101be57577ed26cd02fc3b6edfc07b89e584dc210c4884c6ebda3a968d969058172b16c15eb1503',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 21:03:02','2023-09-18 21:03:02','2024-09-17 16:03:01'),('210812e2310417d0f317437652d4463951d96eb1cc30b243532340056de0b5fe14fcfc2a888267cf',2063,1,NULL,'[\"user-app\"]',0,'2023-09-28 01:07:31','2023-09-28 01:07:31','2024-09-26 20:07:31'),('21120023fe5d33bb0ca2e0b1ee5306055bf6fa9b742911918f0316f9dce51670c55e9f25697f874d',654,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:15:36','2023-01-25 12:15:36','2024-01-25 09:15:36'),('211d68c93e64fa2b249e675c5e2972e209dfd8ccb1c364252aeebbe6fab4886d2b10d19b4d93417b',154,1,NULL,'[\"user-app\"]',0,'2023-02-07 19:03:35','2023-02-07 19:03:35','2024-02-07 16:03:35'),('213d07366ce0f4179785bfd1143e98ee3be90b749fecaf6fbcc030397c53516dc735a3839d6a96e8',1325,1,NULL,'[\"user-app\"]',0,'2023-04-25 18:16:33','2023-04-25 18:16:33','2024-04-24 14:16:33'),('214bed1cd9fc6dd8905671f72f844765ff6ecbbab6578e793408089794a0dbedb2a122911aa79a19',1410,1,NULL,'[\"user-app\"]',0,'2023-05-24 01:12:28','2023-05-24 01:12:28','2024-05-22 20:12:27'),('2154ff52be2d5233f1dfa22d7a19e5a7e2820703d022ac8a6dd7a2159260a932e1e1a3f63ffa5001',1304,1,NULL,'[\"user-app\"]',0,'2023-04-23 02:48:55','2023-04-23 02:48:55','2024-04-21 22:48:55'),('2158e805d96917b00792f68a5daacf1e7136743aef05a150776e8cfed00133bb019d125d8352a2f9',655,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:32:33','2023-01-25 12:32:33','2024-01-25 09:32:33'),('21594825f4afc599d79fde0c2a680b0daa4eb99b4b9424016dff6c2ffd267a1ecb9ba183004585bf',2,1,NULL,'[\"user-app\"]',0,'2023-06-30 17:31:40','2023-06-30 17:31:40','2024-06-29 12:31:40'),('215c0d377ea17d63eac5e1dd8fc2ef07c8cf2c05e30ae624997291b0dd713a1b991388f01bb4b72f',1870,1,NULL,'[\"user-app\"]',0,'2023-08-09 22:29:57','2023-08-09 22:29:57','2024-08-08 17:29:57'),('2163df0ea6f55d0f3b6963ba132a8b76b1d7562785d588465b790e8a93964985267256b254555d30',573,1,NULL,'[\"user-app\"]',0,'2023-01-25 05:01:53','2023-01-25 05:01:53','2024-01-25 02:01:53'),('2173bcefaaf21d0d33d488f4de074bb2725d5d10e3e2db0086b9bcd714c39e631347aaa0c5eeeb09',838,1,NULL,'[\"user-app\"]',0,'2023-02-10 15:17:02','2023-02-10 15:17:02','2024-02-10 12:17:02'),('218eea59d745ff266daa3e46c99aa2f0badf169b7af9c5196f03abfc7d3f62f627c7bfab6e118931',1034,1,NULL,'[\"user-app\"]',0,'2023-02-22 18:14:18','2023-02-22 18:14:18','2024-02-22 15:14:18'),('21a29aae227e5568b089d2b9880e0359efcacc70658b9bf52bc105a2c7f6c6dd77aa43fd70a3e76c',163,1,NULL,'[\"user-app\"]',0,'2023-08-07 15:05:34','2023-08-07 15:05:34','2024-08-06 10:05:34'),('21cdcd2921fbe54c66b3faef49dc607c10234820753aae62bc3661d9b03ae5883471a9bdeb91de02',2,1,NULL,'[\"user-app\"]',0,'2023-09-08 15:42:03','2023-09-08 15:42:03','2024-09-07 10:42:03'),('21d0056e29c29a37b09f93a3155d45470c55fc6e31cfb3aec308e6375ae14e8d81185351cb6729c5',682,1,NULL,'[\"user-app\"]',0,'2023-03-02 08:11:32','2023-03-02 08:11:32','2024-03-01 05:11:32'),('21d48798f5ead58401af81e896e0d146e1df644bc74e75a15f7c4252bfad243a3fbff9a55ace2dd3',953,1,NULL,'[\"user-app\"]',0,'2023-04-13 02:54:30','2023-04-13 02:54:30','2024-04-11 22:54:30'),('21faf9e59ebc09178d8f98fc75bd031b0157c10d60fe3635be204b1d3db0521761593516e1b68f2c',2,1,NULL,'[\"user-app\"]',0,'2023-07-29 23:12:12','2023-07-29 23:12:12','2024-07-28 18:12:12'),('21ffce8135ae5cbf0f9bd7713d2009a79ff1c91cdb4f090c20cd8223f9ce140449ae751dd78fdb15',953,1,NULL,'[\"user-app\"]',0,'2023-06-07 14:03:11','2023-06-07 14:03:11','2024-06-06 09:03:11'),('2224711390eb577da0d53be28c4d632315f9ae31757d1c3959fa57e99fde57854afcee27e00653e1',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 16:55:00','2023-09-18 16:55:00','2024-09-17 11:55:00'),('2235de9c672aeb262270070509f6139b57aebd4ea2e623dbe2eb070445ccf0dbb54abe9a3a9a5787',1846,1,NULL,'[\"user-app\"]',0,'2023-07-31 23:11:53','2023-07-31 23:11:53','2024-07-30 18:11:53'),('22402418eba8baaf401c9881f75749b0ce82e91f2362caa73adc64b1a13a82a353ee7577fd2fdd6b',2,1,NULL,'[\"user-app\"]',0,'2023-09-23 17:47:37','2023-09-23 17:47:37','2024-09-22 12:47:37'),('225154756ff2ee801b9bdde693f98d4967695105b0f5b2b084a17ee948f8c9fbc2fb97d59a55d0ab',120,1,NULL,'[\"user-app\"]',0,'2023-02-26 14:31:25','2023-02-26 14:31:25','2024-02-26 11:31:25'),('225336b5bffac7fbbe361d7bc7a08b526a7fbfc5ecd83303f8137d7e6514b18edba85d2ca06b8ace',1746,1,NULL,'[\"user-app\"]',0,'2023-07-13 23:28:30','2023-07-13 23:28:30','2024-07-12 18:28:30'),('225741ae50d5ea5b6b0130e063b89ff92f44cc4c6547ce5383f598d0a2b5a90672d1793cdadf3516',1978,1,NULL,'[\"user-app\"]',0,'2023-09-12 17:37:07','2023-09-12 17:37:07','2024-09-11 12:37:07'),('22a1a6932024b11fd3c0f2889e79a9ded7ec9987f9df071ec621737a6375acb253c9f25a35f1401d',1999,1,NULL,'[\"user-app\"]',0,'2023-09-15 01:09:48','2023-09-15 01:09:48','2024-09-13 20:09:48'),('22a504e004ffc331c5cb586985ccc1ff32d086973b8baa2c22c0fdb7c622c802ef090f406e762014',1357,1,NULL,'[\"user-app\"]',0,'2023-05-01 15:48:14','2023-05-01 15:48:14','2024-04-30 11:48:14'),('22a81e9cdb63238d4353dfe2becd9ca4df569f5ec15837966dd2cb2190dd776cbd05bae20420de56',2,1,NULL,'[\"user-app\"]',0,'2023-06-29 04:55:44','2023-06-29 04:55:44','2024-06-27 23:55:44'),('22abafb8dc9031b43fe9adfb1a213a07bf6aee2af35191056a45ffdd31a7c30246f0bba55176631d',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 22:11:35','2023-01-25 22:11:35','2024-01-25 19:11:35'),('22b6e363bc81e4f0946dc6ec22d310159fd13d5740894e01778241949bd902569f10ae4052d7757f',327,1,NULL,'[\"user-app\"]',0,'2023-09-26 21:25:27','2023-09-26 21:25:27','2024-09-25 16:25:27'),('22bea4950d1d53181f09311e5c051a8bb09d6071d2b5496b615600d33b7e333eb04a9515b8659a9e',2,1,NULL,'[\"user-app\"]',0,'2023-10-03 15:51:36','2023-10-03 15:51:36','2024-10-02 10:51:36'),('22cbb00ea5d191444c6187b259dfab05dfbbbec8efbfc0a6effaa1ff8bec2cf1971b6d2edc002efa',449,1,NULL,'[\"user-app\"]',0,'2023-01-31 00:59:24','2023-01-31 00:59:24','2024-01-30 21:59:24'),('22da33a7e9a21f1446dd83cccaa9d01972ca21725a62f0ce30cc8f750093e401f2b352eb007bfdad',1239,1,NULL,'[\"user-app\"]',0,'2023-04-08 16:04:37','2023-04-08 16:04:37','2024-04-07 12:04:37'),('22db24508a270f1474e68e3bba4d1fed329a825f29bb13962002d470630b2d5e125cc9222a367b9d',982,1,NULL,'[\"user-app\"]',0,'2023-02-18 19:50:26','2023-02-18 19:50:26','2024-02-18 16:50:26'),('22ea3c4e9b1d3243bc21a643a99897b240d01b823c6e97a865e9ad525f5f1bd775251808105f3ed9',2019,1,NULL,'[\"user-app\"]',0,'2023-09-20 00:54:48','2023-09-20 00:54:48','2024-09-18 19:54:48'),('22f410a8d05c639bc1de5e809b2f36cc4abd7b613746057f694f8b21001ed0f097469a7e48cf5ad4',1957,1,NULL,'[\"user-app\"]',0,'2023-09-06 21:16:36','2023-09-06 21:16:36','2024-09-05 16:16:36'),('2310f3628b7e9938a69e550b84ec5922584d372f77c540c2ed4858352535b623795cd0a811d2d5c1',1382,1,NULL,'[\"user-app\"]',0,'2023-05-08 11:43:48','2023-05-08 11:43:48','2024-05-07 07:43:48'),('2318f601edecc3bed5a47f9158ac4ec60196e00dee3c7867488c7e4dab0ea3952da980170d4b3044',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 17:18:11','2023-01-28 17:18:11','2024-01-28 14:18:11'),('2323c0461bce29bc89c281e403685ed9e1e869cd2855c1269f74044e6ac0f36f447cf806683ab4fe',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 14:38:12','2023-01-26 14:38:12','2024-01-26 11:38:12'),('2346184fd1d4bf8588064468fb985b83617ffa66e159ee0b537d82a7da3cbaa354fef831d47d1470',1074,1,NULL,'[\"user-app\"]',0,'2023-02-24 21:50:46','2023-02-24 21:50:46','2024-02-24 18:50:46'),('23656c3923c29a21ec760cb65e499e60fd07800959457b9fd1c97ab6203a058ffc0cae7465522f09',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 19:15:25','2023-07-17 19:15:25','2024-07-16 14:15:25'),('2366189123cf561a7eeae83ae476c636ef5ecc0eb017da6f5018ebe33169200c846b046a48cb99fa',2,1,NULL,'[\"user-app\"]',0,'2023-06-25 15:10:41','2023-06-25 15:10:41','2024-06-24 10:10:41'),('237293eccc934ebfaa2bfaf30150fac9a0ea58f6d0de5387d5608c59c3d859eea646a4f59ff839ac',1385,1,NULL,'[\"user-app\"]',0,'2023-05-09 02:49:59','2023-05-09 02:49:59','2024-05-07 22:49:59'),('2373086c638b835469eb70ae610ee33cbf18e1184c0f91c2ae90f48f570c84fb3e288a73987a6233',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 00:45:49','2023-09-25 00:45:49','2024-09-23 19:45:49'),('2389d17dd1896ddbd5cedfde2ef67c326ff3f9f00a8fdd1a4a80e9686a99e69d8a67a34ef9a76ab8',953,1,NULL,'[\"user-app\"]',0,'2023-04-24 19:18:06','2023-04-24 19:18:06','2024-04-23 15:18:06'),('2398202304e49ef61ba0de66c86c51d0025590a4cae6e69c8c955419bc42b7eae87b5c97ddeae0b9',1106,1,NULL,'[\"user-app\"]',0,'2023-03-02 15:52:50','2023-03-02 15:52:50','2024-03-01 12:52:50'),('23ad05584e67b4870eff41916054a91a8414a04fc9962855391d29294b7ee9d0d145f96b0bdb5ff6',2,1,NULL,'[\"user-app\"]',0,'2023-04-07 15:57:02','2023-04-07 15:57:02','2024-04-06 11:57:02'),('23b82422e1b0b6d97001ded583d487167802371f42305c266ea99528884c72146934985527033e55',2,1,NULL,'[\"user-app\"]',0,'2023-03-26 03:02:05','2023-03-26 03:02:05','2024-03-25 00:02:05'),('23d74d21bbd9344051c28deeee1bef7fec57690d42cb75166540ef0ffc7a0dcec87d39c46c41fda0',2,1,NULL,'[\"user-app\"]',0,'2023-04-17 14:01:36','2023-04-17 14:01:36','2024-04-16 10:01:36'),('23e8a6c4960c95f3e4cd06e795a856e9baa119f4de972577ab13a3cfae747f9d2ccec0cd8b0c2dfc',66,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:46:26','2023-01-25 18:46:26','2024-01-25 15:46:26'),('23fdeccd177effdb9eedf32496827bbd7687abe3c126da07148c27095592e514a64b43d216e4b9b4',817,1,NULL,'[\"user-app\"]',0,'2023-01-31 11:31:46','2023-01-31 11:31:46','2024-01-31 08:31:46'),('242b5a20d51b084fca3ab7e0ee4875d397c92ac44620c10eed4f72e7396379f13292b3b9ff8caae2',999,1,NULL,'[\"user-app\"]',0,'2023-04-04 10:01:17','2023-04-04 10:01:17','2024-04-03 06:01:17'),('243058fe976525574db20ac018d9e7b05a965ed8dadc83f70cbfbb8b053e53a6913a799c56acdf8d',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 14:30:10','2023-07-17 14:30:10','2024-07-16 09:30:10'),('2440cedbf867b14e788c08a4414ef535796a5fffc6d5adc76754c18ed88d33e75b3c461a9b377f5c',497,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:51:23','2023-01-25 17:51:23','2024-01-25 14:51:23'),('244a11ee5f2d072958f10dbf9ea5ac877ec8bf1760d0795cf43ff26127d8849cd826988889e171a8',1721,1,NULL,'[\"user-app\"]',0,'2023-07-08 05:57:36','2023-07-08 05:57:36','2024-07-07 00:57:36'),('245d12e4245680663a7eaf2611ef34c84c530cf15a8f32cb039cc4278a96886e641e4a3e9f488a54',2,1,NULL,'[\"user-app\"]',0,'2023-04-19 19:56:40','2023-04-19 19:56:40','2024-04-18 15:56:40'),('246ce394861ca4b344525e7353f55224218802b5c306a7d8e5e66bcd8a2e141b8ef4a15fcfaef97c',160,1,NULL,'[\"user-app\"]',0,'2023-09-11 02:56:59','2023-09-11 02:56:59','2024-09-09 21:56:59'),('24743989f623694da3db3d587d80d1ca7148d226f2d53dd26d51c4c947583120aedff71178c9e88b',1072,1,NULL,'[\"user-app\"]',0,'2023-03-07 12:01:21','2023-03-07 12:01:21','2024-03-06 09:01:21'),('247bc895f1fad44a37f74d272dbbcfdb421bc4a06f6e5271695854468d8aa500ec60d6f8c1be2b3d',2,1,NULL,'[\"user-app\"]',0,'2023-03-12 23:31:04','2023-03-12 23:31:04','2024-03-11 20:31:04'),('248cebff9180a644c9f229ba00bf2800648b77a4aa70ac9c657634dfba5bbef316aef55bcdaf506f',962,1,NULL,'[\"user-app\"]',0,'2023-02-17 11:10:23','2023-02-17 11:10:23','2024-02-17 08:10:23'),('24a9568ffbc4c6368d5a709f3c45eeea11b71b8ddce8f14d5c7f8a91cd4251239fc16a71fd583b45',2,1,NULL,'[\"user-app\"]',0,'2023-09-12 14:43:13','2023-09-12 14:43:13','2024-09-11 09:43:13'),('24b120261a2bb478b16d48d66e6ae7cb1b911ebfce35d957c30f1f3fbdfe2a135eb80362f2d90326',1407,1,NULL,'[\"user-app\"]',0,'2023-10-05 21:21:46','2023-10-05 21:21:46','2024-10-04 16:21:46'),('25054496cd2f4e8dfd3bd440db8778b3e09e9ca57cfc702c4fc3335188e22d073cc2488b8b1936db',2,1,NULL,'[\"user-app\"]',0,'2023-10-08 01:34:22','2023-10-08 01:34:22','2024-10-06 20:34:22'),('250e110b33f2161180664ab6d8ac0936ffdb93e9211d9a10e657045512b17a839fff4178c0b57bba',1605,1,NULL,'[\"user-app\"]',0,'2023-08-15 17:29:53','2023-08-15 17:29:53','2024-08-14 12:29:53'),('2529738c0e65b3e863175b07003ab128f8a720cc6dd180ade87201fb9e534ae903ab12ed2685fc3f',2051,1,NULL,'[\"user-app\"]',0,'2023-09-25 17:12:43','2023-09-25 17:12:43','2024-09-24 12:12:43'),('25329e20e15a1699f9b18fda93b238c0c8e286e8a0adb926f87420f8f2dc1d0b5623e33665807aa7',1394,1,NULL,'[\"user-app\"]',0,'2023-05-09 20:06:55','2023-05-09 20:06:55','2024-05-08 16:06:55'),('253f6791a21f84da6bd3a460456ab968a6d3e99ba836cbdb909844b9ac6f85b99c41905f2c2d9abc',1429,1,NULL,'[\"user-app\"]',0,'2023-05-11 18:29:37','2023-05-11 18:29:37','2024-05-10 14:29:37'),('2564ad063aa9beba21407d28b2bf69bf3f3316cfd5aba5f4e5a012e223ceb9b096172e8b9588b577',1541,1,NULL,'[\"user-app\"]',0,'2023-06-09 01:49:22','2023-06-09 01:49:22','2024-06-07 20:49:22'),('256a626b200c5cdc20199e4a97abdb7ffb8241dc0eade789afd25034b7725dd0c902ff33c4cec0b4',528,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:05:35','2023-01-25 15:05:35','2024-01-25 12:05:35'),('258a202895ecb4183ddc682f9448ff22bb40ead3ba7d58ed45b33e971f9946dfebd54dbe80d7f1ad',931,1,NULL,'[\"user-app\"]',0,'2023-02-15 16:24:35','2023-02-15 16:24:35','2024-02-15 13:24:35'),('259031bfca9ec5a3398190a025e9ab8b25462468fb3268c4626cb74b2fd10822bf01a5c14e3bdae6',1767,1,NULL,'[\"user-app\"]',0,'2023-07-15 02:46:10','2023-07-15 02:46:10','2024-07-13 21:46:10'),('25956b939c6bc440a540af7e9b587378f18ee0faea03c129217dc74a8cd74df0170508fd681759ee',2009,1,NULL,'[\"user-app\"]',0,'2023-09-18 21:04:11','2023-09-18 21:04:11','2024-09-17 16:04:11'),('259cb516886991d98648bc861687191a671e7c2af78fea1510df6a0fab7ae7ba356ee5058e216738',701,1,NULL,'[\"user-app\"]',0,'2023-06-18 16:21:40','2023-06-18 16:21:40','2024-06-17 11:21:40'),('25bdc73ba5f3d1243201b65b61375b0f6dba89dfa286013b03a45d4ff8d65db6ca65f4a6ba8325cf',122,1,NULL,'[\"user-app\"]',0,'2023-05-31 18:34:35','2023-05-31 18:34:35','2024-05-30 13:34:35'),('25e37d730b98a4bea9d2cc13e56918d93187c53af38522492737997954b40a290d62cb151b88b547',100,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:09:52','2023-01-25 14:09:52','2024-01-25 11:09:52'),('26099021045eecc7c56cc8311129c1c1290b1a7c0d012d5008835f24dbdac888eae821f1185f7e4d',2,1,NULL,'[\"user-app\"]',0,'2023-07-08 03:44:13','2023-07-08 03:44:13','2024-07-06 22:44:13'),('2611ad077963b5d88be35157a4270ba5cfa3585d425048b929eb371b2ce9f208beff608e36f59e73',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:25:24','2023-01-28 13:25:24','2024-01-28 10:25:24'),('261b1091231dc2aa4ddcf59121fafda40bdfc214e7fd74f9b8b9b9b252b5dbcf0bc0cb58af24c21b',2,1,NULL,'[\"user-app\"]',0,'2023-07-23 15:44:42','2023-07-23 15:44:42','2024-07-22 10:44:42'),('2625cda051f1d1bf83138c06ff34782f47d2ef19076e220d9d272b6fc280a7e0bad6d51e5cd0dd73',2,1,NULL,'[\"user-app\"]',0,'2023-09-05 04:16:09','2023-09-05 04:16:09','2024-09-03 23:16:09'),('2654591e6f30cc52c374838b513cda0205726c624568aa4a4008b798b00b19e7e40efd2095854132',955,1,NULL,'[\"user-app\"]',0,'2023-06-07 14:05:56','2023-06-07 14:05:56','2024-06-06 09:05:56'),('2661ebc50f307301a1e58c68f1eb97f58bf08bfe9bef06aeaaadf20baae593aa09f5d936a1bfe38f',2,1,NULL,'[\"user-app\"]',0,'2023-05-17 22:04:25','2023-05-17 22:04:25','2024-05-16 17:04:25'),('266bbe04364af73b82ef2768a156bbe4683a777d716de66d1080aebbeffe6500e2743a549e5666ca',2,1,NULL,'[\"user-app\"]',0,'2023-05-12 13:21:13','2023-05-12 13:21:13','2024-05-11 09:21:13'),('2671af5916e28e34e923614c7580b1ce93f744b94b784407608465292eaa3e6f9df2b3ff46f0b856',2,1,NULL,'[\"user-app\"]',0,'2023-06-13 19:51:54','2023-06-13 19:51:54','2024-06-12 14:51:54'),('26767384769fe50bf16dc242d248bb7e77524e44e231af683d5de33c5258d633e752dfaa61c4773e',50,1,NULL,'[\"user-app\"]',0,'2023-01-27 08:19:56','2023-01-27 08:19:56','2024-01-27 05:19:56'),('269dd8fcba69f7f89013b812fb658d9ff3fc06897a54e4c6e58e4b666105eae0e43c19b2d5b5e1ae',2,1,NULL,'[\"user-app\"]',0,'2023-05-04 22:40:02','2023-05-04 22:40:02','2024-05-03 18:40:02'),('26a42b5bf52a3383c089239e800b20eeb00b2f4c78f303b057538e741960abfcbb7ab375d608ea1a',956,1,NULL,'[\"user-app\"]',0,'2023-04-11 20:39:19','2023-04-11 20:39:19','2024-04-10 16:39:19'),('26ac0bf49a94d3c52ebd469068e18e0c185908a9f1cd619e1af5a4b891897a3cc889d6998fa9b16d',971,1,NULL,'[\"user-app\"]',0,'2023-02-18 12:33:36','2023-02-18 12:33:36','2024-02-18 09:33:36'),('26b0894d81b2f3e1734f549dc8a201d855a43b26d663816993fdfd7e278f1add29d824188bfeaa7d',498,1,NULL,'[\"user-app\"]',0,'2023-07-17 14:30:50','2023-07-17 14:30:50','2024-07-16 09:30:50'),('26cfbfa81fa32d13d2c8dc594a6b9ffa0e5f10fc5ec3d7953f1e60b6febe4a7042e6ff45abf4d25e',284,1,NULL,'[\"user-app\"]',0,'2023-07-10 13:39:27','2023-07-10 13:39:27','2024-07-09 08:39:27'),('26cfe4a4672c123a7cc94c87bccaaecd2075784fe85cac3a86b1889067a760759f497afad93a8d9b',879,1,NULL,'[\"user-app\"]',0,'2023-02-08 12:51:20','2023-02-08 12:51:20','2024-02-08 09:51:20'),('26dcf7c887317bf36598b4f450c730f8635857f99548467502d8b58dd1d8b946fc92129ce8b0b8fa',2,1,NULL,'[\"user-app\"]',0,'2023-02-19 21:21:15','2023-02-19 21:21:15','2024-02-19 18:21:15'),('26fc2c5c1533ba008a1c91ce8710ad7b2fe242566dc3a0e079cce2e39bd6aa570fa4d1aff7447097',649,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:43:35','2023-01-25 11:43:35','2024-01-25 08:43:35'),('26fc9f9298f5934b370357bfda43049ff83eff171261d42b397c3df3f0576236f6a925a563afbb5f',2021,1,NULL,'[\"user-app\"]',0,'2023-09-20 19:06:22','2023-09-20 19:06:22','2024-09-19 14:06:22'),('26fef4916c6bb04d6cca63362fd6d3783674b5b7249457c95a776f4907d4935281544c62b62a9214',1417,1,NULL,'[\"user-app\"]',0,'2023-05-19 20:11:52','2023-05-19 20:11:52','2024-05-18 15:11:52'),('270118af675b79916b782406d99467ba29975d85752577fe2d66a8e9d008ae97227ae4f88cbc8d4b',842,1,NULL,'[\"user-app\"]',0,'2023-02-05 18:56:42','2023-02-05 18:56:42','2024-02-05 15:56:41'),('27121b992368e24aeb2c5929fbe58e2e38e2200e783c74c185dd14fe58caa004f2077ab1f806a401',741,1,NULL,'[\"user-app\"]',0,'2023-03-06 17:41:25','2023-03-06 17:41:25','2024-03-05 14:41:25'),('27288a5d691a1421ab0b7a0f0e6b299846c4cf53ae1077926700b51ef8d1e5e6c7f94ed8f74454ff',124,1,NULL,'[\"user-app\"]',0,'2023-04-10 21:28:21','2023-04-10 21:28:21','2024-04-09 17:28:21'),('2738064ffdd4c6413e4560425845805fdb294ff38e7a19603eef056f8c564684f984d5b54442c2fc',7,1,NULL,'[\"user-app\"]',0,'2023-09-06 21:56:57','2023-09-06 21:56:57','2024-09-05 16:56:57'),('27399717910e663e7be65cbb422842efed77f29223d7e6ab043e83230cce97408aa7d63557d686e9',2,1,NULL,'[\"user-app\"]',0,'2023-07-08 15:03:54','2023-07-08 15:03:54','2024-07-07 10:03:54'),('2746b88c22c57ac0a9b88f7d6838bf13c8212874cd797a215d6a31428475329e49e25517796978b3',5,1,NULL,'[\"user-app\"]',0,'2023-04-24 18:33:54','2023-04-24 18:33:54','2024-04-23 14:33:53'),('2754a05343e46047bf0543633cf563fa9eaa4819d9e0d921f9140ea920cadb66cf4d5623fb269d0b',2,1,NULL,'[\"user-app\"]',0,'2023-09-09 20:03:42','2023-09-09 20:03:42','2024-09-08 15:03:42'),('27571a9f1e2bc66553df83033b644f2b8aa7e7b96d12badaf6dc89efdb2991742d4bf40c45cb0138',2,1,NULL,'[\"user-app\"]',0,'2023-08-18 01:20:24','2023-08-18 01:20:24','2024-08-16 20:20:24'),('2769b3cd4f6eebf1bed16011ed2c5b7b5cc6b8dc1a082c5a4ca8c4a0421280e0ca93de77e8e08a0a',920,1,NULL,'[\"user-app\"]',0,'2023-03-30 03:38:40','2023-03-30 03:38:40','2024-03-29 00:38:40'),('276ab48c89f1b3d5d41acba5b142f97cd21aaa645fefa82c29e53f1f456689d18c6e86f7124dd6e3',2,1,NULL,'[\"user-app\"]',0,'2023-06-01 17:59:10','2023-06-01 17:59:10','2024-05-31 12:59:10'),('27b5a2f59ec80ed26d556a1de2285ab6829ebb568cfa74d346fdefeed8ac49674c6ce1fadc45ac45',2,1,NULL,'[\"user-app\"]',0,'2023-08-09 21:01:45','2023-08-09 21:01:45','2024-08-08 16:01:45'),('27c47035b1c61ab78290597877c84697e4e3befcf3a989f66e3c83de9b5a629c2c98fb145d3d8a8b',1961,1,NULL,'[\"user-app\"]',0,'2023-09-08 15:43:15','2023-09-08 15:43:15','2024-09-07 10:43:15'),('27df53d584b6351fdcc6440af642f8a4898c76bc7d392697ffec9a14747087403706cb0ca4426619',279,1,NULL,'[\"user-app\"]',0,'2023-02-09 14:38:27','2023-02-09 14:38:27','2024-02-09 11:38:27'),('27ee73e2cb10dd46246d78b07ba1c7a57a81b1e2cf05cafbddc9b1a0fcc8ffaf0a1562ab3c9d858c',1423,1,NULL,'[\"user-app\"]',0,'2023-05-16 18:31:08','2023-05-16 18:31:08','2024-05-15 14:31:08'),('27f08fa306dc51815fe978aa160ae850cb175fbaa4840fa8207350f6240578ab705bb2425a7c5506',182,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:25:01','2023-01-25 16:25:01','2024-01-25 13:25:01'),('27face47dc08843a64ec44caac96841a78209e541daaea84ad6011ce32ac96e8821ff86f212b5516',2,1,NULL,'[\"user-app\"]',0,'2023-04-11 03:15:59','2023-04-11 03:15:59','2024-04-09 23:15:59'),('2807b7ac572b9d91b071515f33eff820590604455399d836e30cb72f08e06ff0bb2c22aeabcfe754',1764,1,NULL,'[\"user-app\"]',0,'2023-07-14 20:01:19','2023-07-14 20:01:19','2024-07-13 15:01:19'),('281075770857ba0e5928da4204c1d18da10d547bc8e1a7f02fa065db3e6f774468a9167d4ca3346c',2,1,NULL,'[\"user-app\"]',0,'2023-07-26 15:52:08','2023-07-26 15:52:08','2024-07-25 10:52:08'),('281be21c02a65b97c2cfddef27c17adc6350a644836092d630c84b6a783a636ca963943d2f06d79f',1635,1,NULL,'[\"user-app\"]',0,'2023-06-24 12:20:38','2023-06-24 12:20:38','2024-06-23 07:20:38'),('2833020185420fdef09452a69a1a93dc0a306297de5f813cf47ec72bb538237810d0f6232ca73ee0',1657,1,NULL,'[\"user-app\"]',0,'2023-06-28 02:10:39','2023-06-28 02:10:39','2024-06-26 21:10:39'),('285347e3cb5fad9742fba8878bed7c676d4e983e027008919858f6cff5d2f7793101cedccb474a93',2,1,NULL,'[\"user-app\"]',0,'2023-08-21 17:31:17','2023-08-21 17:31:17','2024-08-20 12:31:17'),('2854b0b6706166cd701253d1365802daea3491e403ec7b1e0d616e8d71a3374298fcf66872bb8312',2,1,NULL,'[\"user-app\"]',0,'2023-10-03 17:42:30','2023-10-03 17:42:30','2024-10-02 12:42:29'),('285a29da0047df17592b5264022fd76e923fbbcc92b3175c451a54075444fcb69a109fbd51243d9b',1670,1,NULL,'[\"user-app\"]',0,'2023-06-30 04:03:19','2023-06-30 04:03:19','2024-06-28 23:03:19'),('2860059735c9ad9b7ca6cd7bee2d8913126b47d43e7ff0557fe5d13bf5476fa78eed686cf25fc0a8',2105,1,NULL,'[\"user-app\"]',0,'2023-10-06 14:01:12','2023-10-06 14:01:12','2024-10-05 09:01:12'),('28681a723f043008ea35b37f52c0a21f0b7df117bc2af36c5a92af6641fa837491e54490e5096ac4',1134,1,NULL,'[\"user-app\"]',0,'2023-10-01 18:09:20','2023-10-01 18:09:20','2024-09-30 13:09:20'),('2875f442477f4807119c8c250488d8f0df66b34250ca952606a2978d5b1f85dae136a1083ef4a942',1423,1,NULL,'[\"user-app\"]',0,'2023-05-16 19:04:07','2023-05-16 19:04:07','2024-05-15 15:04:07'),('28773038f5f06f63f0b5fc3fd5b4974291be07eaee6a7788f9d375684a9d0edede02f073b5eeb083',64,1,NULL,'[\"user-app\"]',0,'2023-02-01 20:27:28','2023-02-01 20:27:28','2024-02-01 17:27:28'),('2877d5ebe38f381d644baf9faf94fdf521563a9bfde7149d6a82015886c7f045d25879133b1b1581',2,1,NULL,'[\"user-app\"]',0,'2023-07-26 04:55:45','2023-07-26 04:55:45','2024-07-24 23:55:45'),('288270cabcc4a3132d2b9cdf1c600c28cc08a4832530cca29a6cb01f75475a8804f25f25b7839640',2,1,NULL,'[\"user-app\"]',0,'2023-08-24 23:02:00','2023-08-24 23:02:00','2024-08-23 18:02:00'),('288a87aa0c375e95fc3e32554718751c395156ab0af0007df9fe971ab6e39882145698b36cd24490',691,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:39:04','2023-01-25 17:39:04','2024-01-25 14:39:04'),('28bd24e1b6fbfe33dcca28c648ccb51a0cabd09e5e6847160d7e0685a64fe426959eac4bf517b297',515,1,NULL,'[\"user-app\"]',0,'2023-10-04 05:21:24','2023-10-04 05:21:24','2024-10-03 00:21:24'),('28be48782ec843427f109dcf6c8ded49bab92de53de93d6605292ca5de36a54ce78de0cd54c62b10',810,1,NULL,'[\"user-app\"]',0,'2023-01-31 00:53:50','2023-01-31 00:53:50','2024-01-30 21:53:50'),('28f2272f6c9cbe14c6b830e519ab5a975fde49243fce67fef1e5059b0ff409df548090ff3a69a41c',348,1,NULL,'[\"user-app\"]',0,'2023-01-29 18:09:19','2023-01-29 18:09:19','2024-01-29 15:09:19'),('290114a4208bd86c187725f3cce96184f9a7e5a68b4900dc94c92a9391addfcdfa848df3324e5b0c',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:22:09','2023-01-25 17:22:09','2024-01-25 14:22:09'),('29227fb621e9df6c731d46a021b36e5ecdf6cd59b26bebe4a7184e633b1fd6bdb5563225c39fe400',1887,1,NULL,'[\"user-app\"]',0,'2023-08-17 01:06:29','2023-08-17 01:06:29','2024-08-15 20:06:29'),('2923bc0446b9f275ed2867a1a354ebb4af9b1372dda1aaee9dbb0de8608d21fd79ce3fa6634ee9c1',2,1,NULL,'[\"user-app\"]',0,'2023-01-31 14:17:31','2023-01-31 14:17:31','2024-01-31 11:17:31'),('292426f3713580530cc88d3ade3abb59d4c1e83fae268e5e5d47c4ad1f217d05b5f7e342140038ba',1003,1,NULL,'[\"user-app\"]',0,'2023-07-14 19:23:54','2023-07-14 19:23:54','2024-07-13 14:23:54'),('2939e19662049fe6e4d88a1059136c7da6e73faeb727e72b84f9f5505515c62cfca8b708a316faeb',783,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:00:30','2023-01-28 19:00:30','2024-01-28 16:00:30'),('29795c7a7d3e88db4d166de42cf8a60869e7056f062bb9d4aab4ed84f24d81811146637e1082e1dd',1967,1,NULL,'[\"user-app\"]',0,'2023-09-10 15:41:43','2023-09-10 15:41:43','2024-09-09 10:41:43'),('2988b5a6f384b8f3b33211a1116f6834243cf710b080ec614a99b2fb432a53ce50578ae25fc283b8',657,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:41:06','2023-01-25 12:41:06','2024-01-25 09:41:06'),('298a272dd25fcfc859f313803d423ff6d5b78da9d6ad3ecc52323fea25ff8516db1a9b57864d9799',813,1,NULL,'[\"user-app\"]',0,'2023-02-13 11:13:36','2023-02-13 11:13:36','2024-02-13 08:13:36'),('299496e63ed8bb86fad5cac792ca4d0b9b2af26a77a3c0d0673bdb409e6037e8599f39660c682911',190,1,NULL,'[\"user-app\"]',0,'2023-09-15 01:52:15','2023-09-15 01:52:15','2024-09-13 20:52:15'),('29be36632270818b882cb6b2183ee4f132f91d2f3c76f36234b4ad00f491e91867708166296e46e1',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:36:25','2023-01-25 11:36:25','2024-01-25 08:36:25'),('29bf50c2becaa3b818d1df604ff354e61b83e1003b7df648a0ec2665129f0428fa1847e69a1b5ac5',1052,1,NULL,'[\"user-app\"]',0,'2023-04-22 03:54:15','2023-04-22 03:54:15','2024-04-20 23:54:15'),('29d60fa06bbc894f5647066dbd8b31d349e2c04ced4d3fcd3c1f18ebaed552e1943d305c46d18b1b',1584,1,NULL,'[\"user-app\"]',0,'2023-06-17 21:25:57','2023-06-17 21:25:57','2024-06-16 16:25:57'),('29d9b445b595b1ac58a91465165df459c4a529d2211d0ca4f2669a7d5689fe806f55bc2e407594bd',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:39:32','2023-01-25 12:39:32','2024-01-25 09:39:32'),('29e370bef6d12a210e5f1fb440504a8a16573126dc252d03e49f4d7b5eacbf76957cd4648fe822d2',2,1,NULL,'[\"user-app\"]',0,'2023-05-10 18:58:32','2023-05-10 18:58:32','2024-05-09 14:58:32'),('29e8051fd45c09c653d60bdd0997df6627854fef9052bf778fd3af356d80589796587fef546a5572',289,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:19:39','2023-01-25 16:19:39','2024-01-25 13:19:39'),('29ea7feed16799051c860666046eaad30623a11e1327c7d578d9d10b506d095e33a48090eddc9600',2,1,NULL,'[\"user-app\"]',0,'2023-08-07 23:41:07','2023-08-07 23:41:07','2024-08-06 18:41:07'),('29eb600c6fdecf665048ce013cc704fbe56f3ba01efacee2220bc404d536588c4b5217a2d43f85fc',66,1,NULL,'[\"user-app\"]',0,'2023-04-17 15:51:14','2023-04-17 15:51:14','2024-04-16 11:51:14'),('29f97c2d7a4d78665050ea4ce405c66a92450aef4ad43685f9fe0dc019382bd86ef88495afcf41c2',1165,1,NULL,'[\"user-app\"]',0,'2023-10-03 18:43:53','2023-10-03 18:43:53','2024-10-02 13:43:53'),('29ff92aa943b26eb2b5952798e76e0769ffeb34f38f85d6fbc5bb1861e9a57dec464848acfb8fff9',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 19:46:21','2023-09-18 19:46:21','2024-09-17 14:46:21'),('2a0200a99404f7320e65f3088ef7d8d0aaa52a453a2892a74adb875d14af0b2c02226373e66b4bd5',800,1,NULL,'[\"user-app\"]',0,'2023-08-10 22:23:07','2023-08-10 22:23:07','2024-08-09 17:23:07'),('2a1da3e88118a2930a64040cb919b0b45c6b38393ecc09dac7fde9210e8ecbdf7a1d962fcfec2aab',354,1,NULL,'[\"user-app\"]',0,'2023-01-27 13:40:04','2023-01-27 13:40:04','2024-01-27 10:40:04'),('2a2d299e8f6f9a7a661411f4cb0d1b17043498935842e0c6f4567a1974bcaaefe55c3e993c8294f5',1400,1,NULL,'[\"user-app\"]',0,'2023-05-09 21:15:43','2023-05-09 21:15:43','2024-05-08 17:15:43'),('2a31031d80caa4a3ef89c96b8e70cc0d5068e9ea7783f0dec15ab4aab550103cbe299972f43610e0',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:19:48','2023-01-25 14:19:48','2024-01-25 11:19:48'),('2a3bf23bf78c52d78efe36a8d1c611c65f4c3aee9359f4f29868644a27ca374c0a60afb3373c110f',763,1,NULL,'[\"user-app\"]',0,'2023-01-27 21:37:41','2023-01-27 21:37:41','2024-01-27 18:37:41'),('2a41c1ec0216dd271d10ad3d6f3c8a1cb758191f180a7217222781a4c3b719a4c22483af230a040f',120,1,NULL,'[\"user-app\"]',0,'2023-02-23 23:46:46','2023-02-23 23:46:46','2024-02-23 20:46:46'),('2a481799c88f869ba04e9fcffe719f98469dfe9d69e27fd6d9f2cf48d2325c16d220b515f0afda71',827,1,NULL,'[\"user-app\"]',0,'2023-01-31 19:16:22','2023-01-31 19:16:22','2024-01-31 16:16:22'),('2a57fa3c5ec3c26e870396d8f088cbbe8bd289c242407019bfe27fe13eadc5fe345f8e6db648387d',8,1,NULL,'[\"user-app\"]',0,'2023-10-03 20:28:20','2023-10-03 20:28:20','2024-10-02 15:28:20'),('2a5f01a59be66761d9bf2aff52517e5cca28f9ce6888a4a4eda01f0af7459c67ec1ca4529aee48e4',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 20:09:31','2023-05-01 20:09:31','2024-04-30 16:09:31'),('2a9e688b8c34121df9c6d865049c2bba33ef64761eb540c894c87a7939d89de34ad13a6dc6bc91a5',1735,1,NULL,'[\"user-app\"]',0,'2023-07-10 19:08:55','2023-07-10 19:08:55','2024-07-09 14:08:55'),('2aae60a2256e32cd42a87719e4e72330590bf876cc94d70503c60e8515b08f5c618578696020878b',200,1,NULL,'[\"user-app\"]',0,'2023-02-23 22:48:07','2023-02-23 22:48:07','2024-02-23 19:48:07'),('2adaf0da6fce30936cb14c8cac8318b36567f87aebda4816220ea08635b3225ea155f4da7feccb1d',1499,1,NULL,'[\"user-app\"]',0,'2023-09-11 18:06:05','2023-09-11 18:06:05','2024-09-10 13:06:05'),('2ae259b2e19e84f8901957cd69e6e1b137155758b18e8650428eba213ab855ff433ae9510e07fd56',849,1,NULL,'[\"user-app\"]',0,'2023-02-03 02:01:23','2023-02-03 02:01:23','2024-02-02 23:01:23'),('2ae486f33323649cb4abe42c77f5a9cbcb5151113213d3e5a6f6f9c34d8f6f5c33d310f276283abc',470,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:10:24','2023-01-25 12:10:24','2024-01-25 09:10:24'),('2ae8ae5e2f55b3546d5921e0d9419bd1785ab9d74578e7c64dcd54848498d5d05153dc06e406d1f9',2103,1,NULL,'[\"user-app\"]',0,'2023-10-06 00:49:54','2023-10-06 00:49:54','2024-10-04 19:49:54'),('2b1229a1698352fac86a81317841a070c99345ce9c4d9d59eb5d7e20886981232ac21c9bd55d0ea9',1754,1,NULL,'[\"user-app\"]',0,'2023-07-14 13:43:58','2023-07-14 13:43:58','2024-07-13 08:43:58'),('2b1a8c73db2468f06c01a11938bbe846bbfb042bdc9949862104c9c637029ef863ce58f7b03ab143',1645,1,NULL,'[\"user-app\"]',0,'2023-06-26 17:05:24','2023-06-26 17:05:24','2024-06-25 12:05:24'),('2b21f6bde0fd1067e1c49e49a5dc2e5a2ec55acf7ab26720dfac412774de4ce78e56607f2ada1698',1011,1,NULL,'[\"user-app\"]',0,'2023-02-24 20:49:33','2023-02-24 20:49:33','2024-02-24 17:49:33'),('2b2e6a4b9461c09df0bc6ebcd3d5494b1b58d31cf45d8c6c786bf6595f171373936a99ae618a8e28',728,1,NULL,'[\"user-app\"]',0,'2023-08-28 22:36:36','2023-08-28 22:36:36','2024-08-27 17:36:36'),('2b30bee634dc0be85ec73a6a6d4c7a0b79b2fd108f79d4e0bc00afbc3378dbfaab462d037d7426c3',2,1,NULL,'[\"user-app\"]',0,'2023-06-17 21:37:25','2023-06-17 21:37:25','2024-06-16 16:37:25'),('2b3773b3b58b9144998878fd60be7ee6712b00c4c2304752b366b86bb51362a6becb849a0884af22',1027,1,NULL,'[\"user-app\"]',0,'2023-02-21 23:11:06','2023-02-21 23:11:06','2024-02-21 20:11:06'),('2b3ced69c689668787f9a748e3009440d9829ea87382129d0217e70407b9e0c2bb64acebad112d67',2,1,NULL,'[\"user-app\"]',0,'2023-10-03 19:12:03','2023-10-03 19:12:03','2024-10-02 14:12:03'),('2b450136c1d39cb4ba94cc0918a5e4d6a758469ef2ee9284b572b89089b847614072f07685d80266',2,1,NULL,'[\"user-app\"]',0,'2023-08-02 14:12:23','2023-08-02 14:12:23','2024-08-01 09:12:23'),('2b4902a4f6b2a7e8e490527bff91bddb8a8728c6020f9faf474fa071a914b344eb4c07465c40adb9',1467,1,NULL,'[\"user-app\"]',0,'2023-07-06 22:43:41','2023-07-06 22:43:41','2024-07-05 17:43:41'),('2b52ee38e096cc121f54b45d778b9de633cd82d43e4bd59e4267d8bf6bf33ec09e3e2bdcb356faea',1563,1,NULL,'[\"user-app\"]',0,'2023-06-13 21:30:12','2023-06-13 21:30:12','2024-06-12 16:30:12'),('2b61b0b87d6a029b792f4e04a1824bd1999b6170142fda4610b32ae605bf1849a20c2886294e3415',1270,1,NULL,'[\"user-app\"]',0,'2023-04-21 03:50:03','2023-04-21 03:50:03','2024-04-19 23:50:03'),('2b6e7f3ede74896522a076f7d21706e8b6a73584b1b4e61c3d0980794e6f47c26f4e7abd0eb7e654',1682,1,NULL,'[\"user-app\"]',0,'2023-07-02 15:32:18','2023-07-02 15:32:18','2024-07-01 10:32:18'),('2b70c46c71693111cd77a7f7b7d001029dee24b0f23321a0aaf60368921cfe2748934fa71425c4af',479,1,NULL,'[\"user-app\"]',0,'2023-01-28 17:38:15','2023-01-28 17:38:15','2024-01-28 14:38:15'),('2bbbfa6af1ba16b1736bfffc453c68d9b323cfb79d949e9877af57d8edd703bc084e046a826742f4',967,1,NULL,'[\"user-app\"]',0,'2023-09-12 22:16:35','2023-09-12 22:16:35','2024-09-11 17:16:35'),('2bcb6d5381c1df431741d829056abf83dc07e9941bfd56def9dbf8fac8ebabd151f57bf9ee728e56',2044,1,NULL,'[\"user-app\"]',0,'2023-09-24 20:01:23','2023-09-24 20:01:23','2024-09-23 15:01:23'),('2bce6acd4bd8e08684096001d1ba4b85a1800009857767dc94511f004460dd8a3a28729f72eeefe9',1620,1,NULL,'[\"user-app\"]',0,'2023-07-11 23:21:09','2023-07-11 23:21:09','2024-07-10 18:21:09'),('2bf863060d4e8be73f1bbbd9dc87331ea8858562380d2ba4b16d66665408f93eb54b057484c7abe0',109,1,NULL,'[\"user-app\"]',0,'2023-01-26 13:30:17','2023-01-26 13:30:17','2024-01-26 10:30:17'),('2c1cbbe19565fddbfd62deb04047e9df8ffd8a91e865950025a8aae70f5c14e10aca71621c08aa4a',338,1,NULL,'[\"user-app\"]',0,'2023-01-31 17:29:26','2023-01-31 17:29:26','2024-01-31 14:29:26'),('2c28e8c167a86ca83931fdfa1a6a083f1c18e331ab84e344b1ab7d043d6b47a052524fc42d5f1189',2038,1,NULL,'[\"user-app\"]',0,'2023-09-23 23:30:34','2023-09-23 23:30:34','2024-09-22 18:30:34'),('2c3939d1f5c89e4dc1776b08ac6f8c7a3f33aff3d6196c47d2df56a426fc0b1eeecb93ed03a88d91',1291,1,NULL,'[\"user-app\"]',0,'2023-08-09 04:07:00','2023-08-09 04:07:00','2024-08-07 23:07:00'),('2c44f13f37bd397924c4bf062feea12dea73b96345b8669d559f06aca35a8e34c34865b484a97426',956,1,NULL,'[\"user-app\"]',0,'2023-02-20 12:57:00','2023-02-20 12:57:00','2024-02-20 09:57:00'),('2c48d1f138f4aa9df551dbf3f9f40880c0208a941a06942ebd54a308b7a87cd7987bc404f3695d24',1780,1,NULL,'[\"user-app\"]',0,'2023-07-18 19:31:16','2023-07-18 19:31:16','2024-07-17 14:31:16'),('2c4bccd84eb75997712b160e84bb2e957d1523d6a2700a13724abaf98f840e360c823e7eae2e8c04',1474,1,NULL,'[\"user-app\"]',0,'2023-05-17 21:04:12','2023-05-17 21:04:12','2024-05-16 16:04:12'),('2c5276fa74b83fe4ed57b8cbe8d7039df113bc9faaa276b23f32263242495f71d2f930f8f0452ff3',1443,1,NULL,'[\"user-app\"]',0,'2023-07-12 12:50:47','2023-07-12 12:50:47','2024-07-11 07:50:47'),('2c7198dfde8c99082591ab4efea0dc7be5a7d6b887dca4619e8218264c2b146e97f55fa2220ced6b',2,1,NULL,'[\"user-app\"]',0,'2023-09-05 03:45:45','2023-09-05 03:45:45','2024-09-03 22:45:45'),('2c892b961b08fda4dfb5deb7e5833bcc6efcd16fad1552e17770c71abcc6c273492cd21a86804b4e',1407,1,NULL,'[\"user-app\"]',0,'2023-05-17 15:10:01','2023-05-17 15:10:01','2024-05-16 11:10:01'),('2c8d01fe0cb56da708793a3bbbd80282dee44cdb32575baf58e1e55b86acab7203321efbf99a3977',2,1,NULL,'[\"user-app\"]',0,'2023-05-12 14:44:57','2023-05-12 14:44:57','2024-05-11 10:44:57'),('2c921f166ddd6254ebf375368e36b13541d572097073a59ec58e06352b8ee6cbe07e0ded1c686f85',2,1,NULL,'[\"user-app\"]',0,'2023-03-03 14:19:53','2023-03-03 14:19:53','2024-03-02 11:19:53'),('2c9f0ff422dcea5c744ac1dab9ccc1d74e3fedb986b6e7017cbb8736518e9a7375408323f8fc7137',902,1,NULL,'[\"user-app\"]',0,'2023-02-11 00:33:06','2023-02-11 00:33:06','2024-02-10 21:33:06'),('2ca738ea76103e16bb9898966eaba99a40cae9343a8802eb47194a9fc1052c2cd8c76486127560ac',1348,1,NULL,'[\"user-app\"]',0,'2023-04-30 16:16:11','2023-04-30 16:16:11','2024-04-29 12:16:11'),('2cab9b3f4f6d7316aecbaf9b7fa2a96b95cb77bdcb24fccb8bf38eef111c48951c5bad206fda2d54',1178,1,NULL,'[\"user-app\"]',0,'2023-03-22 11:58:17','2023-03-22 11:58:17','2024-03-21 08:58:17'),('2cb13b72a89f1f8af743c2f3e81c544ae294e575174a6450561c3bdec2363afeafacf0d50c2b07ec',1605,1,NULL,'[\"user-app\"]',0,'2023-08-19 20:04:52','2023-08-19 20:04:52','2024-08-18 15:04:52'),('2cf0d31d39f8cea1efd0c49f09c745663025a647ebd44d9c10223ad02a837c2d81cd1e509a82b14b',1374,1,NULL,'[\"user-app\"]',0,'2023-05-05 22:41:42','2023-05-05 22:41:42','2024-05-04 18:41:42'),('2cf11ad6979570694ecc43d26d7de94c9e1363d5537b9650234e11d1e182fbcbf56a06bd375c865e',1414,1,NULL,'[\"user-app\"]',0,'2023-07-28 01:39:52','2023-07-28 01:39:52','2024-07-26 20:39:52'),('2d30c545272ee4016fda479b6b644d303e893569d16e994df780888d635d838586a02b892c7a72f4',1324,1,NULL,'[\"user-app\"]',0,'2023-04-27 18:23:41','2023-04-27 18:23:41','2024-04-26 14:23:41'),('2d3113540e4f65c2c54144f6a177d5314e50fe0f32fee2cb694ff64fc15ddfac0f5b4b4c52a09c4f',388,1,NULL,'[\"user-app\"]',0,'2023-02-02 23:01:39','2023-02-02 23:01:39','2024-02-02 20:01:39'),('2d45e283bd9e43038788b330505f82fcfffd7edbe2f90200d0cca56a8f05ee69c5c600c73b03ca3e',1003,1,NULL,'[\"user-app\"]',0,'2023-02-20 20:53:04','2023-02-20 20:53:04','2024-02-20 17:53:04'),('2d4d93a1fdc6b5e6c12030ba99a9ad0c472076a7afa2201b6722e3ffe0f4bd5d2f6ed6409f1d5be6',2,1,NULL,'[\"user-app\"]',0,'2023-08-29 04:54:20','2023-08-29 04:54:20','2024-08-27 23:54:20'),('2d6efd0dfcac47fbc1f20051c3f19e3c522715fb2f4bb619e9ba2f864ae3a183375b1e39ab6eeff1',2,1,NULL,'[\"user-app\"]',0,'2023-04-22 01:59:40','2023-04-22 01:59:40','2024-04-20 21:59:40'),('2d747a688c2cdd59621715a8d490f4fcdfd0b474eec9be82835a56490ff038184017d8bbf4dc2c5d',2,1,NULL,'[\"user-app\"]',0,'2023-09-11 22:54:22','2023-09-11 22:54:22','2024-09-10 17:54:22'),('2d765f0fc010833f04dee403d343d54839274dc6a22c5a21d8da5a576097f5a81fca8639260534b4',2,1,NULL,'[\"user-app\"]',0,'2023-10-09 00:01:54','2023-10-09 00:01:54','2024-10-07 19:01:54'),('2d7a05bb56f692ca7363ff65ae527ef67375c39e8b671c5c5393f2456d79dcb80bdd6ea5669e3502',1583,1,NULL,'[\"user-app\"]',0,'2023-06-17 21:18:30','2023-06-17 21:18:30','2024-06-16 16:18:30'),('2d8903ee1002587264a1adeaa42462e234e1afb18bd927216250c5aaf9cbe90cdc7fc7032ec5cb0f',1018,1,NULL,'[\"user-app\"]',0,'2023-07-01 21:39:01','2023-07-01 21:39:01','2024-06-30 16:39:01'),('2d92e77422c0750189e82570bcb1ff8301c9470d008c1735ab2bc370632bb0572f7bf04e93b119dc',2,1,NULL,'[\"user-app\"]',0,'2023-09-07 15:12:06','2023-09-07 15:12:06','2024-09-06 10:12:06'),('2d9bda1cb63ccb011f5f40f96e0bb50264dbe9ec1f2f89b669fb20e30c9491915c354862156a6948',1032,1,NULL,'[\"user-app\"]',0,'2023-02-22 17:13:11','2023-02-22 17:13:11','2024-02-22 14:13:11'),('2daba03204b80a4b48b50a5989121c431c8259068f99cda813c853ad7847c3af0591b2d841d9ff97',281,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:03:50','2023-01-25 13:03:50','2024-01-25 10:03:50'),('2dae103ae079d8c07a7eebba446acdaf0ff62deb37b4a210b7eacb5b251a08a3e4d77841cbbd8927',1018,1,NULL,'[\"user-app\"]',0,'2023-02-23 15:43:44','2023-02-23 15:43:44','2024-02-23 12:43:44'),('2db5459e3215c708976a8f342de12a0f54254591ab50bb1a0ca08a1e7114f483a3eacc3b9d2aac84',1622,1,NULL,'[\"user-app\"]',0,'2023-06-22 19:37:30','2023-06-22 19:37:30','2024-06-21 14:37:30'),('2db760f26edde6715d654098096db2df17833c3add56eaa30fef247996445df0f39a14dac7e75f93',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 20:08:15','2023-05-01 20:08:15','2024-04-30 16:08:15'),('2db9a729de8f045a8e55125cacaaecb9a2adcecfdfc703bc370f8572e519d909c0c96ba46ff0f46c',540,1,NULL,'[\"user-app\"]',0,'2023-01-27 13:19:01','2023-01-27 13:19:01','2024-01-27 10:19:01'),('2dbf3578ff6caa396c8d3f22434fcd5255b419eec4cce2aaadd8f79f42664e260f66154cc86ec706',1052,1,NULL,'[\"user-app\"]',0,'2023-06-24 12:45:57','2023-06-24 12:45:57','2024-06-23 07:45:57'),('2dc456559294fb1fab28bac21907c2d1d5bd6e798dffca29150f2b2a34ca6551d0983434c90d30a7',2,1,NULL,'[\"user-app\"]',0,'2023-09-30 14:49:07','2023-09-30 14:49:07','2024-09-29 09:49:07'),('2dce6713419acbb07870c0f9c3171c7adb3a3568dacf925d99c2c17c29748092e8384ed6ba649d66',552,1,NULL,'[\"user-app\"]',0,'2023-01-26 00:29:47','2023-01-26 00:29:47','2024-01-25 21:29:47'),('2dd18eb2b08dc971972c10edfaf9c0f19d142d72bb38ce8fa41bf9f8439d93203ec250006c712060',1758,1,NULL,'[\"user-app\"]',0,'2023-07-14 14:44:57','2023-07-14 14:44:57','2024-07-13 09:44:57'),('2de3d30a9da1d20fa25914a962f8c243ee40a87899bb42a95ddf40a4af5fedba673ed3cf187c4a90',734,1,NULL,'[\"user-app\"]',0,'2023-09-10 23:17:42','2023-09-10 23:17:42','2024-09-09 18:17:42'),('2dece457499edfac97442d2b7b21b71fe5487fdc20c7683c70dc5e2da13c4f5069ab91ae9ab54876',8,1,NULL,'[\"user-app\"]',0,'2023-01-31 17:20:42','2023-01-31 17:20:42','2024-01-31 14:20:42'),('2def9efb82d621d7d7d9a7b514828d60d1de6d8f2812cf37a6bcae4e9dc0dbe6c4f6c8fd45bf93c4',163,1,NULL,'[\"user-app\"]',0,'2023-01-28 15:06:32','2023-01-28 15:06:32','2024-01-28 12:06:32'),('2e0b19bab299fe312548d3ee6b4a331db9bf61da5c452fe6d9100688939f383a414f3197877f7cf4',2,1,NULL,'[\"user-app\"]',0,'2023-05-24 01:00:41','2023-05-24 01:00:41','2024-05-22 20:00:41'),('2e1c163df10acadbf7b12a3f13033597d965a6ab32a6a1447dc582ec0cf6a47abb959c4171c176d0',210,1,NULL,'[\"user-app\"]',0,'2023-08-02 22:21:19','2023-08-02 22:21:19','2024-08-01 17:21:19'),('2e2d908b8a71974547c700384d52f269887e9b3d3bac1aacf5cd0f0270ca7ffae0db90b9a570f394',1232,1,NULL,'[\"user-app\"]',0,'2023-04-04 16:02:42','2023-04-04 16:02:42','2024-04-03 12:02:42'),('2e333036a9e5a5baa8d3c478571cb8348b5a06e0a0e209c68473de4d786ffded2071e54c8e916fbb',2,1,NULL,'[\"user-app\"]',0,'2023-07-22 15:53:37','2023-07-22 15:53:37','2024-07-21 10:53:37'),('2e726d9808f0b29f412b6434fb1990661aa88e6d82b9078d373550053fc53f92619b228247b0061f',2,1,NULL,'[\"user-app\"]',0,'2023-03-28 22:26:42','2023-03-28 22:26:42','2024-03-27 19:26:42'),('2e809092047d8477fc8029912fb0ab88901003b5139c9e6a51102bc7c9d283ca3d2987a83bdb36be',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:17:41','2023-01-25 15:17:41','2024-01-25 12:17:41'),('2e8393efd45a0152f16941c540e65639edcc48b325d9665f9e9b41325ace638e07bcacd4a2afebf9',2,1,NULL,'[\"user-app\"]',0,'2023-07-06 04:24:47','2023-07-06 04:24:47','2024-07-04 23:24:47'),('2e907accb67ef7510960d83518cfb1d864917da26fd18cffa66b349473bfe4cdd1783412a0fe0360',2,1,NULL,'[\"user-app\"]',0,'2023-05-29 21:50:42','2023-05-29 21:50:42','2024-05-28 16:50:42'),('2e95f7a24ecee9f9e089ec3f62bed8879931a5c50b19db3b0f10337f2a8580a49898a3b482237f09',1161,1,NULL,'[\"user-app\"]',0,'2023-03-16 02:15:30','2023-03-16 02:15:30','2024-03-14 23:15:30'),('2eb4382d16c715d16c804b2f3beda41ede85872e50e4092d111869ca07f4fdf2f7e8f1efcd55a183',1095,1,NULL,'[\"user-app\"]',0,'2023-02-28 16:04:50','2023-02-28 16:04:50','2024-02-28 13:04:50'),('2eb5e8b189a52136db0a26983ad125e39338227b1bb978c96e71d140e16c625b9ef33d3b98699f05',2,1,NULL,'[\"user-app\"]',0,'2023-07-05 16:52:37','2023-07-05 16:52:37','2024-07-04 11:52:37'),('2eb9a72625ae31798ccf3977cc2862f3ee51b00cf4c9cfe78531286ec499191973f254381820a203',2,1,NULL,'[\"user-app\"]',0,'2023-05-17 21:03:13','2023-05-17 21:03:13','2024-05-16 16:03:13'),('2ecd6eef7247789f4426f47d59a5e80c258cd88ea62544f033c2a09098022bf04c8eb76798030ad3',8,1,NULL,'[\"user-app\"]',0,'2023-01-31 18:12:01','2023-01-31 18:12:01','2024-01-31 15:12:01'),('2f01fd873fd3a01b913ce0f9e9f5951a5e64b525166da37021d04451a766b99b2636c719475729d4',972,1,NULL,'[\"user-app\"]',0,'2023-02-22 13:40:22','2023-02-22 13:40:22','2024-02-22 10:40:22'),('2f13b1bd4fae735537fd3b6cbdc7cff8edbefe752edbc1ec21ff232b55260fb050f99db2605d3cfd',1259,1,NULL,'[\"user-app\"]',0,'2023-07-15 14:12:40','2023-07-15 14:12:40','2024-07-14 09:12:40'),('2f1aaa74f6e947359bdbb52bb17eb0cdc40a63780255cb344e2b2ecf43c5b92831094bf2481916e9',356,1,NULL,'[\"user-app\"]',0,'2023-06-07 00:38:58','2023-06-07 00:38:58','2024-06-05 19:38:58'),('2f48dac5dcf4bb0b56db11ba60df7f43127b704b794fa6d2ca3e6e78baee3923c7bf7b4c6a466cac',1001,1,NULL,'[\"user-app\"]',0,'2023-09-21 21:24:03','2023-09-21 21:24:03','2024-09-20 16:24:03'),('2f539ec7276b9de8dfaf57782817f64757cc87e64f4f20a7d1f34f95f726ab82cccdb309e42a9ebb',1570,1,NULL,'[\"user-app\"]',0,'2023-06-15 17:12:07','2023-06-15 17:12:07','2024-06-14 12:12:07'),('2f674db9cfe17abc97c7617e544486a0782c6c76ac90b5cf27a34bfbc75d29af50f71d0ee137d90e',292,1,NULL,'[\"user-app\"]',0,'2023-01-28 11:00:33','2023-01-28 11:00:33','2024-01-28 08:00:33'),('2f83bd7b32f7cc765a20e2977e1fcab8964231e769d9496d80171205ffa1869d35b43bad9444506c',1972,1,NULL,'[\"user-app\"]',0,'2023-09-11 19:52:41','2023-09-11 19:52:41','2024-09-10 14:52:41'),('2facd5a6b9a7f53eac8e219eb7162a074e5cdb6f56f11fa161411614ff8c2fb0f989bb571ebc9303',2,1,NULL,'[\"user-app\"]',0,'2023-09-19 16:36:54','2023-09-19 16:36:54','2024-09-18 11:36:54'),('2fba6f5a55f2fdee2b4268ce45fd85e4e0cb4df6a09edcb54d88ed33d6f42e5264f14de8b1829659',2,1,NULL,'[\"user-app\"]',0,'2023-07-10 15:06:00','2023-07-10 15:06:00','2024-07-09 10:05:59'),('2fec41f47a210c5b6530e3775e707705a6844bbceb20b5d01d86eb091774cce5f79baa4548103fdd',1625,1,NULL,'[\"user-app\"]',0,'2023-06-23 03:44:10','2023-06-23 03:44:10','2024-06-21 22:44:10'),('2ffc32bb2042e727269843c4100b7593bacd46ea4b7b1c2867aca8b5257fd38138644beb9565685a',110,1,NULL,'[\"user-app\"]',0,'2023-01-26 00:16:31','2023-01-26 00:16:31','2024-01-25 21:16:31'),('2ffc9f67d361fa8f79b0f6ec957c4b33725fd7bfdcfd7bcf3eb11126f314bddd35dd837c4b5fb065',1554,1,NULL,'[\"user-app\"]',0,'2023-06-12 01:33:44','2023-06-12 01:33:44','2024-06-10 20:33:44'),('302ec6f00b51187e529f78c52c95bab3dcd1c38baec3fc269e8994e145a955f3ab0168c5ae1ad425',788,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:51:35','2023-01-28 19:51:35','2024-01-28 16:51:34'),('30509ff4a5bd143ee3876ef737c994d47efd655c4d5e73f7fdafc21627c42f987e06f1c2d7c2ffc4',746,1,NULL,'[\"user-app\"]',0,'2023-01-26 20:58:37','2023-01-26 20:58:37','2024-01-26 17:58:37'),('30570668fd189d1e1b55884269917c841979b3fccd264ff551928bab9c328f208bd00b122ea9e68c',1913,1,NULL,'[\"user-app\"]',0,'2023-08-24 21:14:49','2023-08-24 21:14:49','2024-08-23 16:14:49'),('305dc98f5a1434e5c1df96a5ffa379c1faa20b71fa181e8380413e39030a0495983e12e27e5eb4f2',2,1,NULL,'[\"user-app\"]',0,'2023-09-12 18:05:06','2023-09-12 18:05:06','2024-09-11 13:05:06'),('306d272d1bf7b13a085949eca1b21ce862bb485d0645bd0aa86ab015ec574eb7fc2e3531f63d5a80',926,1,NULL,'[\"user-app\"]',0,'2023-02-15 00:13:53','2023-02-15 00:13:53','2024-02-14 21:13:53'),('307e43786db9a0b3d3e9f3f1a06e75070e22f3b097b360ecb192295b808e855ae02cf0e73d470e13',1072,1,NULL,'[\"user-app\"]',0,'2023-02-24 20:16:55','2023-02-24 20:16:55','2024-02-24 17:16:55'),('308ae0c92e1e75278a9eab2702ed0bb35a035877b3b0e22d475eb595e0db1794b8415c3dfb3aceea',2,1,NULL,'[\"user-app\"]',0,'2023-09-24 19:39:29','2023-09-24 19:39:29','2024-09-23 14:39:29'),('30914a4d0f6d61cdfab99008744edada19c576333a3fc8516336d6768c9e3c3737dd34d74065019e',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 19:11:44','2023-10-05 19:11:44','2024-10-04 14:11:44'),('309dfec22dc7d89c87000c713db5d9350abf582e5258127fd0a853f0497cb2e70a4e4a6ead58e8b3',1510,1,NULL,'[\"user-app\"]',0,'2023-05-29 01:47:11','2023-05-29 01:47:11','2024-05-27 20:47:11'),('30a0380429606a5b8c622b9a80440138e54a13cb7adbd522f5a1be2b1713ec04f5976c3ee12b819d',629,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:58:18','2023-01-25 02:58:18','2024-01-24 23:58:18'),('30a130792b24d90ab1d1540d779221d3182b5da18b1a84f0c876ed2c426fb55ad2d03cd72779c700',1005,1,NULL,'[\"user-app\"]',0,'2023-02-20 21:50:13','2023-02-20 21:50:13','2024-02-20 18:50:13'),('30bfeeca0de4c609f702c2838fd0de75ac11727dcbe73fc323fa2ce1ac8add1698c96da29ed2ae30',1568,1,NULL,'[\"user-app\"]',0,'2023-06-15 03:24:05','2023-06-15 03:24:05','2024-06-13 22:24:05'),('30c25d10b23e6efbae5833797c2fae8b58f4f4e60e9182b2b26ac497952ef96e1e43a9d3e96545a4',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 19:13:06','2023-10-07 19:13:06','2024-10-06 14:13:06'),('30c3b46cfb3d3774365960bd46dbe15dd45140c59303f0d9a37827509642a5ea9e857d215fa410f5',2,1,NULL,'[\"user-app\"]',0,'2023-08-07 12:46:08','2023-08-07 12:46:08','2024-08-06 07:46:08'),('30c5ce6c21aea14cdb1f9896017cc5eb6f1643e2fb0db91a2c9335dd119e188945d8eec993664ae2',2,1,NULL,'[\"user-app\"]',0,'2023-06-24 22:08:44','2023-06-24 22:08:44','2024-06-23 17:08:44'),('30d2ec9982b18917649c93787631ee355b32ff3d63bdc2c555549bc14d454bd5d42a85026f0f65b0',1422,1,NULL,'[\"user-app\"]',0,'2023-05-16 19:20:23','2023-05-16 19:20:23','2024-05-15 15:20:23'),('30d4b851ccbb463454138fb50329cedab213af5dab1e1e8cb3f09940190e6d076ae59c0963813b87',2066,1,NULL,'[\"user-app\"]',0,'2023-09-28 02:42:57','2023-09-28 02:42:57','2024-09-26 21:42:57'),('30dd038d6b7e8b47277b638644f29a0cff89fc85798c1266e8877f4e65c16a6c453934c4d76d6cf4',344,1,NULL,'[\"user-app\"]',0,'2023-03-08 15:27:34','2023-03-08 15:27:34','2024-03-07 12:27:34'),('30fcc97e4a0d23337e5166f4d7eb597706f81bc34e2edc28d9ec35ea95077268470d635c04beaf04',692,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:40:11','2023-01-25 17:40:11','2024-01-25 14:40:11'),('3104801de0dcc12db0f99cde4895113616f90f69b707a884c09378e68efa5290e4c9edb87982b60e',702,1,NULL,'[\"user-app\"]',0,'2023-01-30 21:20:04','2023-01-30 21:20:04','2024-01-30 18:20:04'),('310d2fb9978c1168ee1ed8b9e4892f7d7785f4f833b9bda9df85c904710d61e56289745b493610ef',1729,1,NULL,'[\"user-app\"]',0,'2023-07-09 17:34:26','2023-07-09 17:34:26','2024-07-08 12:34:26'),('3111764f33a3cccb3fa83ba8a14b37a0afdb808c4f0e045fe725c8d9bfe5ad7de7e750c02f9d30dc',2,1,NULL,'[\"user-app\"]',0,'2023-08-01 00:46:24','2023-08-01 00:46:24','2024-07-31 19:46:24'),('3124774a4b7f2744db8dd791f8f8c0f892889b2c0babdc756ca19c8bee1571c0ce6dfdfdaf0d33d8',865,1,NULL,'[\"user-app\"]',0,'2023-02-05 23:27:00','2023-02-05 23:27:00','2024-02-05 20:27:00'),('3140aae83a9e7b54643049d8e42507672f301eea31435ee23eb6fccbec4f9e3246c3959a5d408d49',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 21:48:35','2023-09-25 21:48:35','2024-09-24 16:48:35'),('3170d9710f2d1de9cdeb112ff49678ca38ff14197799f0c35d784c0b14442cbe4fbfd84c9815be9c',800,1,NULL,'[\"user-app\"]',0,'2023-01-29 20:19:58','2023-01-29 20:19:58','2024-01-29 17:19:58'),('317b77af7c35f4b6e353a30af3147f595ac2ec3840165a4c25ff5c20921071c6e37f655a59dfb76d',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:00:22','2023-01-25 03:00:22','2024-01-25 00:00:22'),('318522281968ddf3f65b69cb47c51f2f56d173dba48fe002245ac034c8896a0b68a9c8ce32bc9221',1835,1,NULL,'[\"user-app\"]',0,'2023-10-07 14:18:33','2023-10-07 14:18:33','2024-10-06 09:18:33'),('319241a4b73062cd485ceb832c3400394a3bbc56d42f4adb8278bba99d28cc6cf864252fe5ed1c8e',758,1,NULL,'[\"user-app\"]',0,'2023-04-23 07:41:06','2023-04-23 07:41:06','2024-04-22 03:41:06'),('31947d227a2a91121c29870dc5cf97dad1eaa71ac0615d36fddc5f338e6727f7148f9cf6d3e240a9',1030,1,NULL,'[\"user-app\"]',0,'2023-02-22 10:30:27','2023-02-22 10:30:27','2024-02-22 07:30:27'),('319588f2eaeefd703834df9547ae28714baa7fb1995937e1fee961f2e9cfe4a1e765a62c6311dac4',2114,1,NULL,'[\"user-app\"]',0,'2023-10-07 17:37:21','2023-10-07 17:37:21','2024-10-06 12:37:21'),('319a4443c3d9c1939f327598b633ae37ee614e104affe2b6c941be89cca44af5cef152a5d04690b8',134,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:49:14','2023-01-25 12:49:14','2024-01-25 09:49:14'),('31edc0a2745ba9b1c01a98c3d461141a8527afdf3a1bbc03ba59d0a99872088946eaa5f99b5d8c9c',363,1,NULL,'[\"user-app\"]',0,'2023-02-25 14:50:06','2023-02-25 14:50:06','2024-02-25 11:50:06'),('31f099e78eeb6ab865c731c503b222275867d4e115c0b4481b17b096d3abfed33a41835aad41f875',2,1,NULL,'[\"user-app\"]',0,'2023-09-14 04:25:26','2023-09-14 04:25:26','2024-09-12 23:25:26'),('31fbb9c1dc1c67d242bd6d631172475b5ac87ffefecd9a230f7e26086f1c9913ac6d87b966d39627',13,1,NULL,'[\"user-app\"]',0,'2023-09-08 20:46:25','2023-09-08 20:46:25','2024-09-07 15:46:25'),('3200c21ee15844fc2a89d260566395a73eb867c7616da360b9003838eb6187612fb98bef631695f1',2,1,NULL,'[\"user-app\"]',0,'2023-08-03 23:23:02','2023-08-03 23:23:02','2024-08-02 18:23:02'),('322b958f8b216016b117270392c19ef7e0d3d2061d84049092d1fd6a5ed800245c51122d84e5cf63',1778,1,NULL,'[\"user-app\"]',0,'2023-07-19 16:18:57','2023-07-19 16:18:57','2024-07-18 11:18:57'),('322bda1369540a7c28a331c716c574cb7d8877e2fe21bbcb117a03532c47cfee4340ffcbc45d3e85',562,1,NULL,'[\"user-app\"]',0,'2023-01-28 22:34:19','2023-01-28 22:34:19','2024-01-28 19:34:19'),('3247a215add9071fd455ebf43818866f70d64a5b391d01159dbff1481f1b92bf1a99d1cacbac9cf9',76,1,NULL,'[\"user-app\"]',0,'2023-01-26 17:14:21','2023-01-26 17:14:21','2024-01-26 14:14:21'),('3248ad50877561fbd93447642359dc5adc685707db77b720827326a90070be4a58d1ce076471f0d5',1922,1,NULL,'[\"user-app\"]',0,'2023-08-27 15:34:43','2023-08-27 15:34:43','2024-08-26 10:34:43'),('324dc39b835c6d1774b11bf73f024967bf3592c68594339407d95dbad30b016baeac8d7cb674059e',2,1,NULL,'[\"user-app\"]',0,'2023-02-27 15:56:40','2023-02-27 15:56:40','2024-02-27 12:56:40'),('3252576442a7a7cd2f35e6f7e8d7c8a6efde6c3ca12b28ea8e8ddea41469922cd33d1b379d04029c',2,1,NULL,'[\"user-app\"]',0,'2023-05-21 17:49:14','2023-05-21 17:49:14','2024-05-20 12:49:14'),('327335774f968ce4b74c19a11065f8d6b27b2e0d29753c01f079c329258bf2e4d398f44144566b00',1131,1,NULL,'[\"user-app\"]',0,'2023-09-20 01:51:30','2023-09-20 01:51:30','2024-09-18 20:51:30'),('328026b86f7c74bfc8fdbc7d5d721a0512b68034bea8a0a67c40fdff82be22386e9b323956efc0ab',415,1,NULL,'[\"user-app\"]',0,'2023-08-17 04:34:43','2023-08-17 04:34:43','2024-08-15 23:34:43'),('3289e67f071163a27c3e93a3889e2d72b383c1ecce0f828ed1f5d59ba1ee73acf81951cfe1a67117',207,1,NULL,'[\"user-app\"]',0,'2023-02-20 15:22:20','2023-02-20 15:22:20','2024-02-20 12:22:20'),('3291abc10cd5146f069d1d0bd8af161931b5892ec6b69fe870a5a15a9fbc050217d5856415151a89',566,1,NULL,'[\"user-app\"]',0,'2023-01-25 08:27:10','2023-01-25 08:27:10','2024-01-25 05:27:10'),('32959e1168eaa166b15d10dd552d2101852ab0d7aa24797a5fba3eb859bd9a65347f23bc2e0fba2f',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 21:06:17','2023-10-05 21:06:17','2024-10-04 16:06:17'),('32a9dc198bdb5e129a0d20bfd725adfd1ac1231a2968bd940ab33487e8146ad2771144e9a8f32725',2,1,NULL,'[\"user-app\"]',0,'2023-06-10 03:27:24','2023-06-10 03:27:24','2024-06-08 22:27:24'),('32b07101d7689e75ef5a752ad0a0f319c06353535a5086c606ab248f7b05df23741b86c37dee2ae7',1694,1,NULL,'[\"user-app\"]',0,'2023-07-04 01:01:55','2023-07-04 01:01:55','2024-07-02 20:01:55'),('32f68937bdd7a8296a6fe55b7bc175d40a4024dc6887098f3dd1b7ef71e44674167da617c499e013',363,1,NULL,'[\"user-app\"]',0,'2023-05-09 21:43:31','2023-05-09 21:43:31','2024-05-08 17:43:31'),('3301a5c51e095f0f50733ccf321fed58776f1870cd7184a58310850561a808bc2e03007ce4cddc32',1045,1,NULL,'[\"user-app\"]',0,'2023-09-26 23:28:40','2023-09-26 23:28:40','2024-09-25 18:28:40'),('330a773cb5a43679abdfcec90fdd66c0aa4308a14a48f2df951cc9c7e92492530f08b19af628523b',1083,1,NULL,'[\"user-app\"]',0,'2023-09-21 16:52:29','2023-09-21 16:52:29','2024-09-20 11:52:29'),('330a9241d5623e542014d3b87b9840ca3d340811f80600e873c9ce68a63ae6704276c7e34f2a3537',2,1,NULL,'[\"user-app\"]',0,'2023-09-27 15:42:26','2023-09-27 15:42:26','2024-09-26 10:42:26'),('330ba159a867acf0cc111da4e0d443d1388c5ac30eb2c03e69ec29df2bb3e59671ab584589d69646',1404,1,NULL,'[\"user-app\"]',0,'2023-05-29 01:31:25','2023-05-29 01:31:25','2024-05-27 20:31:25'),('33215e3055bda5924145a6ffb45e3658813fd7bce0ec2f65838ad4933c683414f23c9e599da1915c',1651,1,NULL,'[\"user-app\"]',0,'2023-06-27 20:28:15','2023-06-27 20:28:15','2024-06-26 15:28:15'),('332aa6a60b8761296b309a3c01914e952373862002227f8cfb80dfd1ae7b91708f72e02a3d2c0280',1201,1,NULL,'[\"user-app\"]',0,'2023-03-27 08:32:33','2023-03-27 08:32:33','2024-03-26 05:32:33'),('333f04aaefa4cc302bf2ad97c94b1f971af34a1cf7a3250616440269b92b8e732cb2de7a1438ba2e',2025,1,NULL,'[\"user-app\"]',0,'2023-09-21 20:43:31','2023-09-21 20:43:31','2024-09-20 15:43:31'),('3348f0eaeb0772bc19d4317aeb07b20092004846443e84c668224a43fe92bc94fc1e486e4bfccce5',2,1,NULL,'[\"user-app\"]',0,'2023-10-03 16:17:19','2023-10-03 16:17:19','2024-10-02 11:17:19'),('3349a68d5a1457e44dd303b1375c0d4cec3f706a3c4c21487972e30a19f22ec783bc7f0013cec3f7',2,1,NULL,'[\"user-app\"]',0,'2023-08-18 12:28:01','2023-08-18 12:28:01','2024-08-17 07:28:01'),('3368536c1b0381caaa560595272161c1536987303639bc15dcd155e56ca2ea89cad016edaac2103e',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 17:37:22','2023-09-25 17:37:22','2024-09-24 12:37:22'),('33689154c741d58606da8cb348c131010981bf44637535bbc626b357ad3485643b2025fb705f11e8',2,1,NULL,'[\"user-app\"]',0,'2023-04-23 17:27:03','2023-04-23 17:27:03','2024-04-22 13:27:03'),('336e5e69e8ca41075a4eeb59a3e9fd1e70077142e12cd7f8a82d28652e297e2ae469040941a71961',1739,1,NULL,'[\"user-app\"]',0,'2023-07-11 19:35:08','2023-07-11 19:35:08','2024-07-10 14:35:08'),('337c78de12453008d7583d0c72eaf8c727da3700e976fd78fbee348a7ebca5e2498630a8bf231519',183,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:12:57','2023-01-25 13:12:57','2024-01-25 10:12:57'),('3395e6ba225d17e8df2ba8c6ace275e6a84bf58647bf41c1ea31becf6ea8e6e027ac193cf31eda7a',267,1,NULL,'[\"user-app\"]',0,'2023-02-09 15:33:24','2023-02-09 15:33:24','2024-02-09 12:33:24'),('33a98c7d9c9e8def82165091ed93b743eba565690384ad547103e85968ed5d9bcd3d5a3b9bf2934d',1624,1,NULL,'[\"user-app\"]',0,'2023-06-23 01:08:41','2023-06-23 01:08:41','2024-06-21 20:08:41'),('33bd6a19dab5045388479cb8c62785685f8a2be708bddc389e5dc6657d1c1f30c184ef09e28af68d',2,1,NULL,'[\"user-app\"]',0,'2023-09-17 14:36:16','2023-09-17 14:36:16','2024-09-16 09:36:16'),('33d631034b089e4f3b44f1df3bfc8b72224e242b179b5f0f2433fbf6db1868e744f4e965398a0e6d',1867,1,NULL,'[\"user-app\"]',0,'2023-08-07 20:08:02','2023-08-07 20:08:02','2024-08-06 15:08:02'),('34092b2c587d836271583b760cae40b49cee87e32d0e3af0ee0f3ba7bddb0199572a32a35fb236e7',1442,1,NULL,'[\"user-app\"]',0,'2023-05-13 01:24:28','2023-05-13 01:24:28','2024-05-11 21:24:28'),('340c82424530c0d7e9223babbe81e8cc842475ff8f0e72c0c1a6a00b9e15d909f6f208f6fb7dd06d',574,1,NULL,'[\"user-app\"]',0,'2023-07-05 23:18:21','2023-07-05 23:18:21','2024-07-04 18:18:21'),('3415c323e900712b33c561c015d0716fd939d44d9e18f84b205c2cdd547007c40ec64582d7c4c388',1721,1,NULL,'[\"user-app\"]',0,'2023-09-25 12:27:13','2023-09-25 12:27:13','2024-09-24 07:27:13'),('3457d481731ef029a8ca480e8dd4848eeafca3e6627310936f3550b636f1bb190cfdbe05b11d3496',2040,1,NULL,'[\"user-app\"]',0,'2023-09-24 01:52:53','2023-09-24 01:52:53','2024-09-22 20:52:53'),('345bed25f07e3fac0304c9ebf7bf765fc8efd56ecf4b4e8cfb83dd6a7f045d2510fcefce947d5644',1779,1,NULL,'[\"user-app\"]',0,'2023-07-18 04:11:46','2023-07-18 04:11:46','2024-07-16 23:11:46'),('346f093659718cc0d86c9f580b2d06d63713efdfc62ad0ac28d07ccf8978c061737d48c147ab55e9',861,1,NULL,'[\"user-app\"]',0,'2023-02-05 03:29:50','2023-02-05 03:29:50','2024-02-05 00:29:50'),('349757ec579f1531e7cc3e6455081d8122d4da8c8b009fe99d9ca1db73541e35ccc70896f7c5da55',1408,1,NULL,'[\"user-app\"]',0,'2023-05-10 01:31:14','2023-05-10 01:31:14','2024-05-08 21:31:14'),('3497c7461c75414107336616d5fde9ca0b531763d606299442daf963fc38841b07c6061593d745b7',1042,1,NULL,'[\"user-app\"]',0,'2023-02-22 20:01:34','2023-02-22 20:01:34','2024-02-22 17:01:34'),('3499c9b7630391b7e4fdd226b46b1aba438e87c7517ddf1852b9e828fa7a6788a176754fe1c731f6',2,1,NULL,'[\"user-app\"]',0,'2023-09-29 19:10:50','2023-09-29 19:10:50','2024-09-28 14:10:50'),('349d668557e2b048b2232e254accb784164efb0ccdcd3bc83dbf97d9d8f22a3a115d66abc49f01eb',2,1,NULL,'[\"user-app\"]',0,'2023-06-06 21:15:08','2023-06-06 21:15:08','2024-06-05 16:15:08'),('34b0bf92747af64db7ff6d7db3e64fcd12f0876f331aadfe1951a6a1bcef2af365591b7ba45b6c2a',35,1,NULL,'[\"user-app\"]',0,'2023-01-27 21:48:31','2023-01-27 21:48:31','2024-01-27 18:48:31'),('34c85b14cd7dbc4c0355fef9d64fa6a3f01362515d28b5a9bdf0014ce27807a5469e0f7168458918',1304,1,NULL,'[\"user-app\"]',0,'2023-04-23 18:54:02','2023-04-23 18:54:02','2024-04-22 14:54:02'),('34e8acc5bbe05d1630aec447b2201f8ab2911fbfc660a5beca1679c1962540bbb508a6f1eb972823',577,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:46:15','2023-01-25 11:46:15','2024-01-25 08:46:15'),('34eb929d21b011ae6554c571f8cb264c2e38976eab4416cf795db578577f05376f8484543b7de859',1261,1,NULL,'[\"user-app\"]',0,'2023-04-16 01:16:25','2023-04-16 01:16:25','2024-04-14 21:16:25'),('34f4be7a0751c601be933a989a3794c7c61463b82246174784a4ee2ce97e66948cc547824303bf0b',5,1,NULL,'[\"user-app\"]',0,'2023-02-10 23:09:16','2023-02-10 23:09:16','2024-02-10 20:09:16'),('34f88aea5c64da0ad662dae30c0e0d37c22bb7b713c5991454144057c9f3e09503c90d362ac86508',661,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:40:03','2023-01-25 13:40:03','2024-01-25 10:40:03'),('34fccff6312a095823ec18b5d2f8bd52110bd5451585dcc0cd8f51f737cb703cea060603ce9b887a',667,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:53:05','2023-01-25 14:53:05','2024-01-25 11:53:05'),('350143eb2b056c8b6d4ef43d7bdfd83983fdf3db11e66f6a277728523600ed7c393f3da77f6685da',1042,1,NULL,'[\"user-app\"]',0,'2023-03-17 18:27:56','2023-03-17 18:27:56','2024-03-16 15:27:56'),('3502bc84b3d2de424e82ae7095c14d26690993ec0365928a26025263912570e315d3717bb9c316f5',1487,1,NULL,'[\"user-app\"]',0,'2023-06-06 18:54:36','2023-06-06 18:54:36','2024-06-05 13:54:36'),('35121ad343e69923c9fa6526f596e49bc3697e310e53dacb4bef4c7722807cadac72d9c42ef0fa67',939,1,NULL,'[\"user-app\"]',0,'2023-02-16 10:24:24','2023-02-16 10:24:24','2024-02-16 07:24:24'),('351e34c4327d10319fe577bf65224b7256655f986c5cbfa3248a4c1f650d68f0e4d83a9611ba7083',892,1,NULL,'[\"user-app\"]',0,'2023-02-09 03:05:00','2023-02-09 03:05:00','2024-02-09 00:05:00'),('3520ce6b61490e2c7c83be3f33927911a4bc5aa5d2f26cbdab96c1d49923686ddf7909c453529f81',846,1,NULL,'[\"user-app\"]',0,'2023-02-02 17:25:37','2023-02-02 17:25:37','2024-02-02 14:25:37'),('3527449d64b4da77491f2f2327a89b7c22deb9029a7af9e0048159dbfa8acdaa5c50740dc6fe9372',1003,1,NULL,'[\"user-app\"]',0,'2023-03-31 21:07:07','2023-03-31 21:07:07','2024-03-30 18:07:07'),('3535edf74a13e9bf299fcee639f8f5f738786b788ad57a2b2590d4f0ae828c0185f51394967970f9',1124,1,NULL,'[\"user-app\"]',0,'2023-03-09 07:53:32','2023-03-09 07:53:32','2024-03-08 04:53:32'),('354618f9ad09f22c49b22c968bad6d2721f3f48f6406385b0fe9c756ba7b1feaf463ab85934649aa',689,1,NULL,'[\"user-app\"]',0,'2023-10-05 00:24:24','2023-10-05 00:24:24','2024-10-03 19:24:24'),('354decc94a4f359c56d2df24965387900938b9f93bc7c00925fe566094288bcc8646ead3bea69116',682,1,NULL,'[\"user-app\"]',0,'2023-06-15 22:01:10','2023-06-15 22:01:10','2024-06-14 17:01:10'),('355181e7011704936cafccf4b30ed109111c42fbd1edce36201408f0847c5eae45459a0986ef25fd',1708,1,NULL,'[\"user-app\"]',0,'2023-07-10 18:26:31','2023-07-10 18:26:31','2024-07-09 13:26:31'),('35664e854101852f24115b3c74836470eb9433c8c443058ea149c50ceb010bd59e84ab690496cd65',344,1,NULL,'[\"user-app\"]',0,'2023-09-11 23:40:43','2023-09-11 23:40:43','2024-09-10 18:40:43'),('3570399e82629e8be95b0a0702ee8c1466ee5a38a230ba66e6f09628365f8d107ece7ef6021e3459',1823,1,NULL,'[\"user-app\"]',0,'2023-10-03 14:45:13','2023-10-03 14:45:13','2024-10-02 09:45:13'),('3572b6afbed93ab5b507e09f34ac1b17e83a4f275a540129dc8909a017a4794c50b08eccf2b39c23',966,1,NULL,'[\"user-app\"]',0,'2023-02-17 20:23:46','2023-02-17 20:23:46','2024-02-17 17:23:46'),('35766c8f8cfb97fa0c94278342d6b9637d6d3cbaab8a72220763f8a2db61e1ad931f91ce4845ac68',885,1,NULL,'[\"user-app\"]',0,'2023-02-08 17:40:36','2023-02-08 17:40:36','2024-02-08 14:40:35'),('3593f05be79e1b4ac67e0a08c4e08b7c6343192a7016bdc2e57db3b0be31056b30128eeaafa21044',410,1,NULL,'[\"user-app\"]',0,'2023-03-02 18:09:19','2023-03-02 18:09:19','2024-03-01 15:09:19'),('35a95a7fc9d25b63d103448703c38d0f619f5ce57d769d668d98c9fd3dff9a8a8cd6d01b4c13342b',1251,1,NULL,'[\"user-app\"]',0,'2023-04-12 22:52:08','2023-04-12 22:52:08','2024-04-11 18:52:08'),('35af819ea0156b1ce3bcc8b043eea5a76e60901108fa5ef4f6cde01809e6434c1654c39d498ca318',942,1,NULL,'[\"user-app\"]',0,'2023-05-16 19:38:21','2023-05-16 19:38:21','2024-05-15 15:38:21'),('35b7ee109eacd102797616a5c1ea03770c1d0be98acc445c47a9a51cf73e88000e1ad1e254181e3f',1437,1,NULL,'[\"user-app\"]',0,'2023-06-07 19:50:35','2023-06-07 19:50:35','2024-06-06 14:50:35'),('35b8ac539b882bc10797c9c25449914ccca44e7d2bbfee35943c61c1558421c15957f12b74793776',2,1,NULL,'[\"user-app\"]',0,'2023-04-27 19:25:20','2023-04-27 19:25:20','2024-04-26 15:25:20'),('35c0225d38f4129ae21cc6d2522c384933ce9ef46febec09745f58b0a8b946c50fde3b5613460710',351,1,NULL,'[\"user-app\"]',0,'2023-03-07 22:58:58','2023-03-07 22:58:58','2024-03-06 19:58:58'),('35c16644ead14b218b013ceb11d2abaca5b764be9e3d240254c628d0c204b017ff89e84881a93580',180,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:38:09','2023-01-25 18:38:09','2024-01-25 15:38:09'),('35c2ab17a2b6d68303abe0b8c1587d18911d71bc0254e4557588eb9c889edbd01d4ed36f14938b0a',1701,1,NULL,'[\"user-app\"]',0,'2023-07-05 22:25:18','2023-07-05 22:25:18','2024-07-04 17:25:18'),('35dc7396ea82ba63f1a3d3af6fe573b1f887a81b7aae486c3fc8c00ce9b9b73387ddd4dcc282422b',2039,1,NULL,'[\"user-app\"]',0,'2023-09-24 00:58:42','2023-09-24 00:58:42','2024-09-22 19:58:42'),('35f36cbfb93f53b459d54e568de4adf29982d53362199a4e0e1f985ed10ced7aeb35d1cbd381744f',201,1,NULL,'[\"user-app\"]',0,'2023-01-27 11:36:24','2023-01-27 11:36:24','2024-01-27 08:36:24'),('3600aa9327541c5256c87f2d2a2c63a0614ae642256b07edb7d16edb9f5bb5186795c1196c6d942f',737,1,NULL,'[\"user-app\"]',0,'2023-01-26 15:50:16','2023-01-26 15:50:16','2024-01-26 12:50:16'),('3601744338ba790c75a0347e9032a6e451b59be073ebb2a34b0f8398d7ceb960331b3efd9affd18b',2,1,NULL,'[\"user-app\"]',0,'2023-03-25 15:22:19','2023-03-25 15:22:19','2024-03-24 12:22:19'),('361ae591cafa26e14d7ec96fc6e3bb785e48fedb5fa15717e3ad5521d58c678f27a76b42f2c2b6e2',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 19:19:35','2023-09-18 19:19:35','2024-09-17 14:19:35'),('3631471c83a3b066375bb308e190d7133e6f93669ad30a1f75d00be8f4c8633be2870f0f279b6cca',291,1,NULL,'[\"user-app\"]',0,'2023-06-05 20:27:00','2023-06-05 20:27:00','2024-06-04 15:27:00'),('3633cf1a2b374f5569b63450a8a83d22ea79ad636e0f803a715a9718200d90f51f68964bced37bc9',1934,1,NULL,'[\"user-app\"]',0,'2023-09-08 23:59:53','2023-09-08 23:59:53','2024-09-07 18:59:53'),('3674933faf52e6bf6b05dd423a4be3953577354231d1170c21719337b2cb83d9a5492763bc82e71f',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:09:57','2023-01-25 18:09:57','2024-01-25 15:09:57'),('367c293a82b5750ce68e767419df969f57a911adeabfeb233c40dad547344f2dd116c0b6219977ae',49,1,NULL,'[\"user-app\"]',0,'2023-01-26 19:24:11','2023-01-26 19:24:11','2024-01-26 16:24:11'),('368431854656eef05c714e7ff7ee286087feed9f8db6e14270fbccc97e72bc55f126f7b17be362c0',1629,1,NULL,'[\"user-app\"]',0,'2023-06-23 22:24:15','2023-06-23 22:24:15','2024-06-22 17:24:15'),('368abf20f27a95c234b39ed8797e07742f92dacb525ce4ac6b3922d0d84aa817d82336149a51b84e',13,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:41:11','2023-01-25 14:41:11','2024-01-25 11:41:11'),('369a8ec7820b934013f044ebdcabc0a85848e4313fbde6a88bee766319ba69565dc1747966ac2e6c',2,1,NULL,'[\"user-app\"]',0,'2023-03-20 19:54:35','2023-03-20 19:54:35','2024-03-19 16:54:35'),('36a16a9bab7de475e0bb2ef4420bbdc2a1cca34c4755e986eba94ef8a440589a65f7f8a6d7d06492',2127,1,NULL,'[\"user-app\"]',0,'2023-10-09 00:04:11','2023-10-09 00:04:11','2024-10-07 19:04:11'),('36b4c795b6d891ea2ed62756093b288fad6096fa82c246beefc31ce33a3588b2013110130b40da49',2,1,NULL,'[\"user-app\"]',0,'2023-08-26 03:07:31','2023-08-26 03:07:31','2024-08-24 22:07:31'),('36b8748168cb7d25440fd962715f3c2261ab42913dd0c83f6e75eaab244be7176bf5f5c56a788975',1112,1,NULL,'[\"user-app\"]',0,'2023-07-30 16:06:17','2023-07-30 16:06:17','2024-07-29 11:06:17'),('36c28f411f5cf1bb2374304f86d5e2d664a68e22f86f063db58306e89847735c644bef63c82b09a6',1320,1,NULL,'[\"user-app\"]',0,'2023-04-23 23:10:02','2023-04-23 23:10:02','2024-04-22 19:10:02'),('36c66d07bf8a9b21fdfa7ffa0613f89e9007d6ba18e7093e55202397676ddcd7ae1970166c155efd',177,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:17:44','2023-01-25 16:17:44','2024-01-25 13:17:43'),('36cb878553ac69c2f31fd55a5a0beed24cd23cf1ceb09980857c5f02c4ba8a9d5b20f42c9af1c0ec',303,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:39:05','2023-01-25 18:39:05','2024-01-25 15:39:05'),('36e4f5417431824a5fc387fd2042e15fc0eb8b47a4624325e0fa603ddb117cacd5a8e1fc72382351',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 15:05:22','2023-09-25 15:05:22','2024-09-24 10:05:22'),('36e8ec2576ee1a52bda33bf8756b579da553024b4070bff8977e1e193e2111e49468da9f65c2f183',1456,1,NULL,'[\"user-app\"]',0,'2023-05-15 21:20:11','2023-05-15 21:20:11','2024-05-14 17:20:11'),('370a03f81d08192cfaa578a2813f6b14bc69710c1998b49d14dff92a13714b9ed01493cf085bb6cf',359,1,NULL,'[\"user-app\"]',0,'2023-02-20 20:49:30','2023-02-20 20:49:30','2024-02-20 17:49:30'),('372107dec16e670abc3df765ba116ac07a4bb43afab5de24ef57d912ec3e778d8d1b6fced85b6fbd',1201,1,NULL,'[\"user-app\"]',0,'2023-03-26 14:23:00','2023-03-26 14:23:00','2024-03-25 11:23:00'),('37472f33bb32afe18de756b34e25cc74ffaced32ef172d7e2a8a914a49639ec162b139011da3a663',2,1,NULL,'[\"user-app\"]',0,'2023-08-07 19:56:30','2023-08-07 19:56:30','2024-08-06 14:56:30'),('37597fcd868cbd211636f60ad66cb0e6085690db507f6b27b931aa14557f868d092a9c099a9cc505',1049,1,NULL,'[\"user-app\"]',0,'2023-03-02 15:56:13','2023-03-02 15:56:13','2024-03-01 12:56:13'),('377748c6027d07f648f7c21f010ee39014b3cf619fb37db6725a978b7defc0cd3a4ffa5f33af07d2',2111,1,NULL,'[\"user-app\"]',0,'2023-10-07 04:53:28','2023-10-07 04:53:28','2024-10-05 23:53:28'),('3789c83cf01e68eb84aa233ef464667a895167f483101b394d2a00530398b537b0950aa83d42434f',944,1,NULL,'[\"user-app\"]',0,'2023-02-16 16:25:31','2023-02-16 16:25:31','2024-02-16 13:25:31'),('37a0eae4959ca385f8c4facdd30f3c2ee267ea3d44710ae94d01b2338cb23e1809543c91669b9098',1616,1,NULL,'[\"user-app\"]',0,'2023-06-21 22:32:22','2023-06-21 22:32:22','2024-06-20 17:32:22'),('37ac6a68870162adcde64fa680eb1777d665bfe911314d81b7617ab1ecb8f34157429996430ae923',316,1,NULL,'[\"user-app\"]',0,'2023-01-28 10:36:32','2023-01-28 10:36:32','2024-01-28 07:36:32'),('37c12c50c778b6e5dc1192ef720dbdfd41ff0bef7089c55e84655e3e8bf942630ea273e934c56e74',568,1,NULL,'[\"user-app\"]',0,'2023-08-26 16:17:23','2023-08-26 16:17:23','2024-08-25 11:17:23'),('37ea3298727eec7f3f0ef55043a2f895787234730a1de9398af71e2d72a11bdc822a96bb3f7a4328',348,1,NULL,'[\"user-app\"]',0,'2023-06-11 16:14:25','2023-06-11 16:14:25','2024-06-10 11:14:24'),('37f3c0922c5018020db453daf36b4beb4b627429c7049b04e026f49aea4ea441942d02edd0131d30',1043,1,NULL,'[\"user-app\"]',0,'2023-06-03 22:17:46','2023-06-03 22:17:46','2024-06-02 17:17:46'),('37fc164283d4965ac0cab094a9449313de163d0664b08b5306ef81e99dfc4b3663a9ec4d2a5461f2',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:50:18','2023-01-28 19:50:18','2024-01-28 16:50:18'),('381aa04cdc07ecee5072282cad21fb7f363a61cd27d98c22e436b07c9a2fe1971beecb6731b55c37',2,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:46:20','2023-07-08 01:46:20','2024-07-06 20:46:20'),('381d712b1ca909ddb3e78d5266d55b747b95160d69e2962b13c77b24e74b3ecfa390b3ae180cb22e',1126,1,NULL,'[\"user-app\"]',0,'2023-03-09 17:09:00','2023-03-09 17:09:00','2024-03-08 14:09:00'),('38345fdbe2744dfa4a14a1260fd519b6799bccb80ec657bb7104251e5acf3b1844926b3df1b160dc',728,1,NULL,'[\"user-app\"]',0,'2023-09-19 20:14:30','2023-09-19 20:14:30','2024-09-18 15:14:30'),('38366c3eb66e6f788a39e539c25af433572f9f4d2648bc72105955a2c50b3e62f3b85f59e2ff8c57',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 00:46:42','2023-09-25 00:46:42','2024-09-23 19:46:42'),('385b8de7cbb65ed0791ccdb94884616af0247a49b6e229acf37a06daa244eeb3ba64207574d2e54f',956,1,NULL,'[\"user-app\"]',0,'2023-02-20 14:53:28','2023-02-20 14:53:28','2024-02-20 11:53:28'),('385e780ab7f7fd7aa6e9ceee369d1343a630d27901f6cf01ed28bc2b82d1b12ac57afee62a9d6889',1473,1,NULL,'[\"user-app\"]',0,'2023-05-17 21:02:39','2023-05-17 21:02:39','2024-05-16 16:02:39'),('3861af78b4b0ba6ff25cc826504b10c4ffcd7d3e8dcf816eeb050e53d4fb43bfc7004f7f2b914208',946,1,NULL,'[\"user-app\"]',0,'2023-07-14 21:23:05','2023-07-14 21:23:05','2024-07-13 16:23:05'),('3870c296bcdb2fa75ffb6c8b437657a7157ce3b2b2c48cf05265f81c050c4c3fe7ee05c2643b18fd',1740,1,NULL,'[\"user-app\"]',0,'2023-07-11 20:27:42','2023-07-11 20:27:42','2024-07-10 15:27:42'),('3893fe8e2d4deb14264ab92581e49edb0b8af5c639a5adc2f5d2bdeaa957acaeb65a63a348dcef6a',2008,1,NULL,'[\"user-app\"]',0,'2023-09-18 19:50:13','2023-09-18 19:50:13','2024-09-17 14:50:13'),('38b2d16f1bc4168fa1a71d0675e3e94d50318ed1de010029c50ce7f47153600d6d8c9cbc345dd469',2,1,NULL,'[\"user-app\"]',0,'2023-06-15 17:11:00','2023-06-15 17:11:00','2024-06-14 12:11:00'),('38bc1f1059fa09532edeb2c64801008566bee06a9ba09df6bc4f1bef8e476abee0f794500edf87e3',163,1,NULL,'[\"user-app\"]',0,'2023-02-28 16:30:47','2023-02-28 16:30:47','2024-02-28 13:30:47'),('38cd573637532db5e8dc5d43b393e7d09f9166b8b17a6e7f00bb941243e7312533e47acf194bf09e',371,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:21:30','2023-01-25 19:21:30','2024-01-25 16:21:30'),('38dcd9655b1b1bd50e8c3957787d7b9b936eba37d374bedf1754be9e9a57178e722611d1918c5290',1173,1,NULL,'[\"user-app\"]',0,'2023-03-18 19:58:08','2023-03-18 19:58:08','2024-03-17 16:58:08'),('38deb847805b232e113ba789f46a209ec1e204f8c37f6a490fd935bcb11d8a464c6bfeb5b95969eb',1041,1,NULL,'[\"user-app\"]',0,'2023-10-05 00:16:47','2023-10-05 00:16:47','2024-10-03 19:16:47'),('38fef4ae416e33e09c1236321885ef453ce376ee5701120252e215b0b2506cc009dd78dc53475c01',1063,1,NULL,'[\"user-app\"]',0,'2023-09-27 13:51:19','2023-09-27 13:51:19','2024-09-26 08:51:19'),('3901771dd692022cefda087f82318c83b2bd679826d52737df517534f7d017eae6d1be06ee117edd',1023,1,NULL,'[\"user-app\"]',0,'2023-03-03 23:55:22','2023-03-03 23:55:22','2024-03-02 20:55:22'),('391a7546a9c382f192afd0f20772f46981a1c27add14065ea45ed90db88e694a973def05c63d0631',1857,1,NULL,'[\"user-app\"]',0,'2023-08-04 05:35:34','2023-08-04 05:35:34','2024-08-03 00:35:34'),('3936db91dea8b6d9b7734e62c6c67f5209e819982bdbccef45f0e65f0e9b6cf24172bf4c996d128e',2,1,NULL,'[\"user-app\"]',0,'2023-09-20 22:02:16','2023-09-20 22:02:16','2024-09-19 17:02:16'),('393eedf127b6a9aa15019b372a2eecf2333069f224b27fd98c93c898a67b56559be40624aa865ea5',131,1,NULL,'[\"user-app\"]',0,'2023-09-18 13:54:07','2023-09-18 13:54:07','2024-09-17 08:54:07'),('397f74565e213075c485125e0d461523db8446d6c05e9d44462471b7725955b802460d84ba9492e5',1969,1,NULL,'[\"user-app\"]',0,'2023-09-11 03:47:10','2023-09-11 03:47:10','2024-09-09 22:47:10'),('398027800d5c9aa5403ef1282349f711d28ada34e8dbd758fd3428994830ea976bf5049a3f20b05b',565,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:52:55','2023-01-25 16:52:55','2024-01-25 13:52:55'),('3996603919cbc78900b9a38d6145ffe55ffaa234cfd865eda6a8e788971f44d51bda647396818cbb',1635,1,NULL,'[\"user-app\"]',0,'2023-07-17 16:04:14','2023-07-17 16:04:14','2024-07-16 11:04:14'),('39c7b69f641c58bc5846d200ed3421ae59aaae7f660f0987284cf6ee66ed0012307ac26365226c59',1018,1,NULL,'[\"user-app\"]',0,'2023-09-01 23:01:58','2023-09-01 23:01:58','2024-08-31 18:01:58'),('39d0bda19aac4f1e664f5173095154394e8fdd568f5b03b829715d265be7b5f17e7340066c5e6bdb',1895,1,NULL,'[\"user-app\"]',0,'2023-08-18 22:41:11','2023-08-18 22:41:11','2024-08-17 17:41:11'),('39d17065b6c0bdb44b97c9a8ea4076d2d94b7e6fbee39e5d111208c7fb8f20b3669f709b036a17ae',2,1,NULL,'[\"user-app\"]',0,'2023-04-13 19:43:58','2023-04-13 19:43:58','2024-04-12 15:43:58'),('39d2c78aca1b0db44b2fff81362b8df43983cc865402a902a7b690c96e2353ceaca0db334f0efa0c',2,1,NULL,'[\"user-app\"]',0,'2023-03-06 17:41:34','2023-03-06 17:41:34','2024-03-05 14:41:34'),('39dbe4c4265f188bc21cec7c217fff24248a6ec4837fcbf796930c3dc45d1e972c22e222cab682de',2,1,NULL,'[\"user-app\"]',0,'2023-08-06 14:24:27','2023-08-06 14:24:27','2024-08-05 09:24:27'),('39df07772bbcc41d3e63678012cd1f785a21af04d112fd0352937f7a09fe3a3c6949e3343fc8bbcc',569,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:06:24','2023-01-25 17:06:24','2024-01-25 14:06:24'),('39f36f9c6502ea13a46c62227d9b0b9563904a68c74678fdf5ffe14f0bd1ced2356479cd53ce79f4',2055,1,NULL,'[\"user-app\"]',0,'2023-09-26 13:04:02','2023-09-26 13:04:02','2024-09-25 08:04:02'),('3a00f6ca38f91f55cdf7863a6f8ee84f2f46ab2ae7f3bc05ce7be21427b30b51830caee33924dab1',1904,1,NULL,'[\"user-app\"]',0,'2023-08-22 13:52:56','2023-08-22 13:52:56','2024-08-21 08:52:56'),('3a0ab070369b7cc319003025b05e4e97595ff27d75a5033b978ee5b89a70ca4bea14b23a0bb559a5',1214,1,NULL,'[\"user-app\"]',0,'2023-03-29 23:01:13','2023-03-29 23:01:13','2024-03-28 20:01:13'),('3a0bf3f05b4ff374dbb7b5cb73f6e1e39778df6709468837d399674ce9d4ef36ce214539492dcdaf',506,1,NULL,'[\"user-app\"]',0,'2023-04-20 03:40:11','2023-04-20 03:40:11','2024-04-18 23:40:11'),('3a282cfc712174582021a0584c970595185b80d26fab7fc3feb555646df53fc5b26fc139e697486f',359,1,NULL,'[\"user-app\"]',0,'2023-02-20 20:48:18','2023-02-20 20:48:18','2024-02-20 17:48:18'),('3a39b80f313e94bda9907d9d380184db064254f87ad0c42a36df2d3922fa26d078e45a27eccc6cd7',2,1,NULL,'[\"user-app\"]',0,'2023-09-17 23:19:48','2023-09-17 23:19:48','2024-09-16 18:19:48'),('3a44a63786693e397f15b23506a19f02cec51630f0e6de688c4bc0e330b1aad4f20277a3ab09108b',2,1,NULL,'[\"user-app\"]',0,'2023-07-09 09:48:08','2023-07-09 09:48:08','2024-07-08 04:48:08'),('3a5c91b83d825e06314e1c75957dfd617492cdf23a87fe91fc13dd6e4e4d6e4a5a7fc40cc1f6b910',1964,1,NULL,'[\"user-app\"]',0,'2023-09-09 13:49:53','2023-09-09 13:49:53','2024-09-08 08:49:53'),('3a88bff6331b559818e875e0109984b642b8b4d0b62881ffd484ec339c56ef51e1847a0e9b303ab4',2,1,NULL,'[\"user-app\"]',0,'2023-03-23 21:40:15','2023-03-23 21:40:15','2024-03-22 18:40:15'),('3a902b085de0bd3dfce96ac20249b053cf48a3334c6458d17c0b559ece2afeb8866bf332279bfa70',2,1,NULL,'[\"user-app\"]',0,'2023-02-15 00:14:18','2023-02-15 00:14:18','2024-02-14 21:14:18'),('3a9d8555a9e4e939d6224a06e8f6aa3bf3f4588fec87a16e67601b3399e794f658d87cb52bb202f0',1823,1,NULL,'[\"user-app\"]',0,'2023-07-28 19:15:17','2023-07-28 19:15:17','2024-07-27 14:15:17'),('3ab0a0757e49a51d5ebb364d90527e8040ea042ba7890a1b3dc85bc6f978757098e31f715a10aff8',1553,1,NULL,'[\"user-app\"]',0,'2023-06-24 22:13:26','2023-06-24 22:13:26','2024-06-23 17:13:26'),('3ab5e751953b0c4fcf4ea536266190693608badb93c7d9e830a166cf2484e825bd9b3470f641941b',2,1,NULL,'[\"user-app\"]',0,'2023-06-24 04:01:32','2023-06-24 04:01:32','2024-06-22 23:01:32'),('3abfea7541773899615cf3201f9ed551d96e83cf36838fc55286c82029c8f0f7afc14ceef102cb2f',1107,1,NULL,'[\"user-app\"]',0,'2023-03-02 19:45:51','2023-03-02 19:45:51','2024-03-01 16:45:51'),('3ad0d881449cd7f98fa607e3aa89a326be0dfe31917ae773ee7455a99fdabc34774da26ba9627717',476,1,NULL,'[\"user-app\"]',0,'2023-01-28 11:43:26','2023-01-28 11:43:26','2024-01-28 08:43:26'),('3ada2b9adf45b6d9adf8eda934620c0c88890c2a4e49b9ebc0dbce9313eff5fe015a9e26e1d35dc8',149,1,NULL,'[\"user-app\"]',0,'2023-03-06 19:47:44','2023-03-06 19:47:44','2024-03-05 16:47:44'),('3afb472b029133d71a9eed59eff96eaa081bbabd719061b2384ba3e0aaf40804d018b36d9a232610',624,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:37:18','2023-01-25 02:37:18','2024-01-24 23:37:18'),('3b08505c74e9868a772fcddaaa9da5d9e5ef8f0b03ea3e5b4da685f3cac39fd7c7531c76cc115ac8',2,1,NULL,'[\"user-app\"]',0,'2023-03-19 20:04:05','2023-03-19 20:04:05','2024-03-18 17:04:05'),('3b0a100895d98f585d397ac987d5c83cc7949dfc591fe2613b56591f202950d1a5c7b214c987e885',1191,1,NULL,'[\"user-app\"]',0,'2023-03-24 20:35:58','2023-03-24 20:35:58','2024-03-23 17:35:58'),('3b0f7b2f833825eed3dc4e2cfa9c57cde22bffeac5b019bfeb5ede449451ba90e32a65e447024bc5',956,1,NULL,'[\"user-app\"]',0,'2023-02-20 14:26:11','2023-02-20 14:26:11','2024-02-20 11:26:11'),('3b36af3ae3b3b42c944571617e29da00e0413e4e4bb95a5aef7721a1ae657263ad414706fe089602',2,1,NULL,'[\"user-app\"]',0,'2023-08-05 03:00:08','2023-08-05 03:00:08','2024-08-03 22:00:08'),('3b38184c1a22976f32d235ecdfa4568fed5bc742573b6c3852e34fd683ed837b02f2753e1c66f128',537,1,NULL,'[\"user-app\"]',0,'2023-02-08 14:04:07','2023-02-08 14:04:07','2024-02-08 11:04:07'),('3b4974c214b0787660339b1976bcdade25f6194d0b882c12e4eefd0b5430910bd3b9798dfade3dac',2,1,NULL,'[\"user-app\"]',0,'2023-05-13 11:54:58','2023-05-13 11:54:58','2024-05-12 07:54:58'),('3b4d1896a4c8244447d32e4c020c3f20600851c07e69ee996988447c43f9a6cd0b7cc642b552a5ad',1347,1,NULL,'[\"user-app\"]',0,'2023-04-30 16:07:15','2023-04-30 16:07:15','2024-04-29 12:07:15'),('3b52ea12f84041f97d0662e6b6b6a037644883eeebf616e9476410355d319650d1ba8463fbb702ed',1092,1,NULL,'[\"user-app\"]',0,'2023-03-04 01:53:24','2023-03-04 01:53:24','2024-03-02 22:53:24'),('3b54db95649a812f854e8fcde97d1c55a1c18a6198998c3ee4ca80352a9ef02b69128dc417fc5ae2',1864,1,NULL,'[\"user-app\"]',0,'2023-08-06 15:12:42','2023-08-06 15:12:42','2024-08-05 10:12:42'),('3b5781c431f5989a12c5c2ff23bf2900058dcbcae70ff78eefd4ec3210681120be7996a5d006340c',1404,1,NULL,'[\"user-app\"]',0,'2023-05-09 23:07:45','2023-05-09 23:07:45','2024-05-08 19:07:45'),('3b6805b2954e08cc0368657d32ab1a838f6f390c925fd45343b11b8ba69ed064ef99b375bcdb8266',239,1,NULL,'[\"user-app\"]',0,'2023-05-12 15:08:02','2023-05-12 15:08:02','2024-05-11 11:08:01'),('3b91ffd71569c27574b2ec70f6301c43672afaea48baafdd54dc30ef6413e5882679424e1b8e993f',1498,1,NULL,'[\"user-app\"]',0,'2023-05-24 22:45:34','2023-05-24 22:45:34','2024-05-23 17:45:34'),('3ba16d3ad5c8c28a0980bd7b401f6cf28531345835d92b003ccc94234f15646cd928f2d048962ed3',2,1,NULL,'[\"user-app\"]',0,'2023-09-02 14:12:27','2023-09-02 14:12:27','2024-09-01 09:12:27'),('3ba30a57d56ead34ef06bae4a5bbf0f39c5a07a801a9470335649750f150396431618bc2705c818d',280,1,NULL,'[\"user-app\"]',0,'2023-03-06 10:42:57','2023-03-06 10:42:57','2024-03-05 07:42:57'),('3ba3894b954e4141d4fcf3912e13cbe6166a58eff7d057889be9381f19c35e48b9eafbaf489b61c5',1953,1,NULL,'[\"user-app\"]',0,'2023-09-05 22:59:50','2023-09-05 22:59:50','2024-09-04 17:59:50'),('3bb63d0e422e829c73b9663108ca907099ff293764cd31112f0082af63600c57e3c5f8b13d536651',1100,1,NULL,'[\"user-app\"]',0,'2023-03-01 11:56:22','2023-03-01 11:56:22','2024-02-29 08:56:22'),('3bf73336848fed07c46d8c64c0e7819112895ca4c6f46eddd268223dcefac230cb1ebb92c4637c39',1580,1,NULL,'[\"user-app\"]',0,'2023-06-17 15:18:45','2023-06-17 15:18:45','2024-06-16 10:18:45'),('3bf75edcacea141eeb250b77783786391ad4d84ac71746c5e040ff5a2a27a6e3fbf548ab2ff41a87',1016,1,NULL,'[\"user-app\"]',0,'2023-02-21 17:11:42','2023-02-21 17:11:42','2024-02-21 14:11:41'),('3c062352807941aca38917c1d9933bbd0f0ed272a69d02ac53b28b90c16b0feb791d37e05de27b8f',1248,1,NULL,'[\"user-app\"]',0,'2023-04-12 04:55:45','2023-04-12 04:55:45','2024-04-11 00:55:45'),('3c13e92da5036964b12ba5519791c7aeeab6188b506bbf0a42a33ea38f1eabfe310e0988768a56cd',2,1,NULL,'[\"user-app\"]',0,'2023-09-13 12:15:01','2023-09-13 12:15:01','2024-09-12 07:15:01'),('3c2ac42612cd4b704e17060816407c91224a32afdb35aa13c6cfad79b870f9fbcaa3f86c2dcc3553',751,1,NULL,'[\"user-app\"]',0,'2023-01-26 23:48:35','2023-01-26 23:48:35','2024-01-26 20:48:35'),('3c2b83a9b3a97ec03d24c40eabbc167663a064e75ec38ce3e59d6d00f6efa59002d50189c46bbc35',997,1,NULL,'[\"user-app\"]',0,'2023-02-20 14:22:51','2023-02-20 14:22:51','2024-02-20 11:22:51'),('3c3e28f50eda8078d37e872451be9f263b6fd0cdc947c7cc837c5bbce70cbd19f3119ccc1ab7317c',1577,1,NULL,'[\"user-app\"]',0,'2023-06-17 03:21:39','2023-06-17 03:21:39','2024-06-15 22:21:39'),('3c536c450c10f58fa35fad2bbd36ca8ed5b7d9a4026b30259487d7676031402378249cbeb1b05fbf',2104,1,NULL,'[\"user-app\"]',0,'2023-10-06 02:05:56','2023-10-06 02:05:56','2024-10-04 21:05:56'),('3c6b589ef2ac9338ac55dccb07e6d90d9eb23ab838e6f1dd82d2b3666c7edcde5f045c5f977ccf5b',665,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:47:47','2023-01-25 14:47:47','2024-01-25 11:47:47'),('3c97e6050535a06ba1ab42966370d8bcfcc169b008d50ed0c710ced745570eec511f886b655a30fb',255,1,NULL,'[\"user-app\"]',0,'2023-03-03 20:01:35','2023-03-03 20:01:35','2024-03-02 17:01:35'),('3ca9f58f8d9ddebf6968da4ebda0d982af6fee792955f8229d3f1b80ab39422305dc9e682dd7ceac',794,1,NULL,'[\"user-app\"]',0,'2023-01-29 04:49:55','2023-01-29 04:49:55','2024-01-29 01:49:55'),('3cd0ad1b52a86e70d2ced0622efa87caed55f44c0ccc80ada048a09dab6c8b7c0a7de5560d689ae9',1634,1,NULL,'[\"user-app\"]',0,'2023-06-24 05:54:16','2023-06-24 05:54:16','2024-06-23 00:54:16'),('3ce119f672b68b181bdcd7f4c0d0c7aa192a43d5683f9d13ef861c907970c5697857bddf1b8d9ea0',899,1,NULL,'[\"user-app\"]',0,'2023-02-10 16:04:54','2023-02-10 16:04:54','2024-02-10 13:04:54'),('3ce8a921976d2d4da697334fb663f79ead0adc4f9e405d5f85e3178b14a937051d1f67bf1d65d58b',917,1,NULL,'[\"user-app\"]',0,'2023-04-07 02:33:24','2023-04-07 02:33:24','2024-04-05 22:33:24'),('3cf1e9c1fa5e7acbc3cd5828c5e3cac0e349fefedaec139eea790d23b1c898f2a2165099c652886c',838,1,NULL,'[\"user-app\"]',0,'2023-02-01 20:50:58','2023-02-01 20:50:58','2024-02-01 17:50:58'),('3cfad83c1ffae61873cedd8b1ed833ba6a33d54a716cecf2b3388ad862444afcc257c8ac807dc120',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 14:06:41','2023-05-01 14:06:41','2024-04-30 10:06:41'),('3d059ba652e9facd77c6c60124e99c4b1a81d4d7b3e11529cc4c0657866ff6d80b4487962df311a7',2,1,NULL,'[\"user-app\"]',0,'2023-02-26 07:03:23','2023-02-26 07:03:23','2024-02-26 04:03:23'),('3d19f3bc06e2a8433ce1b45ffac1469285281cf940cc3f9612a0be42bef5dedbdcbae3a2927ab5e7',2,1,NULL,'[\"user-app\"]',0,'2023-03-12 22:28:12','2023-03-12 22:28:12','2024-03-11 19:28:12'),('3d32f5df420f24531e8c06c1f11f23764218c56bcab2e35b8f07fcb4b44ec72e5bc78355e3dc1b47',1805,1,NULL,'[\"user-app\"]',0,'2023-10-07 15:18:38','2023-10-07 15:18:38','2024-10-06 10:18:38'),('3d3585342c30ec6b882551ac3a2d3091eb96fdbdfc3809ccd70d15a376e405f7e76b8a0bdfe0c693',957,1,NULL,'[\"user-app\"]',0,'2023-04-24 13:42:47','2023-04-24 13:42:47','2024-04-23 09:42:47'),('3d3fe8579d324fefb5121fc4c6907fe9bde0d7eb99d2f80a0f9c7092e159a9cfece245858a68b684',549,1,NULL,'[\"user-app\"]',0,'2023-01-25 09:14:07','2023-01-25 09:14:07','2024-01-25 06:14:07'),('3d44f84bb00f6ee838a83d74f21066a7cd257323e602ba0b24b45b4f1ff372bda59b968b7ee9bea4',1558,1,NULL,'[\"user-app\"]',0,'2023-06-13 00:04:53','2023-06-13 00:04:53','2024-06-11 19:04:53'),('3d4c5b8500e381a31908d3f46a5908d95a832347919fe4a45f7fb0e44d23d57961288451abc4af26',1392,1,NULL,'[\"user-app\"]',0,'2023-05-09 19:56:29','2023-05-09 19:56:29','2024-05-08 15:56:29'),('3d4eadb5dcff7f3b20f1f371d71b014c3efb014d68055b81f93431dd19666df250291b72e39d231c',1469,1,NULL,'[\"user-app\"]',0,'2023-05-17 18:03:00','2023-05-17 18:03:00','2024-05-16 14:03:00'),('3d52ae869a79f559f1d601c9ac78bba902dd4df59689432f41da714569d96242310d458bf91ee5e6',887,1,NULL,'[\"user-app\"]',0,'2023-02-08 19:58:01','2023-02-08 19:58:01','2024-02-08 16:58:00'),('3d5c068d04e0798d981ad2d86f34977b32121a08efb58df2a0c388db8e14f713025e6bfb3fba0e83',1075,1,NULL,'[\"user-app\"]',0,'2023-09-10 15:08:03','2023-09-10 15:08:03','2024-09-09 10:08:03'),('3d5f08ed2e364b3f62cfd4fa91b1a5c55a17f9c47c093b77fb0490a8ab1f4210afd629276d215c75',181,1,NULL,'[\"user-app\"]',0,'2023-08-01 21:16:47','2023-08-01 21:16:47','2024-07-31 16:16:47'),('3d6415e4f45d019f9df259d70a68ceb4fdb4e82ac2baa436aed6ccfcd0a252aea61154a47d3c6b09',1136,1,NULL,'[\"user-app\"]',0,'2023-03-12 02:27:07','2023-03-12 02:27:07','2024-03-10 23:27:07'),('3d64bc19fe7a30154342565206c7ed9282c0f534051eb5e443ba2a6d6ff8dcac76fbf6120bf053fe',2,1,NULL,'[\"user-app\"]',0,'2023-09-22 20:17:26','2023-09-22 20:17:26','2024-09-21 15:17:26'),('3d9ad4f3a879490b417ce3fadab42ae56dbc27bfba9210c6e097b319224d0001459b9fa2771cce98',591,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:45:09','2023-01-25 15:45:09','2024-01-25 12:45:09'),('3d9bce4ccb576f252888b8f7fa76e08766de89e4c598a5369174cb3f78956500f748ffe2dc9df223',1399,1,NULL,'[\"user-app\"]',0,'2023-05-09 21:07:26','2023-05-09 21:07:26','2024-05-08 17:07:26'),('3da0fa8413c4cab551d3439fb5f02592b67a9e0fc15818198acd125a3a332245e1f7ba42427ac8b0',935,1,NULL,'[\"user-app\"]',0,'2023-09-10 19:53:42','2023-09-10 19:53:42','2024-09-09 14:53:42'),('3dcb6820c4a03c0cd22097aa10e01a7c759ed589bcdb5d074dabcbe29d77e9ddf368c5e72beea71d',1346,1,NULL,'[\"user-app\"]',0,'2023-04-30 14:21:18','2023-04-30 14:21:18','2024-04-29 10:21:18'),('3dd4dab7aacd2ff5dcc8385b1ec7d9bc7e425894c126d75dbc18f34137c15e72970fa5a91ce893e9',233,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:37:04','2023-01-28 13:37:04','2024-01-28 10:37:04'),('3dd7d68bde4bea6987dae9b30810ba9e85d361a2f4b928d2a850183136c1473e8a8c20a7371d29be',1997,1,NULL,'[\"user-app\"]',0,'2023-09-14 23:35:10','2023-09-14 23:35:10','2024-09-13 18:35:10'),('3dfa08d3c4e9f04537fb7af71555964ff6673c01b8bf745b7fa1642341856957a0141af9f88917b7',627,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:51:15','2023-01-25 02:51:15','2024-01-24 23:51:15'),('3dfc947135fc0d0635f24013d96d8aea29afae2f5ccd5ad9c5ccce792cf6ce57aae7f80f7d1a6bb6',2,1,NULL,'[\"user-app\"]',0,'2023-03-28 01:58:45','2023-03-28 01:58:45','2024-03-26 22:58:45'),('3e0110260a5177a01ad5326b4e6d78eafda545e6569b11512261e778e5b4113fd3971a95e14a9778',2,1,NULL,'[\"user-app\"]',0,'2023-04-19 14:35:46','2023-04-19 14:35:46','2024-04-18 10:35:46'),('3e05d63635eb9cda3f86d6b034301994e83bd8efeea0f2adee1c075d6eab733c679f71229e9c3ad5',1626,1,NULL,'[\"user-app\"]',0,'2023-07-06 22:30:16','2023-07-06 22:30:16','2024-07-05 17:30:16'),('3e18e230e2ea62aa86ad3a71986c3c24d90306bb85258a57ac518d0cb84863eb02fd8b2852d467fd',2,1,NULL,'[\"user-app\"]',0,'2023-04-08 12:42:21','2023-04-08 12:42:21','2024-04-07 08:42:21'),('3e23445a15cd79f28f44e5c63d686f4bbc257287540536b7c0082700390445c417a94d876efdc9ac',957,1,NULL,'[\"user-app\"]',0,'2023-07-08 11:57:26','2023-07-08 11:57:26','2024-07-07 06:57:26'),('3e6a852f57a418cc4d7c79564f9822769fbf88cfad92fde383951c4e289ab913489827990c070fff',309,1,NULL,'[\"user-app\"]',0,'2023-01-27 20:26:29','2023-01-27 20:26:29','2024-01-27 17:26:29'),('3e72f40c6314821a2d8ab189901cc1769cb83138ae1dc72a37aed1271cbe700fdb820865f5afffb5',8,1,NULL,'[\"user-app\"]',0,'2023-06-15 19:33:31','2023-06-15 19:33:31','2024-06-14 14:33:30'),('3e730d807f3287adad4124bc51da48163cc000b6a3734c77c45c1d2ba0a2e4f8cea82312aa97505a',1451,1,NULL,'[\"user-app\"]',0,'2023-05-20 01:18:03','2023-05-20 01:18:03','2024-05-18 20:18:03'),('3e987786c12d90986dbf66b692e566c4416478b464a4068d7c81cc078e1c8867f5c2d21e1fa41706',139,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:15:59','2023-01-25 16:15:59','2024-01-25 13:15:59'),('3e9a81c7a54e4c44993f496f4a8219553c6bafb1a4937712ade96e7132cc30ade4354bd7cd1f6665',145,1,NULL,'[\"user-app\"]',0,'2023-10-07 21:48:46','2023-10-07 21:48:46','2024-10-06 16:48:46'),('3e9c7c4cda83d7bc806ea929f0b9eb4440713f584856c1c7f781c2fb84f2d3c810efeae14740af49',1215,1,NULL,'[\"user-app\"]',0,'2023-04-27 18:16:59','2023-04-27 18:16:59','2024-04-26 14:16:59'),('3e9f92f312b6863636571b5383a023ffbfd7d81315c3c6b649c1a55b21079c6fe3bed2af97f5d259',803,1,NULL,'[\"user-app\"]',0,'2023-01-30 14:06:44','2023-01-30 14:06:44','2024-01-30 11:06:44'),('3ea6a444117520f42c4c859c8c53109176a8c08ec5cd8d436618ceb69134a25d137491ded1e49b2e',993,1,NULL,'[\"user-app\"]',0,'2023-04-30 23:36:49','2023-04-30 23:36:49','2024-04-28 19:36:49'),('3eac4e90c79cc854b785b9fc92c31011f5a38ef0a133ba429b7700e1d9ba8cb94f907345201313d1',341,1,NULL,'[\"user-app\"]',0,'2023-09-27 01:34:34','2023-09-27 01:34:34','2024-09-25 20:34:34'),('3ec1eb14cbe42bc40edacc2e131a96359dfea675ff2c5811a0b769bcee3288e7e9d105ce59d92189',2,1,NULL,'[\"user-app\"]',0,'2023-09-15 01:51:16','2023-09-15 01:51:16','2024-09-13 20:51:16'),('3eceb8b399504981929c0ff652451df8879054a65b865e636a37eb52e9800146267e12fb39a7c5d2',2,1,NULL,'[\"user-app\"]',0,'2023-09-11 03:43:19','2023-09-11 03:43:19','2024-09-09 22:43:19'),('3ee53bc5a9df9ea83e06a36623a4d2fb2a4b2c035e40e9546e9dc7ba7347f753bc4e4e5cedbe3764',277,1,NULL,'[\"user-app\"]',0,'2023-01-29 11:42:46','2023-01-29 11:42:46','2024-01-29 08:42:46'),('3ee9aa72465e1e5f43183903e3e957ed0deaa6d2b7311830567c050f7de296e6c71d63c54bf5bacf',1703,1,NULL,'[\"user-app\"]',0,'2023-07-05 23:21:19','2023-07-05 23:21:19','2024-07-04 18:21:19'),('3efc969f2546dbf5139ded012405bc8b621e9c0ee029c6b4ddc7d1fe807ee4216e472b6bdbb50419',1570,1,NULL,'[\"user-app\"]',0,'2023-06-20 17:53:39','2023-06-20 17:53:39','2024-06-19 12:53:39'),('3f0845c09f6ff52de34d683e48b4bf26998ce5fe56928451ed96584b288bdbe2b59adbeab7f57761',2,1,NULL,'[\"user-app\"]',0,'2023-08-26 04:05:45','2023-08-26 04:05:45','2024-08-24 23:05:45'),('3f3aca56d5cf3486fec92eae874e03b467fc5f5036c68ef1e5e626b25470447d59dc1012550a8160',282,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:39:14','2023-01-25 17:39:14','2024-01-25 14:39:14'),('3f3e5f567960f3d80dfe3e7df011302d3e1fdcae61c914dfea5515c34b673febe64d755bff4c16ee',2,1,NULL,'[\"user-app\"]',0,'2023-09-23 00:59:41','2023-09-23 00:59:41','2024-09-21 19:59:41'),('3f530d460b1e96d225c81b697325dfbb5b070a33dbb01c2a159f59b318c0e1f1232df41eb9a00b2c',2,1,NULL,'[\"user-app\"]',0,'2023-09-16 18:48:17','2023-09-16 18:48:17','2024-09-15 13:48:17'),('3f540c78992040ee911d5764525800d298ac4ad6c540f74be99f0f7d6f51c767fde8b31b71466ea8',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 16:03:43','2023-07-17 16:03:43','2024-07-16 11:03:43'),('3f628f5c3eebe5a0fd879595202864af0a21092df8ac83d47cb7edb7c0a21af97460d58c2c4c07c9',1362,1,NULL,'[\"user-app\"]',0,'2023-05-03 16:17:30','2023-05-03 16:17:30','2024-05-02 12:17:30'),('3f65aec846439596f0d11a3019374990bee2a0a6f113cb8705a5460ee6b028e4ba5e7b0d2ba4d5ce',2,1,NULL,'[\"user-app\"]',0,'2023-05-04 22:56:19','2023-05-04 22:56:19','2024-05-03 18:56:19'),('3f679a2352bdc224cedd0548acdbf9ac5c2493182c48db76c61444d1939846d1cf7187e4bdaa41f2',280,1,NULL,'[\"user-app\"]',0,'2023-01-30 22:39:37','2023-01-30 22:39:37','2024-01-30 19:39:37'),('3fa08168770c7f591fd747c4350d1c0e083adf4b1181dedcb3cf2b002efe96a0a0ccbf282351ea2a',432,1,NULL,'[\"user-app\"]',0,'2023-05-30 23:38:40','2023-05-30 23:38:40','2024-05-29 18:38:40'),('3fb5cfcc4050bc359c263d2b5945149bef4f6b6735d838b005fd084ee994f0041fbd7f45053a49c6',880,1,NULL,'[\"user-app\"]',0,'2023-02-08 12:55:50','2023-02-08 12:55:50','2024-02-08 09:55:50'),('3fbe6c9ba0753ec3cdca41e2b13576f558b15ec2e33a6e2a19dc19396ba2fa71b72b4839584d1db4',1075,1,NULL,'[\"user-app\"]',0,'2023-03-13 18:53:56','2023-03-13 18:53:56','2024-03-12 15:53:56'),('3fc40f33181103d47b13ee71f57d32c8c74a43b2485f8dd8949fdc25f3662158ceaafa7cd20a49c3',1711,1,NULL,'[\"user-app\"]',0,'2023-07-07 00:00:34','2023-07-07 00:00:34','2024-07-05 19:00:34'),('3fca2b69455c3122895d39425ad59577eb9cb3418d868c8648ca9e7e5f2761d483c31271cb2ac8fb',2,1,NULL,'[\"user-app\"]',0,'2023-04-28 22:58:44','2023-04-28 22:58:44','2024-04-27 18:58:44'),('400424f6a514cd883faaec7925afdb354064b22d41eb724df9be4be27fe1859796ada30082855217',1063,1,NULL,'[\"user-app\"]',0,'2023-08-16 00:27:27','2023-08-16 00:27:27','2024-08-14 19:27:27'),('4005630ea8383f746b4b6a8ccc997e5a8442c9c4472152a34501fcf3a68b2b2ee29852d6d8ae0708',1597,1,NULL,'[\"user-app\"]',0,'2023-06-19 16:31:25','2023-06-19 16:31:25','2024-06-18 11:31:25'),('400d8b87e2725f1bd4416ca347ad98d05d3fa29d2a85b7e94fd17bea7254570ea366b0c3b8e0891a',1525,1,NULL,'[\"user-app\"]',0,'2023-06-03 21:11:36','2023-06-03 21:11:36','2024-06-02 16:11:36'),('40204d3b7347d1ec5b523323566650856e87923c6e491356a8d7758ffb22e80f61f20eb0274590e8',1336,1,NULL,'[\"user-app\"]',0,'2023-06-24 22:32:58','2023-06-24 22:32:58','2024-06-23 17:32:58'),('403a05dddf41cc220efa5eed4a7034fd62475a7a5ae106b131f6dd28d1480e422e3fb28ceafaee16',787,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:21:52','2023-01-28 19:21:52','2024-01-28 16:21:52'),('4044d783e0450013bdaad2ce0b60586eb0e4bd47dde8b3e77df2a51adfb3db090e8d3bcb27f89bb2',1569,1,NULL,'[\"user-app\"]',0,'2023-09-21 22:32:56','2023-09-21 22:32:56','2024-09-20 17:32:56'),('404aeb990e12427487fb3225c361802dd9244ca09a8fc1831ec8f5219d484d5a596c57a1ba1036af',2,1,NULL,'[\"user-app\"]',0,'2023-02-02 13:04:34','2023-02-02 13:04:34','2024-02-02 10:04:34'),('4050b2b0ca6ed8d1a1cd2f0a7f6f739b1812c274edaf839a86c29a0fa58a3237af41f92b0fc10d93',957,1,NULL,'[\"user-app\"]',0,'2023-04-29 15:03:38','2023-04-29 15:03:38','2024-04-28 11:03:38'),('40610a52f76347e406ba308efe1848ac4843cacc8bfc103f0da68d2930d5e58d10182630916c9d13',37,1,NULL,'[\"user-app\"]',0,'2023-01-25 09:49:04','2023-01-25 09:49:04','2024-01-25 06:49:04'),('4080b852adaabe215b5e77000d80a10d050c1e238400943c445462c6c1b25ce44a89cbe42e67f694',618,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:09:25','2023-01-25 12:09:25','2024-01-25 09:09:25'),('40884ea7f2cf765fffcd0ef980b81d2d28f3feb99b318fccc3db14e4ed75c0a8416d5f8ac042b4aa',1781,1,NULL,'[\"user-app\"]',0,'2023-07-18 20:58:10','2023-07-18 20:58:10','2024-07-17 15:58:10'),('40abaeaf74b0ce561d284aa35b2532d8470d96d6ae109ccdae0d2708fcd5adbf45e5f2f847cfd3da',2,1,NULL,'[\"user-app\"]',0,'2023-07-03 18:50:05','2023-07-03 18:50:05','2024-07-02 13:50:05'),('40b39c77cda98612a9547c6d8b904c05edd477ac6caa8d1f96588c7b159f57ed198d0906d858731d',562,1,NULL,'[\"user-app\"]',0,'2023-08-03 01:40:27','2023-08-03 01:40:27','2024-08-01 20:40:27'),('40e55de8e8471cd4bade07c33486e7931a268aa44c5e0d5868f0405e0638006df9d77719a751a5f9',1380,1,NULL,'[\"user-app\"]',0,'2023-05-07 00:24:51','2023-05-07 00:24:51','2024-05-05 20:24:51'),('40f3f348cb827fec5a697b651a98d673b813c3cd12ec5e541601a50413f448d0c88a6757386957e9',730,1,NULL,'[\"user-app\"]',0,'2023-01-26 14:35:25','2023-01-26 14:35:25','2024-01-26 11:35:25'),('4112bcf42677bbfa0223ddd4e4af1fa871159103ecc72ba41c4a4a0187c6b580793f5a1a49e67f97',2,1,NULL,'[\"user-app\"]',0,'2023-09-16 03:06:01','2023-09-16 03:06:01','2024-09-14 22:06:01'),('4114ed6b28761e772c55924aee882096f95ddd5b2f15cd5792e5eff464f5d986a3caf4acf5b5b31b',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 13:46:14','2023-09-18 13:46:14','2024-09-17 08:46:14'),('412dfd3e8709da6c5d91bbf66c6aa14b8431dbb52929fe15ea4f47f9a2a7734c25d16e024841814c',438,1,NULL,'[\"user-app\"]',0,'2023-02-02 17:37:26','2023-02-02 17:37:26','2024-02-02 14:37:26'),('4159ee19bc60e93e95735454a52c029ddf807936ba590991b28ae7f29b543fe9e673f19279214b9a',255,1,NULL,'[\"user-app\"]',0,'2023-01-26 11:30:31','2023-01-26 11:30:31','2024-01-26 08:30:31'),('4177cd49149e1c88ab76b6938fca7f0de6f4d6d533717f0a540b128c1c93990441a6c603fb14ac07',1776,1,NULL,'[\"user-app\"]',0,'2023-07-24 19:53:23','2023-07-24 19:53:23','2024-07-23 14:53:23'),('41cef91db84af1b77da78ee1d079da43b2b409fb1ed48cdfd06fda4fdd27faf21a9f41c4b2c041e7',2,1,NULL,'[\"user-app\"]',0,'2023-04-28 19:50:35','2023-04-28 19:50:35','2024-04-27 15:50:35'),('41d0c3664b1d0bc772a83a1a37b32d719a07959e3100d0931a0d04787ce4cdd9476af3e389618ae8',969,1,NULL,'[\"user-app\"]',0,'2023-02-18 11:36:31','2023-02-18 11:36:31','2024-02-18 08:36:31'),('41d6d01e44f851b38f06ec97d99c40479d8ace6700d43bdfa03233b82dbb75a5b4f45c164c43db20',1941,1,NULL,'[\"user-app\"]',0,'2023-09-02 21:24:30','2023-09-02 21:24:30','2024-09-01 16:24:30'),('41d9372659eb899d1498cd76c3df7caddb77d4c9dea489023f66fd71842053b951eb930da229784e',2,1,NULL,'[\"user-app\"]',0,'2023-08-09 20:02:35','2023-08-09 20:02:35','2024-08-08 15:02:35'),('41e8a748bbb1e30148dd6269b56288abdd2859840d74fe6a737feddda99ecc3ea765e3ca666d5b3b',1658,1,NULL,'[\"user-app\"]',0,'2023-06-28 16:27:54','2023-06-28 16:27:54','2024-06-27 11:27:54'),('41fbe209f1d2f06d4c1c650339eff080b6de0a8d09441d62a1066077c9e286e2db54d99fb8141a5f',1003,1,NULL,'[\"user-app\"]',0,'2023-03-01 21:58:24','2023-03-01 21:58:24','2024-02-29 18:58:24'),('42171b043d58eae56f31c723d5ef1ecef3fa21f13fa658b2f7272d9e44608be689c56c110ed4b767',1489,1,NULL,'[\"user-app\"]',0,'2023-05-21 02:18:11','2023-05-21 02:18:11','2024-05-19 21:18:11'),('425af58b8c14d35891a9a035c48a5ef447d2246c6ffdda9b85a6bf4e39c47f72e4efafc4895e950a',1743,1,NULL,'[\"user-app\"]',0,'2023-07-12 16:20:30','2023-07-12 16:20:30','2024-07-11 11:20:30'),('4271b9a76f13be27f5c9ac94938665926a8cfdc78699a238cf49801b5c42ac445850e42da3677a78',1959,1,NULL,'[\"user-app\"]',0,'2023-09-10 18:30:15','2023-09-10 18:30:15','2024-09-09 13:30:15'),('428fa87065626baeed93a2e7d4ab3895186a81173b9b72f4db095d7c4aa620f003e2b50dc2aff95b',1104,1,NULL,'[\"user-app\"]',0,'2023-03-02 03:25:49','2023-03-02 03:25:49','2024-03-01 00:25:49'),('42a5a21fa737d0faffa77739ce6788843c88ca12fbe0104c831d9d0289c4bd0077d962708c64038f',941,1,NULL,'[\"user-app\"]',0,'2023-02-16 11:24:17','2023-02-16 11:24:17','2024-02-16 08:24:17'),('42a82dcecc76dcc527938f1efe0ae5f87cf9d629f2ed402c16f784a0dc7c716d7b42139e01d38e24',2,1,NULL,'[\"user-app\"]',0,'2023-07-28 21:32:05','2023-07-28 21:32:05','2024-07-27 16:32:05'),('42b9ee1764cce725439d5619080d3dc784768b12fa0271e4ec7f89e7616f668735fb1a2ed2ef9086',1540,1,NULL,'[\"user-app\"]',0,'2023-06-08 23:26:20','2023-06-08 23:26:20','2024-06-07 18:26:20'),('42e6c95cf920a6c863653b7eb79f0cbabfbb4f7df6925c6fc440aad745557e5c8de36cc907bf55a4',2027,1,NULL,'[\"user-app\"]',0,'2023-09-22 03:45:18','2023-09-22 03:45:18','2024-09-20 22:45:18'),('42e6e1e0c6864f46873f048d0d95f8436cfc5992403ab1c418cb32c4cbcd5db64ec3b0463743ce64',1929,1,NULL,'[\"user-app\"]',0,'2023-09-04 20:25:39','2023-09-04 20:25:39','2024-09-03 15:25:39'),('42fc9e4b72fdc2c6110516a6978c40829bc8b12464f9d87580b50924e38a39598d48e6c4acb8762e',1511,1,NULL,'[\"user-app\"]',0,'2023-05-29 02:21:36','2023-05-29 02:21:36','2024-05-27 21:21:36'),('43087139cf3c6ebe0a499228bd476e1f67d22c5d17fd251ec5ef3b842fb947ff921f4da1ba0bb28d',1566,1,NULL,'[\"user-app\"]',0,'2023-06-14 22:06:32','2023-06-14 22:06:32','2024-06-13 17:06:32'),('430ca7951b5608034e70933a3a55e8caf44a9a59a5187853a8d3fc39e6288a9b8382e054ee048637',1298,1,NULL,'[\"user-app\"]',0,'2023-04-22 00:15:03','2023-04-22 00:15:03','2024-04-20 20:15:03'),('4327f244c59ecbfd8646ba1d00e9f51a77ff4ca1184a9237c25d459e8e606a296b64e1ba4714701f',134,1,NULL,'[\"user-app\"]',0,'2023-07-12 18:40:36','2023-07-12 18:40:36','2024-07-11 13:40:36'),('43357ce2ded127de8c109373ea66a3bf7dae1a7af85f2fc384b825ad211622aa0983275da6b04c96',1773,1,NULL,'[\"user-app\"]',0,'2023-07-17 00:24:05','2023-07-17 00:24:05','2024-07-15 19:24:05'),('434943327f57c580f9e3722385c34bc00f97224ddb37a63136af32ad963962ccd84ec86040c61d4f',636,1,NULL,'[\"user-app\"]',0,'2023-01-25 05:16:55','2023-01-25 05:16:55','2024-01-25 02:16:55'),('43776fc607010e3306fd82829c51a43954d95bfd8cc4165fdd463a2800a412e7a87a7d7441687f8a',2,1,NULL,'[\"user-app\"]',0,'2023-10-03 17:21:40','2023-10-03 17:21:40','2024-10-02 12:21:40'),('438c595bf253ebd0d64d1e8546c67a40a194c565486af48f11ab3b961c321bd143536a5510e2247d',1549,1,NULL,'[\"user-app\"]',0,'2023-06-10 03:28:59','2023-06-10 03:28:59','2024-06-08 22:28:59'),('43a77a7e244abbed0984d789f157d1a0821f19e1080dfff966d03173f4346a93cf2579fcf33263fb',1343,1,NULL,'[\"user-app\"]',0,'2023-04-29 13:44:48','2023-04-29 13:44:48','2024-04-28 09:44:48'),('43bb3c3d69036930f760df34b3b85aaf65a0ac46f1f99839a2c8c5d20b559adf485e7dcfbab3290b',2082,1,NULL,'[\"user-app\"]',0,'2023-10-07 04:15:23','2023-10-07 04:15:23','2024-10-05 23:15:23'),('43e92a8548facb6b1ad524a24d8f538cd4b16375b68d515df885dd0c833fccce5fdb2548f36575d0',1003,1,NULL,'[\"user-app\"]',0,'2023-02-23 12:48:29','2023-02-23 12:48:29','2024-02-23 09:48:29'),('43f49db95b0955a75dd23cb12dc1d96115ffa9fc744adb9a62cb6714c4c0cf0aea469474818c27d8',355,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:59:06','2023-01-28 19:59:06','2024-01-28 16:59:06'),('440ab9577038be2647fe29a06e0b54ae8da722766698b82ad7befb422b9149130c92764da862e51d',2119,1,NULL,'[\"user-app\"]',0,'2023-10-07 21:49:14','2023-10-07 21:49:14','2024-10-06 16:49:14'),('441033892174aa10218b95af2930ef830d608faabfcf616992b1c1631e12aebe957163a27132985a',1227,1,NULL,'[\"user-app\"]',0,'2023-10-08 01:29:24','2023-10-08 01:29:24','2024-10-06 20:29:24'),('4427acfdaf953d762dae724ee10d3744d534d58f19b976ed51afe537cb6ee774dfa99484ce6c75e7',1710,1,NULL,'[\"user-app\"]',0,'2023-07-06 20:50:41','2023-07-06 20:50:41','2024-07-05 15:50:41'),('4428d891d4387c0d51b5b475275faef7aa638f6eb5b02d745cca8c5fba7a518a5275f9c05586714e',2,1,NULL,'[\"user-app\"]',0,'2023-09-06 20:57:46','2023-09-06 20:57:46','2024-09-05 15:57:46'),('4451c2ce10ea63e2f8f348aaeac578e9f103ccacdb8d41739743945b942af9b8576b6a4d89c34e0a',8,1,NULL,'[\"user-app\"]',0,'2023-09-06 21:15:09','2023-09-06 21:15:09','2024-09-05 16:15:09'),('4454a381a11ce570005b502e2a55becd9027ea5395df456873869dca9e893b3cd58617f4c859d700',1218,1,NULL,'[\"user-app\"]',0,'2023-09-10 00:34:01','2023-09-10 00:34:01','2024-09-08 19:34:00'),('445bfbcdd3835dd192e6faad72cfd783d6a457c6d13172ca7bfe8e8f288462f1209ff20946e361dc',1618,1,NULL,'[\"user-app\"]',0,'2023-06-27 05:49:10','2023-06-27 05:49:10','2024-06-26 00:49:10'),('445f5db3d5b9e76acd2e16c5cb3cdcde1a4ba7bf306225e06223d0944edb3591a29dc4396ce27a69',1033,1,NULL,'[\"user-app\"]',0,'2023-02-22 17:51:24','2023-02-22 17:51:24','2024-02-22 14:51:24'),('446a5b2a0fe5b7903ec823c1891ce926712d98e49d292f1108a516d6da4ddd73390e4e6e5b0512d9',1165,1,NULL,'[\"user-app\"]',0,'2023-04-19 15:51:33','2023-04-19 15:51:33','2024-04-18 11:51:33'),('447295cea60e361d81559c660a9c8bb0e0f65a4be85455d949131668a3b7de5267509beb6627255e',1118,1,NULL,'[\"user-app\"]',0,'2023-09-24 21:31:56','2023-09-24 21:31:56','2024-09-23 16:31:56'),('447c8d8b0305885c1cda66a6783b56b51ecb312409435767c18c2bb34b7870b87fb7de5d600f0c91',2,1,NULL,'[\"user-app\"]',0,'2023-02-17 18:18:28','2023-02-17 18:18:28','2024-02-17 15:18:28'),('4489a5397062cf4bda61f6f32b785d70155f7d74c6e273ab964e5c23f8478aa35ca4b006919bb731',1059,1,NULL,'[\"user-app\"]',0,'2023-03-24 13:54:30','2023-03-24 13:54:30','2024-03-23 10:54:30'),('44b7923819aaa6e91d2980083fd69a5d66212cbc4877f42ed753e930e91f99dabe9f081fe4320df4',5,1,NULL,'[\"user-app\"]',0,'2023-02-02 11:06:48','2023-02-02 11:06:48','2024-02-02 08:06:48'),('44bec8c0a068589de1f29640fdaed45f226cbb5d4de13ba3c61ffb621737704f541f46a06aa057c1',1817,1,NULL,'[\"user-app\"]',0,'2023-07-26 04:56:38','2023-07-26 04:56:38','2024-07-24 23:56:38'),('44dcb8279296c68b6ad747ebb90a9ec1411521f1d5dda1efabd6e5735a994bf635ca226eed3f42c5',348,1,NULL,'[\"user-app\"]',0,'2023-01-30 18:57:12','2023-01-30 18:57:12','2024-01-30 15:57:12'),('44df242e1ef292b3bf08a5e46855e703b560795a4811e1c25e7d31a5c46e8dc83f7453f19e2542c3',1212,1,NULL,'[\"user-app\"]',0,'2023-03-29 18:46:49','2023-03-29 18:46:49','2024-03-28 15:46:49'),('44e204ada4ba660289895a6c82f54bf78f1b448ef976c865fc706f8be489ae1dde54fb4b3fdc2672',2,1,NULL,'[\"user-app\"]',0,'2023-06-10 19:19:43','2023-06-10 19:19:43','2024-06-09 14:19:43'),('44e5ae8e87bed799e44378cda4c08fd32161548d05b99fa2c1aa234d6ed2fbad582d082bd1cbb361',2,1,NULL,'[\"user-app\"]',0,'2023-02-08 12:54:39','2023-02-08 12:54:39','2024-02-08 09:54:39'),('4501aca4da915ea0ed32d04e214d6b28bd52abf431f63e2ff5d41029fd247871e46f388774c80047',458,1,NULL,'[\"user-app\"]',0,'2023-01-25 09:58:59','2023-01-25 09:58:59','2024-01-25 06:58:59'),('4509b64122c9829848b580edca83c6192269c4c5bd86d1d110201c32b2a630147983c82b0c6cfe14',1089,1,NULL,'[\"user-app\"]',0,'2023-02-27 15:12:13','2023-02-27 15:12:13','2024-02-27 12:12:13'),('4512147c9568d435b5081c92d970c3e60743961f5b19903537e6191ad4c6e567c40f3b89f6f948be',2,1,NULL,'[\"user-app\"]',0,'2023-01-27 11:01:03','2023-01-27 11:01:03','2024-01-27 08:01:03'),('4529f81d6e2e816dbf13bf734ea44b06573030d40ce57916f48f16c83c1e091d380a8844ece4f186',164,1,NULL,'[\"user-app\"]',0,'2023-01-25 20:22:15','2023-01-25 20:22:15','2024-01-25 17:22:15'),('452c6993409a1177dd659c8d3a741fd3382f8d04099bbe669a10a39a5847bbf515ad01a940eb6ef2',8,1,NULL,'[\"user-app\"]',0,'2023-10-06 13:21:56','2023-10-06 13:21:56','2024-10-05 08:21:56'),('45315cee94ba9b8ab8beb1bbd174a521ba5e5c45be93db4004c800bfe335aef4f5ce14fc30896778',1424,1,NULL,'[\"user-app\"]',0,'2023-07-06 02:12:41','2023-07-06 02:12:41','2024-07-04 21:12:41'),('4537ce217692f78c517a17442c3e81f1bffe3af03e66488aee9ebcecbe5b1d12fad68c2774845484',2,1,NULL,'[\"user-app\"]',0,'2023-07-18 18:43:40','2023-07-18 18:43:40','2024-07-17 13:43:40'),('455599afec57d6a030031f08a064b40ad5c71dc4ec05325e1870bad4a3af9c2cc4345690a309ae16',403,1,NULL,'[\"user-app\"]',0,'2023-08-11 22:22:45','2023-08-11 22:22:45','2024-08-10 17:22:45'),('455937fe05190fbee40cf2762ecc8efe5e88a023b7d524624f65beb2ae088617b4ee24b214fd865c',2,1,NULL,'[\"user-app\"]',0,'2023-05-25 15:58:00','2023-05-25 15:58:00','2024-05-24 10:58:00'),('456d3f09a997fb8cf74f9ade4bff0af295fd1445dfe3a4f9c747b3c96edd14f8dc4b0bb3cf640cfc',2,1,NULL,'[\"user-app\"]',0,'2023-06-12 19:50:56','2023-06-12 19:50:56','2024-06-11 14:50:56'),('457241f99f7cd50fda817d0470d0b23b0f674e94e4e0b7587da8a8b6234f938ff568a4996b248646',603,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:29:10','2023-01-25 15:29:10','2024-01-25 12:29:10'),('4593ab0a9ee05b7466e4a3b83700ebbd91cbbf393d3dc25cb3d76531930cf858c1266eafbd79fed3',185,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:52:26','2023-01-25 13:52:26','2024-01-25 10:52:26'),('459e0011d318056097bd2a8bebf6cf5180c3ede3094eab7425ddc195ee91906c76ed5ee01b563dc0',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 10:25:43','2023-05-01 10:25:43','2024-04-30 06:25:43'),('45a879696c4998cf547966adaf86df20d09570b811ef015e18760f79a11b2e2809f57e38a3d66962',438,1,NULL,'[\"user-app\"]',0,'2023-02-02 17:36:42','2023-02-02 17:36:42','2024-02-02 14:36:42'),('45adc1957514aa8bfaeeb0d562f05d0a6c1a88ed9e44b6ed700efae89a94e595f2a298854fc90251',1561,1,NULL,'[\"user-app\"]',0,'2023-06-13 20:14:59','2023-06-13 20:14:59','2024-06-12 15:14:59'),('45b07d8d2e0b5e4ae879e1ce305e8c32e84633c1ac6d8fdf66353241d888dbc4c9af075c87e1cc01',1501,1,NULL,'[\"user-app\"]',0,'2023-07-27 05:25:26','2023-07-27 05:25:26','2024-07-26 00:25:26'),('45c0f6df16e715f1465d577f0b6307354f471c4ac590735b235d87867859515fe0e00507bc6e1d57',2,1,NULL,'[\"user-app\"]',0,'2023-06-29 22:02:50','2023-06-29 22:02:50','2024-06-28 17:02:50'),('45c84d36951e3414f323a90fefaf70bdee747cf9c720d6f1600ab7c858d745963f9b577cb7d4e64f',351,1,NULL,'[\"user-app\"]',0,'2023-02-17 00:52:35','2023-02-17 00:52:35','2024-02-16 21:52:35'),('45e1aed850d612b12cc9836b1e076fdf221e98e57268c24daa4bbd3049e781284527590a4dcd384c',1050,1,NULL,'[\"user-app\"]',0,'2023-02-27 23:52:31','2023-02-27 23:52:31','2024-02-27 20:52:31'),('45e2637190174d86c55cba74ca94ba48e5d1c6510bba5865e092c838e7768104c16997ecea14149a',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 04:39:59','2023-09-04 04:39:59','2024-09-02 23:39:59'),('45e5601d439c17b208e53a9372c07be91d551b2f30510da17e0f7efc31a4974f939e7ad2e188301c',525,1,NULL,'[\"user-app\"]',0,'2023-02-02 00:35:08','2023-02-02 00:35:08','2024-02-01 21:35:08'),('45f9333ecec77602012a00803cda297c95bb8ebb8437106e3296f5876329a3142bf18e448dc181ad',754,1,NULL,'[\"user-app\"]',0,'2023-01-31 22:40:22','2023-01-31 22:40:22','2024-01-31 19:40:22'),('46198eef4c790141b553a4ac6fffc9fda05d0ce17395bece16b34794dcd20314d1f919f10514c0b2',1441,1,NULL,'[\"user-app\"]',0,'2023-05-12 23:53:04','2023-05-12 23:53:04','2024-05-11 19:53:04'),('462a99393b417039322427b608f6443a6bcc753bda56e10c26394304e8107b98a55fd3dfea753426',86,1,NULL,'[\"user-app\"]',0,'2023-02-02 17:26:32','2023-02-02 17:26:32','2024-02-02 14:26:32'),('4630631497e8735b514fad9f51afa50f7e90f7d5ad0e115233d356a9c395b3711036da9bb24c4307',2059,1,NULL,'[\"user-app\"]',0,'2023-09-27 14:43:37','2023-09-27 14:43:37','2024-09-26 09:43:37'),('46400719a29944270d29721b843ba18876a56e1e3a4309892a6ef90d69712885e71ad8fa4511503a',288,1,NULL,'[\"user-app\"]',0,'2023-02-08 20:21:56','2023-02-08 20:21:56','2024-02-08 17:21:56'),('4653cdf33350aa5fdde14d7de010a195b5c68e975559872a03049beed82f8553f8eacb2d992d391b',2,1,NULL,'[\"user-app\"]',0,'2023-04-28 02:13:22','2023-04-28 02:13:22','2024-04-26 22:13:22'),('4659a8d97375fab45a19b86a4fda073b787a7013ef81f5c4830f65bb3e5e23e6cc8ebbf2fa91c2e2',2116,1,NULL,'[\"user-app\"]',0,'2023-10-07 20:26:36','2023-10-07 20:26:36','2024-10-06 15:26:36'),('465ade5d949a43cb232ede08d1b732d0654f0d49cc958b128cfb0058468fe84300813386a8b7ef96',8,1,NULL,'[\"user-app\"]',0,'2023-02-16 12:01:58','2023-02-16 12:01:58','2024-02-16 09:01:58'),('4661074fdeb1d99479c269cb4f9fc83cf512ade808a32a97e71c4b75285651edcdcba1591cdda278',1487,1,NULL,'[\"user-app\"]',0,'2023-06-05 22:21:52','2023-06-05 22:21:52','2024-06-04 17:21:52'),('466f4c381d4e06ec7e12cb82d290d30595c99566708c6a5d6f4c00f758e5d739452da31aeacd3cfc',1126,1,NULL,'[\"user-app\"]',0,'2023-09-10 21:11:50','2023-09-10 21:11:50','2024-09-09 16:11:50'),('4670ad98439001487994cf31f95d424d721caa5107f4f4fd02a9e506918f0970f4d263193490b3a7',163,1,NULL,'[\"user-app\"]',0,'2023-08-07 15:06:12','2023-08-07 15:06:12','2024-08-06 10:06:12'),('46b9e7288c9802c150fa984b171d705c94f613ef266cac3fb92dfe869a399a34f702188c2b809cd8',2,1,NULL,'[\"user-app\"]',0,'2023-03-17 17:15:16','2023-03-17 17:15:16','2024-03-16 14:15:16'),('46ba4be1454b18797172e93e9d7a672221d5f199fd934c51a5d4607a813c5a8315ee8052950b0384',806,1,NULL,'[\"user-app\"]',0,'2023-01-30 17:13:42','2023-01-30 17:13:42','2024-01-30 14:13:42'),('46d519c5dac9ea01e8281691afe832eeb3224ffc0004075efb631d01ed88c4929947401df6e5e41c',1487,1,NULL,'[\"user-app\"]',0,'2023-09-19 18:54:49','2023-09-19 18:54:49','2024-09-18 13:54:49'),('46db1bd45c6528ceaee1ba7b4a5c256344e10dfa5bf74c649dbfe88c43d227c28fa9d1ec4bda3713',187,1,NULL,'[\"user-app\"]',0,'2023-10-09 14:23:39','2023-10-09 14:23:39','2024-10-08 09:23:39'),('46e0fe93b4d6d8bd3f64cb915ee00940f3bc111aeaf7184ff8d0e5c462b83f0e557f134d136ef2da',465,1,NULL,'[\"user-app\"]',0,'2023-02-20 13:03:00','2023-02-20 13:03:00','2024-02-20 10:03:00'),('46e1f03efb9431d31f81f51ecf4daccdf8c31a5af175db9f24d5b8e0886b565e3d12a604894e3baa',1636,1,NULL,'[\"user-app\"]',0,'2023-06-24 12:31:33','2023-06-24 12:31:33','2024-06-23 07:31:33'),('46ec87e2d5c47f36269ff8ce0969bb038818485321579ea91bf54000a6e02e64a41d0e4b27da03ab',697,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:40:58','2023-01-25 18:40:58','2024-01-25 15:40:58'),('46ed10e8765270bf08306fb96307d06c19605ac9b4aa67cb6cfb7a19aedcf44ebf4226165a16d12b',1593,1,NULL,'[\"user-app\"]',0,'2023-10-02 00:40:11','2023-10-02 00:40:11','2024-09-30 19:40:11'),('46f39fce7a28de0d67b2ebe38daa40d6ca30099d61b4c9c0875ab43c110f0900dcc937ef56223c3e',1395,1,NULL,'[\"user-app\"]',0,'2023-05-09 20:27:09','2023-05-09 20:27:09','2024-05-08 16:27:09'),('46f668a1d4072ce56a80be56fe6c6fa3da8623d559f3f43e8940455e2024b84ca0df8509e6644e81',1650,1,NULL,'[\"user-app\"]',0,'2023-06-27 19:45:49','2023-06-27 19:45:49','2024-06-26 14:45:49'),('46fa5832094b4a42ce6fa8bc3171abde2170809dab5f118b3763876ba27aaf23c2026c1c0185a1e1',1267,1,NULL,'[\"user-app\"]',0,'2023-04-17 22:47:59','2023-04-17 22:47:59','2024-04-16 18:47:59'),('470149ace1e0a8a8bc7495ef3eff449b12672b884590566ef87bb022e9c3060664038b5cc1ef5f40',1011,1,NULL,'[\"user-app\"]',0,'2023-03-01 01:59:23','2023-03-01 01:59:23','2024-02-25 22:59:23'),('47019d3e8658bfd2233f358cc1caf64a61b27bab6f3350972cc231af962342c02604e94d168874af',542,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:57:52','2023-01-25 11:57:52','2024-01-25 08:57:52'),('4709fd03e14bd18c39db1ed522e47b21da69a4b4e0ea7f169832d044a1a9023782c58e0ff81528ea',1148,1,NULL,'[\"user-app\"]',0,'2023-07-12 14:31:03','2023-07-12 14:31:03','2024-07-11 09:31:03'),('4719e865a47cac677d86cc955ce45e2a13a7fea675a786dedf587d988a7e8909eb6d286eb4658128',62,1,NULL,'[\"user-app\"]',0,'2023-10-07 15:42:38','2023-10-07 15:42:38','2024-10-06 10:42:38'),('471a507b53f57dba98b83fcea501a4bcd6a583e4d6aba6a3ad7effa74d62cf57bc63adc79f06e519',2,1,NULL,'[\"user-app\"]',0,'2023-05-17 21:00:07','2023-05-17 21:00:07','2024-05-16 16:00:07'),('4736c492b6538b1a2f0d7e4e8e5d407093ae0aa07988001b110d8c6d310306258271e8e15ddbd47a',1875,1,NULL,'[\"user-app\"]',0,'2023-08-11 18:49:09','2023-08-11 18:49:09','2024-08-10 13:49:09'),('47495579bf5101c1aa6500301672f5c5a60c7b88732b84107f38f6455bdc544b63a89bbc44c2cb4e',970,1,NULL,'[\"user-app\"]',0,'2023-02-18 12:03:41','2023-02-18 12:03:41','2024-02-18 09:03:41'),('474de413144e21804786ba8cbc7149ee2a8167a31215542c1af779a430b5f76807f5bad4490df9f8',2,1,NULL,'[\"user-app\"]',0,'2023-09-10 16:59:29','2023-09-10 16:59:29','2024-09-09 11:59:29'),('4755139458bbe85cf0880c36880c0d1e3cb137b161cbe0425700b7be16ec3108ed5d92a66bf44562',263,1,NULL,'[\"user-app\"]',0,'2023-01-27 19:03:34','2023-01-27 19:03:34','2024-01-27 16:03:34'),('47568302222340a906bbffed3d358b0335220e8b9ad624cc9a68af5c40148d7f6e7b870629c13301',1745,1,NULL,'[\"user-app\"]',0,'2023-07-12 19:51:51','2023-07-12 19:51:51','2024-07-11 14:51:51'),('475a20231792e3c969a97261bae82e4a10d3d2cc5d9e2989c36ab6567b02f905a52b4f9f2b323395',819,1,NULL,'[\"user-app\"]',0,'2023-02-27 19:51:39','2023-02-27 19:51:39','2024-02-27 16:51:39'),('476bca0613ec089134411661649915810f469db0f11f917873add7f1e71e052da24e09d51a987e01',1219,1,NULL,'[\"user-app\"]',0,'2023-03-31 00:27:55','2023-03-31 00:27:55','2024-03-29 21:27:55'),('479837067b483ec22a22d7bc240c9bf40c00bd6a8a075c4a8e80f42b7fbf311ab32cb1d46f33657b',2,1,NULL,'[\"user-app\"]',0,'2023-07-29 03:33:59','2023-07-29 03:33:59','2024-07-27 22:33:59'),('479cc90d076d5602d9b788b9567c4e86184efdd755d9de7423cc09027319a5909a6194fc5e1f714c',688,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:13:03','2023-01-25 17:13:03','2024-01-25 14:13:03'),('47aa7510fbf4d3b42cc4528987b1af320a2b20d38443e71514f15e40e313498327a9ef68d188fb0c',2096,1,NULL,'[\"user-app\"]',0,'2023-10-04 19:29:05','2023-10-04 19:29:05','2024-10-03 14:29:05'),('47c3f4cb72a90154b33ab880cb561366e26c0564ce9fbb326178197930acba25443e1776b758623f',917,1,NULL,'[\"user-app\"]',0,'2023-10-03 01:37:23','2023-10-03 01:37:23','2024-10-01 20:37:23'),('47e81c2c41349bbffa5422b39a896d5ba8a9209c5ae58d0f08405fb5f5cc3e09119935d7966b2ee3',1417,1,NULL,'[\"user-app\"]',0,'2023-06-15 22:36:43','2023-06-15 22:36:43','2024-06-14 17:36:43'),('481dd4af85ac173cb36761c04ccf0548c31063c5587140c0a392ea56bc657e768a2483d7412002b3',415,1,NULL,'[\"user-app\"]',0,'2023-02-22 21:54:53','2023-02-22 21:54:53','2024-02-22 18:54:53'),('4830220de646346f45b0c64be367020356a7cf8bba4963bc7ccfde2ec5cd10bb1615bc0bdda938da',2,1,NULL,'[\"user-app\"]',0,'2023-07-23 15:45:12','2023-07-23 15:45:12','2024-07-22 10:45:12'),('483830612e5df97b37ca57fb7f62e4b402e9755a01092a01e6096777d2253f622def34727b027037',1920,1,NULL,'[\"user-app\"]',0,'2023-08-26 16:50:24','2023-08-26 16:50:24','2024-08-25 11:50:24'),('483b448f305f86af4ee90108a237b614e1b41a6f5384252c6a3ed7ae5b2e0e6b1ddb569379a0ca91',1820,1,NULL,'[\"user-app\"]',0,'2023-07-26 20:00:00','2023-07-26 20:00:00','2024-07-25 15:00:00'),('486740acaf48b1e9627412d287d4cc78923d13c5a5548225a05d321654f37c5bfb2514a57c27d9bd',1327,1,NULL,'[\"user-app\"]',0,'2023-04-25 21:05:46','2023-04-25 21:05:46','2024-04-24 17:05:46'),('48680c11971c85702368ec46f952193379b7a923dbd477e22d7029fc3142b5859d844bb1d2d3eef4',1878,1,NULL,'[\"user-app\"]',0,'2023-08-13 17:20:10','2023-08-13 17:20:10','2024-08-12 12:20:10'),('486a23bff63f497f8733d689474a4debc083ece2a4ac049ffec8bd0873b988e8ade7eb4f7a901dcc',270,1,NULL,'[\"user-app\"]',0,'2023-10-04 01:26:05','2023-10-04 01:26:05','2024-10-02 20:26:05'),('489fdfcae8236c2d8d5b43dd1e623f0c7fe4576ebcce9a7059195e7b32ff3cda8f0e0214c3b7852a',2118,1,NULL,'[\"user-app\"]',0,'2023-10-07 21:26:42','2023-10-07 21:26:42','2024-10-06 16:26:42'),('48aa3aa5b5cd78fabc176aafa9b0ad3c194bed2c58691f2a69aea2bdaccea65e445c816b8b5b1001',830,1,NULL,'[\"user-app\"]',0,'2023-02-23 00:18:19','2023-02-23 00:18:19','2024-02-22 21:18:19'),('48acaac2ea2a43d709a279c98983f59579768a3dff5efdd501ed764464e0065b6c33c42ac39ee8f4',1205,1,NULL,'[\"user-app\"]',0,'2023-03-28 18:09:02','2023-03-28 18:09:02','2024-03-27 15:09:02'),('48b42706bf0a820e7b1c843186876d336567cf13113cf7b63ca0bdf80ec9f0c78afbaacb918209f7',164,1,NULL,'[\"user-app\"]',0,'2023-03-10 18:30:28','2023-03-10 18:30:28','2024-03-09 15:30:28'),('48c71fb058afb08756dcc5d175cd2373ade235d04df15531f95e5c85773379d462f89740f24b4650',1483,1,NULL,'[\"user-app\"]',0,'2023-05-23 18:05:25','2023-05-23 18:05:25','2024-05-22 13:05:25'),('48f1bbf82a5266db38d04e5e2b225594b9b34be1c08cdb6e143ab757606821ba291d7f51508f5af4',1152,1,NULL,'[\"user-app\"]',0,'2023-03-13 22:12:08','2023-03-13 22:12:08','2024-03-12 19:12:08'),('48fd1896de448caf706fb2266a476cb95be0dbda4b50fd4c3f4b32e5aae4d6cc6f354468add1a1fc',933,1,NULL,'[\"user-app\"]',0,'2023-02-15 21:05:44','2023-02-15 21:05:44','2024-02-15 18:05:44'),('490e2f5e88ea03e7617afd8b3681710192a55cec2e19d3b87bcae56d9873755086dae9e3da5e6f52',154,1,NULL,'[\"user-app\"]',0,'2023-02-07 19:02:04','2023-02-07 19:02:04','2024-02-07 16:02:04'),('492631282b1efad48bfaf941ab495ddafe0e17262ee09b059db87fd2af1d935539012a30a647ff6d',2,1,NULL,'[\"user-app\"]',0,'2023-09-10 13:31:06','2023-09-10 13:31:06','2024-09-09 08:31:06'),('492c1d7776ce271b4f0b3ab5eda5509f11dd8984fa44ba43ef6d51ab0a3d6bc0e5109bd46b7e56ec',2,1,NULL,'[\"user-app\"]',0,'2023-04-08 21:19:10','2023-04-08 21:19:10','2024-04-07 17:19:10'),('4939b9a180d49a3e976fc54386310754fbeaa26078e9859c7133a2d7b2d84825733621a95b47ca83',1809,1,NULL,'[\"user-app\"]',0,'2023-07-25 05:55:32','2023-07-25 05:55:32','2024-07-24 00:55:32'),('493b0fe5d83140690c84645431e55122067aea9c6a138f1a0d1029130d3c32ac4640af9c838b1641',2,1,NULL,'[\"user-app\"]',0,'2023-05-09 19:55:20','2023-05-09 19:55:20','2024-05-08 15:55:20'),('493de2dc5de46a8ce6b4b602dfd1d83adc1bed3a6b1acb244b48345e9687e90abae6c7175f5e2af5',2,1,NULL,'[\"user-app\"]',0,'2023-06-01 15:19:23','2023-06-01 15:19:23','2024-05-31 10:19:23'),('49664a036b2c10979242efffa54610d26ef595d56f361cba51faff4779326a1f85982b17e094ce84',2,1,NULL,'[\"user-app\"]',0,'2023-04-23 14:37:14','2023-04-23 14:37:14','2024-04-22 10:37:14'),('496bc5d307631a93830688c214c1d72aeef390de0d15017bd27b2297e8a42ab0dc5e3d5f5dbad3e8',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 19:07:16','2023-10-05 19:07:16','2024-10-04 14:07:16'),('4978f1d6061977311d3a8be4bb3b7e379702b5c47d536543e777237387e9477960812bd4a3aace70',62,1,NULL,'[\"user-app\"]',0,'2023-04-07 16:02:43','2023-04-07 16:02:43','2024-04-06 12:02:43'),('4985b131cd494177400c6d534b8655fe2138e74f8d84537f203b4d946c466a510c22e0fa4fb21329',359,1,NULL,'[\"user-app\"]',0,'2023-02-17 13:11:56','2023-02-17 13:11:56','2024-02-17 10:11:56'),('49889f144b4e07cb55f12ee83d9d26aec6ad25134accf5f531bc4f0596c55692bc3c159252d0b526',484,1,NULL,'[\"user-app\"]',0,'2023-04-27 17:52:16','2023-04-27 17:52:16','2024-04-26 13:52:15'),('4996d35f316b5f51ffccf64b28dd97194136442adaa01231703caf792875ccbaf17cf4a6c29c5ca7',2,1,NULL,'[\"user-app\"]',0,'2023-09-07 04:47:48','2023-09-07 04:47:48','2024-09-05 23:47:47'),('49a8e9e572084b07f719b618aa6aa863edb7a57d3eb839f6454034f409936a3da701d87540e84b6e',237,1,NULL,'[\"user-app\"]',0,'2023-03-25 14:43:27','2023-03-25 14:43:27','2024-03-24 11:43:27'),('49b22959c5385b80f3e8cd7477f8daeec62f10fbe7ac676d6736ec97d9d1b6c0dc3dff35026327b2',2,1,NULL,'[\"user-app\"]',0,'2023-07-22 13:58:33','2023-07-22 13:58:33','2024-07-21 08:58:33'),('49cb214a59bdabd969c672ba2d9a6441a803d151e4ca94ba0d44a960e80af7d2ffad6ef128021712',2,1,NULL,'[\"user-app\"]',0,'2023-07-27 11:07:09','2023-07-27 11:07:09','2024-07-26 06:07:09'),('49d041f5f539271f3544bb34f6c7465f4788ac7be3e00e33c53d20b46e01501b56ff11393e49dc75',2,1,NULL,'[\"user-app\"]',0,'2023-03-05 16:21:47','2023-03-05 16:21:47','2024-03-04 13:21:47'),('49f36dd350f2dea767d3d3c5aaea22bfa7771a6bba7cbdc3e5f26ff129d608844913cb1fea73d31c',400,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:14:34','2023-01-25 11:14:34','2024-01-25 08:14:34'),('49fa28b8ff5b8eb565d1239d323ae280abdd6d105378e10718d235e9064d57e5ee53d2ef1f8c4f08',1050,1,NULL,'[\"user-app\"]',0,'2023-02-28 17:39:38','2023-02-28 17:39:38','2024-02-28 14:39:38'),('4a13d9bef66c0b89deaf949444eb50b248a2cba63f3bbb3a3f1fc54995bf627de6e28c0ccac12b0f',2,1,NULL,'[\"user-app\"]',0,'2023-03-19 02:05:55','2023-03-19 02:05:55','2024-03-17 23:05:55'),('4a5dac745dc051fe0c9bd359e648f29c93fcbbbaa7f39f2c009f6aea3d8460fe2ab6c8c0220bef8a',2,1,NULL,'[\"user-app\"]',0,'2023-06-19 17:14:49','2023-06-19 17:14:49','2024-06-18 12:14:49'),('4a7146f57bdb9923b5d7a0c925dd0779fbb58f6ef938dcc0fb33a8ae414b50aa28dec3140893734a',154,1,NULL,'[\"user-app\"]',0,'2023-03-22 21:01:48','2023-03-22 21:01:48','2024-03-21 18:01:48'),('4a78d9fdee7b48ccb7478511603ba223357bf83d4699169e55dd04333cda001b088d7f7da888ada0',648,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:41:09','2023-01-25 11:41:09','2024-01-25 08:41:09'),('4a82dca88e6a8e201402de58a36a88f8d100a49c07ecf7c094d80536529e4c26ba06e52d9416f9e5',2,1,NULL,'[\"user-app\"]',0,'2023-08-23 12:10:32','2023-08-23 12:10:32','2024-08-22 07:10:32'),('4a840c76c9ce23acd336f099c60a45551c2cb53a1fadcfee9e3f50b12fa559703546013909edd5dc',1408,1,NULL,'[\"user-app\"]',0,'2023-09-25 11:41:33','2023-09-25 11:41:33','2024-09-24 06:41:33'),('4a95fa47fa1498a386b8a60fd581299b0df56ef1141c5b28bbf6ae42fa2260126e2266d92b66df94',1885,1,NULL,'[\"user-app\"]',0,'2023-08-17 14:30:45','2023-08-17 14:30:45','2024-08-16 09:30:45'),('4aa0fc770fb4bc948ff6e2cfe32e68191e8bde0be56b688ce4d0f182781667772412066c14ab97e4',424,1,NULL,'[\"user-app\"]',0,'2023-02-21 11:17:54','2023-02-21 11:17:54','2024-02-21 08:17:54'),('4aa234839c2c9d11344e7645a43d842b0e354edf540148c654cec3f466262c3356d9e51655f964b3',2,1,NULL,'[\"user-app\"]',0,'2023-09-15 00:06:48','2023-09-15 00:06:48','2024-09-13 19:06:48'),('4adbfdcfb1bb73119f69d8c1b08ea42fd8b817c3275c6fac86632564bbc9813659ae5ce23bff2ac3',1126,1,NULL,'[\"user-app\"]',0,'2023-04-19 01:01:40','2023-04-19 01:01:40','2024-04-17 21:01:40'),('4ae82a2cff09290e45b2a3044d5309ae51e7e88574deb7ea0e081b3fb84b61dfa7bd3c5b4bc0034d',1309,1,NULL,'[\"user-app\"]',0,'2023-04-23 14:38:35','2023-04-23 14:38:35','2024-04-22 10:38:35'),('4aea637787e2f1eba7ddce59d39ad65bc34fa569555939050c8d2322a83f8c11f31efb0d64f70e36',30,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:33:01','2023-01-25 19:33:01','2024-01-25 16:33:01'),('4af0136aa4e81f1bc8b4ce2890a79003f0176869076fc6dd3859027db598d9fff0d987dc528cae48',114,1,NULL,'[\"user-app\"]',0,'2023-10-07 16:05:27','2023-10-07 16:05:27','2024-10-06 11:05:27'),('4af1b72a979729e8f9e50a9799cf33b484e43af8e1085e455719c22eb242e309446af347a21af424',2,1,NULL,'[\"user-app\"]',0,'2023-09-19 20:22:58','2023-09-19 20:22:58','2024-09-18 15:22:58'),('4af7b877afaffc574be671df07f9227d4b70e688d100161d11bc75dcf1aaa461246fd2535c7e6b1d',1060,1,NULL,'[\"user-app\"]',0,'2023-02-23 22:26:54','2023-02-23 22:26:54','2024-02-23 19:26:54'),('4b10522a3da03aecb2144ffd251c5dfc7b891915d7185a96ddb32b6968af2931416519e07605734a',2,1,NULL,'[\"user-app\"]',0,'2023-07-02 20:36:40','2023-07-02 20:36:40','2024-07-01 15:36:40'),('4b15762c13021843cb67f41a98e5fd3fbc14f7e3f200c942dec1cc6990e1d0d0d5649d990ca4aa3b',1450,1,NULL,'[\"user-app\"]',0,'2023-05-15 12:57:55','2023-05-15 12:57:55','2024-05-14 08:57:55'),('4b23c2591d09dfe330c04c841ee5ab15179aaedaa56321a338058dae4dc2719607f4d96630b5813e',2,1,NULL,'[\"user-app\"]',0,'2023-09-19 04:11:53','2023-09-19 04:11:53','2024-09-17 23:11:53'),('4b496667e0cbb2b33db7736f31ddc94d43a91a4133ec11c39d2e1c99159f6556a207de2e23640e66',2035,1,NULL,'[\"user-app\"]',0,'2023-09-23 16:55:38','2023-09-23 16:55:38','2024-09-22 11:55:38'),('4b4f106fa054061f050963f68878dcd9372f7c0fe09e8ee10d7c8400b55d528ab7809b3a7fc439b8',993,1,NULL,'[\"user-app\"]',0,'2023-02-19 19:10:52','2023-02-19 19:10:52','2024-02-19 16:10:52'),('4b6a67b486ead462d6a17292659013cd04ad5ff7561c5613a73cf910cb78a4d5eea444014147afbc',1210,1,NULL,'[\"user-app\"]',0,'2023-03-29 16:32:06','2023-03-29 16:32:06','2024-03-28 13:32:06'),('4b79aaaadba5a01b5755acfb1577647010cdcc81406fac76f243fb73fb38596a5bea3f3d7d0f1ed5',1043,1,NULL,'[\"user-app\"]',0,'2023-05-05 20:49:14','2023-05-05 20:49:14','2024-05-04 16:49:14'),('4b7d58af9e89720d62cd2f4b0d270dba72e6c1fed65d4a0070f09d23f45ccced94e4f89902013c38',2,1,NULL,'[\"user-app\"]',0,'2023-08-22 17:27:59','2023-08-22 17:27:59','2024-08-21 12:27:59'),('4b937b2a067601eabd79672c759029655360de4f7ff6d70c7f1b66abb1d9e415b38b59ff5eb83cfe',2,1,NULL,'[\"user-app\"]',0,'2023-09-12 21:36:02','2023-09-12 21:36:02','2024-09-11 16:36:02'),('4b9d4b5c4b41d50b138337b1b75424b9708a7f94ff50d5eeb77ada17f06133857ca0c9e2a5bc3adc',2,1,NULL,'[\"user-app\"]',0,'2023-05-09 12:32:24','2023-05-09 12:32:24','2024-05-08 08:32:24'),('4bc4d909821229d356786269aab95f2374317b05dfd322276901eaac4ee4749e339314a838c9bd98',2,1,NULL,'[\"user-app\"]',0,'2023-02-21 22:43:17','2023-02-21 22:43:17','2024-02-21 19:43:17'),('4bda52544d7ef232451372c451ebe4f6a86764cb94d2a867dfc70e8438203041b7343865fd42cd9e',1401,1,NULL,'[\"user-app\"]',0,'2023-05-09 21:36:56','2023-05-09 21:36:56','2024-05-08 17:36:56'),('4bfd9977e874e8addbadc177c52ce564102fcd12207d42889a8ed685d92a9f69b263b0a6df623255',1678,1,NULL,'[\"user-app\"]',0,'2023-07-01 14:50:23','2023-07-01 14:50:23','2024-06-30 09:50:23'),('4c05982fb4e9bd3aea58b30318ad154725b81db2f4179239a0776022615d7456a4e747e48810580a',1612,1,NULL,'[\"user-app\"]',0,'2023-06-21 15:51:35','2023-06-21 15:51:35','2024-06-20 10:51:35'),('4c0ce3825f0cbc737ff228a598e91899f471ea1d3a0b0675a5e18d1c7f389a639463e8ec4753c3ea',651,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:04:27','2023-01-25 12:04:27','2024-01-25 09:04:27'),('4c0fcae4fc7221b12b9e259e9f1943c2bf3919b855207c1d491dd6d2e2e9aff8b8ee6e37465662d4',2,1,NULL,'[\"user-app\"]',0,'2023-07-28 17:03:46','2023-07-28 17:03:46','2024-07-27 12:03:46'),('4c20c68e35130d2c53e73969b2dff4eed61001773f9e3f22c57f20f8a313d1e3542074293156ccb6',81,1,NULL,'[\"user-app\"]',0,'2023-08-03 12:53:59','2023-08-03 12:53:59','2024-08-02 07:53:59'),('4c21778c7138929f156ae60e16a771812ac6c1866ad682715fc86324942caa22f4b16f4e16d7f1d8',251,1,NULL,'[\"user-app\"]',0,'2023-05-11 22:48:33','2023-05-11 22:48:33','2024-05-10 18:48:33'),('4c4d31bbb83d6d606a406d7de550e70d424a68880e43334cd30fa75fd16960a10c95211cdd2b131c',882,1,NULL,'[\"user-app\"]',0,'2023-02-08 15:22:08','2023-02-08 15:22:08','2024-02-08 12:22:08'),('4c4d68cce75d0744a5d78b60fd9602514cc125c1794acc6e28999ba3a901fc29c41342f5fe920e03',2,1,NULL,'[\"user-app\"]',0,'2023-04-12 22:50:46','2023-04-12 22:50:46','2024-04-11 18:50:46'),('4c533fc030e69fcdfe84b5b45f05a6d3097b71894a0262b2d1b238e2cd5df4d901763dec712b0170',9,1,NULL,'[\"user-app\"]',0,'2023-06-16 22:42:50','2023-06-16 22:42:50','2024-06-15 17:42:50'),('4c5a29fa8c923bd688c31742441d316a0d7caad5f3481d0c51cab0b94613221ed966daf3427340fd',1755,1,NULL,'[\"user-app\"]',0,'2023-07-13 23:32:12','2023-07-13 23:32:12','2024-07-12 18:32:12'),('4c621dd574c1fb8507ba962173ec03a33da3637d38fe90ea90baab04187e30f6519ed8c665f1fb57',415,1,NULL,'[\"user-app\"]',0,'2023-01-30 17:20:13','2023-01-30 17:20:13','2024-01-30 14:20:13'),('4c6aaee8737c86803c5f1def6b8530fce7883e528835a522e4d4777bfe0c6ea75d456d3384294102',1285,1,NULL,'[\"user-app\"]',0,'2023-04-20 17:21:01','2023-04-20 17:21:01','2024-04-19 13:21:01'),('4c7acc2046cfe1f8366d407c407643cf967933d95de7cd0b94f4842642f6891fed858cdaf1fc23a0',1539,1,NULL,'[\"user-app\"]',0,'2023-06-14 17:28:13','2023-06-14 17:28:13','2024-06-13 12:28:13'),('4c8c969786ffffac12f28c8f1edc0fe8a63cda0dea3732dd78e94774f30ed7e5f0f90c4484642e85',2,1,NULL,'[\"user-app\"]',0,'2023-07-13 02:42:39','2023-07-13 02:42:39','2024-07-11 21:42:39'),('4c8dd101015dad0adac493ca52ba0e84e22fb776ed3222fd4126488bbdcd727f38f3d1f87012cf43',2,1,NULL,'[\"user-app\"]',0,'2023-09-15 20:59:39','2023-09-15 20:59:39','2024-09-14 15:59:39'),('4cc3f2d161a595d96cea5ef8278bc7fa527f293a6f43547d60f479ef8511ef8fb2df65a53f98542f',200,1,NULL,'[\"user-app\"]',0,'2023-02-02 23:11:09','2023-02-02 23:11:09','2024-02-02 20:11:09'),('4cd441ce50a11479534a007ce7c3169ab4a49d844f74703742b3366a3ffc6818e4e2970bef81b945',2,1,NULL,'[\"user-app\"]',0,'2023-06-30 04:31:08','2023-06-30 04:31:08','2024-06-28 23:31:08'),('4ce70ecb28f9766f159beeb1acd674a60e1a431dc80648b1098eafe5a133fb94835206a8e4e50d2d',1296,1,NULL,'[\"user-app\"]',0,'2023-04-21 18:47:19','2023-04-21 18:47:19','2024-04-20 14:47:19'),('4cf7016438932be519664f6419a5de986239641661b335d0abd61fcc99270bb43a7cfa4ef4cf50b8',1713,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:03:10','2023-07-08 01:03:10','2024-07-06 20:03:10'),('4cfbacd763fdca20954e19a51a1ed589cb51d80e8b397cbbe5fd01aebfc3facb5ee77d45f005cfc4',2,1,NULL,'[\"user-app\"]',0,'2023-09-16 16:10:34','2023-09-16 16:10:34','2024-09-15 11:10:34'),('4d0516382c5ad03278c107f44d7276b0139ee305c9ecc675c2aacd1c04af5a78c751c949fa9881cb',2,1,NULL,'[\"user-app\"]',0,'2023-09-03 03:39:24','2023-09-03 03:39:24','2024-09-01 22:39:24'),('4d3957d98de31c0cfbb77c19f42abb1c86e645543aec858b2815fc3eba75420d7382f3b8ebfdb88f',642,1,NULL,'[\"user-app\"]',0,'2023-01-25 10:11:25','2023-01-25 10:11:25','2024-01-25 07:11:25'),('4d631d5a8e631e2e23e44a180116112677053689abb274cf5792c349fa5ffb5ba3b6b414b7e1abde',1005,1,NULL,'[\"user-app\"]',0,'2023-02-22 18:51:56','2023-02-22 18:51:56','2024-02-22 15:51:56'),('4d87c0d62c3bec9f3015c27b2af707b6801d85739d8f4a70fb1ec7606f142991d61c866eed77eb5d',1457,1,NULL,'[\"user-app\"]',0,'2023-05-15 21:50:57','2023-05-15 21:50:57','2024-05-14 17:50:57'),('4d8a5ed90e4be9c9fc3027ae949f2e33562cabf19dff89939d3263b9bdeb5d11efc152fc8331dfaf',2045,1,NULL,'[\"user-app\"]',0,'2023-09-24 21:49:06','2023-09-24 21:49:06','2024-09-23 16:49:06'),('4d8cd2152ccecd1d58bcd7c7e9f22db73de5127f7dc400f8e95c8eb168fba785ba223c6615fb690f',2,1,NULL,'[\"user-app\"]',0,'2023-05-09 14:47:29','2023-05-09 14:47:29','2024-05-08 10:47:29'),('4d953987cd7b3e8d699cafddc6e602d7cd8ed8c29b9881761b3ce51000792d170ea34b4b50c14ff9',632,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:11:28','2023-01-25 03:11:28','2024-01-25 00:11:28'),('4dd4105fcdf29bc8f6b7cc15bfdb104a4386c181a6aee0c3a74ba2effa4ee13c807abbef8762c53a',2,1,NULL,'[\"user-app\"]',0,'2023-09-11 14:40:47','2023-09-11 14:40:47','2024-09-10 09:40:47'),('4de23c6cb1158e6f1fac7960d0066d6b90de569d57cad438dde6f9788840828c1a257975c6096f38',1528,1,NULL,'[\"user-app\"]',0,'2023-06-04 23:45:21','2023-06-04 23:45:21','2024-06-03 18:45:21'),('4de713ca2702c6930e25d34925e734695701c5fd9605a2da0987d24dc3cd85991264b9de747c4dd2',1594,1,NULL,'[\"user-app\"]',0,'2023-06-18 15:55:30','2023-06-18 15:55:30','2024-06-17 10:55:30'),('4e1ce1d21dac792cb41a831a4f5f78df6822d7b715fba4c54f28140816171e45b32ca1688426379b',1318,1,NULL,'[\"user-app\"]',0,'2023-04-23 20:47:22','2023-04-23 20:47:22','2024-04-22 16:47:22'),('4e1f7024ceb4cbcd421234c849fe09d4c162806439ee520529b36ad64f44f9f75386c938c69e5e11',56,1,NULL,'[\"user-app\"]',0,'2023-09-30 11:56:07','2023-09-30 11:56:07','2024-09-29 06:56:07'),('4e33becb2ec765a8c23f527fc605a56bdd6e8287a608805471cb594314bd7dcb6e6e76d55b5c2347',2,1,NULL,'[\"user-app\"]',0,'2023-09-02 22:45:24','2023-09-02 22:45:24','2024-09-01 17:45:24'),('4e3a1c2cc57f8501147610e1e41326577ec3a3344284a3847a0c986fdbfeb53ac480203a7600fa31',2,1,NULL,'[\"user-app\"]',0,'2023-06-19 23:35:15','2023-06-19 23:35:15','2024-06-18 18:35:15'),('4e532a43c98b4a88bea3a2364f37ef114c5b7f89355f24aeb7cf7bce96fad063401efd2fa2a1124d',2,1,NULL,'[\"user-app\"]',0,'2023-09-08 23:32:15','2023-09-08 23:32:15','2024-09-07 18:32:15'),('4e5bcd09398cb7761f06c3a5b3ceaca89f50358b021b22b79b0fa4b0ca2c0654a859182e746cbf3f',36,1,NULL,'[\"user-app\"]',0,'2023-02-13 23:48:41','2023-02-13 23:48:41','2024-02-13 20:48:41'),('4e5ef19314d1f220d05eb2c03392ffcfcd6aade73294e8138160e8dbd8650a3b44883ad11399a9a4',2,1,NULL,'[\"user-app\"]',0,'2023-02-01 12:29:24','2023-02-01 12:29:24','2024-02-01 09:29:24'),('4e64b836fd117c445bc31eeca79ef3b99b1c289785275186da2a15e76c06b47393dfaf746a57a066',1412,1,NULL,'[\"user-app\"]',0,'2023-05-15 12:18:17','2023-05-15 12:18:17','2024-05-14 08:18:17'),('4e7d9184b6b86c167174ebc907a0f5c238aa1d118e447ba0cb66d6df27d7f5e99e64e49ca14de9c6',804,1,NULL,'[\"user-app\"]',0,'2023-01-30 14:23:04','2023-01-30 14:23:04','2024-01-30 11:23:04'),('4e8d588308fab80a33a5e9285c1e21b97cc3bef6bae78621ff2e7e286a8667008c5fbf155181fcd1',1838,1,NULL,'[\"user-app\"]',0,'2023-09-27 17:21:44','2023-09-27 17:21:44','2024-09-26 12:21:44'),('4e95da3b5e86d512e3b4fba0cc7487e057ec5df2af0bafe36be5f8e63c6a6b85b0a2922362d6b234',1975,1,NULL,'[\"user-app\"]',0,'2023-09-11 22:56:10','2023-09-11 22:56:10','2024-09-10 17:56:10'),('4ebc67033998915178f4d897cb77416d479701e3a028b6a751357153c5aa27ad1468ee23a7694517',907,1,NULL,'[\"user-app\"]',0,'2023-02-11 15:09:55','2023-02-11 15:09:55','2024-02-11 12:09:55'),('4ec7f93778275e59ce54ee605b2dfaa2055db880e1ca2086c41c24f6190405279d8568ffa15bc4a6',2,1,NULL,'[\"user-app\"]',0,'2023-07-22 15:52:59','2023-07-22 15:52:59','2024-07-21 10:52:59'),('4ed4c5e64a98f1cc30beace33655589dafb36a466a5ac00fa12ca2509ec32e0f28810329eba8e6da',1233,1,NULL,'[\"user-app\"]',0,'2023-04-05 15:12:12','2023-04-05 15:12:12','2024-04-04 11:12:12'),('4ee85748d6d69492d29b2f9371098b4011989d23caa4e1ddadc95c1c0d2f18007927f343427d558c',917,1,NULL,'[\"user-app\"]',0,'2023-02-20 23:27:12','2023-02-20 23:27:12','2024-02-20 20:27:12'),('4ef72d3aea00d6405cde9b771b1d6ccfac0de0bd96372b1ce5208bafcd8aa6abcd87a349ef5db9d4',2,1,NULL,'[\"user-app\"]',0,'2023-04-08 21:21:17','2023-04-08 21:21:17','2024-04-07 17:21:17'),('4f0b96c770300946b93825096b5f5d3ca69ebc3d1c7ade8a394c2b8c032159750b072ebd74d12207',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 13:15:20','2023-09-04 13:15:20','2024-09-03 08:15:20'),('4f1a369455f918522119526d63a50de117fcc616d0c4bdd7cb553f8cafbc3fc5e7ab59b568c64dc1',2,1,NULL,'[\"user-app\"]',0,'2023-03-15 02:29:00','2023-03-15 02:29:00','2024-03-13 23:29:00'),('4f1d77708747651f91605ff3e89121e75cb8c0dd42054e4474924130d66b6dff430aa881507b2f4a',822,1,NULL,'[\"user-app\"]',0,'2023-07-05 17:03:38','2023-07-05 17:03:38','2024-07-04 12:03:38'),('4f1f2e73e398cb931c10e20ef8b7c9977ad67922b45de29ffa624dc3d9206d8b9bf80001a40a3545',122,1,NULL,'[\"user-app\"]',0,'2023-01-26 23:09:08','2023-01-26 23:09:08','2024-01-26 20:09:08'),('4f227857e22e105b93e4cd0e9876467b8cf64901c24bc18ee7c7c4bd98fc0495d4b89a4f98406fe2',1084,1,NULL,'[\"user-app\"]',0,'2023-02-26 13:33:54','2023-02-26 13:33:54','2024-02-26 10:33:54'),('4f2e2eedaec409973d40eae4a7d4a13df27cf96ca3cf3c3bbf5b02ec3696de6fa47f684f0e83d225',1023,1,NULL,'[\"user-app\"]',0,'2023-03-05 12:21:02','2023-03-05 12:21:02','2024-03-04 09:21:02'),('4f32b8740e04c0287436c91230cb79dc8b9217ba3600565c0c88ed4bd7ede5890378f2c3e77f55a7',707,1,NULL,'[\"user-app\"]',0,'2023-01-25 22:04:26','2023-01-25 22:04:26','2024-01-25 19:04:26'),('4f3950ce4f940ea078e926553d6e112b09debadac021372225673059a343e8be504b9a5c1153eb6a',1581,1,NULL,'[\"user-app\"]',0,'2023-06-17 16:36:21','2023-06-17 16:36:21','2024-06-16 11:36:21'),('4f3e66a9e2da69bfd3094b2cccd5318058b182bb367956bb595b7ddcbc1027becbc8a95e7af51200',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 05:24:39','2023-01-25 05:24:39','2024-01-25 02:24:39'),('4f467d8ed02ab475720fdb95fe332eb7ec24f2202bf37f9f28d9932195ecbf81fd8b5b7baea57bb7',1351,1,NULL,'[\"user-app\"]',0,'2023-05-01 00:04:35','2023-05-01 00:04:35','2024-04-28 20:04:35'),('4f4a3a47b298c5b0b83aa0cb0fb90075456e1a5a4dd451014c85a3e19329a81323814f96e67bec1b',2,1,NULL,'[\"user-app\"]',0,'2023-08-03 22:22:29','2023-08-03 22:22:29','2024-08-02 17:22:29'),('4f4ec2deaf42f33ba733365cd39742fbbf07b2f8bd24d2b0389e751a49efc4179da95cfa73f23918',754,1,NULL,'[\"user-app\"]',0,'2023-01-27 12:21:21','2023-01-27 12:21:21','2024-01-27 09:21:21'),('4f57d7ef9626961b912eb240a83c01e341fc67f1c0d284c009fa5a88b274f6d0b45b246c07479292',524,1,NULL,'[\"user-app\"]',0,'2023-06-17 23:23:24','2023-06-17 23:23:24','2024-06-16 18:23:24'),('4f6632d3fde9dcdd028a36ee830e3877c2d728dd0838999b7603c4d989cf6cf0f9dfc9fea4e76dd9',50,1,NULL,'[\"user-app\"]',0,'2023-02-06 10:57:32','2023-02-06 10:57:32','2024-02-06 07:57:32'),('4f7f382a2a4bad4ef2c10dc93c4226bb947f8f489312c570671bec914631808e5593807998c84427',2,1,NULL,'[\"user-app\"]',0,'2023-06-04 13:42:19','2023-06-04 13:42:19','2024-06-03 08:42:19'),('4f90d588dc5df1489733b0607531e1968d363d7f361e92e09cbdeaf9be1ea58d6bb71c778eee0d55',303,1,NULL,'[\"user-app\"]',0,'2023-08-16 03:12:44','2023-08-16 03:12:44','2024-08-14 22:12:44'),('4f9aff57c9d113762c2acb1c83f5af27bcaa78ad91df995e961d80ae692f3801fc1ded0d70f36330',752,1,NULL,'[\"user-app\"]',0,'2023-01-27 10:59:39','2023-01-27 10:59:39','2024-01-27 07:59:39'),('4f9e432ff65f10a74f4c41b2810790266160a57f8dcffb9f8cbc9389b2c47e359fb1ff3f24b7ad6e',754,1,NULL,'[\"user-app\"]',0,'2023-02-12 15:14:37','2023-02-12 15:14:37','2024-02-12 12:14:37'),('4fc32a66beafa25acd8e7bd9e15a67faad697a989b17b09de2e2a1283d84add10c480070d43e1518',1011,1,NULL,'[\"user-app\"]',0,'2023-06-01 21:28:05','2023-06-01 21:28:05','2024-05-31 16:28:05'),('4fcdb55b690b0e239288646fbc6368ff02a5072ef1343f689bbdba016d54fcde5788206e616ccf2c',2,1,NULL,'[\"user-app\"]',0,'2023-03-01 11:54:11','2023-03-01 11:54:11','2024-02-29 08:54:11'),('4fd3a5cc15acca8ee6908ee5a93764591636f0216735cfbc9a591e424ac1ad7bb3b4014719513aee',1263,1,NULL,'[\"user-app\"]',0,'2023-04-16 19:29:13','2023-04-16 19:29:13','2024-04-15 15:29:13'),('4fdca8e6b4a31cac3562b87b353267b348798a4655754febf3073a5febefe9047fc819324535d938',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 22:51:59','2023-03-29 22:51:59','2024-03-28 19:51:59'),('4fe436ca5f485e3c794d5f0b4abb78696ba75eeee74ba0898a0e34ddfeb8fa1f217b2f8b9381d8b4',1487,1,NULL,'[\"user-app\"]',0,'2023-06-05 22:27:57','2023-06-05 22:27:57','2024-06-04 17:27:57'),('4fea8d31368ff1b0daeacfa2830562a06845ae4bd47dc0bf81bcd952843e9f49cd01deaa2104470b',1882,1,NULL,'[\"user-app\"]',0,'2023-08-15 20:10:19','2023-08-15 20:10:19','2024-08-14 15:10:19'),('4fec3c1264241625ef20051a93e7b735933132ec79cd3ee98f9e5fc40564c51e9b938f65eeb00689',638,1,NULL,'[\"user-app\"]',0,'2023-01-25 07:33:14','2023-01-25 07:33:14','2024-01-25 04:33:14'),('4ffaaad6ed53c44165a139cbbf8c67af7ae24bc3f7fdfc7919fd52eea549a72a0b1968072373a2f6',1086,1,NULL,'[\"user-app\"]',0,'2023-02-26 21:44:46','2023-02-26 21:44:46','2024-02-26 18:44:46'),('5026a68b314c4d96b574d1391c95920e94d56ba95bbc95c4c000178fcb19cb5a31f8cdf1f7462a3a',2,1,NULL,'[\"user-app\"]',0,'2023-08-18 22:21:37','2023-08-18 22:21:37','2024-08-17 17:21:37'),('5033ec6c6f10a77fc8dd23fc0977772d283e118f0fed0b72b2b232dec5b537422bf7e88e827c64f2',605,1,NULL,'[\"user-app\"]',0,'2023-06-20 00:23:01','2023-06-20 00:23:01','2024-06-18 19:23:01'),('503b612b49b0416141a727e23ccb2447433730521fc3f01b5bbd9c25426014e9a2cc15484090e260',2,1,NULL,'[\"user-app\"]',0,'2023-05-02 14:50:18','2023-05-02 14:50:18','2024-05-01 10:50:18'),('5046e2648511de48897ac06c90dd9ea3c44eb4ac3695c09099d0add0e3634d6431e7b85d9d7f8d26',928,1,NULL,'[\"user-app\"]',0,'2023-02-15 00:50:05','2023-02-15 00:50:05','2024-02-14 21:50:05'),('504a20a235fddc67ea6c715c6d4976d738f2709ea5f9a9d8b14b6df3bf472384cd4faf9c40176bab',2,1,NULL,'[\"user-app\"]',0,'2023-08-07 18:16:43','2023-08-07 18:16:43','2024-08-06 13:16:43'),('504bfe56adafa09057d97f975f648c71afff21a90d103c2c7b96ce71666847123b7bbaef7cc1e79c',2,1,NULL,'[\"user-app\"]',0,'2023-02-01 16:41:31','2023-02-01 16:41:31','2024-02-01 13:41:31'),('507b3df8c0d85b41eb6b57871add3ca61477826c5fbd0a86d94a415b215348ffab41c282155f5fb3',177,1,NULL,'[\"user-app\"]',0,'2023-09-19 02:56:57','2023-09-19 02:56:57','2024-09-17 21:56:57'),('50d2cf89ddc0eb24e73b5cc2399ca9de5840e169b90c82977472926c7def0477390daf30cefeac30',152,1,NULL,'[\"user-app\"]',0,'2023-02-10 21:30:48','2023-02-10 21:30:48','2024-02-10 18:30:48'),('50e35a334d6bfde41267305150f477d0c440b9677f4678983ea378851b006ca5aef01d54318f1beb',2,1,NULL,'[\"user-app\"]',0,'2023-04-09 13:48:04','2023-04-09 13:48:04','2024-04-08 09:48:04'),('50ef6b8a1d41de4b43b81323e6ebfd0f9967b714f294298772fa4f9c1143d60fa4fab7649b975e90',2,1,NULL,'[\"user-app\"]',0,'2023-02-25 20:03:49','2023-02-25 20:03:49','2024-02-25 17:03:49'),('50f1d0b934ba49b607f710f4555b39c2565b2e3280a3b34411e029737447698482104bf897edea8b',702,1,NULL,'[\"user-app\"]',0,'2023-01-28 12:21:17','2023-01-28 12:21:17','2024-01-28 09:21:17'),('50f817faf161414aaa954cc083e1b15a5c6c99bfd26a71cbf99e6553730eefccf8a49da5cb796822',2,1,NULL,'[\"user-app\"]',0,'2023-06-19 00:45:36','2023-06-19 00:45:36','2024-06-17 19:45:36'),('51073f6365092743fe6763171d3d1d9b761ff4a57787a131589f415d9f08c1f72d5548aade15a06a',593,1,NULL,'[\"user-app\"]',0,'2023-01-30 15:37:13','2023-01-30 15:37:13','2024-01-30 12:37:13'),('511a870cefdf09730e970e7f0b7d47088df45334ab2d326a9b07c276a4be28073832818b6f9c9edc',2,1,NULL,'[\"user-app\"]',0,'2023-09-26 13:02:48','2023-09-26 13:02:48','2024-09-25 08:02:48'),('51363edc441de5e0c823f10aa77120d57854deaddb4e53d04521cbfeac4faa6bea7533a4f41812c4',6,1,NULL,'[\"user-app\"]',0,'2023-02-27 17:25:08','2023-02-27 17:25:08','2024-02-27 14:25:07'),('5152472b2ccfb63cc30005b28a891596de0f61d988437de17bda71dc92d8f0f202e589f22c94aca8',1976,1,NULL,'[\"user-app\"]',0,'2023-09-12 00:25:30','2023-09-12 00:25:30','2024-09-10 19:25:30'),('516811efb87ebeae15c8b15694c372a7b50abb49321e2b20837d023b881ca9cda6de0670013025aa',1139,1,NULL,'[\"user-app\"]',0,'2023-03-12 21:17:28','2023-03-12 21:17:28','2024-03-11 18:17:28'),('5172f574bafe4db83bcf30576bc61a4d4e6a44539ec9f0c403b21388408481f48437474cc908f4cd',621,1,NULL,'[\"user-app\"]',0,'2023-03-14 16:42:51','2023-03-14 16:42:51','2024-03-13 13:42:51'),('5185e9a27f08729f384c596077aec61e1c855a8aa27db02297ab9922dad0da3d113229a60580f829',1977,1,NULL,'[\"user-app\"]',0,'2023-09-12 02:08:26','2023-09-12 02:08:26','2024-09-10 21:08:26'),('5186acbd34739b1267b843a2d85552e3ee1891faae12c4cbc6a1cf9ed9f995e7e7ce7d0f40ddf1ec',1419,1,NULL,'[\"user-app\"]',0,'2023-09-12 21:20:04','2023-09-12 21:20:04','2024-09-11 16:20:04'),('519e31497040bb3374992fa2786bea8c0e6fd1e90c812ff500f7aca1b3a43542c7727df8492e7f14',1367,1,NULL,'[\"user-app\"]',0,'2023-05-04 22:51:50','2023-05-04 22:51:50','2024-05-03 18:51:50'),('51ae3788327d75b2cca2a49a5e579bde262a1398cbba7635de09fae6e7e7a78c0e1ed4305105e520',38,1,NULL,'[\"user-app\"]',0,'2023-04-13 19:19:01','2023-04-13 19:19:01','2024-04-12 15:19:01'),('51b7d6d90b45c554f88ac25d8e9b4a5ad6458810660d76b1074569edab9b12b0fc3101866c361726',117,1,NULL,'[\"user-app\"]',0,'2023-01-25 20:23:09','2023-01-25 20:23:09','2024-01-25 17:23:09'),('51bcd3cd97a30ec2a452ff34be69853fd3c325a8c761d167dd89e0aa72e197e898ceb85a7c12b6ba',840,1,NULL,'[\"user-app\"]',0,'2023-02-01 23:05:38','2023-02-01 23:05:38','2024-02-01 20:05:38'),('51c6dcb4ae7791155736185096286d5e7fb4b7ae9e5d89676e984c208d3547301579fd1808e54168',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 20:47:21','2023-10-05 20:47:21','2024-10-04 15:47:21'),('51cab43d70ae9ba2b9461af4ac11d05c4c53dea2218bb0dd4d3de29fac7adea8280555a07de8ade6',439,1,NULL,'[\"user-app\"]',0,'2023-01-25 23:29:55','2023-01-25 23:29:55','2024-01-25 20:29:55'),('520f5437a0bfacd1005081497f3a180e7cc6203e4af08bc0065efa7445b1d116d2bfd4c68e221966',2,1,NULL,'[\"user-app\"]',0,'2023-02-02 15:00:27','2023-02-02 15:00:27','2024-02-02 12:00:27'),('521d3eaa18974ea4cd1be30c9bc10e57d50037f20bba5dabf616477b577f36cb09eb201606c70223',2,1,NULL,'[\"user-app\"]',0,'2023-07-29 13:52:21','2023-07-29 13:52:21','2024-07-28 08:52:21'),('52285bf20e154b023118761ecfef994d17920e3d78a00ee40d6a494acd3a00481f9fb977bd237b80',2,1,NULL,'[\"user-app\"]',0,'2023-03-12 16:30:06','2023-03-12 16:30:06','2024-03-11 13:30:06'),('522daf24d0b7ccd8d0ffc6584a6f34efdc68cfe940f0790506c1b9698f93c533ad2d3bb6e7573c2f',453,1,NULL,'[\"user-app\"]',0,'2023-04-10 18:55:57','2023-04-10 18:55:57','2024-04-09 14:55:57'),('52390b747858014f9aa2dc3a89707c2bed7d72873337ae67bd64261d0d7dff9146102b59fbbba602',1077,1,NULL,'[\"user-app\"]',0,'2023-10-01 18:03:22','2023-10-01 18:03:22','2024-09-30 13:03:22'),('523af433e393ba9f086c3c1bd8522a12e1cbd54aeac5e7529fc27c922262a8ed1eb5bd6e2f2cbf08',1981,1,NULL,'[\"user-app\"]',0,'2023-09-12 21:39:49','2023-09-12 21:39:49','2024-09-11 16:39:49'),('523db0c796c19d9435e1cc676da9b29f0243059752c97b37d340b1b9d1052d7ed476d4dc6d030ef5',2,1,NULL,'[\"user-app\"]',0,'2023-08-19 11:49:02','2023-08-19 11:49:02','2024-08-18 06:49:02'),('5275f4972cdf3ccdd71609f15bb5cce745acce41e4fb1900ec9bfa9145b25c040136162e5f0aabda',2,1,NULL,'[\"user-app\"]',0,'2023-10-09 17:09:13','2023-10-09 17:09:13','2024-10-08 12:09:13'),('527654a04870ae816e2574c2ff4fc648b6aaab30545563073accc2a50573d4debff3f29c102616d2',2,1,NULL,'[\"user-app\"]',0,'2023-04-13 12:31:44','2023-04-13 12:31:44','2024-04-12 08:31:43'),('527f692691558f4d741cdac6771e386e41b5aa3dc444b0bfc39d4fff0c2147c651fed86ebe0a94fd',1324,1,NULL,'[\"user-app\"]',0,'2023-04-28 19:43:34','2023-04-28 19:43:34','2024-04-27 15:43:34'),('528cc77868867f884641194208cc4f745b6ff8465bb521f0cd77bf5cbaf1441c261fd0a946eccc2b',2,1,NULL,'[\"user-app\"]',0,'2023-06-15 20:07:22','2023-06-15 20:07:22','2024-06-14 15:07:22'),('52df4af33bb786974a78179284b97aecf0a551aeb9235cf724b3827cae70e6c4721a0f2196476b64',1423,1,NULL,'[\"user-app\"]',0,'2023-05-13 02:37:19','2023-05-13 02:37:19','2024-05-11 22:37:19'),('52f03a71db19e62abdb953a63d7ac9ae6d42d7b11d6307962d557d5e0e3efa9049f0f5c4ddc0f90c',2,1,NULL,'[\"user-app\"]',0,'2023-04-03 02:08:19','2023-04-03 02:08:19','2024-04-01 22:08:19'),('52f3fd0ef0db37e2ade300129fca24231d5d0467ac32f5237f55fa1f59de48eac560f908d82b6991',844,1,NULL,'[\"user-app\"]',0,'2023-10-02 13:31:19','2023-10-02 13:31:19','2024-10-01 08:31:19'),('5305e136ac80c0da2d8051d1e49be04868311e5ea669c4e68f0f40d0a2770ec2445751444d3d4d43',8,1,NULL,'[\"user-app\"]',0,'2023-05-29 14:15:04','2023-05-29 14:15:04','2024-05-28 09:15:04'),('530757539058262e16ed6d64519fce6bb7185acc7af136e70a5a27082b3ea81efcab65d86af44e8f',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:27:39','2023-01-25 16:27:39','2024-01-25 13:27:39'),('532434678e9dab54eb729aa17d500f003a76645709277cef4b36d363038162609cebefee345df9eb',2,1,NULL,'[\"user-app\"]',0,'2023-07-11 20:10:09','2023-07-11 20:10:09','2024-07-10 15:10:09'),('533044ec6f8b3119e568708d2d30a61af206d7116a858865c8b736288438e6d0ca0eac0c29bb1e92',1268,1,NULL,'[\"user-app\"]',0,'2023-04-17 22:52:57','2023-04-17 22:52:57','2024-04-16 18:52:57'),('53390a52292f66cf4893b8f402f79199945024eaf2945e0d5ff639d5208c47de753013277fe9cee6',120,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:30:58','2023-01-25 16:30:58','2024-01-25 13:30:58'),('53551e8043056b12c44920c8874d579bd97dd5a4ef47ab969d73b64ade5f63576fea53cf4f3636dd',663,1,NULL,'[\"user-app\"]',0,'2023-07-12 22:56:27','2023-07-12 22:56:27','2024-07-11 17:56:27'),('5361102262942ddc20966f7a9274c20bdd13d61ca945171b4dae95ed876c5c2975696cbfad3d25a6',2126,1,NULL,'[\"user-app\"]',0,'2023-10-08 22:26:57','2023-10-08 22:26:57','2024-10-07 17:26:57'),('5363cc29aeda7522670c1839e743f20a5b37a5859c29a2596f1c4d58ce9e0fc970bc24c896defd5a',1058,1,NULL,'[\"user-app\"]',0,'2023-02-23 21:15:47','2023-02-23 21:15:47','2024-02-23 18:15:47'),('5363d1747716df11af35632d8c2ff0c04bfe5168bbe8495f45da556d4e21b7d47770ed9f33e0e1d1',2,1,NULL,'[\"user-app\"]',0,'2023-08-27 15:33:41','2023-08-27 15:33:41','2024-08-26 10:33:40'),('5371bdf4b3d2696b2b1681747dd730b3d3bf478c3c91f879aa75d4739e1b72e00c53c5f245212e6d',137,1,NULL,'[\"user-app\"]',0,'2023-02-15 14:36:53','2023-02-15 14:36:53','2024-02-15 11:36:53'),('537c54eb7f969ef186edfa966d93863dc165325c3341802ddb9d9d88ed7c1c9602bfd562ce700904',488,1,NULL,'[\"user-app\"]',0,'2023-01-31 22:02:22','2023-01-31 22:02:22','2024-01-31 19:02:22'),('5389aa3e4a859b31966221d746128d0ba2af0d6652d29786bdedf900eb6b11db7ee0288b1e5fbd54',1310,1,NULL,'[\"user-app\"]',0,'2023-04-23 15:13:59','2023-04-23 15:13:59','2024-04-22 11:13:59'),('53ba076a3db4d4ef3e49415410c31c522edaf6c369a6fca054405a12c0d62e881f90860e14ff2295',215,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:27:12','2023-01-25 18:27:12','2024-01-25 15:27:12'),('53c8604a4cd1d2dfb9a2d89e4b7aa2e99a271e2f253f1ed93d4b1772254ab3e6dc4a1c10c81906a7',2,1,NULL,'[\"user-app\"]',0,'2023-06-17 14:51:50','2023-06-17 14:51:50','2024-06-16 09:51:50'),('53ed8585bcaff09d6cb82ba57387470ae8323b008d23c076b74c949fedbd389d207be7a66f7e2dd0',1664,1,NULL,'[\"user-app\"]',0,'2023-06-29 04:57:58','2023-06-29 04:57:58','2024-06-27 23:57:58'),('541267d0c5275f30f057eb9b2a3f8c73d638386a6838450669b1150ceae50277a5686c1d85eab5ee',2,1,NULL,'[\"user-app\"]',0,'2023-03-31 21:25:30','2023-03-31 21:25:30','2024-03-30 18:25:30'),('541395f08ba958e036f43dd1370662a1c2733e5f7faa20cd587ffc6b1e869ec7269475c4203e4434',1604,1,NULL,'[\"user-app\"]',0,'2023-10-07 23:50:11','2023-10-07 23:50:11','2024-10-06 18:50:11'),('54237b7ba88d462ff6ecee3afb8a565355689128a0d3ef647924cb2387d793b7d4a91c8b0fe1681b',280,1,NULL,'[\"user-app\"]',0,'2023-09-18 15:05:20','2023-09-18 15:05:20','2024-09-17 10:05:20'),('54283a41cc422d2aae99841ddc9e3b812005fe3576245aff0b0f87937f183149a938dc931b9d6a67',2,1,NULL,'[\"user-app\"]',0,'2023-10-03 13:40:44','2023-10-03 13:40:44','2024-10-02 08:40:44'),('54359dddbd5ed3480a387d2213f370a3a236afaac7b502319abd7f453c9d5588c6b342bf86de0d0f',1827,1,NULL,'[\"user-app\"]',0,'2023-07-28 17:18:21','2023-07-28 17:18:21','2024-07-27 12:18:21'),('5443b7b5e80d10043978b856eadead87aff2f175ce101638dc78d339acee1be40e6ee8146e193dc7',1038,1,NULL,'[\"user-app\"]',0,'2023-02-22 19:21:47','2023-02-22 19:21:47','2024-02-22 16:21:47'),('54683e9f3addfd560cc143f8ecf3fb66ae2b85dfb83827ff8456eeb4753b02fa92405cef0b890638',641,1,NULL,'[\"user-app\"]',0,'2023-01-25 10:00:48','2023-01-25 10:00:48','2024-01-25 07:00:48'),('5469d6e1ad2c2807ff3e623db20fa38cf190975dad26186445d0948477ff18fd2a1cccf54b8a40c9',468,1,NULL,'[\"user-app\"]',0,'2023-01-25 21:31:08','2023-01-25 21:31:08','2024-01-25 18:31:08'),('5472f09ed13d825ff7e3bbd6c38bd5e54b378906fd4521ec9d6c1f7fcc617a8164561a35baedc360',1002,1,NULL,'[\"user-app\"]',0,'2023-02-20 20:32:03','2023-02-20 20:32:03','2024-02-20 17:32:03'),('54a802371061c5b3f9719393b32380f3bc64678bc55659d4ad0b0ca1fc5ab7f325f94a95d6e5ded0',278,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:44:27','2023-01-25 11:44:27','2024-01-25 08:44:27'),('54ae3e472bedf1633c05f2314042b206bdb46c9c3b7e98bb6232b9ffa673f8cd64c8359029c70a80',1073,1,NULL,'[\"user-app\"]',0,'2023-02-24 20:35:10','2023-02-24 20:35:10','2024-02-24 17:35:10'),('54b20ddee4b766f919c1e5245230e9014127bda6aa46b4f069fd3322fa673b4a7cf842008f29bb38',1870,1,NULL,'[\"user-app\"]',0,'2023-08-09 22:15:34','2023-08-09 22:15:34','2024-08-08 17:15:34'),('54ba356f2d64d83cceb883bf4a89fcc20520a6f8d4bfcb9a4614ad958e7725ebc259355ae04924ee',1307,1,NULL,'[\"user-app\"]',0,'2023-04-23 13:40:21','2023-04-23 13:40:21','2024-04-22 09:40:21'),('54d45f8e850cf0881efb4783342748201c7d398af44a3fa7c3e3c8615cb89c5559fbde5ad220c47c',1971,1,NULL,'[\"user-app\"]',0,'2023-09-11 13:52:31','2023-09-11 13:52:31','2024-09-10 08:52:31'),('54dbd6f18edc8bbe09a89ea5c31a9a41b7f7201164eb00fd0c840a13fa5cb65337fc3b1f96c75c60',324,1,NULL,'[\"user-app\"]',0,'2023-01-25 23:35:47','2023-01-25 23:35:47','2024-01-25 20:35:47'),('54e80a5bdb30f223cf9e53f63794905046c970dd9aedddf30bf55eacedd00ef2383fc149283e48d2',42,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:27:22','2023-01-28 13:27:22','2024-01-28 10:27:22'),('54eba2b5c0e032ea79e69d58b4dc26024cf3ba3d009cfe41f4b0a0982157c8857cc793308acdb0f5',2,1,NULL,'[\"user-app\"]',0,'2023-09-13 15:00:54','2023-09-13 15:00:54','2024-09-12 10:00:54'),('54ee8a77caa1cbc03d4f35bfca7c9baf80cfb745bd1e91df7b24985bd5f82cf4396cd8989d920c59',1035,1,NULL,'[\"user-app\"]',0,'2023-02-22 18:27:04','2023-02-22 18:27:04','2024-02-22 15:27:04'),('54f1f30b470c06e428beda7b0b8b0dbc7bdf30f69ca4f4e58850e2ae51deadf2cc256aab11987911',2024,1,NULL,'[\"user-app\"]',0,'2023-09-21 19:16:44','2023-09-21 19:16:44','2024-09-20 14:16:44'),('54f70eb747d8f3e65b8f1eaf0b71168f4df85022ba88fe66010fa5d7618162bb2812e6b8db4a7fd8',1568,1,NULL,'[\"user-app\"]',0,'2023-08-26 17:03:20','2023-08-26 17:03:20','2024-08-25 12:03:20'),('54fd317a8c3439078acfb18c7c6c0161da5bc39e1d93d2646e0498f43ebbdbabc0b0f181f0e364da',2,1,NULL,'[\"user-app\"]',0,'2023-02-11 14:52:09','2023-02-11 14:52:09','2024-02-11 11:52:09'),('550caef43763fbc8a418428faa5eb1781a03af952ef7880d12d03d2e25f380117ba5094687c6c709',1276,1,NULL,'[\"user-app\"]',0,'2023-04-19 16:50:27','2023-04-19 16:50:27','2024-04-18 12:50:27'),('551633d9b1595feb39412f071ad91cc7ecb0730fadf96551128637c5a30b4ca0962d8d38b9228f27',1673,1,NULL,'[\"user-app\"]',0,'2023-06-30 19:07:08','2023-06-30 19:07:08','2024-06-29 14:07:08'),('5545a9cfd680b77a6cc6be55f9407a77061a315380953a3fe08fdf11003bba3a11ba1bed07e4e37a',1408,1,NULL,'[\"user-app\"]',0,'2023-09-05 11:46:51','2023-09-05 11:46:51','2024-09-04 06:46:51'),('5550e2b12771ae07fa5352fa03636bed063c99fd0944fca4626801373c47d5428018ac91bf1b5de3',834,1,NULL,'[\"user-app\"]',0,'2023-09-06 17:22:38','2023-09-06 17:22:38','2024-09-05 12:22:38'),('5572e18658f1dca60505259a8ed584bc769d19a517e61f2c0d151677f12d8ac80e09e22a31dbab49',385,1,NULL,'[\"user-app\"]',0,'2023-03-29 20:09:09','2023-03-29 20:09:09','2024-03-28 17:09:09'),('55737a44f037963c235081034bb1c4efc31b9aa196afbbb1fe2680257701c30c1c61897444447472',1331,1,NULL,'[\"user-app\"]',0,'2023-04-27 04:30:34','2023-04-27 04:30:34','2024-04-26 00:30:34'),('559da8ac25a2c6ce7c0aee4f75c0a533ba10a45d15bb25c1a748ae4afafa2fc068fc760366cc8b08',1807,1,NULL,'[\"user-app\"]',0,'2023-07-25 02:06:54','2023-07-25 02:06:54','2024-07-23 21:06:54'),('559dc3fa44e4d45d10934ac218d1026c5843bb52552b62ecdf56de9d5b129c1ce6726a68d26e6790',1117,1,NULL,'[\"user-app\"]',0,'2023-03-06 17:48:10','2023-03-06 17:48:10','2024-03-05 14:48:10'),('55a81d1b2e4fa64c39186b599bb9fa2ee99a900364bbfcc5056908aecb240bcaf4c305b287de2a3a',549,1,NULL,'[\"user-app\"]',0,'2023-07-25 17:39:46','2023-07-25 17:39:46','2024-07-24 12:39:46'),('55a833cb3f9defa5583f09790e065dcda2724a48b6dd53b169806f5860e2e19e52e90a92c288631b',258,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:31:55','2023-01-25 11:31:55','2024-01-25 08:31:55'),('55add1c1c599fa604821bdbd40760b58bd0525b1cff93e86623bd69736d71ed31ce8495f33abd9be',2,1,NULL,'[\"user-app\"]',0,'2023-07-08 03:25:09','2023-07-08 03:25:09','2024-07-06 22:25:09'),('55ae03cb3867c943fffb37e26c6fe4b6240aa39ade8e22ff4aed2244bb067cbfda3a1631260482b0',1330,1,NULL,'[\"user-app\"]',0,'2023-04-26 21:13:59','2023-04-26 21:13:59','2024-04-25 17:13:59'),('55bbc04c18626e13729872ca773a9cb54e499474b2761337bd2aa8f4a451274481d7c4501356a775',1498,1,NULL,'[\"user-app\"]',0,'2023-06-05 23:37:18','2023-06-05 23:37:18','2024-06-04 18:37:18'),('55c0a4bfdf16f826e6c0f9cd5cf15742ff88da08ffb11db9f3f6aca646b2f2eb2bf32aee3e76a9e7',987,1,NULL,'[\"user-app\"]',0,'2023-10-05 14:50:36','2023-10-05 14:50:36','2024-10-04 09:50:36'),('55c4c6fc8a97627e9ddced7e75ae73af88960fa2da4c096b95059a0b49d24c90f0c74120603cd789',1052,1,NULL,'[\"user-app\"]',0,'2023-02-23 16:14:21','2023-02-23 16:14:21','2024-02-23 13:14:21'),('55dd608b07945c26e4e470b81d1b4e6ab3c31ae2f7d2762d78f605865ba31396ce304205c7b57b8a',1453,1,NULL,'[\"user-app\"]',0,'2023-05-15 19:58:34','2023-05-15 19:58:34','2024-05-14 15:58:34'),('55e72573de26c742a080f75604b36544b802837bb864ef13634297a22688c5d4c08b445a2fa1789c',1021,1,NULL,'[\"user-app\"]',0,'2023-02-21 20:18:12','2023-02-21 20:18:12','2024-02-21 17:18:12'),('560c2a7126c3993a14f20f5405a51ff684b6a90550bb0d1d6c28870e7dd0e3fd24a34151618ffa64',1017,1,NULL,'[\"user-app\"]',0,'2023-04-14 20:29:25','2023-04-14 20:29:25','2024-04-13 16:29:24'),('560da154ef5e704b4b1e72cfd6bc672e83bfa18438355e6a6c0a379b5a380e59af18237afd291dbc',2,1,NULL,'[\"user-app\"]',0,'2023-02-09 12:09:49','2023-02-09 12:09:49','2024-02-09 09:09:49'),('562de01b71823ca4056e3e8771f5344cdfa58c490822ac11a70dec69866e64506d83fe5b9f1a7466',1876,1,NULL,'[\"user-app\"]',0,'2023-08-11 23:03:43','2023-08-11 23:03:43','2024-08-10 18:03:43'),('563889b7dda19e7d15273a96210495da18771258d14f8832ea53b3e0575ffee777c58237015bad9f',1067,1,NULL,'[\"user-app\"]',0,'2023-02-24 12:09:53','2023-02-24 12:09:53','2024-02-24 09:09:53'),('56665b250630cdc052d3bf8344838851d2ae9be7993cf3e63b7a35de9ad6abe3c2623a7f9e088001',465,1,NULL,'[\"user-app\"]',0,'2023-02-13 17:17:00','2023-02-13 17:17:00','2024-02-13 14:17:00'),('56923c68acb85eb155f673380d2e27b5915662e8c7fcda183eb31b17e1bc4cb1dd7b0b2155c6acce',480,1,NULL,'[\"user-app\"]',0,'2023-01-28 18:02:08','2023-01-28 18:02:08','2024-01-28 15:02:08'),('56a9f2dc2ad2b370695bd7d1468cd1fb109554167708cfc30ca5b1459a1008c1a2460ad531d01317',824,1,NULL,'[\"user-app\"]',0,'2023-01-31 15:40:49','2023-01-31 15:40:49','2024-01-31 12:40:49'),('56afd52cc0183d6fc8e1c6b48ce053734b7f4049363148594886587ffa7ffe587309abd9d38f4b8d',2,1,NULL,'[\"user-app\"]',0,'2023-06-30 18:23:11','2023-06-30 18:23:11','2024-06-29 13:23:11'),('56b5873e4b6138aa2966c6180339a0e4719f1764381d64584055f34a923172f585567e0b71995a08',2123,1,NULL,'[\"user-app\"]',0,'2023-10-08 01:36:03','2023-10-08 01:36:03','2024-10-06 20:36:03'),('56c142055e743de8ca45907879c8f270cb196e4609e5124bf3fa4565a60ee6caeee2b19170b7ef3f',1708,1,NULL,'[\"user-app\"]',0,'2023-07-07 17:02:49','2023-07-07 17:02:49','2024-07-06 12:02:49'),('56f97986889f67ac42877fff83834cd4b6ae651b6b43815679210cd2f4571bf96099dabdaa8470f4',588,1,NULL,'[\"user-app\"]',0,'2023-06-18 22:07:18','2023-06-18 22:07:18','2024-06-17 17:07:18'),('5707def3b435b974b74e84e78351a276e8fc409869d3184ca7bbb17159dc5db4ea12b30e42af27ec',249,1,NULL,'[\"user-app\"]',0,'2023-10-03 17:50:07','2023-10-03 17:50:07','2024-10-02 12:50:07'),('570ccb34573cca99a39e16d18fc4d32045f4813843242a910aee6fd9c6aabf4a2005f9d461590af2',34,1,NULL,'[\"user-app\"]',0,'2023-01-27 13:03:51','2023-01-27 13:03:51','2024-01-27 10:03:50'),('5711e79591ee8964e2dcf8694a2977d9233eea9d1697f7c43460e316cd05a921ebeb8a7ed6551213',2,1,NULL,'[\"user-app\"]',0,'2023-06-03 20:25:22','2023-06-03 20:25:22','2024-06-02 15:25:22'),('5719f541ca7355ccf6b72aa6e3157331d77def9e250bad02addc883dc8ea3d62c3e286b2af3b832d',807,1,NULL,'[\"user-app\"]',0,'2023-01-30 17:17:34','2023-01-30 17:17:34','2024-01-30 14:17:34'),('572415f3af36f7ad5f19375be39bf8467f977c3fb7246b4a5884b6bf7707e88f1c1cdff8b3df1c9a',2,1,NULL,'[\"user-app\"]',0,'2023-06-14 15:04:32','2023-06-14 15:04:32','2024-06-13 10:04:32'),('57302f39f8f0cb9a2c7ab3f8215eb7ffb89e89a7af4aba8d8bd753cfb5ef9fa1e1669bedddf22f11',1653,1,NULL,'[\"user-app\"]',0,'2023-06-27 21:09:41','2023-06-27 21:09:41','2024-06-26 16:09:41'),('574a4f31a933e4e6bdfd1df790ad54fa23a1ff59ee419817f34aafde443bf0b3f9776d146b61f3e8',1868,1,NULL,'[\"user-app\"]',0,'2023-08-08 12:11:21','2023-08-08 12:11:21','2024-08-07 07:11:21'),('5757e64238279ef67b16b0c96d05fd1b0a0b0f124308d65a464bde0e6ea7e9130d382684c969ab75',1216,1,NULL,'[\"user-app\"]',0,'2023-09-14 19:02:53','2023-09-14 19:02:53','2024-09-13 14:02:53'),('575b79a51a92c02edb3496205ea50704485182f4472650ee43f8fb1a90c4981aa5cdc20d3b9885ef',2,1,NULL,'[\"user-app\"]',0,'2023-06-14 15:07:10','2023-06-14 15:07:10','2024-06-13 10:07:10'),('575bda0c18dfa1cafc22ed6614a76cce47bacf39261779213c1392075fcd511b2b26f0762ab310b8',1699,1,NULL,'[\"user-app\"]',0,'2023-07-05 04:01:52','2023-07-05 04:01:52','2024-07-03 23:01:52'),('576ecb2195070de2c01e2dd02189694e14bd48b88cd5fcd6fc313837570d7c422d6f54faf02199ab',77,1,NULL,'[\"user-app\"]',0,'2023-01-26 11:38:35','2023-01-26 11:38:35','2024-01-26 08:38:35'),('57748855e6d682d706e52fc61f8c819b83fecd086e8f16cd3fb0004c403a425e200c8971d4104e61',962,1,NULL,'[\"user-app\"]',0,'2023-04-05 14:26:33','2023-04-05 14:26:33','2024-04-04 10:26:33'),('577f21276920cd483f386e07cd1a17878264d60eb967d405e37db49dbc99f32dfd29fc97dc39d9fc',173,1,NULL,'[\"user-app\"]',0,'2023-04-04 16:14:41','2023-04-04 16:14:41','2024-04-03 12:14:41'),('577ff1c66c2e7f9e10eeac7d17fa82ad37aa33f8327e49d0436dc867c0756eb4656d27359fe244e6',942,1,NULL,'[\"user-app\"]',0,'2023-09-24 20:37:06','2023-09-24 20:37:06','2024-09-23 15:37:06'),('5784a6e207c2fbf260b4d9ed527399826fc1abdfbcb4b39c939a482fc6accc23843c32de878146d8',2,1,NULL,'[\"user-app\"]',0,'2023-09-14 02:42:05','2023-09-14 02:42:05','2024-09-12 21:42:05'),('57a67f36437baf0efdbd5b14fdeda541deb88a881df172304efca552987a000e3d364403c7fac99d',1950,1,NULL,'[\"user-app\"]',0,'2023-09-04 20:02:24','2023-09-04 20:02:24','2024-09-03 15:02:24'),('57cbe1ad6c7785d421fde686cd72e14076f02742e486796dcbfe439370d461b45b334c2fe3bccd77',663,1,NULL,'[\"user-app\"]',0,'2023-07-14 03:42:15','2023-07-14 03:42:15','2024-07-12 22:42:15'),('57ecc8dbe49290958a735a5cbc8274fbf436ef39d55447acf1cc9a6a2d4a3ca0b3b4c7dce3609118',2,1,NULL,'[\"user-app\"]',0,'2023-05-28 19:47:58','2023-05-28 19:47:58','2024-05-27 14:47:58'),('57f85f25ea1b503c4d5c20aa8af3698f6de0c5da38f427771e72912964686fe127a7e716ac119929',214,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:58:11','2023-01-25 11:58:11','2024-01-25 08:58:11'),('58118350df645e3cb729ba35186fbcc6504bf844443aee14ee14845cc011661ab3cbe188b8b764ad',2,1,NULL,'[\"user-app\"]',0,'2023-08-10 18:38:14','2023-08-10 18:38:14','2024-08-09 13:38:14'),('581f4fc0ea798f53dc29cf067c09aad41f18c3242ea730f737729921093c31c991dbd3a074bb20e2',401,1,NULL,'[\"user-app\"]',0,'2023-04-04 14:54:32','2023-04-04 14:54:32','2024-04-03 10:54:32'),('5827099b110e55211a9e3ae01bfe411f79c2192e73c68ede5ffefa8778082e152071cf02e5deaaac',1311,1,NULL,'[\"user-app\"]',0,'2023-04-23 15:43:24','2023-04-23 15:43:24','2024-04-22 11:43:24'),('582c5be9fa100462a83766e6903a07e752476857057df2e6b089e187d7299f1e9002bbf8103aef6d',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 01:53:08','2023-09-21 01:53:08','2024-09-19 20:53:08'),('58327b89a996108ec21e213a803c0bc1e59cca27a312f22b865ec5cb4c645635b4e6768f45c467c4',1423,1,NULL,'[\"user-app\"]',0,'2023-05-17 21:03:25','2023-05-17 21:03:25','2024-05-16 16:03:25'),('58345c2c779cfd4285c142a0ea9a3760a22c3ad7e69502aea8cdc51433f410d6813adda60bcf19b3',357,1,NULL,'[\"user-app\"]',0,'2023-02-16 16:28:11','2023-02-16 16:28:11','2024-02-16 13:28:11'),('583a9b0f5e8a3754562594b126cf3eec14a50942a63f5757c286788174ec327bbb5c5b3677d0a1bf',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:34:51','2023-01-25 14:34:51','2024-01-25 11:34:51'),('583bd657193d611e1548525eb2007074ff8443aae9761105aee64cd413d8e35546b2ac50144a3209',343,1,NULL,'[\"user-app\"]',0,'2023-05-02 01:51:36','2023-05-02 01:51:36','2024-04-30 21:51:36'),('584efd955c57dc35c278a4aaabedb49478b3deef6f9c56ce041a3c3e4a8d72de62b643b842ed5819',52,1,NULL,'[\"user-app\"]',0,'2023-04-05 23:31:30','2023-04-05 23:31:30','2024-04-04 19:31:30'),('58511295947d8f28a974227c4b3c551ef95e6184c6493ae7b9446a2170cbb6671810e2c6d8d45359',2075,1,NULL,'[\"user-app\"]',0,'2023-09-30 21:01:44','2023-09-30 21:01:44','2024-09-29 16:01:44'),('5860ae4ee3635a13acc1f8163a1593925f11b7570baf2320434fa9d3b9819821d3f7187247991784',1960,1,NULL,'[\"user-app\"]',0,'2023-09-07 20:45:21','2023-09-07 20:45:21','2024-09-06 15:45:21'),('5866de3577b8eb56ae43b6e10b891d4dfa7c3c2c91127c647f30b1e99d1870f7557ce1db59c77a18',172,1,NULL,'[\"user-app\"]',0,'2023-09-14 18:18:52','2023-09-14 18:18:52','2024-09-13 13:18:52'),('586b3f9d8c72e9577e3324fcea5bc74d739dfe838916f5861cc979a7d06deeaa62a9961c94a52e02',1126,1,NULL,'[\"user-app\"]',0,'2023-04-21 10:42:38','2023-04-21 10:42:38','2024-04-20 06:42:38'),('586fcef22d9db021f3f049ae58add680031ccf1987390df0f67e4061e5f16124b1fca18fa5160be1',1555,1,NULL,'[\"user-app\"]',0,'2023-06-12 18:55:55','2023-06-12 18:55:55','2024-06-11 13:55:55'),('58876ceefd1f555b2da6adbdc4fec2d92a0ecd5e63905a9b3d7f6cc301c971aa2adc41301ae593fb',734,1,NULL,'[\"user-app\"]',0,'2023-06-20 16:35:09','2023-06-20 16:35:09','2024-06-19 11:35:09'),('5888c67463963ab8fa7012f0559cb240bee46aa54f05616df4a42786cc6776b97f45ebeadf629e90',8,1,NULL,'[\"user-app\"]',0,'2023-06-15 19:35:44','2023-06-15 19:35:44','2024-06-14 14:35:44'),('588b86c9008a62d98f8c2ff506840aa5edf67c0b7322840a238ed1e421412fa9c21e185015982233',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 16:57:52','2023-09-18 16:57:52','2024-09-17 11:57:51'),('5890455ccbeafc3ba7329a72d6e0a28a13f136d3da12cca216ac1c67312eda36f4c398ecb15d73d6',319,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:00:51','2023-01-25 19:00:51','2024-01-25 16:00:51'),('5892507f31d95309c565d50aeb381c471d4e299647e1f34b51ef9c6b3da09e268afbc65309bc3346',669,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:17:04','2023-01-25 15:17:04','2024-01-25 12:17:04'),('589c8bdfcca89ace18a3504977af32a6428721e1024b247b7181c8b0009ee37e58dcb27a162e1a9c',1870,1,NULL,'[\"user-app\"]',0,'2023-10-01 20:56:29','2023-10-01 20:56:29','2024-09-30 15:56:29'),('58dfc843ac71f9a72044ceaa9a819fc82829b51edf2fb331f548373ad83d08a8d268ad373e62488f',1372,1,NULL,'[\"user-app\"]',0,'2023-05-05 19:38:20','2023-05-05 19:38:20','2024-05-04 15:38:20'),('58e0f32e8d281a1b125da0a70355fb2e34efc1cf7565879721ff815e96891f04b0ff8b51839d2cd7',1061,1,NULL,'[\"user-app\"]',0,'2023-04-12 01:35:20','2023-04-12 01:35:20','2024-04-10 21:35:20'),('58e7de04e736b802a5c7dc98214ddc935206d8a5ca9e45057d046ead853c732d68a36054687cb147',658,1,NULL,'[\"user-app\"]',0,'2023-04-10 19:09:29','2023-04-10 19:09:29','2024-04-09 15:09:29'),('58eb40fae2ae0da544d930f1ee7342e16f3da0341303f2deeaa60564aff8935bdc17b68364678fef',327,1,NULL,'[\"user-app\"]',0,'2023-02-17 22:08:10','2023-02-17 22:08:10','2024-02-17 19:08:10'),('58f3dacebfa25e304717a16f42fb92c9fbb0bd6b7f95321ded78ffe009975f37412f04c4d4fcd6f3',280,1,NULL,'[\"user-app\"]',0,'2023-03-31 21:05:21','2023-03-31 21:05:21','2024-03-30 18:05:21'),('58f4352d22163b49ff53923d4158e13881e077f84d6de5062d2e97a549814704aacb309c5fb835f8',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:19:58','2023-01-25 03:19:58','2024-01-25 00:19:58'),('5903554feb028492dee9aea5408f1f727c235c3e3c141fec53a3e8d6608548b35b82fee1058e59e7',2,1,NULL,'[\"user-app\"]',0,'2023-06-13 00:03:45','2023-06-13 00:03:45','2024-06-11 19:03:45'),('5905284dd48009b90e8cece525383992df1292eada2f382b238b7bcf0a62a618e30f6969246ac291',503,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:27:37','2023-01-25 12:27:37','2024-01-25 09:27:37'),('591a57d521e12098cfa4d2839d06e90ede6eb0ff91b00e98bf5f1bf07fc450c492988083ce7d267a',1994,1,NULL,'[\"user-app\"]',0,'2023-09-14 23:22:04','2023-09-14 23:22:04','2024-09-13 18:22:04'),('59256cb55bb6d1b6f09429fd887c07ddd9d887ac61e47dcd1f0b400e60a765b435fecd66070984f6',1443,1,NULL,'[\"user-app\"]',0,'2023-05-13 02:31:20','2023-05-13 02:31:20','2024-05-11 22:31:20'),('592a3e445663f064a5181c8a8c0c30d0aa2807e215be4a21232ea77ef3cfffd73a52ec9b08fa570d',725,1,NULL,'[\"user-app\"]',0,'2023-01-26 12:41:12','2023-01-26 12:41:12','2024-01-26 09:41:12'),('5950f9b6cc2ea6efd95d393b409ee4d2b6c6731448a382d6a043ed268b9519a143933c0b208cf398',453,1,NULL,'[\"user-app\"]',0,'2023-02-13 18:04:29','2023-02-13 18:04:29','2024-02-13 15:04:29'),('595c2688a0aba0c23086be0b867126200c76789568748cb373c8a16e121983e9d02bc79288d8790e',1423,1,NULL,'[\"user-app\"]',0,'2023-07-31 20:40:59','2023-07-31 20:40:59','2024-07-30 15:40:59'),('59696f2d728d193d5e3d8cbceb1997747422f52f7bedfe9a78849a17fb8ae376494533503c069f22',2,1,NULL,'[\"user-app\"]',0,'2023-03-19 16:23:53','2023-03-19 16:23:53','2024-03-18 13:23:53'),('596b55a9863f8a688d9a3c79f91514c4884cbae7e82449373286b164a934034c6217571cdacd414f',1005,1,NULL,'[\"user-app\"]',0,'2023-02-20 22:22:50','2023-02-20 22:22:50','2024-02-20 19:22:50'),('596e67ee20060d16d660edcb0c6916b74d70d73ca202caf999cbd671d77d43ffd2d95b01462e6f36',690,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:33:18','2023-01-25 17:33:18','2024-01-25 14:33:18'),('59752eab447811ddcdad057d23a159cabced8daae2d82280d42fb614c59ee853ead5384dba3bd0f7',2,1,NULL,'[\"user-app\"]',0,'2023-08-09 16:35:29','2023-08-09 16:35:29','2024-08-08 11:35:29'),('599027124c8c2a37bfae2f644b5946f7cb1f9d824de2e35016afd5717d88fc788c55deb9d79976c0',633,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:21:37','2023-01-25 03:21:37','2024-01-25 00:21:37'),('59987ce708e0a02e813d5304904f97507d1b5843c75fa30fea8367fc77c40822bc11fcac4458931d',2,1,NULL,'[\"user-app\"]',0,'2023-09-07 13:21:57','2023-09-07 13:21:57','2024-09-06 08:21:57'),('599e442c9f7d570290c733515cc0b979dcc5b87bade45aa194942f8070ea7f79cad83f7ae119d433',382,1,NULL,'[\"user-app\"]',0,'2023-09-23 21:23:54','2023-09-23 21:23:54','2024-09-22 16:23:54'),('599e88e4b6eb037303b70fad925289d1246880d3104b6b1391b40836ed4ea8cea35d0a0cd9621456',429,1,NULL,'[\"user-app\"]',0,'2023-01-30 19:39:16','2023-01-30 19:39:16','2024-01-30 16:39:16'),('59c133359ee56c1060934aad71967a121d82bdbda87e24898aead12de94f05f1695471053d308380',200,1,NULL,'[\"user-app\"]',0,'2023-02-02 23:11:53','2023-02-02 23:11:53','2024-02-02 20:11:53'),('59d382746de087d37f74b774078eb54aa015394d5d925b0ee1cc874fd97b5e45f2990ccd7ab1788a',181,1,NULL,'[\"user-app\"]',0,'2023-10-03 23:21:54','2023-10-03 23:21:54','2024-10-02 18:21:54'),('59d50f0dcb7b9825ca5814d6cf405e26beed238dd299d5303890aa39ede5196d9d241b7ee1185681',287,1,NULL,'[\"user-app\"]',0,'2023-02-24 17:41:03','2023-02-24 17:41:03','2024-02-24 14:41:03'),('59de1b8081453136e3788bfe75af7002e079fc6aec2d0094734c447531b90af18dc2308e671378e7',1028,1,NULL,'[\"user-app\"]',0,'2023-02-21 23:22:59','2023-02-21 23:22:59','2024-02-21 20:22:59'),('59e8143ebd452c2ab9eb37d93e28ef021961a54eb6237f183b0849f319a7c2a2ff8c672a3ba5d49a',47,1,NULL,'[\"user-app\"]',0,'2023-07-31 17:59:51','2023-07-31 17:59:51','2024-07-30 12:59:51'),('59ede56817dc9a62cf123602ca42bb78a473131816ccfc08190abf30527ab74ae916c2293dee7484',1006,1,NULL,'[\"user-app\"]',0,'2023-02-20 22:37:19','2023-02-20 22:37:19','2024-02-20 19:37:19'),('5a260ac44fc85b0b3ee2e9c1f2e0c45a42250879eb72948298a059def0b5c7a2b9150c0c5ed21386',821,1,NULL,'[\"user-app\"]',0,'2023-01-31 13:27:55','2023-01-31 13:27:55','2024-01-31 10:27:55'),('5a2d53f1a377b0421158569253dfad58040f42d2367ba965f89be9e748f68cf929db9448743c3d80',1907,1,NULL,'[\"user-app\"]',0,'2023-08-22 23:47:06','2023-08-22 23:47:06','2024-08-21 18:47:06'),('5a40f228b5be1e92e93a816f6c2546d1c77c97002a3da5b5a66165b008e51b2fd9e45160bbb2a1f4',29,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:34:56','2023-01-25 17:34:56','2024-01-25 14:34:56'),('5a412cd454fe8ecd6a5c68f2b17cf04d613f273b6250700caeb3a2a8099184daa9a7314da4b5ccf2',2,1,NULL,'[\"user-app\"]',0,'2023-05-24 13:47:39','2023-05-24 13:47:39','2024-05-23 08:47:39'),('5a4d285e28ddf05a4ec51997964adb7bab9b4b4a5d282a09681e7995676ac953b15fd6fa4d39833d',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:46:34','2023-01-25 11:46:34','2024-01-25 08:46:34'),('5a5212de08059cb9c77141d938db1e7c2fa4f9a8e0610a5da370abc9da78f72baebddb0dc78aae47',217,1,NULL,'[\"user-app\"]',0,'2023-07-08 13:32:59','2023-07-08 13:32:59','2024-07-07 08:32:59'),('5a525d6b98f6470bf1a88eb2604be8913433fc89f511e73e9fe7261558f69323595c87a8af17b6a4',1066,1,NULL,'[\"user-app\"]',0,'2023-02-24 09:51:09','2023-02-24 09:51:09','2024-02-24 06:51:09'),('5a69f3ea5b7a76f0ecac9466afdfcb7113f6a29bb817bd8ec3a86b43efc6261793aaefe8a3a1a767',1236,1,NULL,'[\"user-app\"]',0,'2023-04-23 14:46:02','2023-04-23 14:46:02','2024-04-22 10:46:02'),('5a984f63266b61c8c644ddf7aad1fb9add717c6ce4600ff007a175d3134514cefaa87a16a5952668',835,1,NULL,'[\"user-app\"]',0,'2023-02-01 16:43:16','2023-02-01 16:43:16','2024-02-01 13:43:16'),('5ab271576c6c5ab3cac8a882aef42f4e2a02ec32521e325d62f297be60f0401fdd46cf62fb342f37',122,1,NULL,'[\"user-app\"]',0,'2023-06-08 01:48:40','2023-06-08 01:48:40','2024-06-06 20:48:40'),('5ab623670a864dfa79120c5417c6cf622f1bb973a579500965bdc645f8224afb9e8885a190d44248',428,1,NULL,'[\"user-app\"]',0,'2023-01-26 10:57:03','2023-01-26 10:57:03','2024-01-26 07:57:03'),('5ab91c1007c1d09ea565d65753188d562cdacf5dd9e8ce923bdd9982e2e2cc6886b5480cbed85aa9',704,1,NULL,'[\"user-app\"]',0,'2023-01-25 21:12:51','2023-01-25 21:12:51','2024-01-25 18:12:51'),('5ac74097edfe573dc458da78db4a76d990e52f383b1d776edcd71cfc00ee2df77427a40fa6f983d8',730,1,NULL,'[\"user-app\"]',0,'2023-07-10 15:20:00','2023-07-10 15:20:00','2024-07-09 10:20:00'),('5afe183018cc841e682bc06dee4569feb89c20917843936ec6758f11716109b7e22f259943156c81',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 19:04:17','2023-10-07 19:04:17','2024-10-06 14:04:17'),('5b1069bdbc8e722f641eb353da00e2397d264c7fe093256a96c390a2ad4922472bc3f6d579467523',708,1,NULL,'[\"user-app\"]',0,'2023-01-25 22:04:56','2023-01-25 22:04:56','2024-01-25 19:04:56'),('5b14034378b3c67858d22002c75e428876617eaa6269ac67320fe22ccb2f93d4a553e435eaac7487',130,1,NULL,'[\"user-app\"]',0,'2023-01-27 17:15:07','2023-01-27 17:15:07','2024-01-27 14:15:07'),('5b1722f701e824928c5717db8c677189ded5c730522848a54c13046fe0cd6f261aa191634d8c4dd0',82,1,NULL,'[\"user-app\"]',0,'2023-02-03 15:42:35','2023-02-03 15:42:35','2024-02-03 12:42:35'),('5b5004550c9a7fa0fd82e6ff83167f585079660ba2e78fc61330d965640610099971b450f5f9c017',1339,1,NULL,'[\"user-app\"]',0,'2023-04-28 21:13:24','2023-04-28 21:13:24','2024-04-27 17:13:24'),('5b930db3ecb568f1b3647dcbc8f8fdead6d2491af84225cfa780dce27f920cfb22210461438170b4',2,1,NULL,'[\"user-app\"]',0,'2023-03-25 00:46:04','2023-03-25 00:46:04','2024-03-23 21:46:04'),('5b9765bffb7f6e628922bfb6420270c59fdf65b2f57ac31e42355dc8426cf156c8f7bf4c3060ae3d',1422,1,NULL,'[\"user-app\"]',0,'2023-05-15 13:51:52','2023-05-15 13:51:52','2024-05-14 09:51:52'),('5b9a25f0dedfe7c72338e9cc34fdbd119d113126e9ad0c35fc9629d855d8e3258dd693f2aa8aa998',2,1,NULL,'[\"user-app\"]',0,'2023-08-21 04:38:23','2023-08-21 04:38:23','2024-08-19 23:38:23'),('5bab5777cfdf45368b737e20587d476590871d84702d1822b77d473e41678c30939379013cb2e53f',2,1,NULL,'[\"user-app\"]',0,'2023-03-11 18:35:32','2023-03-11 18:35:32','2024-03-10 15:35:32'),('5bb036ad72741267558ee235f542768743f78723ae0032943188554e504f25f870dd39dbd99c376b',1811,1,NULL,'[\"user-app\"]',0,'2023-07-25 18:06:03','2023-07-25 18:06:03','2024-07-24 13:06:03'),('5bb232d7353422a5545679e96f0de392003f63ae6a78fa9364c1d9db0700851a4063bbc24870aad7',1541,1,NULL,'[\"user-app\"]',0,'2023-06-09 16:09:10','2023-06-09 16:09:10','2024-06-08 11:09:10'),('5bf521583d5bb5116fa7c2bc57141904fe7ae74acdd6bcb8fb22631f7de57f399046edc82ea517fe',1900,1,NULL,'[\"user-app\"]',0,'2023-08-21 07:57:43','2023-08-21 07:57:43','2024-08-20 02:57:42'),('5c15d3d5d00328782eaca839f3d797fe5f307bb21a7a236493d3a795e60251c5eaf2177fbdb37237',957,1,NULL,'[\"user-app\"]',0,'2023-04-19 15:55:08','2023-04-19 15:55:08','2024-04-18 11:55:08'),('5c2624a28106fe919266c8a77137c81bb4365b49e3581602026309336e89d62a536db3cfe81c12e8',52,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:11:49','2023-01-25 13:11:49','2024-01-25 10:11:49'),('5c73e78d01c36f0ecdd1daaca4866f7344ed4c13716212287fb8068d3a7dd1328b75a88d03ed5862',1427,1,NULL,'[\"user-app\"]',0,'2023-05-11 18:04:46','2023-05-11 18:04:46','2024-05-10 14:04:46'),('5c830beadb6795313c79d0f722ee1266ab03cb5a4fc81f483115ef9ae55d91f3509d11d160ae8a5f',842,1,NULL,'[\"user-app\"]',0,'2023-02-15 17:28:54','2023-02-15 17:28:54','2024-02-15 14:28:54'),('5cac92cef56e53d3b8003280911c917ab6117f8cadf183b3d5223be2073e6f49dddc90969541e2e6',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 17:54:41','2023-07-17 17:54:41','2024-07-16 12:54:41'),('5cae555c383de683f97a56d98d1923b272cd735e738bde25fc6a685373a3972301b060742b575f36',807,1,NULL,'[\"user-app\"]',0,'2023-02-23 12:53:35','2023-02-23 12:53:35','2024-02-23 09:53:35'),('5caf8b92a039d955369662af5e20b44a5bcc2aebb569e8813f7d1812e2a961ac438e9b16b3d256fb',1060,1,NULL,'[\"user-app\"]',0,'2023-04-04 20:06:57','2023-04-04 20:06:57','2024-04-03 16:06:57'),('5cb753fdc33aaef50a53701ce8e5467b87801eb834523b8c4d1bf6c1a33569174b3c6efb27eaa91c',1012,1,NULL,'[\"user-app\"]',0,'2023-05-03 02:27:00','2023-05-03 02:27:00','2024-05-01 22:27:00'),('5cba5b8c633c4a4a436d8a34d6414dc04ee2084c11c4a939ecceedf4f9e8b089be3d3ca9d8493f74',8,1,NULL,'[\"user-app\"]',0,'2023-09-07 19:51:26','2023-09-07 19:51:26','2024-09-06 14:51:26'),('5cc0596c758d75bf14adbcd05a8f9bbb9e4e44a4b08353df7f656b7d2a7f0d7f789cc46b98b918fe',271,1,NULL,'[\"user-app\"]',0,'2023-10-08 12:17:03','2023-10-08 12:17:03','2024-10-07 07:17:03'),('5cc2d1b46234d3c67518f978e98da81d9bcb13bf3d76c05aba7d6daf0efcec3e5c3cdc8c3726ebb7',1009,1,NULL,'[\"user-app\"]',0,'2023-02-20 23:42:46','2023-02-20 23:42:46','2024-02-20 20:42:46'),('5ce2893218555f32352702314a18e165c3b8a6ba31aac34282def0dae2ca3022115f96d62ef56443',960,1,NULL,'[\"user-app\"]',0,'2023-02-16 22:10:08','2023-02-16 22:10:08','2024-02-16 19:10:08'),('5cf816bcf8c3e4305ab77ba11fe6c6a8d51cc5b9c175d014eef3dca4fd86b7d5d4fd50828fc3ffd4',1863,1,NULL,'[\"user-app\"]',0,'2023-08-06 12:26:32','2023-08-06 12:26:32','2024-08-05 07:26:32'),('5cf966b47d347dd49130e8b118510dbd68f5fdf2459d372e33721acdc6d728988cea253132435338',180,1,NULL,'[\"user-app\"]',0,'2023-03-07 17:08:56','2023-03-07 17:08:56','2024-03-06 14:08:56'),('5d125f8059d98fc4dd30180a42da80d70382b6c816e15f7dbc9a75211ab22234852b92a004436e91',172,1,NULL,'[\"user-app\"]',0,'2023-06-26 13:29:48','2023-06-26 13:29:48','2024-06-25 08:29:48'),('5d21297561fe9ed221671024090fcee0c6d5ec48cdd491731fc700351a9213dd6f5bb01d91b47b74',425,1,NULL,'[\"user-app\"]',0,'2023-01-27 16:39:14','2023-01-27 16:39:14','2024-01-27 13:39:14'),('5d26238dafba55b77e235c92fd2371fb3c4f06670b924a94e7a78734fdddc48bb9afb30975e79f26',1916,1,NULL,'[\"user-app\"]',0,'2023-08-25 16:42:49','2023-08-25 16:42:49','2024-08-24 11:42:49'),('5d4a85d621a6a016d1c5eec6bd0be534cf3ddc42bb462fad4f1859d8a78d3b9bee8b48ff9b753376',822,1,NULL,'[\"user-app\"]',0,'2023-05-09 20:59:25','2023-05-09 20:59:25','2024-05-08 16:59:25'),('5d57b1fb590c280d37bf7becc0ce422ba82072f2c4dfe5658610ac3b0918dc038bed7536005280cc',1052,1,NULL,'[\"user-app\"]',0,'2023-04-10 04:35:47','2023-04-10 04:35:47','2024-04-09 00:35:47'),('5d5d343cad37c8736ae7d6bd542a147ebb599f8de9399fd20ec8f65f7c9653b1ba5108a5ce46eef1',2,1,NULL,'[\"user-app\"]',0,'2023-02-02 16:16:21','2023-02-02 16:16:21','2024-02-02 13:16:21'),('5d85f355b1521bab72beb7435fe049f78c09bee42ab11b46ff444e830791d4dd0a1e4970687bc23e',2,1,NULL,'[\"user-app\"]',0,'2023-02-14 14:58:39','2023-02-14 14:58:39','2024-02-14 11:58:39'),('5db71d10d0bc151d0f4cfc4889f977fef5ebd56ae246bda2182686e4ce5bf2e9c6fde4ff1212d38c',959,1,NULL,'[\"user-app\"]',0,'2023-02-16 21:30:39','2023-02-16 21:30:39','2024-02-16 18:30:39'),('5de68d2c02d44781c2dfb718326867332397ea613818e324650be18ab7b80f039ec7b27fcdee1907',1345,1,NULL,'[\"user-app\"]',0,'2023-04-30 09:40:37','2023-04-30 09:40:37','2024-04-29 05:40:37'),('5e03a287436e7e8ad7f36f00a225f6412195760ddea2575cfc29fa5211fbfe06e4bd88ce2c096df7',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 04:05:56','2023-09-18 04:05:56','2024-09-16 23:05:56'),('5e1a9da093ec3270682ca0a45d001c9216ffc620dd7f7c69811741519336153a64f0ab8419f1ab54',1151,1,NULL,'[\"user-app\"]',0,'2023-03-13 21:35:54','2023-03-13 21:35:54','2024-03-12 18:35:54'),('5e2e824c30a2f0af93b2ae97c40ca480e12ffdf28b90ab0518fc04a084ec4e8b610b91a7df5e1d9b',2,1,NULL,'[\"user-app\"]',0,'2023-04-01 01:39:57','2023-04-01 01:39:57','2024-04-01 22:39:57'),('5e43bc749723dc74e7e9a53f702f6a00a573d39b328259c70dcf556653649e46ba83a1513b492313',226,1,NULL,'[\"user-app\"]',0,'2023-07-08 18:35:40','2023-07-08 18:35:40','2024-07-07 13:35:40'),('5e57d3cfbe9df55db174c04d048852d92cbf172a9aaf51dc02819176713bbe86e6eca6838bd9b194',109,1,NULL,'[\"user-app\"]',0,'2023-10-02 14:48:42','2023-10-02 14:48:42','2024-10-01 09:48:42'),('5e610e55a06c496909d04f50d615dca82b1b15dfd9cf331ca925616306f7222354bfa2a24e328a99',956,1,NULL,'[\"user-app\"]',0,'2023-07-13 23:25:33','2023-07-13 23:25:33','2024-07-12 18:25:33'),('5e71e7a0061dbb1f87168f314caa7c9662dbedb5862444544dd9fb69e3b2cbb9fe8f9ec66dc90944',1801,1,NULL,'[\"user-app\"]',0,'2023-07-24 20:21:03','2023-07-24 20:21:03','2024-07-23 15:21:03'),('5e730fee7e6c3d5f2aa41db182b62d85bd9f78fdafdbd4b24153122d9e187174a2bb82d359a4723a',1447,1,NULL,'[\"user-app\"]',0,'2023-05-14 18:13:04','2023-05-14 18:13:04','2024-05-13 14:13:04'),('5e78c23526ea11fc2a6da15808d0860caa7c2eaba3003bf607e740dbb43e725d1dff01c07349dffe',1504,1,NULL,'[\"user-app\"]',0,'2023-05-26 20:32:42','2023-05-26 20:32:42','2024-05-25 15:32:42'),('5e88326acfce2d710423e49dc0d93278c9193ff12976ea78e92b87c07456ae9d171c9b0474ea85b4',1626,1,NULL,'[\"user-app\"]',0,'2023-07-12 16:49:54','2023-07-12 16:49:54','2024-07-11 11:49:54'),('5ea21086801303cd30dff69f392cf34f3cef047ca86d36698fe0a12f056cfa8173af9a5cd388c395',1654,1,NULL,'[\"user-app\"]',0,'2023-06-29 22:06:50','2023-06-29 22:06:50','2024-06-28 17:06:50'),('5ea3475f2e265db252ff7792c9b2dbd604233530f96f2b044f908eaa5d0b46b480a09ca0ad2abbaf',1423,1,NULL,'[\"user-app\"]',0,'2023-05-11 02:32:14','2023-05-11 02:32:14','2024-05-09 22:32:14'),('5eb5d4717ef064c1638a931289e3fa90a71f7a5bb6b5ad7f2e4a5a9bd934e2b93fa59fbe9050656c',1062,1,NULL,'[\"user-app\"]',0,'2023-02-24 00:06:08','2023-02-24 00:06:08','2024-02-23 21:06:08'),('5eb925e4ebfa5452d3d85e705db4166cf77c60b8e3e8244bc091958df62a0f88a6d7599571116aca',166,1,NULL,'[\"user-app\"]',0,'2023-04-13 22:59:43','2023-04-13 22:59:43','2024-04-12 18:59:43'),('5ec5d126fe253d76d516e8f4dec3ae9e5900f9e67507dd12bc096806eed1ac816c35431f1f1e3687',2,1,NULL,'[\"user-app\"]',0,'2023-03-12 04:48:49','2023-03-12 04:48:49','2024-03-11 01:48:49'),('5ee4cdd6ecf453f825b391d36b3414751743cd1f0058ad4a377dedf98570722da824a08c1a3c01e6',1592,1,NULL,'[\"user-app\"]',0,'2023-06-18 03:30:38','2023-06-18 03:30:38','2024-06-16 22:30:38'),('5ee607a6bff81bf11e7b89e05bad197635a921baff3a89096a5cc4d236436599f8a16e462803cf49',1308,1,NULL,'[\"user-app\"]',0,'2023-04-23 14:01:12','2023-04-23 14:01:12','2024-04-22 10:01:12'),('5ee7136d836e7bd1b4816924c8cc4d98f76cb18bea639d0a5cbe5cd1ba5ee4a4f36663628cf8138e',2,1,NULL,'[\"user-app\"]',0,'2023-08-16 15:59:22','2023-08-16 15:59:22','2024-08-15 10:59:22'),('5ef114c61134a202c7ce61bd04e775d123828927782fd49b466da7d27007089c696c5f7405f7c9a0',2,1,NULL,'[\"user-app\"]',0,'2023-01-29 16:15:47','2023-01-29 16:15:47','2024-01-29 13:15:47'),('5f031987de6326b5fc904574561167839882bd39180ad31cb6ad831cb234fd96d1fcd697baf41066',2,1,NULL,'[\"user-app\"]',0,'2023-04-19 16:47:24','2023-04-19 16:47:24','2024-04-18 12:47:24'),('5f229ef8151838883f687bdac8d52f362284b9d51f619ec1fef64249dd427a7dc518d032da0a7f11',2,1,NULL,'[\"user-app\"]',0,'2023-08-03 17:04:23','2023-08-03 17:04:23','2024-08-02 12:04:23'),('5f26d2816d1abc205d3601b389e10ec090ae38228addec287bad4c57f587b8d902c938d848d26fa6',1522,1,NULL,'[\"user-app\"]',0,'2023-06-02 01:14:26','2023-06-02 01:14:26','2024-05-31 20:14:26'),('5f283642133b0212aece4ff5536c3a772ae8ac03969f30af0d1cc49a676a557f698906bff0fa484e',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 00:02:40','2023-05-01 00:02:40','2024-04-28 20:02:40'),('5f2ba9c97c74d570568f6e5132051663b5fdc91e03ec7a37008637c6e023098e19112a75cc7dff32',269,1,NULL,'[\"user-app\"]',0,'2023-07-06 22:39:02','2023-07-06 22:39:02','2024-07-05 17:39:02'),('5f3bf3d8ab715c6f53763ca713228d306e2ad6813c376359d860fd0ba37df0c6d02ce8cfa8687d90',1411,1,NULL,'[\"user-app\"]',0,'2023-05-10 13:26:51','2023-05-10 13:26:51','2024-05-09 09:26:51'),('5f43f071cea6d421bc07b0fe0f766ccbdc53d2072aeff9a86bd3618a1ec7f6976b5751018c7f5ddc',71,1,NULL,'[\"user-app\"]',0,'2023-02-07 11:37:56','2023-02-07 11:37:56','2024-02-07 08:37:56'),('5f58f973a73cb45a153072edb6620028744242e9ec22bdd6653a83bceffac29b212132ee57d18cc1',2,1,NULL,'[\"user-app\"]',0,'2023-05-29 01:44:59','2023-05-29 01:44:59','2024-05-27 20:44:59'),('5f717b12e55d157fb6709680242c57125346aa6a4bda87a748baae1a222ff326a5d930951929ecb1',1774,1,NULL,'[\"user-app\"]',0,'2023-07-17 17:11:33','2023-07-17 17:11:33','2024-07-16 12:11:33'),('5f763b47cab7017ad49d8ff93088afb8363f3a2a522821b708e858b4446a07d52cc0445689e97efe',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 20:14:03','2023-01-28 20:14:03','2024-01-28 17:14:03'),('5f7e084ff7bae9ba89a88396e81757f3b0bce8b5d31162895030ec2ca0d9750dae336a2005dc4d62',848,1,NULL,'[\"user-app\"]',0,'2023-02-02 21:10:43','2023-02-02 21:10:43','2024-02-02 18:10:43'),('5f7f47167c67b462d7e34c3f4b8c9dc178fbe83b1351f2477850232a47bec889afb19891b65d4d67',1059,1,NULL,'[\"user-app\"]',0,'2023-03-24 13:56:05','2023-03-24 13:56:05','2024-03-23 10:56:05'),('5f8c1141820a9e5243241fc35be59a239327219686dec4df6ca6c53a4217443683e49e7666fe7315',2,1,NULL,'[\"user-app\"]',0,'2023-09-16 02:15:01','2023-09-16 02:15:01','2024-09-14 21:15:01'),('5f8f4649c6101f04c6ce0d72cb804a0cf8c9bae7c46216b85da9d7508e259c6fdbce4f50eed5dba8',2053,1,NULL,'[\"user-app\"]',0,'2023-09-25 17:39:38','2023-09-25 17:39:38','2024-09-24 12:39:38'),('5fb08858ca12081164db402a1a97022a4e9e7f40feac1dec1428dcf97bb2114ae46a49f79ac2adc0',2,1,NULL,'[\"user-app\"]',0,'2023-09-17 20:43:21','2023-09-17 20:43:21','2024-09-16 15:43:21'),('5fc16aa6e6662788d8067061e93442b7eda94e63611283982e538535ba444e91466819d1419ec37f',2002,1,NULL,'[\"user-app\"]',0,'2023-09-16 01:01:53','2023-09-16 01:01:53','2024-09-14 20:01:53'),('5fceef47ccd5f7f25cb6a205ec77c1c161a859d8390f2f94769391785510b392685292e316879ada',728,1,NULL,'[\"user-app\"]',0,'2023-07-05 04:04:48','2023-07-05 04:04:48','2024-07-03 23:04:48'),('5fe0cfa5eb47d227b28530e658b7568c4da38723417f933b007cc9d69e782816b52c0fcdbbb3771d',663,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:59:52','2023-01-25 13:59:52','2024-01-25 10:59:52'),('5fe639b06203709621b9c2cd421951502e76636cfa01231a8076252ef35ff148536ce49ed73078c3',1079,1,NULL,'[\"user-app\"]',0,'2023-02-25 20:05:00','2023-02-25 20:05:00','2024-02-25 17:05:00'),('5ff0c311abfc5541c78d5b744a5a32c31c44f014457223168b7089221e9c5f67b884171f82660e10',1523,1,NULL,'[\"user-app\"]',0,'2023-06-02 15:25:08','2023-06-02 15:25:08','2024-06-01 10:25:08'),('601f356322788ceebb304daafb4a760138cb4b821ae64f6eacbe6574b8601e7bb35baa8b9e270906',1995,1,NULL,'[\"user-app\"]',0,'2023-09-14 23:28:00','2023-09-14 23:28:00','2024-09-13 18:28:00'),('603ba5bf24503dd90fdc6c3fe7236ef15e763640bb7fdf8bd3fd8a93f52c7795394347b65db5bca8',930,1,NULL,'[\"user-app\"]',0,'2023-02-15 15:46:40','2023-02-15 15:46:40','2024-02-15 12:46:40'),('6048a10105276d71052c51174b4751f82c8f8c2451229f77d2e9993042b483967fb6c5606e86ff1c',1735,1,NULL,'[\"user-app\"]',0,'2023-09-15 18:19:29','2023-09-15 18:19:29','2024-09-14 13:19:29'),('605d63b4b2f96bcd34d32ea0e8e70e4dd9c3230fc8a8b9e61366a69683cdb05b77a202cc5c4cbca4',449,1,NULL,'[\"user-app\"]',0,'2023-05-13 08:31:05','2023-05-13 08:31:05','2024-05-12 04:31:05'),('6066854073a6463d0aab89ee1788674cb8bb7e732014a1809e51d339123dca10150d98c5d6ac6453',2,1,NULL,'[\"user-app\"]',0,'2023-06-22 12:26:32','2023-06-22 12:26:32','2024-06-21 07:26:31'),('608cef84afe77041b2c316706c64c7185cf6922ffd8d2478fb4f0b138764c06bc459c4450b675134',684,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:57:35','2023-01-25 16:57:35','2024-01-25 13:57:35'),('60a0c5403803e10aa28ef847abfb4d1580c62b5506e41958fdd5cc4926e29ac08469abde7ed21550',496,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:05:06','2023-01-25 13:05:06','2024-01-25 10:05:06'),('60bc1b469ebdf580b715e27421a4de98142ba2636e571cdb3e7c916c0a3a328bbcb52b17797f6f39',1410,1,NULL,'[\"user-app\"]',0,'2023-05-10 02:10:15','2023-05-10 02:10:15','2024-05-08 22:10:15'),('60c40e07b3a2c470927c2b8aa0f9d6a21f2705f12b31e151f7a6f7fe136b754a0311e01d8becbfc6',742,1,NULL,'[\"user-app\"]',0,'2023-01-26 17:49:50','2023-01-26 17:49:50','2024-01-26 14:49:50'),('60ec1fbe30e9cac433bdf11edae5917e63bfde8b51df080ad3b21bf5aea264efa2ab9c86cb5b36e5',1747,1,NULL,'[\"user-app\"]',0,'2023-07-13 00:23:42','2023-07-13 00:23:42','2024-07-11 19:23:42'),('60ec1ff4aaa6b07b2826d44ff7013ba50102a009c13f81c05a9138c33646251aa6a22ea57a1d61d7',1214,1,NULL,'[\"user-app\"]',0,'2023-05-14 21:09:40','2023-05-14 21:09:40','2024-05-13 17:09:40'),('60f4e864caed1e7d7cd91d6814f9741cce46ce4c0924c4e737d35eb55191ac4a039ef65cd5688b76',2,1,NULL,'[\"user-app\"]',0,'2023-07-03 20:15:51','2023-07-03 20:15:51','2024-07-02 15:15:51'),('60f92fd3bce4f8f37546ad5ad3e59d098458059c3f09b7a7cbb51ef984a48273d7df965b1bc86587',82,1,NULL,'[\"user-app\"]',0,'2023-09-23 20:55:29','2023-09-23 20:55:29','2024-09-22 15:55:29'),('610b7f016f1bc4e1df63cc45e3dbac9e92784ae34073dc5e6c7715ad3278c8dd097b4e9d97a917c2',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 11:30:54','2023-05-01 11:30:54','2024-04-30 07:30:54'),('610ffe404be615a0860f29cf780dbbbbdb31257cf30b9a8aaf80b52367480ceff47557d72700e738',2,1,NULL,'[\"user-app\"]',0,'2023-06-23 21:41:03','2023-06-23 21:41:03','2024-06-22 16:41:02'),('612175ab1bf85616b1e0cc7fbfb3127106d2b4f1879ea989e96267a794fa52645472c7956c2c9305',2,1,NULL,'[\"user-app\"]',0,'2023-05-15 16:14:28','2023-05-15 16:14:28','2024-05-14 12:14:28'),('6128a240f7d524329fe04680d28519a63b7fad96c0214a0fede56bd995874d1077bdde69e4f85215',2046,1,NULL,'[\"user-app\"]',0,'2023-10-06 21:58:07','2023-10-06 21:58:07','2024-10-05 16:58:07'),('6131c8564a6ff25599f33c44fcde30de6ce9c9275ce08949d6b348d6ef50ff9bdff75c38adbb3336',1614,1,NULL,'[\"user-app\"]',0,'2023-06-21 18:13:59','2023-06-21 18:13:59','2024-06-20 13:13:59'),('613603a18f86fa9944c6bb5f27bf701948d924eab4bb2437fe280650213f439dd023872d8f926a8a',2,1,NULL,'[\"user-app\"]',0,'2023-04-06 01:54:48','2023-04-06 01:54:48','2024-04-04 21:54:48'),('613e40ac333263407e85be808cb748e0cf724340340bef4b656e6a8620d073a79177ffa646a9ebea',613,1,NULL,'[\"user-app\"]',0,'2023-02-02 16:15:41','2023-02-02 16:15:41','2024-02-02 13:15:41'),('613e860c502673942d74d07528a9e059b379ba7182c6478d1ef28fab17826e9843915018287825a5',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 02:14:09','2023-10-07 02:14:09','2024-10-05 21:14:09'),('6153517fa1c11ab835a5ea74ef415fdec8877afde84fe11c06450e6d90ae69c291f30da9d7545697',1983,1,NULL,'[\"user-app\"]',0,'2023-09-13 12:16:38','2023-09-13 12:16:38','2024-09-12 07:16:38'),('616a4b788480c26c5cd5528f3fb54db5697a7eefb7221298805c414585896796c9094de3c1bf5d3f',70,1,NULL,'[\"user-app\"]',0,'2023-01-30 22:38:18','2023-01-30 22:38:18','2024-01-30 19:38:18'),('618f43edad630e32e25de93e293386d355a6b6d2e0c321710d0fac2854de1e5735ce2e04cf568186',25,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:29:43','2023-01-25 12:29:43','2024-01-25 09:29:43'),('6198567b8016cac355b4f53045335dba8b9218f67a2d914c7a99849e9bfcc87d8bc2187636c482c6',728,1,NULL,'[\"user-app\"]',0,'2023-01-26 13:50:29','2023-01-26 13:50:29','2024-01-26 10:50:29'),('619bc2607bfaf1d44da9ddf0deac3f46425d5ff21baa4ad51068016a31617e8f7097994484e61a7b',33,1,NULL,'[\"user-app\"]',0,'2023-01-26 20:45:33','2023-01-26 20:45:33','2024-01-26 17:45:33'),('61a2078113e9c5f736f92cd6bac634a5584c0ab2d18e72ca096a6733e874e431d3282179d970491c',2,1,NULL,'[\"user-app\"]',0,'2023-03-08 01:37:03','2023-03-08 01:37:03','2024-03-06 22:37:03'),('61bb63de7e0a07f43363d6e9f275610fc4c9708a963964150bca43cbf0da11b73ee9298501f538fe',40,1,NULL,'[\"user-app\"]',0,'2023-01-26 12:29:02','2023-01-26 12:29:02','2024-01-26 09:29:02'),('61c3d4e0f7b8cd82857a835d1757c9e0480c1ce6c8554558aed3a4b0e32fcc78f31d3ae3df09d0a7',1436,1,NULL,'[\"user-app\"]',0,'2023-05-12 14:26:39','2023-05-12 14:26:39','2024-05-11 10:26:39'),('61e21628df7e7231e88f207b601a9aa87e9a5e70f7eeda5db0813125e1bbecd27e9088d3bbbeddc6',2,1,NULL,'[\"user-app\"]',0,'2023-07-05 03:58:41','2023-07-05 03:58:41','2024-07-03 22:58:41'),('6206207521786fbe85dab92eceef08af65c4e273e0939935ec6922060353ed846c0c3130365b7d06',1271,1,NULL,'[\"user-app\"]',0,'2023-04-18 17:51:45','2023-04-18 17:51:45','2024-04-17 13:51:45'),('620ff9f8d29ebc3e29dcf5a43cbe5f9bf3c19efff6092143b4d686ad9e86a93626c471cbf305bc84',2,1,NULL,'[\"user-app\"]',0,'2023-05-25 11:40:50','2023-05-25 11:40:50','2024-05-24 06:40:50'),('622fa5c533541cf3d99d771e84b1fc7748b6c5c44e5b539b6133a613c167cbdb59ee6d81926706f9',2,1,NULL,'[\"user-app\"]',0,'2023-08-11 21:27:12','2023-08-11 21:27:12','2024-08-10 16:27:12'),('6252b0fcd68f0cd44e6b7ca2bd62c66543d17c2496302cd5de1b954d535af8c263cbf219508594d6',969,1,NULL,'[\"user-app\"]',0,'2023-04-08 11:49:46','2023-04-08 11:49:46','2024-04-07 07:49:45'),('626e601e79bde7c3f2f928dfedb24e6f2cd3637e8e374cd88dab8a23e4c2a30ae839cf798ce868b0',8,1,NULL,'[\"user-app\"]',0,'2023-02-16 11:27:38','2023-02-16 11:27:38','2024-02-16 08:27:38'),('629e2115e6a1efaa0d525dbe03b135a14cdd2fe11d07cd95c387ea7f985792da61746b326f594ed1',358,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:40:17','2023-01-25 11:40:17','2024-01-25 08:40:17'),('62ad994b12a7dcd4515e9929a30b00f810a420568a90c5de4b0d23dc2bdb9ad548a9ad8ede47bb29',1407,1,NULL,'[\"user-app\"]',0,'2023-07-07 20:21:27','2023-07-07 20:21:27','2024-07-06 15:21:27'),('62c1f3c6d63c59ad0011e86f4ab9e9d7983045146ea148c573004f08b418c1d2f110aa33523388ea',1925,1,NULL,'[\"user-app\"]',0,'2023-08-27 22:37:14','2023-08-27 22:37:14','2024-08-26 17:37:14'),('62c2ffb478e2b0c7b6595674f79a62a7a25cf756014f568e5b1c3789e522471d08a2c7ca1425dda4',605,1,NULL,'[\"user-app\"]',0,'2023-01-27 12:41:44','2023-01-27 12:41:44','2024-01-27 09:41:43'),('62cb50b56e57cb2ae27b57466cee309fa87b78f8c4f1fd220ecc8b9b7ae24b4df52735d6ef9e6066',900,1,NULL,'[\"user-app\"]',0,'2023-02-10 22:38:00','2023-02-10 22:38:00','2024-02-10 19:38:00'),('62d0f6692fec7622d75eddad911db8e8a62d4a4aa3ee5443bd13fb3a5da46032526d7480e2a4c1b6',651,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:10:59','2023-01-25 12:10:59','2024-01-25 09:10:59'),('62eb0aee43696a9f587ceabe14470893640d10ff11a2f900e59147d6c7c5cb7063e686a024f432de',5,1,NULL,'[\"user-app\"]',0,'2023-01-30 12:29:50','2023-01-30 12:29:50','2024-01-30 09:29:50'),('62f081373b37a995d1bc43991dcd61bf1094f90701d6bb1da72752a2ec5b53a4c2928eb135d329cc',2,1,NULL,'[\"user-app\"]',0,'2023-06-04 23:03:46','2023-06-04 23:03:46','2024-06-03 18:03:46'),('63031b512848065fb64a50721f34faf812d3e1ef136dc7defc859150ceb894c10384be01f4ee5d83',1724,1,NULL,'[\"user-app\"]',0,'2023-07-08 17:24:47','2023-07-08 17:24:47','2024-07-07 12:24:47'),('630fb98163a20c70d535be510a3bcda7beeeb5a466e7c870457d830e39a7e961ac608a6a53b9be16',2,1,NULL,'[\"user-app\"]',0,'2023-08-03 12:54:02','2023-08-03 12:54:02','2024-08-02 07:54:02'),('6310542495181af1060d04cb9d76bfda666d546f06494698df462f9c0ec6d4ff11a7b72a976db4ec',1157,1,NULL,'[\"user-app\"]',0,'2023-03-14 17:58:47','2023-03-14 17:58:47','2024-03-13 14:58:47'),('6326e06125e2e68555a7ed08fa3eca03c3e6d9a59c1125370123b200ce8478a865a8c80293395d02',2,1,NULL,'[\"user-app\"]',0,'2023-02-14 19:42:36','2023-02-14 19:42:36','2024-02-14 16:42:36'),('63279d7c78746afd63c3dea785ba7cfb62e18b8a557eb123faa448053449e89cfe5ca4dc803d4784',687,1,NULL,'[\"user-app\"]',0,'2023-02-23 22:57:06','2023-02-23 22:57:06','2024-02-23 19:57:06'),('6328360e21a17c28349d169b26f8466aec19144c936eb3503d8a3c7642753bf93bd5b48b181c409f',2,1,NULL,'[\"user-app\"]',0,'2023-05-03 02:25:35','2023-05-03 02:25:35','2024-05-01 22:25:35'),('6328b8c8547cd18c8e3d6a5ea134f971946d69382e7c111fad8c374fd70ffc392ac6a0bda121fba1',2,1,NULL,'[\"user-app\"]',0,'2023-08-04 03:21:50','2023-08-04 03:21:50','2024-08-02 22:21:50'),('632ea7d44a8a4d4831631459d0763cd8f9b635b70edd966fe1124a67afdc36f2c17364bd52231722',1812,1,NULL,'[\"user-app\"]',0,'2023-07-25 20:00:26','2023-07-25 20:00:26','2024-07-24 15:00:26'),('6348b814acb90ed6616381cfb12ec36caa0126f1e1931430ea8a85d19313c5fab8833fb1ff5f083a',1108,1,NULL,'[\"user-app\"]',0,'2023-03-02 22:00:15','2023-03-02 22:00:15','2024-03-01 19:00:15'),('6349166bc0150c3563fc24d03f0d190d9a852f75568ab7eb32f2c0f661b97fd78853d7c2f7630581',2,1,NULL,'[\"user-app\"]',0,'2023-04-24 23:05:09','2023-04-24 23:05:09','2024-04-23 19:05:09'),('636c009e521443a02b0c7d88c4b84475895365a726a4a1ff756fe4ddefedf1239cbd7d4fa5e8dab7',1019,1,NULL,'[\"user-app\"]',0,'2023-08-06 16:52:48','2023-08-06 16:52:48','2024-08-05 11:52:48'),('6372802b3af050dd4b2ac463fdf9e52da40f6785fb3155185e9a65d53bb38e6fb2d5e20f6ca3a188',1387,1,NULL,'[\"user-app\"]',0,'2023-05-09 18:12:45','2023-05-09 18:12:45','2024-05-08 14:12:45'),('637385b7780325f51d297bd45606ed1356c7f3c6ee3af5ff5d4028d6c55b54606cbb0f2d1ceafefb',352,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:26:56','2023-01-25 16:26:56','2024-01-25 13:26:56'),('6379967a680d3d885941214a29983cf24fc764c3e19313a60a92ccf3cfd83b5e21a216d223aa0182',102,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:39:49','2023-01-25 15:39:49','2024-01-25 12:39:49'),('638d6548a127f7481bc3faf6398784f14de6e832d792d948f94dc6a725205d6ad25af8c95e687cdc',673,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:54:08','2023-01-25 15:54:08','2024-01-25 12:54:08'),('63973e43516c55b68c9d45c61a455a082aafbbae0eb84d755e46115bb35c8a92f41b1be8c6b88072',917,1,NULL,'[\"user-app\"]',0,'2023-02-18 12:47:18','2023-02-18 12:47:18','2024-02-18 09:47:18'),('63a190b3c379fd5663aa9fcc387a9ddf75d14f36ddf1656402a48b68ea1ecaf6554fa065ea353dfe',1376,1,NULL,'[\"user-app\"]',0,'2023-05-06 10:35:09','2023-05-06 10:35:09','2024-05-05 06:35:09'),('63bbaabf42ae3bf64befac2a35f850700e96d93c8f2701609fb5bcd16836c409d0cb998ef0de16cf',1426,1,NULL,'[\"user-app\"]',0,'2023-05-11 16:55:07','2023-05-11 16:55:07','2024-05-10 12:55:07'),('63c300873ebb7929953ebcf1766248df4b00b3385812e337fbaac6a04ee2b0042e732a52153f00fb',2,1,NULL,'[\"user-app\"]',0,'2023-09-03 21:11:07','2023-09-03 21:11:07','2024-09-02 16:11:07'),('63c42c99343c74581cefe5b1a25743dcb4fe6d41ed0bb0bbb994cc96cdfa3617c63b59c769fbf12b',2,1,NULL,'[\"user-app\"]',0,'2023-09-08 20:28:58','2023-09-08 20:28:58','2024-09-07 15:28:58'),('63ccdd3d1dc266bd945f7aee286d0a5411cd3ccd763f551ec0cd9bc4d25065fd9b2dc4cb6b0e0c66',1200,1,NULL,'[\"user-app\"]',0,'2023-03-26 03:29:51','2023-03-26 03:29:51','2024-03-25 00:29:51'),('63d4ec272a04ed236908738af07f805f7eaf50ede433f74beb56d650b7b1d82f67ed976540ea9f99',2,1,NULL,'[\"user-app\"]',0,'2023-04-14 10:16:31','2023-04-14 10:16:31','2024-04-13 06:16:31'),('63ddb7641ce7f9563ef7b6b79d7b937d07e537604f1a27934f30fcedcb90a66706fb4fdda2423ec0',2,1,NULL,'[\"user-app\"]',0,'2023-05-08 11:42:48','2023-05-08 11:42:48','2024-05-07 07:42:48'),('640ce3b187efc6b28b554c58d7c086076ad34513e92059c91c21c803be2dc9a2790f25148c0d2093',1714,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:06:16','2023-07-08 01:06:16','2024-07-06 20:06:16'),('640dba9ab103340d06ad5460bf56c564b9190e818d88ba863806a232134b1a6302114f22efbd9b23',13,1,NULL,'[\"user-app\"]',0,'2023-09-08 20:44:37','2023-09-08 20:44:37','2024-09-07 15:44:37'),('641cf14fb28c77e5fb7c8658d268533b3377059dea1998aecf595b4831de06a1305ae791368ce8e6',1018,1,NULL,'[\"user-app\"]',0,'2023-02-22 20:40:46','2023-02-22 20:40:46','2024-02-22 17:40:46'),('6422e7a7b9d695faebf02f481a780fda541c82f18409a097c88a1e6172b0ef07bcdead952fc811fb',1377,1,NULL,'[\"user-app\"]',0,'2023-06-06 23:14:02','2023-06-06 23:14:02','2024-06-05 18:14:02'),('64259fac90de22929037f425879562f4dd90cc9ad7c14403e8dd5e484935c6f9d6d698f7f1c14745',1840,1,NULL,'[\"user-app\"]',0,'2023-07-31 03:56:59','2023-07-31 03:56:59','2024-07-29 22:56:59'),('643b748f3195ba11de7c99e1da1dbbedebbbcb7bf3cb2c623a77d5411def31cc0480d32e8aa07db0',2,1,NULL,'[\"user-app\"]',0,'2023-05-19 00:14:19','2023-05-19 00:14:19','2024-05-17 19:14:19'),('6440bd910f6aba4048d752e685e3705a73784a83f56702496f46c73b5fcb4e2b573f72e617207307',1322,1,NULL,'[\"user-app\"]',0,'2023-09-25 02:17:12','2023-09-25 02:17:12','2024-09-23 21:17:12'),('64458d0a20cf0f84ca246295bb01d26b9bcecfec486eb316830dd6379a0c5886b554719c8381c35e',1335,1,NULL,'[\"user-app\"]',0,'2023-04-28 00:32:29','2023-04-28 00:32:29','2024-04-26 20:32:29'),('645a0a0dbe5f95d8ef92c085a3bd8b45845dfe00bed5151c2c02234271a3ea3b84959e1f3532bc9e',2,1,NULL,'[\"user-app\"]',0,'2023-03-11 15:34:39','2023-03-11 15:34:39','2024-03-10 12:34:39'),('646bfead5df6073bd9e895117315ea4e19fc002cfcda02ea29ee0e8ae87cd3d149ffbdb3f871bf7d',1417,1,NULL,'[\"user-app\"]',0,'2023-05-23 02:46:26','2023-05-23 02:46:26','2024-05-21 21:46:26'),('64747902b657da4472b669b72b398ebba722a6d2260d960c42d6fa6903c6b3f63cf4dfe899b646fd',46,1,NULL,'[\"user-app\"]',0,'2023-02-20 22:47:35','2023-02-20 22:47:35','2024-02-20 19:47:35'),('647e3ad1ad5556e8a4eac5bace7dc74a6f1e4179e6589822b531e5f04b798b1532f14430391224db',1708,1,NULL,'[\"user-app\"]',0,'2023-07-07 16:39:08','2023-07-07 16:39:08','2024-07-06 11:39:08'),('648a434ce51f189e398108681b1d83222abbdd7c19d1b825e1f8a29621b92522d414f1cbb0deb450',1121,1,NULL,'[\"user-app\"]',0,'2023-03-07 19:05:09','2023-03-07 19:05:09','2024-03-06 16:05:09'),('648ea5c2d55a363798c46f6e38d4b660fc8bc6a471739ae6483f56685c0ccb27b312f0dc333e8e62',1583,1,NULL,'[\"user-app\"]',0,'2023-09-16 14:38:58','2023-09-16 14:38:58','2024-09-15 09:38:58'),('64a6020e43c3c1568ccdc2343a53cfe07721405fccb6b839fc06c7debd74ec558014b64afb9d757f',675,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:02:18','2023-01-25 16:02:18','2024-01-25 13:02:18'),('64b62519c6305c1a7e052a643a9f1623331f20043fa513d7cb486c5cf58fe7d1a2427f679f3a7240',1718,1,NULL,'[\"user-app\"]',0,'2023-09-29 03:50:26','2023-09-29 03:50:26','2024-09-27 22:50:26'),('64b8350c7424685bb330f9f337c3a2c254d7dc042bcee78801bf5d7ee02f2893c9173de5883c7ef6',1349,1,NULL,'[\"user-app\"]',0,'2023-05-13 00:29:14','2023-05-13 00:29:14','2024-05-11 20:29:14'),('64d4cf885f08829b83b51aa5896a2daa04dc2fb9e5c0f00f9ac85a8745790fb41974ef233aeb0e1a',2,1,NULL,'[\"user-app\"]',0,'2023-07-30 21:15:12','2023-07-30 21:15:12','2024-07-29 16:15:12'),('64fb5b1094a675c379b1d742e21116f8b1244786267d7f31c485cf3387cf3a660d0369d1fd4a8d89',270,1,NULL,'[\"user-app\"]',0,'2023-10-04 03:07:05','2023-10-04 03:07:05','2024-10-02 22:07:05'),('6511eef100070e7858dd725585c0ac774931dfaea2185d6c9159913eb5f45f400a448f24bf810ccb',87,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:15:40','2023-01-28 13:15:40','2024-01-28 10:15:40'),('651b97cc94ef5de20e602b636a367957b92c052ab870f108e73bded794efcd8d8c580d993b20938d',1451,1,NULL,'[\"user-app\"]',0,'2023-10-06 02:20:08','2023-10-06 02:20:08','2024-10-04 21:20:08'),('652129ad796b947eeed65aea1a660a9b454c2c4d86d81e9cf01241cf6d88e1737b382ca7a40f36c1',2,1,NULL,'[\"user-app\"]',0,'2023-07-03 20:13:06','2023-07-03 20:13:06','2024-07-02 15:13:06'),('6529a56ca515390ce906be18ef4fd69976eeffbf30465455c061177fe34385fc6542785e080c3d52',1965,1,NULL,'[\"user-app\"]',0,'2023-09-10 03:49:35','2023-09-10 03:49:35','2024-09-08 22:49:35'),('653286b0b0074996d0616160fa2142fb7e0e3ff031e736b6d14d95793f12b89530f4a90e81e79c94',894,1,NULL,'[\"user-app\"]',0,'2023-02-09 12:11:05','2023-02-09 12:11:05','2024-02-09 09:11:05'),('6552da70784e99399cac0625ce17813d06203fc68e5246f2addf6f6ce3f82dea4f85048eea4a3cf3',1292,1,NULL,'[\"user-app\"]',0,'2023-04-21 12:24:17','2023-04-21 12:24:17','2024-04-20 08:24:17'),('65546f9504cc372481300cac07494b1b82aecb66840c36d3562e62ff395148f8a1a2e5d410bc431f',98,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:52:47','2023-01-25 12:52:47','2024-01-25 09:52:47'),('6555878e978658564d4a72d8c625df9e63ccbfd3693f8b8da003e0ef5da46615bb1fe9de7fca773c',829,1,NULL,'[\"user-app\"]',0,'2023-02-03 12:20:09','2023-02-03 12:20:09','2024-02-03 09:20:09'),('6563b7f8b08484fbf16b0a06afdc34ed757f2bad3b28a9f3f39b37be24f97be555312f5c33129e69',2,1,NULL,'[\"user-app\"]',0,'2023-03-03 16:06:57','2023-03-03 16:06:57','2024-03-02 13:06:57'),('65876fe5dde26c302778aac37696289b08630981f763916a4f69a8def304c868c69f01df576a0a81',1049,1,NULL,'[\"user-app\"]',0,'2023-02-22 23:26:17','2023-02-22 23:26:17','2024-02-22 20:26:17'),('6589218c9ee2ff522885f183d587fc9be640c76002dc0d5bbe46afe7e2cfd9d19877d1e651cdc5a5',581,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:19:17','2023-01-25 16:19:17','2024-01-25 13:19:17'),('65a05c59513c6f3489ba10fcb7846d07c34a7c3ecb90df892d720999dc4d6efb6d8539a295228b9c',1047,1,NULL,'[\"user-app\"]',0,'2023-02-22 22:30:53','2023-02-22 22:30:53','2024-02-22 19:30:53'),('65a7051b30c013c0e1125401725cfd5fcfb883b957719f54fb8b6c3ace28219e045ca4dd8a661809',937,1,NULL,'[\"user-app\"]',0,'2023-03-05 22:23:41','2023-03-05 22:23:41','2024-03-04 19:23:41'),('65b4f44869491fe16a526072877dbb42867d980c8bc04ad8700b5c1e82d257608f0037937911a36f',45,1,NULL,'[\"user-app\"]',0,'2023-02-06 00:27:28','2023-02-06 00:27:28','2024-02-05 21:27:28'),('65cb629999716a7d0f55f8d49f5d766f2d45559fed0a4ce4a95160a3c396040678c4f7de229142a2',1613,1,NULL,'[\"user-app\"]',0,'2023-06-21 16:37:10','2023-06-21 16:37:10','2024-06-20 11:37:10'),('65df15f33ff3cbef61f8a3f06174d4e45ceb4ad14c9f9cffa5481b10c34f051416718de309cd7468',1661,1,NULL,'[\"user-app\"]',0,'2023-06-28 23:12:00','2023-06-28 23:12:00','2024-06-27 18:12:00'),('65ec96090dd6b94e820fb9054f82b1b0400359ffd721d69e91ef362cf0ef5b8e12f20aa4d101f816',77,1,NULL,'[\"user-app\"]',0,'2023-09-08 20:23:31','2023-09-08 20:23:31','2024-09-07 15:23:31'),('65ff5486c375eb4c7786d7f3b94c4b7c52ecfc2735dc9095c339806d8c44b7c48523bba748c845ba',1840,1,NULL,'[\"user-app\"]',0,'2023-07-31 01:53:35','2023-07-31 01:53:35','2024-07-29 20:53:35'),('660a9457b51d1cbd6e93c84a79c4576e0b8152c5eb35c80934d45672383b0282d61f1bfa5839798d',292,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:14:19','2023-01-28 13:14:19','2024-01-28 10:14:19'),('6630a000545db7b6ef0886650b7b3161b26273bac84befd14f0bdcce873b8dab5f3a12b3e6d769fd',458,1,NULL,'[\"user-app\"]',0,'2023-03-20 00:39:09','2023-03-20 00:39:09','2024-03-18 21:39:09'),('66369d3a27bdbe33732308f65e02d9b1b20bb53fc3989336619e15ae7e8aaaa95dec03f0a343776c',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:20:17','2023-01-28 19:20:17','2024-01-28 16:20:17'),('664afaa382659b8ff37d2eac05b85872d3d6ed1c3fd82f75a9d34191ebe1fdb72ff8e82d1e75da05',55,1,NULL,'[\"user-app\"]',0,'2023-02-07 18:53:05','2023-02-07 18:53:05','2024-02-07 15:53:05'),('66593bf03b531b1055e353f4360b8078f28f7e0a8b0be4bb9c1078dda822a9d4cb5118ca4effa940',2,1,NULL,'[\"user-app\"]',0,'2023-04-07 16:04:21','2023-04-07 16:04:21','2024-04-06 12:04:21'),('665a994605fd07828e502d8d555ec6d4f2301e53826e6296f91195d1691fffbc5d5cecea4b39ff5e',1807,1,NULL,'[\"user-app\"]',0,'2023-09-23 03:53:48','2023-09-23 03:53:48','2024-09-21 22:53:48'),('66902dd3338874419ef57d95872f0622938a9c9c1d9c36eda26f25986fe60490820a34c2326aad31',2,1,NULL,'[\"user-app\"]',0,'2023-07-05 16:36:34','2023-07-05 16:36:34','2024-07-04 11:36:34'),('669ccba46cd5134f293b61be193dc4e1690e9b9706dec8fd1ad24fa4ab333d137f07c3d6f791f5cb',554,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:12:34','2023-01-25 16:12:34','2024-01-25 13:12:34'),('66a4a662ded3d1697f8850026a80991e1f4fba79f864838dfd2a59858c4128030f5ba3887a2e5297',1303,1,NULL,'[\"user-app\"]',0,'2023-04-22 20:54:59','2023-04-22 20:54:59','2024-04-21 16:54:59'),('66bf6aa46d164cb42d2604f7b6f3a153ed133e823b2f2f6bafd5bfb21f34a3b5e389d3a06275298e',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 02:19:10','2023-10-05 02:19:10','2024-10-03 21:19:10'),('66c54389b12ffba3de2e270f44a37fa91f5eece44461c7cff95e276ebedf42285a242d85d9422257',242,1,NULL,'[\"user-app\"]',0,'2023-04-24 17:59:09','2023-04-24 17:59:09','2024-04-23 13:59:09'),('66dfa3585fcd3c8569861091190a4664031b4cf9326320a1cc4c27c26be80622bb191ac429f8ac7d',2,1,NULL,'[\"user-app\"]',0,'2023-08-23 01:59:17','2023-08-23 01:59:17','2024-08-21 20:59:17'),('66fd16ca3cb566cfdd9d7114797fd0cf43be853ae9a40a83f2d9885b843c6ae96e83f292a8b58ea2',1396,1,NULL,'[\"user-app\"]',0,'2023-05-18 13:22:12','2023-05-18 13:22:12','2024-05-17 08:22:12'),('6718fedb81f7977ac6ba0976dbca28b910deff76cdf5330090d9c87595747b4964fe96df75e73dfc',2,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:05:39','2023-07-08 01:05:39','2024-07-06 20:05:39'),('674351491ed41f790eace18db4a973bb95908decfdc3d9ad7d83aa7ceea9ba75c8c79e00a248ddd3',1341,1,NULL,'[\"user-app\"]',0,'2023-04-29 00:21:13','2023-04-29 00:21:13','2024-04-27 20:21:13'),('674abc760b7e05c8e05a09815fca170e6bed41e2df3fbb720288dcd883cb6ce8c592dce583a726cc',2,1,NULL,'[\"user-app\"]',0,'2023-08-19 16:29:34','2023-08-19 16:29:34','2024-08-18 11:29:34'),('6752660952cc3c85183d2d3fb54da071e07e407f7e1dcad8f0d3b52de40024094a480b05d1850f6e',1728,1,NULL,'[\"user-app\"]',0,'2023-07-09 16:26:19','2023-07-09 16:26:19','2024-07-08 11:26:19'),('67729df32eda04359ab0c0971e0d79f0b32adfb1efd4479ee0a81595e2cb65376054d9db4c439053',1436,1,NULL,'[\"user-app\"]',0,'2023-08-16 15:04:49','2023-08-16 15:04:49','2024-08-15 10:04:49'),('677fa68208db58168c037cde5c9c46adf0068cd1ffbcea330bc477a972230d38f86219322ae4accc',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 15:45:52','2023-05-01 15:45:52','2024-04-30 11:45:52'),('6780c0d4ca5df53e619d0ae37597820ab3ea5bc0a8e5653f7a4799c86a3467c5ae1d8294e0407914',1482,1,NULL,'[\"user-app\"]',0,'2023-09-06 14:25:10','2023-09-06 14:25:10','2024-09-05 09:25:10'),('679444de14466e09186bf23135e70561fc0d0d00e98b3b5f671a35ee01e2e9ce2282d9276a407ee1',1408,1,NULL,'[\"user-app\"]',0,'2023-06-29 11:43:25','2023-06-29 11:43:25','2024-06-28 06:43:25'),('679bde022f154a65fe668b0cf9765fbe23d25eabefa8f19ffd39b4b98619e0c9831ad7e26ee35d80',702,1,NULL,'[\"user-app\"]',0,'2023-01-28 12:18:31','2023-01-28 12:18:31','2024-01-28 09:18:31'),('679fefe543cc963bf8323b1573a2e4e8cd1425a11ed1f58ef41d8247e163c8b05bed9d08173f19e0',104,1,NULL,'[\"user-app\"]',0,'2023-10-01 18:49:49','2023-10-01 18:49:49','2024-09-30 13:49:49'),('67b13d01a0754eec2a2d690f84f43c3bb1a9e5d33397fcd65da02b4367de72efb86f88d414ab8301',419,1,NULL,'[\"user-app\"]',0,'2023-02-24 19:56:03','2023-02-24 19:56:03','2024-02-24 16:56:03'),('67bf9fa5b01ebf8c2f71c7ca52b3c6910c946a3be997877903ab68733086b4459dbed22e9d013489',1869,1,NULL,'[\"user-app\"]',0,'2023-08-09 21:44:29','2023-08-09 21:44:29','2024-08-08 16:44:29'),('67d0d1148abd503f30d12514142af48c2d37ee067a7baec211cbe9eb1f58c8ddeb12a399c39e5aad',1633,1,NULL,'[\"user-app\"]',0,'2023-06-24 04:03:05','2023-06-24 04:03:05','2024-06-22 23:03:05'),('67d605c7ebd090024660b6aff5458747c2e664391757888b1637b1a68e6f53d01fa8432b43c7aea1',2,1,NULL,'[\"user-app\"]',0,'2023-04-22 00:12:29','2023-04-22 00:12:29','2024-04-20 20:12:29'),('67e009a5664edb35995e719f6fd286c28cc6104662429a9d321c73d260c2ebe7f17cfc667257d630',2062,1,NULL,'[\"user-app\"]',0,'2023-09-27 16:58:12','2023-09-27 16:58:12','2024-09-26 11:58:12'),('67f14a0dccd0e6da07a387631664dfe6c6fc1c65161170decabf315e481539c66b5e26e5f26a5e4d',1019,1,NULL,'[\"user-app\"]',0,'2023-09-09 22:16:17','2023-09-09 22:16:17','2024-09-08 17:16:17'),('67fb6271ab54b62fac233f8905f7aab6485ab8a1c4274039d7f2832ef0d29e3817407b9f78dad64c',2,1,NULL,'[\"user-app\"]',0,'2023-07-31 18:24:39','2023-07-31 18:24:39','2024-07-30 13:24:39'),('680886a04f7658f0cdd63a9f6f5f3597eb1702889d2f80095ccfb6a978ed61b0f844e418f46882a6',961,1,NULL,'[\"user-app\"]',0,'2023-02-17 01:08:25','2023-02-17 01:08:25','2024-02-16 22:08:25'),('6811fca8a7eac5f6ed6ee0bfbeff5649100f93da720d96ab1ae6a8b694c39f87daf37e6362f9ef64',881,1,NULL,'[\"user-app\"]',0,'2023-02-08 14:43:01','2023-02-08 14:43:01','2024-02-08 11:43:01'),('6849d10f1b9288f9a994f966821f317f5a4c92cfbd238ba4f10e8267677ba137e4728c22b2752c13',210,1,NULL,'[\"user-app\"]',0,'2023-01-26 12:31:28','2023-01-26 12:31:28','2024-01-26 09:31:28'),('685876c57507a5c7ce0f061118c1a5c8d86fccb5947169650436aafd7371bad697882e7687988681',242,1,NULL,'[\"user-app\"]',0,'2023-04-26 10:16:39','2023-04-26 10:16:39','2024-04-25 06:16:39'),('68625195c36e65577a122faa85401c0ca3bad976055b09e250eab468143b540952a6b3dc8d32d2d8',2000,1,NULL,'[\"user-app\"]',0,'2023-09-15 15:55:10','2023-09-15 15:55:10','2024-09-14 10:55:10'),('6864e1bc181cefec86ed9df4ce6906b7f43d5510adb808db1bc4702d8d84db9e55fb93e03eb916ca',1407,1,NULL,'[\"user-app\"]',0,'2023-05-17 14:06:38','2023-05-17 14:06:38','2024-05-16 10:06:38'),('6864fef91b53ca6970d987de69107ff425adf5b817dbb2d239077a0689b2c215cea7a42afb6a3ad4',936,1,NULL,'[\"user-app\"]',0,'2023-02-15 22:50:20','2023-02-15 22:50:20','2024-02-15 19:50:20'),('68690de65d9ef125b70a4cfe930ddd4e11415adaf255a35a9abba5ff9032148e9dba012fd6af9a6c',819,1,NULL,'[\"user-app\"]',0,'2023-01-31 11:47:43','2023-01-31 11:47:43','2024-01-31 08:47:43'),('686d58fb9911abb47ca696c32b05a1b71de1dbc2899ca08679fa70bc7531006242bcf67c1935d9ad',1262,1,NULL,'[\"user-app\"]',0,'2023-04-16 01:40:14','2023-04-16 01:40:14','2024-04-14 21:40:14'),('686f876be15de0772ab7c64e38d3efe878b750cd9538e005a1fd5959adccbd9f5387cd637790bced',68,1,NULL,'[\"user-app\"]',0,'2023-01-27 14:01:40','2023-01-27 14:01:40','2024-01-27 11:01:40'),('68707e64fd845e056fdf28e300ddc16a0f123d3f446cca6f994daef8dee15bf746f47b987da0e8cf',2,1,NULL,'[\"user-app\"]',0,'2023-07-07 19:01:35','2023-07-07 19:01:35','2024-07-06 14:01:35'),('688c3cd9ed44cf463fcdfd65e6c36c07f2541daa26d85226ac239b1079756db4b7ab7f756e09fa78',937,1,NULL,'[\"user-app\"]',0,'2023-08-09 00:30:02','2023-08-09 00:30:02','2024-08-07 19:30:02'),('689453983152ddbd09171fda8c6095991399d17ca5bc6dd4808fe1626b2e1a09902b10cac3239c59',8,1,NULL,'[\"user-app\"]',0,'2023-06-15 20:04:32','2023-06-15 20:04:32','2024-06-14 15:04:32'),('68a5d538dfd1943bf5bf09290d278f0e78a04fee642d99e4452657eb575688a6e0530c27b3e6bf78',1395,1,NULL,'[\"user-app\"]',0,'2023-05-15 22:37:04','2023-05-15 22:37:04','2024-05-14 18:37:04'),('68b29d0e4a59c8293e43f9b8bda16deb125621dc5e9fc98238feade6a0e2578ab88b219400532422',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:30:53','2023-01-25 17:30:53','2024-01-25 14:30:53'),('68b9409c3852355a852b40a33d48ecc44ffdd973df5e6cba73c9840895c43b02cec7c64d470da6f5',268,1,NULL,'[\"user-app\"]',0,'2023-03-03 12:54:17','2023-03-03 12:54:17','2024-03-02 09:54:17'),('68bc635d845c81affa13ef919caa13103f62d359b9ad1dc08d1e4d63e238bb8f9c346697ee5159f2',2,1,NULL,'[\"user-app\"]',0,'2023-06-04 11:11:08','2023-06-04 11:11:08','2024-06-03 06:11:08'),('68c0c85befa76bb3ebd62456c706094e27d0d700bdbb5ad058705132d647445b4fd626ba1789f021',231,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:30:57','2023-01-25 16:30:57','2024-01-25 13:30:57'),('68c389e5752a277e1c10255e8126d503f6c898f47532f9eb4f4d1660723875331bdb5a446c73777f',1008,1,NULL,'[\"user-app\"]',0,'2023-02-20 23:20:56','2023-02-20 23:20:56','2024-02-20 20:20:56'),('68ca3fc6d6db0600f51179d2e09ebc49807780e31ee57c8b51ee97b2369bcc485b60816054c3f371',1018,1,NULL,'[\"user-app\"]',0,'2023-10-01 00:02:25','2023-10-01 00:02:25','2024-09-28 19:02:25'),('68d46466448331812f981fafd72d86916f75356364ddced8dbc2097457034feb8c6d0475cabbf8c3',1951,1,NULL,'[\"user-app\"]',0,'2023-09-05 00:46:56','2023-09-05 00:46:56','2024-09-03 19:46:56'),('68d577cd7d0e48bccd626809142be8d1687531ef8a45f1c59476813673a3aeb17f7914a91d2c484e',798,1,NULL,'[\"user-app\"]',0,'2023-02-21 20:08:17','2023-02-21 20:08:17','2024-02-21 17:08:17'),('68e8a95bf04663045676a0c170a379b01944d7f7797274ffe1b8a95cf73e0277a055d23233e8a7b0',2,1,NULL,'[\"user-app\"]',0,'2023-02-18 14:01:19','2023-02-18 14:01:19','2024-02-18 11:01:19'),('68fd16f1f0da774a6fe8b14960af6a1aaaa46baeb56dd5f2f7d8d5a8d064c70243154aa143b9788f',1287,1,NULL,'[\"user-app\"]',0,'2023-04-20 23:43:47','2023-04-20 23:43:47','2024-04-19 19:43:47'),('690755ce4c17713882f3c87d2883a541f2d12a28f1b96687420c309c8cf82a500b07d3514f51bfc6',975,1,NULL,'[\"user-app\"]',0,'2023-02-18 15:30:20','2023-02-18 15:30:20','2024-02-18 12:30:20'),('6919c3dc59dcdabf047952c366f3ea26b3df2869dc5fa7953ba089ca8ab323980f74e2358938102d',1488,1,NULL,'[\"user-app\"]',0,'2023-05-20 13:58:09','2023-05-20 13:58:09','2024-05-19 08:58:09'),('69404299f7e22813f04b6c7ec8ab4aaa7cbfddc7d049fb6656f784e274554ddeec05ed0d659c8c14',549,1,NULL,'[\"user-app\"]',0,'2023-04-13 23:45:12','2023-04-13 23:45:12','2024-04-12 19:45:11'),('6945dcc12e47e69f448bdecf1de1098dc1370a4b400e3bcc873b3ee5d8512850dff0bf0d213a9587',1813,1,NULL,'[\"user-app\"]',0,'2023-07-25 21:28:01','2023-07-25 21:28:01','2024-07-24 16:28:01'),('695c0bcc6256f2d55ee4919d54a2c526726ab2f2ca52fb55ddfddd699ff74cbc320fb26a0fb7dc74',1467,1,NULL,'[\"user-app\"]',0,'2023-05-16 21:53:34','2023-05-16 21:53:34','2024-05-15 17:53:34'),('69638839d49720d6f577dfabde6e1697125db2f46f38285d20a6f2ad302a1630f2a4aefa37024ef5',729,1,NULL,'[\"user-app\"]',0,'2023-01-26 14:09:27','2023-01-26 14:09:27','2024-01-26 11:09:27'),('696a4114cfcc624af14caf1b2ff698996fb5a52689a61a6bb2eebf28b93640b68b029ec1715216d9',2,1,NULL,'[\"user-app\"]',0,'2023-08-18 22:39:46','2023-08-18 22:39:46','2024-08-17 17:39:46'),('696e35de2d66b920440996dfaa2fc13f99544ccb3ed021e6b40c0b862f041092094bfe89f2f3a313',75,1,NULL,'[\"user-app\"]',0,'2023-02-08 01:36:59','2023-02-08 01:36:59','2024-02-07 22:36:59'),('69a1c2f1fdabce3ed759409b4982b507e727b4fb758ca88efa07cb5ea9d68f0ee99ad32ec6363396',239,1,NULL,'[\"user-app\"]',0,'2023-02-28 12:38:38','2023-02-28 12:38:38','2024-02-28 09:38:38'),('69a4ca0ab70c60ffbe3c9dbe5f0ba690521a671eeba88cb158039b249c8cfb4333d487a5ca938c99',2,1,NULL,'[\"user-app\"]',0,'2023-10-03 20:32:08','2023-10-03 20:32:08','2024-10-02 15:32:08'),('69a8eb1b0fb697cd6976ecce821d0fed4ecdc4468b02a628f0435a55233356742f17980b47e87a73',2,1,NULL,'[\"user-app\"]',0,'2023-04-21 16:34:35','2023-04-21 16:34:35','2024-04-20 12:34:35'),('69b2c5ac9a7127f48d2f6629388b8cfd3d74ba7b8c242a31cfa11a22660d53e68018aab3e3333231',1705,1,NULL,'[\"user-app\"]',0,'2023-07-06 14:22:22','2023-07-06 14:22:22','2024-07-05 09:22:22'),('69da5e1f002b32cff5afc18118264356fa89604f60a5b1454df589e5af08b6b6fe16a1c56a7fb082',1885,1,NULL,'[\"user-app\"]',0,'2023-08-16 23:43:34','2023-08-16 23:43:34','2024-08-15 18:43:34'),('69ee9a33df14f8c3616f465113f57ab5d3e76949de9d58526092290c13e5a723dc4221b7a617b15a',391,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:57:20','2023-01-25 18:57:20','2024-01-25 15:57:20'),('69f9c352949918cf7ad6f27a09f5b595436c78b03458f0b9061d2f8af93428c653986b1ab9c2935e',2,1,NULL,'[\"user-app\"]',0,'2023-02-28 16:02:23','2023-02-28 16:02:23','2024-02-28 13:02:23'),('69fcf51251cd7f1452c013954a89f89cdf1dd67d58a5451672dec95317633c50b68eb96b0d8a40d3',550,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:45:54','2023-01-25 11:45:54','2024-01-25 08:45:54'),('6a00e5c5f6e5bc233b1556b9ac7577c086aa4aaaf1090ac3160c1b5dcdeda0ab21d328bb9b64ebb7',8,1,NULL,'[\"user-app\"]',0,'2023-09-06 22:13:54','2023-09-06 22:13:54','2024-09-05 17:13:54'),('6a1b3cfb9dcf9d721a6850255c41b2eb4ca3293e840827394f2390fbe1761e0b10c2be95d4c178db',1311,1,NULL,'[\"user-app\"]',0,'2023-08-16 18:19:41','2023-08-16 18:19:41','2024-08-15 13:19:41'),('6a2cccc593f12c4ae5d23d19d625663fa271e32f07d8e9704b479b32d7f80f09137f9dbbeb623cd2',1639,1,NULL,'[\"user-app\"]',0,'2023-06-24 22:09:59','2023-06-24 22:09:59','2024-06-23 17:09:59'),('6a378b9e72f4dc1f7ba347b7496aecb3e83dc2b031985cf486d42715c5b5b4b59726386bfbffd3c8',1759,1,NULL,'[\"user-app\"]',0,'2023-07-14 15:25:54','2023-07-14 15:25:54','2024-07-13 10:25:54'),('6a3f0541424ab4b34edf0975a68e18ae9f70e496e679f46d853d97c56196c698617d9fbdbe78b6f4',1160,1,NULL,'[\"user-app\"]',0,'2023-03-30 22:05:55','2023-03-30 22:05:55','2024-03-29 19:05:55'),('6a4784405c30aebe34d73ec6b18517a451e850204eb31a7bb7d3b5549cd39d4331907de366db376e',1991,1,NULL,'[\"user-app\"]',0,'2023-09-14 02:43:31','2023-09-14 02:43:31','2024-09-12 21:43:31'),('6a54671bd552f698e4b51a1ea677768635fafc76c09f608a64f80678feae8b900fd10298e9c96d44',1823,1,NULL,'[\"user-app\"]',0,'2023-07-27 18:19:57','2023-07-27 18:19:57','2024-07-26 13:19:57'),('6a60e92b460b03a5e2f3b677bd6493e33e57e3e63621fb18b07ef840980965a95ac03fdef7336276',1535,1,NULL,'[\"user-app\"]',0,'2023-07-14 00:30:25','2023-07-14 00:30:25','2024-07-12 19:30:25'),('6a6ff4644b3417f932495e5be3684ceff7d9940ce2ad309a8d585a82a10c30bdeff4c87770281298',1049,1,NULL,'[\"user-app\"]',0,'2023-10-03 04:05:57','2023-10-03 04:05:57','2024-10-01 23:05:57'),('6a716494fae1316caf1c33dfa7f850d320c2bf1df0a220d1c1964308d7445b3992b2315aa4756b74',868,1,NULL,'[\"user-app\"]',0,'2023-02-06 23:35:11','2023-02-06 23:35:11','2024-02-06 20:35:11'),('6a716654ef7c23ee6c620c73811cd64f8347873ca0db5528def74e0bcf3feca946c2bce911a2a32a',353,1,NULL,'[\"user-app\"]',0,'2023-02-24 22:51:53','2023-02-24 22:51:53','2024-02-24 19:51:53'),('6a78b2d70695feb759b75ef0ee328ef31f67c0b2d763c8d0d495f2ee5ef61c0d85b308768e90a581',2,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:40:17','2023-07-08 01:40:17','2024-07-06 20:40:17'),('6a896a90bb9cc986ba952f5f9407ea39ba9b68a27b2b6d5c1aea3914b356262c30d013186c5b6bdc',1301,1,NULL,'[\"user-app\"]',0,'2023-04-22 13:00:22','2023-04-22 13:00:22','2024-04-21 09:00:22'),('6a8da570af5c235d11d78a2773b867614946bb140458efa693aa4c50548e86a1b7cc8a5d6e5e350f',1075,1,NULL,'[\"user-app\"]',0,'2023-06-03 23:15:27','2023-06-03 23:15:27','2024-06-02 18:15:27'),('6aa6a14adb4864aab150c395a772dcdd345634748f3c990f515022153ff6fb64090d2c23ca8d7b63',1424,1,NULL,'[\"user-app\"]',0,'2023-06-03 02:26:39','2023-06-03 02:26:39','2024-06-01 21:26:39'),('6ac5bcc6ff0cc01e601055a514e5e433102991316de36d58a2f73f3be534a48a535ef0b2d315c351',584,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:35:59','2023-01-25 15:35:59','2024-01-25 12:35:59'),('6ad3ada259ae13925cd5eb56f55667e92b25eb9bdde66eabf45d470834ffd7e5afe5d0a60c42acfa',866,1,NULL,'[\"user-app\"]',0,'2023-02-06 12:42:48','2023-02-06 12:42:48','2024-02-06 09:42:48'),('6aebc5fb2e60a330d8bc0500cce8637c71015bf92c91779f13934408384a3b8a0501304bb0ab230c',1547,1,NULL,'[\"user-app\"]',0,'2023-09-16 00:41:33','2023-09-16 00:41:33','2024-09-14 19:41:33'),('6aefcbee48c5b10403ac6777582a225f2dd01b73474b0ea50f5ddea8204353de0c2eb92d58632397',83,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:48:05','2023-01-25 19:48:05','2024-01-25 16:48:05'),('6af300ff0f22562c8141c14d163b39a37a769e3f9c7581f2594e005567e0f9d89fe0a8ccc738af4c',1463,1,NULL,'[\"user-app\"]',0,'2023-05-16 18:34:11','2023-05-16 18:34:11','2024-05-15 14:34:11'),('6af78ce8ae53e01474626c15073c0c9cc742b6c74a7c1f4462fa48eb3670e23f02e116eaf303dd10',815,1,NULL,'[\"user-app\"]',0,'2023-01-31 11:30:13','2023-01-31 11:30:13','2024-01-31 08:30:13'),('6b025af1fa513c828d6886fe0bfd9397756bf82b0e899febdae8a5701e3f6da32285da459940cb50',826,1,NULL,'[\"user-app\"]',0,'2023-01-31 17:41:52','2023-01-31 17:41:52','2024-01-31 14:41:52'),('6b123f4b3a9da2494e2c1b1805dea66374397d267c55d1e77e4ffb0427839bfd5a3cf575809d294a',920,1,NULL,'[\"user-app\"]',0,'2023-04-29 17:03:06','2023-04-29 17:03:06','2024-04-28 13:03:06'),('6b1f0278bff6fe4985014270b52a27c329ce883d9f437929cddcc83ad54bb0891e507d026c06ec35',822,1,NULL,'[\"user-app\"]',0,'2023-02-03 11:20:35','2023-02-03 11:20:35','2024-02-03 08:20:34'),('6b3fd36fa21d7842808dfca58341972202a161eb15bbe6862b3d53daa0c8ade34b8fcf325536b37b',51,1,NULL,'[\"user-app\"]',0,'2023-04-03 23:02:00','2023-04-03 23:02:00','2024-04-02 19:02:00'),('6b4591a363606d0c716767b1189bf9d134a23ea1a5254163765b75e15505f30894eeb58133d7c907',65,1,NULL,'[\"user-app\"]',0,'2023-09-18 12:36:09','2023-09-18 12:36:09','2024-09-17 07:36:09'),('6b4b99604a17c640ad47594feaa3a24a97cb762d38d77d624ecc321a82533d5a919830a9eb7ca74a',1404,1,NULL,'[\"user-app\"]',0,'2023-05-11 15:34:01','2023-05-11 15:34:01','2024-05-10 11:34:01'),('6b6af60ed447d864dd5bccc62447940891c2c0964eef1c76406077df15201d49334c2238c85ba0d8',1003,1,NULL,'[\"user-app\"]',0,'2023-04-09 14:11:27','2023-04-09 14:11:27','2024-04-08 10:11:27'),('6b6c96d412549190c187564b624f14eb5806a0310a3d6b895148928408dad4d9c6daaff725c4b78e',2,1,NULL,'[\"user-app\"]',0,'2023-09-08 23:31:46','2023-09-08 23:31:46','2024-09-07 18:31:46'),('6b7b5674a2c5710f9114229558b73daa01a683de56e740f2fc5fed0ffe62428c12f79d08a890a203',242,1,NULL,'[\"user-app\"]',0,'2023-09-14 22:51:12','2023-09-14 22:51:12','2024-09-13 17:51:12'),('6b8423db93ca5a5f8548c47ac974ca662ea10dd58b0905047616e77ab3c4e284d9ac8b5375717348',1605,1,NULL,'[\"user-app\"]',0,'2023-08-08 00:52:24','2023-08-08 00:52:24','2024-08-06 19:52:24'),('6ba78632994d4ddbe3ab2317dde48951cfc702f2971c10e0b221cb59d6dbbfd73ebd6724a6fef904',200,1,NULL,'[\"user-app\"]',0,'2023-08-08 21:45:12','2023-08-08 21:45:12','2024-08-07 16:45:12'),('6bae7755d79d2039851511923e7d5d943cd1f04796e2ac796b8f663fcf17ef6cf568811879314cbb',416,1,NULL,'[\"user-app\"]',0,'2023-09-19 21:42:00','2023-09-19 21:42:00','2024-09-18 16:42:00'),('6bb360fa01e80f69fe6f02a0a3c3882d1e923c6a26c1d2306a06053aeebcbe0c8ce5bf47ddc879cf',2,1,NULL,'[\"user-app\"]',0,'2023-09-24 15:27:11','2023-09-24 15:27:11','2024-09-23 10:27:11'),('6bb89113026cecd4a5dbf43c1efe60510ab84c4dc25fba9a76887275e3412004d7ba0066ca2cd312',2,1,NULL,'[\"user-app\"]',0,'2023-07-03 00:36:05','2023-07-03 00:36:05','2024-07-01 19:36:04'),('6bc2faf63bc045e78d551f50625d1f7821abecfb86565bf3505af8ca362d1f435195925661ca17ad',937,1,NULL,'[\"user-app\"]',0,'2023-08-09 00:31:40','2023-08-09 00:31:40','2024-08-07 19:31:40'),('6bd4f8510b27e135a7304ad3c3236b59063ee22043460b434d4febc3dbc0a6e1322faac1c990fc39',408,1,NULL,'[\"user-app\"]',0,'2023-05-09 14:35:57','2023-05-09 14:35:57','2024-05-08 10:35:57'),('6be6fdf00f1db07fa4f13914ec111578c0eed39ff6afe52c7bd9595d759a27f08fc899270e1f403a',1796,1,NULL,'[\"user-app\"]',0,'2023-07-24 02:08:31','2023-07-24 02:08:31','2024-07-22 21:08:31'),('6c0425c372365a1e593e1ec4446d5f0bb645f497e274f2e79218374476f18c06b1de955b23557dcc',2064,1,NULL,'[\"user-app\"]',0,'2023-09-30 04:28:41','2023-09-30 04:28:41','2024-09-28 23:28:41'),('6c137de8e32d3f180a65da3245850bf079f70e8a5b1841e5a50c4afc19da4ea4608583ec53a9bc2a',1949,1,NULL,'[\"user-app\"]',0,'2023-09-04 18:30:27','2023-09-04 18:30:27','2024-09-03 13:30:26'),('6c1db07c94cd952fcfc8113912c4bfbd42fa764dd92e37f5ee5bfde20b33e7ee7cb946f53cc462ad',203,1,NULL,'[\"user-app\"]',0,'2023-08-28 13:04:01','2023-08-28 13:04:01','2024-08-27 08:04:01'),('6c206c32fac157d0149942440d5036e2505a05511a33dd28fd10e4015e8c44ef262fafcd1d52a455',2,1,NULL,'[\"user-app\"]',0,'2023-06-03 14:32:06','2023-06-03 14:32:06','2024-06-02 09:32:06'),('6c380cb99c834ab6959d797f3e268704785215964746d51c97ad5c879a2e02b351e705405ab1ee43',501,1,NULL,'[\"user-app\"]',0,'2023-06-29 14:17:11','2023-06-29 14:17:11','2024-06-28 09:17:11'),('6c400e754985e7bb30b01bfea84e0359cc4037f179943452002f74588e3045901ab555e92e8f2dee',284,1,NULL,'[\"user-app\"]',0,'2023-09-12 13:36:04','2023-09-12 13:36:04','2024-09-11 08:36:04'),('6c4dbaf75628124a312832c04871588251f934f130ebfde20c15f4ce02ab363db1e2feff9a0ee56d',224,1,NULL,'[\"user-app\"]',0,'2023-01-26 16:54:37','2023-01-26 16:54:37','2024-01-26 13:54:37'),('6c6435943a8db5ef4e1f9cb4e07b93aef3901f2cc9ffe79b54c24908d747d4a8ca8d668900cd2cad',2,1,NULL,'[\"user-app\"]',0,'2023-07-08 02:42:53','2023-07-08 02:42:53','2024-07-06 21:42:53'),('6c6d80a34925969508811aba3ba57fde8872e065c622abbca3ec09f507364b1a606c462d4b7066f9',217,1,NULL,'[\"user-app\"]',0,'2023-01-25 08:12:53','2023-01-25 08:12:53','2024-01-25 05:12:53'),('6c7fb99e113a7e356ea73d003e356bb1427599db8b7121fcac2ad1170612edb623156ae1160072e8',1164,1,NULL,'[\"user-app\"]',0,'2023-03-16 17:41:43','2023-03-16 17:41:43','2024-03-15 14:41:43'),('6c85a519252e5239040a7771b7b7f64e671c973ab8dfc1d6344d7618da96358db5d623f03adfac50',1946,1,NULL,'[\"user-app\"]',0,'2023-09-04 01:20:37','2023-09-04 01:20:37','2024-09-02 20:20:37'),('6c8f629303c1dd6296a0be16032eda8c13c2298635eb123f2b596045d25433659abbc56714ae3ce3',1458,1,NULL,'[\"user-app\"]',0,'2023-05-15 22:14:46','2023-05-15 22:14:46','2024-05-14 18:14:46'),('6ca403fac71f9e794f29c46b68e71edb7abe32be043a3c7dc04380e7aa6bebd3f1e2720122f1cf89',2,1,NULL,'[\"user-app\"]',0,'2023-02-03 20:01:04','2023-02-03 20:01:04','2024-02-03 17:01:04'),('6cb21aa6a2c8128acf8c4240602e73eb22aaf5cd2d0cb709eeb122495704bdf1d9a975cfd910f465',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:42:40','2023-01-25 13:42:40','2024-01-25 10:42:40'),('6cb2f22def3535de51146d7a5a942969f0201c224aa6edc4695a13b98d253cc28e1b15067a5d7306',2,1,NULL,'[\"user-app\"]',0,'2023-08-18 01:48:37','2023-08-18 01:48:37','2024-08-16 20:48:37'),('6cc852db0bb26d970a364c68a65283404c302d7b8aa8956414ee4168a1f636980898fbb109564dc9',1184,1,NULL,'[\"user-app\"]',0,'2023-03-23 22:17:08','2023-03-23 22:17:08','2024-03-22 19:17:08'),('6cccdedddad04f6c303b744feb3977f8597a0a3c0e110657eb36daa071f3bd366f2cffd62f7e65cf',2,1,NULL,'[\"user-app\"]',0,'2023-09-27 14:40:16','2023-09-27 14:40:16','2024-09-26 09:40:16'),('6cdb76fa2795ecb450fa58476bae7952cb6fd778fd5dee9535ac9fe33648bb5a96f838b41743fbca',1367,1,NULL,'[\"user-app\"]',0,'2023-05-10 01:08:00','2023-05-10 01:08:00','2024-05-08 21:08:00'),('6cfc53fc8fc69f8d106f51b2992bc1b0b4c42e83e6f5f5e1a841634a6b4798d9eb6304cfddbd360d',1044,1,NULL,'[\"user-app\"]',0,'2023-10-02 12:38:58','2023-10-02 12:38:58','2024-10-01 07:38:58'),('6cfcd06dc1ea9f3fd5a955996f2da8dc179a20c84358ed0b79e01c3bcc8029cb6b1c4154aba43ca0',2,1,NULL,'[\"user-app\"]',0,'2023-01-29 19:10:03','2023-01-29 19:10:03','2024-01-29 16:10:03'),('6d0cdadaeb51d20a5f349b5c8b36a50503483af3ee154955c94e33e7048624043a580e11f5a59fc0',1851,1,NULL,'[\"user-app\"]',0,'2023-08-01 19:51:33','2023-08-01 19:51:33','2024-07-31 14:51:33'),('6d2849903ee0f3f0f3e7fc3d35038e57a0ee5f67a10f3539df1e12e39961d0cb9b2ee88e395bf63f',1388,1,NULL,'[\"user-app\"]',0,'2023-05-09 18:18:27','2023-05-09 18:18:27','2024-05-08 14:18:27'),('6d5181f980327d609218e4a2d460c6ee7b3308ff484afc8bcab63c05003bba6ad18ae4d04033fd6a',2,1,NULL,'[\"user-app\"]',0,'2023-07-15 02:45:13','2023-07-15 02:45:13','2024-07-13 21:45:13'),('6d890f7baf72aefafb9c585e38e538431b9e87cd06487cd2307fa70bc4565752be11647201ceda6c',8,1,NULL,'[\"user-app\"]',0,'2023-09-24 17:47:01','2023-09-24 17:47:01','2024-09-23 12:47:01'),('6d8ac5445ac2fe24e3d7a55af5c0f9dfd88b6793f38e6a4436a5c4f7af7b81a5f4a2d6f4993d84d4',291,1,NULL,'[\"user-app\"]',0,'2023-05-09 23:54:05','2023-05-09 23:54:05','2024-05-08 19:54:05'),('6d9a54ef937fb5f97824dc915cf87d874211aeae9d07043ffe4e5119813f27e424d001fe86c0f476',2,1,NULL,'[\"user-app\"]',0,'2023-06-13 20:13:55','2023-06-13 20:13:55','2024-06-12 15:13:55'),('6da3b36fc97adbd3fc89d4d8e760ddb77566443311b7fede063af83fa467b840a92727295d23b357',2,1,NULL,'[\"user-app\"]',0,'2023-09-22 20:23:46','2023-09-22 20:23:46','2024-09-21 15:23:46'),('6dd3df64adc0f255f7ec8f0cc4e92d3156d7c457ccb0eedbeb7b5df35e3bfda9c22a28155233d2e7',1464,1,NULL,'[\"user-app\"]',0,'2023-05-16 19:15:49','2023-05-16 19:15:49','2024-05-15 15:15:49'),('6dd65cca82a3820dc6339dbf88227f3a820ff2368d0b019e39611e4fceb671dd0dae04e549e9c52d',1539,1,NULL,'[\"user-app\"]',0,'2023-06-13 21:28:54','2023-06-13 21:28:54','2024-06-12 16:28:54'),('6dd773ccbad3866f8471ad5d7cf5fd2241879ecd9f07e7b22dc68ce5b6f674b96fad1a29c6c2d7fc',1081,1,NULL,'[\"user-app\"]',0,'2023-03-09 20:02:39','2023-03-09 20:02:39','2024-03-08 17:02:39'),('6dd9b47636c82d8fc1ef8612833e3b6f59a2f8cb44cba45b5af44f3d4c00b1d334ae7abecca65675',367,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:17:49','2023-01-25 17:17:49','2024-01-25 14:17:49'),('6de1661762d43d8e474b4cec9e858a0c0db8ea507557f8ba8881931f9826c21dcd4dbab7a777ad0d',796,1,NULL,'[\"user-app\"]',0,'2023-01-29 16:15:32','2023-01-29 16:15:32','2024-01-29 13:15:32'),('6df78a43317b9604297c690383466b13f7cc26d8c1e4b3dce8e6560efdffe21b4fe224e0003f3743',54,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:43:44','2023-01-25 16:43:44','2024-01-25 13:43:44'),('6e1508dc8feeab8a40c43e58ffd4575473d6f92e5c58385847eb415f0768a3f904bee0ea7448f981',1138,1,NULL,'[\"user-app\"]',0,'2023-03-12 18:01:56','2023-03-12 18:01:56','2024-03-11 15:01:56'),('6e2437f3bb8b4a77e539432c838ed9064176fe0fd33c994a8743610f78865fe9d117db1864e96519',1165,1,NULL,'[\"user-app\"]',0,'2023-08-29 21:58:52','2023-08-29 21:58:52','2024-08-28 16:58:52'),('6e312f064eb192ca3eaa3d305218032eb81ad834e408b70d33ab8eda660b677fc2a3cf31f4efc9d7',2,1,NULL,'[\"user-app\"]',0,'2023-02-23 23:47:30','2023-02-23 23:47:30','2024-02-23 20:47:30'),('6e348461888516d96ec577e3b43761059196b40721ab7d9747b203871c5e8d0198ff6d1527d0d7ba',599,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:31:16','2023-01-25 16:31:16','2024-01-25 13:31:16'),('6e3c66bde78320c63076f8807ec09572233c4b615e6f21ad3e2d2083d4c210ad9ed37975dbe340a2',956,1,NULL,'[\"user-app\"]',0,'2023-02-20 13:40:01','2023-02-20 13:40:01','2024-02-20 10:40:01'),('6e4549eac1861f134b7cae1f6d192f4f6e7a56e90a1c9807a275a321241d3342ae2e5b018f58bdf0',1411,1,NULL,'[\"user-app\"]',0,'2023-07-05 22:15:22','2023-07-05 22:15:22','2024-07-04 17:15:22'),('6e5c09ced1f67c15d149d7e541d18b39e284a02f9eb7bcf81d922aa6831907063076475aa6afc90c',363,1,NULL,'[\"user-app\"]',0,'2023-07-02 15:32:19','2023-07-02 15:32:19','2024-07-01 10:32:19'),('6e5c7777ab3e0046843132191cd9fad39c8a2c5c92e1141695c3bb92dbc112c6417d198b35cc9760',2108,1,NULL,'[\"user-app\"]',0,'2023-10-07 02:15:15','2023-10-07 02:15:15','2024-10-05 21:15:15'),('6e779d720844e61698bc12f7360361d4933c6c768cd3d9dd9af840e5d8d2535215be192e1e8b35bf',1422,1,NULL,'[\"user-app\"]',0,'2023-05-23 10:34:06','2023-05-23 10:34:06','2024-05-22 05:34:06'),('6e8925f6f15c8eb2d81b0e1d1b374933a163020f620e04b39bfe3519207f333c5b5d5dccf1e52302',889,1,NULL,'[\"user-app\"]',0,'2023-02-09 00:02:43','2023-02-09 00:02:43','2024-02-08 21:02:43'),('6e9fb08c131d00a03317438d362e51fb1a2fc8fdc972f72eb8b56e1fdfed6167cf031325bafc6926',368,1,NULL,'[\"user-app\"]',0,'2023-03-24 21:10:59','2023-03-24 21:10:59','2024-03-23 18:10:59'),('6eab92c4eb1276e4ecb088b27d6a30ddb0fca4d6434d547c62ccf64c3b02d0c95fa562940f433524',1672,1,NULL,'[\"user-app\"]',0,'2023-06-30 17:34:24','2023-06-30 17:34:24','2024-06-29 12:34:24'),('6eaea93c79bb298ef848defe9125e62cc033ebf86346a652ceb17fefc2fe3469f24548f68e86c78f',1726,1,NULL,'[\"user-app\"]',0,'2023-07-08 19:35:33','2023-07-08 19:35:33','2024-07-07 14:35:33'),('6ec9ed527342285d07bc586275e22f66140412e8961ace832c775f0f34e42479a10617cb43b9dce2',1403,1,NULL,'[\"user-app\"]',0,'2023-09-06 16:30:49','2023-09-06 16:30:49','2024-09-05 11:30:49'),('6ecc7c87706cd9d7af94b7409351290a65ebb4ace2b090e81b976b7630634f8229f7c45501c3292e',1627,1,NULL,'[\"user-app\"]',0,'2023-06-23 15:56:50','2023-06-23 15:56:50','2024-06-22 10:56:50'),('6edd26c31a3933a635b757f987e1fbcde6c600cd8b31a4e090036dc67492c6919b6104c4bc4cd718',1302,1,NULL,'[\"user-app\"]',0,'2023-04-22 20:27:59','2023-04-22 20:27:59','2024-04-21 16:27:59'),('6ee2aab026e3557b6d780e234ccda6faf929ec893c990817932d4f260e68f907ee6a590a5c56ff86',1000,1,NULL,'[\"user-app\"]',0,'2023-08-11 21:39:03','2023-08-11 21:39:03','2024-08-10 16:39:03'),('6eed41312f4158e1c4c7503a411327175c9b0af3ac3ae9067d7cd2d67b40cd465c1f4548d94eccec',2,1,NULL,'[\"user-app\"]',0,'2023-07-01 17:25:22','2023-07-01 17:25:22','2024-06-30 12:25:22'),('6eff198c976762f63e9241a6122f332d3aeff573446a8dc1d170fcb47680f74987a9c196294deee4',1226,1,NULL,'[\"user-app\"]',0,'2023-04-01 15:34:12','2023-04-01 15:34:12','2024-03-31 12:34:12'),('6f0927e14c4a835296f1edab4091cf8ffd769a2fcc35e2207a33e84b8e6f2040dd792bd36f8c7c6b',2,1,NULL,'[\"user-app\"]',0,'2023-07-18 04:09:21','2023-07-18 04:09:21','2024-07-16 23:09:21'),('6f12e382e6a3e9051b640686b27ff154806a0271feaebec0cf0e54c10d9b0508110c83ec89b01eda',814,1,NULL,'[\"user-app\"]',0,'2023-02-27 19:09:30','2023-02-27 19:09:30','2024-02-27 16:09:30'),('6f15901c835785b7e1baf1be646907d4b9e881991636dc8b309714471ac24ff3eedadce0b8d34487',1576,1,NULL,'[\"user-app\"]',0,'2023-06-17 03:08:55','2023-06-17 03:08:55','2024-06-15 22:08:55'),('6f199ac18862ae108871797024b1662030a7d24646307d9c6461f08475057cebf8e051146a160f76',2,1,NULL,'[\"user-app\"]',0,'2023-08-24 14:22:53','2023-08-24 14:22:53','2024-08-23 09:22:53'),('6f3201a3844c4b7b8a890d32ee10bb196ed63e128f8127169b89170f68f4e71fd339e277690556ea',1272,1,NULL,'[\"user-app\"]',0,'2023-04-18 18:32:32','2023-04-18 18:32:32','2024-04-17 14:32:32'),('6f4414b96144961877450634b52281b3afb777cf61064892d7ba5ad91982179349d6666e3bf54152',2,1,NULL,'[\"user-app\"]',0,'2023-09-12 02:07:17','2023-09-12 02:07:17','2024-09-10 21:07:17'),('6f46757781126d87387e8fd1bb31052626491945342c7d5d8717b203a9903e6a3fe3694ab3d59be6',250,1,NULL,'[\"user-app\"]',0,'2023-02-06 10:23:21','2023-02-06 10:23:21','2024-02-06 07:23:21'),('6f649635fe446697d0f1168157cc364e6ecf0c0e24eb01c8d4e44ec0c3a63a1398abab67b5a9f102',1379,1,NULL,'[\"user-app\"]',0,'2023-09-10 10:05:55','2023-09-10 10:05:55','2024-09-09 05:05:55'),('6f6920f1b0edc45be03d5dc4357b5683b438702b88b01f25a4433b304adbdb721fc69db290bba362',1691,1,NULL,'[\"user-app\"]',0,'2023-07-03 20:01:08','2023-07-03 20:01:08','2024-07-02 15:01:08'),('6f8f6eda4ea049e88652154a016d1a2307b404e1c0926fd789c767267b56111cf62c21e441ac4d2d',131,1,NULL,'[\"user-app\"]',0,'2023-02-11 16:10:11','2023-02-11 16:10:11','2024-02-11 13:10:11'),('6f91566bcc130c5c693a9663b69b4c65228dde438345290f40f8f6e17f8fe40b3ccfbd9c0cd1fe56',1712,1,NULL,'[\"user-app\"]',0,'2023-07-07 19:02:47','2023-07-07 19:02:47','2024-07-06 14:02:47'),('6f9dc6ad65b2b1fa5d797d7fd39789225ddac8fdd1e544de077eb05806204bc9200174a7e8f6c347',2,1,NULL,'[\"user-app\"]',0,'2023-08-02 19:05:38','2023-08-02 19:05:38','2024-08-01 14:05:38'),('6f9e2825df810009e945c61679747c22672b302a7dfd7e42274e745d77d8b885c577172d5c1c34e0',1654,1,NULL,'[\"user-app\"]',0,'2023-06-29 20:13:17','2023-06-29 20:13:17','2024-06-28 15:13:17'),('6fb6686087ec38332a6a4e02c2f6c13c334a3035d7c1c126ebc2d45cc7395869e8f78389a980de36',1049,1,NULL,'[\"user-app\"]',0,'2023-10-08 18:23:09','2023-10-08 18:23:09','2024-10-07 13:23:09'),('6fbf2bf20d0ca9fe5d248c6fa7f0a469495ae57dc1af4ea137c86fe5ac0472f5d3e544ea5ae92d39',2,1,NULL,'[\"user-app\"]',0,'2023-06-23 15:53:58','2023-06-23 15:53:58','2024-06-22 10:53:58'),('6fc92ba64b84e5fbafee42bbca1a3b1a52470434cec030d900569cb10e5a04052b1470efedfb5c4b',691,1,NULL,'[\"user-app\"]',0,'2023-01-28 01:20:02','2023-01-28 01:20:02','2024-01-27 22:20:02'),('6fcda6d033d6d09a6dd42b0067cd3c9c05a21da44941da0eaed1c6abff0a11e2fdb21ffc656ec28c',1128,1,NULL,'[\"user-app\"]',0,'2023-03-09 19:15:57','2023-03-09 19:15:57','2024-03-08 16:15:57'),('6fce02b7a9477546ec779357afed3a5ec1e4a1f8b398a963c6cf8435c9ab4b4f6f4bdcad77e6a1c9',2056,1,NULL,'[\"user-app\"]',0,'2023-09-26 17:01:46','2023-09-26 17:01:46','2024-09-25 12:01:46'),('6fce057ba445582c91e3a5d6ebd3f82cc646e91793af0af9caea26096a2b949869bd91b5ac6160c5',465,1,NULL,'[\"user-app\"]',0,'2023-01-26 17:52:16','2023-01-26 17:52:16','2024-01-26 14:52:15'),('6fd884338775b775ec80053e8f98e41a6e9cfde8a30c15780186754080e3328b4871fd06248d770e',1566,1,NULL,'[\"user-app\"]',0,'2023-10-04 23:22:30','2023-10-04 23:22:30','2024-10-03 18:22:30'),('6fdcfb76e39c09884f85ac3ba35ca627072c49137f2a17e037b820ec5bb2a88f3cc271af08ed468b',1384,1,NULL,'[\"user-app\"]',0,'2023-05-08 23:18:45','2023-05-08 23:18:45','2024-05-07 19:18:45'),('6ff8c371a7d520b035d155e255505979d5ce457d87e77b92db4f91ac41ce399a60475ae59674d3bf',1041,1,NULL,'[\"user-app\"]',0,'2023-02-24 18:04:11','2023-02-24 18:04:11','2024-02-24 15:04:11'),('6ffe05d44ba5c4c91ccb90d0b019e0f674f66625e79c58d24fe042ee3c74688899680366a8588aa1',2,1,NULL,'[\"user-app\"]',0,'2023-07-29 19:37:15','2023-07-29 19:37:15','2024-07-28 14:37:15'),('700257e3cd0b83ab31cee05e863c85ae2fff1390a77ff2d03f134845aba3f01b9d78851d4163e1af',2,1,NULL,'[\"user-app\"]',0,'2023-10-02 12:33:40','2023-10-02 12:33:40','2024-10-01 07:33:40'),('70028be9ddba30356b065dffc1630eb2a28fd8a2276dd3b42e86a430140490b241112fcef6003f23',1704,1,NULL,'[\"user-app\"]',0,'2023-07-06 01:21:30','2023-07-06 01:21:30','2024-07-04 20:21:30'),('701c7cc12c0bddd7e28a1ca94acf562770ec686bfe51f98e1a0402fe9f1464d00d981be6d54fbeb3',412,1,NULL,'[\"user-app\"]',0,'2023-01-29 22:44:25','2023-01-29 22:44:25','2024-01-29 19:44:25'),('702ac494bbe1157fdcfd444de7af463e37ef37a2c30fa6e6829915873643766499ca1c20058d00dd',2,1,NULL,'[\"user-app\"]',0,'2023-05-24 01:00:49','2023-05-24 01:00:49','2024-05-22 20:00:49'),('7032b4495301c5f67cf7dd663e3167419c13a495cf6132d687eb6f9bd3aef17ff3b5cda204a32cb0',1294,1,NULL,'[\"user-app\"]',0,'2023-04-21 16:35:57','2023-04-21 16:35:57','2024-04-20 12:35:57'),('70390a8ce43dbc42e9c200985fe4d363ae0673e4e7948a62f291744b31ff53f31c09e1f222741202',397,1,NULL,'[\"user-app\"]',0,'2023-02-23 19:45:23','2023-02-23 19:45:23','2024-02-23 16:45:23'),('70577a4fcdea0d55b040c422ac8d30b7fcd8c55213b9841d9fc6569ff94860a7bc6406f1fb17a055',1910,1,NULL,'[\"user-app\"]',0,'2023-08-25 15:42:25','2023-08-25 15:42:25','2024-08-24 10:42:25'),('706455f07d65df7406fd52e12935ac8a6e61bb052e59260d96d71b0644915b189d77120178e1c943',1340,1,NULL,'[\"user-app\"]',0,'2023-04-28 22:14:09','2023-04-28 22:14:09','2024-04-27 18:14:09'),('70757ada1ad861856e2da1160984b76788cad09e5465292e9126b091eafbc8be7ddfeda84b3805dd',812,1,NULL,'[\"user-app\"]',0,'2023-01-31 11:09:32','2023-01-31 11:09:32','2024-01-31 08:09:32'),('707af4492674f010d68187c2fd7767291f0fc346f5438a35fe31659735ef05c645c51fa20a483898',2090,1,NULL,'[\"user-app\"]',0,'2023-10-04 00:19:54','2023-10-04 00:19:54','2024-10-02 19:19:54'),('70800f4a1853d3b7f9458a604445ce54f78403c8e0c6239aa0afd6a5558dddb553a9707c8fb43f3c',683,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:49:09','2023-01-25 16:49:09','2024-01-25 13:49:09'),('7098a8ab6504009b684aabc3e1c042a5c25a5c6f0ae616bb5465b09aaa5fe4bd6e5f39d632376783',1684,1,NULL,'[\"user-app\"]',0,'2023-07-03 01:30:03','2023-07-03 01:30:03','2024-07-01 20:30:03'),('709c796c20fac0ef4f65f5409a864e1abc2ccfc611aea8f3155b55275bce6b71a1cd03260fa38030',2099,1,NULL,'[\"user-app\"]',0,'2023-10-05 17:57:31','2023-10-05 17:57:31','2024-10-04 12:57:31'),('70a604a69b9e6adc57d797c9b7fbf872b7dd076b800c199573cf03219a3af689a385512ac8c02142',1547,1,NULL,'[\"user-app\"]',0,'2023-06-09 19:58:37','2023-06-09 19:58:37','2024-06-08 14:58:37'),('70ae62e87a063d277035619315c3bb87a45ac904deb6e1da9a6f5b57fb2e6ab01b37f18bbee9197b',1369,1,NULL,'[\"user-app\"]',0,'2023-09-12 14:44:48','2023-09-12 14:44:48','2024-09-11 09:44:48'),('70c6966eb49af86affd892d55d1416541603bf1597d2e4b031fe654689d01325d9d788bd7498122e',2,1,NULL,'[\"user-app\"]',0,'2023-01-27 13:05:44','2023-01-27 13:05:44','2024-01-27 10:05:44'),('70e141caba4a51541e5af03c4eeff07353de0926f745073acfb2c04d731f95ed942ba09c55b3ba95',2,1,NULL,'[\"user-app\"]',0,'2023-09-06 10:41:28','2023-09-06 10:41:28','2024-09-05 05:41:28'),('70e4caa07a2d4c54f8458c11d14fae88acbad1d3014b4f8f8af0e034383c3ac3e006b02dd7cb66b5',1508,1,NULL,'[\"user-app\"]',0,'2023-05-28 13:56:45','2023-05-28 13:56:45','2024-05-27 08:56:45'),('70e647454e47d513d6d38dc5768a4bd934b18a8e65e1913c9e2653895693c183287aa92571d2c147',1940,1,NULL,'[\"user-app\"]',0,'2023-09-07 02:06:56','2023-09-07 02:06:56','2024-09-05 21:06:56'),('70f109be92a6309e4a729798d563cac7af7e8dfabf22e4e7e0002137e73e49272ae63ae1c4a92149',905,1,NULL,'[\"user-app\"]',0,'2023-02-11 11:43:52','2023-02-11 11:43:52','2024-02-11 08:43:52'),('70fd835cf3721386b9ebc4967553fed8433d900ee66b9edc1d21556abd1b3a181bd24345a76a2192',1077,1,NULL,'[\"user-app\"]',0,'2023-06-19 16:39:25','2023-06-19 16:39:25','2024-06-18 11:39:25'),('70fe53c29b41c3931c951f917c81eda22d4edfdd7b52c67c2b07ee585ffebea1ff9070db251b1d14',822,1,NULL,'[\"user-app\"]',0,'2023-02-02 13:42:13','2023-02-02 13:42:13','2024-02-02 10:42:13'),('710efd1655bb1dd66cb68da94f478029d417c690d7f43c9e0c229f59ff5440155658616cba001611',2,1,NULL,'[\"user-app\"]',0,'2023-09-30 19:01:53','2023-09-30 19:01:53','2024-09-29 14:01:53'),('711119a4d72bf700e7c830545d88f2b4f4a197a116e3de73b9aa00b38c61fe6bbbe43777fd1c8da3',2,1,NULL,'[\"user-app\"]',0,'2023-08-09 18:27:47','2023-08-09 18:27:47','2024-08-08 13:27:47'),('71242bc7f5ee400ed69ed8bdadab45acae486f21fa2169df6efddd57b57098644ac74a82f01a4fdd',2029,1,NULL,'[\"user-app\"]',0,'2023-09-22 15:13:49','2023-09-22 15:13:49','2024-09-21 10:13:49'),('714a70c72c3ca3e38e64d7653654ad17b3637b78d73bc851d56cdeaf1817d8cb634a70cd629a3e50',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:17:07','2023-01-25 16:17:07','2024-01-25 13:17:07'),('714f836316c543a69a880b0c1c9b98ffa9da1993d6acbbd21216861113e68b867b22675b52ef34b1',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 03:25:56','2023-09-04 03:25:56','2024-09-02 22:25:56'),('71631e654a758a3f390522f332d9b9e35a6841afddbb4570f95165240cf8da8bba2ddbecc670889e',173,1,NULL,'[\"user-app\"]',0,'2023-01-28 18:10:28','2023-01-28 18:10:28','2024-01-28 15:10:28'),('71743ecbbaf90f30dfaa539fb15201e37c8a8af8aa62246295dc24ad0daae24851f44c3303b5d365',1220,1,NULL,'[\"user-app\"]',0,'2023-03-31 02:49:41','2023-03-31 02:49:41','2024-03-29 23:49:41'),('7174631139a98f83ea237272bfb101860dbefa3799392a1ddb458e7d92d44eb2c2dac3f7eee6457a',1148,1,NULL,'[\"user-app\"]',0,'2023-09-23 01:37:21','2023-09-23 01:37:21','2024-09-21 20:37:21'),('71819b550f19a9149fefc5d1e519f45181568bfeb2e8fa1d0afa97b34c61b94c2497d1e33fa418aa',2,1,NULL,'[\"user-app\"]',0,'2023-03-06 14:01:30','2023-03-06 14:01:30','2024-03-05 11:01:30'),('71950b72950c792a3446f7a8ab49a3e6580465c82b20464a3acc42cb00ea21915e2365758632b0ce',8,1,NULL,'[\"user-app\"]',0,'2023-09-05 22:47:49','2023-09-05 22:47:49','2024-09-04 17:47:49'),('719b3c8ebe6c68be34b212a1ec235f1856e4bd40737049ead43bc65715af5da17e2777d0c5725274',399,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:29:56','2023-01-25 19:29:56','2024-01-25 16:29:56'),('719d364020ed9dfc22afffa1eafad762a4d942d905f515f26548640626f16f397f8e9f830ef36603',2,1,NULL,'[\"user-app\"]',0,'2023-06-26 13:02:56','2023-06-26 13:02:56','2024-06-25 08:02:56'),('71a6f3c8b0c4142a92e4cf40a83483ce9a2a69b4768ef0b2bb74c54cc6d2f8aebac1816a17f0e788',409,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:27:32','2023-01-25 15:27:32','2024-01-25 12:27:32'),('71aca21ec359fb8467b928de8b8d97c18bb882fc120e01166c0dd1f51111fb4adf3f3fb50d56f6bb',2095,1,NULL,'[\"user-app\"]',0,'2023-10-04 18:14:27','2023-10-04 18:14:27','2024-10-03 13:14:27'),('71ced92d36116f0e98439a49be8c0da5b32b935fd0d498e7589574e2429d610863e30a485f04fc89',238,1,NULL,'[\"user-app\"]',0,'2023-03-03 23:08:40','2023-03-03 23:08:40','2024-03-02 20:08:40'),('71e1114bb1aaec0d7a6ccff10ea1a79dad331ab34621b8c9310531457a22e0909ab04ad5629fdc90',2,1,NULL,'[\"user-app\"]',0,'2023-09-03 04:08:38','2023-09-03 04:08:38','2024-09-01 23:08:38'),('71e965c391244aa3cc6cc88b48b28a7b07cddee392771f6c10aed2b6e7289ae9ae7766b0be640c54',72,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:56:57','2023-01-25 11:56:57','2024-01-25 08:56:57'),('71ea1a61ce0fba267d0f7e1979771c27aca6f216a34d93257320edd70e2c4f27012c959b106e1d2c',929,1,NULL,'[\"user-app\"]',0,'2023-02-15 13:45:34','2023-02-15 13:45:34','2024-02-15 10:45:34'),('71ea820c4550f3f5a4d2d5802966489f6cac9a2d6ef67a0b48a282c26ebe578b598a5488279b25c9',1096,1,NULL,'[\"user-app\"]',0,'2023-02-28 22:35:35','2023-02-28 22:35:35','2024-02-25 19:35:35'),('71f8fa121bce17e77d653be703f3f94f102ab29defda68904691d0ab44ffdd654d57aee3130856bd',1166,1,NULL,'[\"user-app\"]',0,'2023-03-17 16:43:12','2023-03-17 16:43:12','2024-03-16 13:43:12'),('7201441b4eeeca4ae7023d9d9df27e61fc479ad17644825bf8ca2566ac9842b9c0548bec779960e7',867,1,NULL,'[\"user-app\"]',0,'2023-02-06 13:36:36','2023-02-06 13:36:36','2024-02-06 10:36:36'),('720480cb911d3e87ba6099f20327b1d23cc9f0af4468e301d005953ef78fe22e7bfc11ca51c1c027',909,1,NULL,'[\"user-app\"]',0,'2023-02-11 17:15:16','2023-02-11 17:15:16','2024-02-11 14:15:16'),('7215e9bd3fce38b0b05c3795f4b0b5cff2c260316ec6871299e089c635465b7f024c7f9c694fa65b',134,1,NULL,'[\"user-app\"]',0,'2023-03-10 23:01:53','2023-03-10 23:01:53','2024-03-09 20:01:53'),('7217f2299390ad4660b70a434b7dcb38854d1bcc8cb6b806a70e67b1d188cbefa902bfe5e5f2118e',31,1,NULL,'[\"user-app\"]',0,'2023-10-01 23:54:56','2023-10-01 23:54:56','2024-09-30 18:54:56'),('7219ce4a823e37ed9766213a29bb0130bc920799a47608a39fde9f48b5e1a2c94f9669ea9e21048a',948,1,NULL,'[\"user-app\"]',0,'2023-03-27 14:34:24','2023-03-27 14:34:24','2024-03-26 11:34:24'),('721a75e65cfa91e661bb042cfdbb564e3af949fa1693e73e164dcbd42126f36da53fa7743f7e97cf',1626,1,NULL,'[\"user-app\"]',0,'2023-09-05 01:08:01','2023-09-05 01:08:01','2024-09-03 20:08:01'),('722e2ec8d9d2cc3d78e61e21f9ed1942145fa2c06655f8c6b6da6a6040dffe1f52163888561c40be',1766,1,NULL,'[\"user-app\"]',0,'2023-07-14 23:19:09','2023-07-14 23:19:09','2024-07-13 18:19:08'),('72340cda9634d86bb11305cff528fe6a56933ca9d6d7b92a492f820e5d7d036affbeadf22a8504da',1202,1,NULL,'[\"user-app\"]',0,'2023-03-27 15:15:17','2023-03-27 15:15:17','2024-03-26 12:15:17'),('726f3956882229f92a4bbea04a10dbbf607c40de3d1f6dab160c79b1699b63faf31f0a56389f9487',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 22:04:25','2023-03-29 22:04:25','2024-03-28 19:04:25'),('727f826ef1e7e41e99d9294daeab11255917e21b131ea3048db24d33e6503c463d69abc4c3e8f5d6',1109,1,NULL,'[\"user-app\"]',0,'2023-03-06 14:02:31','2023-03-06 14:02:31','2024-03-05 11:02:31'),('72aaa003ae8938475001ffe9f7333fbc6b147844228a204e0380bd49e8a709afa9e5a059dd66b872',348,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:54:38','2023-01-25 14:54:38','2024-01-25 11:54:38'),('72c16dced352f0dddadd97ba77d507394cc4e3921711bee07b8f1abddca7dc0150cf8a882122545b',1586,1,NULL,'[\"user-app\"]',0,'2023-06-19 02:31:33','2023-06-19 02:31:33','2024-06-17 21:31:33'),('72d24d261f06dd2657ce4b8fed70cb770f75aa65c04b03c1de037c82009d0cb98a5af749dec1103d',737,1,NULL,'[\"user-app\"]',0,'2023-08-04 21:21:51','2023-08-04 21:21:51','2024-08-03 16:21:51'),('72d92a2cacca1268755acd96fa358de8e582c8a1c89183256eb89280bc2a7b435d7307c6dc53ef42',1877,1,NULL,'[\"user-app\"]',0,'2023-08-12 03:25:53','2023-08-12 03:25:53','2024-08-10 22:25:53'),('72e27eaabc39a9fb8945514b42711e04f4bd930b11cd00f21ec900204e0f8b79c534ef5adc5ab751',1604,1,NULL,'[\"user-app\"]',0,'2023-06-20 16:53:26','2023-06-20 16:53:26','2024-06-19 11:53:26'),('72ec5d1815dc628ba8988e5218b0dd355ac29108275cb17407ba1f4352f41d726052a4cffd9c56ff',942,1,NULL,'[\"user-app\"]',0,'2023-04-05 00:16:04','2023-04-05 00:16:04','2024-04-03 20:16:04'),('72f692134fe3833b165900f2f8306d8b0a042fe01731c15b8c7e56313e637f726b971256eb1e9cff',1791,1,NULL,'[\"user-app\"]',0,'2023-07-22 14:00:11','2023-07-22 14:00:11','2024-07-21 09:00:11'),('72fc3b022679db60b9cdedeeff655ceaac1bcc188b68eb226b4ab80eff53aac9d5a291138148e9b4',957,1,NULL,'[\"user-app\"]',0,'2023-04-11 19:52:19','2023-04-11 19:52:19','2024-04-10 15:52:19'),('7305bdb441a6882237feb19032b606386e1fc329f9498bebf087e29938691c6cbc654a3a14e0929d',1856,1,NULL,'[\"user-app\"]',0,'2023-08-04 03:30:20','2023-08-04 03:30:20','2024-08-02 22:30:20'),('731b3b84cd6c8b68a5dd98530b9ca4f9803d8d6c58dff5197e435ad395a2a9df2c2aae2ab5045ab8',190,1,NULL,'[\"user-app\"]',0,'2023-01-26 12:16:12','2023-01-26 12:16:12','2024-01-26 09:16:12'),('73241e4cee4b792b361abb5b3e1a3e08e6b2ed5ef542c48c87daa158f65c406a96b3c19dac203029',1348,1,NULL,'[\"user-app\"]',0,'2023-05-04 13:38:37','2023-05-04 13:38:37','2024-05-03 09:38:37'),('73257f0ed9d587a0b67679a9d654499435fd97383e710e3ca656d1d25fec1b8176c25beca1a15f1e',946,1,NULL,'[\"user-app\"]',0,'2023-04-11 18:24:51','2023-04-11 18:24:51','2024-04-10 14:24:51'),('73293be87dfd6b3d692ec66bd53ecaeb9f1c046508dcac4cb49b296c74ed2c3da5eb55656a7e4755',1416,1,NULL,'[\"user-app\"]',0,'2023-06-24 06:00:57','2023-06-24 06:00:57','2024-06-23 01:00:57'),('732b86904e8fd078afc38d35b6060505251ca5b6e7b1324efa2b2e0be423dd050e5b57564022b809',614,1,NULL,'[\"user-app\"]',0,'2023-02-03 01:57:12','2023-02-03 01:57:12','2024-02-02 22:57:12'),('732e0d1f6d92460e8f8a2bd654109d782e6f3662015c33be6dc4fcbd41ce4d8a635076612571d0aa',2,1,NULL,'[\"user-app\"]',0,'2023-09-09 03:36:42','2023-09-09 03:36:42','2024-09-07 22:36:42'),('732e66229b77daf85e22a1cf6c0ea2d0d37120aeb5687976b67885ba710cea75c5d9db352114d04a',1534,1,NULL,'[\"user-app\"]',0,'2023-07-14 00:46:42','2023-07-14 00:46:42','2024-07-12 19:46:42'),('73322ed00833c8fe3ad031aa410bd6afddcc3a43ddd33f3d249caae47fea70cd8294497afe1bf3df',134,1,NULL,'[\"user-app\"]',0,'2023-05-19 02:25:05','2023-05-19 02:25:05','2024-05-17 21:25:05'),('73337565dcb0c2ebf27384e585808c9c124890bd3ee485b8cbf5264108ce6fe07d26d014c79d96cc',2,1,NULL,'[\"user-app\"]',0,'2023-08-01 12:06:35','2023-08-01 12:06:35','2024-07-31 07:06:35'),('7346f282bd36e2e368ccff8a945a38e044f9d368c5db44981d8a276bb3bbb6e8fbfdf264a7fa3eb3',124,1,NULL,'[\"user-app\"]',0,'2023-04-10 21:27:54','2023-04-10 21:27:54','2024-04-09 17:27:54'),('73634b7d814501ced01f463bc9fafc724ed72bdfe9671a19aa84ac208ffae5ebd93d925cee00127e',1593,1,NULL,'[\"user-app\"]',0,'2023-08-26 17:31:03','2023-08-26 17:31:03','2024-08-25 12:31:03'),('7364e9bf8a2967027137d5fe6914b50f2de490da693157b62dbc4dfbb8eae8ab355f609a2dd105ef',1167,1,NULL,'[\"user-app\"]',0,'2023-03-17 17:16:40','2023-03-17 17:16:40','2024-03-16 14:16:40'),('736fede8ed0ce1b59c9874400d74860dbbaf9fd2a9ffeea1ed15f51cd5f9c1074946721e23cfe26b',387,1,NULL,'[\"user-app\"]',0,'2023-02-18 13:18:37','2023-02-18 13:18:37','2024-02-18 10:18:37'),('7372479e999b2880b8d3b28f81067ccc097cc24de700bdb6282ab641179a476e0e146a88f15ec14d',8,1,NULL,'[\"user-app\"]',0,'2023-02-13 18:32:47','2023-02-13 18:32:47','2024-02-13 15:32:47'),('737381c56f99602349d36e8a237a3a285106bb9e3f22e1df1e74f9d3662f08c934f769368e5f7878',2,1,NULL,'[\"user-app\"]',0,'2023-02-04 23:13:33','2023-02-04 23:13:33','2024-02-04 20:13:33'),('737a6896eae5321a3768ca826ef1a79510caeffcc262727e91aec3a6cfe4609b6ebfa19a53c64a37',2058,1,NULL,'[\"user-app\"]',0,'2023-09-26 23:46:14','2023-09-26 23:46:14','2024-09-25 18:46:14'),('7380ca1519c6b218b43a5826aa7318c3d80227520cd5bf32c7c68976ea27ce825364238e25ac957c',2,1,NULL,'[\"user-app\"]',0,'2023-07-23 06:46:54','2023-07-23 06:46:54','2024-07-22 01:46:54'),('73875428799c5d43d6fa3bdf373943a435951c24228d10af5c56710f7bddcc3408d24a119abdda7c',251,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:45:38','2023-01-25 18:45:38','2024-01-25 15:45:38'),('73953f01b1d9aa8a1a056f70daaab47535079622cb06e3d8d5a8322137e96391f1a86b2dbea75c9c',1476,1,NULL,'[\"user-app\"]',0,'2023-05-17 22:37:34','2023-05-17 22:37:34','2024-05-16 17:37:34'),('73a2da387faa926b033851c4f2fc290831623cc84a543f5423b8b3d1f3a023c995a2d08609ca733e',2,1,NULL,'[\"user-app\"]',0,'2023-06-19 22:59:20','2023-06-19 22:59:20','2024-06-18 17:59:20'),('73b00bef9414fe019ffb7912ddd2b5a8d03cb5542d419f642bb3452226ea8408372e36fe73ce7e90',179,1,NULL,'[\"user-app\"]',0,'2023-07-21 22:27:12','2023-07-21 22:27:12','2024-07-20 17:27:12'),('73b759694752802d089da95aee7a7b968c2acbf8229cb1da36df2af5df80d87f00031a0a83cfae18',1383,1,NULL,'[\"user-app\"]',0,'2023-05-08 23:10:18','2023-05-08 23:10:18','2024-05-07 19:10:18'),('73c5809e62b24d06bc141380fae2355f28241df6c0a16b90cc7b3d6b4ac5dbe9890b028402e389aa',2,1,NULL,'[\"user-app\"]',0,'2023-02-06 12:41:12','2023-02-06 12:41:12','2024-02-06 09:41:12'),('73d2b73ba1472d6186868d1f93c584c244e589483922817a629343d38fc6261bb46f660dddfcfb42',2,1,NULL,'[\"user-app\"]',0,'2023-07-11 20:09:41','2023-07-11 20:09:41','2024-07-10 15:09:41'),('73e83e3c8ad1beed387b6b5271ba72d332024dc31ecf80188656a74a6eadde4c02bb5437c1a60f09',366,1,NULL,'[\"user-app\"]',0,'2023-08-06 14:11:24','2023-08-06 14:11:24','2024-08-05 09:11:24'),('73eab44ecd7939069f9fd05480e1d424e71b36f65fb4a77b537d3b96ca184b38643454afed0f9c28',501,1,NULL,'[\"user-app\"]',0,'2023-01-28 12:37:10','2023-01-28 12:37:10','2024-01-28 09:37:10'),('7402887922c3774169b3767873bbc2ce73f2d0df105650a438fa94fc16ef95bc5c7b187ccb0740e1',2,1,NULL,'[\"user-app\"]',0,'2023-09-19 21:32:55','2023-09-19 21:32:55','2024-09-18 16:32:54'),('74079827d6b558bea231f4816c772008b2fbd2b3dd5a710dd2a73cac6d60d78233148a29095e9f15',415,1,NULL,'[\"user-app\"]',0,'2023-09-16 00:08:52','2023-09-16 00:08:52','2024-09-14 19:08:52'),('7421604e399d14102eb7677e801a05836c38a5acb8c90521339478223c202fea201cdf5eedc8ff80',693,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:47:11','2023-01-25 17:47:11','2024-01-25 14:47:11'),('7436dc1444d81339f1bd5d3f9bf52491e4b5822a5bf1307514b2de23e690d44a20ae2cdd74fcfb40',2,1,NULL,'[\"user-app\"]',0,'2023-07-16 22:53:34','2023-07-16 22:53:34','2024-07-15 17:53:34'),('743a888a388b194c3867d2d071150885cfcf4af2eceb8de2fa84bd38ce1a5b1c5d49e4fe6f427a72',1407,1,NULL,'[\"user-app\"]',0,'2023-05-17 22:14:33','2023-05-17 22:14:33','2024-05-16 17:14:33'),('7450b6325b4b0be9f07af684d6473135ddf2ba2d1d5eeec3cb411a64998b57cfbe43d4dd0edf5b39',1059,1,NULL,'[\"user-app\"]',0,'2023-03-30 17:30:16','2023-03-30 17:30:16','2024-03-29 14:30:16'),('74566b162b85026f11bacccb7f4899607e03658a16a5a4d991c98de2b319d0d854e62b11b60f2c5f',1206,1,NULL,'[\"user-app\"]',0,'2023-03-29 22:20:28','2023-03-29 22:20:28','2024-03-28 19:20:28'),('7456e7ed902a1c507d30d362f6806a25cc0b285a945246c3bd54ec59eba404413f608858e58ebaf8',1422,1,NULL,'[\"user-app\"]',0,'2023-07-04 16:02:26','2023-07-04 16:02:26','2024-07-03 11:02:26'),('745a7d5f83c57a27fc3c709b1620b2580e155405f49a87999409c95e8240c722308db6c234c363a8',327,1,NULL,'[\"user-app\"]',0,'2023-06-09 21:25:00','2023-06-09 21:25:00','2024-06-08 16:25:00'),('745cccd5a6e7985a973287d2be9d8f23a511c4b3ce70fe8557c28c0d0d10d3e3f7a75bcd53b2de63',888,1,NULL,'[\"user-app\"]',0,'2023-07-19 00:07:07','2023-07-19 00:07:07','2024-07-17 19:07:07'),('7478f5caae211ebfbd05d8a7aa72cbaf0d9977a850031c38a2594e201925b4b8a8ed046f26044b1c',956,1,NULL,'[\"user-app\"]',0,'2023-02-20 12:59:08','2023-02-20 12:59:08','2024-02-20 09:59:08'),('7481fedfacb0e2b951b51d05e9318ea2a7c888f6cf2fad075072c1b20d91209eb701f25002658611',2,1,NULL,'[\"user-app\"]',0,'2023-08-21 23:22:59','2023-08-21 23:22:59','2024-08-20 18:22:59'),('748a2f503340fcc7b62d42b8705e5bddc156a5ee5c01fe539cfa82858e2e113119766ab3bf462a6f',2,1,NULL,'[\"user-app\"]',0,'2023-05-09 23:15:17','2023-05-09 23:15:17','2024-05-08 19:15:17'),('749348e869e5669b02fbb26fa19a21d90d782a77cc551e6c5d18cbb8648c2be94a79ea32f46213fc',2,1,NULL,'[\"user-app\"]',0,'2023-08-04 14:21:20','2023-08-04 14:21:20','2024-08-03 09:21:20'),('74a3501c44e8cfb8b1f14a86a82d539897807c2e8cd54702cd79913a4c2e1613d85930ecea3bb2b6',1187,1,NULL,'[\"user-app\"]',0,'2023-04-29 00:39:45','2023-04-29 00:39:45','2024-04-27 20:39:45'),('74a72878c52237ac7d7585d2980a1d98fc1ccb49e5d6a92015640d61ca316ac0f0d0b12e4bcc0702',983,1,NULL,'[\"user-app\"]',0,'2023-02-18 20:42:17','2023-02-18 20:42:17','2024-02-18 17:42:16'),('74b4ab8b102b77ae8d8c89a110a2fc1a1faef4967dbbf5a19b50263a49be98076ee861e66b2e6efc',2010,1,NULL,'[\"user-app\"]',0,'2023-09-18 21:10:16','2023-09-18 21:10:16','2024-09-17 16:10:16'),('74cea86fd0d220cd6e9e8f83fcc1898435b240b6cd4dae0f925b8f5f33297532bd21b94ba0a37e9d',1889,1,NULL,'[\"user-app\"]',0,'2023-08-17 19:34:41','2023-08-17 19:34:41','2024-08-16 14:34:41'),('74d08e48828834e8ee4384aad3b77252f8f804a58648297e7ef7f0ef593119d235698798f7b1225e',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 21:04:24','2023-09-04 21:04:24','2024-09-03 16:04:24'),('74e0c4b47b8f7d76e982db3b5ae3b00fa435f4dd7df176dc3376f6c831c313b1c060838fac73bea3',1316,1,NULL,'[\"user-app\"]',0,'2023-04-23 19:55:06','2023-04-23 19:55:06','2024-04-22 15:55:06'),('7520ea07346564a9042efc832bf48c2b26cee6f5585f4f2931e447fc139e376330b7414862354177',1134,1,NULL,'[\"user-app\"]',0,'2023-03-11 22:27:51','2023-03-11 22:27:51','2024-03-10 19:27:51'),('7578bfbfe6154179adb8286612819f92455769ccac31dafad5ca748d164a106f57786983d45ecc62',2,1,NULL,'[\"user-app\"]',0,'2023-06-09 23:38:28','2023-06-09 23:38:28','2024-06-08 18:38:28'),('757d7e91901dc44aa7558478e4fa2409339506c41bc6342116a4926d5893480ee0aa7e7d98d27553',8,1,NULL,'[\"user-app\"]',0,'2023-09-28 13:12:45','2023-09-28 13:12:45','2024-09-27 08:12:45'),('758012b587554a20478e36edee76e0a42676b2ece2e91d39781401ed5c094eff662d609d1131b25b',210,1,NULL,'[\"user-app\"]',0,'2023-03-28 16:02:21','2023-03-28 16:02:21','2024-03-27 13:02:21'),('7593d22522c5bab2392a8c6d5744ef77dba2877766ceebfd4d10d57de1cb0159f896deae7e312e28',1402,1,NULL,'[\"user-app\"]',0,'2023-06-16 22:33:32','2023-06-16 22:33:32','2024-06-15 17:33:32'),('7597df91b07ae4479eb2cb7c7d28ef25a8305c46cf2bc713314eaec6a6496ad8063d6c70a4edf24c',2,1,NULL,'[\"user-app\"]',0,'2023-04-15 03:03:38','2023-04-15 03:03:38','2024-04-13 23:03:38'),('75a726da8f1bbbec2a16df7582b22cc2424a0a7ee38d6c22accf46873e0cb01cab009be0a87fd09d',2,1,NULL,'[\"user-app\"]',0,'2023-06-21 15:50:51','2023-06-21 15:50:51','2024-06-20 10:50:51'),('75b6e03151ef1562d87ffd323e08b87f7cf2ab7ce9f64e36ef49e3494781f6bb7ec6bd384c5ad86e',2,1,NULL,'[\"user-app\"]',0,'2023-07-18 19:30:18','2023-07-18 19:30:18','2024-07-17 14:30:18'),('75c735814189b8c780a117b93b8f3427a410da408c0fc9ca0cbe9181b9e3ec667eb6bb16d1dfc472',83,1,NULL,'[\"user-app\"]',0,'2023-10-06 04:26:42','2023-10-06 04:26:42','2024-10-04 23:26:42'),('75cba6573dbaeaac1c0ca066fae7cba1347a64291a1ce3a41504d646f4582fff0422dd080e1de2a2',1471,1,NULL,'[\"user-app\"]',0,'2023-05-17 20:46:10','2023-05-17 20:46:10','2024-05-16 15:46:10'),('75eb03a7004c89b410eb28941e6433cacd8e16c3f7ce298cf48ffbec052fb58d7d2a62b39c71e0f8',2,1,NULL,'[\"user-app\"]',0,'2023-02-02 19:28:23','2023-02-02 19:28:23','2024-02-02 16:28:23'),('75ec5169706b8281c20d398c683ae109d2b94670ad460d56971c639e8c6a8b31cfad6c0f4a40f713',942,1,NULL,'[\"user-app\"]',0,'2023-02-16 15:00:45','2023-02-16 15:00:45','2024-02-16 12:00:45'),('75f02e8fa821a8f3022b74ebaec50369a808b6617a7ce22107d82340aa1da8031da9d9384830fbf5',450,1,NULL,'[\"user-app\"]',0,'2023-01-27 23:46:46','2023-01-27 23:46:46','2024-01-27 20:46:46'),('75f07cb7fee6fd70644cd5d7be224e4ed68166bd33f780fb6c036f2a5b8c49c0893b2813c1365c8c',1641,1,NULL,'[\"user-app\"]',0,'2023-06-25 13:23:19','2023-06-25 13:23:19','2024-06-24 08:23:19'),('75f303b489f9382cf6de03e19debc9c6093e203dda09262c891036b3ba912f1ca3ada8b028337d7d',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 23:27:55','2023-09-21 23:27:55','2024-09-20 18:27:55'),('76160a7f61ec2f13d08c7cd87d56b43049e5f40dd10578db583169df954c35dd46ad02223fad7197',1692,1,NULL,'[\"user-app\"]',0,'2023-07-03 20:19:50','2023-07-03 20:19:50','2024-07-02 15:19:50'),('761d94752c151fab7b26bef97a28b80b7ee1576a74078c1a7ab95d2ac43b75fa1b4388993d5a7333',474,1,NULL,'[\"user-app\"]',0,'2023-02-07 01:26:01','2023-02-07 01:26:01','2024-02-06 22:26:01'),('7628577c9f41ed0fcc565593575b08ed654c3ce8367de9974181a1f0d7d4c72a2027f2009399872f',1514,1,NULL,'[\"user-app\"]',0,'2023-05-29 20:45:51','2023-05-29 20:45:51','2024-05-28 15:45:51'),('76396d51b95040de150331316d12e69179f0cdc7ca78e9b611dcc0f064c934ee1bc179459d43db5c',2,1,NULL,'[\"user-app\"]',0,'2023-09-27 09:51:56','2023-09-27 09:51:56','2024-09-26 04:51:56'),('764e6d2df8fe3832d7d114556773be7e37c77d0a4c1eef03ffe1a5b13d603d1de6cd4d16b43adb82',2,1,NULL,'[\"user-app\"]',0,'2023-05-03 02:58:42','2023-05-03 02:58:42','2024-05-01 22:58:42'),('76533f2c898ed646920652995190d3fceea649b1b6d0893d0375ac990c7257eb14c94ed6ecd5b0b1',1410,1,NULL,'[\"user-app\"]',0,'2023-05-17 18:24:54','2023-05-17 18:24:54','2024-05-16 14:24:54'),('76641c83a9c19a760552ece5a524f1f622cc3ec033a10c578a3834fcb0c1de78736b222bc670e5e7',1099,1,NULL,'[\"user-app\"]',0,'2023-03-01 08:52:11','2023-03-01 08:52:11','2024-02-29 05:52:11'),('769eecfd20165a901e2393ef34aa82ada0aa48d408f51eed26248fbe568134531755ce5681337fd5',957,1,NULL,'[\"user-app\"]',0,'2023-06-03 17:29:40','2023-06-03 17:29:40','2024-06-02 12:29:40'),('76aacea4bd55f4ed4d966411ffb355368b1f25f06ea2706980251771f784ae89d6599b9f7cf99f2a',1105,1,NULL,'[\"user-app\"]',0,'2023-03-02 12:00:58','2023-03-02 12:00:58','2024-03-01 09:00:58'),('76b415a1284008c552d66722c91bace6338b74c6cb000ab82343f75fbb06fb842b6286ee9abb7b65',979,1,NULL,'[\"user-app\"]',0,'2023-02-18 18:56:03','2023-02-18 18:56:03','2024-02-18 15:56:03'),('76c4d97634ce4abea8da6c0868afc336a6d190e442c72499260673293e6740175e1d1ed8b678d6dc',1041,1,NULL,'[\"user-app\"]',0,'2023-02-24 21:24:35','2023-02-24 21:24:35','2024-02-24 18:24:35'),('76cda373011996e8b6ceb932f97fb972946b4d491dabf6045c3733d4306f81bd99732d0b92a4bbb6',1417,1,NULL,'[\"user-app\"]',0,'2023-05-10 19:44:27','2023-05-10 19:44:27','2024-05-09 15:44:27'),('76d0052c11b98e5ad74831aa7cffa6c6c2edc5ffa031c02a6b4d0b08f284839a57ddb07ff00adc02',2,1,NULL,'[\"user-app\"]',0,'2023-01-30 14:54:57','2023-01-30 14:54:57','2024-01-30 11:54:57'),('76da622ea4f2efc9ffea8a13e5681f5eff5b4c026fd8d886e2399c6a877345c09d877d974dcff734',65,1,NULL,'[\"user-app\"]',0,'2023-07-30 21:18:39','2023-07-30 21:18:39','2024-07-29 16:18:39'),('7741021628551ce3a71e2af9aa4f557e3ab6f1ff464e0c944c3eeeaf4d8d1fb0e7e43edc569cec53',1141,1,NULL,'[\"user-app\"]',0,'2023-03-12 22:30:14','2023-03-12 22:30:14','2024-03-11 19:30:14'),('774595367307031d89e7eb98221ab842a0d433b51124908183a7f2fbc0cab3fc988a9b6babcbfa8d',1017,1,NULL,'[\"user-app\"]',0,'2023-02-21 18:42:31','2023-02-21 18:42:31','2024-02-21 15:42:31'),('774901493ceb0371296065287b49434d5b564f7c6cfb009964cdeca0fea30c0d208f0e288775eade',923,1,NULL,'[\"user-app\"]',0,'2023-02-14 19:51:52','2023-02-14 19:51:52','2024-02-14 16:51:52'),('775e728e055240726d4bafba0b7c0a029a6de255f7bbec5964883a067a7b57190cd6640f93886d35',1685,1,NULL,'[\"user-app\"]',0,'2023-07-04 17:40:25','2023-07-04 17:40:25','2024-07-03 12:40:25'),('775fd52c005a440ebcd30c8875663f444a35468724e009d46915e0469fd14f4ea0b5d2e62a46cb3b',2034,1,NULL,'[\"user-app\"]',0,'2023-09-23 16:21:38','2023-09-23 16:21:38','2024-09-22 11:21:38'),('77706328477e24594c0c4ede561871bfa99e98bb6e8f557b98f1a4686a4d2cc4dec36f5786818c3e',1946,1,NULL,'[\"user-app\"]',0,'2023-09-05 01:28:35','2023-09-05 01:28:35','2024-09-03 20:28:35'),('777aa311da13785e65faca8361f3b9ef6aeaf2a866b881f213aa5e102c89359aec34741bc11bc56a',1054,1,NULL,'[\"user-app\"]',0,'2023-10-08 18:18:16','2023-10-08 18:18:16','2024-10-07 13:18:16'),('77956ea41e22cf224eeb1a5e8ea4ce7d866b350a02d43d32f2775c75d4dd6221319afbd088b336b0',2,1,NULL,'[\"user-app\"]',0,'2023-04-19 21:10:05','2023-04-19 21:10:05','2024-04-18 17:10:05'),('77c1fdd7e8cbef758caaaaf0f4155efd4244e6c7e727bd6794c58ee1ca3326c9cc85281611460617',519,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:35:47','2023-01-25 17:35:47','2024-01-25 14:35:47'),('77ee9489ff395cfd9c18204b66085eeb1baf7e6162dbdc66aa230bc9dddc8c350b5ee5693bd87b90',2042,1,NULL,'[\"user-app\"]',0,'2023-09-24 15:28:27','2023-09-24 15:28:27','2024-09-23 10:28:27'),('77ef964d5f9119f28ce7c7eb4a7bf3e0efc9bf63f360c5333c94c162a5f0fb1aa452458782f7de2e',1061,1,NULL,'[\"user-app\"]',0,'2023-02-24 00:00:36','2023-02-24 00:00:36','2024-02-23 21:00:36'),('78065697da85a4f186bbd57eaf4e015d339a9073a3d3a7baa7b26e808acd482d2226e895a0915f75',614,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:33:22','2023-01-25 15:33:22','2024-01-25 12:33:21'),('782573206b7090af5a1f48135ef1c23b304c1839c0b01fd9191738e4f73f6b84364466c667f8752b',387,1,NULL,'[\"user-app\"]',0,'2023-07-08 15:31:00','2023-07-08 15:31:00','2024-07-07 10:31:00'),('78327df405645d160569aa3b3f097228c718d06e8a316ec49912b4be05c9638cec0064a211f35fef',2,1,NULL,'[\"user-app\"]',0,'2023-09-19 20:24:36','2023-09-19 20:24:36','2024-09-18 15:24:36'),('783bc89e92d972b63fc9cf04029b5c08dd72b619f38f241672cbc39bae50063551f60fafc1033751',1493,1,NULL,'[\"user-app\"]',0,'2023-05-24 02:37:20','2023-05-24 02:37:20','2024-05-22 21:37:20'),('784cff6287ba4fd54002611de1028e6ec93f6635a125c35f75cd5903722e55153e18fa85312629f1',2128,1,NULL,'[\"user-app\"]',0,'2023-10-09 12:44:54','2023-10-09 12:44:54','2024-10-08 07:44:54'),('785cd30099f87cc43cd9e87aabf19bbee54ddb794b6634e71f4c3c0f56b595479f2da4e2b965d68e',262,1,NULL,'[\"user-app\"]',0,'2023-02-13 13:52:01','2023-02-13 13:52:01','2024-02-13 10:52:01'),('78636c406a2a7703282607d3fdb062bdc18d49e0fa6752f696bcb98cd83214915dfecdf0c52dbeac',2,1,NULL,'[\"user-app\"]',0,'2023-09-09 04:53:47','2023-09-09 04:53:47','2024-09-07 23:53:47'),('786492ba133e3d51620f3ff8e2aef528d784538dda59e32e1e8e92c7ea62d2d6eb7ff5a14c62513c',360,1,NULL,'[\"user-app\"]',0,'2023-01-25 09:28:09','2023-01-25 09:28:09','2024-01-25 06:28:09'),('786521b709528c7dfc996a6b12bf43199d8d960a51f2df6472d36eb5838a5ceb8b9c5d125df14813',1249,1,NULL,'[\"user-app\"]',0,'2023-04-12 07:03:46','2023-04-12 07:03:46','2024-04-11 03:03:46'),('78799a7afa4be3b99cfdb65c79311eb029aa62d4b367278498e4d2c5b25c5755ac6022f87412b8ba',2,1,NULL,'[\"user-app\"]',0,'2023-09-22 04:07:53','2023-09-22 04:07:53','2024-09-20 23:07:53'),('7883c53393d4fba002197edfa79fb9b7ab562f57752c987acf69d56eb6f3183c61878369dbec18e4',1130,1,NULL,'[\"user-app\"]',0,'2023-03-10 16:25:43','2023-03-10 16:25:43','2024-03-09 13:25:43'),('78905a19dd683db35a3444d8033f3a71b7174ea4b76bf5d3bf9e681e6fbf6555239d02fbc7ac702b',656,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:37:21','2023-01-25 12:37:21','2024-01-25 09:37:21'),('7896a818f1d8dbfa38ee54d4085dfe146be118a41df00e86f4a0b24e7f610ab8f5afbbd81de31bce',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 03:24:01','2023-07-17 03:24:01','2024-07-15 22:24:01'),('78a7c6380a4267b2aa98bb05e96237258c10cca9fc688afda44a37abcd0b02e3dca2954ba2d682b8',1101,1,NULL,'[\"user-app\"]',0,'2023-03-01 13:34:26','2023-03-01 13:34:26','2024-02-29 10:34:26'),('78ab68dc1d2c9eca63d09e6c8a44258820dba06696b0dc56618b1d9cc92a5803f69c2a600782a25e',2,1,NULL,'[\"user-app\"]',0,'2023-07-03 00:35:33','2023-07-03 00:35:33','2024-07-01 19:35:33'),('78ae1ddf7e93dcc95e64e8c3a2a23761e90b2b9c049ce9f72cb610cd0772c334f711187f2e8466e1',2,1,NULL,'[\"user-app\"]',0,'2023-03-20 19:44:09','2023-03-20 19:44:09','2024-03-19 16:44:09'),('78be5999d8a9c444532e296420b39479ce47a82614cede7d1a785cb95f67907d2c52d249c35449b2',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 20:08:44','2023-03-29 20:08:44','2024-03-28 17:08:44'),('78c4aced90515a42063aa11fc0fc713e3203af1ea771db85f1800ad7f1e9416bc72fbe06c7f7f39a',2,1,NULL,'[\"user-app\"]',0,'2023-08-04 18:35:43','2023-08-04 18:35:43','2024-08-03 13:35:43'),('78d0f9bf93b1816d98da34554425ad9c77982043ffcf7e5cc4f109f6651a674224d8c29d2de891eb',1218,1,NULL,'[\"user-app\"]',0,'2023-03-30 20:02:24','2023-03-30 20:02:24','2024-03-29 17:02:24'),('78e36f2581a650606f218a96f53e0127782f5dda5e1f1b689952be2e79e28da0248742db82ced693',2,1,NULL,'[\"user-app\"]',0,'2023-10-09 12:43:24','2023-10-09 12:43:24','2024-10-08 07:43:24'),('78f578049cf5a1a26437fe51dc4e5556cfaf052b24f35c1a570a65ff3b5f56d65bce9a404ceb8b90',2,1,NULL,'[\"user-app\"]',0,'2023-08-09 03:13:51','2023-08-09 03:13:51','2024-08-07 22:13:51'),('7907b427e698ec398c7075d6eb616c3b4e7e926daef4f59ed335b313b315abd0bb29047c2c22f3e0',2,1,NULL,'[\"user-app\"]',0,'2023-04-24 14:00:29','2023-04-24 14:00:29','2024-04-23 10:00:29'),('79122ce6b48da0ce55e755a84cdb63d9a0c33709bb4154f30e0f35dba0421be5109767060abfd9a3',1127,1,NULL,'[\"user-app\"]',0,'2023-03-09 17:34:19','2023-03-09 17:34:19','2024-03-08 14:34:19'),('7916bca3fba1533c1fdbc9be2ee7a86d952883037c7bfb7f8eccf422fa8238b9cece6b9ffb9b2955',2129,1,NULL,'[\"user-app\"]',0,'2023-10-09 15:15:30','2023-10-09 15:15:30','2024-10-08 10:15:30'),('791b61ee1fa99c24e6ccfabd2f75f15e889fb89863b943bb4f67300d55d17cb2f4318d7e3e60ccf8',2,1,NULL,'[\"user-app\"]',0,'2023-07-31 17:20:13','2023-07-31 17:20:13','2024-07-30 12:20:13'),('7925a12376564905c7c1bf0cfbdeb7314552ac1ddbc43dbb378074a23eda71eb514af5e423dd5a6f',2,1,NULL,'[\"user-app\"]',0,'2023-06-29 16:32:31','2023-06-29 16:32:31','2024-06-28 11:32:31'),('793437163c3668322c67191f17390577541b243a424a4a09b01bc29bc7a4456ae659e42dd05ac56b',2,1,NULL,'[\"user-app\"]',0,'2023-06-08 23:25:21','2023-06-08 23:25:21','2024-06-07 18:25:21'),('794717135fec5ed33618931fbf80c6a1a1b543ddb2748213106904316c14446cf04b682e8e43159e',1344,1,NULL,'[\"user-app\"]',0,'2023-04-30 03:13:49','2023-04-30 03:13:49','2024-04-28 23:13:49'),('794c8f20ae691c5a1b99da824cc19bfb76b2f97b4cf8a0ef6fa04f8029674614a91b05ce92353c54',679,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:21:06','2023-01-25 16:21:06','2024-01-25 13:21:06'),('794dcf8d16d989b7236ef6727aca51cde5c2d013d69ca7132aaf6d90826eef836e7d28cbfbb2ff7f',1846,1,NULL,'[\"user-app\"]',0,'2023-07-31 21:53:54','2023-07-31 21:53:54','2024-07-30 16:53:54'),('795096dd60d22560688529250fd9fb6c17264970dc1563df597029b9e5b57a8e2b911a775fb4a544',969,1,NULL,'[\"user-app\"]',0,'2023-10-02 15:54:46','2023-10-02 15:54:46','2024-10-01 10:54:46'),('7960f7913743688bdf6dc14fc44c1857a883dcfc229d99be5ea2f16757a2723de6ce3b9891e33475',700,1,NULL,'[\"user-app\"]',0,'2023-03-12 17:15:20','2023-03-12 17:15:20','2024-03-11 14:15:20'),('79665e3902882ab97e9f245a6c04f694d126f9b9c74a98b0edd412a6bb7cb3974305e059c339dd37',2,1,NULL,'[\"user-app\"]',0,'2023-04-07 15:59:21','2023-04-07 15:59:21','2024-04-06 11:59:20'),('796e2780108e16c7caab48126fd07d38486bcc06a34176c07b696332c7d617f93280310dcbb4b052',696,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:39:32','2023-01-25 18:39:32','2024-01-25 15:39:32'),('7972e55aeafbadda33dbf04230212be8d964369ee41798998d5d24bb7ce10325fff8cb654f467fcc',65,1,NULL,'[\"user-app\"]',0,'2023-02-16 12:38:36','2023-02-16 12:38:36','2024-02-16 09:38:36'),('797b455365f2612df7a36f540e998d9a42dfe0d494a02aa729dc35665067324ee8142650a94c8fde',1998,1,NULL,'[\"user-app\"]',0,'2023-09-14 23:43:28','2023-09-14 23:43:28','2024-09-13 18:43:28'),('797c7225152f6a10f67f4d8ef43367b7ef309ab744c946dd7824e76a915865649cdc4daac8af9a3e',1020,1,NULL,'[\"user-app\"]',0,'2023-02-21 19:08:06','2023-02-21 19:08:06','2024-02-21 16:08:06'),('79942b94cd105b1dfb066f6e0e546fddf8dafce2f4e45508a10d92edb31441205c2b21409cae897f',2,1,NULL,'[\"user-app\"]',0,'2023-09-27 00:13:00','2023-09-27 00:13:00','2024-09-25 19:13:00'),('799a07c18c13b11692ba8415146d918f7ef54e2ad920545fbeefb61b730a2706b4c8d6f0dcd98fcb',1045,1,NULL,'[\"user-app\"]',0,'2023-07-05 23:20:28','2023-07-05 23:20:28','2024-07-04 18:20:28'),('79cc0bf3231b168b550c1c7ef37d187072d3b6038bca8a4cb56d270499156330b7b9fd54a6ee0f4a',1039,1,NULL,'[\"user-app\"]',0,'2023-02-22 19:24:59','2023-02-22 19:24:59','2024-02-22 16:24:59'),('79d79efdd63513966a29a70b680aef952bdda174612a9611360499cfe7c193ceb75040cdd9d134bc',1295,1,NULL,'[\"user-app\"]',0,'2023-04-26 04:14:32','2023-04-26 04:14:32','2024-04-25 00:14:32'),('79e5d0622c266f4658c9c761c82c8347128055c78ed198f0b079be7243be153451e30d693814b5eb',613,1,NULL,'[\"user-app\"]',0,'2023-03-14 22:08:18','2023-03-14 22:08:18','2024-03-13 19:08:18'),('79ebd1e64173037e167a0a0c93759a08096df32fc9b3ca59aff51420925b69d8c0e762eb35e00089',272,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:23:25','2023-01-25 17:23:25','2024-01-25 14:23:25'),('79f2d9a4a2d4056456dbc141f33bf1e65041b39be048958b508007f8195d1da86841e5822ccb9b09',387,1,NULL,'[\"user-app\"]',0,'2023-02-25 00:01:39','2023-02-25 00:01:39','2024-02-24 21:01:39'),('79fd5f382e8ed4787f94087e1cf088e3bbe4ed0a9d63212b8d5572307bb31f5cc814008929fb4599',1149,1,NULL,'[\"user-app\"]',0,'2023-03-13 13:40:26','2023-03-13 13:40:26','2024-03-12 10:40:26'),('7a09adda71a3abb1c950beb287da420e667519fb23d7a0a99a4598d041e6991c0dbed9a411e11a23',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 20:48:15','2023-10-05 20:48:15','2024-10-04 15:48:15'),('7a1eebadb35e4810c7fcfa34d2dc7967770f96781b0d10e5dcd099f49095f98a62845c676a0dc9cc',946,1,NULL,'[\"user-app\"]',0,'2023-07-14 01:04:34','2023-07-14 01:04:34','2024-07-12 20:04:34'),('7a2375888deb79255f1e9d12c673109e750b887ba7ccdddf76a3210c80126f543adeaf79508ab6df',2054,1,NULL,'[\"user-app\"]',0,'2023-09-25 21:45:21','2023-09-25 21:45:21','2024-09-24 16:45:21'),('7a2f91d1d2cc7a81901907f4d34774e0464a1788d2ad4560a02635453903debd09b067a326ea2374',235,1,NULL,'[\"user-app\"]',0,'2023-10-03 17:22:06','2023-10-03 17:22:06','2024-10-02 12:22:06'),('7a672772c4da1db66a95d04a9812879e2bbdc2248f990ac6dcaf695fbd1f1d87eee06942923b992c',2,1,NULL,'[\"user-app\"]',0,'2023-05-25 02:10:22','2023-05-25 02:10:22','2024-05-23 21:10:22'),('7a8246ec032112ba95c99624d7037a65619495fc141ea5aa72dea3093ab9caca88358295073bb55d',1094,1,NULL,'[\"user-app\"]',0,'2023-03-25 11:20:05','2023-03-25 11:20:05','2024-03-24 08:20:05'),('7a99c29f3becfc29ffc3eac4c6cd077931abfce9d34b619e961da07f8528c7d9428e6795f9c22923',2046,1,NULL,'[\"user-app\"]',0,'2023-10-05 13:32:59','2023-10-05 13:32:59','2024-10-04 08:32:59'),('7aa8ab1821ffe6e74a183557ec0950df22ce680c65c4f396273570f084d201ae221d837322f0f3a1',1064,1,NULL,'[\"user-app\"]',0,'2023-06-07 14:40:08','2023-06-07 14:40:08','2024-06-06 09:40:08'),('7abe60b8769a19aa7f455a1f01ee95018fe27f9bc81662a16c3607b0438853e265e84cc26b7c6dd5',1815,1,NULL,'[\"user-app\"]',0,'2023-07-26 00:18:29','2023-07-26 00:18:29','2024-07-24 19:18:29'),('7ac650426a2bb232a107c8464e5b4ee24af7c959e47412a276ae24914f082fe3bd629a88c91d4780',2,1,NULL,'[\"user-app\"]',0,'2023-07-06 01:19:58','2023-07-06 01:19:58','2024-07-04 20:19:58'),('7b269356efb2720be846d1ea2f4bb93fa218b703de2a1d4155cb5c93980f1e392a6e19a811a6d091',81,1,NULL,'[\"user-app\"]',0,'2023-09-02 14:30:02','2023-09-02 14:30:02','2024-09-01 09:30:02'),('7b2d7658c07803d58aeeea82aee2f74c991f4df0243504b04fe41d419468bfe0b9c29d7a7022d73a',1604,1,NULL,'[\"user-app\"]',0,'2023-07-11 16:28:10','2023-07-11 16:28:10','2024-07-10 11:28:10'),('7b33399ac1a3d22ff0fe7059cd7aeec62ef995a3b2ffbe7616a7fe7cda72e7fdc1996cd1fc42282a',2,1,NULL,'[\"user-app\"]',0,'2023-06-03 16:13:50','2023-06-03 16:13:50','2024-06-02 11:13:50'),('7b347349022b2c08c27b287f85d0065ab3f66c6b90f89af0d6cdff3ef600c35c96bed33dc57fca2c',2,1,NULL,'[\"user-app\"]',0,'2023-06-17 22:04:40','2023-06-17 22:04:40','2024-06-16 17:04:40'),('7b356827adc935c2c9bd70a0710227786421f85f06d005d3dd4ce936e5ccdbcc95f99f853c7f6577',1742,1,NULL,'[\"user-app\"]',0,'2023-07-12 02:20:00','2023-07-12 02:20:00','2024-07-10 21:20:00'),('7b3fd8f3719fb9bf8c1cee7db151bb03e61fdb171971122ee7cfd3914246a755b8891563ac9d093f',1317,1,NULL,'[\"user-app\"]',0,'2023-04-23 20:29:36','2023-04-23 20:29:36','2024-04-22 16:29:36'),('7b5843f5d9cce04d67eb92b4c8b787c85f48105c08b33fb6e60c6dd68f305562efb2a2ce11d0090b',566,1,NULL,'[\"user-app\"]',0,'2023-03-05 17:14:24','2023-03-05 17:14:24','2024-03-04 14:14:24'),('7b683dbaf434284793281511eb2fffe4f91b92347102c46e0dd069857da28b5fd513080c9868e508',1553,1,NULL,'[\"user-app\"]',0,'2023-06-11 16:37:41','2023-06-11 16:37:41','2024-06-10 11:37:41'),('7b710f921a38d1233723968a44b1c86fd5975d6098e46a62be3b57b8266a696b04b7d79d4bb9c56c',1910,1,NULL,'[\"user-app\"]',0,'2023-08-23 21:26:11','2023-08-23 21:26:11','2024-08-22 16:26:11'),('7b787d5b3e154bba4e19933cff450ec1903119012efa5f5797647484d4e372a66097ea73cab352f4',745,1,NULL,'[\"user-app\"]',0,'2023-01-26 19:30:22','2023-01-26 19:30:22','2024-01-26 16:30:22'),('7b880c2e6342eba48b31bf7241a826182cfc4ba823b3053f3eb83fc149f8c77a51bb67dda9e95a74',280,1,NULL,'[\"user-app\"]',0,'2023-01-26 17:22:11','2023-01-26 17:22:11','2024-01-26 14:22:11'),('7b8ef544ea0228950cf873320e700331dac09466da1a7c14809d1cbfb62bdfda638ef0f3336f8def',1464,1,NULL,'[\"user-app\"]',0,'2023-05-16 23:13:54','2023-05-16 23:13:54','2024-05-15 19:13:54'),('7b919ca64ccc0511d0927cd0de0f5c2219b958f528bb64c10f01997180aa7fff5b81adbe8239a54d',2074,1,NULL,'[\"user-app\"]',0,'2023-09-30 19:02:56','2023-09-30 19:02:56','2024-09-29 14:02:56'),('7ba1c0d5627d177a43bb55493562156b9d694571c0ed0da50f5db3d74fbd52e7bb8ccee383b0af4a',1970,1,NULL,'[\"user-app\"]',0,'2023-09-11 06:14:26','2023-09-11 06:14:26','2024-09-10 01:14:26'),('7bc17489023166d82bfcfd89f9dc92d477dc36488025c19ed1233b2c79078ac0d3e66ce5cdd9ee88',68,1,NULL,'[\"user-app\"]',0,'2023-03-09 09:32:03','2023-03-09 09:32:03','2024-03-08 06:32:03'),('7bddc989c09e224531898076a811f8f80ffe6a68b689b9a2bb05215423f231b2f8b09eceb86fec4b',1086,1,NULL,'[\"user-app\"]',0,'2023-05-23 21:56:16','2023-05-23 21:56:16','2024-05-22 16:56:16'),('7bddf0d33635f73ae83ae18700f3ef569e0e7ad0922fa0ceaca2984b6e82e244ea7bee88fffcc88b',1690,1,NULL,'[\"user-app\"]',0,'2023-07-03 18:51:17','2023-07-03 18:51:17','2024-07-02 13:51:17'),('7bea7eab6fa04cfd1c8a80d719f13264f98ef2dfc433f7c2e09c9a827a3146ace001a1ac58053306',13,1,NULL,'[\"user-app\"]',0,'2023-09-06 14:39:36','2023-09-06 14:39:36','2024-09-05 09:39:36'),('7bf5c6fc7f3557c91ad0289cf588bafa141a57fd3b153160595b6d17e1371c2afd2db304e865e2e6',1543,1,NULL,'[\"user-app\"]',0,'2023-06-09 13:06:03','2023-06-09 13:06:03','2024-06-08 08:06:03'),('7bf6cc60f9274374bb2ab7187554a7d5035df5cac5232389d8a1e6c365fd2ea4772a4d1dfad1464d',1725,1,NULL,'[\"user-app\"]',0,'2023-07-08 18:33:02','2023-07-08 18:33:02','2024-07-07 13:33:02'),('7bff39e476f63d6557a72f2e8ff4f918141bffd07615b889f855cc1a2dc5df074ca7b498df315d83',298,1,NULL,'[\"user-app\"]',0,'2023-10-03 23:50:35','2023-10-03 23:50:35','2024-10-02 18:50:35'),('7c028eb6a1635f7c5f528fe28792ae6a3824a6a616878fef6193005c6c6f05eff3ff16fb5fe9b5f2',232,1,NULL,'[\"user-app\"]',0,'2023-01-26 18:08:47','2023-01-26 18:08:47','2024-01-26 15:08:47'),('7c19db1382286cde507634df18733ca5dcd83c36e0d4bc6ba33ee9f877b9ba04f4430c7b5aa1772c',758,1,NULL,'[\"user-app\"]',0,'2023-05-16 10:15:48','2023-05-16 10:15:48','2024-05-15 06:15:48'),('7c26803e88616d4d02240c73c6541352d8a8561e5fa0bb72b599d1524defdf98baf8c251deb19947',2,1,NULL,'[\"user-app\"]',0,'2023-03-04 19:24:05','2023-03-04 19:24:05','2024-03-03 16:24:05'),('7c28eafad322bd52b8c7d28fe28e47458b90386ab50256031bce3d75d5bfb48232fb04398e127b0f',2,1,NULL,'[\"user-app\"]',0,'2023-04-10 04:37:11','2023-04-10 04:37:11','2024-04-09 00:37:11'),('7c2921e9599f36d8cfb67de9ebca08845ce42518e6d11842417d083e3429cc96c33f7ce4958a529d',1107,1,NULL,'[\"user-app\"]',0,'2023-03-05 12:12:18','2023-03-05 12:12:18','2024-03-04 09:12:18'),('7c541a46d73c1f7c05179a0a737c4445a4ddb51f234ad5e15d42924064527d014d810ac3ac16f76d',1244,1,NULL,'[\"user-app\"]',0,'2023-09-30 01:34:37','2023-09-30 01:34:37','2024-09-28 20:34:37'),('7c5499038c6998665610a2044994e7ffe60d87aa0bb43ad1362da27f0c1369d38b8c3c60e45177fc',1902,1,NULL,'[\"user-app\"]',0,'2023-08-24 20:04:04','2023-08-24 20:04:04','2024-08-23 15:04:04'),('7c56f3e42629f241883c949f1cff7ef14deb6bdd9f81b8befb166b31797474a6a2c1ef8d52f882a2',2,1,NULL,'[\"user-app\"]',0,'2023-09-07 21:09:40','2023-09-07 21:09:40','2024-09-06 16:09:40'),('7c5a47492139888a6109dedbb8efe27790188947d8303b675548e8dc3279f80cd03dc7c0ee499c9a',1852,1,NULL,'[\"user-app\"]',0,'2023-08-02 11:39:00','2023-08-02 11:39:00','2024-08-01 06:39:00'),('7c5eb7cf1246b066d6775a0c637b0d17a371845d1b633311f729e544a2c270e321e4016038590001',1036,1,NULL,'[\"user-app\"]',0,'2023-04-27 20:05:15','2023-04-27 20:05:15','2024-04-26 16:05:15'),('7c69d7400eea403e124d2dd69ad8495415e7a7251a98fe6b381bc79de7caf949fc330cb9582b5e99',1045,1,NULL,'[\"user-app\"]',0,'2023-02-22 22:12:36','2023-02-22 22:12:36','2024-02-22 19:12:36'),('7c8317a3fdd97a3e48e57fd12647bc3ada305ffdbe365cbfe84953303bc1c0d2fc54dc2e7fda9a1d',1156,1,NULL,'[\"user-app\"]',0,'2023-03-14 17:08:10','2023-03-14 17:08:10','2024-03-13 14:08:10'),('7c9a9cbbb3dc8b251cb651878559713dfd6c26351271956f4f2263bb37affcf470cdd94d45f4c665',1012,1,NULL,'[\"user-app\"]',0,'2023-05-03 02:26:01','2023-05-03 02:26:01','2024-05-01 22:26:01'),('7cadbee2e11cc4b479294773a0084d328b92b54d6e0c22f0b395760fd62cd68205cd0d65ed4ed91c',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 16:07:42','2023-10-07 16:07:42','2024-10-06 11:07:42'),('7cb3b88b7d45604db066ac3da3bc3c720186b5d5777d43a8f9334a0abb66c7de86f75736368a3cef',1435,1,NULL,'[\"user-app\"]',0,'2023-05-12 13:52:04','2023-05-12 13:52:04','2024-05-11 09:52:03'),('7d0d74196a39b031d4935650ae0aa41ac985f0175b9302377628ace1d408bde67ef94d069d0404dc',1607,1,NULL,'[\"user-app\"]',0,'2023-06-20 19:18:08','2023-06-20 19:18:08','2024-06-19 14:18:08'),('7d150fd3d3ef27f13291f142d64a706b66eb46029d1baf1a5de0eae51016a9761f452588381c9024',13,1,NULL,'[\"user-app\"]',0,'2023-02-27 17:21:49','2023-02-27 17:21:49','2024-02-27 14:21:49'),('7d2fbaedb657e2cae622a35f66fbb6afc01012e752f529b3504423722d4ca6ee7dbe4369279de35c',491,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:10:53','2023-01-25 17:10:53','2024-01-25 14:10:53'),('7d36f1d810d7aeb8f81a1642b3f891b2ba0a6fbae4998721fe7ee4ba82a906143d6911ce247bf1e1',2,1,NULL,'[\"user-app\"]',0,'2023-09-14 23:28:59','2023-09-14 23:28:59','2024-09-13 18:28:59'),('7d9456e8faa98a9da40fed45b0de23543f50bb0741ae6284ba27018bef70b0ffb37409600402dd61',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 03:22:02','2023-07-17 03:22:02','2024-07-15 22:22:02'),('7d961ac6b9849d47292f7271eebd5daae38c22f34c2fd2346933b3549540bcd1c5859069316ca7e5',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 11:01:39','2023-01-28 11:01:39','2024-01-28 08:01:39'),('7d99ad898eee7ab922efecb8bc3d51f61f4b60392ab4ac8a022ec44616c226ef69865e93a70517f9',1170,1,NULL,'[\"user-app\"]',0,'2023-03-18 12:51:38','2023-03-18 12:51:38','2024-03-17 09:51:38'),('7d9b6ccf07d4954d564ea1059421b50c9edb8892b3c84f584410578a1a28e80226e66e42dba454cc',738,1,NULL,'[\"user-app\"]',0,'2023-01-26 15:52:32','2023-01-26 15:52:32','2024-01-26 12:52:32'),('7da08576ec3829f9d3d4d759236f5b4eeed6280159a7c5b43078405d33aea3c5431f73dc45372be5',1011,1,NULL,'[\"user-app\"]',0,'2023-02-21 16:40:11','2023-02-21 16:40:11','2024-02-21 13:40:11'),('7da1a207e979b28a271e14b58b0d131540caf1b6467b3efe2c564470725b1549e2f48b07f1cfef81',554,1,NULL,'[\"user-app\"]',0,'2023-04-20 22:21:38','2023-04-20 22:21:38','2024-04-19 18:21:38'),('7dac3a8b4b7a32acbf598b8324473328b4afd428c715ab09748f555491d660d26948b226f2a9143d',2,1,NULL,'[\"user-app\"]',0,'2023-07-16 00:56:20','2023-07-16 00:56:20','2024-07-14 19:56:20'),('7dbb703d121f7bb4f7e3009a137a5c3e23fa9738d93945ca51623bc49cfcef26bb7f1158a87a0e2b',1695,1,NULL,'[\"user-app\"]',0,'2023-07-04 04:14:16','2023-07-04 04:14:16','2024-07-02 23:14:16'),('7dcef707bb78bcacfecc8b4c1befb80c8274b55e19d43acbeed5008f21189e295e6edf2431e3b5de',377,1,NULL,'[\"user-app\"]',0,'2023-10-02 02:25:08','2023-10-02 02:25:08','2024-09-30 21:25:08'),('7de1927548d63066d8cbf738bad555b02db2ed0f743d20143c4d8d04f004b08f76ddf4da32b0680a',898,1,NULL,'[\"user-app\"]',0,'2023-02-10 12:39:31','2023-02-10 12:39:31','2024-02-10 09:39:31'),('7de4e247e7aae58d99972d2c42067fdbf86106928a4df5c6900815f0a4fb9dad2607124962c715a2',1023,1,NULL,'[\"user-app\"]',0,'2023-05-31 15:35:58','2023-05-31 15:35:58','2024-05-30 10:35:58'),('7dfaba8dd239cb6a577e7070e4b056952cfafb3e87dd01b2dfd2af3e085bcd0d14e384f4cd1f307a',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:25:09','2023-01-25 03:25:09','2024-01-25 00:25:08'),('7dfea9032ab960e26bf9fe0f794f68a8a774fc2d2ff84aa622e2f14bc3946811a8f0324338fa617c',37,1,NULL,'[\"user-app\"]',0,'2023-01-31 00:12:42','2023-01-31 00:12:42','2024-01-30 21:12:42'),('7e3d64ecde108ae4d0cba520fecd20b77e2b91cc75c50e6ffc3384ac9912de578ce75339c8dce532',1052,1,NULL,'[\"user-app\"]',0,'2023-03-03 18:04:18','2023-03-03 18:04:18','2024-03-02 15:04:18'),('7e417785d30912d80966ad89217da912692730d6abb530273b3b2b1430b72ab1780f0fa3b59f6066',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 17:11:52','2023-09-25 17:11:52','2024-09-24 12:11:52'),('7e51d7b7f6ab39b158b35f0bb6d5810e1a561d3e2b61473e25d90f8d820601073ce55c41137e1bae',63,1,NULL,'[\"user-app\"]',0,'2023-02-18 00:42:54','2023-02-18 00:42:54','2024-02-17 21:42:54'),('7e685fe6c7cd0cd55e9dde04ce2e00adfee2c778c75fa62c8873d0bd9b0f8bad4c7e0fd28e6de477',2,1,NULL,'[\"user-app\"]',0,'2023-07-02 17:02:45','2023-07-02 17:02:45','2024-07-01 12:02:45'),('7e7b94bd206bbe2812ec601885c75f593e3d0be00b5df7358f2fadcee1bc17cc1bef78ee5c0907fe',2,1,NULL,'[\"user-app\"]',0,'2023-10-01 02:06:57','2023-10-01 02:06:57','2024-09-28 21:06:57'),('7e897e49aad078fd402d1f8dc65311d7e85385fdb577d3e0a998de3f43b5c1cac72f6e793b14dd9d',1819,1,NULL,'[\"user-app\"]',0,'2023-07-26 19:11:00','2023-07-26 19:11:00','2024-07-25 14:11:00'),('7eab702381e24eac86da5d0277f8545c5cda9ba630c18c2c0c9c246fe7638337b515d10f82faa64f',774,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:34:32','2023-01-28 13:34:32','2024-01-28 10:34:32'),('7ebc2c4e85494221a66874bd96bddabb92b3d86de66a020341f47bfb4f4ca11582d96a49f7edd140',531,1,NULL,'[\"user-app\"]',0,'2023-01-25 22:39:06','2023-01-25 22:39:06','2024-01-25 19:39:06'),('7ebca283dc4933b75c06b6bfbd10303934ca98a89ba59d6de9a2c7d01bfef7f2086aa53a6b4610ff',2,1,NULL,'[\"user-app\"]',0,'2023-02-05 04:06:34','2023-02-05 04:06:34','2024-02-05 01:06:34'),('7ed1763b17eff7b183e3ffe04f7cfdd434a829d7e19553b7e1f290e8515f6cbdaa4bfb6dd51e3484',1905,1,NULL,'[\"user-app\"]',0,'2023-08-22 17:30:07','2023-08-22 17:30:07','2024-08-21 12:30:06'),('7ed19821b12ad52d21dfb9c298f6196e6ffa336ca213ae5461089c07d037bcc264f0dcb81a1a890a',962,1,NULL,'[\"user-app\"]',0,'2023-02-20 10:58:34','2023-02-20 10:58:34','2024-02-20 07:58:33'),('7ed7a1a8355e9cc3d1183f6ebe843d32ff1101948d6c3324d58014a3e6ba3e67927809bee57f8605',2,1,NULL,'[\"user-app\"]',0,'2023-04-18 19:04:28','2023-04-18 19:04:28','2024-04-17 15:04:28'),('7ee4a4ff73223bbf088b5b011e2774436d9b428b012c1394647e64fa410e15769783577f90f56d41',1963,1,NULL,'[\"user-app\"]',0,'2023-09-09 03:39:11','2023-09-09 03:39:11','2024-09-07 22:39:11'),('7eef5eea2e4f6662ea34a10fd81916bdd9cd38b54619bb2d8a9fa1088d01ecd530bd3a334807b8e1',1177,1,NULL,'[\"user-app\"]',0,'2023-03-29 13:10:36','2023-03-29 13:10:36','2024-03-28 10:10:36'),('7f0501e5e532ea06637dee02e0aae62766a78bb7b9c53aa9c87af24f8e5d7e10bb2d152dd9fbed0b',1112,1,NULL,'[\"user-app\"]',0,'2023-09-29 01:07:15','2023-09-29 01:07:15','2024-09-27 20:07:15'),('7f15397d5365eab060701941f2bdc244b06b37a7a00d5e7e5beab3a4d5a03bdce2c9a796b2ef8f66',2,1,NULL,'[\"user-app\"]',0,'2023-07-03 20:13:20','2023-07-03 20:13:20','2024-07-02 15:13:20'),('7f398e09727e6c156331ca2bd8ea438b85b7b4a666f322736aa7b158f54846e01c592629d3419288',1736,1,NULL,'[\"user-app\"]',0,'2023-07-11 01:26:19','2023-07-11 01:26:19','2024-07-09 20:26:19'),('7f46ba950d451122157809b9341aa1650bde45a080199430952a09cd16113d65ef7f878ce0d47539',785,1,NULL,'[\"user-app\"]',0,'2023-09-06 10:04:09','2023-09-06 10:04:09','2024-09-05 05:04:09'),('7f46cb49d17fe6178dd80593bbbadfb1b11624cf6c223d10ffa81653a6785847394902a0755af7bc',957,1,NULL,'[\"user-app\"]',0,'2023-04-24 13:33:38','2023-04-24 13:33:38','2024-04-23 09:33:38'),('7f510e93f8d4cdf0fdbbff11f39a0cec1db7e10eb871b5caa05af8473b9119b27841980e6b206cc9',1028,1,NULL,'[\"user-app\"]',0,'2023-09-05 20:20:10','2023-09-05 20:20:10','2024-09-04 15:20:10'),('7f75300bdd88fee861ba3e6b8599a7dc1296009d14faeadd7e0025d6c539dede70a571c86a2a19dd',663,1,NULL,'[\"user-app\"]',0,'2023-07-14 03:45:24','2023-07-14 03:45:24','2024-07-12 22:45:24'),('7f904b0cb5a76877cced378dfb27950f5da74604af7cb00d0907871394e2c00a5f8129f3063af77d',1022,1,NULL,'[\"user-app\"]',0,'2023-02-21 20:37:25','2023-02-21 20:37:25','2024-02-21 17:37:25'),('7f9a60b56d49f755b8c0e533f9ffa6094eb7dc15debc7bdc191452708863dc52543094e6f59b4ec5',1824,1,NULL,'[\"user-app\"]',0,'2023-07-27 19:04:31','2023-07-27 19:04:31','2024-07-26 14:04:31'),('7fa4be07c38ea379f6b38acc5bc53d7a9904db2e9f371cc80cb9a5ce63abf6ec3aba8e661c141b08',1804,1,NULL,'[\"user-app\"]',0,'2023-07-31 17:21:44','2023-07-31 17:21:44','2024-07-30 12:21:44'),('7fc491a378cc6da550f9c4f4111feca96788a8782fcfae6a9ac44961046e3f049b80a9b479eef4aa',1403,1,NULL,'[\"user-app\"]',0,'2023-05-09 22:18:04','2023-05-09 22:18:04','2024-05-08 18:18:04'),('7fc663c4f6c48313df3f80f33bd943d09b20f9e805edecd5a6297eebb1011027b97896cdbe063662',991,1,NULL,'[\"user-app\"]',0,'2023-04-13 18:56:13','2023-04-13 18:56:13','2024-04-12 14:56:13'),('7fd727ced0aa3b1cecea475503fba34b585561c036733f97ff35aa142ac65b4d70794fbad95209e3',762,1,NULL,'[\"user-app\"]',0,'2023-01-27 20:58:01','2023-01-27 20:58:01','2024-01-27 17:58:01'),('7fdb1a52756fc6336186648946fdfbdb09ddcf4fd197d0dbc8d9c9069632ac217cdfb2dbdad49227',2083,1,NULL,'[\"user-app\"]',0,'2023-10-03 17:23:02','2023-10-03 17:23:02','2024-10-02 12:23:02'),('8009d2dd0047ce82eec0997986a0bc032f3760783f5309af6ca3fd18656da0569d85378ea65c429f',2,1,NULL,'[\"user-app\"]',0,'2023-10-01 23:00:43','2023-10-01 23:00:43','2024-09-30 18:00:43'),('800d18dbfd9540175facfd877bc69db2d07bdd086ef1f45760c59ead151a4159123402d40d5bc645',2004,1,NULL,'[\"user-app\"]',0,'2023-09-16 18:46:01','2023-09-16 18:46:01','2024-09-15 13:46:01'),('801113aa417478d4e25d12e16f011ddfa12ba74b9229167ebc8f4523ad8b7b4469655e66b50ea033',1077,1,NULL,'[\"user-app\"]',0,'2023-10-05 15:18:34','2023-10-05 15:18:34','2024-10-04 10:18:34'),('80355f426c5d226fc015536e8d75bc9d8137db75a5dcc6b10f77dbf60d1a3605e6aaade8f9b616ac',921,1,NULL,'[\"user-app\"]',0,'2023-02-14 19:43:24','2023-02-14 19:43:24','2024-02-14 16:43:24'),('807f9779eaa756c5a4deb7ba0d5b6517193a249fa38e4c3d6c3ca68f16b7abc85851a5a9d8484ca8',5,1,NULL,'[\"user-app\"]',0,'2023-03-09 20:20:36','2023-03-09 20:20:36','2024-03-08 17:20:36'),('809166426adbb826a178372c710d68fd796232a2ef6f329825650bf64e3cc5d2a950cf9b890abce1',961,1,NULL,'[\"user-app\"]',0,'2023-02-22 00:38:52','2023-02-22 00:38:52','2024-02-21 21:38:52'),('80b36857fc73a6725fa7817923868086ad7aaa0d5ae5a4a952a0ca48bbabd275ab8459795488096e',2,1,NULL,'[\"user-app\"]',0,'2023-08-03 04:08:39','2023-08-03 04:08:39','2024-08-01 23:08:38'),('80be5ac59fff28190c0bacba786063056e4e0bc6186442ae17e5e5110a13c458d1e20460e113cfa3',2,1,NULL,'[\"user-app\"]',0,'2023-03-08 01:58:13','2023-03-08 01:58:13','2024-03-06 22:58:13'),('80dfec6c764db95df0d647305ae5bcdb23a93985a7a12f5c3f32fc4dfd1f287928bbe9a7165d4924',1789,1,NULL,'[\"user-app\"]',0,'2023-07-22 01:43:14','2023-07-22 01:43:14','2024-07-20 20:43:14'),('80fe6e0d44cae4ec8a76ef5bdbf3e23d7117b01b15924de10b2a64b326c1f52920bd535dcd566ccd',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 02:24:54','2023-09-21 02:24:54','2024-09-19 21:24:53'),('8101c8345cfdf0d67db49a6ab9ba0ee87efbde25d5f177e4113910249ab0b91303ffc4aebf6802f3',8,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:37:48','2023-01-25 02:37:48','2024-01-24 23:37:48'),('8104aed330e9cbec638837ca47db100f380cc1ed8243ed2e49087304cb8387ce8d823c452253a26c',614,1,NULL,'[\"user-app\"]',0,'2023-02-03 01:57:44','2023-02-03 01:57:44','2024-02-02 22:57:44'),('8108259fe0b4861605195496244b40486d1a492297094119f12bfec1b38cca48dd317ac0818c0bca',458,1,NULL,'[\"user-app\"]',0,'2023-01-26 13:54:14','2023-01-26 13:54:14','2024-01-26 10:54:14'),('811b5e8bd98da8c8448ec0183b670c1c8ad22c214731e3cc52a43eb9b781842e09b4d914d78c97be',1524,1,NULL,'[\"user-app\"]',0,'2023-06-28 18:02:59','2023-06-28 18:02:59','2024-06-27 13:02:59'),('812357d842a477f50e827eac130003a684763aa5db4df49af5903db93a3e09b08d3279d4cfa59f6a',178,1,NULL,'[\"user-app\"]',0,'2023-02-17 17:04:36','2023-02-17 17:04:36','2024-02-17 14:04:36'),('81262f14c51c5c79314ab65cad43e0d75b05e5383a909272e49df5187f04ebcc034ea84724a37285',2,1,NULL,'[\"user-app\"]',0,'2023-07-04 14:51:46','2023-07-04 14:51:46','2024-07-03 09:51:46'),('8126a924cf22b4a73fe621d51663d3a979e5f172eaf7fa3c29b8645ce6c55709e9cf00159b021eab',2,1,NULL,'[\"user-app\"]',0,'2023-10-04 18:06:44','2023-10-04 18:06:44','2024-10-03 13:06:44'),('81287024f6fd812a0799b970b8a02cd5208e58bc9a78220ec6b603c67ab964e03fc3a933021d4834',349,1,NULL,'[\"user-app\"]',0,'2023-01-30 05:08:34','2023-01-30 05:08:34','2024-01-30 02:08:34'),('816b1c80f7113b42756f917cd25b5124befebccc506eb6f8d23983126b57849f0b6980da5b9062ca',1081,1,NULL,'[\"user-app\"]',0,'2023-02-26 11:45:56','2023-02-26 11:45:56','2024-02-26 08:45:56'),('816ed760bb9637c6486387f8015290b5afc3ad5fee0a32863d477dc49ef8be86d52e3ce4265783e3',8,1,NULL,'[\"user-app\"]',0,'2023-03-14 23:51:12','2023-03-14 23:51:12','2024-03-13 20:51:12'),('81988c11a8f684349339378bc1cae6859dc2a9b59e011e797a8308733e0076568e888a23d8138c80',974,1,NULL,'[\"user-app\"]',0,'2023-02-18 14:21:50','2023-02-18 14:21:50','2024-02-18 11:21:50'),('81a1173ee56186eeac2ac617b4d7f78d384e7df5ad52a9de2a0ec3984abd875137469efaa02bd9df',128,1,NULL,'[\"user-app\"]',0,'2023-09-17 23:14:20','2023-09-17 23:14:20','2024-09-16 18:14:20'),('81a14054b0e1a01587efa3f77896e1bfff8a006a786a2dd0b77b3a929025290a1bc55cadae21b49e',1886,1,NULL,'[\"user-app\"]',0,'2023-08-17 00:31:39','2023-08-17 00:31:39','2024-08-15 19:31:39'),('81ad7143ed36d8414366b4ce8b335a52e57401c6147dd0456a6b5777446e917f1185566880447418',2,1,NULL,'[\"user-app\"]',0,'2023-03-30 15:06:59','2023-03-30 15:06:59','2024-03-29 12:06:59'),('81b606dc4b3ca8a9b9500f5f31d6da47044e3a24aff35f9d10b17890619dbd83a53b8aa9c23fcbfb',25,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:31:15','2023-01-25 12:31:15','2024-01-25 09:31:15'),('81bdfd224d31c303aeb458613993e5b5ceccf7169bf70fbc4dca023640412453ddcbb1db564b80e4',743,1,NULL,'[\"user-app\"]',0,'2023-01-26 17:51:28','2023-01-26 17:51:28','2024-01-26 14:51:28'),('81c6e4fc005ab5ccb51336f5cbc2855f22aacdf3caaa6cef21c9364098cc6f4cb095987d2bf7dca9',2,1,NULL,'[\"user-app\"]',0,'2023-10-04 03:18:18','2023-10-04 03:18:18','2024-10-02 22:18:18'),('81e7e19f126e0b0db7f6b2391abef69dc3bf679153a84986bdc036636d00ec28cf638e49ab81392d',170,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:18:10','2023-01-25 19:18:10','2024-01-25 16:18:10'),('81f029425ea0966401c3d1b0ed5eb206c1726cb94949d44c190eb759c1ff2314b848ce63b406f864',2,1,NULL,'[\"user-app\"]',0,'2023-09-06 22:39:39','2023-09-06 22:39:39','2024-09-05 17:39:39'),('82074dba924aace6a19a90b1fdf4522e30bd3dc2ff39a5a699d151934cad337283d9fa63012fefb6',795,1,NULL,'[\"user-app\"]',0,'2023-01-29 09:42:18','2023-01-29 09:42:18','2024-01-29 06:42:18'),('820d2c96817b7bb7d463d9190ba1850da970eeaf67aed2be54556fe90bf45d4ab470d681cdf2b421',2,1,NULL,'[\"user-app\"]',0,'2023-09-16 11:00:33','2023-09-16 11:00:33','2024-09-15 06:00:33'),('8215653379c685337928d7db2245a607126e7f1680b618308fcf8f2a96e594a7082250559152ba49',1918,1,NULL,'[\"user-app\"]',0,'2023-08-25 23:14:10','2023-08-25 23:14:10','2024-08-24 18:14:10'),('823f712cf494e1171875bce3fdba1f60d5b47f6c6bb6628d52e4424530a8a645f6e2c683e88b1f76',1680,1,NULL,'[\"user-app\"]',0,'2023-07-01 17:32:41','2023-07-01 17:32:41','2024-06-30 12:32:41'),('82522980d8cb139ea018fafc11027e571b9bb0f5523f4cec470050e8c80bbd7afb4599fef81f15ee',1244,1,NULL,'[\"user-app\"]',0,'2023-04-11 03:17:17','2023-04-11 03:17:17','2024-04-09 23:17:17'),('8262bc92b76d4c15dce67b1f849577755861fc0a78ac651f72b944c72108743d5ec1868424b6a62f',46,1,NULL,'[\"user-app\"]',0,'2023-02-20 22:50:52','2023-02-20 22:50:52','2024-02-20 19:50:52'),('82649802c506f0e6b0115f0fa32c09fa440aa9c001c7def143de9bf01189513f26265bfc7fd488ea',1513,1,NULL,'[\"user-app\"]',0,'2023-05-29 02:51:30','2023-05-29 02:51:30','2024-05-27 21:51:30'),('82695a099b5d645ce6867b3d06adc5be5eeb747d32c9328c561664f2878256ba533b3467117db2d5',2,1,NULL,'[\"user-app\"]',0,'2023-09-20 00:53:58','2023-09-20 00:53:58','2024-09-18 19:53:58'),('82859b83425af738944baa6ee34cc2d60a3832c0f093eb1c59379a10deecadeeeefb85a2eb738572',1846,1,NULL,'[\"user-app\"]',0,'2023-07-31 22:19:57','2023-07-31 22:19:57','2024-07-30 17:19:57'),('829fb98d3849c0693d0a690fce1d6cf2cac5d6a03b27918057f8a6c2326ca708c5b6732ac14f5d94',2,1,NULL,'[\"user-app\"]',0,'2023-08-12 00:57:16','2023-08-12 00:57:16','2024-08-10 19:57:16'),('82ad69f6a3128a11c5ecd2aba09e387f88e1ef46b5702120a90127322795c7493720f895ba37f1d9',1143,1,NULL,'[\"user-app\"]',0,'2023-03-12 23:32:02','2023-03-12 23:32:02','2024-03-11 20:32:02'),('82beea8823bb2aa01c256e10f20412b2d5d205e83dff1f05d20e7f6d4eb1cd44b32a62d75d71a6a9',834,1,NULL,'[\"user-app\"]',0,'2023-09-06 17:32:24','2023-09-06 17:32:24','2024-09-05 12:32:24'),('82d108c3851ba8112c3a77365b3859ad3bbcd8f16c9d65e2f662b3cda537cb35281e50b7d278c7ed',834,1,NULL,'[\"user-app\"]',0,'2023-02-01 15:01:29','2023-02-01 15:01:29','2024-02-01 12:01:29'),('82dadd22c04fe80661ea9eef7a951d665572c8b9ad0cc17d8fd333ef1d59bb137af5d9745e213ac3',385,1,NULL,'[\"user-app\"]',0,'2023-10-03 16:45:04','2023-10-03 16:45:04','2024-10-02 11:45:04'),('82ebecdcd36e229dfa9a2393240d923a3a682a53ccc91ff626eca48f1890add7f4d990586d9e58e3',305,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:57:28','2023-01-25 15:57:28','2024-01-25 12:57:28'),('82f87df952a52e6b832a5c241dd1af80558e2b16f3dd13fa86b1441cba69380ac75ba7c239985700',2,1,NULL,'[\"user-app\"]',0,'2023-09-10 21:46:25','2023-09-10 21:46:25','2024-09-09 16:46:25'),('82faf24d9729ac6d6e575a3932f5626fc025bd976f3fa3fb078ca573baa11cb0af237d8baf98d63e',477,1,NULL,'[\"user-app\"]',0,'2023-09-09 01:20:37','2023-09-09 01:20:37','2024-09-07 20:20:37'),('831744c73297c5d990da895fdafa96fcbe8a695aec3a22ce79b23630bfcaebc726954c7303955c14',2,1,NULL,'[\"user-app\"]',0,'2023-08-13 14:17:13','2023-08-13 14:17:13','2024-08-12 09:17:13'),('831c552c16b5886a9003733b2c2f12066228c8ab948b94ce7d75db556a2b28eb045333dab3e7a0d0',2,1,NULL,'[\"user-app\"]',0,'2023-04-23 16:22:21','2023-04-23 16:22:21','2024-04-22 12:22:21'),('8320d5f96e647f8479bb70470e7c11aa59535e6df9272ceb3c0f8b5bf0651477f100923e4f5812f4',937,1,NULL,'[\"user-app\"]',0,'2023-04-03 22:15:37','2023-04-03 22:15:37','2024-04-02 18:15:37'),('8327f39de27f9acc65e61fcca24b904e5beded5e5bfb7a08f364d6e89b7ec44a270cc655baf6eecb',1933,1,NULL,'[\"user-app\"]',0,'2023-08-31 00:28:32','2023-08-31 00:28:32','2024-08-29 19:28:32'),('832ae7f24e06e31f33724d466defdd1a574706b79944befb59a7b32174dafc2d399a2f3dc21013b7',2,1,NULL,'[\"user-app\"]',0,'2023-07-04 13:33:58','2023-07-04 13:33:58','2024-07-03 08:33:58'),('832fd1578bce226b63657b6e3c7fbdc0bef0158f3c1c31b57fdf30c6b5b89d909628de5e5c392cc2',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 16:14:51','2023-09-04 16:14:51','2024-09-03 11:14:51'),('8358d8a3fda574c22391df17638227c67d8b4862ff70a6c0b686dfc8b670f6926b7112c2f4d94485',112,1,NULL,'[\"user-app\"]',0,'2023-02-25 20:48:43','2023-02-25 20:48:43','2024-02-25 17:48:43'),('835903c584187121b34cc31ab7a7616938093ed498ca497f4ea2c545391d092f025c76c556f6e9be',106,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:08:41','2023-01-25 11:08:41','2024-01-25 08:08:41'),('83619bd498c9da1d947526cdabfc35a778fa7195ebf9e521922a111d30c007778b429452f2b0b62d',114,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:37:13','2023-01-25 18:37:13','2024-01-25 15:37:13'),('83aeb1e3493cf3d0be90a9fe8763c6aa72fe9e2db135dcb977f7487d72a9af1705f9c92c425da92a',1765,1,NULL,'[\"user-app\"]',0,'2023-07-14 20:05:41','2023-07-14 20:05:41','2024-07-13 15:05:41'),('83b4cf10d1f51d446b7f2fa658740b0e51bec307f0315f627bd8f8b3078e015471fe9369d322ceb0',874,1,NULL,'[\"user-app\"]',0,'2023-02-07 20:34:02','2023-02-07 20:34:02','2024-02-07 17:34:02'),('83bc03336cbe9b5bb3fd469c884e66c5ae99f42ac2dc5cb7209bf46605f7dd5b6084e892e7118777',1873,1,NULL,'[\"user-app\"]',0,'2023-08-10 20:07:15','2023-08-10 20:07:15','2024-08-09 15:07:15'),('83d7129bfb490f1b9c1507f980807904533b0a8b50957e8de0f2013dcdab97fdb7a7bcc2e2c80a72',5,1,NULL,'[\"user-app\"]',0,'2023-04-13 19:47:04','2023-04-13 19:47:04','2024-04-12 15:47:04'),('83ddb622ae0b6cafcb63a81cf71d35e2d5d1e491c79066c03924819b385c7fad1d5a96050c051877',343,1,NULL,'[\"user-app\"]',0,'2023-02-20 20:46:27','2023-02-20 20:46:27','2024-02-20 17:46:27'),('83de592a8675c4206a323e9845c0d21ab2dbc19075e10f84ff019431c502351a253d01c9c3354512',734,1,NULL,'[\"user-app\"]',0,'2023-01-26 14:52:54','2023-01-26 14:52:54','2024-01-26 11:52:54'),('83e0762085976fedf5844f227e1e2fc3a5c33a2a3492227555dd5a913034cf1805b83a82c5a39dff',1846,1,NULL,'[\"user-app\"]',0,'2023-07-31 22:22:13','2023-07-31 22:22:13','2024-07-30 17:22:13'),('840b2b9cbab37ec81e385667deb22df3ed49334e8e5980c89d2177632412399de0c238b66730f126',2,1,NULL,'[\"user-app\"]',0,'2023-07-28 14:29:13','2023-07-28 14:29:13','2024-07-27 09:29:13'),('841198a1300270a3db1c6904c01035f8258137f73703227f6b995832573ad2bb8ddf886cd15c8940',1943,1,NULL,'[\"user-app\"]',0,'2023-09-03 06:11:45','2023-09-03 06:11:45','2024-09-02 01:11:45'),('841b2ac8cb176f3cc7531f69e95c9d7b4853ba347451bd2fd71755edd85f5b568da068287c2cbf65',303,1,NULL,'[\"user-app\"]',0,'2023-09-26 15:48:09','2023-09-26 15:48:09','2024-09-25 10:48:09'),('844cac4bd6c31a350a70a60fcebdf1efec8bd00c0233204e26a14e77dc817a47b49e3e3238042c60',1028,1,NULL,'[\"user-app\"]',0,'2023-09-05 18:53:44','2023-09-05 18:53:44','2024-09-04 13:53:44'),('844e49f1fe1e380dbf7213e3f80edaf358d12e054be67dc445930264a55436d2f82e9d0fd5fa3005',101,1,NULL,'[\"user-app\"]',0,'2023-02-06 00:14:03','2023-02-06 00:14:03','2024-02-05 21:14:03'),('8454e6cb4bd68f4bfd05185949b6c20c5a5d4a7518da067fa2f44c6bc81076018d79e2ff3ec73810',1566,1,NULL,'[\"user-app\"]',0,'2023-06-14 22:09:38','2023-06-14 22:09:38','2024-06-13 17:09:38'),('84586fe4491072648083e32c2c65e29e90b71e75ef8f5e6909ff0985fdcecfdd4fb1914a962aaa60',2073,1,NULL,'[\"user-app\"]',0,'2023-09-30 18:13:09','2023-09-30 18:13:09','2024-09-29 13:13:09'),('84658133ded203b494b0c7afbed2c2eafe2411bba3f121c7c3d1ed3ce0d253b2003080ba4c764115',259,1,NULL,'[\"user-app\"]',0,'2023-04-13 21:34:37','2023-04-13 21:34:37','2024-04-12 17:34:37'),('846dc560aafd03c02a311c802f7ae2400d90d0d84bb03c9a25ba66de693e96492b01f0fcd5ce55d6',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 13:27:52','2023-01-26 13:27:52','2024-01-26 10:27:52'),('847ba1884ed7ce8d0706821d492196cca4f38a18df2cc7de91823d262e3f21caa0af032b3343bbbc',995,1,NULL,'[\"user-app\"]',0,'2023-02-20 13:00:56','2023-02-20 13:00:56','2024-02-20 10:00:56'),('847f66d95a1757a86d52535a497cd1f74e8be280d9a677434148eac230d271e57727a2888f73348e',2,1,NULL,'[\"user-app\"]',0,'2023-05-15 21:06:27','2023-05-15 21:06:27','2024-05-14 17:06:27'),('848bf50126dc1954d0a5f5349484d490f3dccf8ecfdbba0da826759ef1e33853abc8170656534c46',1763,1,NULL,'[\"user-app\"]',0,'2023-10-03 21:00:14','2023-10-03 21:00:14','2024-10-02 16:00:14'),('8494a92b72be002933d08dd763929b852da0e2dff44082dc7c7ee7f28f18bc8ddf857b3f32bd9a2b',1782,1,NULL,'[\"user-app\"]',0,'2023-08-02 02:15:21','2023-08-02 02:15:21','2024-07-31 21:15:21'),('84b6fe1ed0ff0e0536a36b669c0953966853f010c14d74c820d76fda1e4f4fc9ef2933dd34a592ac',2,1,NULL,'[\"user-app\"]',0,'2023-07-27 17:33:56','2023-07-27 17:33:56','2024-07-26 12:33:56'),('84d35a88a7bbc470e790cfc655e344d94233226b1071fe03ad12f74ae6e5e6c8b56a3f6b53efc0b2',2,1,NULL,'[\"user-app\"]',0,'2023-06-17 03:07:30','2023-06-17 03:07:30','2024-06-15 22:07:30'),('84e335abd17f314646ae93d346b0ba2155cf10c2eb88b79cdc77f3b50b988cb134569041627493e7',2,1,NULL,'[\"user-app\"]',0,'2023-03-17 16:42:00','2023-03-17 16:42:00','2024-03-16 13:42:00'),('8502705ef6aa10a92284338afa0ac1684f363d3e02897991683f3f36d91d8bc2ea3cfa1413cf0b41',1795,1,NULL,'[\"user-app\"]',0,'2023-07-23 06:47:57','2023-07-23 06:47:57','2024-07-22 01:47:57'),('850c0b46195290479ed456f85fdf8155f7d7b6498b8b2ae7d16fa990b1bf1517d111ef738039dbfb',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 20:48:37','2023-09-18 20:48:37','2024-09-17 15:48:36'),('851aebebf625e748ae218ff1ca05737e155371bc9ff837fb487ef0ff80e41f774a49780511e2f41f',1037,1,NULL,'[\"user-app\"]',0,'2023-02-22 18:37:36','2023-02-22 18:37:36','2024-02-22 15:37:36'),('851f0275c625591ab3c25a4ca8dc9ac5354e2144045ef978d16229fb171ebd9820624c027291ff5e',2,1,NULL,'[\"user-app\"]',0,'2023-08-27 22:10:18','2023-08-27 22:10:18','2024-08-26 17:10:18'),('8520b024eacd03e90b2d8967e391f26d68d65fadbef8c9a65c9473fe3b29eabccfc70c2f11987c49',1046,1,NULL,'[\"user-app\"]',0,'2023-02-22 22:17:41','2023-02-22 22:17:41','2024-02-22 19:17:41'),('8520eefa1fde4e03020f99ea91a3a09ff2e4d5a79b7c1086b412f738506be6e85828fd0524af9f73',1411,1,NULL,'[\"user-app\"]',0,'2023-05-24 15:46:07','2023-05-24 15:46:07','2024-05-23 10:46:07'),('8530ef980b567ef0d5194e5b7b85666e0b5e3ba1c877e18a89ba151f2fec5630932b31c012942b77',1711,1,NULL,'[\"user-app\"]',0,'2023-07-07 00:31:33','2023-07-07 00:31:33','2024-07-05 19:31:33'),('856899c6308429b4d542fa1c1cd2b89a9233a9c9534b2481a6991db6bc49f77c1a2ee778b83185fe',2,1,NULL,'[\"user-app\"]',0,'2023-05-14 18:11:17','2023-05-14 18:11:17','2024-05-13 14:11:17'),('85af92e614d91854aea7b8e262220d3ff2e0f835503504e22f8746905b4eca963d1b41c8c55680e8',2,1,NULL,'[\"user-app\"]',0,'2023-03-08 17:36:26','2023-03-08 17:36:26','2024-03-07 14:36:26'),('85b3b6338a75d284d2654047b7e5a1dcfddacd8f446d4ab9e9156da3bfedfae9cf0fabc76a8fc098',1538,1,NULL,'[\"user-app\"]',0,'2023-06-17 21:53:34','2023-06-17 21:53:34','2024-06-16 16:53:34'),('85b3fed372e6ae437ea7870fff32a8b4cf7e4ace96fd4a60766447277213a739dfcbdfb24a36f851',138,1,NULL,'[\"user-app\"]',0,'2023-02-04 11:35:32','2023-02-04 11:35:32','2024-02-04 08:35:32'),('85be2acbe0923542a05e834b311759c81499023a3a520a578f87fed64aaca2737126229c94240121',1107,1,NULL,'[\"user-app\"]',0,'2023-03-05 12:12:53','2023-03-05 12:12:53','2024-03-04 09:12:53'),('85c92788cbb35d19874ffef7cc915595d2071f38c601c4c22dc181fa29da3b8d366e0a0710a579da',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 00:21:17','2023-07-17 00:21:17','2024-07-15 19:21:17'),('85e2f4ede1753475be400871bb10f9e33242e42475613cf69994a821b7ed563b5c026b63cce6d4ef',2085,1,NULL,'[\"user-app\"]',0,'2023-10-03 17:43:45','2023-10-03 17:43:45','2024-10-02 12:43:45'),('85fc2bdaa2ca3193c7808b39abfec7381ba836e5c8d3a4d182e7c0169d130309ce4e69a7c4246fd5',1675,1,NULL,'[\"user-app\"]',0,'2023-07-01 02:54:34','2023-07-01 02:54:34','2024-06-28 21:54:34'),('86103e404b133d7a272dd9b41804b1d3b11757ff09b1bec5456e0b0188a352cfa3129c4dd26f0406',67,1,NULL,'[\"user-app\"]',0,'2023-01-30 07:51:29','2023-01-30 07:51:29','2024-01-30 04:51:29'),('86187c97b227cc24f0174277c48d5d0262008eb06ff7927742e6bb99fbb74558077c101f76bbefb9',2,1,NULL,'[\"user-app\"]',0,'2023-05-17 23:59:59','2023-05-17 23:59:59','2024-05-16 18:59:59'),('86210e9dde602158899bdbf850201ec98d0e3a3acae2b3fb74d93a8737508bbae3497927972169be',963,1,NULL,'[\"user-app\"]',0,'2023-02-17 16:18:46','2023-02-17 16:18:46','2024-02-17 13:18:46'),('862a18e545e4f2cafdac90dc65d5ad9972926b7d2e5c79d22d26961cdd04698a2ec981618c5b08ac',1005,1,NULL,'[\"user-app\"]',0,'2023-02-21 15:15:03','2023-02-21 15:15:03','2024-02-21 12:15:03'),('862c5933cda6254d90ab56a17b53b9bdee839bce099aa9f4816d95951d224e7b41babe864c200f09',1154,1,NULL,'[\"user-app\"]',0,'2023-03-13 23:11:27','2023-03-13 23:11:27','2024-03-12 20:11:27'),('864b7cfbb2aa95ee7092dfa7c94e97f4ff224193c5f7f6b3b89e98d7f3d5a84e203058c67c648667',1924,1,NULL,'[\"user-app\"]',0,'2023-08-27 21:04:12','2023-08-27 21:04:12','2024-08-26 16:04:12'),('8659a4fc146c5795c9b4c8ef039688d849c6c7085f4b39033cee3113e31f2bda8a0781ab8487394c',360,1,NULL,'[\"user-app\"]',0,'2023-03-05 17:37:54','2023-03-05 17:37:54','2024-03-04 14:37:54'),('865f22ef25ecf869335025273c31d92702875dcae3b4106353f5ccb63e4419fdc0d470157abf4395',1189,1,NULL,'[\"user-app\"]',0,'2023-03-24 19:08:58','2023-03-24 19:08:58','2024-03-23 16:08:58'),('866c4a26aa576f3eff5ef0832572c151755be17f71f2ec41cf649717f3f856b3883e464f94e8d0d6',1854,1,NULL,'[\"user-app\"]',0,'2023-08-03 04:13:22','2023-08-03 04:13:22','2024-08-01 23:13:22'),('8672cca919b410b272c75e3affc64594294c5dbbbb652ea54fdb9f6ed045d30e85392d95a093fce6',2109,1,NULL,'[\"user-app\"]',0,'2023-10-07 02:50:18','2023-10-07 02:50:18','2024-10-05 21:50:17'),('8681eea828cc83f3d772977c04c36594c04e58daf3baa913f8c8df026933122bcdeea598253e5269',8,1,NULL,'[\"user-app\"]',0,'2023-07-28 14:17:40','2023-07-28 14:17:40','2024-07-27 09:17:40'),('86988cc36cd96be56ed694d4b9799556a7055c3ebfdb8cabbc173eff29f588b25e43b6370f211b3f',242,1,NULL,'[\"user-app\"]',0,'2023-07-01 00:23:20','2023-07-01 00:23:20','2024-06-28 19:23:20'),('86988faf7f42ceb5da81abc2d0495e89f8b43fdf44bf1daa98b040ae0bc752e198f81b91b62756bc',1826,1,NULL,'[\"user-app\"]',0,'2023-09-07 16:46:12','2023-09-07 16:46:12','2024-09-06 11:46:12'),('869b9d6d2f1ba4a5c820a08244a90df1a7e68ecb0f6950d8790ef01a21ed2d0f5b7d640bf972ad5b',1404,1,NULL,'[\"user-app\"]',0,'2023-05-29 21:15:18','2023-05-29 21:15:18','2024-05-28 16:15:18'),('86a2e2b6c509922de2794b0dcf9e61e0881ff32321e9c0b2ca28a3acbb4097ad7a3bb4dce66bbf48',1816,1,NULL,'[\"user-app\"]',0,'2023-07-26 01:40:54','2023-07-26 01:40:54','2024-07-24 20:40:54'),('86c87e21aea4a476697a09f0893bf5fe42ff22c644cb7e66a173c5a9ee245db07a7dc704da11cc6b',408,1,NULL,'[\"user-app\"]',0,'2023-03-07 22:24:02','2023-03-07 22:24:02','2024-03-06 19:24:02'),('86ccb25ecd3c327a45492a78eb2c0ce7aabd251ea6819470f35f96923169e49325242c649ce15213',920,1,NULL,'[\"user-app\"]',0,'2023-07-06 16:12:30','2023-07-06 16:12:30','2024-07-05 11:12:30'),('86d5871baeb98cfb54decf0ab7675b09f13f60f0c25a37c83af84437060b6d6c4fa6a7bcc98186b8',89,1,NULL,'[\"user-app\"]',0,'2023-01-25 09:44:44','2023-01-25 09:44:44','2024-01-25 06:44:44'),('86f4256f45faea6983e7af0633b52af67687bd7b6d74fea0cc3ca3fbcae01ddda1e945182be93bbb',1563,1,NULL,'[\"user-app\"]',0,'2023-08-26 11:53:30','2023-08-26 11:53:30','2024-08-25 06:53:30'),('86f4bfb766e52273ceaefa177f22b3ba521825cdf993f9aaffccde795eb0f25a6f1ae5055091d964',1884,1,NULL,'[\"user-app\"]',0,'2023-08-16 04:20:03','2023-08-16 04:20:03','2024-08-14 23:20:03'),('8706513791c535f109e5d3155f913d5cc498c47ebbd26a49c0f330a3244e29833f0f86307a332abc',2,1,NULL,'[\"user-app\"]',0,'2023-08-09 21:23:44','2023-08-09 21:23:44','2024-08-08 16:23:44'),('870efca2189c375f640449ac74650d445433b408c23a707bbc86516b4540d0a2bef24e1d634413ed',812,1,NULL,'[\"user-app\"]',0,'2023-03-27 16:05:27','2023-03-27 16:05:27','2024-03-26 13:05:27'),('8710abf7dd3b49963f356bfe019b47d5d13d753f6bf0f8c84c4dd8c5e69063b9513a2d0902c8c6b4',1195,1,NULL,'[\"user-app\"]',0,'2023-03-25 15:20:54','2023-03-25 15:20:54','2024-03-24 12:20:54'),('87179412729b331b5b865810db17a70ffbc57bc365743cc0ed67f92636021564582920f95e7afc37',145,1,NULL,'[\"user-app\"]',0,'2023-01-26 10:38:06','2023-01-26 10:38:06','2024-01-26 07:38:06'),('8745fc62b5e454ce8844f8ed25bfd816650af70b7e045ac29851bd36fd1722bf34be87dfeb53edf6',1399,1,NULL,'[\"user-app\"]',0,'2023-05-19 02:35:39','2023-05-19 02:35:39','2024-05-17 21:35:39'),('878401c309fc9257d5c9d5480c87b1a9fcd3839ef4689f0f04029c99d5e43d604ea7eb77a2a4a81f',2,1,NULL,'[\"user-app\"]',0,'2023-03-30 21:33:46','2023-03-30 21:33:46','2024-03-29 18:33:46'),('8787a0080eb2e39805498f42591ae4ca840749b5352d83c91763f9c385b9258b12f3a73eb8f49121',1587,1,NULL,'[\"user-app\"]',0,'2023-10-07 10:45:03','2023-10-07 10:45:03','2024-10-06 05:45:03'),('878ef7fe5a37ba83658355fef8f897ee59e3a5087481b02b14cf3c645e5c165e52a046faaec8c2a8',756,1,NULL,'[\"user-app\"]',0,'2023-01-27 13:45:46','2023-01-27 13:45:46','2024-01-27 10:45:46'),('87a5451ed92d2134015256a7d69c025de5297a0cd5d4be42b702e7ecf1d41a6c3f8952c5966bd910',1163,1,NULL,'[\"user-app\"]',0,'2023-03-16 12:24:36','2023-03-16 12:24:36','2024-03-15 09:24:36'),('87c57d41a51d3774cd6b265ba036ae52703ffeca8b908cbe44c1e61159d337a76f64f904be49ebaa',2,1,NULL,'[\"user-app\"]',0,'2023-08-21 01:21:52','2023-08-21 01:21:52','2024-08-19 20:21:52'),('87c655da43990b699432fe849718852392d9fc1825627d5db43c41657a1265176bcf8130ee97e71a',2,1,NULL,'[\"user-app\"]',0,'2023-06-15 21:07:59','2023-06-15 21:07:59','2024-06-14 16:07:59'),('87e044315e10524c1d7a85bcc3cc1a6f16bb1252af2e008fb98cad6e38c131669eead17b5bc56189',481,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:25:41','2023-01-25 16:25:41','2024-01-25 13:25:41'),('87e3a3e153aa5e1e62caa3ffd860cf84bae0199b83258980c6308bcb8e9e9a7bd68d9278e7b17c9e',270,1,NULL,'[\"user-app\"]',0,'2023-02-04 17:02:41','2023-02-04 17:02:41','2024-02-04 14:02:41'),('87e7f090fe390e86d8b44bdef6bb7dfb1329bd7b96fe601ac461a9fd3500098f3901e671da42d04b',2,1,NULL,'[\"user-app\"]',0,'2023-09-12 23:58:00','2023-09-12 23:58:00','2024-09-11 18:58:00'),('87f1d83a1b1d58e02b7c058f031a74f3215d10d6c0c89788a47b775888d012fb42102e916ac069a7',2,1,NULL,'[\"user-app\"]',0,'2023-04-01 13:46:00','2023-04-01 13:46:00','2024-03-31 10:46:00'),('88031bd6f0c3a56c2aeee04e2f6b7fcd87e17dbc8ffd3f4822cde66dcce203d1bd16a3836a9dd5c8',577,1,NULL,'[\"user-app\"]',0,'2023-02-06 17:19:49','2023-02-06 17:19:49','2024-02-06 14:19:49'),('880ba5c6d4a612112847b7edb69535e41c0ca6be436028df6b045f8d7166cca1e4db7acceeb86fdd',1516,1,NULL,'[\"user-app\"]',0,'2023-05-30 22:10:40','2023-05-30 22:10:40','2024-05-29 17:10:40'),('8817924cbf94355ebbad8b04af1f6f4e853142103af71199a81ff50bfd6e01e244d59ab68874b92d',1017,1,NULL,'[\"user-app\"]',0,'2023-04-19 19:13:37','2023-04-19 19:13:37','2024-04-18 15:13:37'),('882581ff15d4f1ee0a7f3f4814b2f36c92fc9300a86e54f09d4892b8e5a8c5bbfa4b5d93d88c9d61',921,1,NULL,'[\"user-app\"]',0,'2023-02-26 00:58:38','2023-02-26 00:58:38','2024-02-25 21:58:38'),('8832315b263064fb92e668912f70dded13607675b4a51e7a61519fdb7a8e549b2b88109b7ce69beb',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 20:47:55','2023-10-05 20:47:55','2024-10-04 15:47:55'),('8844b29cc6658720bb8c739a81bc9e9587e59db780cdc13a3e9abd4727d666e67673c2430b02fd44',832,1,NULL,'[\"user-app\"]',0,'2023-03-30 11:58:35','2023-03-30 11:58:35','2024-03-29 08:58:35'),('8859cee3300fac064ad8665e25ec5267bf69aae06ef41dcfef1b3cffade7dfcb608fafb8bc86b8f9',1523,1,NULL,'[\"user-app\"]',0,'2023-06-07 22:41:52','2023-06-07 22:41:52','2024-06-06 17:41:52'),('88600ceb6ad9c199cbfe6024daddde8c4bfbddf2b8a8c370bace609863a07335b7534c5a28247e69',1932,1,NULL,'[\"user-app\"]',0,'2023-08-30 20:24:15','2023-08-30 20:24:15','2024-08-29 15:24:15'),('88844513cf4d31f6ed3e92983c57c8e78060cf45febd1acea34b3f18e49c4c12b94c6259d78597d2',1709,1,NULL,'[\"user-app\"]',0,'2023-07-06 20:45:50','2023-07-06 20:45:50','2024-07-05 15:45:50'),('8885f886800cf796112fa3f1377b0e022bb60de62f91057b691fd8ea68594d02e9be3a28119527c5',1575,1,NULL,'[\"user-app\"]',0,'2023-06-17 02:55:27','2023-06-17 02:55:27','2024-06-15 21:55:27'),('888792eb9a50d7da0a1c2cb66be5092a24bd6b8d75906289ca62ba344a68f926ca04376c8f53a458',215,1,NULL,'[\"user-app\"]',0,'2023-09-08 20:24:44','2023-09-08 20:24:44','2024-09-07 15:24:44'),('889826a226d3c0986fa3b14e11ce851a1a063c6cfbb8546217e068377bc2d47e7b79c9bd5e26257d',1148,1,NULL,'[\"user-app\"]',0,'2023-03-13 11:39:58','2023-03-13 11:39:58','2024-03-12 08:39:58'),('88bad50fab7ed290d142bd81edbc8ca9abdcc3be302f63fe5ceb3bfcb780653cb164be0f8ca2d255',1054,1,NULL,'[\"user-app\"]',0,'2023-04-17 18:15:18','2023-04-17 18:15:18','2024-04-16 14:15:18'),('88d67c75e97251af40d266d9cca48f51102cee27be00309e0bc47196976009aaf9a7772956299650',2,1,NULL,'[\"user-app\"]',0,'2023-04-23 20:46:18','2023-04-23 20:46:18','2024-04-22 16:46:18'),('88e02b58de4c8e9f6b913e39d314bcb94e2e6c13587ba6ce8192a321af7365cd5f8ade51b9a0ce97',1466,1,NULL,'[\"user-app\"]',0,'2023-06-19 22:56:05','2023-06-19 22:56:05','2024-06-18 17:56:05'),('88f7f1250185dd117eb85801c25f6086bb97f91c9c50289316081c18366b52817cba8b66f24a8c85',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 16:01:35','2023-01-26 16:01:35','2024-01-26 13:01:35'),('89179c1dd05d7156258086013e90f55f6e763027275f4ed6de45c24b2d70036c114f387ba457feb0',2,1,NULL,'[\"user-app\"]',0,'2023-05-07 13:21:29','2023-05-07 13:21:29','2024-05-06 09:21:29'),('892cc9a91e318ecc058d377054f9316930d3e473baa01b1e7a125976403f281f53235f9cdbffb35c',1054,1,NULL,'[\"user-app\"]',0,'2023-02-23 17:03:40','2023-02-23 17:03:40','2024-02-23 14:03:40'),('893b2019ca3edecaa7b71075e214b6770abfaefa4bdbf0374424f7e5a9e31e4a37ea68e6c14781c6',732,1,NULL,'[\"user-app\"]',0,'2023-10-07 05:48:55','2023-10-07 05:48:55','2024-10-06 00:48:55'),('894bccc5c2a7f604ad9ec487513f462fc4b9a3796d1db764504398e889b33543a95685077562fcf8',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 18:23:40','2023-01-28 18:23:40','2024-01-28 15:23:40'),('897025bd4c0516a44388e2d5e28badfca9811b93749a30a8947794dedfb41b548babfdeff02a45e2',820,1,NULL,'[\"user-app\"]',0,'2023-09-29 13:59:24','2023-09-29 13:59:24','2024-09-28 08:59:24'),('89760ef9096f6f48612c6d21f74191cb4dd51ff12edf3c23bef2be8011c8ce763b656e479fb10fad',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 16:26:54','2023-03-29 16:26:54','2024-03-28 13:26:54'),('89888d57bae98e57e2c743ae6f4904fb9ebc13f3a0a9581d672b11e6eeb4c2a759e9f413e345bb40',2,1,NULL,'[\"user-app\"]',0,'2023-03-12 02:25:25','2023-03-12 02:25:25','2024-03-10 23:25:25'),('898c718caf04b9b8aa25f1d032e0aa8bb9d4524a007feb7af78f0155ce0514c538920f1970a185fc',1163,1,NULL,'[\"user-app\"]',0,'2023-03-29 16:36:15','2023-03-29 16:36:15','2024-03-28 13:36:15'),('89a1d3e08d18ecca79aa3e57dc206cd3457b1b8a4fedca233f70a9324dad7fb3f2c567aa10607901',1569,1,NULL,'[\"user-app\"]',0,'2023-06-15 14:45:38','2023-06-15 14:45:38','2024-06-14 09:45:38'),('89c5288ad74a22560a537d9608be6cf5c1a36621cebeaee06d95f31b8313abd4db7a635da11c455e',1056,1,NULL,'[\"user-app\"]',0,'2023-02-23 18:13:06','2023-02-23 18:13:06','2024-02-23 15:13:06'),('89f0142a0cf24bb7d53584c94e405d8308188a10bc40055e372b629bb69090c07e3f2690d7108bd3',1939,1,NULL,'[\"user-app\"]',0,'2023-09-01 03:51:22','2023-09-01 03:51:22','2024-08-30 22:51:22'),('89f26e371d6a84e2470fed2a0b385b39748178ce597f1c33d1aca40b09f9bed3e7189630791e170d',5,1,NULL,'[\"user-app\"]',0,'2023-05-11 14:49:12','2023-05-11 14:49:12','2024-05-10 10:49:12'),('8a088e59442bd27987555db3a1bac5b8036944674bfe951688ad8303b64ab5f6ae002ac7072ea4c7',167,1,NULL,'[\"user-app\"]',0,'2023-09-27 16:18:23','2023-09-27 16:18:23','2024-09-26 11:18:23'),('8a12dfa13593da966e35f2d97242cbc1101a2e1a3a815c29d62bfd082f900b6684a23c0ecd4d9d34',255,1,NULL,'[\"user-app\"]',0,'2023-03-03 19:56:41','2023-03-03 19:56:41','2024-03-02 16:56:41'),('8a156bc5f25c42f9950f2f3cb36d321b3a89a09ff8b47bd3a89c5bfc0da21abb99173165db84d2e4',1466,1,NULL,'[\"user-app\"]',0,'2023-05-27 16:01:15','2023-05-27 16:01:15','2024-05-26 11:01:15'),('8a35e36a07afd31c07f00074bba71335d92daaf83e0fd818985d668dc81f93db9ab7799e69b1e142',200,1,NULL,'[\"user-app\"]',0,'2023-10-09 01:49:25','2023-10-09 01:49:25','2024-10-07 20:49:25'),('8a4cf0222059b9881b28447ec5fe984bb95ca0bf77e1005c2cfda5a7c5e6752bf42d5d0736ed1e6e',1177,1,NULL,'[\"user-app\"]',0,'2023-03-21 19:15:58','2023-03-21 19:15:58','2024-03-20 16:15:58'),('8a58fc1f9d820efc4ca671281febea7fc18f9b1d49726c39f25d85f3dec7afe71e559ead072c2757',1952,1,NULL,'[\"user-app\"]',0,'2023-09-05 01:57:58','2023-09-05 01:57:58','2024-09-03 20:57:57'),('8a5a3a1f55f98b32d169130ae3ac178d2355e3bd1862c3e9295612a2ccc21a1669b42309b465dc05',2,1,NULL,'[\"user-app\"]',0,'2023-08-17 21:56:20','2023-08-17 21:56:20','2024-08-16 16:56:20'),('8a638f5e324c7650e688bac017f845ae9bdeb85b424552950bee46a411e729172be2f4fa02262fbf',854,1,NULL,'[\"user-app\"]',0,'2023-02-03 20:33:32','2023-02-03 20:33:32','2024-02-03 17:33:32'),('8a655f815b7fde119deebb3c2d7c003b3c21622548362db11912a64f66d1901bd6aaef6da8058232',2,1,NULL,'[\"user-app\"]',0,'2023-06-16 21:21:38','2023-06-16 21:21:38','2024-06-15 16:21:38'),('8a730cf2c24ea8a779329bf907780ef346ad204ad58abbe677966e1f2b4f4a5d64dc1935ce873e5a',1396,1,NULL,'[\"user-app\"]',0,'2023-05-09 20:32:21','2023-05-09 20:32:21','2024-05-08 16:32:21'),('8a751ddd95920b61aa11da5b7707bd73ccf538287dce1c119ce2468e978e37ace4fc2df431c4c3e2',315,1,NULL,'[\"user-app\"]',0,'2023-02-10 13:08:44','2023-02-10 13:08:44','2024-02-10 10:08:44'),('8a77a8e5debfd488eacb08172fe842a849048df6ca7d2747dd014d536b8d987e3e458f7b9276b5ee',1300,1,NULL,'[\"user-app\"]',0,'2023-04-22 02:46:19','2023-04-22 02:46:19','2024-04-20 22:46:19'),('8a7df3b0e9ecf4b18df1cdec31cb38e2e4f2f3555e553e7e213b1de797500bd369566230d8115d3f',2,1,NULL,'[\"user-app\"]',0,'2023-09-10 03:47:49','2023-09-10 03:47:49','2024-09-08 22:47:49'),('8a91f1fb392cb8ae4b71519d02670aa1b75a231512113749b467eac37712b5c0e5824ff6d51f516e',1169,1,NULL,'[\"user-app\"]',0,'2023-03-17 22:58:11','2023-03-17 22:58:11','2024-03-16 19:58:11'),('8a9a1f139959f6a3aec9a0752f39bf0c793caf31bced5fc999afedb72a932b3c1dbe910495741af0',717,1,NULL,'[\"user-app\"]',0,'2023-01-26 00:25:42','2023-01-26 00:25:42','2024-01-25 21:25:42'),('8aa9fb9a1b8e26c581bf40af5b06b00dbd3684890361a6f8bb030e47a5b7f1f47ab11418d5da115f',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 23:57:28','2023-09-25 23:57:28','2024-09-24 18:57:28'),('8aab73b65405b93fbdca7da0104620cd9e686c04ee63f918ed06a62879c6e24e94ee7e8163c32480',1638,1,NULL,'[\"user-app\"]',0,'2023-06-24 16:19:41','2023-06-24 16:19:41','2024-06-23 11:19:41'),('8abf624a11c359877449916372fc782ab95fd84196d8c2ed11b1e3b31cd710e14969a14aacad5e79',1835,1,NULL,'[\"user-app\"]',0,'2023-07-29 15:54:32','2023-07-29 15:54:32','2024-07-28 10:54:32'),('8add3c1a74f482562e8296df01381e0c89f29850ae0130bc64057c41ba6c8f3473fa0af867b20c51',1708,1,NULL,'[\"user-app\"]',0,'2023-07-07 16:34:56','2023-07-07 16:34:56','2024-07-06 11:34:56'),('8addfe378de440b63c317d14c98785aa6b41a2b1a3a803482fdd455d57dafa3d5b101251aa6ec3ab',2,1,NULL,'[\"user-app\"]',0,'2023-06-24 01:35:16','2023-06-24 01:35:16','2024-06-22 20:35:16'),('8ae718aa95b190ccc58d7ba68965d1e9b9f33e7f4b37fa9e3af8b4f4e9ceaae9ded229904710efe0',1031,1,NULL,'[\"user-app\"]',0,'2023-03-04 17:45:54','2023-03-04 17:45:54','2024-03-03 14:45:54'),('8af2eec1a0f16d4cb97d63029a875c785f05ec90074abc3e6af761a4ec9aa9e3791d79ee4111ea2c',1560,1,NULL,'[\"user-app\"]',0,'2023-06-13 19:54:00','2023-06-13 19:54:00','2024-06-12 14:54:00'),('8afde5bcc4ee90496159e219cf389ae0cbfa7eacb7fe15e020f301fb471852a785bfb907e449fa3b',937,1,NULL,'[\"user-app\"]',0,'2023-07-07 01:51:24','2023-07-07 01:51:24','2024-07-05 20:51:24'),('8b0108ad820fee153a30fb6801d4cdc2e44522d7c0feb1ac63ddf3861348b34081140e8788812f08',1363,1,NULL,'[\"user-app\"]',0,'2023-05-03 17:36:32','2023-05-03 17:36:32','2024-05-02 13:36:32'),('8b136b1a480d0019d205d1ad6724f5fef499d3940aec3a20969448f94621faf881c7158b58b70892',1465,1,NULL,'[\"user-app\"]',0,'2023-07-05 22:56:51','2023-07-05 22:56:51','2024-07-04 17:56:51'),('8b1449a2ee9efe957d5054f35b3f165fbb5cc3e19041720c3ebcc76396b381ba2b383e1168ff926f',1297,1,NULL,'[\"user-app\"]',0,'2023-04-21 23:27:44','2023-04-21 23:27:44','2024-04-20 19:27:44'),('8b2a26c5f81d7ae23d11274eea056cf35626dfa4695f6af8549c9ba815ad8bb29a389484227b62f6',1230,1,NULL,'[\"user-app\"]',0,'2023-04-02 18:34:18','2023-04-02 18:34:18','2024-04-01 14:34:18'),('8b5369962d46998f4da1f609212ce7c5352ae257331aa491336ca26bd37d40ae24394cad4ee30583',955,1,NULL,'[\"user-app\"]',0,'2023-04-11 18:44:24','2023-04-11 18:44:24','2024-04-10 14:44:24'),('8b55ff0864a56659b2c4cf016680bf4a6fcabcb497b8129165a06180185dd27f9b2f3371b309946a',2,1,NULL,'[\"user-app\"]',0,'2023-02-18 14:05:00','2023-02-18 14:05:00','2024-02-18 11:05:00'),('8b824365c7f1338df116ca4d38c84021800c5f44de0c9349e2fc974a448ae9e09ef294d4180b686c',1718,1,NULL,'[\"user-app\"]',0,'2023-07-08 02:06:02','2023-07-08 02:06:02','2024-07-06 21:06:02'),('8bacd4db89e79d4b8ac99d050ae209f50001ed3693dd026af49cba22cb2c5e0e793c98c84389d7cb',2,1,NULL,'[\"user-app\"]',0,'2023-02-12 18:20:21','2023-02-12 18:20:21','2024-02-12 15:20:21'),('8bb100e778e84c5ee60ceee17abd3fbe98c865d32f9923f94b85ddd7050b8ec7a6c8216fe909bd1d',759,1,NULL,'[\"user-app\"]',0,'2023-01-27 17:00:36','2023-01-27 17:00:36','2024-01-27 14:00:36'),('8bb418492116b38613f57187e692c8272e09166dfb9680c8e93ef16b741d3c193f5114514cfa8dfa',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:41:07','2023-01-25 02:41:07','2024-01-24 23:41:07'),('8bbd9034cc24b19fadbce687b29f36ae0584a0ef03a7e521614b5a1ad864339eb83e41ee25004799',2,1,NULL,'[\"user-app\"]',0,'2023-05-04 23:34:55','2023-05-04 23:34:55','2024-05-03 19:34:55'),('8bc12f3900e7cc6143ce7123ba54a7ab0754212d30512a59fb7858c6cadb80ea287df6c0e15bbaac',2,1,NULL,'[\"user-app\"]',0,'2023-09-28 01:11:21','2023-09-28 01:11:21','2024-09-26 20:11:21'),('8bcd5f19346395f4b82968a536f0f27fbaf6d8ee4241bf4776fccabae9772b817220a0b5a6e0b68e',1574,1,NULL,'[\"user-app\"]',0,'2023-06-16 21:24:22','2023-06-16 21:24:22','2024-06-15 16:24:22'),('8bd515f02d2ed2d21960c2185d742409a3597dfb886d9de73977cb790d260cd2d359aab5abd79a1f',2,1,NULL,'[\"user-app\"]',0,'2023-03-25 16:31:24','2023-03-25 16:31:24','2024-03-24 13:31:24'),('8bd53e2d1f58485b45b233359513e2f53ecadc32830428adea088aadff203f418efc509f616a3eb8',1534,1,NULL,'[\"user-app\"]',0,'2023-06-08 21:21:24','2023-06-08 21:21:24','2024-06-07 16:21:24'),('8bdbb62b3b1d7a0953bc47e8dc56178b201120289753c23132e50497925d0dbac40e79e44f044e1f',450,1,NULL,'[\"user-app\"]',0,'2023-10-07 00:43:55','2023-10-07 00:43:55','2024-10-05 19:43:55'),('8be38e47add1a62ae62dd921874c3cf839bfa18337ba97025870d0df9fc2cecc18179a3f2abbd803',789,1,NULL,'[\"user-app\"]',0,'2023-01-28 20:16:01','2023-01-28 20:16:01','2024-01-28 17:16:01'),('8bf793ec5a30f41807a8199bdb21ba86c09edde3b1a296cb4c84d45c2381b23477b2bed5a9b9b9d2',828,1,NULL,'[\"user-app\"]',0,'2023-09-04 19:08:13','2023-09-04 19:08:13','2024-09-03 14:08:13'),('8c12a048903774ff29c47f6feb2201fc68710a7a483330dd04443c90da76b911d5147d6fd50ee3a5',8,1,NULL,'[\"user-app\"]',0,'2023-03-04 01:03:55','2023-03-04 01:03:55','2024-03-02 22:03:55'),('8c26d197acefe0759ebad68a7f0accb6bea43051925e80b61bb08808c93807b05b6b16995963b5b6',150,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:31:56','2023-01-25 12:31:56','2024-01-25 09:31:56'),('8c3b0517a7efcd563b60793b960c694ed94d329250dd9852e25cd4713fdb8ac6ff90a8a6f30ed46c',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 16:00:33','2023-01-26 16:00:33','2024-01-26 13:00:33'),('8c42e1aaff1904c8eedee7336ed9c5fe8e8350fad04e836c4de96e2a93f4879dbda4862d9538657e',786,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:20:23','2023-01-28 19:20:23','2024-01-28 16:20:23'),('8c5c8cf1605b4ce5a23f4bc81d1dba170f671f9fd478bebe67f759500b46d034fc96548ed3dac9f3',188,1,NULL,'[\"user-app\"]',0,'2023-02-27 22:11:23','2023-02-27 22:11:23','2024-02-27 19:11:23'),('8c6d8e03d5b75b183172d1bc17b55dfce3fe1e128f05a1e14a065507d20cdbf4d91b1504076e029b',1537,1,NULL,'[\"user-app\"]',0,'2023-06-08 19:42:21','2023-06-08 19:42:21','2024-06-07 14:42:21'),('8c78a36a01bd46df0936546bd5720b6593981ef2b6a422852b62008a8963d875bd2c8b2093ae9bd5',1023,1,NULL,'[\"user-app\"]',0,'2023-09-16 14:51:58','2023-09-16 14:51:58','2024-09-15 09:51:58'),('8c794ab103e33f5b360d51925339fff4137e5d6ba9c6b4753efeff1a6ffcc77308b6a219dfe557a8',1327,1,NULL,'[\"user-app\"]',0,'2023-09-17 14:19:55','2023-09-17 14:19:55','2024-09-16 09:19:55'),('8c8326e52d50c498616487445cb9ff9957c6b4647d6343b6207d61c2d5aad2ea10b965e703078a14',205,1,NULL,'[\"user-app\"]',0,'2023-09-02 16:22:25','2023-09-02 16:22:25','2024-09-01 11:22:25'),('8c985a5734cde9af48306348afe8961f4b6e50ee94cd9cf46490a1acc175f3559feecff8f1732100',1568,1,NULL,'[\"user-app\"]',0,'2023-07-07 14:02:10','2023-07-07 14:02:10','2024-07-06 09:02:10'),('8cb1397b3f342b93ca78eb632b3430509aa14c3e0a50da4e227d488f9363c703da349bd085d56f49',857,1,NULL,'[\"user-app\"]',0,'2023-02-04 16:03:54','2023-02-04 16:03:54','2024-02-04 13:03:54'),('8cbb452ae8da1e42859fa3327ecbfe23ff5f7f4c4d4b5d69cc9727ff42c9c5c1235e3198c4fa352c',2,1,NULL,'[\"user-app\"]',0,'2023-09-26 17:00:25','2023-09-26 17:00:25','2024-09-25 12:00:25'),('8cbd4adc5e450a8f9d69a7130c3affd5299218cc6bd468d0a1830ea665478950857d5234d06c8069',535,1,NULL,'[\"user-app\"]',0,'2023-01-25 22:51:56','2023-01-25 22:51:56','2024-01-25 19:51:56'),('8cc180bb83469bc2f35d49c34d2ee88aa6f0cdd05acba84fc12f14297e76eeab4e55632fd2c66897',415,1,NULL,'[\"user-app\"]',0,'2023-04-30 13:14:30','2023-04-30 13:14:30','2024-04-29 09:14:30'),('8cc66cbd47fd63b7ad8704adb9ffc401aedd7f5ad3070950afbc31f4432cef2e77e07ffd8f98caf5',1011,1,NULL,'[\"user-app\"]',0,'2023-02-25 15:23:45','2023-02-25 15:23:45','2024-02-25 12:23:45'),('8ce570119e6ab819d3857f886e7fbbd80b01c30e4852af5cfa3ad953b7580f5e5fd8243739ac7c0c',53,1,NULL,'[\"user-app\"]',0,'2023-01-26 20:07:42','2023-01-26 20:07:42','2024-01-26 17:07:42'),('8cf2031bdd480454f1e9cf3c959712acff0769463aff238e13e72fa6a72ba6612c55ac3c7dd51e25',626,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:48:39','2023-01-25 02:48:39','2024-01-24 23:48:39'),('8cfdc93a749778681e7454d4406d545004a8bde056cece0b8fa21d45f96ccc1533df8261db63d3ae',1626,1,NULL,'[\"user-app\"]',0,'2023-07-08 13:53:27','2023-07-08 13:53:27','2024-07-07 08:53:27'),('8d05f88d2ecc01ee0529ef415f051aa223b70df556b122282941d8fae62ad57c54eb52d9b1c72571',1228,1,NULL,'[\"user-app\"]',0,'2023-04-02 00:20:58','2023-04-02 00:20:58','2024-03-31 21:20:58'),('8d0aa62b8e38ea5b6c671ae42db1ae55c7571132a230c3f59e16be5e9a27dd15982e4ad9bb5f2fb8',1701,1,NULL,'[\"user-app\"]',0,'2023-07-05 20:26:18','2023-07-05 20:26:18','2024-07-04 15:26:18'),('8d0f43a59cd7639ce9dd92dee7a1840b33eabfc0cd758a329cb73d1acdcf5f8934c8ff4c1fe5de6c',1352,1,NULL,'[\"user-app\"]',0,'2023-05-01 01:04:31','2023-05-01 01:04:31','2024-04-28 21:04:31'),('8d1085d97b2cb4245603e3f3325093ae4bd05f78134bcf420ee2b2588f7c6c2c6628d14e79a00cc6',271,1,NULL,'[\"user-app\"]',0,'2023-04-15 02:45:24','2023-04-15 02:45:24','2024-04-13 22:45:24'),('8d330382380c44b9808bf9e02e999d44fc0d2289391fb57baabc37dc148962e74e3e9eeb4b37f6ba',1306,1,NULL,'[\"user-app\"]',0,'2023-04-23 12:19:55','2023-04-23 12:19:55','2024-04-22 08:19:55'),('8d4c2a9e6d66c45a2dc9559bfcff06cd8bcddc27e0607a9e085922d8e4fb70b4a4508ecb60ea35a8',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 16:59:42','2023-09-18 16:59:42','2024-09-17 11:59:42'),('8d6590b7ce24072f2da0baba3e417cf011accbcd5005bc194561d75a10ee09894073291ba07352f6',2,1,NULL,'[\"user-app\"]',0,'2023-04-04 16:01:44','2023-04-04 16:01:44','2024-04-03 12:01:44'),('8d73f6b9b3182ec74fceb9615a8de14de84e3d52d59c2cda085d0d87ea9a3f36cd1a6ba8233c8632',200,1,NULL,'[\"user-app\"]',0,'2023-02-03 12:24:56','2023-02-03 12:24:56','2024-02-03 09:24:56'),('8d779563843ce0cc32debde8c8db873f98e97d7d43368b39735153811377991dfaa26887cc292272',935,1,NULL,'[\"user-app\"]',0,'2023-02-15 22:38:30','2023-02-15 22:38:30','2024-02-15 19:38:30'),('8d7909f61d2bd395566b302267319635926e9162a2fb35592cd64e85b2372498cb0e7e0fcc80679e',1763,1,NULL,'[\"user-app\"]',0,'2023-07-14 18:42:23','2023-07-14 18:42:23','2024-07-13 13:42:23'),('8d7d1c76f9ab956e89be37feb43a85922651571e1c2c05c064536cd603eb4a53b324edd23ac77a0d',1368,1,NULL,'[\"user-app\"]',0,'2023-05-04 23:42:45','2023-05-04 23:42:45','2024-05-03 19:42:45'),('8d801b7b970c715ef241473b21339950e2b24a6ef104e240f407d84ae9457a7a01b144278d834c72',2,1,NULL,'[\"user-app\"]',0,'2023-02-22 14:58:51','2023-02-22 14:58:51','2024-02-22 11:58:51'),('8d84724be476d7f4834df33d968fa97913eff83e4e1e06643280dd203079be39e64a4d1e53394555',1432,1,NULL,'[\"user-app\"]',0,'2023-09-22 23:27:51','2023-09-22 23:27:51','2024-09-21 18:27:51'),('8d9d9e2351ea543289848bdd43fa5400086fee9983afd71b5d6e9bd00cf5d7edc0d384bdcab28824',2,1,NULL,'[\"user-app\"]',0,'2023-06-26 20:52:08','2023-06-26 20:52:08','2024-06-25 15:52:08'),('8da3c2cfa165107dd2e1ee5f5d67a6abacb37b95f5733bdb2895e5dde2a3ae6f05d1004a186124ac',1696,1,NULL,'[\"user-app\"]',0,'2023-08-25 13:09:50','2023-08-25 13:09:50','2024-08-24 08:09:50'),('8da7fedeed2e411db93ba61404cfd722aa127049e71e3041e3f21df25fd45b4744234676f72239e1',1112,1,NULL,'[\"user-app\"]',0,'2023-03-13 12:42:05','2023-03-13 12:42:05','2024-03-12 09:42:05'),('8db4a350de59a4e3ccfd315aac9459bed3399295f1da99ed2dfac6357f3b3f270413c58879ddc076',240,1,NULL,'[\"user-app\"]',0,'2023-01-26 22:55:22','2023-01-26 22:55:22','2024-01-26 19:55:22'),('8db73ebb939c871f249ae566c884f4d42d2164d8cb68ec2f1665439e92287b927cb7a1d47fa46f1e',741,1,NULL,'[\"user-app\"]',0,'2023-01-26 17:49:40','2023-01-26 17:49:40','2024-01-26 14:49:40'),('8dbe31e490b8d1251aa65e909ea6a5daf295de42fb8bdcf57ce37c45a0335eed9f6b213cbd154ee9',1206,1,NULL,'[\"user-app\"]',0,'2023-03-29 15:38:45','2023-03-29 15:38:45','2024-03-28 12:38:45'),('8ded86106da689de00e71160f102c3d18520400d36244e71afe9fb07d1adcd7bbe3bfc3d0aec6289',1187,1,NULL,'[\"user-app\"]',0,'2023-05-04 20:54:33','2023-05-04 20:54:33','2024-05-03 16:54:33'),('8e344e6c2cc0a1128905cf1cb97b411a30faef5c50ac27990ecf913688d0a319553304f9bbcd5a24',2,1,NULL,'[\"user-app\"]',0,'2023-08-28 02:08:25','2023-08-28 02:08:25','2024-08-26 21:08:25'),('8e38c99fb38daa238ccce6550c4bde57914ff6762fbe60fda67627aa573630e7b6999d987990c5a0',875,1,NULL,'[\"user-app\"]',0,'2023-04-18 19:34:05','2023-04-18 19:34:05','2024-04-17 15:34:05'),('8e4604e96a0343717b9e10aea21a439bef1aac162833b96f609f55c897ec5f930d69e4bc714dc15f',8,1,NULL,'[\"user-app\"]',0,'2023-06-15 20:12:57','2023-06-15 20:12:57','2024-06-14 15:12:57'),('8e5866437aeb8510583d01c7d4e64cf6256568c4ea7794994928bfd5d92fcb0238ce11c3eea8a3c4',1883,1,NULL,'[\"user-app\"]',0,'2023-08-16 04:19:39','2023-08-16 04:19:39','2024-08-14 23:19:39'),('8e595e3f051d54bcb76ad623369b86b2dd0cb6a98fe2cdcfd022c06f3b00d0eb25a8717a6d1316b3',143,1,NULL,'[\"user-app\"]',0,'2023-01-26 01:09:35','2023-01-26 01:09:35','2024-01-25 22:09:35'),('8e6a0787f3a15457a0af1a0a23f0080d4cea9341947d7c5f801ed4e61e591b5c00d263775150c54d',1472,1,NULL,'[\"user-app\"]',0,'2023-05-17 21:01:25','2023-05-17 21:01:25','2024-05-16 16:01:25'),('8e6bcbe5d7eaa47001c84e0ce8d7e5c2cd017c4c214b5dfe180edeadcbd013f47dda8f0602bded1b',1836,1,NULL,'[\"user-app\"]',0,'2023-07-30 03:07:18','2023-07-30 03:07:18','2024-07-28 22:07:18'),('8e73d437c37c48b75cbf275f913bcebc94f7efcd9277e7722e45967028030ab59ecc0cb2b6ca4b5a',1305,1,NULL,'[\"user-app\"]',0,'2023-04-23 10:32:54','2023-04-23 10:32:54','2024-04-22 06:32:54'),('8e94f459d3268a0551a4aed0e5aea228bbd3453d92876a858b18b6c809b861d9d401541e3a54cc7f',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 03:20:31','2023-10-07 03:20:31','2024-10-05 22:20:31'),('8ea4275e4262356315e97e619528050841ee4b6e8b3101d774e4030772d797ff14fdf9e07b793ba9',2,1,NULL,'[\"user-app\"]',0,'2023-05-03 02:58:16','2023-05-03 02:58:16','2024-05-01 22:58:16'),('8eb9c45d84903d1f3ff1766647afe09c75e5709532d7027bdd9540ff6da7a4303775c45590bc325c',1764,1,NULL,'[\"user-app\"]',0,'2023-07-23 23:48:07','2023-07-23 23:48:07','2024-07-22 18:48:07'),('8ed4d6c075abda36116e23b1f24c7d34deb0ad0b50929f7a7d4d24af4df1b50fb397cef77288421d',2,1,NULL,'[\"user-app\"]',0,'2023-05-10 03:36:59','2023-05-10 03:36:59','2024-05-08 23:36:59'),('8ed611c1b894b3eb06e6dd384b7d2cd37f90ada92effd94ec91dd6ee1f78c6a944c63ae26ff720a2',358,1,NULL,'[\"user-app\"]',0,'2023-10-06 15:30:52','2023-10-06 15:30:52','2024-10-05 10:30:52'),('8ef8c3dc1249d25416d1ce7fb19e2f5bdc7fc0b4d7ef31f2b6297873fcfd295c957f605eeacca116',1495,1,NULL,'[\"user-app\"]',0,'2023-05-24 13:49:06','2023-05-24 13:49:06','2024-05-23 08:49:06'),('8f178cb96ce33a4a52d812b90982942953430e52703685a4fc46c53ec3ad00a4dad3044c363050db',1606,1,NULL,'[\"user-app\"]',0,'2023-06-20 18:58:02','2023-06-20 18:58:02','2024-06-19 13:58:02'),('8f1f874d1e883741556ea51e513353400a7e331739c6278cd5c4bc71db57fd325d0aa452a2d7a7da',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:56:23','2023-01-25 02:56:23','2024-01-24 23:56:23'),('8f2643790e45e371648ce30b05a9bda0553c56f29455807dbed720e5bee31fcb946b3c893e0447cf',985,1,NULL,'[\"user-app\"]',0,'2023-02-19 03:15:05','2023-02-19 03:15:05','2024-02-19 00:15:05'),('8f3d97c50be1d3f874b7708f4a7dc13f9edcf1283c3cbbc770c22cd1743e0a8ded5ca9d9e6c12269',1405,1,NULL,'[\"user-app\"]',0,'2023-05-09 23:45:24','2023-05-09 23:45:24','2024-05-08 19:45:24'),('8f4d35267cc1063e0c0603e619540ecdf631d3271b45b03819a2190a3a3415e95985598689e5bdee',1291,1,NULL,'[\"user-app\"]',0,'2023-05-18 03:34:08','2023-05-18 03:34:08','2024-05-16 22:34:08'),('8f5a88742b8c83369c28fa853998ce274452673699f07f1ae644ca945310cda0be4c19edbdba01cd',2,1,NULL,'[\"user-app\"]',0,'2023-10-06 18:32:35','2023-10-06 18:32:35','2024-10-05 13:32:35'),('8f5f5e01482bb8a595f95422751baa670a1f2d95c091d9129556bd078ce10e643b11e767e56f7db4',1292,1,NULL,'[\"user-app\"]',0,'2023-08-01 23:10:17','2023-08-01 23:10:17','2024-07-31 18:10:17'),('8f66e72dffc6de90aa387646ef06a49aa4bad55f478801983b93dab6a77323c02e7f702e86da8bac',1332,1,NULL,'[\"user-app\"]',0,'2023-04-27 18:16:05','2023-04-27 18:16:05','2024-04-26 14:16:05'),('8fa0450e5ae85de69f576b5cdc9a61f5deccfd8e8f40f6c0a556ba784c035a1f7a7b2457cee7048a',1449,1,NULL,'[\"user-app\"]',0,'2023-05-15 12:20:23','2023-05-15 12:20:23','2024-05-14 08:20:23'),('8fbbae2a12bd57307ea2913a50f6b4e6dfb273a617e230bbe980d617141b6816697fa93d5448417e',799,1,NULL,'[\"user-app\"]',0,'2023-01-29 19:25:50','2023-01-29 19:25:50','2024-01-29 16:25:50'),('8fc00b1a64cb406dcb867b1739c7aa6bb7c3c12ccbd2b52090846d3873b579e9a42888c8e53205af',2,1,NULL,'[\"user-app\"]',0,'2023-01-30 14:18:37','2023-01-30 14:18:37','2024-01-30 11:18:37'),('8fc94a5d3aa9268f28fce6e75dea85763f8c6e57a5ddc568bfa62b7d04b7474d1177d8ae0e0ad84a',1674,1,NULL,'[\"user-app\"]',0,'2023-06-30 21:36:19','2023-06-30 21:36:19','2024-06-29 16:36:19'),('8fc956ecaccde057d55afd3bf44a4d341f2ee12851170de08c4db5cdafc7db3da4c13206a60c6ae0',830,1,NULL,'[\"user-app\"]',0,'2023-09-23 13:05:18','2023-09-23 13:05:18','2024-09-22 08:05:18'),('8fe28c3cf7fee33becac7764c9c479fe7cf6c83d323511ef417aa6b63f74a877127c0eb8e6c76126',2,1,NULL,'[\"user-app\"]',0,'2023-07-31 13:07:56','2023-07-31 13:07:56','2024-07-30 08:07:56'),('8fef43e2e7eb2574fd01dbf1401ddfa1a56df440945cd322093b1d1e56eedcb085a5be24faf466b5',2,1,NULL,'[\"user-app\"]',0,'2023-09-24 01:50:36','2023-09-24 01:50:36','2024-09-22 20:50:36'),('8ffb9032de13a1f216b29c1cfcce019b00408f44b5f7269758bb31b5de27412acb04084c9b7e2aac',832,1,NULL,'[\"user-app\"]',0,'2023-02-01 13:58:58','2023-02-01 13:58:58','2024-02-01 10:58:58'),('9000b93832d7e7f94c9c622d989d11bd70bbd2ea90d0860b60bcf270cceba1b3494bb17346ede56b',387,1,NULL,'[\"user-app\"]',0,'2023-08-09 17:03:31','2023-08-09 17:03:31','2024-08-08 12:03:31'),('9015de97ad301719a01ce9a7e98cb17e8e38b39f9bce994172b8d695b8f52b961a5125a626c33848',86,1,NULL,'[\"user-app\"]',0,'2023-10-05 02:34:52','2023-10-05 02:34:52','2024-10-03 21:34:52'),('902bb90f74389e1132e622a3696d589776d9bb02e8b760d2bd0c8f1738d2b31d317928e3df5f222b',2,1,NULL,'[\"user-app\"]',0,'2023-03-07 10:40:32','2023-03-07 10:40:32','2024-03-06 07:40:32'),('90325d84401ee469e50e2e21258ff8dff0eefe95c383037327b38f945b07e3054a0f60012f97171d',2,1,NULL,'[\"user-app\"]',0,'2023-07-29 13:52:02','2023-07-29 13:52:02','2024-07-28 08:52:02'),('903a7ad0db06bcd989a4711e2b1d18bb3028dc087c5f908954052f6577808b639de1f56e8fdb2d9e',2,1,NULL,'[\"user-app\"]',0,'2023-09-07 03:39:51','2023-09-07 03:39:51','2024-09-05 22:39:51'),('905f35c3461890a7c284279b7ef0214171d2e4482ff9b3dd6b19269a931eae4fb5cf16261883d7bc',1588,1,NULL,'[\"user-app\"]',0,'2023-06-17 22:28:26','2023-06-17 22:28:26','2024-06-16 17:28:26'),('90631180349604ec29f4ea2d6d0166581ced03149543d77ce1e2456d359e0c27a841d706f9d67968',2,1,NULL,'[\"user-app\"]',0,'2023-06-16 18:17:55','2023-06-16 18:17:55','2024-06-15 13:17:55'),('9064f1df41d8c075b25d1ec5660263e7c96c0439cf133b36712fca5f60f2d747fe9988b86a512b04',1091,1,NULL,'[\"user-app\"]',0,'2023-02-27 19:07:06','2023-02-27 19:07:06','2024-02-27 16:07:06'),('907a3e51eeb1cc9f44bb6595265d3906ef477aa489b4fc45ca932be862c3ffd0c0a960aabbdec4da',1620,1,NULL,'[\"user-app\"]',0,'2023-06-22 15:23:37','2023-06-22 15:23:37','2024-06-21 10:23:37'),('908f071d4b717775fe7bd99cdaa369d87e77ba5816f525039fd79de8fa97f170a880dc7b6b8adec2',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 16:25:28','2023-03-29 16:25:28','2024-03-28 13:25:28'),('9093ac158711cee9c3b770a5b41147a30eed36a8326d62a164fd16756e360928d107d8e6e1ddee38',199,1,NULL,'[\"user-app\"]',0,'2023-01-28 16:52:53','2023-01-28 16:52:53','2024-01-28 13:52:53'),('909e8995d82a7fc406858e36a1535b2e2d247d0ca6735892f9594b2d3444930e3e503af48b87087e',2,1,NULL,'[\"user-app\"]',0,'2023-04-23 16:20:58','2023-04-23 16:20:58','2024-04-22 12:20:58'),('90a41f4dd4d0833131f979dd5e288801098ab444f9f0f6505eedde04a9f2f4b1571f61790ab65320',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 21:57:40','2023-01-25 21:57:40','2024-01-25 18:57:40'),('90c9e4afa1cfa11a224b71942de582070f0093c2f9a8dff36e35f11497257d0de4b87a3effffbdfe',1644,1,NULL,'[\"user-app\"]',0,'2023-06-26 02:34:55','2023-06-26 02:34:55','2024-06-24 21:34:55'),('90ccc8c4710b7cf53f7894f165cc9315522a84f016ade56916644a85fc435863a161172551e09628',779,1,NULL,'[\"user-app\"]',0,'2023-01-28 16:44:17','2023-01-28 16:44:17','2024-01-28 13:44:17'),('90d360f696b7ee63be2e818c215080889c70634f841dd3e938e51ae30a1548e20e3ee418cb1f7753',2091,1,NULL,'[\"user-app\"]',0,'2023-10-04 02:57:34','2023-10-04 02:57:34','2024-10-02 21:57:34'),('90d79cba4f787f7067e65700a5a3b4005b02e2bf04abc9e262cfac6eefc0a3b99dfacd8a4f07592b',2,1,NULL,'[\"user-app\"]',0,'2023-03-13 13:38:58','2023-03-13 13:38:58','2024-03-12 10:38:58'),('90db3b2c751d860f09996f53e9deab366c13563aab940649a2122929e31ed79797f25c2b0ed8f93d',1561,1,NULL,'[\"user-app\"]',0,'2023-08-08 14:15:30','2023-08-08 14:15:30','2024-08-07 09:15:30'),('90e6b09186317bbad447e82dc2d367b47b0b4290e53caa8e982b007b5f296852e5cf26e90049ffc2',1683,1,NULL,'[\"user-app\"]',0,'2023-07-02 22:28:23','2023-07-02 22:28:23','2024-07-01 17:28:23'),('90f464b265ec1c9cc183c1bcc7a7aea97e447224f8ad13855aa64b413397b39cd6592a6bdf8c02de',226,1,NULL,'[\"user-app\"]',0,'2023-09-24 13:45:18','2023-09-24 13:45:18','2024-09-23 08:45:18'),('910adec86e87e30e8c7996cc0b8461171ff68e485cb2b4b18f35c5db6cc552debf157c9fb0d97cc7',1811,1,NULL,'[\"user-app\"]',0,'2023-07-27 19:51:13','2023-07-27 19:51:13','2024-07-26 14:51:13'),('912582fd6c3159cf59ef4ce800af764e7931aa38034df45a0258ba2933d048be157eb065fa4fa12a',1407,1,NULL,'[\"user-app\"]',0,'2023-05-18 01:34:13','2023-05-18 01:34:13','2024-05-16 20:34:13'),('9125a8bac28f4a76fd94d7d7dbc04b2c685178fec33ff105333a049a448dcc76387d9427331d4f45',1593,1,NULL,'[\"user-app\"]',0,'2023-06-18 05:01:25','2023-06-18 05:01:25','2024-06-17 00:01:25'),('912a0fbb74b493f9c9bf19ff8b9b2faf71918ac8a070622b6da5179a956e2e34385838c2645b3da8',1098,1,NULL,'[\"user-app\"]',0,'2023-02-28 23:46:25','2023-02-28 23:46:25','2024-02-25 20:46:25'),('91396fd588ef0786be63cfe1ff9beefe8dc9506b8be1c7d9a0d5487b94c7a58d21f7da15a1e5656e',269,1,NULL,'[\"user-app\"]',0,'2023-01-26 20:14:24','2023-01-26 20:14:24','2024-01-26 17:14:24'),('91450542e84b979acd29d783fbad7e7aa75382c75c0dc41e8b80348fa0e6dbd9aa5c80388f2295c3',1046,1,NULL,'[\"user-app\"]',0,'2023-10-03 13:41:57','2023-10-03 13:41:57','2024-10-02 08:41:57'),('9154d99cf775f42e2318c44a2e07eaff93a6fb0b3a2b17f7cda4137ec30d23a27c6518a88dc47dae',101,1,NULL,'[\"user-app\"]',0,'2023-01-28 20:51:02','2023-01-28 20:51:02','2024-01-28 17:51:02'),('91562018d538e5c21a6f313e555317fe5354d0412770512ecc860d1e723da51e4c0ec59b7d8df941',197,1,NULL,'[\"user-app\"]',0,'2023-03-03 09:59:41','2023-03-03 09:59:41','2024-03-02 06:59:41'),('917907646296f3d841b359366bfd193cbbb2bcab34745663c4f85c80999d5e09a9fe66383a6f03f3',1018,1,NULL,'[\"user-app\"]',0,'2023-03-29 20:58:28','2023-03-29 20:58:28','2024-03-28 17:58:28'),('917e800286a44956709c262f8fdc997fbfd8426716612431ed74612656c12f2b23f40549a68f471c',1934,1,NULL,'[\"user-app\"]',0,'2023-08-31 01:34:30','2023-08-31 01:34:30','2024-08-29 20:34:30'),('91bcb7dc37f3ebf75cdb0f1dee11b3ce56dd738b974f56882633d8c7c4835dd62d45130b33b10b1f',2,1,NULL,'[\"user-app\"]',0,'2023-06-12 15:02:09','2023-06-12 15:02:09','2024-06-11 10:02:09'),('91c13b8bb8911e7510b92ad86b64a12c8cff381a94d24ab4331d5d5ba49791c00b800592e9da0267',1013,1,NULL,'[\"user-app\"]',0,'2023-02-21 01:33:37','2023-02-21 01:33:37','2024-02-20 22:33:37'),('91d60ec16fedcfde39f71ae0e521ca7c68ed406ef5bbd5ce2fc0dc96c61cc8c7235e109fffae1f89',1686,1,NULL,'[\"user-app\"]',0,'2023-07-03 11:00:23','2023-07-03 11:00:23','2024-07-02 06:00:23'),('91dd7256b0cfc95d05e80dc48ba6a5e1de0d478b61b32daccc5ddc533acf67884cdb21140cc368d6',781,1,NULL,'[\"user-app\"]',0,'2023-01-28 18:25:05','2023-01-28 18:25:05','2024-01-28 15:25:05'),('91dfc9428d8924dd197eef59feefdd83262b346340ebcdea621a60169f4cc8a67ff89504a8119de5',399,1,NULL,'[\"user-app\"]',0,'2023-09-27 22:53:25','2023-09-27 22:53:25','2024-09-26 17:53:25'),('91e3a27655815b46584d1e0cf9fcc61010e9793e0d1a4a13f08faab583a19d2bbf7c01af94027a46',1142,1,NULL,'[\"user-app\"]',0,'2023-03-27 16:22:06','2023-03-27 16:22:06','2024-03-26 13:22:06'),('91ed2163392664504dd69ddce517719b26480c3ae7bd0efe7f5db4d6581bc2c66f06ca9d4da5a760',456,1,NULL,'[\"user-app\"]',0,'2023-09-08 21:43:33','2023-09-08 21:43:33','2024-09-07 16:43:33'),('91ed2579bab5bd3cc0cdde6a9048cade0677fdd64c538210c8e7e84011c0cf6d074254b86209c024',1423,1,NULL,'[\"user-app\"]',0,'2023-05-17 18:09:14','2023-05-17 18:09:14','2024-05-16 14:09:14'),('920e9003156094eac1801b5f0101bff19c25b280f4bdaf10d9b2d722e73f8a006a6d72ac2f303f11',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 22:00:57','2023-10-05 22:00:57','2024-10-04 17:00:57'),('921182aab607ef3a7af3e2ee725f385f92965da96f167a5e8372f8f09c156e89a0169ebfd3e15112',92,1,NULL,'[\"user-app\"]',0,'2023-09-22 16:22:38','2023-09-22 16:22:38','2024-09-21 11:22:38'),('92378098979bc6d2a100a1249d6079be6f2b125cab699256a06c38db90615d0e3246a97179a99e8d',787,1,NULL,'[\"user-app\"]',0,'2023-07-25 03:44:21','2023-07-25 03:44:21','2024-07-23 22:44:21'),('92464c0237c1022737a506225b1bf0e47498bcf2e10eb4d9f53eee6a6df68b653ab21c98f75d40af',613,1,NULL,'[\"user-app\"]',0,'2023-02-21 14:59:22','2023-02-21 14:59:22','2024-02-21 11:59:22'),('924bdad44eda7f3e468fbc7e44df51243686d5e4d58b6d7e724e0d4c6d3b31253f1be64e141e0aaa',969,1,NULL,'[\"user-app\"]',0,'2023-03-27 19:39:20','2023-03-27 19:39:20','2024-03-26 16:39:20'),('92582f86e030dc4305014a654e8f8195a8d435c11a14a647b0850701d0fafffdd6f9274d8f9e65f3',1503,1,NULL,'[\"user-app\"]',0,'2023-05-26 16:35:30','2023-05-26 16:35:30','2024-05-25 11:35:30'),('925d6c9bdc14bd52bcbbc4de557631ab1b4fdbefc18dbd48b6b4575361ad66594e5fea99de917560',2,1,NULL,'[\"user-app\"]',0,'2023-05-30 11:10:01','2023-05-30 11:10:01','2024-05-29 06:10:01'),('926c04d683c52edbd5779382c3fa5453b1184274339593fd760ea2529c764306855fa57570c186b2',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:30:26','2023-01-25 17:30:26','2024-01-25 14:30:26'),('926d11cb047d7be28110609b4d1886f2d795e639d0c5c7622e1bf661d2de4926f3fea90e7483e888',161,1,NULL,'[\"user-app\"]',0,'2023-02-05 11:08:14','2023-02-05 11:08:14','2024-02-05 08:08:14'),('926fe85ca418316d121cc48f091a49967c23c96838d3c1530a9db74faf28cd14cc549c3c30ce6bda',769,1,NULL,'[\"user-app\"]',0,'2023-03-02 14:46:49','2023-03-02 14:46:49','2024-03-01 11:46:49'),('92753fe08cc2820456e526b261f2292702c62519733bc6c104d9e45437ea8b436d275e5ec45c0624',1492,1,NULL,'[\"user-app\"]',0,'2023-05-22 16:22:40','2023-05-22 16:22:40','2024-05-21 11:22:40'),('929993689f04766cef2c531dadc0ea9f62c7f1f8848b99f29c4cc08da571f35035e4938771aea419',48,1,NULL,'[\"user-app\"]',0,'2023-03-03 08:52:56','2023-03-03 08:52:56','2024-03-02 05:52:56'),('92a54e5cda59deea80a4102039cf12db52d8eec310e22b035d790a7832f96bffc467cfe5f1a8ca02',1444,1,NULL,'[\"user-app\"]',0,'2023-05-13 02:32:27','2023-05-13 02:32:27','2024-05-11 22:32:27'),('92af59dcc774948d69cb02390f059c7145512b7de834bb1929d4e000b17cbf723c71fd813cb8f3ed',1018,1,NULL,'[\"user-app\"]',0,'2023-02-21 18:57:35','2023-02-21 18:57:35','2024-02-21 15:57:35'),('92c5dbca7a10686d74b371845e3edb925337c7ccae391ed8b4a365751359b8c73677a0a6e6773d7a',58,1,NULL,'[\"user-app\"]',0,'2023-02-16 20:04:22','2023-02-16 20:04:22','2024-02-16 17:04:22'),('92ef24a1a23dc80b1850caacba276cf004d69ea4c403619e03c0eca1b0eaa317dc044477550e9b78',9,1,NULL,'[\"user-app\"]',0,'2023-06-16 22:43:10','2023-06-16 22:43:10','2024-06-15 17:43:10'),('92fab5f079dc0784e25d48bc9cbabc2c6e8436dcd06f258db5141c2322da88ae4c5412fa0cce1228',1325,1,NULL,'[\"user-app\"]',0,'2023-08-09 00:57:03','2023-08-09 00:57:03','2024-08-07 19:57:03'),('92fc4936a6833606b48a4708bb018cff8a2efc3e8fd071c7392bda7d08340c237b85fa910cfb8396',289,1,NULL,'[\"user-app\"]',0,'2023-04-16 01:44:40','2023-04-16 01:44:40','2024-04-14 21:44:40'),('93062b8bd12c6e88f8341d63fa885e116258752002f8a491130bdecb8e3bcbac23dae4067f869c56',2,1,NULL,'[\"user-app\"]',0,'2023-10-01 00:54:24','2023-10-01 00:54:24','2024-09-28 19:54:24'),('9312088f7acee49e0e8e7817e1db416ac97217b233e5befb80f5fcc85874e085bfaff0d5fe354e78',2,1,NULL,'[\"user-app\"]',0,'2023-05-12 18:09:01','2023-05-12 18:09:01','2024-05-11 14:09:01'),('932d6125684ca32c9061eda27d0b73f9ef09021148336ba2df214b0b0ad6acce2e5e3e63936bd366',2,1,NULL,'[\"user-app\"]',0,'2023-01-29 01:44:37','2023-01-29 01:44:37','2024-01-28 22:44:37'),('933ccde1cef8b84d9d72a2c56ceb6952fce443bcb2a84c36efb091363c8b2fc2fa9123e7dbb84c35',1947,1,NULL,'[\"user-app\"]',0,'2023-09-04 15:56:34','2023-09-04 15:56:34','2024-09-03 10:56:34'),('933d6c177b8ef07a25caa14f8db7e346e74fb2b3e40b3096306ea7b2421fb09ee256139e6f794924',1048,1,NULL,'[\"user-app\"]',0,'2023-09-10 16:02:35','2023-09-10 16:02:35','2024-09-09 11:02:35'),('9340150a471cd8aa259bd4e29128930c456b4a8a7c1f4b9446049884e26e24b9980151cf42dfce12',690,1,NULL,'[\"user-app\"]',0,'2023-06-29 14:43:02','2023-06-29 14:43:02','2024-06-28 09:43:02'),('934075a238a8680eee70ae2cdc88e8f1c8e32a28c9d6e6cf1a2d440e6ef436be60fd2bf78c7124ae',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 02:51:40','2023-09-04 02:51:40','2024-09-02 21:51:40'),('9348dd5dabdb59942a0ce256fe2033904a8aee87880e1d1303b11692f453c0a9c59051465a926b90',1520,1,NULL,'[\"user-app\"]',0,'2023-06-01 19:06:26','2023-06-01 19:06:26','2024-05-31 14:06:26'),('93539ff820fcc0932ae03fb096db83f3f8252cad377e4d61163522388a78cfb6af5120f882c6bf60',172,1,NULL,'[\"user-app\"]',0,'2023-01-27 16:23:34','2023-01-27 16:23:34','2024-01-27 13:23:34'),('937929d94f83d9dc35d609a9752466ddcc9a06d34653703f8fdf322cf76b16a33ca1b4380a6a3ee3',1698,1,NULL,'[\"user-app\"]',0,'2023-07-04 23:42:40','2023-07-04 23:42:40','2024-07-03 18:42:40'),('937fb095392e4b4a8408025eb8d53db4e31b75c4fcb33de997ac6484e5e1362d057d49ab28c2ce68',263,1,NULL,'[\"user-app\"]',0,'2023-09-23 17:48:39','2023-09-23 17:48:39','2024-09-22 12:48:39'),('938c1162d40141368f87beb9ae4d9fc9b460327f1e64a586384557c76a1870890b5eec4fe087b649',1831,1,NULL,'[\"user-app\"]',0,'2023-07-28 22:49:24','2023-07-28 22:49:24','2024-07-27 17:49:24'),('938dc861a7e85086f21a006380446c65403210bb33ddf071a793e739d6af8c965540c22182025051',2064,1,NULL,'[\"user-app\"]',0,'2023-10-09 05:42:52','2023-10-09 05:42:52','2024-10-08 00:42:52'),('93a15e6f5ace2d48b7d8f41e0446b037cc80270275e255451075b3bc792b94106d7c1edf5712ce9e',713,1,NULL,'[\"user-app\"]',0,'2023-01-25 23:28:05','2023-01-25 23:28:05','2024-01-25 20:28:05'),('93acf7848a84d14a6e3d1331ceebeede481f2bcee3a3585a939381bb2a038192cdc9f125a7ab0c7b',2,1,NULL,'[\"user-app\"]',0,'2023-02-03 16:21:56','2023-02-03 16:21:56','2024-02-03 13:21:56'),('93af0ee94d7f3294a86ac6ae4ec298730e56d37df0316d8b3518648c7ccd08c6285d1c7e67bab123',334,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:29:48','2023-01-25 11:29:48','2024-01-25 08:29:48'),('93b37d7d6951cc90d8c5d185bcd5c2be1fb9b0c10321529d2140a8554785177fbfd1802e7eacd3bd',1292,1,NULL,'[\"user-app\"]',0,'2023-05-03 13:23:23','2023-05-03 13:23:23','2024-05-02 09:23:23'),('93b5759b4c9388e856df22f6a3eb6bd1b19f8c552d0cfd63ec422e7df78432824512ae4d47ede69f',2,1,NULL,'[\"user-app\"]',0,'2023-01-27 13:37:32','2023-01-27 13:37:32','2024-01-27 10:37:32'),('93bb53267eeb2b6ddd139c8a2b4bf117980201a76b84e8a1bcef6064d35cf8936f4ab42e1c62eee7',132,1,NULL,'[\"user-app\"]',0,'2023-05-22 20:58:31','2023-05-22 20:58:31','2024-05-21 15:58:31'),('93bc2bb84499740a2f76351502d93c0e754e86cf4ad2525bd500f2e033bbe27d1cb5087368a8301a',2006,1,NULL,'[\"user-app\"]',0,'2023-09-17 18:07:48','2023-09-17 18:07:48','2024-09-16 13:07:48'),('93cf628cee10f558aa71099fac0a22785169ea185108262c81293bf0d2f748744928ef5305c6f1f0',2,1,NULL,'[\"user-app\"]',0,'2023-04-29 18:20:17','2023-04-29 18:20:17','2024-04-28 14:20:17'),('93cf82fc64d39efd05d35a13adaa53edab764e631869c418985f07c691b2cc3afa253edd32ccc8be',2,1,NULL,'[\"user-app\"]',0,'2023-04-28 00:31:30','2023-04-28 00:31:30','2024-04-26 20:31:30'),('93d90b9fdec24155053dfe76b81d5d43278589e6630708d6d61fe22e3387caa056cab0ec53ac7e01',321,1,NULL,'[\"user-app\"]',0,'2023-01-26 18:20:30','2023-01-26 18:20:30','2024-01-26 15:20:30'),('93e104795b3a76f67e5dbf272151a89d11aeac72ec397bd8049ec36c7ec1200fbde7bc8f4dea7a09',1513,1,NULL,'[\"user-app\"]',0,'2023-09-14 14:27:38','2023-09-14 14:27:38','2024-09-13 09:27:38'),('93f981ca685ca3ecf9289292f783ff3f253f99dfe4550794aa7d232a37f4f9876abfa35216a06bf9',131,1,NULL,'[\"user-app\"]',0,'2023-03-09 10:28:06','2023-03-09 10:28:06','2024-03-08 07:28:06'),('942f18cacd2b53c6ca2cc552ea59f8760dc1de7dab83b6c7626717e08d9fd2ef9559f0f672d32b44',122,1,NULL,'[\"user-app\"]',0,'2023-10-07 19:40:58','2023-10-07 19:40:58','2024-10-06 14:40:58'),('94351eb0ba679afcefc20a873946a6b18d2a1761e7a3ee34531dcc2a29ec4688b668fb7235876af0',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 05:14:25','2023-01-25 05:14:25','2024-01-25 02:14:25'),('9436ffc63bf9de4da2f03ad3030f17e7f2ca16234fdf94e0abe95ddeba204c701ae5a64ff14fe29a',1599,1,NULL,'[\"user-app\"]',0,'2023-06-19 19:41:36','2023-06-19 19:41:36','2024-06-18 14:41:36'),('9453a444fc123e5787cdd8034b98b85b1ba932169c6fb9b3abe70cd42aab31eac6ba1171b8725951',1800,1,NULL,'[\"user-app\"]',0,'2023-07-24 19:48:16','2023-07-24 19:48:16','2024-07-23 14:48:16'),('945a6b7a7ca1f697be31196da595c666fc9c348f5e0acaa685b2cc4596caed001c29c0c60534b43f',630,1,NULL,'[\"user-app\"]',0,'2023-02-05 14:21:02','2023-02-05 14:21:02','2024-02-05 11:21:02'),('9467c4b5b2f8d8f773facb5a31992861350a961c7a64062c88830202401734043917a356ec1873f9',1344,1,NULL,'[\"user-app\"]',0,'2023-04-30 02:46:31','2023-04-30 02:46:31','2024-04-28 22:46:31'),('946982ecd48595e01c274645fd880cf8483b80b6881f30ac490ff19f1611d3f6681d4dbf73dc7af0',8,1,NULL,'[\"user-app\"]',0,'2023-07-31 13:11:48','2023-07-31 13:11:48','2024-07-30 08:11:48'),('946df0447c3afc593944b0a23a854f2db3b7bc94acbcfddafd51b5e196fd1042ff795395a470d1dc',1460,1,NULL,'[\"user-app\"]',0,'2023-05-16 02:14:36','2023-05-16 02:14:36','2024-05-14 22:14:36'),('94765ac04b260c2f6d8efbd9648d12f726898e029d197c56a80aa054c419b955eaa16de610aa9329',486,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:28:27','2023-01-25 14:28:27','2024-01-25 11:28:27'),('947cf87f74d7d4ee86cff1717bdcfa2d13ff0c4da89a2c1f1cdc45f4d787f2104dabaae57b4f29fb',1996,1,NULL,'[\"user-app\"]',0,'2023-09-14 23:30:16','2023-09-14 23:30:16','2024-09-13 18:30:16'),('94800a9c65928bc4fa0d6da75aedbc635e84fd5e86fb6a704f085519914922d60418baaad4793b98',2,1,NULL,'[\"user-app\"]',0,'2023-07-16 01:38:07','2023-07-16 01:38:07','2024-07-14 20:38:07'),('9482126319049bedb9b244b94be3aa7cc4d3e72816ef322681cea8c3ab7750c1f6a2ace6118628c3',1753,1,NULL,'[\"user-app\"]',0,'2023-07-13 19:43:59','2023-07-13 19:43:59','2024-07-12 14:43:59'),('948544abba718990dc2b3dba43c4d422f2c11e96e2c3cfe798b3e05257e09ee035344625f71835b5',2,1,NULL,'[\"user-app\"]',0,'2023-09-05 14:59:32','2023-09-05 14:59:32','2024-09-04 09:59:32'),('948cf9c5bc4e1e7e2a993c0b31fb66f0d0c5acf34f52f59e1a5e80b904a09418fbf9da63b2bdaeb9',840,1,NULL,'[\"user-app\"]',0,'2023-02-22 22:45:31','2023-02-22 22:45:31','2024-02-22 19:45:31'),('94a1e2e8094c97e7e337e8ee38766b76fc3b841b7de04d3c3fb2b398e6b7f5bcb29eb85275877c8f',2,1,NULL,'[\"user-app\"]',0,'2023-08-27 21:01:23','2023-08-27 21:01:23','2024-08-26 16:01:23'),('94b31959280f214c70467d54357d2bbf9102ed29a1581a98e1f7f5c0cbefa61c6d2450be6eb6f153',2,1,NULL,'[\"user-app\"]',0,'2023-08-30 19:15:57','2023-08-30 19:15:57','2024-08-29 14:15:57'),('94cd0ba25dd9dc44c0f2ff2f6a43128196b0681218035fbf31001fb1aea301e7d9fddbf472565255',893,1,NULL,'[\"user-app\"]',0,'2023-02-09 10:43:45','2023-02-09 10:43:45','2024-02-09 07:43:45'),('94d42a690fd88da5b059576c29a16e9cf2d5f08e1beb211ca6ce010ba4e4cb2bfb887ad4deac40f1',1629,1,NULL,'[\"user-app\"]',0,'2023-09-09 22:39:11','2023-09-09 22:39:11','2024-09-08 17:39:11'),('94de9c7e9db0624fdf404f05fc64d00bae0225e753c609b3473f0c3bfde062bbe25e85cbce00798c',2,1,NULL,'[\"user-app\"]',0,'2023-04-17 20:03:46','2023-04-17 20:03:46','2024-04-16 16:03:46'),('94e8b71e8e68afe84478a6444bc45559b844e6986e8d8d2e80f6e79007687d95a26798e243241aa4',2068,1,NULL,'[\"user-app\"]',0,'2023-09-28 17:11:24','2023-09-28 17:11:24','2024-09-27 12:11:24'),('94fcd2d9358e9e21315b0c99a74f7082004d6ae4dd29c2f0545f4ea815080413dd5fbcda5254d5b7',2,1,NULL,'[\"user-app\"]',0,'2023-02-11 09:23:10','2023-02-11 09:23:10','2024-02-11 06:23:10'),('95016a68776f58545ea7d685dce1a638bc27db119262b4071979dd6bcf6a38658f30c3b8e66bbc4f',2,1,NULL,'[\"user-app\"]',0,'2023-08-30 00:41:54','2023-08-30 00:41:54','2024-08-28 19:41:54'),('952100e286b5a5b30508ae73f640a5df6a080200af4666e3bc5056bd9de7b35af6fba94e3540beb7',672,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:46:56','2023-01-25 15:46:56','2024-01-25 12:46:56'),('95386f22a69a6522f6399e8281c78ae6bf8c813a75bfdd7e5f51e9acbc0eb08ae52480d27e200b24',2,1,NULL,'[\"user-app\"]',0,'2023-06-17 01:35:08','2023-06-17 01:35:08','2024-06-15 20:35:08'),('953dbffb0d8c8d4c08df04292a5468466e1edd63afb2f3666bd7499f4013453bf40ac8c106d2978b',1035,1,NULL,'[\"user-app\"]',0,'2023-05-09 00:29:34','2023-05-09 00:29:34','2024-05-07 20:29:34'),('95442801f111816b485da0d24aa383c3ea8ac3f7b30cf5a2b67ba4ab54adb73b35f118f9244f9aa0',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 03:32:24','2023-10-07 03:32:24','2024-10-05 22:32:24'),('954f223a2f6a881d823b1c75a108b2ebd1afe97ba9c5c23a923d28e7f5fa67004835b856ed5fdbac',226,1,NULL,'[\"user-app\"]',0,'2023-01-26 00:55:58','2023-01-26 00:55:58','2024-01-25 21:55:58'),('954fd1c222a11663a1477dac3a2bd2fdac3075af74904e8f194cc9f9398d2427d6991b2f34333ca4',343,1,NULL,'[\"user-app\"]',0,'2023-02-14 20:15:39','2023-02-14 20:15:39','2024-02-14 17:15:39'),('9555a282f87472b29178694ce5e969d14229b65bc33f845937699bef0c70c08d9904f8880f4f4d87',395,1,NULL,'[\"user-app\"]',0,'2023-03-20 13:12:01','2023-03-20 13:12:01','2024-03-19 10:12:01'),('9596f81b115bef728994a4f08e8bce150663a5388c7999aedcb62cd1ecd3163404ea206e46394df6',2,1,NULL,'[\"user-app\"]',0,'2023-08-19 13:03:20','2023-08-19 13:03:20','2024-08-18 08:03:20'),('959d295000bed417771e57d1339b10528cecb5dd37c062a472589adc1d568974a12fc708117ad22b',1878,1,NULL,'[\"user-app\"]',0,'2023-08-13 17:24:53','2023-08-13 17:24:53','2024-08-12 12:24:53'),('95a4f9b7729d1b5d65700af1a4ea721305a145e758304114070d77add83f138ddba3577553215508',952,1,NULL,'[\"user-app\"]',0,'2023-07-27 14:46:18','2023-07-27 14:46:18','2024-07-26 09:46:18'),('95a54005d89fdbb531f84657802b26b251f107c47fac7e0e24a67910f028b2e0df02e3ce42b5a2a8',991,1,NULL,'[\"user-app\"]',0,'2023-02-19 14:12:56','2023-02-19 14:12:56','2024-02-19 11:12:56'),('95b06b41fd24c531723590352a8594a79a880f47005d54cdaf85f5155e1324b8221eadd0569aef1b',2,1,NULL,'[\"user-app\"]',0,'2023-01-29 03:20:58','2023-01-29 03:20:58','2024-01-29 00:20:58'),('95bd4a7837577bea1fe01ce693e892a186b88cf27319fb23591854b53c553138f488b33143498589',410,1,NULL,'[\"user-app\"]',0,'2023-05-30 18:16:41','2023-05-30 18:16:41','2024-05-29 13:16:41'),('95ccbf645b05b4fda3e9376784c9d3ac0864352190da240a4d3cf832a0ba725f827b1f37474aeec9',1018,1,NULL,'[\"user-app\"]',0,'2023-06-02 20:12:14','2023-06-02 20:12:14','2024-06-01 15:12:14'),('95d67f676a3128c7a3a26f7c2424baddd7b637b244fb3600ab93f7417dd2c3f51c80c2a658abff51',2,1,NULL,'[\"user-app\"]',0,'2023-08-13 14:00:04','2023-08-13 14:00:04','2024-08-12 09:00:04'),('95deccf2733d792e69e4e5dd63fe3d22d302fad9013488a9762536b69d8f7184fd0e78abd1e30dbe',1018,1,NULL,'[\"user-app\"]',0,'2023-08-01 22:57:51','2023-08-01 22:57:51','2024-07-31 17:57:51'),('95f8b9249d01c0d6dbfd4bf32cc5f542adbf066cf4ae52a1a5a0eeb56d553c1d432d3366c9ea32a2',999,1,NULL,'[\"user-app\"]',0,'2023-03-30 18:18:03','2023-03-30 18:18:03','2024-03-29 15:18:03'),('95fe8d31d9112402f8c12163500900481e888e3c52c40ac7855f062a50b3cbc24d72c7caf063953a',2,1,NULL,'[\"user-app\"]',0,'2023-06-06 23:35:47','2023-06-06 23:35:47','2024-06-05 18:35:47'),('96012bbc810d4e90447b184d1f4c6e9c493c3fe5d911780ebdbfbb3152a04054c3f0b8737aeeee85',1088,1,NULL,'[\"user-app\"]',0,'2023-02-27 14:22:19','2023-02-27 14:22:19','2024-02-27 11:22:19'),('960fe2bfc8d6d2f8ec1c3032e16508470a86ba8bed44ec51fe155654cccc0deaaed390a6c0a73bc6',1034,1,NULL,'[\"user-app\"]',0,'2023-08-08 12:09:02','2023-08-08 12:09:02','2024-08-07 07:09:02'),('9614c3c4ca144f97e37fb58a986b7e21243a7aca5c76926a967f76004b9e945ff6958705e3a628ff',1872,1,NULL,'[\"user-app\"]',0,'2023-08-10 05:02:25','2023-08-10 05:02:25','2024-08-09 00:02:25'),('9620a6eab40f0d6d36210bbc20b14272bb46206cca6c41b786bea3183fb4c4056f040681608ab2dc',1847,1,NULL,'[\"user-app\"]',0,'2023-07-31 21:59:13','2023-07-31 21:59:13','2024-07-30 16:59:13'),('96265f41cb4dc3a182a388112509221fe40b3c9ce2ad43759bf84219d07380dc9b41de57e14e6d6f',1266,1,NULL,'[\"user-app\"]',0,'2023-04-17 20:05:26','2023-04-17 20:05:26','2024-04-16 16:05:26'),('962f962a88a16aa20b5640fbc53fd9f269aba2526c12a3dbaa2cacd3c7757aaedc19e7723787fa6b',1792,1,NULL,'[\"user-app\"]',0,'2023-07-22 15:53:41','2023-07-22 15:53:41','2024-07-21 10:53:41'),('9646b19c77baef152a283ddb1896ef6a51c451659055b558fdc1b79659658ab744e17fa0a7d2bbad',1246,1,NULL,'[\"user-app\"]',0,'2023-04-11 21:40:58','2023-04-11 21:40:58','2024-04-10 17:40:58'),('964d5229a0c74f8f29c08dc45e701c457b71026b3b6a09f8c6ce62b8c68048f4e44170a17e24ede2',1891,1,NULL,'[\"user-app\"]',0,'2023-08-17 22:37:17','2023-08-17 22:37:17','2024-08-16 17:37:17'),('96571c3aba2ac820ec388f75e21bd46ac92d15549ab538c6c0bde2ef6e5a8c21777e001ffef1c6d8',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:04:52','2023-01-25 11:04:52','2024-01-25 08:04:52'),('96653838c34cb118c9955e78113d4db39b2763c8ddbed6d208832cf832502b6b8fedba5491b4f0f4',1091,1,NULL,'[\"user-app\"]',0,'2023-10-04 18:12:49','2023-10-04 18:12:49','2024-10-03 13:12:49'),('968a929bd24bf837efba2c51ae30ab4cd480df8982bacc67806ba4687e7ca2d308dacf1babc2a58d',2,1,NULL,'[\"user-app\"]',0,'2023-08-27 16:16:22','2023-08-27 16:16:22','2024-08-26 11:16:22'),('96a07bda7fa0017b4c64b10716c2f44283eb2234f1ebe37ee69c4005b5a7428f4d34c34dbd86bbbc',179,1,NULL,'[\"user-app\"]',0,'2023-01-26 01:56:29','2023-01-26 01:56:29','2024-01-25 22:56:29'),('96b1c9127ad3ec86df59b238e90ff53b5bc2fdd2ec827552a1c6b68c2c3e6284400005cfa70d850d',234,1,NULL,'[\"user-app\"]',0,'2023-01-31 14:41:58','2023-01-31 14:41:58','2024-01-31 11:41:58'),('96b5ff2589c50bc4050929d76a83025b9f42b823c36bcc94a7b5a7fb5d49c71826cdae6e7257ddd4',1359,1,NULL,'[\"user-app\"]',0,'2023-05-02 14:11:09','2023-05-02 14:11:09','2024-05-01 10:11:09'),('96c5f0d20827f15d431c42b1c92b69ed3864e2378a595b25b15357864325a05f951c21245b4ec5d6',2,1,NULL,'[\"user-app\"]',0,'2023-04-18 21:31:51','2023-04-18 21:31:51','2024-04-17 17:31:51'),('97045e0f9d64d546f1099d98c46f343aed0729fa8ed434c23ebedc262a4132b8fc196d1443546296',1113,1,NULL,'[\"user-app\"]',0,'2023-03-03 19:08:35','2023-03-03 19:08:35','2024-03-02 16:08:35'),('9708631b519654fcd54d521bb0519ee45d6a99ff799abab330b3c77f463d908a4bbe81d5010cfa61',652,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:06:03','2023-01-25 12:06:03','2024-01-25 09:06:03'),('9713490eae2bbe39539da9f78da934e36eb5ef23935b8207d120a4386edc0b896dfc7417703fb4b6',1036,1,NULL,'[\"user-app\"]',0,'2023-02-22 18:32:03','2023-02-22 18:32:03','2024-02-22 15:32:03'),('9721b4edb6579c73c4c4f139f36f285b1b85207055f57cbbc1bd7df70c1181d47671539f72557624',2,1,NULL,'[\"user-app\"]',0,'2023-05-12 20:43:04','2023-05-12 20:43:04','2024-05-11 16:43:04'),('974f6541f7fca88ba5dacc7c759b1914729c33fec61866e6e9497bfbf33ba1413112a33c36acbf17',2,1,NULL,'[\"user-app\"]',0,'2023-08-26 22:53:04','2023-08-26 22:53:04','2024-08-25 17:53:04'),('975190cb6351e43228190ee2a076da1f0f5c7851c4ea6a11e95fee163fcf0c22608c0bcac8818b69',284,1,NULL,'[\"user-app\"]',0,'2023-09-09 02:02:10','2023-09-09 02:02:10','2024-09-07 21:02:10'),('975941da4634d4e045649fd4bb78db5c5fb7e577b67df2e11af660d595e2f252513ffd099e9e68b9',933,1,NULL,'[\"user-app\"]',0,'2023-02-22 12:20:06','2023-02-22 12:20:06','2024-02-22 09:20:06'),('975ba4afb3ad37d776f75e61edd3c986c5e796a0fcbc68e4331e763ac6d3fcd3c68d4e6f9e82b903',1080,1,NULL,'[\"user-app\"]',0,'2023-02-26 07:04:27','2023-02-26 07:04:27','2024-02-26 04:04:27'),('975eaa384e94a10935eae751adc7500669dd732e392d446d5738b87eb0e72a3dc651ffdd50104725',889,1,NULL,'[\"user-app\"]',0,'2023-02-26 16:58:20','2023-02-26 16:58:20','2024-02-26 13:58:20'),('9763195c8fa43f1daf09efe714482c102dc38e0b9b7e6edaba84b4b61fd99c298f2ff48c4c4926a5',917,1,NULL,'[\"user-app\"]',0,'2023-02-14 11:43:12','2023-02-14 11:43:12','2024-02-14 08:43:12'),('976a9443f0abd455389995469b6911aed9beb328013d84f2cccb9ee2a1c89a4901d14ac1aae8717c',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 23:29:51','2023-10-07 23:29:51','2024-10-06 18:29:51'),('9774076c39a2a61caa77ca91ee7201c3d552e5811f2f2c06297208d26b7e7f7abedb5384a2e320c9',1870,1,NULL,'[\"user-app\"]',0,'2023-10-01 21:00:25','2023-10-01 21:00:25','2024-09-30 16:00:25'),('9779e4cf6ecb8a494073a0b8193a829fc65593aabd53cfd7e3ba2ae0ae7761352a5fca37b6400733',1021,1,NULL,'[\"user-app\"]',0,'2023-02-24 12:52:04','2023-02-24 12:52:04','2024-02-24 09:52:04'),('977a913e64903e318ea6c83d8f665cb47ae00782d8b1601320b5529ea56a247508d714458a3640f0',49,1,NULL,'[\"user-app\"]',0,'2023-03-21 00:52:31','2023-03-21 00:52:31','2024-03-19 21:52:31'),('97906e067bab42489a4e596ff3882a8e7000660764eba89d94c1e79f4db60852841293dcc1e80be8',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 20:25:37','2023-10-07 20:25:37','2024-10-06 15:25:37'),('97911193d80d2770276622a5df160958d90af0ccd9b5b88431b47022babee43dd7ca95ef82e156b1',1912,1,NULL,'[\"user-app\"]',0,'2023-08-24 20:47:15','2023-08-24 20:47:15','2024-08-23 15:47:15'),('979e5e0a6e8c8e37bf95599ffc1170b092c335aabe529f9bd4967b67bdde2db02e6f9a9e2797d2c4',1531,1,NULL,'[\"user-app\"]',0,'2023-06-06 22:11:29','2023-06-06 22:11:29','2024-06-05 17:11:29'),('97a9e1a9efa78d9516d9a676d9350471091127fcf36f52795e186ab5daa43217336efe03d3d6b691',715,1,NULL,'[\"user-app\"]',0,'2023-01-26 00:24:34','2023-01-26 00:24:34','2024-01-25 21:24:34'),('97b3207f704620fb8b2da3a44ec9e70e09f235982f4b4e3901b2e00754e434743e3e97d0d936b811',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 09:37:44','2023-10-07 09:37:44','2024-10-06 04:37:44'),('97d4b5be658154518995860a5eed8358ff61eb91ff7aed1f903e5dcde083a2ee3e5236159b407435',448,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:17:44','2023-01-25 16:17:44','2024-01-25 13:17:44'),('97f14674611a11c179f9adc8f668478a80b1c4bdf2f44e2409011314a50cd4377b9350652a5cf613',2,1,NULL,'[\"user-app\"]',0,'2023-07-01 15:34:18','2023-07-01 15:34:18','2024-06-30 10:34:18'),('97f41070af36b2840ebc185a51c06c8a07c31e6d06cbd3a07d95950fe4257c31f35c3a8fe8f96b35',1509,1,NULL,'[\"user-app\"]',0,'2023-05-28 19:48:51','2023-05-28 19:48:51','2024-05-27 14:48:51'),('97f8c53a7777ed10c3d2f9720fc737fc1ef4b7db5dd0f353933fd6c2aaca383e36a0b293afe5a4d8',2,1,NULL,'[\"user-app\"]',0,'2023-05-20 04:42:12','2023-05-20 04:42:12','2024-05-18 23:42:12'),('9823f94ff854d0e3cbc47fb320df6329529e62038316464b0ef64af1712faacbe98126a102541291',1437,1,NULL,'[\"user-app\"]',0,'2023-10-07 19:08:57','2023-10-07 19:08:57','2024-10-06 14:08:57'),('983c304ff1e33268b20295bda3ba379db445c945f51baec8bdfb5565475ce0b76ebe3302d8ca6291',650,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:52:53','2023-01-25 11:52:53','2024-01-25 08:52:53'),('9844c3e970735e266bfd7bcd1161bddb650997460834cc25caea284da53310494b8bc19a0d60e431',1466,1,NULL,'[\"user-app\"]',0,'2023-07-02 14:34:54','2023-07-02 14:34:54','2024-07-01 09:34:54'),('984f58a9d93098dab9c93da6b25261d14bbcf986d54ee448359461605be8bb855352831a457104cb',1420,1,NULL,'[\"user-app\"]',0,'2023-05-10 22:11:50','2023-05-10 22:11:50','2024-05-09 18:11:50'),('98517bf300a65c015fe0e57783b98bbd01a93b4153a6ec1767b80a7b856f128a892ba072b7dc041d',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 09:58:25','2023-01-26 09:58:25','2024-01-26 06:58:25'),('985bb19e7f35453c1e9398bec3f88260788b6dd6c123700aa1327ba43dfb87a8f2e04f9423f90fde',183,1,NULL,'[\"user-app\"]',0,'2023-03-07 13:33:30','2023-03-07 13:33:30','2024-03-06 10:33:30'),('985fab0bd49b57311f6d1340c7cb26ef7b9e81a5140314f8a0a7e50ce99e4daab330346d5f0af503',764,1,NULL,'[\"user-app\"]',0,'2023-01-27 22:04:58','2023-01-27 22:04:58','2024-01-27 19:04:58'),('986b492f20eade4e993e8f72fa7bc785cf9295516cbab7fcb333c1aa457a2a0e902e6404bdbc6c64',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 20:12:01','2023-09-04 20:12:01','2024-09-03 15:12:01'),('986fe2a421469e3d331870b31573caae4a6ffc7863c3fc233ed1c2b294708cf7dfceee93770c91ba',1151,1,NULL,'[\"user-app\"]',0,'2023-04-21 06:49:41','2023-04-21 06:49:41','2024-04-20 02:49:41'),('987bbb5f227d78dd1323f08b356d2a0b9516a1ebca03ce06d5af104d17dd02dfc2e98299844e8a3f',1404,1,NULL,'[\"user-app\"]',0,'2023-05-30 21:10:58','2023-05-30 21:10:58','2024-05-29 16:10:58'),('98914296887e9b856fc4222c35d10abf6c21eee9828f4c28bbc3d663c9e2b04a779dc791e82ef032',8,1,NULL,'[\"user-app\"]',0,'2023-02-27 17:24:31','2023-02-27 17:24:31','2024-02-27 14:24:31'),('9895db7208d775a858ca14674e6b9beee0fe100c51a503b31a0e9b1d981952422591f183803ab4d8',1600,1,NULL,'[\"user-app\"]',0,'2023-06-20 00:28:58','2023-06-20 00:28:58','2024-06-18 19:28:58'),('98f6a44cf826f19590634a712219cf019325042a3c7474353ffcba1ae0896212e418bae258e8fcb8',602,1,NULL,'[\"user-app\"]',0,'2023-08-10 21:54:11','2023-08-10 21:54:11','2024-08-09 16:54:11'),('98fd04eb18881a885067c12b5e299a70226f1e94661e6bbcd4a4c2d7f58731f52411a7f30411cf52',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 18:17:47','2023-09-21 18:17:47','2024-09-20 13:17:47'),('98ffd3ba8c5940b688486f3736458766117a0789060b776af421e3da153c3e251f35600e126c81e2',2,1,NULL,'[\"user-app\"]',0,'2023-07-26 22:20:27','2023-07-26 22:20:27','2024-07-25 17:20:27'),('9920eb99326e8b7017c1f1fbf40f150d03ae9851f5d894d675a69fbbe4e6408d492a6db1f479ac58',408,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:58:56','2023-01-28 13:58:56','2024-01-28 10:58:56'),('99336cae08b6ac26f4c58a4f1340ef238e41a6c68de077efde5c1117de16fcc7ed5d300e67a20719',721,1,NULL,'[\"user-app\"]',0,'2023-01-26 02:56:46','2023-01-26 02:56:46','2024-01-25 23:56:46'),('99354b00e98dcf84d2419bb016d119e82e579b305fd1abe92a98965dfa48082b6c7ea1bc769eb062',1063,1,NULL,'[\"user-app\"]',0,'2023-02-24 00:38:40','2023-02-24 00:38:40','2024-02-23 21:38:40'),('9967a925ad85d7469f20516b3ad5dd1da1a08513cdd3a7d07bc908bd6eda8414bd51bea90ebacc1a',2,1,NULL,'[\"user-app\"]',0,'2023-02-22 21:14:11','2023-02-22 21:14:11','2024-02-22 18:14:11'),('9974795eed1936f19ce1b343ed0185c610114550029b47f98340294065c42e4e55e52401987f5100',1353,1,NULL,'[\"user-app\"]',0,'2023-05-01 01:12:33','2023-05-01 01:12:33','2024-04-28 21:12:33'),('9988f1abc221223e75122ae8e4e373eddd9d16b03c535cfc3cce9f767519ff0ffccd642abaa2c694',2,1,NULL,'[\"user-app\"]',0,'2023-06-03 23:52:45','2023-06-03 23:52:45','2024-06-02 18:52:45'),('9993f5ffd83eccea5efc69d5415df301c3451537f9d919b0daef6fc738c11c2144a9cbaabd6479b8',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 19:16:39','2023-07-17 19:16:39','2024-07-16 14:16:39'),('99a37d09fd5950ff7daae240a6bad4dee9650bd2b8658d65dc2aab8d89e6074bd5e20d0392645027',1519,1,NULL,'[\"user-app\"]',0,'2023-06-01 16:29:53','2023-06-01 16:29:53','2024-05-31 11:29:53'),('99b9ab99395e071a9187ab7a6c75d25fa4d5e7517f6660a6cd8b2000ab28ee2ec7d6ae529cfcdb40',8,1,NULL,'[\"user-app\"]',0,'2023-03-04 01:33:30','2023-03-04 01:33:30','2024-03-02 22:33:30'),('99bc97a4de6e6c8d04bf057f8b078f7ea57faf496a999ddf98b7bcef3602fb2cef941620c7570769',2,1,NULL,'[\"user-app\"]',0,'2023-09-10 15:04:11','2023-09-10 15:04:11','2024-09-09 10:04:11'),('99d3538c346469165d78bb95726062d1e8570b27246a4c88d13dd810dfc181096646f9d1d23c07dd',2,1,NULL,'[\"user-app\"]',0,'2023-08-15 05:00:39','2023-08-15 05:00:39','2024-08-14 00:00:39'),('99df1f5604c361b91d67d72cc76b1b78f9fefcfd78ea6dd326e8859c8d1eff810ac2e8c6f778e046',1284,1,NULL,'[\"user-app\"]',0,'2023-04-20 11:26:47','2023-04-20 11:26:47','2024-04-19 07:26:46'),('99eed08553c77307cfa2d0b6204bc506c42603f29f9979e057585722f41583454784e995685cf8f6',1826,1,NULL,'[\"user-app\"]',0,'2023-09-21 00:01:20','2023-09-21 00:01:20','2024-09-19 19:01:20'),('99f4fd45a12bd87e3237bcd0a0f8d756c2c7da3e8580433ab634b44977e06bc8d65cd7b9a3ab0762',956,1,NULL,'[\"user-app\"]',0,'2023-02-20 13:36:45','2023-02-20 13:36:45','2024-02-20 10:36:45'),('9a0e13b6308890aceaaee6651abfe06d13a12702353cbb4dca9f1a0669860a16bcff00b3ba9d8d3a',8,1,NULL,'[\"user-app\"]',0,'2023-07-04 22:57:23','2023-07-04 22:57:23','2024-07-03 17:57:23'),('9a106940b8f0836cc904f0d1ec74f6498d05712b80b8a680cd595525f38bf18b47d68a849a750126',639,1,NULL,'[\"user-app\"]',0,'2023-01-25 08:41:05','2023-01-25 08:41:05','2024-01-25 05:41:05'),('9a1a2de8303043335dd4bcab36c09ebc4017abc9b02d84e42f22d1922b807901eea4e231a7b83f9d',2,1,NULL,'[\"user-app\"]',0,'2023-04-29 15:23:30','2023-04-29 15:23:30','2024-04-28 11:23:30'),('9a1eda5534d9eb901b0244e70c3cb31400386fe1ed651ab870d0928c6e880fa42fa9fd509c7269db',114,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:06:38','2023-01-25 18:06:38','2024-01-25 15:06:38'),('9a4f35feab0fd809d1c92e7bd294b1e67a84c62e11236eaec59b17809636960be35a696969666244',134,1,NULL,'[\"user-app\"]',0,'2023-09-28 21:20:00','2023-09-28 21:20:00','2024-09-27 16:20:00'),('9a658eac31013653a3697258dd87009c67e19acc2cede972cff27c36863733fb1524a934a99c1769',1051,1,NULL,'[\"user-app\"]',0,'2023-02-23 12:25:03','2023-02-23 12:25:03','2024-02-23 09:25:03'),('9a671ba30cc0b5036dda74454995b0431f47ab04eea638cf58e39feba71fa6afcc1a3eec284a55bb',2,1,NULL,'[\"user-app\"]',0,'2023-08-25 02:39:13','2023-08-25 02:39:13','2024-08-23 21:39:13'),('9a69e73f6ba26fa3232561ac2f54e99d6c5a1733b45936848437ed630d93936c460ab0d36705b3ad',737,1,NULL,'[\"user-app\"]',0,'2023-02-08 18:04:30','2023-02-08 18:04:30','2024-02-08 15:04:30'),('9a6d7eef020c7c3246f4df6b81b07f49041ae03c8d009276f4fc004103f293c89f05f82dd6fbe4bb',1750,1,NULL,'[\"user-app\"]',0,'2023-07-13 03:23:09','2023-07-13 03:23:09','2024-07-11 22:23:09'),('9a7467836572f1752b9fb1f63a3f408027c680cf9cc60b387800052e6f530167971b87daae6d6443',1827,1,NULL,'[\"user-app\"]',0,'2023-08-01 16:13:00','2023-08-01 16:13:00','2024-07-31 11:13:00'),('9a7afde07f18d6be9037a1afa07c3ea0136e3a147fbb0f4273530fa14bc39b95da14638920ebb6fb',1655,1,NULL,'[\"user-app\"]',0,'2023-06-28 01:10:58','2023-06-28 01:10:58','2024-06-26 20:10:58'),('9a912f91937b237e22899107df738a74ecb4a42f5a0bda1e5d42b43d620589fba8f605495b658c8e',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 20:20:31','2023-05-01 20:20:31','2024-04-30 16:20:31'),('9a98d891a88298a6e27dd2be5cc424ed57478cddafb117c78ce73cf5e9b4b850cd589487856ce68b',429,1,NULL,'[\"user-app\"]',0,'2023-06-08 18:55:55','2023-06-08 18:55:55','2024-06-07 13:55:55'),('9ab18bf0f0ea956e951913d696d01d8a5c9653e44b0a434c3fb12f4cf5dae1fcd24fe35cfadc1828',2,1,NULL,'[\"user-app\"]',0,'2023-08-30 23:51:12','2023-08-30 23:51:12','2024-08-29 18:51:12'),('9abbe403eda57eddc7ed424b25bc17e059ce9d41dfdc4a7224f5240da7954b05bf784b5e49e219ff',820,1,NULL,'[\"user-app\"]',0,'2023-01-31 13:11:34','2023-01-31 13:11:34','2024-01-31 10:11:34'),('9abcb2be98a78346606c7a2be371b712440651acd96bf9297d755acdf089b93ba7323ecbeb70b807',2,1,NULL,'[\"user-app\"]',0,'2023-01-27 21:36:32','2023-01-27 21:36:32','2024-01-27 18:36:32'),('9ac9e9e41af87153c43861824643484075517dfb70e0dba699dabdacd9b28c537907bcf9ad84a3e3',964,1,NULL,'[\"user-app\"]',0,'2023-02-17 17:02:08','2023-02-17 17:02:08','2024-02-17 14:02:08'),('9af095753e0252d4645bd1a4aedb3648bbc5d50eb91c9ce438f6bb25b41693efc7f6af8defaee189',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 17:53:17','2023-07-17 17:53:17','2024-07-16 12:53:17'),('9af1bb6b76969905c237b2fb73dcd77d14ee968d3a7f7190df979f0a93bb88cb411905f239aecd6d',345,1,NULL,'[\"user-app\"]',0,'2023-09-08 22:15:38','2023-09-08 22:15:38','2024-09-07 17:15:38'),('9af35a6ed99a7a9c6d5664e2cbb28ef88a10f00812e76fdd7918c395eb1ec14ed4db93e5e2d0d7ca',1350,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:46:56','2023-07-08 01:46:56','2024-07-06 20:46:56'),('9af7a677965502d30225fd92176f79e162d116524e14d05b9a88aeffda809dcb70b58e2e92972ced',477,1,NULL,'[\"user-app\"]',0,'2023-07-03 16:07:05','2023-07-03 16:07:05','2024-07-02 11:07:05'),('9af90a7ba7fb7badeaa7211b3dc27281870d69476716e9c55e2ee0bcd4f1bc061777d2a951c2b18e',120,1,NULL,'[\"user-app\"]',0,'2023-10-05 13:59:49','2023-10-05 13:59:49','2024-10-04 08:59:49'),('9b048f72e1921cd62b35b9149324a689d3b984309da536bcb99ac6269d6edb120475a02a4becf0ed',2022,1,NULL,'[\"user-app\"]',0,'2023-09-21 02:44:20','2023-09-21 02:44:20','2024-09-19 21:44:20'),('9b094eb91d2dde1a728ccdfa1212976bef42ae3ba1c2e16e7c29662e23fe5b4c516d19767cdf9ed3',31,1,NULL,'[\"user-app\"]',0,'2023-01-29 00:05:36','2023-01-29 00:05:36','2024-01-28 21:05:36'),('9b0b39b6ce09a3a34fe9cc9ea2e58d50eb8028059957707ef4dc5f0e8970401adadee6c4891f9f65',2,1,NULL,'[\"user-app\"]',0,'2023-05-27 15:20:01','2023-05-27 15:20:01','2024-05-26 10:20:01'),('9b1ba86a120eaf7a987c50a47ee8cb67a4b612277da56671bdc5d17387436db4ccbd0bbe1357a340',2,1,NULL,'[\"user-app\"]',0,'2023-03-22 13:20:29','2023-03-22 13:20:29','2024-03-21 10:20:29'),('9b27c1a0cc3b829c22d21b361678bfe6c559c299a81748f2586f90edcdb0fa35b5823b231885981f',977,1,NULL,'[\"user-app\"]',0,'2023-02-24 19:11:46','2023-02-24 19:11:46','2024-02-24 16:11:46'),('9b345093374dba734ce1ab9e4a0419b22b4cfbe718fd8700189f84b41aa2edba332c4d46c0da60f7',896,1,NULL,'[\"user-app\"]',0,'2023-02-09 20:17:18','2023-02-09 20:17:18','2024-02-09 17:17:18'),('9b360a204035a05ccec8f7d004c4ec4fe81b91f4747850e2c7279fe37a712dd93be4bacb7bf81a8a',2094,1,NULL,'[\"user-app\"]',0,'2023-10-04 13:41:01','2023-10-04 13:41:01','2024-10-03 08:41:01'),('9b4d2400f8d68d535a5af9c34a6774cd0279064e0258fbf50ed7262e11ec67360d5d4deedde0026d',2,1,NULL,'[\"user-app\"]',0,'2023-06-30 22:31:05','2023-06-30 22:31:05','2024-06-29 17:31:05'),('9b514dcd4374ce4ae4e4b9b79fa0be94e9a55e67b7b9dd5c63c8f1a31f4efaacb3be2b8597b02345',5,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:14:47','2023-01-25 13:14:47','2024-01-25 10:14:47'),('9b645b7bd06f0f686603c4fe7aeb56ced15772c97b6a2a906828e1d8bb06bc2a296bdf0d34117295',2089,1,NULL,'[\"user-app\"]',0,'2023-10-03 22:48:45','2023-10-03 22:48:45','2024-10-02 17:48:45'),('9b6e96829b3d8be49280cf612856c3dbe856af0e6aa708becba98ebff84ccf7f98db5d9cc120d013',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 18:39:17','2023-05-01 18:39:17','2024-04-30 14:39:17'),('9b7f804063e5a140b17eedf00d62d711c90a8ab1aba3c20587b0e48363e36d9ffe94e14eb0b559d0',145,1,NULL,'[\"user-app\"]',0,'2023-10-07 22:08:28','2023-10-07 22:08:28','2024-10-06 17:08:28'),('9b9674a769827ffd40052b552be8fc28ab47899321d94d383ae89b2265d0faeb9cba414246f7ec6f',1571,1,NULL,'[\"user-app\"]',0,'2023-06-15 19:27:10','2023-06-15 19:27:10','2024-06-14 14:27:10'),('9b9f56e515dcd772d3061f843e9acdb8f16b307c725a6ef71d3b8030a40fd50c5fbbb69a0299d843',1716,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:41:52','2023-07-08 01:41:52','2024-07-06 20:41:52'),('9baa692cc87d3314d3b07a6d2d132afad094c287c8cd83ad79c78aea9beec77cfd66e08cd11d3684',1646,1,NULL,'[\"user-app\"]',0,'2023-06-26 19:09:20','2023-06-26 19:09:20','2024-06-25 14:09:20'),('9baf914f80d6680b312617d9de5ad242046cb6bd653c019999e68ec1c703f53a677c7b8d17a44075',2,1,NULL,'[\"user-app\"]',0,'2023-05-04 23:41:27','2023-05-04 23:41:27','2024-05-03 19:41:27'),('9bfbbb66d2330876f702e6ecac9460258cc9a6145a3fa00cff05eb11beb05f23fc993e8b6894d53c',2,1,NULL,'[\"user-app\"]',0,'2023-02-22 19:19:13','2023-02-22 19:19:13','2024-02-22 16:19:13'),('9c633b00b64d8184f6b54d7775d77517471c8c682c692e116c35349964f302bdae50754c86dfa595',464,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:06:01','2023-01-28 19:06:01','2024-01-28 16:06:01'),('9c7a553a658131305d39564b556755aae36a902a495e30de50b2adb112754f029c2f89907ff24366',2,1,NULL,'[\"user-app\"]',0,'2023-02-09 02:35:43','2023-02-09 02:35:43','2024-02-08 23:35:43'),('9c82b92aab967d668a75a071ae979f798b74a573e394c9ff76d2f765f6b52a93cdea48054b92dac5',1023,1,NULL,'[\"user-app\"]',0,'2023-05-29 18:17:15','2023-05-29 18:17:15','2024-05-28 13:17:15'),('9c97009d7509add89c22ea907a2feab66b0cdc88234a44818e6c46b7a0bce6bd39048dcf1b990b59',1955,1,NULL,'[\"user-app\"]',0,'2023-09-06 03:44:13','2023-09-06 03:44:13','2024-09-04 22:44:13'),('9ca004c8df32b70884c3f4a300fcc35823e2f68e716c92176b8f8229a40d9ce311739c43ec8472dd',1223,1,NULL,'[\"user-app\"]',0,'2023-04-01 10:54:19','2023-04-01 10:54:19','2024-03-31 07:54:19'),('9cc075943dacc1dbdf34b0c0e26f9b07c6262aa55488618b9dd15a8f13a110538f1ec968343a11d7',1048,1,NULL,'[\"user-app\"]',0,'2023-02-22 23:25:17','2023-02-22 23:25:17','2024-02-22 20:25:17'),('9cc26ff301bd692f95265fb02c0502d903513eec57df09cfc1f8b6e769367d596d2e9427b58b7524',2,1,NULL,'[\"user-app\"]',0,'2023-07-14 20:01:58','2023-07-14 20:01:58','2024-07-13 15:01:58'),('9cc63b79968461654b8f463bce51c727446072a64767ae73b8894625fc8d9687f21268c1ce2f5173',2,1,NULL,'[\"user-app\"]',0,'2023-09-09 12:26:08','2023-09-09 12:26:08','2024-09-08 07:26:08'),('9cdab1a47c918fd51bb0aa7c860fad9a9db1eff1463116b99e217e42b7db8ceeecadb6c7c6a29012',2,1,NULL,'[\"user-app\"]',0,'2023-06-03 21:40:19','2023-06-03 21:40:19','2024-06-02 16:40:18'),('9d146f871df082d1e08dea40ce724e889f6e2f16523c1ca292c538abf2ece4b191064c521cf671f3',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 16:42:48','2023-01-28 16:42:48','2024-01-28 13:42:48'),('9d1aae383786177a80060122ec927cc6b04c2bbcdb464dc54aad1f2ab9f68388041b23b18e6d7a19',1007,1,NULL,'[\"user-app\"]',0,'2023-09-27 01:17:35','2023-09-27 01:17:35','2024-09-25 20:17:35'),('9d1ba263875d04724a35a7728575ffce0d56fe44e9fb15047b8b96b1382cd16ad675853a454db82b',1130,1,NULL,'[\"user-app\"]',0,'2023-03-17 15:16:56','2023-03-17 15:16:56','2024-03-16 12:16:56'),('9d290d0e5d7871f074a0233b5a089f09eea2868803c98e903254a7da70e766ded3e99cbb3aaa9e31',2,1,NULL,'[\"user-app\"]',0,'2023-05-17 01:47:46','2023-05-17 01:47:46','2024-05-15 21:47:46'),('9d2f2a49a285080874de3baa32156990e989f5960c8f31f8f63e796dd330701c99f746c7f01e29a5',2,1,NULL,'[\"user-app\"]',0,'2023-03-01 13:33:30','2023-03-01 13:33:30','2024-02-29 10:33:29'),('9d5d12c2452383d31cab0734b9a87401dd8fd6ab73a83c27bb56601f39e37acfa16a10269226bb7a',96,1,NULL,'[\"user-app\"]',0,'2023-01-27 14:48:32','2023-01-27 14:48:32','2024-01-27 11:48:32'),('9d6bbd1d9996a7933c2fbd0834bd9591dc2ec59047d5cf6c26859222add59b596851c61e6a8f48bd',1001,1,NULL,'[\"user-app\"]',0,'2023-08-04 18:38:20','2023-08-04 18:38:20','2024-08-03 13:38:20'),('9d7507636a40dcbe1633ecebe3399c3d4973bd93a091634c1bb2ba5847a4df822362577a5ef20400',1340,1,NULL,'[\"user-app\"]',0,'2023-04-28 22:16:25','2023-04-28 22:16:25','2024-04-27 18:16:25'),('9d8a64fad648d3b32d4656dc47a137ca40709bd215ecd764349ba9b5e1841db26df887f8eb59655f',1120,1,NULL,'[\"user-app\"]',0,'2023-03-07 17:26:49','2023-03-07 17:26:49','2024-03-06 14:26:49'),('9da696a00df60980733d5d3ad7727b94e74d4ceb46257650c4b55c7b0f12fd5cc27dec99c111da41',2,1,NULL,'[\"user-app\"]',0,'2023-06-09 13:04:56','2023-06-09 13:04:56','2024-06-08 08:04:56'),('9da8de3d2b34bd5606bc339a2cc749ef6fe8004bbf6fec733a1e39257af1c0cb7817efc102cebdc2',1927,1,NULL,'[\"user-app\"]',0,'2023-08-29 11:07:58','2023-08-29 11:07:58','2024-08-28 06:07:58'),('9dabfee23e99a30d89fb31392a3dd52855cdea8e1af85b1b0c54ba7f2829c96049d649bff1ad036f',1752,1,NULL,'[\"user-app\"]',0,'2023-07-13 19:12:31','2023-07-13 19:12:31','2024-07-12 14:12:31'),('9dad2c2dc118d8e3a6ee41179c84ef1412ed6494476f8805dba2ee883b54f7e4f9d0e36a58721541',2,1,NULL,'[\"user-app\"]',0,'2023-02-05 01:55:31','2023-02-05 01:55:31','2024-02-04 22:55:31'),('9db0dbe9ef5f7c35bb9386e96476d8cc0deb49e3abccca41986df157bc19de7d9a605fc647f869e4',1954,1,NULL,'[\"user-app\"]',0,'2023-09-05 23:01:19','2023-09-05 23:01:19','2024-09-04 18:01:19'),('9dc3085b24013e5540f14ef3c56a6558e8138d4f3ffadebccaddd4a45b52f184f9a7bb195ccba1df',1410,1,NULL,'[\"user-app\"]',0,'2023-05-22 22:39:42','2023-05-22 22:39:42','2024-05-21 17:39:42'),('9dc8f05189ef2f40b5618ae63f2ff4f57625b2502105f7ff2a11ce48e0edf9686316fc4c5ebb3338',280,1,NULL,'[\"user-app\"]',0,'2023-03-06 15:58:48','2023-03-06 15:58:48','2024-03-05 12:58:48'),('9dda4fb2d745149a0b9d3e2f4ce8b0d6aae3c2aec3073284cad7276219b0511eb1734f96d921058f',228,1,NULL,'[\"user-app\"]',0,'2023-02-06 19:36:39','2023-02-06 19:36:39','2024-02-06 16:36:39'),('9dda91a300d80db0248668563d3e8bb73c2569c307e5ec2827ab7877ed233856052760447b86d8ad',432,1,NULL,'[\"user-app\"]',0,'2023-01-25 23:09:24','2023-01-25 23:09:24','2024-01-25 20:09:24'),('9ddc3bdeb595a41affeb2ea455f24d35ea11bbd2697465265bc4125473448ad29ce79d66b8d9d887',1407,1,NULL,'[\"user-app\"]',0,'2023-05-16 21:40:14','2023-05-16 21:40:14','2024-05-15 17:40:14'),('9df079e0fe973c9f9038cc775a469804fd7e91ac02db16171773917a16671bf59c9d69a19fc90660',2,1,NULL,'[\"user-app\"]',0,'2023-02-10 19:04:20','2023-02-10 19:04:20','2024-02-10 16:04:20'),('9df6528e41cc80e04e657f6f59c2e7537392744f80e706328666b3e023db809d00c107a269ee0621',1107,1,NULL,'[\"user-app\"]',0,'2023-07-05 21:06:51','2023-07-05 21:06:51','2024-07-04 16:06:51'),('9df874bb3177178783804f2e859f072c3dacb402763cea1778ba395f79d5dbb9c0bf971a9586e047',1761,1,NULL,'[\"user-app\"]',0,'2023-07-14 17:57:30','2023-07-14 17:57:30','2024-07-13 12:57:30'),('9e23cdf9f5830082f6624e36e7dc83519174839b4679c2004125069b9acc44c47d839b9988445949',286,1,NULL,'[\"user-app\"]',0,'2023-02-15 16:17:22','2023-02-15 16:17:22','2024-02-15 13:17:22'),('9e4f9515b07352bab11f8e486d54a32df96beb7434857b1231d8b13fa7e553a3b77dacc00ed23c32',953,1,NULL,'[\"user-app\"]',0,'2023-06-05 19:18:49','2023-06-05 19:18:49','2024-06-04 14:18:49'),('9e580a2d9c4df3f59072f18b82cf6a17c10bcbb008114f9d87ad6e448fbfb71deccb949c0dd1a2e1',2,1,NULL,'[\"user-app\"]',0,'2023-02-03 21:06:50','2023-02-03 21:06:50','2024-02-03 18:06:50'),('9e58d60e94d7512caa4a4b76b595107bef161336b7e65ac83c83a41b3bed16d6b44bb9ac19171e6a',1409,1,NULL,'[\"user-app\"]',0,'2023-06-07 01:31:15','2023-06-07 01:31:15','2024-06-05 20:31:15'),('9e73841421a975ddf24e90246ad06bf0470a7724b10cf5c63ba65b42ec84a829951bc7655f9319c1',1605,1,NULL,'[\"user-app\"]',0,'2023-08-01 19:22:03','2023-08-01 19:22:03','2024-07-31 14:22:03'),('9e8868e8c197c55269788886e47b885fee7360944d589f7874b4235c46d7f6e672bc5107bdc6bed9',1155,1,NULL,'[\"user-app\"]',0,'2023-03-14 16:32:14','2023-03-14 16:32:14','2024-03-13 13:32:14'),('9ea2a48d14d7b6df6ed48c973b26b222137d5fb34183d2ddcc82c554e402f6aa9c3d206868985308',1159,1,NULL,'[\"user-app\"]',0,'2023-03-15 00:58:14','2023-03-15 00:58:14','2024-03-13 21:58:14'),('9ea48b73e1c6cfe3376870b696d4b22b0cf0b41bf9566acc4afb8419e1532420a1c52dac0012864e',2041,1,NULL,'[\"user-app\"]',0,'2023-09-24 13:59:19','2023-09-24 13:59:19','2024-09-23 08:59:19'),('9ec4af9f71e23b4b38e609c59c6e4f05c17d17234e06c8be8e26de87185d4f6ecfedcb51f6a51ffa',289,1,NULL,'[\"user-app\"]',0,'2023-07-08 03:27:39','2023-07-08 03:27:39','2024-07-06 22:27:39'),('9ef59e42414e72a75cc8eb8e890e0396d9c60d578bae1673d7e399547c4f1724742dd3bf6b6f024f',8,1,NULL,'[\"user-app\"]',0,'2023-02-02 12:08:50','2023-02-02 12:08:50','2024-02-02 09:08:50'),('9f083878c92c1a43717a66257411ad71a33054e35695e57a48a5f2f4f7acf65e35c46495da44e249',255,1,NULL,'[\"user-app\"]',0,'2023-05-05 14:57:43','2023-05-05 14:57:43','2024-05-04 10:57:43'),('9f1326f281f1cf9931e7024b9bc1f8f731ecb3cb0b129d3031004208e48ff30b1bf2fbb2a0923598',2,1,NULL,'[\"user-app\"]',0,'2023-02-27 01:16:14','2023-02-27 01:16:14','2024-02-26 22:16:14'),('9f2cf9481cbdd29db56f26dd2b944f52ace633cbc37793bb9bc731bed80662e0523b5576b497e3c5',313,1,NULL,'[\"user-app\"]',0,'2023-06-07 00:21:20','2023-06-07 00:21:20','2024-06-05 19:21:20'),('9f3088ae690a764df8882e9f85c9473a15800d7e65177efada3e05e5bd677bbdda36e4b300500327',1870,1,NULL,'[\"user-app\"]',0,'2023-08-10 20:05:27','2023-08-10 20:05:27','2024-08-09 15:05:27'),('9f3a0beecb1b1ad4d8a6327bc1af494db6e9a844cca78bfbc4b87a0b1635400c554789adb33d7652',812,1,NULL,'[\"user-app\"]',0,'2023-02-03 14:11:46','2023-02-03 14:11:46','2024-02-03 11:11:46'),('9f3aa349b1afaa8d0dac108ebdb44ce69684368328aa8972b700886248d6e40cd642e3066afe6b2b',1839,1,NULL,'[\"user-app\"]',0,'2023-07-30 20:58:11','2023-07-30 20:58:11','2024-07-29 15:58:11'),('9f4dc5e79ca2f1747c17a009092fe2e485f2656d2b93fbfc0e0152e2fa0f6894f0c3e1dd8af81fc5',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 07:30:21','2023-01-25 07:30:21','2024-01-25 04:30:21'),('9f558422764eac3d6a163c4fe0c8e75d6fb82d6c30a5f881ec2aec1678048419e7771349c4f372f4',1315,1,NULL,'[\"user-app\"]',0,'2023-04-23 18:49:00','2023-04-23 18:49:00','2024-04-22 14:49:00'),('9f86c7c8c0b7879cc14fd2e08e9a21b68d5298961bf4d820bade01f9cbeef01088cb8d0349c453d9',948,1,NULL,'[\"user-app\"]',0,'2023-03-27 13:08:03','2023-03-27 13:08:03','2024-03-26 10:08:03'),('9f9105ebc5875344753770fcab9d00c1f452e693fd28e33b32814c304027e2f44d0fc4f038daf998',1245,1,NULL,'[\"user-app\"]',0,'2023-04-11 18:33:53','2023-04-11 18:33:53','2024-04-10 14:33:53'),('9fb763c1cb9455372d7a76fd53745fa415090d2043351cb35786055374c5713f2ea147bb4149dec3',2,1,NULL,'[\"user-app\"]',0,'2023-07-12 17:33:52','2023-07-12 17:33:52','2024-07-11 12:33:52'),('9fb7f2095e4fe761c26dde6a44b8974b4e164cd134e054c3bce0553a0c32ae094289156e134856ec',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 20:54:09','2023-10-05 20:54:09','2024-10-04 15:54:09'),('9fdd7ee42b4a783ed32b8c0590fc620ce1ea58fc41a85053b0f62ae729588084e1274c1a9abb6900',503,1,NULL,'[\"user-app\"]',0,'2023-06-30 19:17:33','2023-06-30 19:17:33','2024-06-29 14:17:33'),('9fed244143dd71b1065631622f4166975df0f543d69f102705abe9ab94322650e2311b929a2d1508',2,1,NULL,'[\"user-app\"]',0,'2023-03-27 18:47:07','2023-03-27 18:47:07','2024-03-26 15:47:07'),('9ff8fca80ee181a087f3d1b9fb154ccba1a6a1c7fb23d37e3e8945cb4508f8e59702368a014f6641',2,1,NULL,'[\"user-app\"]',0,'2023-08-29 02:08:51','2023-08-29 02:08:51','2024-08-27 21:08:51'),('9ffa94ffe6a3dc0c1f5a32d8002fd3c5b2a02bcff62e3b045031547a7a53025a2683dadbad2e9b79',1211,1,NULL,'[\"user-app\"]',0,'2023-03-29 17:07:29','2023-03-29 17:07:29','2024-03-28 14:07:29'),('a0004708db00022ada9820bf81d493f0c8e23dacf224a3b3f5189f27b33aa8b61b84c74e9c60ddf0',1484,1,NULL,'[\"user-app\"]',0,'2023-05-19 18:35:49','2023-05-19 18:35:49','2024-05-18 13:35:49'),('a0084c8094b8f0e531d0810a8f7adbcf98b649c2d70b1be22c8594306eb53c5788c52575488996b5',1845,1,NULL,'[\"user-app\"]',0,'2023-07-31 21:09:33','2023-07-31 21:09:33','2024-07-30 16:09:33'),('a015ddc8a7233749c909003432043f35498c48a1ba9d6220a5f5762b01bba6fb513a16e1af994810',1568,1,NULL,'[\"user-app\"]',0,'2023-06-20 00:40:06','2023-06-20 00:40:06','2024-06-18 19:40:06'),('a01633f6dfbeaa289778c8a0d32acc0e391b539ff5329c9e6114bb5d0fc581924654f26b3a28a9c6',8,1,NULL,'[\"user-app\"]',0,'2023-02-09 09:00:43','2023-02-09 09:00:43','2024-02-09 06:00:43'),('a024e6a8770449073c6f834d1f30be72e450ae203c35133b9412a0be581241e9467a11b3b85e118a',1052,1,NULL,'[\"user-app\"]',0,'2023-04-15 20:47:20','2023-04-15 20:47:20','2024-04-14 16:47:20'),('a0261612b721dbe81bec14a3fa36ba65cae347a2079a364b1be37c0dc24912bb021c9f2c74994004',251,1,NULL,'[\"user-app\"]',0,'2023-09-07 18:28:41','2023-09-07 18:28:41','2024-09-06 13:28:41'),('a02a38988b5589c84d16c92cac9a18bb02d423b1de35bee82ff411f010eb5d120148eb934c559dfa',1706,1,NULL,'[\"user-app\"]',0,'2023-07-06 17:22:07','2023-07-06 17:22:07','2024-07-05 12:22:07'),('a02d8a653027633d65f97be5b7a4d308a98a16da0b5c19efb392bb00e34cce2a94f6bbb86928f680',287,1,NULL,'[\"user-app\"]',0,'2023-01-27 11:19:39','2023-01-27 11:19:39','2024-01-27 08:19:39'),('a0330f03630b0a9581f62ea8bbcb222b15daead652b951393345b7717f347b4543aa55e398341561',1259,1,NULL,'[\"user-app\"]',0,'2023-08-25 02:37:55','2023-08-25 02:37:55','2024-08-23 21:37:55'),('a0399074599d4ff73f6a2b5b8c9596bd9f433d330558d6e82e6198f247e551550bc1aa78b148b25f',1269,1,NULL,'[\"user-app\"]',0,'2023-04-17 23:30:09','2023-04-17 23:30:09','2024-04-16 19:30:09'),('a03a61a3e110a07b830260c9191a24a3606edd7913084e481896e36fa45d72c1ba59e9f6575e8ee6',2,1,NULL,'[\"user-app\"]',0,'2023-05-27 13:51:23','2023-05-27 13:51:23','2024-05-26 08:51:23'),('a03adfdaf61e0cf64ff680cd6b288bf44d3e98688c83f13c77c3d64c6a827bd7f144986dee6c0c56',1070,1,NULL,'[\"user-app\"]',0,'2023-02-24 16:13:52','2023-02-24 16:13:52','2024-02-24 13:13:52'),('a03c043e62cf013fe279529079b94ecdc3a0f1daac3c190f7f67f311debbd367fe27151673fa8047',1605,1,NULL,'[\"user-app\"]',0,'2023-07-08 21:48:10','2023-07-08 21:48:10','2024-07-07 16:48:10'),('a068a7c204f791f4f63a3f5ae4dcf85a07e059882f3437eb5975cb1d8ff1fef6dca64a70524676df',1419,1,NULL,'[\"user-app\"]',0,'2023-05-25 18:39:47','2023-05-25 18:39:47','2024-05-24 13:39:47'),('a06efa2018257225ab256a13f9d3d88764e0e9d9548f59308c5a8525aa3e05908f2c352d1d21c1ba',2,1,NULL,'[\"user-app\"]',0,'2023-04-24 03:37:29','2023-04-24 03:37:29','2024-04-22 23:37:29'),('a08cc56759dde8b57129520cd786dfcdd42a5d6d6c964f6261aefab8a7e8e5e121164d5660ca56e7',2,1,NULL,'[\"user-app\"]',0,'2023-03-18 18:36:46','2023-03-18 18:36:46','2024-03-17 15:36:46'),('a0a0c0aeebe6faa0b766a483c8f96ab76605b38030c7ce307948536f04575d2977f41756f75ee233',611,1,NULL,'[\"user-app\"]',0,'2023-01-30 17:46:32','2023-01-30 17:46:32','2024-01-30 14:46:32'),('a0a6c69944d635e0143eb8520b88e0d23cc65e361ea8f485e01e4682d1116713b50123808eecf419',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 15:44:01','2023-09-21 15:44:01','2024-09-20 10:44:01'),('a0be431ae75b0df806e1445d1a2f32ab9b8ee6fdc6ac0d893150c23f6a53e1769428de00947ee2af',2007,1,NULL,'[\"user-app\"]',0,'2023-09-17 18:41:01','2023-09-17 18:41:01','2024-09-16 13:41:01'),('a0c1c6d41b2c3a76bcdc68ab85374d747f15d35782abd148b46a3d7d08c74c06597b05c7bd5a1181',1578,1,NULL,'[\"user-app\"]',0,'2023-06-17 03:23:38','2023-06-17 03:23:38','2024-06-15 22:23:38'),('a0cfd37bf1ea07fc436b17480c6d1832b50adc7b8f2718458e46921699de0d8bd30c32828ed82439',1591,1,NULL,'[\"user-app\"]',0,'2023-06-18 01:45:47','2023-06-18 01:45:47','2024-06-16 20:45:47'),('a0e58108ed2cb9c794b491db927990e8a8daafa89855f3bd765cdf7a640e7eecff5ebaab7749e795',8,1,NULL,'[\"user-app\"]',0,'2023-02-24 14:46:37','2023-02-24 14:46:37','2024-02-24 11:46:37'),('a0ebe17c3e72809881bf592e823904157dbc0f33cb5dad20ff9e044bfa839c78d95d49c42aac51f3',2,1,NULL,'[\"user-app\"]',0,'2023-06-23 23:11:16','2023-06-23 23:11:16','2024-06-22 18:11:16'),('a0f52d1a15d6f3beb7a6c0cc2a63e53507031de4318ec622f82d396bd34ee0c46fbb71e76d23ca58',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 02:55:27','2023-01-26 02:55:27','2024-01-25 23:55:27'),('a124fd6b538a14d583acfdf4e20704c3f3675bf0a09d7d82791412a27b6e365f8c94274f65aa73c2',318,1,NULL,'[\"user-app\"]',0,'2023-06-15 01:55:05','2023-06-15 01:55:05','2024-06-13 20:55:05'),('a128f07cd0582a7d00bc7c4938ad5cd36fcb7623cedb4c0514c44b103c654b2d1b02f35a887b2c39',1031,1,NULL,'[\"user-app\"]',0,'2023-02-22 12:57:24','2023-02-22 12:57:24','2024-02-22 09:57:24'),('a13fb01f8172d754c74f8285f53861f1dff466f85e25376a798a6385ddfa95cd3efc9afc8dcc558c',255,1,NULL,'[\"user-app\"]',0,'2023-07-08 12:28:39','2023-07-08 12:28:39','2024-07-07 07:28:39'),('a1494cbbc5e5d6ee5aba06e59c4f6d9aef615496022d9a2d32839eda5447ecf2d0ed5b4ec17f1465',911,1,NULL,'[\"user-app\"]',0,'2023-02-12 17:12:52','2023-02-12 17:12:52','2024-02-12 14:12:52'),('a15c2bfc409d183925228704c006500c9d5d7f839e98bfa1ba1f2c210e1a24ef440c0fbfb08fce65',8,1,NULL,'[\"user-app\"]',0,'2023-02-14 06:20:20','2023-02-14 06:20:20','2024-02-14 03:20:20'),('a16f7ae6cc476e330bb77ba859266292517e57f7c77536eb416e3f9c6d44e8cb7c7a75bc59582697',242,1,NULL,'[\"user-app\"]',0,'2023-09-09 22:24:29','2023-09-09 22:24:29','2024-09-08 17:24:29'),('a19cd4e493606dba077bc0fdf23c4b3fd5055c09cfcd4be93352afa71fb99a71bd3b617cc7d33ef4',1193,1,NULL,'[\"user-app\"]',0,'2023-03-25 03:52:11','2023-03-25 03:52:11','2024-03-24 00:52:11'),('a1a7f0b005832cc305f191f270536f7d066b0d2c65e92adbd8b9348a31a1a88d47ee843cc356ee6a',1605,1,NULL,'[\"user-app\"]',0,'2023-07-06 01:33:28','2023-07-06 01:33:28','2024-07-04 20:33:28'),('a1c8edb91141c7dd724f198afeff0649ba7840e6db56443cdfe8872701e86c230b6211c23024adbd',2,1,NULL,'[\"user-app\"]',0,'2023-06-24 17:33:29','2023-06-24 17:33:29','2024-06-23 12:33:29'),('a1c963ecc6a26bcb90127348d969d45528c18d588ca93969701c912c77b5c0f4c4f28959130d8594',563,1,NULL,'[\"user-app\"]',0,'2023-03-29 23:13:50','2023-03-29 23:13:50','2024-03-28 20:13:50'),('a1eaf349ffab8ef27038818ea49d79ec0ba06fd2653938e3d920649d939c1e85bff637c1c51bf9c5',798,1,NULL,'[\"user-app\"]',0,'2023-01-29 18:19:58','2023-01-29 18:19:58','2024-01-29 15:19:58'),('a1f7f9fadacbab63f0d41c826f2b13ff0506f099020bd263ea78b7b8a3d605e3dc3609aef15cf674',1186,1,NULL,'[\"user-app\"]',0,'2023-03-24 16:27:16','2023-03-24 16:27:16','2024-03-23 13:27:16'),('a212eecdc11d843403695627dfea24b48a924ad165eaba78ac5bb48f22bfbd496ce9af5c23069273',1989,1,NULL,'[\"user-app\"]',0,'2023-09-29 19:48:27','2023-09-29 19:48:27','2024-09-28 14:48:27'),('a2175e6904ead90130c57662645e489124b6d4d6474578aaaca15250c7d8b8944783708fa31abe7c',173,1,NULL,'[\"user-app\"]',0,'2023-04-12 16:39:10','2023-04-12 16:39:10','2024-04-11 12:39:10'),('a223a83144a1a257038feb68fe3c3dccbb3981aef8d22186f32f97da6fad1d515d15c6b6263b2ae8',2,1,NULL,'[\"user-app\"]',0,'2023-04-17 00:45:31','2023-04-17 00:45:31','2024-04-15 20:45:31'),('a22466815dba5b77a4a6d7070d34280363c68e47fdeb5c02d536ab76c0115ad0f21312a75f40521a',968,1,NULL,'[\"user-app\"]',0,'2023-02-17 23:22:43','2023-02-17 23:22:43','2024-02-17 20:22:43'),('a225fd6ee16c1a5d2073f659a0ad2c3a138bb489cdb1a7837bd4ad3d52782308685c1ad3885cd0fe',2,1,NULL,'[\"user-app\"]',0,'2023-02-12 16:00:18','2023-02-12 16:00:18','2024-02-12 13:00:18'),('a22b9d0675523b620c9b4c3196ced20eb30939dfca604d0f28fdd549788b4bdd5d3d9baa45d14513',63,1,NULL,'[\"user-app\"]',0,'2023-09-30 03:36:46','2023-09-30 03:36:46','2024-09-28 22:36:46'),('a24a099e3db2ac0c67be98d6415869487c40630e6b5ef2fb1dda5973883746e9760188e311f02457',1324,1,NULL,'[\"user-app\"]',0,'2023-04-24 18:02:03','2023-04-24 18:02:03','2024-04-23 14:02:03'),('a24afc603f1a5d3940920b0a26bf9c1bf4294c22150aca9a5b2dce13bec31ae48a169a4453fc4570',914,1,NULL,'[\"user-app\"]',0,'2023-02-13 11:09:19','2023-02-13 11:09:19','2024-02-13 08:09:19'),('a25aef260646f4c2723d7faa0956f83933c0b3b41d50cca15cf410dbf178f0200eeeb733e2493f57',2,1,NULL,'[\"user-app\"]',0,'2023-08-26 20:47:52','2023-08-26 20:47:52','2024-08-25 15:47:52'),('a25dbce1ea13a34d1ba24dfa28e82b5b39ee83c35ccb5c741d951747ed6da808e5b3ce275328f526',2,1,NULL,'[\"user-app\"]',0,'2023-04-27 22:07:52','2023-04-27 22:07:52','2024-04-26 18:07:52'),('a25ec4d7ca1b775828512fdbdfd19bd47420718a9f5efd4b216ab147bc9f721a955fe7f026aeed15',1443,1,NULL,'[\"user-app\"]',0,'2023-07-12 12:51:55','2023-07-12 12:51:55','2024-07-11 07:51:55'),('a26255d63ad4db1d3d8faa69a6ba91e7e9116e83d933379131231ed7ba6619d4eb5d0c2fd9ec3361',2,1,NULL,'[\"user-app\"]',0,'2023-09-17 23:13:29','2023-09-17 23:13:29','2024-09-16 18:13:29'),('a26e5e5183decac1c1e4c8ff6e0fc09ee972dd98e54d00276ffe2fa993d7ccd05dca63727a9ad33a',2,1,NULL,'[\"user-app\"]',0,'2023-08-09 01:51:24','2023-08-09 01:51:24','2024-08-07 20:51:24'),('a27bd3e183003a38990a52e5e516702639438592d3868c2aba63db359535a07e3d4c23cc137f625d',2,1,NULL,'[\"user-app\"]',0,'2023-04-21 19:57:51','2023-04-21 19:57:51','2024-04-20 15:57:51'),('a2a1193e865c250149a7816e09ef93544352f52e14ec5af104acdf1856d56b45e370867fe73b7e04',1397,1,NULL,'[\"user-app\"]',0,'2023-05-23 20:22:59','2023-05-23 20:22:59','2024-05-22 15:22:59'),('a2a56ab413a1709031de1d05724ad9c440b07b5eb1ad60c5e28a1d6dec85072c98f33a9b8cbf25f1',314,1,NULL,'[\"user-app\"]',0,'2023-01-27 20:52:55','2023-01-27 20:52:55','2024-01-27 17:52:55'),('a2acfbe75efa25a072c8b9b18fa26c78dbcbea9c6a53bcb8ddbcb57b8c61b982bc98eea226576b3a',1801,1,NULL,'[\"user-app\"]',0,'2023-08-25 12:21:26','2023-08-25 12:21:26','2024-08-24 07:21:26'),('a2b94907bfccc1dda423d81b0f6bf261bc3d21e5f097b929f08bc46a5d6cdbbc7403e97298d08fb0',1562,1,NULL,'[\"user-app\"]',0,'2023-06-13 21:29:31','2023-06-13 21:29:31','2024-06-12 16:29:31'),('a2bfe3c615c343d904b0ea16e20b48983f7ede8eb9c6a37c872ffbc6f8054a7ae505456b1719e324',25,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:29:26','2023-01-25 12:29:26','2024-01-25 09:29:26'),('a2c9e4c9ee256e1a3c65a6a1bceb07c2e1d0399ca5b3eecc026d839edc7740c190cec4d338a1f4a0',1466,1,NULL,'[\"user-app\"]',0,'2023-06-03 16:35:03','2023-06-03 16:35:03','2024-06-02 11:35:03'),('a2f5840a9c5ce3d26a57a9508f3331b7d22f9854768b521963314174cd3cd0a307cdadf6036434bd',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 21:08:45','2023-09-04 21:08:45','2024-09-03 16:08:45'),('a2f7a41ca071ceda8aa4f70ef7725c6741461ce01cf40c6d2f147c671100fc3d4545ccea52aaae81',2,1,NULL,'[\"user-app\"]',0,'2023-07-22 15:53:00','2023-07-22 15:53:00','2024-07-21 10:53:00'),('a30bba08435b3828c06b434af35f995e9e3956f1758536400a1428178bd350bdc68135991223efba',850,1,NULL,'[\"user-app\"]',0,'2023-02-03 13:16:19','2023-02-03 13:16:19','2024-02-03 10:16:19'),('a31778d2309194c63c40e834bf5584c6f6a0a5bb08e34d8133b446c88784d2aa7fffdb5fb7ca3117',917,1,NULL,'[\"user-app\"]',0,'2023-05-06 01:06:47','2023-05-06 01:06:47','2024-05-04 21:06:47'),('a399680db128bb44a47802bb6c8f02bcbd45c743f6751b8c28b4a645718cb2425e01dbc4a3c73118',1910,1,NULL,'[\"user-app\"]',0,'2023-08-29 03:19:30','2023-08-29 03:19:30','2024-08-27 22:19:30'),('a39cead7e02ba6c9f98b3170aaa676cf8cd25857ae8baa173b00a2509e4b5fb97926d1088efe9990',1539,1,NULL,'[\"user-app\"]',0,'2023-07-14 00:47:37','2023-07-14 00:47:37','2024-07-12 19:47:37'),('a39da6a71891f037abbde1296ad0f580635ac72f7638b2c5693b94e826dab3a44bfd3de9ca252570',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 20:53:24','2023-03-29 20:53:24','2024-03-28 17:53:23'),('a3a0dc959577761c2c9b4cffad27be7507dac97382ee86a63084394e8937d57a63e7bee11d3bcf8e',120,1,NULL,'[\"user-app\"]',0,'2023-02-23 20:32:05','2023-02-23 20:32:05','2024-02-23 17:32:05'),('a3a819d510982104db44b33089f61907cc25a180db9fa81e67c2771eee91b125ce2d24dd87a3a8a5',955,1,NULL,'[\"user-app\"]',0,'2023-04-26 20:32:08','2023-04-26 20:32:08','2024-04-25 16:32:08'),('a3b7249dbb17bcbb6db81c789aa684aaacc33fe8106fe8d9954f0ae681379ebfec9be0e72d4b9751',831,1,NULL,'[\"user-app\"]',0,'2023-02-01 12:31:04','2023-02-01 12:31:04','2024-02-01 09:31:04'),('a3d8e8429af9b5bbed0e3abcff0df7ede2c390503a7529893619faaba48f3f9be8f42e06ed42072b',744,1,NULL,'[\"user-app\"]',0,'2023-01-26 18:04:25','2023-01-26 18:04:25','2024-01-26 15:04:25'),('a3dedac472bafec5100e5e9c81e8f270e515b431bfbcaa95bd513a4c256555210a17e85900f12972',342,1,NULL,'[\"user-app\"]',0,'2023-03-07 14:12:38','2023-03-07 14:12:38','2024-03-06 11:12:38'),('a3e01bf8057ea3c261086af093a8825dd4208daae9c4286ae925d1fc97897ea702b5fc48fe0753b3',2,1,NULL,'[\"user-app\"]',0,'2023-03-03 22:57:11','2023-03-03 22:57:11','2024-03-02 19:57:11'),('a3e217933f358e0b1a2efadb86d3c30cf0d34ff0b9f1b67820ba31fadbcaf8d34b8cfc1c4d992f4e',1456,1,NULL,'[\"user-app\"]',0,'2023-06-30 22:59:13','2023-06-30 22:59:13','2024-06-29 17:59:13'),('a3e2eecfec660908db7db0349431dac158ef6fd4f835f751d9dda4b2a7885682eb126b320f24acbe',637,1,NULL,'[\"user-app\"]',0,'2023-01-25 05:18:05','2023-01-25 05:18:05','2024-01-25 02:18:05'),('a3f84f5293a41eaff1de847d45234616ef82e99b8ff1b8da4a05ddce9c9a110073b9c9700c089514',1517,1,NULL,'[\"user-app\"]',0,'2023-05-31 16:56:35','2023-05-31 16:56:35','2024-05-30 11:56:35'),('a40564931ee8e57c12b5623bbed8e1168b1da8a9f56c87da149b2bc5119e89b606e1e91dfffb81f6',132,1,NULL,'[\"user-app\"]',0,'2023-10-04 12:36:27','2023-10-04 12:36:27','2024-10-03 07:36:27'),('a436183f4f734d43152760099b53ae70dc3722f99f79920e14e715bfcdf0c10c80e1d718b09fb986',953,1,NULL,'[\"user-app\"]',0,'2023-06-05 19:16:50','2023-06-05 19:16:50','2024-06-04 14:16:50'),('a44a5792e90af59e18bdebfca8fd09457e4a3ec73a8ec6fbdfab9cb87e383c7e9cc72f1cbc155e98',53,1,NULL,'[\"user-app\"]',0,'2023-09-20 13:07:51','2023-09-20 13:07:51','2024-09-19 08:07:51'),('a44d1eba8136e2161db200845874c71f40a17bbe7fdd1cb281ee49fa5dddf982a2660824d110826f',375,1,NULL,'[\"user-app\"]',0,'2023-02-03 00:15:24','2023-02-03 00:15:24','2024-02-02 21:15:24'),('a44dbe3847896538aa9494c87041815f8c339a6abb0a161d8df84814fc86f65a40ab624e9f2565c6',2,1,NULL,'[\"user-app\"]',0,'2023-04-14 15:31:14','2023-04-14 15:31:14','2024-04-13 11:31:14'),('a4600f8ef51e2673ceb736ccb282016a8ac8e605117135848e4080a96c566bfaf46af86ef208f83d',343,1,NULL,'[\"user-app\"]',0,'2023-04-30 19:57:47','2023-04-30 19:57:47','2024-04-29 15:57:47'),('a46ac7cfa83de5eef4504668581641d1e5651ad6d01737dad006aefbefdcd81d2d9410d24c14594b',2,1,NULL,'[\"user-app\"]',0,'2023-07-27 18:48:18','2023-07-27 18:48:18','2024-07-26 13:48:18'),('a486cf4dd4696a0af602a976eebfcd35a56ebb063811866f681afc3dccbdee01acde1d3f185d84ae',52,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:38:21','2023-01-25 13:38:21','2024-01-25 10:38:21'),('a4b23c01f735a2f735691240474fdeff9e22b292b884425b64a628f5dfe4170a9e6e1455b4eb0155',2,1,NULL,'[\"user-app\"]',0,'2023-08-22 19:40:53','2023-08-22 19:40:53','2024-08-21 14:40:53'),('a4bc1d159670e9ff1ff3ab08eaf2ea829e302d8f13e979b5fce3f4315d2a9462376927a12cd7b6f0',1785,1,NULL,'[\"user-app\"]',0,'2023-07-19 19:29:03','2023-07-19 19:29:03','2024-07-18 14:29:03'),('a4d54c238688fd7d1d2ed94d336ea6dd3f2a350f0d6a9f7fbc2d88c67a90017bfa4d54f567927e76',847,1,NULL,'[\"user-app\"]',0,'2023-02-02 19:30:06','2023-02-02 19:30:06','2024-02-02 16:30:06'),('a4f831b81e9533d0c68152959944fb965a52520927e2ce8d4d32c53bba051f300b0fc765e52f877d',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 18:21:57','2023-10-05 18:21:57','2024-10-04 13:21:57'),('a5190cb6cc24cc036e3ff76d2fa5b45e547b688078ada604bff7cb12acf279319c0c74e563bf8dbf',168,1,NULL,'[\"user-app\"]',0,'2023-08-09 20:40:10','2023-08-09 20:40:10','2024-08-08 15:40:10'),('a52c37ec0d7f808c4e4f6c0852286108305674fe441db11f1595ad6aecd1a2b46cb84bc16747b91c',2,1,NULL,'[\"user-app\"]',0,'2023-10-04 10:22:00','2023-10-04 10:22:00','2024-10-03 05:22:00'),('a53110f606d6d272cd77d24eaac0e622db224058c2bda680f0d5849b08527065707808062f6de995',674,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:59:27','2023-01-25 15:59:27','2024-01-25 12:59:27'),('a53bf90ba6c61ffd55478d53a452c43bdafcce4c3f291fb8ac5c6c7fd40b2a15f2ff2523d65a0d7a',2,1,NULL,'[\"user-app\"]',0,'2023-08-03 20:03:52','2023-08-03 20:03:52','2024-08-02 15:03:51'),('a578f7195e4352fb9565ee432c215d5451c456a5309e7b66f5c265d6eb16f47287d70d0c6e00a2a2',1621,1,NULL,'[\"user-app\"]',0,'2023-06-22 19:28:31','2023-06-22 19:28:31','2024-06-21 14:28:31'),('a5795022edf569e620fbebbc19c0c7772aff8982d2136fbda67db7201a20dfacfff74e7438e928e0',1076,1,NULL,'[\"user-app\"]',0,'2023-02-25 01:56:17','2023-02-25 01:56:17','2024-02-24 22:56:17'),('a57f123bbabb079d4a98c96f90a3153692af96c042603676c79cb3105eaba6f842db9262deff0516',1018,1,NULL,'[\"user-app\"]',0,'2023-02-26 02:24:45','2023-02-26 02:24:45','2024-02-25 23:24:45'),('a58377b9702f29a0001bbb96a618d0a6d6690f39f0728b1ed594f50eb434ad79a1c2a083c7272050',2033,1,NULL,'[\"user-app\"]',0,'2023-09-23 02:38:24','2023-09-23 02:38:24','2024-09-21 21:38:24'),('a591a92dafa653c305b443be80e6b43d599a8c19b7e64d4de759f1db786fe71660e49350a99e54f7',2,1,NULL,'[\"user-app\"]',0,'2023-09-20 19:04:55','2023-09-20 19:04:55','2024-09-19 14:04:55'),('a5a9c28c66c0297b1af349cc64094c760e72cec1b4f6b2bbea3ea4132fcf4771e2c63426d99c2abe',1176,1,NULL,'[\"user-app\"]',0,'2023-03-21 14:12:38','2023-03-21 14:12:38','2024-03-20 11:12:38'),('a5bdea5b88b35deec4630271c532992c8376bb70801add26650f1f7bd7017d7f86d25e410ab4cc18',2,1,NULL,'[\"user-app\"]',0,'2023-08-17 15:21:54','2023-08-17 15:21:54','2024-08-16 10:21:53'),('a5c5fa5bf13aa410c7f9e481e1a47fec37ea174f0c7db39e920ff1f46f1122bc8faf6c6aa2a4cbeb',125,1,NULL,'[\"user-app\"]',0,'2023-01-30 21:49:48','2023-01-30 21:49:48','2024-01-30 18:49:48'),('a5cdaaa656ac4f50ecfc890d3b3df74d961c2c4bc2f5f073332ea70062cc913064582ae896e62206',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:46:19','2023-01-25 17:46:19','2024-01-25 14:46:19'),('a5cdcd3ca9951d994e81aacc8d684ecc9109476ae60cc52d74b76e87fbabbe5ad9a14f7860271d2f',2,1,NULL,'[\"user-app\"]',0,'2023-02-15 22:17:08','2023-02-15 22:17:08','2024-02-15 19:17:08'),('a5feafe02d2a96c42ad4ce5bc4684aa1118453eb4dabac5c921d792e1b326889e5f43f0ea8cd4a50',2,1,NULL,'[\"user-app\"]',0,'2023-06-28 02:09:20','2023-06-28 02:09:20','2024-06-26 21:09:20'),('a60b537cbd99d55a3799d872c174e4d530a7390c41e6437844e918a0fc3ed736967f30578b8c89c6',1052,1,NULL,'[\"user-app\"]',0,'2023-04-15 20:32:48','2023-04-15 20:32:48','2024-04-14 16:32:48'),('a6280600c541f14e0d767fc9755e0fd7b875f43ddc2932d1e7c674fb9cc9878ee4fd637dc1f0dbd2',13,1,NULL,'[\"user-app\"]',0,'2023-02-13 21:09:54','2023-02-13 21:09:54','2024-02-13 18:09:54'),('a6333fd5b2183ee9566c51c0edd4ab1f41c17c21fad782f64b90dfdc40f5338f1e83b3073a717fa0',1323,1,NULL,'[\"user-app\"]',0,'2023-04-24 16:50:20','2023-04-24 16:50:20','2024-04-23 12:50:20'),('a649f3eea5b391e07b8cb7cb3a9baa3b75c0a1767e408c4c20171f1d05c7edf721d356dd56aecbd5',2,1,NULL,'[\"user-app\"]',0,'2023-08-28 21:20:31','2023-08-28 21:20:31','2024-08-27 16:20:31'),('a64ca1bb326492ea4682a1a417a0b1b43aac0866a05115fa5ab715519b6fa83f9168907cfedcee76',626,1,NULL,'[\"user-app\"]',0,'2023-10-09 17:10:51','2023-10-09 17:10:51','2024-10-08 12:10:51'),('a653984b4a93d8f07f59f46fba81807771fd10e6cd1d8c7c25590b2c1820424b67e0905555e4b2e5',2003,1,NULL,'[\"user-app\"]',0,'2023-09-16 02:18:12','2023-09-16 02:18:12','2024-09-14 21:18:12'),('a662fbaf6975a1fca9d800406d420abc6cf2a35fced3cd63f4362c852da2d88f51b4ac084352b609',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 16:46:28','2023-09-21 16:46:28','2024-09-20 11:46:28'),('a6667e2805c19f8ed8f9aa15908e30a8388e69babfd53a5e28b6a979939a8474b3c22cec73907200',707,1,NULL,'[\"user-app\"]',0,'2023-01-29 19:12:02','2023-01-29 19:12:02','2024-01-29 16:12:02'),('a679db3be4b38abfcf36c19b7dcb4507fe92feaf0a28fe8e79ce0245a74272fdb4ad22f23581f9dd',275,1,NULL,'[\"user-app\"]',0,'2023-09-14 13:19:58','2023-09-14 13:19:58','2024-09-13 08:19:58'),('a6969df39f61532e762467430ca1f249388086aa99f0f9114553731f1844cf08507351a356d3557a',364,1,NULL,'[\"user-app\"]',0,'2023-03-30 23:10:56','2023-03-30 23:10:56','2024-03-29 20:10:56'),('a69f68700ca21405a8cb68502c0eef348f8fcc2fc6a5e07b49a696d5f5570b41a5cf547531bd4129',81,1,NULL,'[\"user-app\"]',0,'2023-03-07 21:06:50','2023-03-07 21:06:50','2024-03-06 18:06:50'),('a6aed2df5d93a7a600fd10e729fad2e4e125891bc0410c52be614dfeba1f9cdccc884754957fe1ff',1630,1,NULL,'[\"user-app\"]',0,'2023-06-23 23:05:34','2023-06-23 23:05:34','2024-06-22 18:05:34'),('a6baa5a684bff757a0ec6e60f1bee3f36405bccf90f9225fa5e5d8dcb1135dbc57f5736f722b7790',653,1,NULL,'[\"user-app\"]',0,'2023-02-25 22:37:18','2023-02-25 22:37:18','2024-02-25 19:37:18'),('a6c6e67d3cc4c1e490e39f714607e860d37983dcd54ca2c0e7e5eb30f2cb034a596687a59785127c',348,1,NULL,'[\"user-app\"]',0,'2023-02-01 13:32:16','2023-02-01 13:32:16','2024-02-01 10:32:16'),('a6cbd236ea2c6d9ff8303a829ee1ed27bceae68a9682512f2dcf73939417877308844b7d1fcaa07e',2122,1,NULL,'[\"user-app\"]',0,'2023-10-07 23:59:02','2023-10-07 23:59:02','2024-10-06 18:59:02'),('a6e79f7b13bf1fd568039346cbc193a7715342e95c6df6524a24c69684990c0fb25626236836a042',166,1,NULL,'[\"user-app\"]',0,'2023-01-28 11:20:05','2023-01-28 11:20:05','2024-01-28 08:20:05'),('a6f08d029a7e63aadff79b7637ff9b34a32d199207922cc93fa903be509cee2c073b3b52dd57e98c',1058,1,NULL,'[\"user-app\"]',0,'2023-10-07 13:55:12','2023-10-07 13:55:12','2024-10-06 08:55:12'),('a6f4a3e8f2ac973c92368764a08a131f24efb6578ab64a9907d2a2334ee2807a34ee36a794e56e43',474,1,NULL,'[\"user-app\"]',0,'2023-09-06 22:29:57','2023-09-06 22:29:57','2024-09-05 17:29:57'),('a71c4c4e62300d74afed2a476a4dc8e112e960ab3e143b1fe69a95a99ab319664455ffe3afd48382',198,1,NULL,'[\"user-app\"]',0,'2023-04-18 21:52:14','2023-04-18 21:52:14','2024-04-17 17:52:14'),('a73cd780a2d8e468cac0ebdb45e6e1f813cfe61f59f6d4db31ddbb1a39c7032b148ad3fdfcfb3dd9',1989,1,NULL,'[\"user-app\"]',0,'2023-09-13 23:21:48','2023-09-13 23:21:48','2024-09-12 18:21:48'),('a7403fbf693a370376eeb4ccf82973ccec5720ee0c051b79bf4f646592e0c9aeb7b7779fe7eaf965',467,1,NULL,'[\"user-app\"]',0,'2023-02-15 15:49:16','2023-02-15 15:49:16','2024-02-15 12:49:15'),('a7666b9e48ce6a1fc6a5c62f3cd6cf0ab563adbf9e3e413ddd33d87dbd64f53dd24a62fc680a48a9',1622,1,NULL,'[\"user-app\"]',0,'2023-06-27 00:34:58','2023-06-27 00:34:58','2024-06-25 19:34:58'),('a76770a1e1d874546f0cffd6144ebde47f7d2dd59ae9bb0df78ecd46888c2ddc4444ac10e11f49b7',767,1,NULL,'[\"user-app\"]',0,'2023-04-08 21:39:16','2023-04-08 21:39:16','2024-04-07 17:39:16'),('a76a6af00ddf11f2ebc4d545cf25e7c2130a3818d1c3f2418054338294ac30e4e471b694af8da389',1615,1,NULL,'[\"user-app\"]',0,'2023-06-21 22:06:29','2023-06-21 22:06:29','2024-06-20 17:06:29'),('a77afaed00b2dac8dfe644236c822ca74f294fb67e819f39f16916c0f440ae86240a63c4b20569f7',142,1,NULL,'[\"user-app\"]',0,'2023-10-07 22:51:49','2023-10-07 22:51:49','2024-10-06 17:51:49'),('a789345b2e0b6891a81362d870cc33e0bf9ef1666da8f8991423317606af8c835accbae9b346d61c',952,1,NULL,'[\"user-app\"]',0,'2023-06-07 02:59:02','2023-06-07 02:59:02','2024-06-05 21:59:02'),('a79a679675c9a70ea1e1253aae96bb51253a9f6a729ad1cf966b2e64a092c9a6a4eb234a94a674b9',726,1,NULL,'[\"user-app\"]',0,'2023-01-26 13:18:32','2023-01-26 13:18:32','2024-01-26 10:18:32'),('a79c7f9b0f1ae9c36518cee9a25173710f63c9c4a11acabc4508eff9e1bbdd89bc12db94f66ffa00',2,1,NULL,'[\"user-app\"]',0,'2023-06-04 16:56:45','2023-06-04 16:56:45','2024-06-03 11:56:45'),('a79ff45a73e90c7f7e155934d84bc04f20053d62825c6dd123a0a1ee4ca2099942fcbb768d3b04da',1044,1,NULL,'[\"user-app\"]',0,'2023-02-22 22:02:21','2023-02-22 22:02:21','2024-02-22 19:02:21'),('a7b0f0d7c82cee4c1d3ce1d691bcc4fedcc98300eaec0484505fa2c7bd532f7e9afd0d7be93e8f48',2,1,NULL,'[\"user-app\"]',0,'2023-07-09 16:24:24','2023-07-09 16:24:24','2024-07-08 11:24:24'),('a7b659577426ae3973e3656e1756bbe4a640e3559bba7d0a3e6572f9d63618c76a7c01fa3a0c53a5',1214,1,NULL,'[\"user-app\"]',0,'2023-04-13 16:30:14','2023-04-13 16:30:14','2024-04-12 12:30:14'),('a7e8c4de654d146a88dabc2253fa9a2869411b5397437f55594be3014515cdf89d9704f546e41db3',1217,1,NULL,'[\"user-app\"]',0,'2023-03-30 18:37:21','2023-03-30 18:37:21','2024-03-29 15:37:21'),('a7ed1bd5be27459037f043eb0dc213d08da375b9a32a27c0b01ece3a7bcc40da0d051e4992fd466f',2,1,NULL,'[\"user-app\"]',0,'2023-07-27 20:43:59','2023-07-27 20:43:59','2024-07-26 15:43:59'),('a7f86909ca8ab8044ab82f681a8c835186c11644961b05a723ecd3080d1d67b7d2abb13d51c9d0f0',1871,1,NULL,'[\"user-app\"]',0,'2023-08-09 22:18:20','2023-08-09 22:18:20','2024-08-08 17:18:20'),('a7fe4625193077486bc96645c28bf1a455f4eda1014c823745749277c996d8730f1e7578960e622d',2102,1,NULL,'[\"user-app\"]',0,'2023-10-05 22:03:37','2023-10-05 22:03:37','2024-10-04 17:03:37'),('a80daeea5baca0ce8da0fdeb945aea51877e5621b70d617dc15150b8517e7ae9ef700366bd8746b4',2,1,NULL,'[\"user-app\"]',0,'2023-07-14 14:44:00','2023-07-14 14:44:00','2024-07-13 09:44:00'),('a8100a19731a84b3b434dd928ce76f01e9418debba256d7e01d04cd6d8a30e91376737962b116143',173,1,NULL,'[\"user-app\"]',0,'2023-09-27 11:48:50','2023-09-27 11:48:50','2024-09-26 06:48:50'),('a8245595ba32f7dd9b7a3550884837d36939c5f6e464baee6f58b64a95522b3c38ecfc770edf13cf',1719,1,NULL,'[\"user-app\"]',0,'2023-07-08 02:44:33','2023-07-08 02:44:33','2024-07-06 21:44:33'),('a8259f8f1fe35648a04c3b8cdf46ac3f03dd455bffc275253cea1010a1460d156df4be2a7cd9d60c',1324,1,NULL,'[\"user-app\"]',0,'2023-04-27 22:36:48','2023-04-27 22:36:48','2024-04-26 18:36:48'),('a83298a54f0400d91dd0cbe9bdc22f453596b6c7fc8a3052a211b791fa02270f15a03c8c5737281b',2,1,NULL,'[\"user-app\"]',0,'2023-02-12 19:35:53','2023-02-12 19:35:53','2024-02-12 16:35:53'),('a8532094074de4e1c888094276c32c0ac3907f0588dccfcf7d7b2ee28ed1894555421181de692a0a',1419,1,NULL,'[\"user-app\"]',0,'2023-05-10 22:00:49','2023-05-10 22:00:49','2024-05-09 18:00:49'),('a856eb3e4f7d5fab71b8ff52b5df4a1d6a4249566a3cc08b473263312d1bb3183c641001e289d68d',864,1,NULL,'[\"user-app\"]',0,'2023-02-05 17:04:19','2023-02-05 17:04:19','2024-02-05 14:04:19'),('a859b21d36730a817d5064830815ab67c719503926183433ad9de314b820fec72ebbdab5c895a781',1018,1,NULL,'[\"user-app\"]',0,'2023-03-06 21:26:09','2023-03-06 21:26:09','2024-03-05 18:26:09'),('a8760801178b4d23f83732059d52856bba27271487af2f5ecfdacf4a45c6a579a4863210e7604179',198,1,NULL,'[\"user-app\"]',0,'2023-04-18 21:51:40','2023-04-18 21:51:40','2024-04-17 17:51:40'),('a884c2d03cbac8f9f530a184e83aec33d8d4b242fbfdbd59cc77d5ea9b7160562b730ca1038f1c64',2092,1,NULL,'[\"user-app\"]',0,'2023-10-04 05:14:29','2023-10-04 05:14:29','2024-10-03 00:14:29'),('a895dc4c48f43f32cae9fa7149571ec97d859b78716835ed10e191ed577200559d911cfeefcc016b',1197,1,NULL,'[\"user-app\"]',0,'2023-03-26 00:56:11','2023-03-26 00:56:11','2024-03-24 21:56:11'),('a89b03425f643b525f58f9bb700af4d30df50c69876e8a241639b5e27fd023e8dcd75c851d97dd3f',1076,1,NULL,'[\"user-app\"]',0,'2023-04-26 15:35:26','2023-04-26 15:35:26','2024-04-25 11:35:26'),('a8abd1a53f58143c71cb348ffe91402fe7aaf7d75b0b3cb6e3ba76757a4ec72640906f4b1054e191',658,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:43:23','2023-01-25 12:43:23','2024-01-25 09:43:23'),('a8b48c0eb6004d776d80d15f12c3b58951eb50da28c17900aebfae2362899952d09cea1d16d29fc0',2020,1,NULL,'[\"user-app\"]',0,'2023-09-20 02:25:36','2023-09-20 02:25:36','2024-09-18 21:25:36'),('a8b974f301c76a98aeab7ed13dce85354508f4295a1b2a579f1721301714314ce68d3511c42d5eb4',2107,1,NULL,'[\"user-app\"]',0,'2023-10-07 01:57:03','2023-10-07 01:57:03','2024-10-05 20:57:03'),('a8c660b1ad59187229bce5ef5350a482eadd805262334652facdcfa616eb5842536ba9d0ac18b61a',126,1,NULL,'[\"user-app\"]',0,'2023-01-27 14:19:01','2023-01-27 14:19:01','2024-01-27 11:19:01'),('a8e74b19de7a7b6b4a4d625a69f49e69dcb7c1c93246268abd3fdf4022fb85cf9f6a8952efa65b7b',875,1,NULL,'[\"user-app\"]',0,'2023-02-07 20:57:39','2023-02-07 20:57:39','2024-02-07 17:57:39'),('a8efb1e959470c0e08763816f857f4c363755bb9c2417dce1395d537ef0d7c7ea4c49921a88a2449',1396,1,NULL,'[\"user-app\"]',0,'2023-05-17 03:03:29','2023-05-17 03:03:29','2024-05-15 23:03:29'),('a8f7363527d6831b5796790de09f6037de0934319fc952e1e8aa452581b2b0c9e7a46578da645eb4',782,1,NULL,'[\"user-app\"]',0,'2023-01-30 00:54:37','2023-01-30 00:54:37','2024-01-29 21:54:37'),('a9000a327aa9d76783822daa65efd9f541996a1e2b1226ab21dc29b537f49f111c7bc3975a9b4d0f',851,1,NULL,'[\"user-app\"]',0,'2023-02-03 14:08:29','2023-02-03 14:08:29','2024-02-03 11:08:28'),('a904a49fd1fc4097c9cb75a9203a3cee70d953639ba45a6bde39dca7c9ac42fb3a4dfc34186d2837',2,1,NULL,'[\"user-app\"]',0,'2023-05-09 22:15:33','2023-05-09 22:15:33','2024-05-08 18:15:33'),('a906ad0bcb5daee682863ac4e70bb95096a2e5a2ca9cabeb40f2ec3b0f4df6956bf1217d0a7b52b5',1605,1,NULL,'[\"user-app\"]',0,'2023-07-02 22:44:38','2023-07-02 22:44:38','2024-07-01 17:44:38'),('a90771a8b3bd6eba5713a252fb3ee477d447b1016a1372a84d2ea9c4d63b89fc771c1945659d2edb',953,1,NULL,'[\"user-app\"]',0,'2023-04-30 13:56:29','2023-04-30 13:56:29','2024-04-29 09:56:29'),('a90c8c4d54d452fd9025a650377426e7e95e1da1198b641977be51becc640ebc90d3d0bb27e651a3',920,1,NULL,'[\"user-app\"]',0,'2023-07-31 21:51:02','2023-07-31 21:51:02','2024-07-30 16:51:02'),('a9129a8eda1f84de7b141e8c17a5a291a53b4ca61222ec934c34462e7a9c4cd361a4903ef7f32534',146,1,NULL,'[\"user-app\"]',0,'2023-02-06 18:32:43','2023-02-06 18:32:43','2024-02-06 15:32:43'),('a92277a04c2766f3bbfb4ac5b3d47ca9f04cf4aeedfdf94d7b25ed47e75585439291eeca8af830e4',2,1,NULL,'[\"user-app\"]',0,'2023-05-10 01:07:13','2023-05-10 01:07:13','2024-05-08 21:07:13'),('a93a4a465bc4af009d6064bcb478eae0e0b508c333c80657dea886afee18c047c57086b0a0c7efdb',1071,1,NULL,'[\"user-app\"]',0,'2023-02-25 17:08:29','2023-02-25 17:08:29','2024-02-25 14:08:29'),('a959e7911e559bf4c914fefc74b5a2e70684d27fb38de1882508cc1233de1a86c3035f24078d32cb',2,1,NULL,'[\"user-app\"]',0,'2023-08-27 19:37:28','2023-08-27 19:37:28','2024-08-26 14:37:28'),('a95cecba77a7cefafbf3c22fca5dcf3be721928d260f79a7c69e5269b645200e672616870365366d',1207,1,NULL,'[\"user-app\"]',0,'2023-03-29 15:41:19','2023-03-29 15:41:19','2024-03-28 12:41:19'),('a95e36fe25c03192a4e119649696a297f2541632d9d96aad7a853491257ce05c01eab5db42341a25',2,1,NULL,'[\"user-app\"]',0,'2023-05-27 13:51:08','2023-05-27 13:51:08','2024-05-26 08:51:08'),('a97a25c15748e15c3f2729f7903fd52fb1370ebb88ca0d291ac9d3873b905eb3a17c05a71988fa89',1611,1,NULL,'[\"user-app\"]',0,'2023-09-06 02:31:18','2023-09-06 02:31:18','2024-09-04 21:31:18'),('a980e4f8f3d84c5fd397b6424835edf02872caaac97c0c879952ac99974c2a3f3e7958d09888b381',2,1,NULL,'[\"user-app\"]',0,'2023-08-17 13:43:06','2023-08-17 13:43:06','2024-08-16 08:43:06'),('a9884f040a1c4e4bd35e01568c0bd6f633564510ed143afc3102565817ba367efb1b599a3c0a2ed6',1793,1,NULL,'[\"user-app\"]',0,'2023-07-22 15:59:36','2023-07-22 15:59:36','2024-07-21 10:59:36'),('a9906c96ec3814403e16bb8c1a4de5e79b7d936745fadeab22ae2d7e55be221dd9cbe273bfaf5dfc',1538,1,NULL,'[\"user-app\"]',0,'2023-09-16 20:15:52','2023-09-16 20:15:52','2024-09-15 15:15:52'),('a992feb109c755d9ec3c1c64cb44371a404ac4c2991c2835450e982886483ab1d437a3809fe47d62',8,1,NULL,'[\"user-app\"]',0,'2023-07-26 02:09:06','2023-07-26 02:09:06','2024-07-24 21:09:06'),('a99f3f4698032af110efd697f5b2bb465fe39447740338071bbc837d830a8ad41142067ff7094a4d',1784,1,NULL,'[\"user-app\"]',0,'2023-07-19 00:09:01','2023-07-19 00:09:01','2024-07-17 19:09:01'),('a9a16393653ebcd71c795b5aea6fd88594c34d8d4d78ea6d32da8750b804f86f0303d876a3c7328a',330,1,NULL,'[\"user-app\"]',0,'2023-01-26 01:40:29','2023-01-26 01:40:29','2024-01-25 22:40:29'),('a9a5d9095ec88db9b159902afab1ae26d12b9d2ab2c43b2679b303e07e6c16ccb82e83052f7871e0',1369,1,NULL,'[\"user-app\"]',0,'2023-05-04 23:52:00','2023-05-04 23:52:00','2024-05-03 19:52:00'),('a9a6dee448e9413231bc61be48748577e50d6ba9a4ea38ac2db07f881f7c5cade6fe90dd72627f9a',1268,1,NULL,'[\"user-app\"]',0,'2023-06-03 00:08:07','2023-06-03 00:08:07','2024-06-01 19:08:07'),('a9a7b836f7e574454c252ed29e9dcd51f00ca75781164c49f4d0a5cba064cbb3bc4b278b140c7695',2,1,NULL,'[\"user-app\"]',0,'2023-03-13 23:10:42','2023-03-13 23:10:42','2024-03-12 20:10:42'),('a9b5dffafe69883dd572bb53b42f7cb9f259c205df52d36a957ba648256fe0d4024ae60956f816be',1360,1,NULL,'[\"user-app\"]',0,'2023-05-02 14:51:37','2023-05-02 14:51:37','2024-05-01 10:51:37'),('a9b7e69c379cc41efe18ac6a258cdfc6759919b06fd1a592b5a21464a4417ba800c089cc50561c47',1635,1,NULL,'[\"user-app\"]',0,'2023-10-05 23:40:51','2023-10-05 23:40:51','2024-10-04 18:40:51'),('a9bbf73e5c4402bb77e761b35591a8216b0fbb15ca224462cef2446864c352d3466682cd6099f1f0',1018,1,NULL,'[\"user-app\"]',0,'2023-03-06 21:24:35','2023-03-06 21:24:35','2024-03-05 18:24:35'),('a9c61f9c15b7d1a01567766b6107daade71afc240eda6a0a2450b9bdc3dcdeccfe438b99f44d5102',2,1,NULL,'[\"user-app\"]',0,'2023-08-26 04:06:34','2023-08-26 04:06:34','2024-08-24 23:06:34'),('a9cd7074f27c346f24e9225081f883bc4ddf7d4f8b841f5167d41b8ee6c2ad21f6788c4c17a99227',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:27:06','2023-01-28 19:27:06','2024-01-28 16:27:06'),('aa0e45ef03ea0d71e8b5d35404f2a20b46d945bca93a4bc8821a35f9aa5e95ab13bc9868a4b18b99',1237,1,NULL,'[\"user-app\"]',0,'2023-04-08 15:06:07','2023-04-08 15:06:07','2024-04-07 11:06:07'),('aa22efe913dcec64aace0a4007f78bfd7eed07bdc6b5b2a3f74c647402338ec2772477c167405ff6',414,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:59:57','2023-01-25 18:59:57','2024-01-25 15:59:57'),('aa2716440cd1b8eb94a2851ea173c21716adbee27afd69eefff9b2324ba961f06ecee6e32a891d02',1414,1,NULL,'[\"user-app\"]',0,'2023-10-03 11:48:00','2023-10-03 11:48:00','2024-10-02 06:48:00'),('aa4d16f295c2fdbd2b43e9c58026cb746de9ee232046095cebad178627611b6b49b4068bdeebbbea',860,1,NULL,'[\"user-app\"]',0,'2023-02-04 23:15:57','2023-02-04 23:15:57','2024-02-04 20:15:57'),('aa574a524177548fbf55b9daf77d1da8db7ce67e12b13ae31ac372a98cf8952b28715382ec27655e',1274,1,NULL,'[\"user-app\"]',0,'2023-04-19 14:37:08','2023-04-19 14:37:08','2024-04-18 10:37:08'),('aa5b7e3a7f283def0e0578d4f97157e1c67974b09b34a0946fb634d1eff1b2dd078d5643c756661e',1183,1,NULL,'[\"user-app\"]',0,'2023-03-23 17:29:38','2023-03-23 17:29:38','2024-03-22 14:29:38'),('aa65c789c6a898f384b5f926a94ebb60dddf846575e1e2c922fea4727bee7cb41cd4d68ffc0493fa',583,1,NULL,'[\"user-app\"]',0,'2023-01-29 19:11:17','2023-01-29 19:11:17','2024-01-29 16:11:17'),('aa6634095f74ca3b6903a6a935cc3dc2fa4de56de908b6488874015600ded79690d6017b5640276f',212,1,NULL,'[\"user-app\"]',0,'2023-03-24 21:54:27','2023-03-24 21:54:27','2024-03-23 18:54:27'),('aa6ef8526d74918753dad0c50260f9accdbbf6abf4ee6d57362b35e1bbd03ce77d829aca6345322a',1273,1,NULL,'[\"user-app\"]',0,'2023-04-19 01:11:50','2023-04-19 01:11:50','2024-04-17 21:11:50'),('aa7b3ca55111c27d8fc7a476794d97d74403d85bb4fbc5851138021060b98f7276f34934137bb0fc',517,1,NULL,'[\"user-app\"]',0,'2023-06-17 01:46:07','2023-06-17 01:46:07','2024-06-15 20:46:07'),('aaa349a5d259502dd94e6c74965e852060d105fd98eb8272d8bbe5c975b46edec5879e3d76c39ad6',500,1,NULL,'[\"user-app\"]',0,'2023-06-20 21:01:15','2023-06-20 21:01:15','2024-06-19 16:01:15'),('aaa6bd301e6d59acc93750ca032fda4feea2f34787d95b8957028770d4b48242243fb869caf7a64e',2,1,NULL,'[\"user-app\"]',0,'2023-10-06 14:50:21','2023-10-06 14:50:21','2024-10-05 09:50:21'),('aaccd624adfcb6de5442b9ab275eb6da073f68a2e2b0d93fec35db60f9e1f63165824a870cd4a4c2',820,1,NULL,'[\"user-app\"]',0,'2023-02-22 11:35:03','2023-02-22 11:35:03','2024-02-22 08:35:03'),('aaf9bc13888bb587a2d4182a8daaf7ee0a621f4c2f2b7fe4af068dfc01c09712649c465558091121',1640,1,NULL,'[\"user-app\"]',0,'2023-06-25 04:21:58','2023-06-25 04:21:58','2024-06-23 23:21:58'),('ab1273eec0a57593e09972d4e12d94feb6959da3ee8382d3eedb7486342366374cb01486847b3d0b',313,1,NULL,'[\"user-app\"]',0,'2023-02-28 22:48:49','2023-02-28 22:48:49','2024-02-25 19:48:49'),('ab2d313ed8bdb2d6f825187022f23a0e89e3aa07aff86a77647ed0fabb852b16e127382a5a47d7cf',1434,1,NULL,'[\"user-app\"]',0,'2023-05-12 13:22:14','2023-05-12 13:22:14','2024-05-11 09:22:14'),('ab35c18c399688e6a570e2c36a2bc720ec27920e1b3f902938d586d452e08f2d1b9c680ffa849a50',1381,1,NULL,'[\"user-app\"]',0,'2023-05-08 04:31:02','2023-05-08 04:31:02','2024-05-07 00:31:02'),('ab3b76998cec73bc7376124f2c92d5ad1962beb59810bfabac8b110f385d284e3d62c6a20aa0a7fb',1888,1,NULL,'[\"user-app\"]',0,'2023-08-17 15:25:41','2023-08-17 15:25:41','2024-08-16 10:25:41'),('ab43e20ecac21a1987e4e7d7bb9f67474e9c1eff4119052e9058229421ece1aa5ad70ceb45451972',660,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:05:58','2023-01-25 13:05:58','2024-01-25 10:05:58'),('ab4b2cb3c0231f26f0efd5d55b9a2b50f2482872657b4551e5199b7a1b41367c6443b390094785d1',342,1,NULL,'[\"user-app\"]',0,'2023-03-29 23:32:34','2023-03-29 23:32:34','2024-03-28 20:32:34'),('ab68294b77f1cb539c2dcae0946a961637b347ab90bc603548aec32a499447203348648598e68e56',358,1,NULL,'[\"user-app\"]',0,'2023-04-14 15:36:35','2023-04-14 15:36:35','2024-04-13 11:36:35'),('ab740929e187fde8a9d0c00a8421d09d13422c1c0c9d4af5425adec9911739feda19ac88a580e80b',146,1,NULL,'[\"user-app\"]',0,'2023-10-05 12:33:36','2023-10-05 12:33:36','2024-10-04 07:33:36'),('ab939676f510792bb08b8f8257e30c302e616042c5842cfef22fc4a834e9ec09a9c849f81f710d90',342,1,NULL,'[\"user-app\"]',0,'2023-02-02 00:54:42','2023-02-02 00:54:42','2024-02-01 21:54:42'),('abbc0e4ab57a7dd7c8ac3dce10cd11f12051ab5648d7cd52818e08d7da37c0d9c87df50c15b32daa',1707,1,NULL,'[\"user-app\"]',0,'2023-07-06 19:55:22','2023-07-06 19:55:22','2024-07-05 14:55:22'),('abcac4faf2bed2054897ccbc6a6f6fd4365ccc1df44b80bb8662bc3101565290778801c49de7be3f',2,1,NULL,'[\"user-app\"]',0,'2023-06-29 12:54:54','2023-06-29 12:54:54','2024-06-28 07:54:54'),('abcc2618d1b53ac7a856cbb4d46b193753485b69b1d12da28135d0a044b326eef9fc82e681b15db3',1458,1,NULL,'[\"user-app\"]',0,'2023-06-10 05:28:46','2023-06-10 05:28:46','2024-06-09 00:28:46'),('abccebdd90b131300a4677e3bacdb7868679b8a3c0264f236867871c36ea56f205c18069a17ea37c',2,1,NULL,'[\"user-app\"]',0,'2023-09-30 18:11:45','2023-09-30 18:11:45','2024-09-29 13:11:45'),('abdb9e2afadf0e0fd81071e3806114cc36728d87020a74e11210012aa9b004572ab04efa747e5e88',992,1,NULL,'[\"user-app\"]',0,'2023-02-19 18:16:12','2023-02-19 18:16:12','2024-02-19 15:16:12'),('abeb1087be5b76f055c3be3306f01c1a7bff9cd980556868b4e22ee2ef7596864c45ec9009a2d936',2,1,NULL,'[\"user-app\"]',0,'2023-08-05 00:59:57','2023-08-05 00:59:57','2024-08-03 19:59:57'),('abf728a8b122e1c202ae359b973c4c91f7e3b9b93b1434c89d5f7f62b90d19a7af8847796214f604',223,1,NULL,'[\"user-app\"]',0,'2023-07-25 20:23:28','2023-07-25 20:23:28','2024-07-24 15:23:28'),('ac03f7e25b45aa2d82931b717bcd4341daed7a6b83b6b9d8311900222a6cd59557c839e7961b9c0a',2,1,NULL,'[\"user-app\"]',0,'2023-03-26 18:10:52','2023-03-26 18:10:52','2024-03-25 15:10:52'),('ac05597353a54b7bfcb2fd1539a1ca6839b8653c4fd9a58aff21b51ac93b5c4f10b19111417495a1',2087,1,NULL,'[\"user-app\"]',0,'2023-10-03 20:33:58','2023-10-03 20:33:58','2024-10-02 15:33:58'),('ac09ff3a7ef41d0a50d71fac0c2041f6a265b655df439d411d254c7c9955e9af5f166f59b209ab7a',2,1,NULL,'[\"user-app\"]',0,'2023-09-19 00:25:16','2023-09-19 00:25:16','2024-09-17 19:25:16'),('ac1040086ef2ed89a651e6ecf7a7cb4a9f40fac54ca408b61bcf60772ef41b0b9caef74d0a6e6968',2,1,NULL,'[\"user-app\"]',0,'2023-09-28 01:06:21','2023-09-28 01:06:21','2024-09-26 20:06:21'),('ac22b9920f44b541d1810ed973efd1a46c36634833c3d7013e36b70e0c8c67de2c47ecf601ed85c9',946,1,NULL,'[\"user-app\"]',0,'2023-03-27 18:36:55','2023-03-27 18:36:55','2024-03-26 15:36:55'),('ac3335cf3243cc8d7f7b06c2164b04cd7b6e7defd51ef7a2183c638c0fa4c0b56fa7dd23f0cf2870',1668,1,NULL,'[\"user-app\"]',0,'2023-06-29 22:47:33','2023-06-29 22:47:33','2024-06-28 17:47:33'),('ac33bb6f938203da56c392ace7f949e95c42c1ba87de251137be8940490bd3ea2c0cd0393990ac1b',962,1,NULL,'[\"user-app\"]',0,'2023-03-17 14:29:31','2023-03-17 14:29:31','2024-03-16 11:29:31'),('ac3a2c32bc92ee60b1d529a7a6b7edae7806d459776ca7d744bec0aa32a252c857921c883cbf6b22',142,1,NULL,'[\"user-app\"]',0,'2023-01-28 22:07:37','2023-01-28 22:07:37','2024-01-28 19:07:37'),('ac43bcb798e8b41bcff925da3956899beb8d1e09680801ab2656fa6340157488dba24c7dff16d994',960,1,NULL,'[\"user-app\"]',0,'2023-03-10 21:12:04','2023-03-10 21:12:04','2024-03-09 18:12:04'),('ac4443fb0bdd0279acc2fe9d607e9820e47d9cff65bbcdbc79d7b590bd8cdefc88f530c7c4184f01',53,1,NULL,'[\"user-app\"]',0,'2023-03-28 22:38:27','2023-03-28 22:38:27','2024-03-27 19:38:27'),('ac4a26d6b0ddf079238e1b14a0f6330a0725f87a03fd3d777e1d7f2c99293fb29f8d4fd0ff87a91a',2,1,NULL,'[\"user-app\"]',0,'2023-06-22 19:26:52','2023-06-22 19:26:52','2024-06-21 14:26:52'),('ac807d15a2be7667a2ba253c0c0557a41bcbef65580677c5b624885f1e951a717110a8358dc32d8f',1496,1,NULL,'[\"user-app\"]',0,'2023-05-24 16:35:37','2023-05-24 16:35:37','2024-05-23 11:35:37'),('ac9e6198e57c4cbe608634923c4796ee43754adefce56dd1135c21240cbff5385d6790de0ae81ecb',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 16:29:39','2023-03-29 16:29:39','2024-03-28 13:29:39'),('acc98f1a012e8dd038de41474858482dfbc2300566680bcc204dfca3a3b9caa5aef6484b1e177769',1437,1,NULL,'[\"user-app\"]',0,'2023-05-12 20:00:29','2023-05-12 20:00:29','2024-05-11 16:00:29'),('acd1a4f420340592f8e8dd39afb1aea1c63b8b7738306dac89cb6b05e639731ecbff8824c5d6d5a8',34,1,NULL,'[\"user-app\"]',0,'2023-10-05 03:17:58','2023-10-05 03:17:58','2024-10-03 22:17:58'),('ace65e0f4ad0ec2922485b64d47acc8388dae010f6f8af9d8828de94e092f54431e3042ace4a5cf8',1240,1,NULL,'[\"user-app\"]',0,'2023-04-08 16:05:09','2023-04-08 16:05:09','2024-04-07 12:05:09'),('acfe1019c1df17ba8b432739463a6e7364b82834519796b386c312ad14c06dc6df68957f00a2120b',1402,1,NULL,'[\"user-app\"]',0,'2023-05-09 21:51:31','2023-05-09 21:51:31','2024-05-08 17:51:31'),('ad04523af04a3a4141990197413b85cbe4886ef6e396e670fae7aeffc2d6ae100474c03fbe744027',749,1,NULL,'[\"user-app\"]',0,'2023-01-26 22:16:57','2023-01-26 22:16:57','2024-01-26 19:16:57'),('ad092b5061392653f75d50b67af147983f412bcfee302737af8badd195dbc5d2f94bfa4ebd46f839',668,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:16:27','2023-01-25 15:16:27','2024-01-25 12:16:27'),('ad09fd067486ed9b75e64e332e9445ea0f289b3fc8f4dfd612af160956c377547a52a5a02a182774',1359,1,NULL,'[\"user-app\"]',0,'2023-05-08 11:10:51','2023-05-08 11:10:51','2024-05-07 07:10:51'),('ad1a243ebf16bfa6f89dc7394022f301a6ba60e2a2f6b90ec967077d6a53f8b0e323d8f5c1f33e3d',2,1,NULL,'[\"user-app\"]',0,'2023-08-21 15:44:34','2023-08-21 15:44:34','2024-08-20 10:44:34'),('ad20428b8ac62f123be56841a09f244ca29d63897e4b8c138a3a4d4eea3dfa7dc80dee966033ce05',1827,1,NULL,'[\"user-app\"]',0,'2023-08-08 15:56:24','2023-08-08 15:56:24','2024-08-07 10:56:23'),('ad22d8ac76730c91fe85d2c66df0d5b5e35e6852b59167da879e307f4cd173a959a05b471a397791',2,1,NULL,'[\"user-app\"]',0,'2023-07-06 17:20:26','2023-07-06 17:20:26','2024-07-05 12:20:26'),('ad2f394818a9552d41b616ab581dcf1204e5d6de0207314b560861ce377f8f8ea343260702027353',297,1,NULL,'[\"user-app\"]',0,'2023-09-09 22:04:01','2023-09-09 22:04:01','2024-09-08 17:04:01'),('ad30244a410c9a43342fe9f0977bbc4e822d38d4499341f8d9d24bc2c4f9a5363fa97b1d261279c4',2,1,NULL,'[\"user-app\"]',0,'2023-04-26 12:26:50','2023-04-26 12:26:50','2024-04-25 08:26:49'),('ad3aa1e062d223d616fd165a48545b60939df91e27891e72f30d6fe71cb94b1220164385d0c11e91',1214,1,NULL,'[\"user-app\"]',0,'2023-04-19 14:47:28','2023-04-19 14:47:28','2024-04-18 10:47:28'),('ad4a9a8af1c6624d269819f54b7016ce1bf8d3328f2d497f485cd6a8df4b2a96e739bd98c972a9d3',2023,1,NULL,'[\"user-app\"]',0,'2023-09-21 03:16:24','2023-09-21 03:16:24','2024-09-19 22:16:24'),('ad94e6e864d6e40091fd01c029067c169bcb6753208b64f3a6db394332b52c15b08eca594815f42f',280,1,NULL,'[\"user-app\"]',0,'2023-01-30 18:20:15','2023-01-30 18:20:15','2024-01-30 15:20:15'),('ada81c1e7c9c6caec3ffce2694bb1b746966e157811fc8202c4952f360d3944e22bfa88b4b2f6ee9',933,1,NULL,'[\"user-app\"]',0,'2023-09-16 02:50:31','2023-09-16 02:50:31','2024-09-14 21:50:31'),('adb20ed58b95c4722abc930dc4b940b2a6937d17caccec103424c50f37397a569fde4ddcf9766239',948,1,NULL,'[\"user-app\"]',0,'2023-05-09 12:55:10','2023-05-09 12:55:10','2024-05-08 08:55:10'),('adb95a573d054ff7732c0eebfe16daecef66e81232d9d10ba07678aca6260508888ca750ef29d67b',72,1,NULL,'[\"user-app\"]',0,'2023-07-01 21:57:55','2023-07-01 21:57:55','2024-06-30 16:57:55'),('adc7e3729e7b5afa35fe99d25d9cbf4a349aaa8c70e394776e489a43c548d5faf60bd4cce50ea317',1259,1,NULL,'[\"user-app\"]',0,'2023-04-15 12:27:00','2023-04-15 12:27:00','2024-04-14 08:26:59'),('adfbaffe95594494fbfc6ae735c374db88ff37337498247cfb9fc15773fd748dd7fadfa50fa0086a',1250,1,NULL,'[\"user-app\"]',0,'2023-05-10 15:58:48','2023-05-10 15:58:48','2024-05-09 11:58:48'),('adfcf11435e161d97e04e2299cf7048d9a9c0647360f860e646b20eead3196a03a39ee2d52b84fa9',2,1,NULL,'[\"user-app\"]',0,'2023-05-04 03:27:09','2023-05-04 03:27:09','2024-05-02 23:27:09'),('ae20366902d5fe5e330302d53b22b4b40b8570ff1076edc848dbc3bd65be4dd55f5e7637fd1f7aaa',578,1,NULL,'[\"user-app\"]',0,'2023-01-26 23:52:25','2023-01-26 23:52:25','2024-01-26 20:52:25'),('ae209e9b609ff9e5b5a4d0163eb428c47bde2cbab9547699c4b3051aa9d3ae54ed8f41939cedfb90',634,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:35:42','2023-01-25 03:35:42','2024-01-25 00:35:42'),('ae277363973cf7c333fd26d855da9bf613047a07d6b822c6c936485e518c6549fc1a386285691175',1727,1,NULL,'[\"user-app\"]',0,'2023-07-09 00:34:26','2023-07-09 00:34:26','2024-07-07 19:34:26'),('ae3808fc2a4ebad810a4ca891044699364087c89b09a79e2ef6d916fd252e3f6cefd7b1fd48768fc',312,1,NULL,'[\"user-app\"]',0,'2023-07-31 12:18:28','2023-07-31 12:18:28','2024-07-30 07:18:28'),('ae3b8697bd42f8e9f50b723dfc49a6c6ead8c391b17aea78eb5d31e10b4df9d58ff6796110d52c0a',1088,1,NULL,'[\"user-app\"]',0,'2023-04-22 12:28:36','2023-04-22 12:28:36','2024-04-21 08:28:36'),('ae3e2bcc7ddea51cca0999b71cfe3f1264a09bb1d5500153419013e793219eb72d05b84907e82295',2,1,NULL,'[\"user-app\"]',0,'2023-09-22 15:11:18','2023-09-22 15:11:18','2024-09-21 10:11:18'),('ae59369dbc8f31615c842f86b9aa8f8d35b64e106f06124f479c953f1ef4cd5b21123bd76e539685',1653,1,NULL,'[\"user-app\"]',0,'2023-06-28 13:07:22','2023-06-28 13:07:22','2024-06-27 08:07:22'),('ae5cc63ca84e1b54c41fd338ef48a7d0a821ca12e220eb0d5531ef42ecd5b34e94587d21d6adc677',1023,1,NULL,'[\"user-app\"]',0,'2023-02-21 21:51:53','2023-02-21 21:51:53','2024-02-21 18:51:53'),('ae60461f4b60eb0ebf4ed2769b16b44427e052e318bb13350d84be6b51a3420b840cef1e62b1f4ce',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 20:53:41','2023-10-05 20:53:41','2024-10-04 15:53:41'),('ae7a89d058a128c7f3ab32cd2ee292a1f0bb00e57ce869cd0b0e9426e2771499b637ba79fa56e1db',1409,1,NULL,'[\"user-app\"]',0,'2023-10-06 02:37:07','2023-10-06 02:37:07','2024-10-04 21:37:06'),('ae864711d75b3b751ac5ab017cb24ad174c3aa3770f11b0255517b9480f2985ee7b819a0793ec5ba',1131,1,NULL,'[\"user-app\"]',0,'2023-03-10 21:00:50','2023-03-10 21:00:50','2024-03-09 18:00:50'),('ae8b129f51d43cd766e1a92b9c9c9ffc9b65043c81b358960ab374a5674acf13163934d41801781d',2,1,NULL,'[\"user-app\"]',0,'2023-09-16 01:00:36','2023-09-16 01:00:36','2024-09-14 20:00:36'),('ae928af3cf71352e532ebc22298c7b2f866a0618fea3b15771bb2799da2c1fa28304538446a3355a',82,1,NULL,'[\"user-app\"]',0,'2023-08-01 20:01:20','2023-08-01 20:01:20','2024-07-31 15:01:20'),('ae9b2ab51966fedd93da60da1635b80d35e732593051f58b3d044ad7fa940591b3d8c411c4febedc',157,1,NULL,'[\"user-app\"]',0,'2023-01-26 15:36:48','2023-01-26 15:36:48','2024-01-26 12:36:48'),('aea827e4fab84b848aebace7860964b63be32992a3a0eba29e8927fb40d026e3dabbe7330f014921',291,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:17:42','2023-01-25 03:17:42','2024-01-25 00:17:42'),('aed9946bf670f571c025b1993ec3d17bc5fb801f18865f5463d0fd878d5ea4917934b00e4fdb3a1d',284,1,NULL,'[\"user-app\"]',0,'2023-01-27 23:31:41','2023-01-27 23:31:41','2024-01-27 20:31:41'),('aede1ae5b64cb4498c785346235133715262435dad0cf5bd16dfff6a74c7b4617601f5114fdf458a',1827,1,NULL,'[\"user-app\"]',0,'2023-08-15 19:41:12','2023-08-15 19:41:12','2024-08-14 14:41:12'),('aefd53df7b82a8274eb5c9b8db4fcb20d42f834d66f9fe4d83978408e3865af1d39ea299840356da',1465,1,NULL,'[\"user-app\"]',0,'2023-10-04 03:41:08','2023-10-04 03:41:08','2024-10-02 22:41:08'),('af0ec70b8e66933b2d95da68fc10526c924ad2e1601e148069d7f478b57562829683cb4c8e25e00c',8,1,NULL,'[\"user-app\"]',0,'2023-10-04 14:27:51','2023-10-04 14:27:51','2024-10-03 09:27:51'),('af0f696096468cace53a5c043f81222b4ad5a87ad3af5a843cdf81f760e379458cc63fd29a58c01f',2,1,NULL,'[\"user-app\"]',0,'2023-08-10 21:16:49','2023-08-10 21:16:49','2024-08-09 16:16:49'),('af2acd87ab86f7a3dfe377bf81f9c46968f2986670415a0e9553e3ead927bcc20a4b2e12054d9e88',388,1,NULL,'[\"user-app\"]',0,'2023-02-03 16:34:56','2023-02-03 16:34:56','2024-02-03 13:34:56'),('af31638c6cdb0ca0e0f33cdc04074fecf5396b8012bc0f4c234f8f15f2c247110cbd7183e34b6a93',318,1,NULL,'[\"user-app\"]',0,'2023-01-26 12:19:19','2023-01-26 12:19:19','2024-01-26 09:19:19'),('af33b58e6ca19cd1a6171db00d22c95bf581e624596b27c6014ac2608476068d9df30ebea3b86adf',1541,1,NULL,'[\"user-app\"]',0,'2023-06-09 19:35:53','2023-06-09 19:35:53','2024-06-08 14:35:53'),('af37471efae04f1404305738ef624a9399f276852bbc1a4724579ad68306b087625508ada37deb88',1956,1,NULL,'[\"user-app\"]',0,'2023-09-06 20:32:11','2023-09-06 20:32:11','2024-09-05 15:32:11'),('af63b16956bf2737d0b7a2f3f354c61b15121da0843701b486721b1665578e52ada7bcd4e985fce7',1215,1,NULL,'[\"user-app\"]',0,'2023-03-29 23:11:00','2023-03-29 23:11:00','2024-03-28 20:11:00'),('af65c2c8e88f9f784e79940b410d078429e35ab185a330c3c108a4d940022f375864351f718f0466',2,1,NULL,'[\"user-app\"]',0,'2023-07-19 02:16:13','2023-07-19 02:16:13','2024-07-17 21:16:13'),('af933946a407883dcf895a872f098d58866087344ceff78728f19fc86fc54fae05b79ca3e36334f7',299,1,NULL,'[\"user-app\"]',0,'2023-01-25 23:23:26','2023-01-25 23:23:26','2024-01-25 20:23:26'),('af9ce45fe8133bdcd6d842bedab35c52d83615e9205249e55753ec51f543fca45b0f21adec9bdd40',2,1,NULL,'[\"user-app\"]',0,'2023-07-12 21:55:46','2023-07-12 21:55:46','2024-07-11 16:55:46'),('afaa6ea911fbbfbb905d1a6cffb8087e8574f8170f8ee4df75ebefdee94b222255faf0bbae3aca34',1556,1,NULL,'[\"user-app\"]',0,'2023-06-12 19:52:26','2023-06-12 19:52:26','2024-06-11 14:52:26'),('afac2299d95171c5a2e46c5806c7e7a744aecb34dfcabe5992b1389461ebf546c83ff44ef59c638d',1067,1,NULL,'[\"user-app\"]',0,'2023-06-05 01:55:02','2023-06-05 01:55:02','2024-06-03 20:55:02'),('afb33c9ca268939dbf5acc674ad9602438c4e604d3278acc53645aeab0352d52f993a2edff269fa2',8,1,NULL,'[\"user-app\"]',0,'2023-01-31 17:22:18','2023-01-31 17:22:18','2024-01-31 14:22:18'),('afcc1695ba7cb4d82cf18208ba327981370370a4cdeca95a7ed099d02e3ac344cb39f841d96c1fb2',211,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:34:10','2023-01-25 19:34:10','2024-01-25 16:34:10'),('afcd0d15d9a6d56d17925a2f8944801c22c40c1e3b91242e1fad4d0f9da3107ea5e4f20fd0f35cfa',1303,1,NULL,'[\"user-app\"]',0,'2023-07-13 11:54:57','2023-07-13 11:54:57','2024-07-12 06:54:57'),('afd12936a61c558dc07a6fb857579ca8890102bb2e39f171002abf68544e766c49d450710593dcde',2,1,NULL,'[\"user-app\"]',0,'2023-10-06 14:51:53','2023-10-06 14:51:53','2024-10-05 09:51:53'),('afd94ec964a8016d2004b31471927856f516890aedf13832263d861d756f1f7492a4629c4adcae80',547,1,NULL,'[\"user-app\"]',0,'2023-02-05 12:49:14','2023-02-05 12:49:14','2024-02-05 09:49:14'),('aff667799b25c1f19cb22e89c76ab8aef78c9d79c01aa785f5c1b213d54e997356b7aab11bdc1b7c',1546,1,NULL,'[\"user-app\"]',0,'2023-06-09 14:48:51','2023-06-09 14:48:51','2024-06-08 09:48:51'),('affa4585ffdc3ecac2693ae0fae9d9a0016acac4acc7d13cc2251cdba490e1fbfd4bc74372f195c0',2,1,NULL,'[\"user-app\"]',0,'2023-09-26 16:14:44','2023-09-26 16:14:44','2024-09-25 11:14:44'),('b00f4cb5febe305640056ff80d8b753a1ac819a7df364eac5bf130c2352fd5f1471d60f902460c25',6,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:39:49','2023-01-25 17:39:49','2024-01-25 14:39:49'),('b0109754199232d3623aa3051ca77aa56f333a9468faca1fba0a102423113ed120509c4afd11c0d5',797,1,NULL,'[\"user-app\"]',0,'2023-01-29 16:35:01','2023-01-29 16:35:01','2024-01-29 13:35:01'),('b02ff4ca21a9c3aba940c6a787680c13bbab96bcc3506c2e4db18bc13eeb1dc6c425387cd3b0b44e',1523,1,NULL,'[\"user-app\"]',0,'2023-06-14 00:26:22','2023-06-14 00:26:22','2024-06-12 19:26:22'),('b03343555f0c395e7a0495c464c3b086910f4d0a44ec5ff2021cefa7d3f84dbd1b50cd54345f2b20',1477,1,NULL,'[\"user-app\"]',0,'2023-05-17 23:22:37','2023-05-17 23:22:37','2024-05-16 18:22:37'),('b042790177c98cdd63133247eed1c8720a458043505447b7d5b78f70988ca6613f567aadde8565d1',1723,1,NULL,'[\"user-app\"]',0,'2023-07-08 15:52:59','2023-07-08 15:52:59','2024-07-07 10:52:59'),('b04423fd0654c77166829ec327d60954cf41d6053d400f85e220663ce1c0209518668644c12db8bf',1418,1,NULL,'[\"user-app\"]',0,'2023-10-05 21:43:52','2023-10-05 21:43:52','2024-10-04 16:43:52'),('b056890c33787f90be50ff3a450bd8167fa8414d7dd7ef44fbc5303ea49a23249b318a05244b49d1',1279,1,NULL,'[\"user-app\"]',0,'2023-04-19 21:18:26','2023-04-19 21:18:26','2024-04-18 17:18:26'),('b05fee11c6e81d0269aa1f8148641a87399b2b82060101c91d17c72f5321ed554dd06cc8a2a7432d',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 09:11:09','2023-01-25 09:11:09','2024-01-25 06:11:09'),('b061c2d4f608d1ca7a3c779782ae3fb2652d8d4510b4dfe11142c10b864195416e6b614d17199a6e',2,1,NULL,'[\"user-app\"]',0,'2023-07-22 23:24:12','2023-07-22 23:24:12','2024-07-21 18:24:12'),('b0713ca298658f5f04f6fa190e57894ac21814fccd3c7ae7b12f5bafc04a2dc5efcafde7759f60f8',504,1,NULL,'[\"user-app\"]',0,'2023-01-25 10:26:33','2023-01-25 10:26:33','2024-01-25 07:26:33'),('b0800fd8fb857f13e176fe1b2b886b7deea12b0087c0f8ca55cda3a8d60c30b7ef02d794e61888d8',2,1,NULL,'[\"user-app\"]',0,'2023-05-23 19:27:02','2023-05-23 19:27:02','2024-05-22 14:27:02'),('b089b1c65b4e1e253ace7d01e658f5b0f1c20c796ec37a058869747cff20d0cfc797df1b1a5e93d4',1505,1,NULL,'[\"user-app\"]',0,'2023-05-27 13:52:45','2023-05-27 13:52:45','2024-05-26 08:52:45'),('b0929fa05fa15aa8eebbb935eebb6f38233dbb2d9abda8f149bac7c0ca6608c759ebf229dd3e8060',1938,1,NULL,'[\"user-app\"]',0,'2023-09-01 03:00:55','2023-09-01 03:00:55','2024-08-30 22:00:55'),('b0ac79308e7dc98b84fe7bdd4357eacf7147d3363b80486bb76c0de077819f2a183874a89a85ba11',1582,1,NULL,'[\"user-app\"]',0,'2023-06-17 21:05:33','2023-06-17 21:05:33','2024-06-16 16:05:33'),('b0b428bca6748057bcad752cc55802364ec2a1532b75c2adb431cdded81118af6e1b54b72bc52d81',8,1,NULL,'[\"user-app\"]',0,'2023-03-04 01:31:35','2023-03-04 01:31:35','2024-03-02 22:31:35'),('b0c3573d1d4458906f54519be49a4dbdcf7bcd7fbd5722d2299908cffcb574d6d0cdd49e730bb2d8',1192,1,NULL,'[\"user-app\"]',0,'2023-03-24 23:46:44','2023-03-24 23:46:44','2024-03-23 20:46:44'),('b0e6cf79614f7dc9b383361331275ebd36e3336caa0df080ff1be2a353607449f5fd702dd698c39e',948,1,NULL,'[\"user-app\"]',0,'2023-04-12 21:06:46','2023-04-12 21:06:46','2024-04-11 17:06:46'),('b0e9eb7439657a982af78be14e0fc8d9be8cf889b1d792a7e92fd4328d68cb436515cd021a078ca5',8,1,NULL,'[\"user-app\"]',0,'2023-07-26 12:59:31','2023-07-26 12:59:31','2024-07-25 07:59:31'),('b0edf3dbc7bed1c8b437544f3fe8ea62b65627f997dd659ada4dcc96d14a85051ab93547b98ad3e7',1663,1,NULL,'[\"user-app\"]',0,'2023-06-29 03:37:21','2023-06-29 03:37:21','2024-06-27 22:37:21'),('b0eeee4252091271cf47fb9dfe71690d586784e08ccbfef3467aa50f00b89904b21ecb2dfbaa3eeb',2,1,NULL,'[\"user-app\"]',0,'2023-07-31 18:26:13','2023-07-31 18:26:13','2024-07-30 13:26:13'),('b0f638b2a8fd1a2781bb8747a7bb28ad8909f91eb537b382041248c7ee6e1efcda187bd374ec16b4',1917,1,NULL,'[\"user-app\"]',0,'2023-08-25 19:04:23','2023-08-25 19:04:23','2024-08-24 14:04:23'),('b0fde7c7f94860b8f87d58a23c99b3c4adf5e7a2b069cc20909ba723a64e90e673338c1e6e1bcc36',87,1,NULL,'[\"user-app\"]',0,'2023-09-22 18:57:15','2023-09-22 18:57:15','2024-09-21 13:57:15'),('b12bc257440765d40eed8975df4706eba0f89140c0fbb5089cc536bfdb8344be378372361474b9a4',193,1,NULL,'[\"user-app\"]',0,'2023-01-26 12:30:52','2023-01-26 12:30:52','2024-01-26 09:30:52'),('b1541ab30c0f99aab587417539633346a3b0c3b26ccf785b6e912351904532e42101953ce2637b5d',767,1,NULL,'[\"user-app\"]',0,'2023-01-27 23:36:48','2023-01-27 23:36:48','2024-01-27 20:36:48'),('b15cec648582648cf3018f2cf52717768018162581ff16bc020b01174d3404df32269f7dfbad74af',2,1,NULL,'[\"user-app\"]',0,'2023-02-08 14:02:17','2023-02-08 14:02:17','2024-02-08 11:02:17'),('b15d0318d422b97e666fca61c98dcbc0e9e01c5df4344ecbea34ac72c82396984c1dba0ffdafe84c',2,1,NULL,'[\"user-app\"]',0,'2023-08-24 11:26:52','2023-08-24 11:26:52','2024-08-23 06:26:52'),('b164e5f54fc0c05025360852542163e9916cbd5e93a02b6a2474ced03780b97e748ab488c6af1f55',953,1,NULL,'[\"user-app\"]',0,'2023-04-22 13:06:19','2023-04-22 13:06:19','2024-04-21 09:06:19'),('b16ac6fdbcfca8b4ee4a0840f7c153f597f818122bad257002f78294827ba1a0c8f3e76c5f6fc650',483,1,NULL,'[\"user-app\"]',0,'2023-02-22 20:58:29','2023-02-22 20:58:29','2024-02-22 17:58:29'),('b19783b60afb7a56edf2992f6fd00cea92725c1c5cb34f04a4225e4694be7cac5094a920b922e1e3',1790,1,NULL,'[\"user-app\"]',0,'2023-07-22 13:27:36','2023-07-22 13:27:36','2024-07-21 08:27:36'),('b19bc2d3413e16885437ddae88bfe7e461684a7cd2f22d5487c8bba472aea56153b4bafe15c2de77',2,1,NULL,'[\"user-app\"]',0,'2023-05-04 23:05:31','2023-05-04 23:05:31','2024-05-03 19:05:31'),('b19d5922996c5db0cde8a5c81320ded07dc405185b94babbe7deddd517b83707271538b2d8b102b9',1432,1,NULL,'[\"user-app\"]',0,'2023-05-12 01:39:43','2023-05-12 01:39:43','2024-05-10 21:39:43'),('b1d1cf01bb36faf66f265d80fe10933386d650c3100f9ef2301d1f1bb72ab51330c67e6f71dd5fc9',2,1,NULL,'[\"user-app\"]',0,'2023-01-31 16:43:24','2023-01-31 16:43:24','2024-01-31 13:43:24'),('b1ecd2ecd74997495fa4c3c45cb6d037d133bf31219529dcaa18b4bdb23e9e07a2a247a9755e5f37',2,1,NULL,'[\"user-app\"]',0,'2023-09-22 04:09:14','2023-09-22 04:09:14','2024-09-20 23:09:13'),('b1ed602da78b06df504369e53642eea25fe574a82ee5903d4f80bf68e41c91c75d6de52dc497c871',1072,1,NULL,'[\"user-app\"]',0,'2023-04-27 21:24:33','2023-04-27 21:24:33','2024-04-26 17:24:33'),('b1f0cbc4b8557973cd7c112455191f7b903f064ad0a9ade910f8c993cf213d335da4185ec9defe91',1349,1,NULL,'[\"user-app\"]',0,'2023-04-30 19:57:11','2023-04-30 19:57:11','2024-04-29 15:57:11'),('b1f5e39089f486956da2e01f917ab352f7b61571b385b02bc8929191fc323a6471b010d66191dd1b',1892,1,NULL,'[\"user-app\"]',0,'2023-08-17 22:39:44','2023-08-17 22:39:44','2024-08-16 17:39:44'),('b1f9b93a4d4fed0d0db307632e9733d7001ac30ca579ff6c8e94a8101eb02abf3baef6bd5aace29b',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 20:12:26','2023-09-04 20:12:26','2024-09-03 15:12:26'),('b2069f5927ffee1625ab6d5cf8eca6ed4abd95d6563a242f9b7ceb0ed35a596148c507fac2edfcba',1673,1,NULL,'[\"user-app\"]',0,'2023-09-16 00:45:03','2023-09-16 00:45:03','2024-09-14 19:45:03'),('b2074ea452e5cf33b6a46bcc52d97c5597f60834d20b040e1d3978dcbc5484e80619d49b6132f5d5',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 17:55:47','2023-07-17 17:55:47','2024-07-16 12:55:47'),('b241d85818328e5682ddc0cc2f2df80066b5ac79b44de43fcd68af285e5f6ff109318177f38c8f24',517,1,NULL,'[\"user-app\"]',0,'2023-03-02 15:22:27','2023-03-02 15:22:27','2024-03-01 12:22:27'),('b25c55df75458a82ee27eb3606aaf16f10dcd63cfdb2e9cce79b6697dba84b952952362350704255',760,1,NULL,'[\"user-app\"]',0,'2023-01-27 17:23:55','2023-01-27 17:23:55','2024-01-27 14:23:55'),('b25fb47adf8ede7a743bad394332b801c0ff90644bf74b621f10c9d46f6b86c0208ce455219a305e',2,1,NULL,'[\"user-app\"]',0,'2023-07-31 21:50:25','2023-07-31 21:50:25','2024-07-30 16:50:25'),('b262176a5b79735b9b04480d46be8ebf09d06692088570ac00a7177314759f3cdf8a6b95c6029a02',615,1,NULL,'[\"user-app\"]',0,'2023-02-28 05:06:34','2023-02-28 05:06:34','2024-02-28 02:06:34'),('b273665caea45f36d8e89c03ab9fb13026117b1922ed09fb6d90f8e42921f586b88b17e4e4bc2495',956,1,NULL,'[\"user-app\"]',0,'2023-02-20 12:58:19','2023-02-20 12:58:19','2024-02-20 09:58:19'),('b2774e11232ed2f9c9f238c3981393ac87dfa4f19e42c25a6d93138deb073309f844ec451688bff9',2,1,NULL,'[\"user-app\"]',0,'2023-06-19 23:01:41','2023-06-19 23:01:41','2024-06-18 18:01:41'),('b27bd8d68cfa6cf1791ea58a994e69403220cd01966380cd7ec0d28f067cd3d6c4d934dea91ff6da',1974,1,NULL,'[\"user-app\"]',0,'2023-09-11 22:52:01','2023-09-11 22:52:01','2024-09-10 17:52:01'),('b28d056b522b5de7b37dd15d08ffc11188b1b0a7e2c411d295a557469dd3766634f7d5e53f5c9677',2,1,NULL,'[\"user-app\"]',0,'2023-08-23 23:14:03','2023-08-23 23:14:03','2024-08-22 18:14:03'),('b2c205a6998bccfb0881757f18901839e4aa3fb180a1fcb0af6de8d3dc03cc438c52350f5ff42fc0',1370,1,NULL,'[\"user-app\"]',0,'2023-05-04 23:54:59','2023-05-04 23:54:59','2024-05-03 19:54:59'),('b2dba9ec718d3712bf48db19e2b2a7a22b901dba806c667bb3f11c14d109983c70773925d453e623',1252,1,NULL,'[\"user-app\"]',0,'2023-04-13 14:26:57','2023-04-13 14:26:57','2024-04-12 10:26:57'),('b2f3af0d887062f51bba26fd9d27b764eafc9c7039890fe9a8bc52ac0bf8c8ed9c2c0bd8ad0e953b',1935,1,NULL,'[\"user-app\"]',0,'2023-08-31 13:09:07','2023-08-31 13:09:07','2024-08-30 08:09:07'),('b32d46f564641e9510db421ce69e37918ab91ac866b7b7bb3e36d0bce67fd8362c0efe9c4f9d3586',1383,1,NULL,'[\"user-app\"]',0,'2023-10-09 01:42:28','2023-10-09 01:42:28','2024-10-07 20:42:28'),('b32d569d470d9fbcc63392e7c827f8f51c8c0815694c382e14ce403c98e5b1449a2a600df2c02888',128,1,NULL,'[\"user-app\"]',0,'2023-01-25 20:36:13','2023-01-25 20:36:13','2024-01-25 17:36:13'),('b32e31472ce030af766565d0611eab652cbaed3d7e027301020b9f14f9a1fbd1a84767d6b2a03720',2,1,NULL,'[\"user-app\"]',0,'2023-08-19 02:45:04','2023-08-19 02:45:04','2024-08-17 21:45:04'),('b33472e044fabe90d7512947455e725568cc8727d01fe1f689992c71a75663b5189699e5e6ac7ffd',878,1,NULL,'[\"user-app\"]',0,'2023-02-08 12:12:28','2023-02-08 12:12:28','2024-02-08 09:12:28'),('b337ca03f7b910a5e6b977a1ab8d29d360c790efb701f73de3fdce0f4901a02599b6cd40ecab9204',774,1,NULL,'[\"user-app\"]',0,'2023-06-07 14:21:52','2023-06-07 14:21:52','2024-06-06 09:21:52'),('b3501a8748910ed00559e8800d650ed58738163cf549cf23ac2dc14b1b804a8e3244d39a2e89dbe3',2,1,NULL,'[\"user-app\"]',0,'2023-09-16 15:54:21','2023-09-16 15:54:21','2024-09-15 10:54:21'),('b35b363c7ef76ccf5dea58ca8d9f6a471a1f4b263496914168d151c871258c408b154437e9255bc6',1626,1,NULL,'[\"user-app\"]',0,'2023-10-09 15:16:30','2023-10-09 15:16:30','2024-10-08 10:16:30'),('b361de2b6ad47013d7618789b669c3b65f541a11be1fda2da368c78057212f1712a5f992440d398f',1821,1,NULL,'[\"user-app\"]',0,'2023-07-26 21:10:59','2023-07-26 21:10:59','2024-07-25 16:10:59'),('b3776992d4b02aeab405ef29542006d38ac6ed3dfe02a3321f632781c063463e83daa7ecaa7907cd',181,1,NULL,'[\"user-app\"]',0,'2023-03-02 13:50:50','2023-03-02 13:50:50','2024-03-01 10:50:50'),('b37c84c32aacb699e2485febb9cf378d4898191654a49a3732eb2a78a4e5f1e9f5ffff15258e5edc',2,1,NULL,'[\"user-app\"]',0,'2023-09-23 17:19:23','2023-09-23 17:19:23','2024-09-22 12:19:23'),('b38cbea430240b0323c444ef3c472322efc01c2e80e3f7a6a0a1cf263faebdf742f3de10e9fbde2a',115,1,NULL,'[\"user-app\"]',0,'2023-01-25 09:12:17','2023-01-25 09:12:17','2024-01-25 06:12:17'),('b3ba6414a1435bc1737c5c83aff9108693334e73b454b7598c5f1576d7108b69f6deee9ffe02d236',743,1,NULL,'[\"user-app\"]',0,'2023-07-06 20:36:43','2023-07-06 20:36:43','2024-07-05 15:36:43'),('b3bba903abc3ab00e0430d9c037d5a42800bee5dbf92174bcc2668fe07b5e5e7556c3f1a49bf8a43',2,1,NULL,'[\"user-app\"]',0,'2023-07-20 03:53:09','2023-07-20 03:53:09','2024-07-18 22:53:09'),('b3ce978cf6ef6e51d389d2b1b0db5937dd7e3bf398653606781c4a4aa7f052a5159a7fe3155357a2',769,1,NULL,'[\"user-app\"]',0,'2023-09-18 02:32:42','2023-09-18 02:32:42','2024-09-16 21:32:42'),('b3d723cfc8aa4ef6bdef29e6eff99af7ca9d00d204ae58808e020d986867888b332fa17a547fd929',347,1,NULL,'[\"user-app\"]',0,'2023-02-07 14:33:24','2023-02-07 14:33:24','2024-02-07 11:33:23'),('b3e8c33d67df993fddc82644f78337028743fe9785d78d0db55e59440a877d25040d840af3658c4d',2120,1,NULL,'[\"user-app\"]',0,'2023-10-07 22:34:28','2023-10-07 22:34:28','2024-10-06 17:34:28'),('b40fec1c7f9d6585c5b7ed69ec1d299d02f1e98f39d19f97d39611268bf5c30829931b6e27710440',1807,1,NULL,'[\"user-app\"]',0,'2023-08-12 16:32:12','2023-08-12 16:32:12','2024-08-11 11:32:11'),('b41a9c45b6c9eb52766dfab18e65a8cbc0796821ade48761d4c48ee67699f303bf599e575671a49e',168,1,NULL,'[\"user-app\"]',0,'2023-04-05 22:28:51','2023-04-05 22:28:51','2024-04-04 18:28:51'),('b41b03ff9d200bcefc0a287f0475ce12aff58edf3aee65bd9808d11ffa89090a6fd17ab655a2fe23',280,1,NULL,'[\"user-app\"]',0,'2023-03-06 12:45:46','2023-03-06 12:45:46','2024-03-05 09:45:46'),('b4316297119b59abd9b0d16cf54d11899dd701421c5a1acf45107602d270332c9049a9cc42dd7784',1158,1,NULL,'[\"user-app\"]',0,'2023-03-14 18:05:05','2023-03-14 18:05:05','2024-03-13 15:05:05'),('b434dbbb4f201937a19a7e406141109c5b36f96bbb9446e2f8960fa86d584865db65782f2c5b85b6',828,1,NULL,'[\"user-app\"]',0,'2023-06-05 19:26:00','2023-06-05 19:26:00','2024-06-04 14:26:00'),('b43b59fddb2a3bffd175b0fdc47a001d1e876d40588e6ab7d78e5b7adf6d298b702d0c8d2d1826b3',368,1,NULL,'[\"user-app\"]',0,'2023-07-05 21:31:17','2023-07-05 21:31:17','2024-07-04 16:31:17'),('b44083bf0c31c3b67447981a596ae4ed5dc5c88c8f8781e364d408236c5e18c9b5f1c4850494dfb8',1551,1,NULL,'[\"user-app\"]',0,'2023-06-10 21:09:21','2023-06-10 21:09:21','2024-06-09 16:09:21'),('b448cf792445613848a2b528e6bfcfecf2016d894e7f6e6524fe33462ad998c2eda93bacb6dc1c55',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 20:28:48','2023-09-25 20:28:48','2024-09-24 15:28:48'),('b451fb6556e3a6d744ac5f5e3d5af7fdad8f6072f60fa5f006d453ad03d9d98978c76d3ae8142151',1697,1,NULL,'[\"user-app\"]',0,'2023-07-04 14:53:34','2023-07-04 14:53:34','2024-07-03 09:53:34'),('b4674fdf3a95f44ba09da572339670bdf3481cea7480806e7d984304518a8626bded00da9d8c2077',1452,1,NULL,'[\"user-app\"]',0,'2023-05-15 19:43:35','2023-05-15 19:43:35','2024-05-14 15:43:35'),('b4729148c02c27b2473c73fa6e3e87bd16f2eae9aad08c8cd072355b2aedb631e14bd59939a71f86',2,1,NULL,'[\"user-app\"]',0,'2023-07-11 18:13:20','2023-07-11 18:13:20','2024-07-10 13:13:20'),('b477372c6aecb643e612b7e3cbc9e8dac740f8ebdbdde79180d8973d8eedc2a0871fde30e139688b',1870,1,NULL,'[\"user-app\"]',0,'2023-08-10 19:39:51','2023-08-10 19:39:51','2024-08-09 14:39:51'),('b4890eaf983c990ed217186584fa8e950ebd98cd3a2a9c2981465622c30fa9834015324c289bfb76',1756,1,NULL,'[\"user-app\"]',0,'2023-07-14 00:03:37','2023-07-14 00:03:37','2024-07-12 19:03:37'),('b492ce5272e6652b4a3fe087e2c6eb47396af608d5c226925844b1db1b840440ef000e58db36f201',1439,1,NULL,'[\"user-app\"]',0,'2023-07-31 16:10:07','2023-07-31 16:10:07','2024-07-30 11:10:07'),('b493caa05de9526ddb9281e48a8b713e0b8b2b6bd243d12ac8fb0e5a184c40be3919a7839541d387',1040,1,NULL,'[\"user-app\"]',0,'2023-02-22 19:31:36','2023-02-22 19:31:36','2024-02-22 16:31:36'),('b4a144a70391d17e9a9630ea591e13449062a677c5cb628de8524134889a055fbfe024a1724174a4',506,1,NULL,'[\"user-app\"]',0,'2023-04-20 02:08:15','2023-04-20 02:08:15','2024-04-18 22:08:15'),('b4ab95904c1e0ba7afeb24d8e5c29faf9d5513a423cce01624a2d13d1d0f6eac0ac6f8ed2116d419',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 02:15:20','2023-05-01 02:15:20','2024-04-28 22:15:20'),('b4d0968c05cfa934d46b3ec409542f0afa950efbc63019884451ad771ec1b1022ee77673c877b8b0',792,1,NULL,'[\"user-app\"]',0,'2023-03-19 02:09:01','2023-03-19 02:09:01','2024-03-17 23:09:01'),('b4da3fe6e5b8191641b196b0160c446e86bf650cb1e83dafdc5a4d9a6c2b7c9f43f18b4665e8a0b4',1081,1,NULL,'[\"user-app\"]',0,'2023-03-07 21:04:44','2023-03-07 21:04:44','2024-03-06 18:04:44'),('b4dd95b3adc80315009b18d722f8ffe4ed074295bf849c0c63855b5f91caa87a012b0d1fa1e3588f',2,1,NULL,'[\"user-app\"]',0,'2023-09-05 20:08:44','2023-09-05 20:08:44','2024-09-04 15:08:44'),('b4de08959656db5c78ca2e0a6fa9059e15240280e12f9659eb19ba9cb0868c78897cf7686538c2f0',2,1,NULL,'[\"user-app\"]',0,'2023-09-19 04:06:56','2023-09-19 04:06:56','2024-09-17 23:06:56'),('b4e2ad252a663453b957e98facaf44ae3762738f57fe16475932410eb17c059fa798519f1876b4fe',1656,1,NULL,'[\"user-app\"]',0,'2023-06-28 01:41:57','2023-06-28 01:41:57','2024-06-26 20:41:57'),('b4f074e5dacc21a6a31af3b9bfed0bb1a51e963fe2dba6ecfd577487a0143fe7ec6a5eb585503bac',1035,1,NULL,'[\"user-app\"]',0,'2023-03-02 16:55:47','2023-03-02 16:55:47','2024-03-01 13:55:47'),('b4fdc8a112730b7727df390ee33906aeaf2d36eaeee92a46c963f9219bd2394261a67716ea83e513',2016,1,NULL,'[\"user-app\"]',0,'2023-09-19 20:25:57','2023-09-19 20:25:57','2024-09-18 15:25:57'),('b50dea722efc6b4986f8d231e396f47ea86373bd4e914e36671dd8589cda3ea6ee9ddab94ff4320f',2,1,NULL,'[\"user-app\"]',0,'2023-09-27 03:29:14','2023-09-27 03:29:14','2024-09-25 22:29:14'),('b5189a59069878e4f679c6b4c38cfaf9f16ca670353b5156ecee8f43bb999ea4942a55bebb65d1ba',1720,1,NULL,'[\"user-app\"]',0,'2023-07-08 04:12:36','2023-07-08 04:12:36','2024-07-06 23:12:36'),('b53155d60036b7f293092b3d177b3a1e534148166f0a2c31f43f9bc11eea26b75f26bad3a970e3d1',2,1,NULL,'[\"user-app\"]',0,'2023-05-20 13:55:19','2023-05-20 13:55:19','2024-05-19 08:55:19'),('b5730755f59370b4d051f0ad110122869df356a746538830f005d0e61406dd5d04a8b18285a441f8',1024,1,NULL,'[\"user-app\"]',0,'2023-02-21 21:52:07','2023-02-21 21:52:07','2024-02-21 18:52:07'),('b58413901ea8a7ee428c23e0139ab7b850b98e1dcc5315f681a76d087a5bbb9af776e4b398ea0cdc',1708,1,NULL,'[\"user-app\"]',0,'2023-07-11 19:06:13','2023-07-11 19:06:13','2024-07-10 14:06:13'),('b58600febccb559ab3f497eee1a31aad288b21975468e845b932b37daa67cc5ccace57b40069a165',2,1,NULL,'[\"user-app\"]',0,'2023-04-21 01:18:40','2023-04-21 01:18:40','2024-04-19 21:18:40'),('b5882da9a233ca9e5d9445e6f927a8de8d40424e258c43782e70acea3a6b714ea6a271421562e48d',937,1,NULL,'[\"user-app\"]',0,'2023-02-22 22:45:12','2023-02-22 22:45:12','2024-02-22 19:45:12'),('b595726378f93009c99daa4c558cee1053f132ab109e76c631d4a20eaa07540ad65cff1a4b37ae0e',600,1,NULL,'[\"user-app\"]',0,'2023-01-25 03:54:29','2023-01-25 03:54:29','2024-01-25 00:54:29'),('b59c73e46243c7a819d663070dfd6b054d116c7382c10586ee360e82aff735d4b70234cb72da9c43',1739,1,NULL,'[\"user-app\"]',0,'2023-09-03 23:43:30','2023-09-03 23:43:30','2024-09-02 18:43:30'),('b5a0bb46f33979c4533fed0c2e01f142d0b5134f39e333f2823e1730da3b89b72af4a6fb61d09f8c',1231,1,NULL,'[\"user-app\"]',0,'2023-06-18 02:13:54','2023-06-18 02:13:54','2024-06-16 21:13:54'),('b5a15c11d17d36a9a9709e2a03b3a29f4aeeefd0c17324e61bbdd0af8e089fe78f42467af7fdec4c',989,1,NULL,'[\"user-app\"]',0,'2023-02-19 13:29:59','2023-02-19 13:29:59','2024-02-19 10:29:59'),('b5a3443aaca15acef28be1276670b081724a6e10fa82f0f2d63869206d1eba67889f9e9e712945bf',1393,1,NULL,'[\"user-app\"]',0,'2023-05-09 20:01:15','2023-05-09 20:01:15','2024-05-08 16:01:15'),('b5ad0ffbbfddd111f22a9b4fb6b5c8f2e808a225a5be63a38e0975434df52f02666be51e7d3caf3e',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:47:36','2023-01-25 02:47:36','2024-01-24 23:47:36'),('b5c8459666de7cbf938e21b19dc048237fd0473e68f765913e3fb29df9e7cbb902a0121982fea2af',2,1,NULL,'[\"user-app\"]',0,'2023-10-01 00:54:54','2023-10-01 00:54:54','2024-09-28 19:54:54'),('b5d490be88b5b0cb3a7b5c177b59fcd118cfb0b2f81614316c19e0d0527b7c633700d85dca0c2e11',2,1,NULL,'[\"user-app\"]',0,'2023-09-26 08:37:18','2023-09-26 08:37:18','2024-09-25 03:37:18'),('b5e175b606bc6dfeb3174c4489ac947155d0714c61a97f9ad1f7e6434b656444c277a178f2c915fa',351,1,NULL,'[\"user-app\"]',0,'2023-01-25 21:30:59','2023-01-25 21:30:59','2024-01-25 18:30:59'),('b5f584e83dc11956883bff6670f8d04e438a9b2479e42f02e58601b3f76cba24076e590349828394',408,1,NULL,'[\"user-app\"]',0,'2023-07-11 20:11:08','2023-07-11 20:11:08','2024-07-10 15:11:08'),('b60bb3a7477cfbd972e1dead1de2e514e60d45dd7183ce6d246db3298c32d46baa6e74d2a9e8a7b3',1019,1,NULL,'[\"user-app\"]',0,'2023-02-21 18:59:34','2023-02-21 18:59:34','2024-02-21 15:59:34'),('b60f00fedd9a7acd5fd6e79736b1084ef5d06017a312d85635077e869e286cc74fa4e4391b50981f',703,1,NULL,'[\"user-app\"]',0,'2023-06-21 03:49:59','2023-06-21 03:49:59','2024-06-19 22:49:59'),('b61b2ebfef1de301fe45227a29a84c95196c177e85cf7c44c0f335d04484b91e984142b62c54421b',1959,1,NULL,'[\"user-app\"]',0,'2023-09-07 20:38:38','2023-09-07 20:38:38','2024-09-06 15:38:38'),('b626fad62d4b75bd22f80575211e9306a9abf8e6d8cefbfdfc41b39ba96e0c65804e02a9312423d5',1328,1,NULL,'[\"user-app\"]',0,'2023-06-02 20:02:40','2023-06-02 20:02:40','2024-06-01 15:02:40'),('b62a0a1ef704884004b09e6598a1355c22d1b4f4389aa398639c4549ef9819b8fb22d326d318acbe',168,1,NULL,'[\"user-app\"]',0,'2023-07-05 02:20:47','2023-07-05 02:20:47','2024-07-03 21:20:47'),('b63cf56c3d47bfe6efb9108054bee4e751e8060e6dd8ffaa3b64f2680e7e463453524354d68908dd',1436,1,NULL,'[\"user-app\"]',0,'2023-05-25 13:54:15','2023-05-25 13:54:15','2024-05-24 08:54:15'),('b65bcbf33669051cb20bd4dd1acb61fab85b2fb5894f863c38852355daab60b3b4bb30e10876ccd8',2,1,NULL,'[\"user-app\"]',0,'2023-03-17 15:14:08','2023-03-17 15:14:08','2024-03-16 12:14:08'),('b675da8217adc6e7a32ec8d4ffb253fdd33a64de86502fd0a5dbc2b5682bce8f2d5cc27209788fe2',2,1,NULL,'[\"user-app\"]',0,'2023-08-02 13:58:36','2023-08-02 13:58:36','2024-08-01 08:58:36'),('b68b33900214cc46f8862dc6efe11700431929f75943197e2a29c404bf018846625779f95e691cac',2,1,NULL,'[\"user-app\"]',0,'2023-06-24 22:03:27','2023-06-24 22:03:27','2024-06-23 17:03:27'),('b6a0e1f573ccfe6c405050ccd374dd7abe6103739fc75864e342af0d6d22ad4125b60fe4cf3f8c0c',1414,1,NULL,'[\"user-app\"]',0,'2023-05-10 18:48:50','2023-05-10 18:48:50','2024-05-09 14:48:50'),('b6a1ac5153dd4bf5690f52908ecf65001844f0e8e2ea470c20e7922b3e0cf795862e9cffc2e726eb',1041,1,NULL,'[\"user-app\"]',0,'2023-05-08 20:28:21','2023-05-08 20:28:21','2024-05-07 16:28:21'),('b6b089b7fee8fd60e206d8742d3f028687ee5b842ad95707ac00831b1a593889eb8beabae35741a8',1986,1,NULL,'[\"user-app\"]',0,'2023-09-13 19:07:57','2023-09-13 19:07:57','2024-09-12 14:07:57'),('b6b4c1b28135c450b8619614796bb03dc98290d828d4f665e14721336b98f8a4d3715eb118c27dcc',1064,1,NULL,'[\"user-app\"]',0,'2023-02-24 01:21:35','2023-02-24 01:21:35','2024-02-23 22:21:35'),('b6b51bf44948162e9a14e1a88492b773ec39f74f6b148d13f951aa5b952fdb555c5a729d39ab040f',2,1,NULL,'[\"user-app\"]',0,'2023-03-27 15:13:54','2023-03-27 15:13:54','2024-03-26 12:13:54'),('b6b75100d4f591b67b15d7bf086fc72bbff0ae9e4eeb0a357b7dcc70311c5f6ae9d1f33c095c22e0',8,1,NULL,'[\"user-app\"]',0,'2023-03-29 01:15:06','2023-03-29 01:15:06','2024-03-27 22:15:06'),('b6b8ef18d516934bf5ee7c5bc0f5ce6e2a4c4ddc3b71dafd997bc480591f07de587663b44aefcc52',2,1,NULL,'[\"user-app\"]',0,'2023-06-01 19:05:24','2023-06-01 19:05:24','2024-05-31 14:05:24'),('b6beab36c4c267f9ff14227f7ee8644fcc74d8b70bdf98a5d0dd5f7f774cc1f508d0bd815d89b0a0',2057,1,NULL,'[\"user-app\"]',0,'2023-09-26 21:08:38','2023-09-26 21:08:38','2024-09-25 16:08:38'),('b70a74a5d9b870bb76fa531133e5412de64728cd1db877385fce9903cbfef32ef3fa72699cdce9e4',699,1,NULL,'[\"user-app\"]',0,'2023-02-06 23:43:34','2023-02-06 23:43:34','2024-02-06 20:43:34'),('b715f0d931a7d14f1cf240ec6034fd27a79c4cb4beb175955bf3247f42990a90d8a2e958e0718b24',1078,1,NULL,'[\"user-app\"]',0,'2023-02-25 16:19:21','2023-02-25 16:19:21','2024-02-25 13:19:21'),('b72580c664a9726473466859fb50392b646af958259a216833b7ce4e19bb98da80f96bc0cd1a4e2e',675,1,NULL,'[\"user-app\"]',0,'2023-09-06 01:10:08','2023-09-06 01:10:08','2024-09-04 20:10:08'),('b72ddc0d304ea61298aaf61b65048b05b9cfe14af00fd6ea30affd3225c57b5cbae86dcd631f83be',1011,1,NULL,'[\"user-app\"]',0,'2023-09-14 22:49:42','2023-09-14 22:49:42','2024-09-13 17:49:42'),('b72e5bc86008fdca51061585cb23605b26bc11bf2a73b5b314ae2e640ec3dd8e7371e83bb6d9fe5f',1825,1,NULL,'[\"user-app\"]',0,'2023-07-28 00:01:47','2023-07-28 00:01:47','2024-07-26 19:01:47'),('b736a81aa09de37a2e84e08da2918501512ae2689d945248b7d75207c2e6735d3a5d27ab19be3dbf',195,1,NULL,'[\"user-app\"]',0,'2023-01-27 12:58:17','2023-01-27 12:58:17','2024-01-27 09:58:17'),('b748c1b1e4da050658970bc52c2d6e3e2b0795b785b7616a60d7d3ec6705865577b0aa41d05bcb98',1797,1,NULL,'[\"user-app\"]',0,'2023-07-24 16:45:16','2023-07-24 16:45:16','2024-07-23 11:45:16'),('b75eb65e95543a5460965767920521fca8d4227038c8aee17bfdb7aa96b95a7cb7046cc65e0e52d3',1748,1,NULL,'[\"user-app\"]',0,'2023-07-13 02:42:56','2023-07-13 02:42:56','2024-07-11 21:42:56'),('b75fc4f6b7c0134b8fbffeb186fc4d1a81c21d34efadedf5fed94683ca1b901519807238265ba433',351,1,NULL,'[\"user-app\"]',0,'2023-04-25 20:26:53','2023-04-25 20:26:53','2024-04-24 16:26:53'),('b78ffc9b6db93e90a7ec77de3118359f8ba48dcbb9fa76e5656ca141496ed515055d80762fcf711e',932,1,NULL,'[\"user-app\"]',0,'2023-02-15 17:59:03','2023-02-15 17:59:03','2024-02-15 14:59:03'),('b7a04e334679487fd8d9ef3e873fcf60362790eaca47ab5b92851cbfdb5859a198fed2af0bfd6fa2',2,1,NULL,'[\"user-app\"]',0,'2023-03-25 11:18:12','2023-03-25 11:18:12','2024-03-24 08:18:12'),('b7a48b855b904b70551b4eea07051ae65e71b738879d8b460c10ec55b5d5c1f616a3524a2fd58d90',2,1,NULL,'[\"user-app\"]',0,'2023-03-21 23:18:28','2023-03-21 23:18:28','2024-03-20 20:18:28'),('b7adfb0c1cdcbb56138277f84cae3be52d61b2c8a0b6431e64c08655013c292886fbbbe354137610',1407,1,NULL,'[\"user-app\"]',0,'2023-06-01 21:08:23','2023-06-01 21:08:23','2024-05-31 16:08:23'),('b7b3dab902b18194bfb0e393508b164d86776fabb3de2a16d873accdd720109f92a15eae868d9488',1826,1,NULL,'[\"user-app\"]',0,'2023-07-28 14:31:30','2023-07-28 14:31:30','2024-07-27 09:31:30'),('b7cc367f2db787976e4b60355b917616e6ad87e910b684f4a3a1b3c41d7e029d920fac5efa924bf1',1908,1,NULL,'[\"user-app\"]',0,'2023-08-23 12:02:21','2023-08-23 12:02:21','2024-08-22 07:02:21'),('b7e8541e2988bcad03edf4f0bbdef0da2a2f4efcabe55c6391e674493c367d5bde9d5bd609989b0b',2,1,NULL,'[\"user-app\"]',0,'2023-05-18 03:32:51','2023-05-18 03:32:51','2024-05-16 22:32:51'),('b8107171817320f3f2b5e0f3719a43cac1d5ae871513ade155429b74f6d37bd21f7d767469f20f50',2,1,NULL,'[\"user-app\"]',0,'2023-06-17 15:17:48','2023-06-17 15:17:48','2024-06-16 10:17:48'),('b82b1aec0bb85cbfaa1451316517bf95bf1cc7dfc1ba0542dbbab8bd7277dc3919565e4467027cf7',1585,1,NULL,'[\"user-app\"]',0,'2023-06-17 21:38:44','2023-06-17 21:38:44','2024-06-16 16:38:44'),('b838da4f7e92f58c2d2fa0a5992fd6ce70b4dd3ca0470be7dad2ab58aade75ae31403ce775d12635',2,1,NULL,'[\"user-app\"]',0,'2023-04-10 04:36:27','2023-04-10 04:36:27','2024-04-09 00:36:26'),('b83bc1d34e28f25f0cce964bbf776163326fdf19db14c9433da7ea7776a49336d765fd76a7243254',1544,1,NULL,'[\"user-app\"]',0,'2023-06-09 13:16:38','2023-06-09 13:16:38','2024-06-08 08:16:38'),('b856bcaecf78ebdff38740e0c31bd219e1ef2699b327543323d9df2f0a5cc3794b067dfee69bb426',1011,1,NULL,'[\"user-app\"]',0,'2023-02-21 00:11:42','2023-02-21 00:11:42','2024-02-20 21:11:42'),('b85a6acc723a26b0647362a131b40801347b3773f37b0af7b3625a9d47b81b0f77b17b8065f6ecf7',257,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:43:34','2023-01-25 18:43:34','2024-01-25 15:43:34'),('b88ae127a27fe2660c3e9a0ae515fc54bb69570db14092041a03dcc31679bdf5246d5828b634f573',739,1,NULL,'[\"user-app\"]',0,'2023-01-26 17:10:06','2023-01-26 17:10:06','2024-01-26 14:10:06'),('b88faf8b5c80902c3c16905a18c7383fb99ecc41c7470bf1d89b943327ecc623f64b7687abea3ca1',8,1,NULL,'[\"user-app\"]',0,'2023-02-02 12:09:01','2023-02-02 12:09:01','2024-02-02 09:09:01'),('b89ae397ccf46e6e37af258dd277b4b8bffcfb16e975b6c07d955ec39e40d18b1517959631786b98',2,1,NULL,'[\"user-app\"]',0,'2023-10-03 18:13:06','2023-10-03 18:13:06','2024-10-02 13:13:06'),('b8a5dfdbfd80c3f23d3597d9951a3f236692cb24c68e9c3f58793848cf50f95d5ac8cf2b5c79f1b1',1810,1,NULL,'[\"user-app\"]',0,'2023-07-25 10:05:22','2023-07-25 10:05:22','2024-07-24 05:05:22'),('b8ac5b3a449a57e4b590d08ce7dbe3564430576a9fa0009a4a942546b7cec94aedcb0f9471682e53',1936,1,NULL,'[\"user-app\"]',0,'2023-08-31 20:41:28','2023-08-31 20:41:28','2024-08-30 15:41:28'),('b8ba823ad83f666f4e07cddf895902b5d5d211f62a7f2d19de880ada59261ee0e9c364f788aecaf2',1846,1,NULL,'[\"user-app\"]',0,'2023-09-28 01:17:37','2023-09-28 01:17:37','2024-09-26 20:17:37'),('b8d8e1bda1fac8c151e46874809c8a93262fda5af118abfb2270249ff4d377481b0b44387c309476',2,1,NULL,'[\"user-app\"]',0,'2023-07-02 23:16:23','2023-07-02 23:16:23','2024-07-01 18:16:23'),('b8fbc5738bc4c7f03c54fa9d4cb056d1b06e8ec46d5f1c9223149fa10423048fc9bae0b413d4df3c',1669,1,NULL,'[\"user-app\"]',0,'2023-06-30 00:22:07','2023-06-30 00:22:07','2024-06-28 19:22:07'),('b9042b48ea02d58e691b02c5bde462cfad71747548207107d63bb8012eee912fcbc63919de5fe654',2,1,NULL,'[\"user-app\"]',0,'2023-07-18 03:01:54','2023-07-18 03:01:54','2024-07-16 22:01:54'),('b90ae5a57f28a9340b697e2b2aea425976ab2658a084ad7d66c125d23e7d38549a12d80bb2d0882d',1018,1,NULL,'[\"user-app\"]',0,'2023-03-05 17:49:02','2023-03-05 17:49:02','2024-03-04 14:49:02'),('b92080ee7fb8c1a101834c03496b766ed1690ff642e5c201691c325756398285ac65988b7a087223',1416,1,NULL,'[\"user-app\"]',0,'2023-05-10 19:01:36','2023-05-10 19:01:36','2024-05-09 15:01:36'),('b9341d606ae7a252cc363d2cc2fc1cb2caaab7c53ba20b8a84ea41a70242c6f4fab19e435b17182d',1333,1,NULL,'[\"user-app\"]',0,'2023-06-17 21:28:49','2023-06-17 21:28:49','2024-06-16 16:28:49'),('b93561c8f460ae0ea5e3918e50b1a42a0e34e281191061a30fef3231db2f14e0f74f76b34d547169',2,1,NULL,'[\"user-app\"]',0,'2023-09-24 18:18:36','2023-09-24 18:18:36','2024-09-23 13:18:36'),('b93e3b0550041c243809d800af94d05f6101f1f8a34639157b862858089a975be23388c6f1692243',1409,1,NULL,'[\"user-app\"]',0,'2023-08-02 01:51:34','2023-08-02 01:51:34','2024-07-31 20:51:34'),('b93f02aaca4d4bfe0e6bd4416918c327da89091498932130cbbe2f00e5a2648188487aacae997ce1',2,1,NULL,'[\"user-app\"]',0,'2023-04-27 20:21:43','2023-04-27 20:21:43','2024-04-26 16:21:43'),('b941da4d6506509e02d8917453cd7467dbb5af1cc454821491e5d8f8f1974ecd4031125feac5b1dd',1057,1,NULL,'[\"user-app\"]',0,'2023-02-23 21:09:21','2023-02-23 21:09:21','2024-02-23 18:09:21'),('b9425bdc7c024e3e8f7d92620ad5c62d21c3935cbdb774e45e294d5c707d575f67179ed8edbcbc7d',155,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:33:33','2023-01-25 15:33:33','2024-01-25 12:33:33'),('b94880587abcef01d3e31e2c5089c081a306273bc791432dba49df5dc4c09016fee4927b85bedf3a',2046,1,NULL,'[\"user-app\"]',0,'2023-09-25 00:25:37','2023-09-25 00:25:37','2024-09-23 19:25:37'),('b94e03b1e8df23cda31b4c72ee06e0c9196cd0acece51601afbc23482b6988a4ad4c490a40055bde',2,1,NULL,'[\"user-app\"]',0,'2023-04-08 16:03:40','2023-04-08 16:03:40','2024-04-07 12:03:40'),('b9565cb636a8a014b8e9f2148252b4a58acac440be55ccd811b6814c47d2f008b14e205b53f27cb8',988,1,NULL,'[\"user-app\"]',0,'2023-02-19 13:19:06','2023-02-19 13:19:06','2024-02-19 10:19:06'),('b961974df156290220f9a31a3c876085756d2c78f3e4cf40d5ce20ab27609332a68a1f3835511105',8,1,NULL,'[\"user-app\"]',0,'2023-01-31 12:30:31','2023-01-31 12:30:31','2024-01-31 09:30:31'),('b96f5937ab59beadba43ed1c17ed819307b5140e616632aa8518b39b710a5f72da9516e9a2d87ef1',2,1,NULL,'[\"user-app\"]',0,'2023-08-28 08:42:00','2023-08-28 08:42:00','2024-08-27 03:42:00'),('b9782ccee6f1d1016efa8b29e30f4f7c758305ed05ec87605a19b67ef35e3108f4cae9c694ade0ee',8,1,NULL,'[\"user-app\"]',0,'2023-09-07 10:40:25','2023-09-07 10:40:25','2024-09-06 05:40:25'),('b986c80742cbfd00feddd84da5af48a4d4ed29fef04f533063d40393f4c14b0bf0123c02e154c980',1749,1,NULL,'[\"user-app\"]',0,'2023-07-13 02:44:01','2023-07-13 02:44:01','2024-07-11 21:44:01'),('b98c78e3680f598a6532ea2386033eebd5bf8f64f913f95db8a16525422f0be37ddbedf49268e750',2,1,NULL,'[\"user-app\"]',0,'2023-03-12 23:18:22','2023-03-12 23:18:22','2024-03-11 20:18:22'),('b98c99e4e216190e7276eb6e8522a2397e384a252d7aecc92fac7cf44f7443552302e98dfa7feed6',2,1,NULL,'[\"user-app\"]',0,'2023-05-16 18:32:17','2023-05-16 18:32:17','2024-05-15 14:32:17'),('b99b5e326f6e06acc7429dfda616d7a68b7f232920e4669efa58610149a644e3d02db5257f77700a',2,1,NULL,'[\"user-app\"]',0,'2023-09-16 02:14:03','2023-09-16 02:14:03','2024-09-14 21:14:03'),('b9a480075a2919139353e476e3b8a258e97287fbd8b47bfe1264b25ebc5cfba2ee02cc0f181099fe',2,1,NULL,'[\"user-app\"]',0,'2023-09-17 01:09:06','2023-09-17 01:09:06','2024-09-15 20:09:06'),('b9a82abc53609350a8e3716c35c7a153669c118d3b9f3d6cea97cfa8eb928332937f172eb9b9595a',1689,1,NULL,'[\"user-app\"]',0,'2023-07-03 16:18:28','2023-07-03 16:18:28','2024-07-02 11:18:28'),('b9ab5cf911295217c09b96287e8fe3f97f895fff118dd3e5370fddddcec1d12f9c8cca3aa7245001',1409,1,NULL,'[\"user-app\"]',0,'2023-05-10 01:54:40','2023-05-10 01:54:40','2024-05-08 21:54:40'),('b9bbf01ac373f408b2daaaba2b732a01aaa5e18b8caa86e1cd14d46b53b7150992263f40b973471b',164,1,NULL,'[\"user-app\"]',0,'2023-03-07 01:56:28','2023-03-07 01:56:28','2024-03-05 22:56:28'),('b9d65998aa52dc1106415a20928521c28a11e66bb979cb25db88974a9982f965d576bb30aaa296a2',888,1,NULL,'[\"user-app\"]',0,'2023-02-08 23:38:42','2023-02-08 23:38:42','2024-02-08 20:38:42'),('b9dcf0e28543327cdd977227ed4d48c5cb4b08aaf4f572fbac76ac3a8df5b45adc8adf4d3da0b212',934,1,NULL,'[\"user-app\"]',0,'2023-02-15 21:23:24','2023-02-15 21:23:24','2024-02-15 18:23:24'),('b9f6673cba1cb3261437bc1dc240f44ce7d2430f193b66406455b114d4f5c8fc0914e25dde45197e',1399,1,NULL,'[\"user-app\"]',0,'2023-05-11 17:48:07','2023-05-11 17:48:07','2024-05-10 13:48:07'),('ba0676fb389c240d691e2b23060d282347db7f7d6231e006fa2f5094ce0f28d3cf1ddb0cf04b6e6c',1647,1,NULL,'[\"user-app\"]',0,'2023-06-26 20:39:51','2023-06-26 20:39:51','2024-06-25 15:39:51'),('ba1943b1403ff20f00a4968608ba57b5525716ac707468dbf6685357be8fbb37b9bb53f474870209',2043,1,NULL,'[\"user-app\"]',0,'2023-09-24 15:38:16','2023-09-24 15:38:16','2024-09-23 10:38:16'),('ba1a280806af81512b386548d781f0cb9c345c8e57f4410aed0764c35d32a9943b868cb426eafd4b',2,1,NULL,'[\"user-app\"]',0,'2023-09-06 17:17:08','2023-09-06 17:17:08','2024-09-05 12:17:08'),('ba1cd950d915f4cac5b040bc853c39015878b851e13dd4ef14b1cdce553ac78705d919a1521902f3',81,1,NULL,'[\"user-app\"]',0,'2023-10-05 20:27:51','2023-10-05 20:27:51','2024-10-04 15:27:51'),('ba1f39503467a04cdb03f6cc6dfd902ec3d75f2ab5f6d22f52ece7d165dc5b03bde1bb02c0888d8f',1304,1,NULL,'[\"user-app\"]',0,'2023-04-23 01:15:33','2023-04-23 01:15:33','2024-04-21 21:15:33'),('ba249d51de5315d42bafbe4b9e09f5b7efb7a0036b63942e16726dc301fbb73a65e0fe427d40efb6',2,1,NULL,'[\"user-app\"]',0,'2023-09-11 18:51:51','2023-09-11 18:51:51','2024-09-10 13:51:51'),('ba26faab1a3a5ff61d81ba595a1c06380671be0f0f179287ad7a66d057b520b5a00cbc8de6e138f3',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 18:51:43','2023-03-29 18:51:43','2024-03-28 15:51:43'),('ba35fa6ffcc2a1d021fbe8644a819b5068db554d3c079cfafbb475b8299d8f332b83da960119e289',1116,1,NULL,'[\"user-app\"]',0,'2023-03-05 05:31:03','2023-03-05 05:31:03','2024-03-04 02:31:03'),('ba3971fa5bc0ee79b39e93f8de81ab18fa2ce3e97f19dba18ea194627226a6f5435a9f8ab923eecd',999,1,NULL,'[\"user-app\"]',0,'2023-02-20 15:33:40','2023-02-20 15:33:40','2024-02-20 12:33:40'),('ba510881e1a336642dc645b65acee7e22d168483c26eccc9abfdaf0adb594b668d4cdeb459a5a6cc',941,1,NULL,'[\"user-app\"]',0,'2023-02-22 00:42:19','2023-02-22 00:42:19','2024-02-21 21:42:19'),('ba7387e0f750de74b54ee5415b0a227800be48cbcfc235d7f2c32b3477e7679a03bb39c60847faad',345,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:22:05','2023-01-25 15:22:05','2024-01-25 12:22:05'),('ba8b4b31308f21b365c8ad9c7c821b5a8b6315d5b9b4ef450f42e24b4046b5e30d1ad2324f24bad2',1880,1,NULL,'[\"user-app\"]',0,'2023-08-15 02:09:22','2023-08-15 02:09:22','2024-08-13 21:09:22'),('ba8e87c400a96446e252eae2e98641c1155fa041be2a53f2cdc33bb58cbd34817527c1521ab1a3d1',1288,1,NULL,'[\"user-app\"]',0,'2023-04-21 01:20:08','2023-04-21 01:20:08','2024-04-19 21:20:08'),('ba98a9bb4fbadd3c97a05d745c97a722ea30c3c7af42740d1a73b1ecf90144cb671a147982c32d16',1902,1,NULL,'[\"user-app\"]',0,'2023-08-29 02:04:21','2023-08-29 02:04:21','2024-08-27 21:04:21'),('ba9a00b1fb3e28fddb31e08a073bdbcd60622e94e27b9531b4bea55064323c1ee7531690a1d63638',1188,1,NULL,'[\"user-app\"]',0,'2023-03-24 18:05:36','2023-03-24 18:05:36','2024-03-23 15:05:36'),('ba9a1c55dd0e9a0dded49da9443861333ff73edc3c4dd90d06201a183cf3ddb20d5b04b15d9befe3',2,1,NULL,'[\"user-app\"]',0,'2023-08-16 04:17:57','2023-08-16 04:17:57','2024-08-14 23:17:57'),('ba9ae678a6aa9fb74251678ecb206c3e5de92d422b89f9d5a03f9f09f476b7eded18e4100c37f315',2110,1,NULL,'[\"user-app\"]',0,'2023-10-07 03:32:27','2023-10-07 03:32:27','2024-10-05 22:32:27'),('bac187ea56ac9d49a4c3a28e1a3779181baac6ae68b38ec5e7b45570a10031030900db18e76346e0',1524,1,NULL,'[\"user-app\"]',0,'2023-06-28 01:48:41','2023-06-28 01:48:41','2024-06-26 20:48:41'),('bad283ad89c21145aa522d971953376048fc55417b15aba4ba840c8b5866a109f9cb8f4835ad47b1',2,1,NULL,'[\"user-app\"]',0,'2023-08-24 14:22:43','2023-08-24 14:22:43','2024-08-23 09:22:43'),('bb00e2c19f32dea261981d1639216833d1490f9aa86a36373ec9b7ef19cb5fdb92ffa163f16df3d7',761,1,NULL,'[\"user-app\"]',0,'2023-01-27 19:45:10','2023-01-27 19:45:10','2024-01-27 16:45:10'),('bb21f7a114a6989a34fc7d92fe46098c0e8cc4d66d836e929117fd950349c41fe8b176431eb0d122',2,1,NULL,'[\"user-app\"]',0,'2023-08-08 14:45:41','2023-08-08 14:45:41','2024-08-07 09:45:41'),('bb3fc6101822f2d868b830289d5bad39ad1b0cca0ff41950cf2bcc1cce200353929eb76329f06134',1074,1,NULL,'[\"user-app\"]',0,'2023-06-27 20:10:50','2023-06-27 20:10:50','2024-06-26 15:10:50'),('bb5fa26b03cc187d9fccd2769fe9cdc4aeaf9d90cd1341cd709140629a6b60c5d80b4e9e867c522e',1928,1,NULL,'[\"user-app\"]',0,'2023-10-06 22:18:47','2023-10-06 22:18:47','2024-10-05 17:18:47'),('bb7824a6aebe4551efa196e447ed23ef79f9be660d77e07997d41295c28ba00f1c3734224db03309',541,1,NULL,'[\"user-app\"]',0,'2023-01-25 05:30:05','2023-01-25 05:30:05','2024-01-25 02:30:05'),('bb9aca058fac6bcb65f6f0ac294ce176b6f3e65fe17daf6f15408236cbb6aa1c64c1d68758ce9af9',2,1,NULL,'[\"user-app\"]',0,'2023-01-30 17:26:23','2023-01-30 17:26:23','2024-01-30 14:26:23'),('bbc09c2c2694515c25eb17eaad577466b0a02c3522a6ff03ec0538f28c1719445ad8495422b9e5a7',406,1,NULL,'[\"user-app\"]',0,'2023-09-16 23:08:10','2023-09-16 23:08:10','2024-09-15 18:08:10'),('bbcb9828d0d8a2696258f02bd597cd68abf02a71471c99bd1f59a11ef238d65bf24b04c25934735e',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:01:48','2023-01-25 16:01:48','2024-01-25 13:01:48'),('bc0e865aeb2ba24be74e53ddf77b2b4ebda556c2b1e67166b4ddd34c82153fe2ef14f5786c121ada',1425,1,NULL,'[\"user-app\"]',0,'2023-05-11 14:04:36','2023-05-11 14:04:36','2024-05-10 10:04:36'),('bc1e0a43d090d46542c9bf8ecb4b93f77dc5e08a26d6bd3d7895deba354bccc8d70e9847409a6184',44,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:58:09','2023-01-28 13:58:09','2024-01-28 10:58:09'),('bc2f4e05ede55cb1129f698fc2021c75038c43b899afe7cc5449f113c2d80aa226e0bd1072b2f980',2,1,NULL,'[\"user-app\"]',0,'2023-05-21 02:17:18','2023-05-21 02:17:18','2024-05-19 21:17:18'),('bc307f1b880133fd5e5656f198a9e453ad5f0b9bafc779bf5227bd78e507e1e36d4a543b0fbecea6',821,1,NULL,'[\"user-app\"]',0,'2023-02-21 10:23:35','2023-02-21 10:23:35','2024-02-21 07:23:35'),('bc43c28ba508e9526a9a7675331206c0870708f2b7f5b77189469a12f5fd428e7f466014ef23b2ba',1399,1,NULL,'[\"user-app\"]',0,'2023-05-18 04:10:35','2023-05-18 04:10:35','2024-05-16 23:10:35'),('bc470fb6c9cb9ab8f3db1f9b89db27a37d73c5c3563c9d8903fa9c19d038b570fe9c31b89e52ee0b',2024,1,NULL,'[\"user-app\"]',0,'2023-10-04 03:12:24','2023-10-04 03:12:24','2024-10-02 22:12:24'),('bc47f6e210ce96c69341feff2721540211ef3a1fe38be54201f561b3aeb5505bde28e2d8c70430a0',1238,1,NULL,'[\"user-app\"]',0,'2023-04-08 15:41:47','2023-04-08 15:41:47','2024-04-07 11:41:47'),('bc534a6aca21c4595c0966cf405107c1440f033a5f320cf6dd3780ead1b5b45dc89ade8829f3494c',2,1,NULL,'[\"user-app\"]',0,'2023-01-31 17:09:58','2023-01-31 17:09:58','2024-01-31 14:09:58'),('bc53bee2fa35bc60c62146cacee7648b9bc6b05db7aabd8826a949e4e2e7b9d26ed8d08fab9098d8',1208,1,NULL,'[\"user-app\"]',0,'2023-03-29 16:23:32','2023-03-29 16:23:32','2024-03-28 13:23:32'),('bc61472eddf2a37bbc67bc6fece0fa9a97a109cfadb9d6344b043059b72680a4745b3390fc48bfca',1017,1,NULL,'[\"user-app\"]',0,'2023-04-14 16:41:54','2023-04-14 16:41:54','2024-04-13 12:41:54'),('bc6e274f8557f55b04e9f6c6ef1dfb5b88dd0340eabb1fe74580d0ef302eb095c34f65c7925d441d',2026,1,NULL,'[\"user-app\"]',0,'2023-09-21 22:55:02','2023-09-21 22:55:02','2024-09-20 17:55:02'),('bc6ebc8b3a1e28881aefb3b7323182042c5555ea08fb576451951f8234117881792436ec4b148c7d',1097,1,NULL,'[\"user-app\"]',0,'2023-02-28 23:26:23','2023-02-28 23:26:23','2024-02-25 20:26:23'),('bc7062bce4e326d9a964146d44536c8de06c72629f8ae176ec04abb8ea1545c8ea81081847d3d3d0',942,1,NULL,'[\"user-app\"]',0,'2023-03-07 23:59:15','2023-03-07 23:59:15','2024-03-06 20:59:15'),('bc71010979bcc20ef31cc9a6eb6b6a571bd53e53ace95291a03082eed5b193143c948a1ef6c60d66',664,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:21:51','2023-01-25 14:21:51','2024-01-25 11:21:51'),('bc78c8f05ec3138575e79e76d70736bc43f754a6bae35256b32c8b8e4b02332d1962037995ca97c5',2,1,NULL,'[\"user-app\"]',0,'2023-04-21 01:06:34','2023-04-21 01:06:34','2024-04-19 21:06:34'),('bc7b57386afc35f1dd233a9aeb90ab24e52035b578d20e9abbfdf73c9010da15d525d8cb10fda87d',2,1,NULL,'[\"user-app\"]',0,'2023-06-26 15:15:19','2023-06-26 15:15:19','2024-06-25 10:15:19'),('bc9084afec4940282f17a9daa5248e3a151bac453716ff869ec776ab605c1b504cbd3cac97379c61',1304,1,NULL,'[\"user-app\"]',0,'2023-04-23 01:24:43','2023-04-23 01:24:43','2024-04-21 21:24:43'),('bc977127c71ecc270068b15e8695ab4e6eb6e1975c6dc16ba62a732e4ee13c9f983e9771222bf4b8',1801,1,NULL,'[\"user-app\"]',0,'2023-10-06 16:51:25','2023-10-06 16:51:25','2024-10-05 11:51:25'),('bcb132a02b16d175943927a08243ce749a953186a2a2888e500eeedabffc57f5a6f9592cbad3ab81',2,1,NULL,'[\"user-app\"]',0,'2023-03-16 15:13:21','2023-03-16 15:13:21','2024-03-15 12:13:21'),('bcb4070786d1a358cbb01f2dfcb8aa188b2ba01159c1c9cd193fb5bc7111cd5d2a5d1e97d10ab8ef',747,1,NULL,'[\"user-app\"]',0,'2023-01-26 21:03:09','2023-01-26 21:03:09','2024-01-26 18:03:09'),('bcb4bbb7668ce539226e8a2615cd2668da73f705d2236f597cb37a1f24afdc1cdcd70ab7de62cf32',689,1,NULL,'[\"user-app\"]',0,'2023-04-01 17:27:29','2023-04-01 17:27:29','2024-03-31 14:27:29'),('bcc4c2fabaf085924bfe934dba9d80b41ad91d43060b191c24184af07c1ed683e8494325ebb39455',517,1,NULL,'[\"user-app\"]',0,'2023-01-25 20:22:38','2023-01-25 20:22:38','2024-01-25 17:22:38'),('bcda59ae9b39878d31a7bae17c640a2057bfb56eeb32b84a01e3d83174cb0ba628be3232b96a9a3c',1011,1,NULL,'[\"user-app\"]',0,'2023-02-21 00:28:53','2023-02-21 00:28:53','2024-02-20 21:28:53'),('bcf2953ab7aea8aea4f0df40619eb9e441c02bd825b1deed7d9de68ffc7f534599e521b0a4e04d37',566,1,NULL,'[\"user-app\"]',0,'2023-09-23 17:00:21','2023-09-23 17:00:21','2024-09-22 12:00:21'),('bd107325e4584f81817e701784efd5bd720e50fdca7cd015fe84ec7eed4741fd7f2c97f4ce83594f',2112,1,NULL,'[\"user-app\"]',0,'2023-10-07 09:40:20','2023-10-07 09:40:20','2024-10-06 04:40:20'),('bd1491c422784d0036c945e74057d5f9a6ca9180a3bc5ca9ac673245f2cc780ce51abbd0156e16e8',708,1,NULL,'[\"user-app\"]',0,'2023-01-26 20:09:39','2023-01-26 20:09:39','2024-01-26 17:09:39'),('bd1fb34cef6a7ee424e14a07355cf41ce2c2aa6e64f8346717a68eabcecaa44a51e41d2f30aed2a4',832,1,NULL,'[\"user-app\"]',0,'2023-02-28 22:55:56','2023-02-28 22:55:56','2024-02-25 19:55:56'),('bd29dcb2775a08cf717fe744ca6d019d4715c426c4d99bc2de5bd4c65a34dbd9adb5b234ede86d57',118,1,NULL,'[\"user-app\"]',0,'2023-10-01 15:35:11','2023-10-01 15:35:11','2024-09-30 10:35:11'),('bd32427b755e37ed121cb2014f2efd68c5d7b88a185f0742809b555e9a75855a5193d72bb481ae67',359,1,NULL,'[\"user-app\"]',0,'2023-04-19 18:22:07','2023-04-19 18:22:07','2024-04-18 14:22:07'),('bd38ac82405c1037f78b2c557d013c97d1b82d54954efa31e997f7afa55f39712e76fb7246c1e0e3',908,1,NULL,'[\"user-app\"]',0,'2023-02-11 16:53:30','2023-02-11 16:53:30','2024-02-11 13:53:30'),('bd39e05704251c666582969b8e593f0d223065cb836e75ab34f0a4cdf01827d1165cd59505e36c0e',2076,1,NULL,'[\"user-app\"]',0,'2023-09-30 22:31:32','2023-09-30 22:31:32','2024-09-29 17:31:32'),('bd5a1cd998fc7f34c3ea57c32124496ef1819d7bd9e7a2ccd4637940b44c36825caae27a707a0bac',1242,1,NULL,'[\"user-app\"]',0,'2023-04-09 13:49:28','2023-04-09 13:49:28','2024-04-08 09:49:28'),('bd6478b520df68ce50b4096dbf7cf61425780f45011d48e22edc1af8deb5468fcdd892ca4c3ce940',820,1,NULL,'[\"user-app\"]',0,'2023-07-21 14:09:54','2023-07-21 14:09:54','2024-07-20 09:09:54'),('bd6a7df9ce85f6d8e85c12142c20d37f2127ef371590030b09740ee3e09246966b552fef3a42e23d',2,1,NULL,'[\"user-app\"]',0,'2023-09-11 21:59:08','2023-09-11 21:59:08','2024-09-10 16:59:08'),('bd900fc2e50de94f60806e94c49bfed54157969617bc06eb14e7a475084b1bf6ec147f95b5f2ae44',724,1,NULL,'[\"user-app\"]',0,'2023-01-26 10:58:53','2023-01-26 10:58:53','2024-01-26 07:58:53'),('bd918569ed81d54566b83d5a71333f58bdc3a9f486ae6bf14d80566c31b37e1157f03a22ea46bf35',2024,1,NULL,'[\"user-app\"]',0,'2023-10-04 03:12:21','2023-10-04 03:12:21','2024-10-02 22:12:21'),('bdb932f9c2a0ab59f871f95391d24d987bd387303ddac9f51b50aad02f8f69983d0ee39680707e71',2072,1,NULL,'[\"user-app\"]',0,'2023-09-30 04:05:21','2023-09-30 04:05:21','2024-09-28 23:05:21'),('bdc8583276365a19a0c19f78e6a566554f26abb38269f78223dff0ccdde23b48b30b3fabb01d3d06',2,1,NULL,'[\"user-app\"]',0,'2023-04-16 19:27:38','2023-04-16 19:27:38','2024-04-15 15:27:38'),('bdc874be2e5f426abbd70aa8a283136623f4421b9416bfb61125ef2c6d33e16e084d0ed51e67c7c2',321,1,NULL,'[\"user-app\"]',0,'2023-10-04 23:47:42','2023-10-04 23:47:42','2024-10-03 18:47:42'),('bdd85af265f0bac1714cd5a42e2cc11a0834645e1625a6f6e37f853284db6a67de9c1daeb866ab6a',1419,1,NULL,'[\"user-app\"]',0,'2023-10-06 03:33:37','2023-10-06 03:33:37','2024-10-04 22:33:37'),('bdd95bde9451965febd38635019c16ede4a8c3409d25b8180250c549bcd8bcb535bb3ae1644faa6e',1190,1,NULL,'[\"user-app\"]',0,'2023-03-24 19:24:14','2023-03-24 19:24:14','2024-03-23 16:24:14'),('bde2b1a97c6d46eecd2c05e7b4945ab86b79211a35a13f0d109075e38ad32b5447332b9950d46220',2,1,NULL,'[\"user-app\"]',0,'2023-04-10 23:51:50','2023-04-10 23:51:50','2024-04-09 19:51:50'),('be0090e74b0450b2c5d7111f2dc60e61c4d77f2bad441b09807bd51467b868e553f0e38a167e8766',2,1,NULL,'[\"user-app\"]',0,'2023-06-29 12:56:28','2023-06-29 12:56:28','2024-06-28 07:56:28'),('be05d21eecbe2ba32a27ade5865dd8fda087015651b1fb3242e162a26fa6e50e401e16d4bcc81d9d',1086,1,NULL,'[\"user-app\"]',0,'2023-03-02 21:07:40','2023-03-02 21:07:40','2024-03-01 18:07:40'),('be0ca9376c20aae34d1bdfed51d846314ad8208838fa00bb7bd0ab08e154bbf373eefa23c3260b53',1455,1,NULL,'[\"user-app\"]',0,'2023-05-15 21:07:57','2023-05-15 21:07:57','2024-05-14 17:07:57'),('be148c1a69e3ada03eb7f659e37e1cac1f41c968e51b50c361258002e12127197d5fea2d9ea25c79',191,1,NULL,'[\"user-app\"]',0,'2023-01-25 10:59:33','2023-01-25 10:59:33','2024-01-25 07:59:33'),('be1b418c1937a0ddf3d96ca26845a76e0015fcf72ac64d43d8de8d46a6824b3ef4b29fb578ea7b64',2,1,NULL,'[\"user-app\"]',0,'2023-04-30 16:05:19','2023-04-30 16:05:19','2024-04-29 12:05:19'),('be23557c371daf9e9eda9fc043cfa747a44cb7dd14b00b835504186103560248a23e594ca15ebe42',915,1,NULL,'[\"user-app\"]',0,'2023-02-23 10:03:22','2023-02-23 10:03:22','2024-02-23 07:03:22'),('be2c3c5c3a4e7933b08aff8fe3e47b19684a6ec10d395c432e8ce51f87f37a2833a3cd5e89f8eee1',768,1,NULL,'[\"user-app\"]',0,'2023-01-27 23:42:22','2023-01-27 23:42:22','2024-01-27 20:42:22'),('be59692a81e6ea6039124f66b31b87a838ea843c3ffcc2eb5a592bdb9620a30135189aebe7f8fd7a',2,1,NULL,'[\"user-app\"]',0,'2023-06-21 01:09:04','2023-06-21 01:09:04','2024-06-19 20:09:04'),('be5da5712b750a75e2ed3526107a67b56bc042715a3337d896c7031de79399fbb7042cac589cd466',1752,1,NULL,'[\"user-app\"]',0,'2023-08-22 01:03:17','2023-08-22 01:03:17','2024-08-20 20:03:17'),('be8dfd86dfd9fdba34ee54f5c2320b472b6ece8e8ca7656b08c2c40e718f4944b29211ffdf688cef',2,1,NULL,'[\"user-app\"]',0,'2023-10-01 21:25:41','2023-10-01 21:25:41','2024-09-30 16:25:41'),('be933b060b6ceba4b7d8bc5b746c5e775d6171d5f59d3239b20e06286be52599099d3e77230cc8d9',2032,1,NULL,'[\"user-app\"]',0,'2023-09-23 00:04:22','2023-09-23 00:04:22','2024-09-21 19:04:22'),('beabf75b573ac42dc586312252cf6126a68484ef5b3713f562bc17c971f2ab676bb17a4d92f98fe9',2,1,NULL,'[\"user-app\"]',0,'2023-04-30 14:19:46','2023-04-30 14:19:46','2024-04-29 10:19:46'),('becfb8ce46f8481f773f11936cf63d8a2e1d1513b31297f7b05442754c363e0768ab30fad9cd072f',2,1,NULL,'[\"user-app\"]',0,'2023-10-03 19:09:52','2023-10-03 19:09:52','2024-10-02 14:09:52'),('bed4570ebee51d8c5351c8c3cb77a0bfeac74cce84fd0038f65691080a11362113d884eaa37c38b5',169,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:46:27','2023-01-25 11:46:27','2024-01-25 08:46:27'),('bed871e28c5dfe94ee981ae8cd7dabd11722dd3383a360e1410ac657a13057fe4d1c2c9d3887ab2d',838,1,NULL,'[\"user-app\"]',0,'2023-02-22 18:57:21','2023-02-22 18:57:21','2024-02-22 15:57:21'),('bee80e46e1dcad3004fdd5a69866cfecf6cbd40516989d5ae4de5be936ff0f15ac4f770e5b85c355',1068,1,NULL,'[\"user-app\"]',0,'2023-02-24 12:39:56','2023-02-24 12:39:56','2024-02-24 09:39:56'),('befe7f751bfe2557cc6514206089bb816d8588442389c1ad902c473d374852159c5bd21e6ccf70b9',8,1,NULL,'[\"user-app\"]',0,'2023-03-04 01:39:03','2023-03-04 01:39:03','2024-03-02 22:39:03'),('bf018a8193aa9f359381716e874c48d803c16264317281af214c847b82e5f167ab22f89a7d2bc217',183,1,NULL,'[\"user-app\"]',0,'2023-09-27 02:15:08','2023-09-27 02:15:08','2024-09-25 21:15:08'),('bf01ab8812561f9d299a97384acf59b88a5a0858f7fc8d5e7ce302cdb4d4dfabf95b51decebaad1f',2,1,NULL,'[\"user-app\"]',0,'2023-04-13 19:31:26','2023-04-13 19:31:26','2024-04-12 15:31:26'),('bf1c17ea6488ca6490d7b7d97589e77c816c7ef1cc3ad298bfdca5b96a12ba20fd3505d394e635e7',1418,1,NULL,'[\"user-app\"]',0,'2023-05-10 20:30:50','2023-05-10 20:30:50','2024-05-09 16:30:50'),('bf1e1f77e00fd56b720ced68ac2d2f2a0077bdd548ca7c85900f5fa36ede42472fa645cf851cbea9',1023,1,NULL,'[\"user-app\"]',0,'2023-04-04 22:35:26','2023-04-04 22:35:26','2024-04-03 18:35:26'),('bf32766c27ebeb79dfdaffaab111d52db0a314a37719dcedf623b30829b3eabaee5b1db914e69811',2,1,NULL,'[\"user-app\"]',0,'2023-07-28 01:35:37','2023-07-28 01:35:37','2024-07-26 20:35:37'),('bf3db6a666d55e6e0bb082581a475f4429fd1a253868888117a04ecfb48aa8d9dbb837e95e5fd5a0',957,1,NULL,'[\"user-app\"]',0,'2023-04-19 21:53:09','2023-04-19 21:53:09','2024-04-18 17:53:09'),('bf435994e2b499a9da0993fbe944f380031721144cfc1717fafaa18c6f86f120dc070ac46c2aa788',8,1,NULL,'[\"user-app\"]',0,'2023-01-27 17:58:52','2023-01-27 17:58:52','2024-01-27 14:58:52'),('bf4c8019c1a42320a8a42bdebcf42bd46e54bc5d1038dae9ec147f7624677f80329b283de826e647',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 19:12:53','2023-10-05 19:12:53','2024-10-04 14:12:53'),('bf50d799979a9ff5d6709efba6127dac181f0c8da0d5b49ed2980041ba36d62af8e02d58917b31f8',2,1,NULL,'[\"user-app\"]',0,'2023-05-13 17:48:34','2023-05-13 17:48:34','2024-05-12 13:48:34'),('bf51e3c2363ac497d3d402b15f9ab0c696a563fa63796c24ead2d4dd60956ae73ab39e1f10445f23',1041,1,NULL,'[\"user-app\"]',0,'2023-02-22 19:59:52','2023-02-22 19:59:52','2024-02-22 16:59:52'),('bf56c67890ec96fb0f1e59ed9f131d38fa9f78cea30a498401df43d6f35e770e377ab6b901f3a67d',712,1,NULL,'[\"user-app\"]',0,'2023-01-25 23:12:27','2023-01-25 23:12:27','2024-01-25 20:12:27'),('bf5a47ec61df93ed6d6c4c24e32c75326c6edd6147db1f216e2c205f88db425762c69a00fbb5b278',438,1,NULL,'[\"user-app\"]',0,'2023-02-13 18:05:02','2023-02-13 18:05:02','2024-02-13 15:05:02'),('bf5f0216fc4b636a21b10355d03b90fc629b18a399f3d4ab3ac557da22581d0833191924eb377280',1081,1,NULL,'[\"user-app\"]',0,'2023-03-08 21:12:47','2023-03-08 21:12:47','2024-03-07 18:12:47'),('bf5f5619d317128aa22bf32ac0190bbf4fdcae0da26b246978379803ebc1ab8a310d1ea1963eba58',73,1,NULL,'[\"user-app\"]',0,'2023-09-16 14:58:53','2023-09-16 14:58:53','2024-09-15 09:58:53'),('bf609f170bcac734f43834d38bb9cf5f4b972b5a41e2245a793a935227a94c39433e117ce1d9c151',2,1,NULL,'[\"user-app\"]',0,'2023-08-21 08:26:41','2023-08-21 08:26:41','2024-08-20 03:26:41'),('bf7492b66f19e48be94e60bd30a437f4476ddce002a818d75ec117bc2107257115a9889667443cb3',175,1,NULL,'[\"user-app\"]',0,'2023-09-30 16:06:32','2023-09-30 16:06:32','2024-09-29 11:06:32'),('bf8059841f808bb20cf9ecf03bf5af97a29295ffe6bf20c4349473c2ded7c89cbfbd934b4da5e65b',2,1,NULL,'[\"user-app\"]',0,'2023-09-30 15:00:02','2023-09-30 15:00:02','2024-09-29 10:00:02'),('bf81ccfce66034a62c9cf44fd6f35c5b5e6c367466e8135915b78ed97027357764113280865a0d51',344,1,NULL,'[\"user-app\"]',0,'2023-02-01 22:10:01','2023-02-01 22:10:01','2024-02-01 19:10:01'),('bfa1cefe0b3b96ed85efe3af28140297a492ee1ebb2ddce8ac48317050a566cc256b53115cfb034f',1842,1,NULL,'[\"user-app\"]',0,'2023-07-31 03:43:48','2023-07-31 03:43:48','2024-07-29 22:43:48'),('bfba51615fb8d111c0087eed58439c2cbe09c3c822b2820d2dbffd4d619d96744e47dcfe39bb6de4',857,1,NULL,'[\"user-app\"]',0,'2023-02-04 17:49:01','2023-02-04 17:49:01','2024-02-04 14:49:01'),('bfc586c699fda7dd23915b9b92e57d3cf1978f8577a3b74234436f5b714462c8f179e7f43262a093',1898,1,NULL,'[\"user-app\"]',0,'2023-08-19 18:10:57','2023-08-19 18:10:57','2024-08-18 13:10:57'),('bfc7d4bc33af167fd8b7d3a385b1566bf8f03a73ac6b895d937ce7df72ee6647969aaa9e4570047e',2,1,NULL,'[\"user-app\"]',0,'2023-09-23 18:16:36','2023-09-23 18:16:36','2024-09-22 13:16:36'),('bfe2fb8a65a9dda2c1729c69777e1c24581a724b155baf2dc3cd87e81412088508fed3347872c4c5',2,1,NULL,'[\"user-app\"]',0,'2023-09-28 23:00:27','2023-09-28 23:00:27','2024-09-27 18:00:27'),('bfe56b78c8776629be751bf35b668902da994bac3f8bf2e06a8a44a25a323844e03bb31272d8f5a6',55,1,NULL,'[\"user-app\"]',0,'2023-02-14 18:55:12','2023-02-14 18:55:12','2024-02-14 15:55:12'),('bffb5b4459a49e9299901d0bd64fba7f877e3bd9ab4499cfd95dcb752e2ce8aa4266d98e9ca97e3a',720,1,NULL,'[\"user-app\"]',0,'2023-01-26 01:12:32','2023-01-26 01:12:32','2024-01-25 22:12:32'),('bffceed63145d071559f09ce41bed019149ffa5548c0f18c5d9caa9fcef2cfb4a1b665c813eb5c98',160,1,NULL,'[\"user-app\"]',0,'2023-01-31 10:20:27','2023-01-31 10:20:27','2024-01-31 07:20:27'),('c02313b4843d89fe82a28c1d9e94bf6fbd7007df1727135a586560a74dd694b89250e13b63ff8d47',1667,1,NULL,'[\"user-app\"]',0,'2023-06-29 16:33:31','2023-06-29 16:33:31','2024-06-28 11:33:31'),('c026ee48f73f81b16883530d9391507b324970251a108ec0f85724446ed2c7129b362076edcb1edf',1445,1,NULL,'[\"user-app\"]',0,'2023-05-13 17:50:13','2023-05-13 17:50:13','2024-05-12 13:50:13'),('c02db0763f3fb6c504b1f0d42b1d0b3e7bbd4c0a81d8270bbb5278e0cd444895bb2a0fc7bdd65e4f',2064,1,NULL,'[\"user-app\"]',0,'2023-09-28 01:13:09','2023-09-28 01:13:09','2024-09-26 20:13:09'),('c0945e6f13c6f59482d2bf456411988d7b18b51ca9455aa1b89a720f2e5094aedbcf75020cc0c7b6',1020,1,NULL,'[\"user-app\"]',0,'2023-06-09 23:45:18','2023-06-09 23:45:18','2024-06-08 18:45:18'),('c0b2cf79e418812bdd0c91848637513ef425c1c1849dcb427fbf3c5d3b5f2d15e0db485e05382198',348,1,NULL,'[\"user-app\"]',0,'2023-01-27 13:34:50','2023-01-27 13:34:50','2024-01-27 10:34:50'),('c0c095b27a35e4dd7b1c9c228f7a4d8903c02920f023e71ac311bbda22f258beae9b82cded9ee2ca',2,1,NULL,'[\"user-app\"]',0,'2023-09-29 00:13:40','2023-09-29 00:13:40','2024-09-27 19:13:40'),('c0cecccd99e4d00bc0233bd764895e25b67a1d04d9a10ab0ce3bf491ab9500f028a891885921c7cb',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 18:50:42','2023-01-26 18:50:42','2024-01-26 15:50:42'),('c0db8e10c55b4b2376122b03596464344de61dc8c312678736288c29a1d483f7f3f4fe9ccf6e68a4',2,1,NULL,'[\"user-app\"]',0,'2023-09-28 19:31:23','2023-09-28 19:31:23','2024-09-27 14:31:23'),('c0fc818e7ebc417426960d69ce607ad0b036aa7a724fca2f82c723b58e1767c8be51564389a31f4d',1751,1,NULL,'[\"user-app\"]',0,'2023-07-13 04:36:10','2023-07-13 04:36:10','2024-07-11 23:36:10'),('c116338b5d3a3bc0091050d35acdc9c00f0bc21bfe7ba04a60d64bd03b961eaa8970ca72b943ccea',2,1,NULL,'[\"user-app\"]',0,'2023-05-19 23:55:42','2023-05-19 23:55:42','2024-05-18 18:55:42'),('c126ee4b75fe6ff49936f5b7aa47372d9c3405c51c47e449f704aa86ab96cdcfa1f50fdd225bab34',844,1,NULL,'[\"user-app\"]',0,'2023-02-22 20:21:14','2023-02-22 20:21:14','2024-02-22 17:21:13'),('c1279393a1bebf62888fa5c772a40ca7bc38c486842303d1cb96e8b05ec24aa5aafd4da265d53da3',1610,1,NULL,'[\"user-app\"]',0,'2023-06-21 01:55:00','2023-06-21 01:55:00','2024-06-19 20:55:00'),('c127ae5a3e9cd46d5a08e701bdf427f9e6041991c6d1afcd5aa845d66742caec1f31a48a3617c441',553,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:17:22','2023-01-25 16:17:22','2024-01-25 13:17:22'),('c12f568b18aef97784272a4454bbb001d4c937a609fec67a07b286d2e8e69c9f904e10c6f0cc3ec8',922,1,NULL,'[\"user-app\"]',0,'2023-02-14 19:44:02','2023-02-14 19:44:02','2024-02-14 16:44:02'),('c1320b7f16b6197b6a196e181b8731a94414a922daf78d92cc49ef3eea259996689de8ebd6887a0d',134,1,NULL,'[\"user-app\"]',0,'2023-09-27 18:56:39','2023-09-27 18:56:39','2024-09-26 13:56:39'),('c152c086028b4d8449a59fa096e33ce207be3153ca288642c6d6416b11b927027ad0d02cd80bb6e0',2,1,NULL,'[\"user-app\"]',0,'2023-02-08 14:41:54','2023-02-08 14:41:54','2024-02-08 11:41:54'),('c15e08bf5c1109d348853629a2b6680725a9a5012a2cad0f6a137599ed803686fc2d274620e92246',8,1,NULL,'[\"user-app\"]',0,'2023-10-04 15:50:28','2023-10-04 15:50:28','2024-10-03 10:50:28'),('c15f7dac4bf39304e2cb9b091d3fa2126e4afb665d0c54fc7a6d2680fc20eeb1f7af1d2167751096',2,1,NULL,'[\"user-app\"]',0,'2023-06-17 05:24:14','2023-06-17 05:24:14','2024-06-16 00:24:14'),('c16b29055aba0cc909836bfe52a759395d4601dfd4e1780ec370b2164b8fda3a401441e70e81a388',973,1,NULL,'[\"user-app\"]',0,'2023-02-18 14:19:36','2023-02-18 14:19:36','2024-02-18 11:19:36'),('c16f76f77fd5e364b875fd176615c7d8fe86eb46a874dafdf7129b4d3f17150024d0bbf0e40776c2',953,1,NULL,'[\"user-app\"]',0,'2023-06-07 14:14:15','2023-06-07 14:14:15','2024-06-06 09:14:15'),('c177de3db655ed5ee681ddfac2896d16335bfb192d079a403e3530dfa50dd483c80454b3c5bacf00',984,1,NULL,'[\"user-app\"]',0,'2023-02-18 21:09:46','2023-02-18 21:09:46','2024-02-18 18:09:46'),('c17e2c2d600328a94862abd03c1e017026d2b03aa43e447928e40eb24027a72d5ec49d6b147198b1',2,1,NULL,'[\"user-app\"]',0,'2023-03-18 17:10:56','2023-03-18 17:10:56','2024-03-17 14:10:56'),('c17e6c195424b97e6b7bf90fb9d6c0a88787d894a022acf9573b8fe6ed11eaecca77a396b17251a2',154,1,NULL,'[\"user-app\"]',0,'2023-02-16 00:32:22','2023-02-16 00:32:22','2024-02-15 21:32:22'),('c183fe0ab460431edaa820e5430e34a83abd1eb9928364e888feaa6ae1d98cc472d9386746568447',1589,1,NULL,'[\"user-app\"]',0,'2023-06-17 23:52:03','2023-06-17 23:52:03','2024-06-16 18:52:03'),('c1855f6e416926c16b3805cdea5775ba438fafc8c531640842834c892beb0a2b071151d89acb3799',1126,1,NULL,'[\"user-app\"]',0,'2023-04-19 16:45:29','2023-04-19 16:45:29','2024-04-18 12:45:29'),('c1b5293667533424081e41dc10ba9057efe112f1bf26aaf0e2bd81681c93fb24fe39f743e031b5d5',1356,1,NULL,'[\"user-app\"]',0,'2023-05-01 12:20:28','2023-05-01 12:20:28','2024-04-30 08:20:28'),('c1b80210825f6e35c2f8ee597c416c1dc6b3beb66d148d4a352d293b09c85d0b311561ef15ab525c',57,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:48:06','2023-01-25 19:48:06','2024-01-25 16:48:06'),('c1c65e07bf0fae1d74ad4a4fa4fb1c0f5bbbd6d7f93c3cd5070ec5b0ad947c79216ec250f6e3eb07',1722,1,NULL,'[\"user-app\"]',0,'2023-07-08 12:46:30','2023-07-08 12:46:30','2024-07-07 07:46:30'),('c1cfe9d471fec65276070e99af09e40606da3e2636709c1880c06d07871f655adf09e2ca7f54133d',603,1,NULL,'[\"user-app\"]',0,'2023-09-15 17:51:52','2023-09-15 17:51:52','2024-09-14 12:51:52'),('c1d80596f4217e476dff258464dac37cfa101dc122c5082d26e74889b00834ef24adf26393445a49',2,1,NULL,'[\"user-app\"]',0,'2023-07-24 02:07:32','2023-07-24 02:07:32','2024-07-22 21:07:32'),('c1f347fe53e37446bfcf7d80ded12f893e125bdf78285520c99d1eccaf732b0d47d7b70eac2db904',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 17:41:38','2023-10-05 17:41:38','2024-10-04 12:41:38'),('c1f3552aacdc29aa7707477f7e5183de01a8ed90398fea1bcf40850b546438065888572f2c932976',2,1,NULL,'[\"user-app\"]',0,'2023-03-13 04:15:56','2023-03-13 04:15:56','2024-03-12 01:15:56'),('c202b3d2ae5fe55785c19e3d7fec4ae4321726b7a480dfbdbc8fb3ef531231387c81429507c99f57',1762,1,NULL,'[\"user-app\"]',0,'2023-07-14 18:20:08','2023-07-14 18:20:08','2024-07-13 13:20:08'),('c203559e27ac739d22e2afcba0b19ea45f4810d0e0d6eda6e3f1187c397fd3b22fbdb3cd58582476',1160,1,NULL,'[\"user-app\"]',0,'2023-05-26 00:31:36','2023-05-26 00:31:36','2024-05-24 19:31:36'),('c2190b3213e4a7ccc7a7a64f0f15455ce7d8769acb8eb1d4e2dee2f49cc26653dc50fca0ae0328f9',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 14:36:33','2023-01-26 14:36:33','2024-01-26 11:36:32'),('c21c45b2df66aef1b9c4ea012a94ce53b693d258f64576b064e0a4b5e7841844a10fc6dfdab5362d',2,1,NULL,'[\"user-app\"]',0,'2023-09-13 05:32:27','2023-09-13 05:32:27','2024-09-12 00:32:27'),('c22e637339447cdd7a8d0e0c8236cbe895ce86b655ead1be3ca95b991c6913e1008f65dfcb2f8440',2,1,NULL,'[\"user-app\"]',0,'2023-08-10 03:24:36','2023-08-10 03:24:36','2024-08-08 22:24:36'),('c2310e37971f48366ac16a42ef9163b746180644957ba959383332125ed52a589ade2a3ca56cc0cc',2,1,NULL,'[\"user-app\"]',0,'2023-07-06 17:35:17','2023-07-06 17:35:17','2024-07-05 12:35:17'),('c259c95937cc344a74791bd7b5678ed5e71e9e58af65985204be160eacea40aacfba287a73e32fd3',2,1,NULL,'[\"user-app\"]',0,'2023-04-13 20:07:58','2023-04-13 20:07:58','2024-04-12 16:07:58'),('c26044366f172f66070c51a94e32fd22ae76f983c55ff2de80e9b35883c62f1f32347a3a5ee0d7b2',90,1,NULL,'[\"user-app\"]',0,'2023-01-25 09:14:25','2023-01-25 09:14:25','2024-01-25 06:14:25'),('c2626b4e793ea22ca6d2ac674746eb923859ea02a87340ef744cd6f1aa81d61e9859a912a89ca747',1285,1,NULL,'[\"user-app\"]',0,'2023-04-20 21:59:22','2023-04-20 21:59:22','2024-04-19 17:59:22'),('c28be923bd687fd8ed07c6d83e42f9b5641dbc82d82eb4f93a5fd70682b847c876b84e44a3fabcfa',1499,1,NULL,'[\"user-app\"]',0,'2023-08-12 19:26:06','2023-08-12 19:26:06','2024-08-11 14:26:06'),('c29aaea5ef5e8b9524a2d0926283b4873f6ea959b93bee9c1ac0105ba6b860a90fd30bdbecaf2703',374,1,NULL,'[\"user-app\"]',0,'2023-01-25 08:26:59','2023-01-25 08:26:59','2024-01-25 05:26:59'),('c29b02f0ce787850c2ced40d537bc13bf1149addb1c52059df950cfdc78c5e4be149a6bd5d29b62e',800,1,NULL,'[\"user-app\"]',0,'2023-08-10 22:06:38','2023-08-10 22:06:38','2024-08-09 17:06:38'),('c29cc5015e6157cfaa10d71805f1b54291618567ef90794aad3cd07aa06222589a1765010120f63a',962,1,NULL,'[\"user-app\"]',0,'2023-02-17 11:10:17','2023-02-17 11:10:17','2024-02-17 08:10:17'),('c2a88fcfcc8475dd83759cfabd7245437bab5b9272531e86e6b34c7a3d715c0a72509021f7ea7660',405,1,NULL,'[\"user-app\"]',0,'2023-02-08 18:10:48','2023-02-08 18:10:48','2024-02-08 15:10:48'),('c2b987b9d20aaa5671aa4ee1a418a8d27dd106648a2d523d57188f579a464eae24c7ca706e18e66e',2124,1,NULL,'[\"user-app\"]',0,'2023-10-08 02:11:07','2023-10-08 02:11:07','2024-10-06 21:11:07'),('c2bd83f69ce3ed3a5579e46f1ed2156454d75dd470ca131f1d39ffb0f880dc87cfc1672c64838b2b',709,1,NULL,'[\"user-app\"]',0,'2023-01-25 22:05:52','2023-01-25 22:05:52','2024-01-25 19:05:52'),('c2c0777a3397cc2024e58cf7c01e9fdd1a09962298c4bbaf796432fcdea126571dae7d51aae51ba9',2,1,NULL,'[\"user-app\"]',0,'2023-09-02 23:14:34','2023-09-02 23:14:34','2024-09-01 18:14:34'),('c2c1ef8d48d74bec89a8111f0ea414d012cf5625554a830179190419b28ec0a73f874cbb2dfafb17',1966,1,NULL,'[\"user-app\"]',0,'2023-09-10 13:33:25','2023-09-10 13:33:25','2024-09-09 08:33:25'),('c2d308313bf077e1edee43d3cf20aeeccc4feb64d13c23ded4471a9e5f90fc7ec6e94a66b165c86a',1948,1,NULL,'[\"user-app\"]',0,'2023-09-04 17:28:55','2023-09-04 17:28:55','2024-09-03 12:28:55'),('c2e3dad75fb9c505716cbede3400b1031830447a2359e7b658bd6ff57684100b518bf167ec30908d',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 17:22:12','2023-09-21 17:22:12','2024-09-20 12:22:12'),('c2ecf776bb5f2ce08be02bf8d271f9ffc886ab00b4046f797a8c5189d26c8379febc41af618284cc',2,1,NULL,'[\"user-app\"]',0,'2023-03-18 19:57:17','2023-03-18 19:57:17','2024-03-17 16:57:17'),('c30a7b66c2f1ad9429d3a8133e8554e500c8493e56c1ef270461bbad4d96e480c59e1da1581fb5d7',92,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:02:24','2023-01-25 14:02:24','2024-01-25 11:02:24'),('c30e6f02630e98eb93053de6a409da2ef0bea6718ebe4122a223fdb188f70486ecb3b1c8f2481051',122,1,NULL,'[\"user-app\"]',0,'2023-04-09 02:14:04','2023-04-09 02:14:04','2024-04-07 22:14:04'),('c315bb93d10ea80ab49897b1e3c5da4849064205abbd6a991de123f00b6dcdde21e2ff8b6f061b16',2,1,NULL,'[\"user-app\"]',0,'2023-06-14 22:25:28','2023-06-14 22:25:28','2024-06-13 17:25:28'),('c325047668f4d63f1b2a151da682635dede7bd2573b8104242d6fd48c9ae3f40f881f3a9339b741b',202,1,NULL,'[\"user-app\"]',0,'2023-09-25 18:23:43','2023-09-25 18:23:43','2024-09-24 13:23:43'),('c327ee5faecd64f6251d0dfeacbf5019c1bb84718e7dd3decea853460379b71a456d1ed663b07873',2,1,NULL,'[\"user-app\"]',0,'2023-07-07 02:23:37','2023-07-07 02:23:37','2024-07-05 21:23:37'),('c341fcea19c12a7ed1b4c234cd75aeaf1e5a7ebf3cf399c1ffb6f213528830b6e5ed1a5eba2c7cdc',1801,1,NULL,'[\"user-app\"]',0,'2023-07-25 18:03:25','2023-07-25 18:03:25','2024-07-24 13:03:25'),('c34393d374897f2f050f0d1fd18e4a0da8d508ddef5684894a1bd5b87d0936f15821e1c1f6d08b2d',2,1,NULL,'[\"user-app\"]',0,'2023-07-15 22:16:03','2023-07-15 22:16:03','2024-07-14 17:16:03'),('c346240c659929bdfd52f6d0e87a917cfe44056ed1292f8853d6dc626f17ead7d1b5877b6bf0a438',242,1,NULL,'[\"user-app\"]',0,'2023-02-02 16:02:25','2023-02-02 16:02:25','2024-02-02 13:02:25'),('c356c2c74b75838ab1fd410ca9c5bea8fc0b6e1c061079846c2431c3c0157c0439027762d2802539',1171,1,NULL,'[\"user-app\"]',0,'2023-03-18 12:55:12','2023-03-18 12:55:12','2024-03-17 09:55:12'),('c38ab8a3f993fa7c775f31de7e7de8a4445841f38f1913108e67401db7cbb4cb151fcda1ff29ea8e',77,1,NULL,'[\"user-app\"]',0,'2023-06-01 16:31:48','2023-06-01 16:31:48','2024-05-31 11:31:48'),('c38b4e1c2d6483b55653ba109e24cacbf9339112f8a09f16800ea347a96549bab46affbe8f3e2566',2,1,NULL,'[\"user-app\"]',0,'2023-08-10 06:12:55','2023-08-10 06:12:55','2024-08-09 01:12:55'),('c39ce72f8a85927864543f728cdb1069a486331325ccab4941b3efdfd9b94e578fcf93f85447d4f9',913,1,NULL,'[\"user-app\"]',0,'2023-02-13 01:35:46','2023-02-13 01:35:46','2024-02-12 22:35:46'),('c3a41f90199df790607501be90f81580bdb827af2b62bb1c4b2096babb5c480b509f43bbc7d5018c',670,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:25:16','2023-01-25 15:25:16','2024-01-25 12:25:16'),('c3aff36888d39f09d2a010fb6bd5c18a704286c7581aaba2a63851518af48e1a1d8673b1e5745803',1572,1,NULL,'[\"user-app\"]',0,'2023-06-15 20:19:53','2023-06-15 20:19:53','2024-06-14 15:19:53'),('c3b27d41ff82b4e2d6d285d761e30aea46f5f4744e3c082b0022a08e98818414416cf5df578f44dd',2,1,NULL,'[\"user-app\"]',0,'2023-02-06 11:30:20','2023-02-06 11:30:20','2024-02-06 08:30:20'),('c3c0060454f17bab7d43205bd4825c6e73ce2edc3d028324e3d6ef2654ba3342399a0a532b6cf7f1',1637,1,NULL,'[\"user-app\"]',0,'2023-06-24 12:57:56','2023-06-24 12:57:56','2024-06-23 07:57:56'),('c3d0c7c6e4d5df262cac43b0243ac93114a102efdce899a0ee30f2c6b3c440a7b51e9a3e9ada1d00',1623,1,NULL,'[\"user-app\"]',0,'2023-06-22 21:38:39','2023-06-22 21:38:39','2024-06-21 16:38:39'),('c3e8879a7d6dc3588eec51f6f63935cdefa3ee95562d97e2f92f54cb2742e52905f063018eae6da6',47,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:19:33','2023-01-25 16:19:33','2024-01-25 13:19:33'),('c3ea537453286d5a326225380f45698a5753055bd79f5131a14a3884b74c6de69fdae0a655a009a1',124,1,NULL,'[\"user-app\"]',0,'2023-01-30 12:22:57','2023-01-30 12:22:57','2024-01-30 09:22:57'),('c3f5ea5710496e79e4703b76ac3b50767d3ba6176e3e86a9157ae91b85c165f87bcd3644cbf297ab',822,1,NULL,'[\"user-app\"]',0,'2023-01-31 13:57:54','2023-01-31 13:57:54','2024-01-31 10:57:54'),('c40c52c5c8b7df0a19b9c089c774b8dc81bf390c9a64e3e2a97b1ce1aec126587f3c103237d44510',2,1,NULL,'[\"user-app\"]',0,'2023-07-28 19:41:39','2023-07-28 19:41:39','2024-07-27 14:41:39'),('c410775119463102df7ca2eb10e1e3d92f1fb7bd1e5e526415972cd0e73d552afab30338c6e70d2c',8,1,NULL,'[\"user-app\"]',0,'2023-06-14 02:04:28','2023-06-14 02:04:28','2024-06-12 21:04:28'),('c410c2eef1ed7d58c408cd3ecfce764473f91dfb9c92306e427b3d5a3a479f6d03de4958d753fe91',1652,1,NULL,'[\"user-app\"]',0,'2023-06-27 20:49:11','2023-06-27 20:49:11','2024-06-26 15:49:10'),('c411007188086baef6e13f6d0e6961d458feaad05c5ab21036e2238d4106475107df5d19c9af8586',2,1,NULL,'[\"user-app\"]',0,'2023-08-15 20:37:58','2023-08-15 20:37:58','2024-08-14 15:37:58'),('c419eb7a78fa7dd5d5208d6f51dd6ad3e4f978fc897787e3936b68499e86abfb51e8804b419dbe86',656,1,NULL,'[\"user-app\"]',0,'2023-07-01 14:10:19','2023-07-01 14:10:19','2024-06-30 09:10:19'),('c41b1dc2349b75c2e7e677e054220fad8301d818a9a8752b921a78ef7128c79e6ba630cae19fa489',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 12:14:10','2023-01-26 12:14:10','2024-01-26 09:14:10'),('c42a03347372f697ae6273e2c897ce4e8f7aa7f300ccb2cda7f16fba5e8a6b5484ac06755dc4b00f',1566,1,NULL,'[\"user-app\"]',0,'2023-06-14 21:55:04','2023-06-14 21:55:04','2024-06-13 16:55:04'),('c449b447f683f1bc96c119f4c0add4d9293696a704e180744a8095ce5fd88fd5f080ad18ee3e70ba',1322,1,NULL,'[\"user-app\"]',0,'2023-04-24 16:15:24','2023-04-24 16:15:24','2024-04-23 12:15:24'),('c4534dfff32dba2b490d8b812e596db90a54469b7af1790532ad0a9a4a3dc15ee93a9063db207954',953,1,NULL,'[\"user-app\"]',0,'2023-08-14 16:31:47','2023-08-14 16:31:47','2024-08-13 11:31:47'),('c474f6e1fbd7d1c5c49b8bd1ade9051ab0d34b9fde7ffa3ee4bc256749cc61d0065fd419bd041a3f',2,1,NULL,'[\"user-app\"]',0,'2023-05-24 02:36:21','2023-05-24 02:36:21','2024-05-22 21:36:21'),('c487655bd6db2c1b18162f4a5fd8758a72cb2fb22289ee4c5c15732e03864d3e7013d690e4ec137d',1897,1,NULL,'[\"user-app\"]',0,'2023-08-19 16:54:00','2023-08-19 16:54:00','2024-08-18 11:54:00'),('c4891d0923b88f2669f78e096c5d819e3d3581336954954d6c68e1d3ad8658e68d6e65454769ce7b',2,1,NULL,'[\"user-app\"]',0,'2023-08-21 21:24:25','2023-08-21 21:24:25','2024-08-20 16:24:25'),('c492058d95d755ed525fa8bbce3a1d3920c80ca03fc91617e09f6105d3fc8fdad8efe7f1ce02c336',1424,1,NULL,'[\"user-app\"]',0,'2023-05-11 02:56:56','2023-05-11 02:56:56','2024-05-09 22:56:56'),('c49c6848633df8a250d27b007b5073dd35500a0137c41b8df767da5fe3f46af7a4a1dff2a1970c75',2014,1,NULL,'[\"user-app\"]',0,'2023-09-19 19:24:27','2023-09-19 19:24:27','2024-09-18 14:24:27'),('c4ba869a95a616d803496b873140ca8b8a77e23c112caab6e7c3fc38ac9e5f46b8300c8fb866e955',406,1,NULL,'[\"user-app\"]',0,'2023-05-18 10:02:48','2023-05-18 10:02:48','2024-05-17 05:02:47'),('c4e28f1eea9e166bcd107498e9fed1360d8cec17e8a114ad4b9140eb987161b861b11a6fba03bfc4',1654,1,NULL,'[\"user-app\"]',0,'2023-06-27 22:26:37','2023-06-27 22:26:37','2024-06-26 17:26:37'),('c4e9129d23f3dd0d1a8781ae5156f18c2f8ffbbda30dd21e18f6df387ae5cd2ff051cf531ad36278',1265,1,NULL,'[\"user-app\"]',0,'2023-04-17 14:41:02','2023-04-17 14:41:02','2024-04-16 10:41:02'),('c503967217b38e4b841e8417f6b9239e823012d28a5098e351fa78de8e9b264b2f39b0382921c07c',976,1,NULL,'[\"user-app\"]',0,'2023-02-21 20:52:05','2023-02-21 20:52:05','2024-02-21 17:52:05'),('c5222f6c9e78409cce9fa677cad38394d0dde5613dd9551a5e34788b10bdab06c193d180b5afd5fb',387,1,NULL,'[\"user-app\"]',0,'2023-06-08 18:35:19','2023-06-08 18:35:19','2024-06-07 13:35:19'),('c5224576b419c77d020bb047414e9695097f92f48a454041b46cb10d1f702c2333f22bab74b118f9',1804,1,NULL,'[\"user-app\"]',0,'2023-07-24 21:01:00','2023-07-24 21:01:00','2024-07-23 16:01:00'),('c5356c50c58536aab191cabbd62439d09fd64c06753c58816b746c14e8bcd738274030613514dd5f',715,1,NULL,'[\"user-app\"]',0,'2023-01-28 22:27:56','2023-01-28 22:27:56','2024-01-28 19:27:56'),('c548ec4cc702bc3a39d8290fc561f5afc6fc5b0ba83fb12b29621b334fced769001bf2c305b68390',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 15:43:37','2023-09-21 15:43:37','2024-09-20 10:43:37'),('c54bc920a5a24e62a2ea844c311b3945638dd45594cf03bc3d70c6801c02b7572db79f9603ace247',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 19:10:05','2023-10-05 19:10:05','2024-10-04 14:10:05'),('c5684ae4a1fb48c61b31c0b89b4fe5975f5d489762c1178d61e72868f79a4696ec7fcae8c3cdf4ea',1603,1,NULL,'[\"user-app\"]',0,'2023-06-20 16:31:07','2023-06-20 16:31:07','2024-06-19 11:31:07'),('c56dc30e9c86121603046f3f2851c4da5b45a46ff4b69733c87318dd14f9a8ffdbf8b8403d45d1ca',382,1,NULL,'[\"user-app\"]',0,'2023-05-06 11:03:00','2023-05-06 11:03:00','2024-05-05 07:03:00'),('c5725986c3c8b94b50a71cf32561c87f776d9b8c33dae822c517bc5118611350bbbc57f5be6d1df8',1626,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:36:52','2023-07-08 01:36:52','2024-07-06 20:36:52'),('c57457a0119ab07edd477856f3924465452c0cd3e583966e11aa8d61c6e1e5c9bf8a020df9dc96d3',2001,1,NULL,'[\"user-app\"]',0,'2023-09-15 21:00:39','2023-09-15 21:00:39','2024-09-14 16:00:39'),('c5769e71da4e1de345a1b5b33eac8fbd52d3d3d354349ef3edadf26b3ddb625a6bd04f364b3b8332',1168,1,NULL,'[\"user-app\"]',0,'2023-03-17 21:02:12','2023-03-17 21:02:12','2024-03-16 18:02:12'),('c57df1b5bf5993d1bda123e9f2cefee8023b7fd8117cd53d544feb76cda1e4f6e38bdfa06d0c9b05',946,1,NULL,'[\"user-app\"]',0,'2023-07-14 01:07:55','2023-07-14 01:07:55','2024-07-12 20:07:55'),('c584afb04d20e8ac90fadeef2e2f28e88e71e109516b10b36aaed7d70c124ee106a4a669952c2f1e',946,1,NULL,'[\"user-app\"]',0,'2023-03-27 22:20:21','2023-03-27 22:20:21','2024-03-26 19:20:21'),('c59506415f06a0a7532b3f765ff968391fdb0460a9d624979e8ff32efecd49f9a033684d6297c197',2,1,NULL,'[\"user-app\"]',0,'2023-04-04 10:18:57','2023-04-04 10:18:57','2024-04-03 06:18:57'),('c5b9e5b97236cdf11d6cb87541f5193b5f82411bc551683623250bebddc35080f39ac38f5433e44c',2,1,NULL,'[\"user-app\"]',0,'2023-04-09 22:37:25','2023-04-09 22:37:25','2024-04-08 18:37:25'),('c5bb46a0501faf5505cf077f58e8b8778b17b375531ddde5e440b51c5456f4b6e46777f037fede51',753,1,NULL,'[\"user-app\"]',0,'2023-01-27 11:34:40','2023-01-27 11:34:40','2024-01-27 08:34:40'),('c5d998fd2b9b9f041a55aaf3c52829fc01d567046998edca0e1a9408efc68fc76dd7c8315cddcb66',2,1,NULL,'[\"user-app\"]',0,'2023-01-27 23:52:50','2023-01-27 23:52:50','2024-01-27 20:52:50'),('c5f3b150dab0e3ab7668efbc97edcba51a8f159504d571027330dc131a0eea5978cc7c39bb8fbfb6',1931,1,NULL,'[\"user-app\"]',0,'2023-08-30 00:42:00','2023-08-30 00:42:00','2024-08-28 19:42:00'),('c6199f26253b4ed9528992fe9564d0ce11434b5b576c400d54f20303347603b004421f04733e4caf',2,1,NULL,'[\"user-app\"]',0,'2023-04-15 12:25:23','2023-04-15 12:25:23','2024-04-14 08:25:23'),('c635daa0acaf1c7b54f531635b0768a9fe322944a384935ed68fa6d24b7614c0f895d44bf073cb27',2,1,NULL,'[\"user-app\"]',0,'2023-04-08 21:24:13','2023-04-08 21:24:13','2024-04-07 17:24:13'),('c6383fc5877536fb78e09f827a7447fdafb00e2d7e99eb2fce83cc4da15823eeecf60ae21b123fb3',2,1,NULL,'[\"user-app\"]',0,'2023-06-27 15:47:42','2023-06-27 15:47:42','2024-06-26 10:47:42'),('c642c529932ff4b67ab6763d8ac8b42f93cd222c29ec7459d840cb290d8d964c98a22971cebb4d63',701,1,NULL,'[\"user-app\"]',0,'2023-01-25 20:27:04','2023-01-25 20:27:04','2024-01-25 17:27:04'),('c66a6c9c0557b38402737fa89aaae888ffd9dc421267eaea34405f03c7f5b81112731541af439f6f',785,1,NULL,'[\"user-app\"]',0,'2023-07-25 00:59:55','2023-07-25 00:59:55','2024-07-23 19:59:55'),('c6867bdd1f9b442907b4b864b462a1aa1eb2983b592f9071b62ebb4a834046069de3f163cacb75af',1802,1,NULL,'[\"user-app\"]',0,'2023-07-24 20:46:49','2023-07-24 20:46:49','2024-07-23 15:46:49'),('c6a603f59ea75c50e01ed3910f1e4030b8452383ac2d17f6dd6173c29463f68b897ab82961e45d63',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 16:00:02','2023-10-07 16:00:02','2024-10-06 11:00:02'),('c6c239eb4adfb12167a7c4a9949a464cad8f943f1933f17750c60ec466e187e8e10ad06623267c54',1772,1,NULL,'[\"user-app\"]',0,'2023-07-16 19:53:31','2023-07-16 19:53:31','2024-07-15 14:53:31'),('c6d301258aa9d924e2443c63736304e7146a5bc772aad18087199d81e9a7c0cea2795df464210f1e',681,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:38:47','2023-01-25 16:38:47','2024-01-25 13:38:47'),('c6e0bfb8609337752dddeaedc7f290a8b386f3cc041be1e85e31b9deaba68cd2a869385b622c4d8c',2,1,NULL,'[\"user-app\"]',0,'2023-10-06 04:25:14','2023-10-06 04:25:14','2024-10-04 23:25:14'),('c6f095c85a5bd55ad08e0685025de039716142e3458300ebdd2dfc4545a6731f1c25e5575e6e20f3',2,1,NULL,'[\"user-app\"]',0,'2023-06-03 16:12:32','2023-06-03 16:12:32','2024-06-02 11:12:32'),('c7032311f8a680bf680a0e48e65a9d10035e1c3f8be00c1bbed10538dd1ad5a7f2d4e54a1f337540',2,1,NULL,'[\"user-app\"]',0,'2023-07-12 17:54:20','2023-07-12 17:54:20','2024-07-11 12:54:19'),('c71a6253657b78e8c5873b20340b485d72af0b85efafaa1d0060e9c2276af60dc0c2c984c6f137a6',639,1,NULL,'[\"user-app\"]',0,'2023-02-01 23:05:25','2023-02-01 23:05:25','2024-02-01 20:05:25'),('c723cd2cb80e122fc557d2eb7161b8342ac084526d835a88df8489738dcfe175526d0431c67f72d3',769,1,NULL,'[\"user-app\"]',0,'2023-08-15 02:56:58','2023-08-15 02:56:58','2024-08-13 21:56:58'),('c729f583b38a82443f9a69a24eee0939071bd43b7a8dbb0842dcc6e3cad49889d73e30595629794f',1830,1,NULL,'[\"user-app\"]',0,'2023-07-28 20:53:01','2023-07-28 20:53:01','2024-07-27 15:53:01'),('c72afa3972a20de0e4443da24fffb810f7e2edfd7cc2ad1adff3390d7f9ad2260de1ab0397132470',1010,1,NULL,'[\"user-app\"]',0,'2023-02-20 23:59:28','2023-02-20 23:59:28','2024-02-20 20:59:28'),('c72f66d1298d81bc75f8db32101ce9abe32109c397c4f358d7fdee3253ee492da6a8295a58805577',2,1,NULL,'[\"user-app\"]',0,'2023-06-24 21:43:09','2023-06-24 21:43:09','2024-06-23 16:43:09'),('c731e3228c0a1d7a7abac44b3cdb3dd994c3b455ee6785b010cfcd634888ad33516b57c81ba886a7',120,1,NULL,'[\"user-app\"]',0,'2023-02-23 23:42:56','2023-02-23 23:42:56','2024-02-23 20:42:56'),('c732ace15bcf18b105d19262d9db0e526446fb76d87ae330db0b871d256b32e2d6248115592ba060',80,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:32:50','2023-01-25 13:32:50','2024-01-25 10:32:50'),('c73c9cb72e4721317bb873028633b917c32f5315a7b017ff12cd4801cb7c416dd94196ef1fa0f60b',660,1,NULL,'[\"user-app\"]',0,'2023-03-13 16:12:22','2023-03-13 16:12:22','2024-03-12 13:12:22'),('c73e964f7409959764fd7bf8b4d9ce15444e03772b7934be92c27641ab178dfdcf5d219fe7b926b6',2,1,NULL,'[\"user-app\"]',0,'2023-03-18 18:36:00','2023-03-18 18:36:00','2024-03-17 15:36:00'),('c7412cd8bc525f8b970f00c51004467751df0c30a7e0a6c1866ce1160d116365c9fa68ffbf59a07e',611,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:03:28','2023-01-25 11:03:28','2024-01-25 08:03:28'),('c75d6d13626dce3df0477a013f229ec19ad62a55ce04df0509c29ca887023b5f3cc02fca2d91299c',565,1,NULL,'[\"user-app\"]',0,'2023-02-11 11:23:26','2023-02-11 11:23:26','2024-02-11 08:23:26'),('c76761aa2577ac267a176a2de95efc86d8a68016ab3cc70589c1f7b6cacb5a9c974f89a40c44dbaa',640,1,NULL,'[\"user-app\"]',0,'2023-01-25 09:08:31','2023-01-25 09:08:31','2024-01-25 06:08:31'),('c782fbfad471cc17a1c4e1d4f9c91671ddc44bf6e22cabbcd7b849ed5917bb6f1412a8104f64e6d7',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 04:38:44','2023-10-05 04:38:44','2024-10-03 23:38:44'),('c784300977c6d211975deb150d153fcc88bf088e657df5f6818f3e62c79d8d79f1c3674101de7db7',736,1,NULL,'[\"user-app\"]',0,'2023-01-26 15:32:13','2023-01-26 15:32:13','2024-01-26 12:32:13'),('c7843d4d7f90a76f5241c69f38b0db0bc2901b75e8da8436d4ea06250e4e9081a33f992898930f00',956,1,NULL,'[\"user-app\"]',0,'2023-04-11 21:38:18','2023-04-11 21:38:18','2024-04-10 17:38:18'),('c78583c17f1fa99642f3c36ca2dc0ab700d649d87058055cac15c1ad817c4d8cf6f7f7f87e004a66',2,1,NULL,'[\"user-app\"]',0,'2023-09-28 00:50:53','2023-09-28 00:50:53','2024-09-26 19:50:53'),('c787df3e47e0b8bbc1d9e5db0da67d4a6e43a5ad0856e8e75ba3c9a1a4b08924c4963439c6370d7e',711,1,NULL,'[\"user-app\"]',0,'2023-01-25 22:47:47','2023-01-25 22:47:47','2024-01-25 19:47:47'),('c7c1b79175575568d2aa5a80f92d3ec5ddcc897128bd6fae07a2fb8d5cb1919ba981114e8264c628',1601,1,NULL,'[\"user-app\"]',0,'2023-06-20 15:07:44','2023-06-20 15:07:44','2024-06-19 10:07:44'),('c7e397d2bcfbe1c0f6578a062b0b8489b7b389b7f6046b73b6744958b8aa4991e5fb46dbd7b7e528',953,1,NULL,'[\"user-app\"]',0,'2023-04-11 17:55:53','2023-04-11 17:55:53','2024-04-10 13:55:53'),('c7f8d18fd46a6a924c69499d46a0d3e6b80f640d5198c0a3ec86e60c9cdfab56dcbc34edeeeaa5fe',1049,1,NULL,'[\"user-app\"]',0,'2023-02-24 11:49:38','2023-02-24 11:49:38','2024-02-24 08:49:38'),('c808aba45f2cb80d4b9877e3bcd7182d491624d45bcbb5dc2ff67da9a8ede4803baf0c053a4111cd',1937,1,NULL,'[\"user-app\"]',0,'2023-08-31 22:44:41','2023-08-31 22:44:41','2024-08-30 17:44:41'),('c819174d82cebc06f27ac104380d7da5cbb0f6c1db9ee83956ea2c725301bbf0dbd3514703178e92',1349,1,NULL,'[\"user-app\"]',0,'2023-07-28 19:08:25','2023-07-28 19:08:25','2024-07-27 14:08:25'),('c82e0b2bfa074fed907b1f87bdc52d25de49d4bed8f5cec70be812ca6a73b8ea67d5b2882a507168',1181,1,NULL,'[\"user-app\"]',0,'2023-03-23 02:26:06','2023-03-23 02:26:06','2024-03-21 23:26:06'),('c8331887ec234c4ea2ac68b625de317beb6505870ed068bc521f267a3421d1861943d7f15d996e1e',381,1,NULL,'[\"user-app\"]',0,'2023-02-27 17:29:17','2023-02-27 17:29:17','2024-02-27 14:29:17'),('c83b0401bb17f8e39c5126f639b523a6cc5599db18b6b9f179354dcd58a1b3645b7d99c3114d6bbf',2,1,NULL,'[\"user-app\"]',0,'2023-04-02 19:00:16','2023-04-02 19:00:16','2024-04-01 15:00:16'),('c85c91c3e1f94e22484b1df7880d3c2d770b1dcdd5f74d797e2ceef1782db5d7c48491d293de045e',972,1,NULL,'[\"user-app\"]',0,'2023-02-18 13:41:35','2023-02-18 13:41:35','2024-02-18 10:41:35'),('c86c427ba713f32fbc6714ab56fdaeb2c16a17421cc1171df2bbf7b20887f628952f05ab9fce86d1',1482,1,NULL,'[\"user-app\"]',0,'2023-05-19 04:04:48','2023-05-19 04:04:48','2024-05-17 23:04:48'),('c889f3ab4cfac4d4bad65b1137acc8987ff321fc4a05585239b6420fc84f7073aa8df1b2159a3720',2,1,NULL,'[\"user-app\"]',0,'2023-07-28 03:21:52','2023-07-28 03:21:52','2024-07-26 22:21:52'),('c89cd9b84e56fda0c9d9366c8d2767acd58250a5f87e8cc6833125f54b5c18088915225cae5c9857',144,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:22:24','2023-01-25 19:22:24','2024-01-25 16:22:24'),('c8aa57049aea373ba89f8db828e1f1bd6ca02f885a04f3f8b75741bcc88cebfb3ce4b0177000806c',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:16:29','2023-01-25 16:16:29','2024-01-25 13:16:29'),('c8b9e3bd37494f0777ce6b677b4eddf0aa2df5e3ef7538cb7e41055415c90db1f2a2988a9d8cf8b9',1436,1,NULL,'[\"user-app\"]',0,'2023-09-29 15:11:06','2023-09-29 15:11:06','2024-09-28 10:11:06'),('c8bf996593cf7ac8a7fee9a38fe83df8e936c6222dfb6c66d8f9b977466d4b65bb3ddbf963153fde',2078,1,NULL,'[\"user-app\"]',0,'2023-10-01 00:53:10','2023-10-01 00:53:10','2024-09-28 19:53:10'),('c8ce15b53f68d62788ca9075d47b8b0632e045e14ddca3c4f961c3fc3ded10ea43b85dffcfb9995e',1632,1,NULL,'[\"user-app\"]',0,'2023-06-25 01:37:11','2023-06-25 01:37:11','2024-06-23 20:37:11'),('c8d1be5c4c632608933570fb9183d06a2f8aaa6d506591f913cd6da8c445be69f2c0f6255b9978c6',406,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:56:32','2023-01-25 12:56:32','2024-01-25 09:56:32'),('c8e99f67158ddc5cb27f28574d48b18576fd103dbe5f47a07550ba59f182af3482028291a2b6876e',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 21:48:01','2023-10-07 21:48:01','2024-10-06 16:48:01'),('c90f191538b22dea7b97db051be1c639040907a5d9b282bc0dc561a4df10622e647b546e1f875f2a',1340,1,NULL,'[\"user-app\"]',0,'2023-04-28 22:15:56','2023-04-28 22:15:56','2024-04-27 18:15:56'),('c910a64a7121ff6cc75f5dc88813bcf816a9517b050b079b99fcee5c3dc4adfb9f5c9ad56e7b2084',2,1,NULL,'[\"user-app\"]',0,'2023-08-02 22:56:44','2023-08-02 22:56:44','2024-08-01 17:56:44'),('c91214c5347956ead370a010fe8870f7d8211a5fa8a5ac930b1694f2f013fc0198106de5819b3567',341,1,NULL,'[\"user-app\"]',0,'2023-03-06 18:52:50','2023-03-06 18:52:50','2024-03-05 15:52:50'),('c9189bef3d708a1d963302afd46e260b496b999bed78ccc8b09ee59316d376190c9474f4dcf08141',2,1,NULL,'[\"user-app\"]',0,'2023-02-22 12:52:59','2023-02-22 12:52:59','2024-02-22 09:52:59'),('c92b9ed385838ba7787ccffd3741060068dea0733b6ea31011e9b9f145bbab3a7d9cdd2389c8eaea',2,1,NULL,'[\"user-app\"]',0,'2023-05-04 11:43:13','2023-05-04 11:43:13','2024-05-03 07:43:13'),('c95bc518a0b5d21c9cd00ef81d564935cb1ce2e97f54d36f759031403d72fefbac4bd8e204e43f3d',2052,1,NULL,'[\"user-app\"]',0,'2023-09-25 17:34:08','2023-09-25 17:34:08','2024-09-24 12:34:08'),('c964493bad67f2fa72413c2116e04d08a949d5b40335d7ed5453489ff64282b480f1788a37cd15f7',2,1,NULL,'[\"user-app\"]',0,'2023-09-19 04:18:01','2023-09-19 04:18:01','2024-09-17 23:18:01'),('c9716775b9165f728e37592ad8f0fb22811f1567a647612554a0183c215b1f6d1933f00bde27ccd3',2,1,NULL,'[\"user-app\"]',0,'2023-07-26 13:48:31','2023-07-26 13:48:31','2024-07-25 08:48:31'),('c97865881c87f0f74aae1e9f1a9c3c08a182ee4a4934e245bf6ab2b72a2afea0998b2daa2e17e5d4',124,1,NULL,'[\"user-app\"]',0,'2023-08-16 02:51:46','2023-08-16 02:51:46','2024-08-14 21:51:46'),('c984cd9781cad3a79da09aff61f6cbef1910a2b8bde369bce313c0eddc8588f489143da0cd128cf2',2,1,NULL,'[\"user-app\"]',0,'2023-10-04 05:12:57','2023-10-04 05:12:57','2024-10-03 00:12:57'),('c998d08585c10f86f3714d6125138e2eddf7d279f44590bf49d93c009aca7478aab44f601939d527',1407,1,NULL,'[\"user-app\"]',0,'2023-05-17 16:23:10','2023-05-17 16:23:10','2024-05-16 12:23:10'),('c9a3eef5e6b5f2fe1151d994292c9a2347f335781dde1a8edd3e8632eb293c0ab42ec3e73a603c77',2,1,NULL,'[\"user-app\"]',0,'2023-09-05 15:44:00','2023-09-05 15:44:00','2024-09-04 10:43:59'),('c9c0cd798aa135aa9b7288cdb9ca1460726c5028b2b4615d044602b7d274574952c37d4abe876743',836,1,NULL,'[\"user-app\"]',0,'2023-02-01 18:28:00','2023-02-01 18:28:00','2024-02-01 15:28:00'),('c9c59a8044d6f087adc336fcff3dd4c06b1b6091e318bc0a0e6f0be45cac720ede73d780bce6f962',2,1,NULL,'[\"user-app\"]',0,'2023-10-07 04:15:04','2023-10-07 04:15:04','2024-10-05 23:15:04'),('c9c5bf0dae3e7b494b2c4973c5a88c77cef4940f110a87a35160484824ce77559b7976914c362ad0',189,1,NULL,'[\"user-app\"]',0,'2023-02-06 12:09:12','2023-02-06 12:09:12','2024-02-06 09:09:12'),('c9cdb4d64aad1b24ed479f568e17c39a9f164dd516108b8aaf7fb674e18ff7555e71b72ef1fda2fe',275,1,NULL,'[\"user-app\"]',0,'2023-02-21 14:13:17','2023-02-21 14:13:17','2024-02-21 11:13:17'),('c9d694057cfc34cea3da68c565bfe44d7ed3e6644a6358631bc8d67c7ddb8f2f5c177c45635ebb31',1799,1,NULL,'[\"user-app\"]',0,'2023-07-24 19:42:25','2023-07-24 19:42:25','2024-07-23 14:42:25'),('c9fd245de43bc813cdadc54ae78f924b6420f059e171fdfc7284b825d5b40201c3918b9d1b9665c8',180,1,NULL,'[\"user-app\"]',0,'2023-06-20 23:02:25','2023-06-20 23:02:25','2024-06-19 18:02:25'),('ca1544213e554e48f2978c9bed57a94b90118d2ec59ea08590663d755adfd27134b79876cbbd743d',2,1,NULL,'[\"user-app\"]',0,'2023-02-18 14:17:37','2023-02-18 14:17:37','2024-02-18 11:17:37'),('ca1bfb86e579eb7e8967fd47dd37b7c9695f2d3148d35ca6c3dc972425d965db9e9d2ee29d009c26',1414,1,NULL,'[\"user-app\"]',0,'2023-05-30 17:35:03','2023-05-30 17:35:03','2024-05-29 12:35:03'),('ca3f075409d6579a4d13a96432c874a4d2996b0116044a4d5b5cbec6225fa2386853a2e34f468380',2,1,NULL,'[\"user-app\"]',0,'2023-05-05 21:56:19','2023-05-05 21:56:19','2024-05-04 17:56:19'),('ca500afad1690bd16ac4f8c3e0264c5111f03a590e66ff3b3029116b7efc0ac6203de7b783c7a242',1214,1,NULL,'[\"user-app\"]',0,'2023-04-18 20:06:08','2023-04-18 20:06:08','2024-04-17 16:06:08'),('ca597b242ba63991f9d37a9c3dbda5b3e94820a86b415a54df0cd8a2f0872fa01a8dd17e3b2fa790',107,1,NULL,'[\"user-app\"]',0,'2023-01-25 21:25:01','2023-01-25 21:25:01','2024-01-25 18:25:01'),('ca951d7efc35b1ce18679f355abebef3e3281512bf291eab89f48fcb4c1f3d9fc0b48a6b782c0614',133,1,NULL,'[\"user-app\"]',0,'2023-02-25 11:10:08','2023-02-25 11:10:08','2024-02-25 08:10:08'),('cab7ff4da3903311bb145d5eedd50674379b9e73c3688e91bbdbf41930711aa295e4ee533d8c3502',1979,1,NULL,'[\"user-app\"]',0,'2023-09-12 20:30:57','2023-09-12 20:30:57','2024-09-11 15:30:57'),('cad3afff8f549969af59636099fe507f532b21b726785bece11b92ffffbbeec8b5383aa9d6ada753',689,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:19:48','2023-01-25 17:19:48','2024-01-25 14:19:48'),('cada94e10a894bc589303222df2be65022932feec311f1d94e2c3c355a5fc6e38bede9cb04019813',2,1,NULL,'[\"user-app\"]',0,'2023-02-05 13:42:21','2023-02-05 13:42:21','2024-02-05 10:42:21'),('cade333b842eab984d6198ff62fb59105500b64d36f2eaaaf4a6ed4271c70b8cc9932650c920ce46',329,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:44:36','2023-01-25 11:44:36','2024-01-25 08:44:36'),('cae29e7bd7ee9c9f4740944b1a374d6ac28abe1999459ddca035acf3fcc0882bb48c38c480a2dff4',326,1,NULL,'[\"user-app\"]',0,'2023-02-06 09:19:47','2023-02-06 09:19:47','2024-02-06 06:19:47'),('cb09cffc101c3c08558ca031a3b97b0854a2e115519fc2d60703eede72f3507401ebc0d9303f3789',52,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:31:56','2023-01-25 13:31:56','2024-01-25 10:31:56'),('cb10c63938eb87656f45a5ccb4632ec1178e38769af6f772ef44aac20e162cb7af4ce1fe6b32a8fe',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 13:55:50','2023-01-26 13:55:50','2024-01-26 10:55:50'),('cb2124340cfc2d496897f46f9096a1d25cef2ddd59d0978bd6cacf7de24ad696067b8effe59404a9',1587,1,NULL,'[\"user-app\"]',0,'2023-06-17 22:09:31','2023-06-17 22:09:31','2024-06-16 17:09:31'),('cb2bbaae929003c9973835db271000e9ccaf44d1db6a1de16ca2a3c838678622d45f43c6975c12d1',1061,1,NULL,'[\"user-app\"]',0,'2023-03-02 00:04:05','2023-03-02 00:04:05','2024-02-29 21:04:05'),('cb41eb18e0822c38be89d8de16f5299baf34a1bbf0878d085a763b6965c0eafd76cbe29b71a401ba',2,1,NULL,'[\"user-app\"]',0,'2023-04-17 14:39:52','2023-04-17 14:39:52','2024-04-16 10:39:52'),('cb6914338d41ee6a06999f6117fb8b1351e82fa57173d9a38102f624b3f37788387f04685b44910b',886,1,NULL,'[\"user-app\"]',0,'2023-02-08 19:37:13','2023-02-08 19:37:13','2024-02-08 16:37:13'),('cb8ad8495a460b4937aacc6d44892713d25ac8c4b125a02f61606215cd49cccd3c7f7a267ebb374c',770,1,NULL,'[\"user-app\"]',0,'2023-01-28 00:38:05','2023-01-28 00:38:05','2024-01-27 21:38:05'),('cb9160f3f88a16d5b6233523ea024426a21b15301d2230a3daa18169f409c384cc8a7aae01060fc9',490,1,NULL,'[\"user-app\"]',0,'2023-03-19 11:34:20','2023-03-19 11:34:20','2024-03-18 08:34:20'),('cbaad064532a165618849ef19875aa0a46fa44002b1781f03537ad368f799256be3e858f568bc2ca',829,1,NULL,'[\"user-app\"]',0,'2023-02-07 10:36:11','2023-02-07 10:36:11','2024-02-07 07:36:11'),('cbcf9876168dae68e50fb9b6b2e9e9e8b85304de99519ba5413b3248d86e4cb179e7d4d51f5e09b7',2,1,NULL,'[\"user-app\"]',0,'2023-08-21 01:34:32','2023-08-21 01:34:32','2024-08-19 20:34:32'),('cbd606de096934c55d8ffa6b7fe062c67c98fa8ae94fb3e1b64a850053278deecbef88b4c7d6fb37',545,1,NULL,'[\"user-app\"]',0,'2023-01-26 01:10:42','2023-01-26 01:10:42','2024-01-25 22:10:42'),('cbe80a0225a920e77b9c404e1ca7fb7e54ba98c6b3ca6fa89de3908324c00a69a4ebf771181e549f',2,1,NULL,'[\"user-app\"]',0,'2023-09-11 17:39:21','2023-09-11 17:39:21','2024-09-10 12:39:21'),('cbf9cdda64199c93a07736526c212ace664d4fcf64604cd7f91d8fda338875c63f8bded8a1babd95',261,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:19:07','2023-01-25 16:19:07','2024-01-25 13:19:07'),('cc0da786d740a25f5e4ff994562e5d5cbc029e2d61343bb3ba821b85c0ff6b412b6923b7e0581c15',1140,1,NULL,'[\"user-app\"]',0,'2023-03-12 22:15:21','2023-03-12 22:15:21','2024-03-11 19:15:21'),('cc13649cba43fe6ed1c8a457869ddee49bb56494fb07443ac85f7a11ec25603bac235c08e9d75478',466,1,NULL,'[\"user-app\"]',0,'2023-05-28 15:42:21','2023-05-28 15:42:21','2024-05-27 10:42:21'),('cc171178df853bd11bb59745764dc129ed63fe868d55c6e6a7272d0243428be795fad4312cae7a46',1545,1,NULL,'[\"user-app\"]',0,'2023-06-09 13:52:53','2023-06-09 13:52:53','2024-06-08 08:52:53'),('cc229dce9583546efdaa55f3e64b103560f05e82d44c275b1b66d374998d19b4d7e96e2818521de5',2,1,NULL,'[\"user-app\"]',0,'2023-08-04 23:43:59','2023-08-04 23:43:59','2024-08-03 18:43:59'),('cc268f822efc60af09f413e80e38227e7454869423c52a6e7af828b47d03ca467c647eef43ebd82d',1404,1,NULL,'[\"user-app\"]',0,'2023-06-07 12:25:08','2023-06-07 12:25:08','2024-06-06 07:25:08'),('cc2c9693ecb97ea099d4f8274eee483c0e43467fc70dd804252f6fced1b4930e72f076e201d86616',2,1,NULL,'[\"user-app\"]',0,'2023-06-30 16:32:33','2023-06-30 16:32:33','2024-06-29 11:32:33'),('cc2cce2993f909f0f8a1aaf74adeb2e44d9193a593363d8ac36b7a56516acadc2b2c97b57768baae',2,1,NULL,'[\"user-app\"]',0,'2023-09-11 06:13:14','2023-09-11 06:13:14','2024-09-10 01:13:14'),('cc336b3ebb512e6cfce43a9ffb1bbb366ccb3f81f7d99e9e577fec88f6bbb2700e531e1feb495af7',2,1,NULL,'[\"user-app\"]',0,'2023-07-22 01:41:10','2023-07-22 01:41:10','2024-07-20 20:41:10'),('cc51a584aeba1d42b57bd8e333a4299904aecb937765611ba692da6e6c379974cf430eeb09a5138c',2,1,NULL,'[\"user-app\"]',0,'2023-03-26 02:36:50','2023-03-26 02:36:50','2024-03-24 23:36:50'),('cc56fe7ba3b0355605329fac7a7abaccaabb9c7fe9d0686c35b09181e0b5ae5d76dce0a247932575',1018,1,NULL,'[\"user-app\"]',0,'2023-03-06 21:25:29','2023-03-06 21:25:29','2024-03-05 18:25:29'),('cc66caa24676cbf11eb4949364bc436442620d0bc0cbee3ac7586f00f50d6a6911b3f040f9ff9e08',1396,1,NULL,'[\"user-app\"]',0,'2023-09-07 21:56:26','2023-09-07 21:56:26','2024-09-06 16:56:26'),('cc67d896020ce63e488c18db2a09fd2167f026184665558f7a8f37bba2c81cb10cc4c37c515c405b',2,1,NULL,'[\"user-app\"]',0,'2023-02-26 16:52:53','2023-02-26 16:52:53','2024-02-26 13:52:53'),('cc74e0c243cdc215d222ebb30e5aff50b4d59890f3507d2999764dd98b03f41a72fa479287ffe6a5',2,1,NULL,'[\"user-app\"]',0,'2023-10-01 15:32:38','2023-10-01 15:32:38','2024-09-30 10:32:38'),('cc75add2c7dbce0b72b77a3b3a564da427a7eb45b7c9a8110d8ffafca5153406a8f6f9687ff9a20e',2024,1,NULL,'[\"user-app\"]',0,'2023-10-04 01:45:53','2023-10-04 01:45:53','2024-10-02 20:45:53'),('cc7bc89c18f45ab93a312f16d5dfb60aed382ecde5a83dd986f6a870c1e69f9fb06016f38e307ecd',1923,1,NULL,'[\"user-app\"]',0,'2023-08-27 18:06:21','2023-08-27 18:06:21','2024-08-26 13:06:21'),('cc8199386e720ef652a472c4e57e6d1eccb5af1cfea6359b409231068cebcbd0e3dfda3ad7d44f2c',392,1,NULL,'[\"user-app\"]',0,'2023-10-02 15:55:09','2023-10-02 15:55:09','2024-10-01 10:55:09'),('cc89d0c1ea13c489e6753b61a290feb4e9f7bf620b222e1e2ced64e51bf97c8d98795ab231f0fb9d',356,1,NULL,'[\"user-app\"]',0,'2023-06-06 15:29:20','2023-06-06 15:29:20','2024-06-05 10:29:20'),('cc9a45eb4dd0256570e707e95b9bd98a6dfbc85a602938242bcd25e97a751f1396639b9d50a23c3d',229,1,NULL,'[\"user-app\"]',0,'2023-01-30 15:47:17','2023-01-30 15:47:17','2024-01-30 12:47:17'),('cca1a69ff5b850d1e59fe45521fb7aab0a82a22346d8dd24b83dbf2ebd6d6b71a23773fd14c85122',2080,1,NULL,'[\"user-app\"]',0,'2023-10-01 04:11:10','2023-10-01 04:11:10','2024-09-28 23:11:10'),('cca3c62d9e9e993c22a1bf7fc247322a247a3a32e88a5c67db539a7ad2e1317c4f72835f1628ce3e',52,1,NULL,'[\"user-app\"]',0,'2023-03-07 13:31:03','2023-03-07 13:31:03','2024-03-06 10:31:03'),('ccb568a1b971a7944c488bcb02ed8a1db9b1ffedf6acee054bfcc7fdc1b2e73aecdb61fe688bda2c',1846,1,NULL,'[\"user-app\"]',0,'2023-07-31 21:53:26','2023-07-31 21:53:26','2024-07-30 16:53:26'),('ccb89c31c988106ac798853c06c991ea8f5e47e186e741c22cc8cf008172d2c897012c0de3ebcead',2,1,NULL,'[\"user-app\"]',0,'2023-02-19 03:13:25','2023-02-19 03:13:25','2024-02-19 00:13:25'),('ccbb140e75be8ad7f8ca0bc594adea0f1ff518a4d50389cc7100f59b924eb734974aa077bb46137e',1087,1,NULL,'[\"user-app\"]',0,'2023-02-27 01:18:43','2023-02-27 01:18:43','2024-02-26 22:18:43'),('ccbef9503269d6f0f84ac7f811ce119c12754e672402b5767fd4fc3363298aef5821a8d0896fca1a',1620,1,NULL,'[\"user-app\"]',0,'2023-06-26 23:32:20','2023-06-26 23:32:20','2024-06-25 18:32:20'),('ccc15504219c59711761abc6ff6960c59efa7f07492dccdb9dfee6846700211445dcc605329bf8a4',1214,1,NULL,'[\"user-app\"]',0,'2023-09-15 21:30:33','2023-09-15 21:30:33','2024-09-14 16:30:33'),('ccc45f8455a1f5e5a9c0f10a39531fe3a348d106b164010ecc78ea177ccf1f0226a5841219436db4',1373,1,NULL,'[\"user-app\"]',0,'2023-05-05 21:59:02','2023-05-05 21:59:02','2024-05-04 17:59:02'),('ccdc1b2d5bdc0fe5249a30747158beacbaa1ef3c0874ce9a4e010a6e7e5c87db368d4bcdc8502c5d',1072,1,NULL,'[\"user-app\"]',0,'2023-02-25 11:42:37','2023-02-25 11:42:37','2024-02-25 08:42:37'),('cce6ee61565226acb85fec6f966bba63c604fe60b6bfdabab16794e7901c3eeb08d99d2a678bdc64',161,1,NULL,'[\"user-app\"]',0,'2023-02-02 16:58:32','2023-02-02 16:58:32','2024-02-02 13:58:32'),('ccf60134a8862740b29a8ef2b136a1d7f5ec04c2105f68fb84224b7cf87d71454c15c2b9e505f82c',1342,1,NULL,'[\"user-app\"]',0,'2023-04-29 06:21:38','2023-04-29 06:21:38','2024-04-28 02:21:38'),('cd1538b9eb4ebbc5159d113d6d98ada15e6cacdd7970eb0d4dea3e016727139012ce11e7642324cb',2,1,NULL,'[\"user-app\"]',0,'2023-09-12 00:23:23','2023-09-12 00:23:23','2024-09-10 19:23:23'),('cd22e98d71924ad292877d7043fe6f5f1ca3c965fafcc706a35088ebe32d924635d48d948ea9e950',154,1,NULL,'[\"user-app\"]',0,'2023-02-14 21:50:16','2023-02-14 21:50:16','2024-02-14 18:50:16'),('cd28929a7cfea08f0455aa44e9f72af1deba69d2f4fbb6c59c1954bbc7296a7e801765d9ce8c8a06',1485,1,NULL,'[\"user-app\"]',0,'2023-05-19 21:07:42','2023-05-19 21:07:42','2024-05-18 16:07:42'),('cd3e9f19f22503ea838f0bb1da5c816e83701ae49610d2349d4a03da558f8e1a532c27a08ab6e7d3',1414,1,NULL,'[\"user-app\"]',0,'2023-07-28 01:30:49','2023-07-28 01:30:49','2024-07-26 20:30:49'),('cd4b8ca164c313dbd2ab668b1abfdfc15da306c1a4daa594238e00b4c541da331eda0e0332a6f31a',2,1,NULL,'[\"user-app\"]',0,'2023-05-03 02:34:31','2023-05-03 02:34:31','2024-05-01 22:34:31'),('cd58c7abc2a5d6363689ac5a657ec95ea84c399b9b99bd83eda0e44f23cfbe91e921be269104371a',1584,1,NULL,'[\"user-app\"]',0,'2023-09-20 16:47:57','2023-09-20 16:47:57','2024-09-19 11:47:57'),('cd70fd77f590c7048822f476a36fe7f64b7e92f18ad2afc632c224a062fca16321c5e32df40faf45',953,1,NULL,'[\"user-app\"]',0,'2023-04-19 21:56:49','2023-04-19 21:56:49','2024-04-18 17:56:49'),('cd73351ea8111910cc759e45719706eae67e5ac5bf03ab03921cef8fa0b99186d1b1e78cdd2dd503',419,1,NULL,'[\"user-app\"]',0,'2023-05-18 23:56:23','2023-05-18 23:56:23','2024-05-17 18:56:23'),('cd7aeeca686192d539e32a3e814791833149fd416ea872beef5e2d79289e5ada16a7904f4603182f',1524,1,NULL,'[\"user-app\"]',0,'2023-06-03 15:10:50','2023-06-03 15:10:50','2024-06-02 10:10:50'),('cd97eb3b70f481057b936943761df01da95d833cc92df0df77de603971435c3fe5662f4bf6a43575',551,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:15:43','2023-01-25 16:15:43','2024-01-25 13:15:43'),('cd9b8effec45ab2ba9a40507668be2e307df9f74e0d6128d2bffe555e5d60b411b954976367b85e9',2,1,NULL,'[\"user-app\"]',0,'2023-02-27 12:04:29','2023-02-27 12:04:29','2024-02-27 09:04:29'),('cda5d55437ae391c6e602071cf6052092fcc93e90d6556aad202b527903d67ab04cea2a1f6bd11f9',2,1,NULL,'[\"user-app\"]',0,'2023-04-23 17:12:41','2023-04-23 17:12:41','2024-04-22 13:12:41'),('cdb6118286588316f401c32287aac8262f5d03102d101ce782cd6968a552d1ac688125d475eca37f',965,1,NULL,'[\"user-app\"]',0,'2023-02-17 18:19:52','2023-02-17 18:19:52','2024-02-17 15:19:52'),('cdb95b10d2bf53f8a6a5aa45e628e2ed8ac1d879ab0ce781700da1409f3351bc02a85ab86ac399b9',1046,1,NULL,'[\"user-app\"]',0,'2023-03-05 23:47:09','2023-03-05 23:47:09','2024-03-04 20:47:09'),('cde7ac6087a6b68f0f1ca644273a912d9f7578995642851fd1d3878d5c0f09318a8b21c7871baff6',1086,1,NULL,'[\"user-app\"]',0,'2023-03-04 19:42:44','2023-03-04 19:42:44','2024-03-03 16:42:44'),('cded1b1245f0e8ebc437aa409ea838dcd07dc7ffa5c7d9aab1edd429f13c0aab72969d9aafc81bd2',843,1,NULL,'[\"user-app\"]',0,'2023-02-02 01:18:00','2023-02-02 01:18:00','2024-02-01 22:18:00'),('ce03a6b4a824923045d35dc925c48e68fc4fc05fb32d6979e1020fe75487873e91e1cd71a83c7825',1840,1,NULL,'[\"user-app\"]',0,'2023-07-30 23:36:18','2023-07-30 23:36:18','2024-07-29 18:36:18'),('ce08bf945b04d6b5618d677f993eaa8a562d9f8ad6ce5eb077baa7a7de0a9aac9fdaa609b7379ca5',152,1,NULL,'[\"user-app\"]',0,'2023-02-28 19:26:00','2023-02-28 19:26:00','2024-02-28 16:26:00'),('ce13330bbf622073a35b1a4cf7c8954f6c909aadb9afe68302a117e260806d09785b78625f015ea3',2,1,NULL,'[\"user-app\"]',0,'2023-08-16 04:12:20','2023-08-16 04:12:20','2024-08-14 23:12:20'),('ce18577fa5da4a0ac96f7812e1a36f4951a05b0c5b71cd6ff3b757a3cf3b23dd80745a2bc87dd3c6',1094,1,NULL,'[\"user-app\"]',0,'2023-10-06 00:53:16','2023-10-06 00:53:16','2024-10-04 19:53:16'),('ce19f1f84bb2676353920dd13460a3f309c3ba4ecdeb84fd24ea2ac19611d313b4e216c5876c0c63',13,1,NULL,'[\"user-app\"]',0,'2023-02-15 15:23:08','2023-02-15 15:23:08','2024-02-15 12:23:08'),('ce1e10daaae1a5aeb00a2ca3a46bfe8b0a25e46197cf5ea565a7c3f813753492bb3e3aab29c5b51e',45,1,NULL,'[\"user-app\"]',0,'2023-04-05 10:08:42','2023-04-05 10:08:42','2024-04-04 06:08:42'),('ce2a3d4cecd9c7153f9e6b948d42cc3bbeb95bc39e62abf46ca2ddde7cc746cb824cf6edad884f27',8,1,NULL,'[\"user-app\"]',0,'2023-07-07 20:05:40','2023-07-07 20:05:40','2024-07-06 15:05:40'),('ce31cbeb3cdb06bdf9222c856f2f3955bdc801a6e768cc67ec50057dbe054293eeefe1b37deb85b7',333,1,NULL,'[\"user-app\"]',0,'2023-01-29 13:17:21','2023-01-29 13:17:21','2024-01-29 10:17:21'),('ce39c473f9c8af146b503e7581f67f27a7adeb7f876af8beda28ff399196cc978d34ac28e9d518cf',1059,1,NULL,'[\"user-app\"]',0,'2023-03-30 17:31:06','2023-03-30 17:31:06','2024-03-29 14:31:06'),('ce3c106e93d64d646757d1a4e8166b7bd4b91421ddbc3720f033237bc72eccb9b7acdb775447e9f2',1416,1,NULL,'[\"user-app\"]',0,'2023-05-30 16:30:17','2023-05-30 16:30:17','2024-05-29 11:30:17'),('ce49ab9b27ce7d93c4b5fee18abffa1c2bcc350b28307997e9f5eec3f11d41feb8f2402b3cdb18e5',2,1,NULL,'[\"user-app\"]',0,'2023-06-07 19:27:46','2023-06-07 19:27:46','2024-06-06 14:27:46'),('ce5ef07380714abe2168e334b251c9fe6bb0ef51e7c6546587534f3d4137e729c472a6f686275959',1733,1,NULL,'[\"user-app\"]',0,'2023-07-10 15:07:21','2023-07-10 15:07:21','2024-07-09 10:07:21'),('ce636184089d6c59027d9b147b56356ee3a346fa5fa1ce6f9d6a22f9d29919ca53b3dab3c697e3a9',1465,1,NULL,'[\"user-app\"]',0,'2023-05-16 19:40:25','2023-05-16 19:40:25','2024-05-15 15:40:25'),('ce75dd90ed1cf13afe68ac64f625734b01948c654990901d89ab043c259e57ce5a214cae43248fab',416,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:04:46','2023-01-25 11:04:46','2024-01-25 08:04:46'),('ce98004d28caaf3c07ac1c257a185f2237a775ad4943209c8d05f6e69fc53a25eba9b010df3e4279',202,1,NULL,'[\"user-app\"]',0,'2023-02-05 00:33:39','2023-02-05 00:33:39','2024-02-04 21:33:39'),('ce9f8d115acd0b79ab4fee74a2f21df5c37a7dd5d96e1047925e4d1369b06ae32f00da5087887049',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 19:14:55','2023-07-17 19:14:55','2024-07-16 14:14:55'),('ceb24181a5e902ae20e49cc9d6617e113f01985f25c1c4a900a367c2fe24ef34a879de1efe7e1faf',2067,1,NULL,'[\"user-app\"]',0,'2023-09-28 03:09:15','2023-09-28 03:09:15','2024-09-26 22:09:15'),('ceb42b41a3b9da5f3137fe100d03a7da3c186e5086f3f29559a47204bb106eed61ffbe41d104a516',1126,1,NULL,'[\"user-app\"]',0,'2023-05-15 10:19:12','2023-05-15 10:19:12','2024-05-14 06:19:12'),('cec6ac3439a0391268c3eb10dceaf5ca087dd9310c14954587a0a65b349d15b21d3615cfe44f1402',837,1,NULL,'[\"user-app\"]',0,'2023-02-01 19:26:13','2023-02-01 19:26:13','2024-02-01 16:26:13'),('ced6a0f72877e33e7a51d72068a6a53f835f6e21f458874bcd8d83195ce852e37d53dbd7601fb5d9',1437,1,NULL,'[\"user-app\"]',0,'2023-05-12 16:12:54','2023-05-12 16:12:54','2024-05-11 12:12:54'),('cedaf9f888885ad057bb8d61b4f85a73a3aaff485db5b66173f57fade9a7edda90cd617f6adf6861',2,1,NULL,'[\"user-app\"]',0,'2023-09-17 23:09:37','2023-09-17 23:09:37','2024-09-16 18:09:37'),('cedbf98b3ffa255ed6a63f038fa28a39ec1d46ebca93a4ec187fa6344a11c95fddcbae6dabe206c0',1507,1,NULL,'[\"user-app\"]',0,'2023-06-29 15:54:20','2023-06-29 15:54:20','2024-06-28 10:54:20'),('cef02bd958179365c18bc8358f06eed8737485a3ef64461f9c4476a02ce61846d1b6e233d497c6eb',2,1,NULL,'[\"user-app\"]',0,'2023-08-09 21:02:42','2023-08-09 21:02:42','2024-08-08 16:02:42'),('cef64f530f801ef133e9ca1bab47db95f12e5ba5eb08e1eb54c65754b4dcff75e865bfc6d1b7fd0b',1025,1,NULL,'[\"user-app\"]',0,'2023-02-21 22:23:09','2023-02-21 22:23:09','2024-02-21 19:23:09'),('cf05d5d1875649ca95375e669eb0a98ab36d2fcf0f448ae4e506603e3dc0699686f95cb18114fe6c',32,1,NULL,'[\"user-app\"]',0,'2023-10-02 20:04:19','2023-10-02 20:04:19','2024-10-01 15:04:19'),('cf0b5fa01dd92f41f1097dd32237c16d6ac45bf4d9c367c5ba61173232a392dad74876354744e025',315,1,NULL,'[\"user-app\"]',0,'2023-06-13 15:07:04','2023-06-13 15:07:04','2024-06-12 10:07:04'),('cf26387619b7c28e8052385bd030dbe9c6f5a34f60c327704f9e3eb2ee1552210612476086c8069c',1764,1,NULL,'[\"user-app\"]',0,'2023-07-14 19:18:19','2023-07-14 19:18:19','2024-07-13 14:18:19'),('cf2fefd3d62d46d1a0a1e26a8c82198004259a2374e1679a568cde34ec9af3dc58cb6d4f9ec9fca0',1846,1,NULL,'[\"user-app\"]',0,'2023-08-01 00:34:42','2023-08-01 00:34:42','2024-07-31 19:34:42'),('cf3c061169f94830af038f2c8ac8443c2b7f8808bb1d099b7aedfa1b18b15fa22af07a71eb0f927b',2,1,NULL,'[\"user-app\"]',0,'2023-03-16 12:21:35','2023-03-16 12:21:35','2024-03-15 09:21:35'),('cf55872719b555b9cdbda10c8e7c6c63ad428ccb221c48ac752cf69eb458183b300b37876f6d50ea',2,1,NULL,'[\"user-app\"]',0,'2023-09-27 16:39:00','2023-09-27 16:39:00','2024-09-26 11:39:00'),('cf62c18888cfdaef165f8694bce640b5e9f56e0d17ead70a49df5512c304e2a3efde8fedeef6311e',223,1,NULL,'[\"user-app\"]',0,'2023-04-05 15:25:51','2023-04-05 15:25:51','2024-04-04 11:25:50'),('cf6c2f75636a4f396a8545afe3faca7dc4a069998d21c4d14849bc5400e4bce7f314ca9a38100cef',958,1,NULL,'[\"user-app\"]',0,'2023-07-11 19:48:39','2023-07-11 19:48:39','2024-07-10 14:48:39'),('cf6c907728c58233c1e4023cbe4cd3684ddd1a10262b4fb235ad8a599f52eca4988582500f400f8e',313,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:43:36','2023-01-25 11:43:36','2024-01-25 08:43:36'),('cf6e54436f37dfffb38a8543cc9e0bbd382571db33519327539a8ad91e0730d16161dea14bd446f0',1289,1,NULL,'[\"user-app\"]',0,'2023-04-21 01:53:40','2023-04-21 01:53:40','2024-04-19 21:53:40'),('cf88e3ae2b5eb67be4ded8997a87a32244b32a032b7d87906120ba02c36fbf7461ebd298a9b30f84',1052,1,NULL,'[\"user-app\"]',0,'2023-06-12 23:07:08','2023-06-12 23:07:08','2024-06-11 18:07:08'),('cf90b31a9ca9ed1c245ede4f595ca4b94f1150c3fb7df422ecddc978fb76506e2635ab04d11f4351',1681,1,NULL,'[\"user-app\"]',0,'2023-07-01 22:07:37','2023-07-01 22:07:37','2024-06-30 17:07:37'),('cfb3b4cd751f542c448d5c45204cb2a674f5b4df21323414b495123d4728857377881948a91c4f7a',1186,1,NULL,'[\"user-app\"]',0,'2023-10-07 15:49:05','2023-10-07 15:49:05','2024-10-06 10:49:05'),('cfb4d0957c3b99321cc8dc92861a5a563e37dfc69733ffb003bab74e500ed900efab202ee636aaad',2,1,NULL,'[\"user-app\"]',0,'2023-08-02 19:06:59','2023-08-02 19:06:59','2024-08-01 14:06:59'),('cfcca74641869b931ac335cc81ef21334a2d8b75e13a8c594fbf205fe9ee60e47932f1171225bdea',2,1,NULL,'[\"user-app\"]',0,'2023-04-28 21:11:58','2023-04-28 21:11:58','2024-04-27 17:11:57'),('cfe7d066e1435990b57dd8af8441c09bb9c0fa0629ac226efa4e9b6d8b6572d47579313164b6d7f2',2,1,NULL,'[\"user-app\"]',0,'2023-07-29 03:26:20','2023-07-29 03:26:20','2024-07-27 22:26:20'),('cff353338dcb08a19a904cc4ee4b38e586e94e76d53ec16d1089299379f1299e239c1e9ac16945d7',2,1,NULL,'[\"user-app\"]',0,'2023-05-04 22:50:34','2023-05-04 22:50:34','2024-05-03 18:50:34'),('d000241fb3d8fa38d9130a2a5a89c3b81f0137ce645efd6d0e4e57f9abfc441e32dd06b054145953',2,1,NULL,'[\"user-app\"]',0,'2023-04-10 04:36:45','2023-04-10 04:36:45','2024-04-09 00:36:45'),('d011dda06ed5ea93fff04e08c02a805bb466c4bb750f424f602d720d20547c5f338b41eaf339b10d',2,1,NULL,'[\"user-app\"]',0,'2023-04-10 23:55:01','2023-04-10 23:55:01','2024-04-09 19:55:01'),('d023f6f31aa4b381830b41636d6fa328ff5f984e13d7f67994c60116b271b3463245fc2d07a52b4f',1304,1,NULL,'[\"user-app\"]',0,'2023-04-23 01:51:09','2023-04-23 01:51:09','2024-04-21 21:51:09'),('d02c20275d0b617ba0aff18a320366592db1d074deecc5d17e6fa784faae8800c9beff638e0b5483',97,1,NULL,'[\"user-app\"]',0,'2023-01-26 01:05:22','2023-01-26 01:05:22','2024-01-25 22:05:22'),('d02f123b8eae284462565593f6debbddb89d1f0b5ab3eacc3dba959dab6499de49a903e058156253',2,1,NULL,'[\"user-app\"]',0,'2023-02-04 23:13:49','2023-02-04 23:13:49','2024-02-04 20:13:49'),('d03564eafb37cfbc0f8a9ec2abf6c160086dc99ce645f0f677f3495ed104b9b651e2a2d76bb4cefd',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 22:53:46','2023-09-21 22:53:46','2024-09-20 17:53:46'),('d05ee7765b88951482eefdb2d4fc4a04e4493deaf296b8efc36eb10ec01908dec60f68b80094cff1',1430,1,NULL,'[\"user-app\"]',0,'2023-05-11 23:43:27','2023-05-11 23:43:27','2024-05-10 19:43:27'),('d076a192f8d1cacd5f66f5f5331d8138f25c8057e27a336d5d2e0507dd5fbe9852800e9a60d1081d',645,1,NULL,'[\"user-app\"]',0,'2023-01-25 10:33:54','2023-01-25 10:33:54','2024-01-25 07:33:54'),('d08f387ec7197f3862d7fcbfaf72936b0c2a0283f2c4a1dc6e8ab58e0ba722d14c24a3fda33b9372',1297,1,NULL,'[\"user-app\"]',0,'2023-07-07 16:13:18','2023-07-07 16:13:18','2024-07-06 11:13:18'),('d09842f261ea019f6d5ad9914272d9344d10cc2e4f4157b4fd622cfb2c16b52be65f0f21bb829fda',948,1,NULL,'[\"user-app\"]',0,'2023-06-05 12:54:26','2023-06-05 12:54:26','2024-06-04 07:54:26'),('d0a917f504d64c78043aea87b512b66711e3d16d2d4a2f4b533c9c89222cff7c0869a99b5716b23d',301,1,NULL,'[\"user-app\"]',0,'2023-09-18 11:26:46','2023-09-18 11:26:46','2024-09-17 06:26:46'),('d0c74eeeb4e23001f61fc3c1319f292bc0cd79205cfdc3f918eb5320fdc4c55298481fcb0f23af80',2,1,NULL,'[\"user-app\"]',0,'2023-02-01 11:41:12','2023-02-01 11:41:12','2024-02-01 08:41:12'),('d129495fa5100218fa92c3ac708141571dd1a6a1c0f216ff9ca9547927a31ef2d10e37e5dd16f921',1499,1,NULL,'[\"user-app\"]',0,'2023-05-25 01:30:14','2023-05-25 01:30:14','2024-05-23 20:30:14'),('d143fa0141bcdbf02118cb004d7182dcb6108c84169c67b6bbf5e82629adaac2da14531c0b4f902c',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 16:31:10','2023-03-29 16:31:10','2024-03-28 13:31:10'),('d15848cd8640898b90112997f4c10ddf814d8752e5f7ea06113bcc4de15a368a8c0848e75670a7a5',1236,1,NULL,'[\"user-app\"]',0,'2023-04-08 12:43:16','2023-04-08 12:43:16','2024-04-07 08:43:16'),('d16463f2f689768b82c5e9e0935c5848d415dc6157528b237c1efa3c4de3d18bc0190a009c8e2c6d',829,1,NULL,'[\"user-app\"]',0,'2023-02-03 12:20:38','2023-02-03 12:20:38','2024-02-03 09:20:38'),('d172b7ca91203bbc7be0a46c2ac8c9139ac0e361883851228d294a61b8016e322d4e0e1272adf356',1440,1,NULL,'[\"user-app\"]',0,'2023-05-12 23:46:08','2023-05-12 23:46:08','2024-05-11 19:46:08'),('d178a28a99f54c69ea4a5ac813f60c4222ed5ac70af0d6ad0c73dd2bdc6d280dd5a32d52c8c1a5a9',211,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:16:51','2023-01-25 19:16:51','2024-01-25 16:16:51'),('d1797da26e2186308f03f962fce09a931571470c2650cbf6ecb2b1ddef87600ec1c452f0dcd06c50',2,1,NULL,'[\"user-app\"]',0,'2023-06-30 22:31:20','2023-06-30 22:31:20','2024-06-29 17:31:20'),('d190f210c65cf6e0b02534bcf8432aeea1eed9479a4d048cbc72714a398135aa0c2a225a39b32343',1312,1,NULL,'[\"user-app\"]',0,'2023-04-23 16:05:26','2023-04-23 16:05:26','2024-04-22 12:05:26'),('d19bd2ee1cc49acea148286a1b32576e7dbe68c04f3d293cc5d0b8f8405eb8fd9b5b3e0a5572d6a8',2,1,NULL,'[\"user-app\"]',0,'2023-06-18 03:27:25','2023-06-18 03:27:25','2024-06-16 22:27:25'),('d1c3928f7d5c6948b85d527794c2781390af5c594352ba2647ec94308e102ac9385eefcb4cceacb2',854,1,NULL,'[\"user-app\"]',0,'2023-04-14 21:52:37','2023-04-14 21:52:37','2024-04-13 17:52:37'),('d1db23ec8cda6f45018dae9e9f2999b8d638fb92188489809522fec062578c7d0ff84816642485bf',2,1,NULL,'[\"user-app\"]',0,'2023-05-11 13:53:28','2023-05-11 13:53:28','2024-05-10 09:53:28'),('d1ec833f39a7c40961bcdf70853afe0283b31477f09ca89e41835b65ea4223d887078e2c922c2d1e',2113,1,NULL,'[\"user-app\"]',0,'2023-10-07 16:08:42','2023-10-07 16:08:42','2024-10-06 11:08:42'),('d23c33685a3d5cf7d1e25396968750bb0acf23303fdff94d8ae7e07146014d5cac10ee63c44ff90f',2,1,NULL,'[\"user-app\"]',0,'2023-07-29 16:26:28','2023-07-29 16:26:28','2024-07-28 11:26:28'),('d250b4b08768328c392e51915bebe804f04dbc034e8af7e1439363a4461671ba490527c0c1c3846a',361,1,NULL,'[\"user-app\"]',0,'2023-01-26 21:28:26','2023-01-26 21:28:26','2024-01-26 18:28:26'),('d25322a9df472ef1779b7e52ed0952ebc534122b32bb1024e57b45c85a88b5af1fd4410bf4f23d04',2,1,NULL,'[\"user-app\"]',0,'2023-02-24 00:17:02','2023-02-24 00:17:02','2024-02-23 21:17:02'),('d28838b6af1f48de9c81f33750fae17c42e8c465a550bc828d738ab9354a7d35786bbe855c07f373',1412,1,NULL,'[\"user-app\"]',0,'2023-05-10 17:55:05','2023-05-10 17:55:05','2024-05-09 13:55:05'),('d29be6052079f193a9055607bbaa4549483e18fab5ef0cb6f304bb08e3780aa1892cf497557e2e02',1708,1,NULL,'[\"user-app\"]',0,'2023-07-06 20:09:56','2023-07-06 20:09:56','2024-07-05 15:09:56'),('d2c24829dd92b0d71f6c29e5c1a67738ae3565a06d2fdab30dd4c72d6e242b116ca0dac07b94490b',1137,1,NULL,'[\"user-app\"]',0,'2023-03-12 16:42:19','2023-03-12 16:42:19','2024-03-11 13:42:19'),('d2c5e3dcfd8fc525426a3c94451e2c6d6f734f4b6ed2fe408a00dad0b6c2fc5fd394b6211b779221',676,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:02:54','2023-01-25 16:02:54','2024-01-25 13:02:54'),('d2cc9ec9977f69340bbb442e3c2c47c95500a57d115a85e3d6cb67d02c300ee19984dbaaefbf5ecc',1860,1,NULL,'[\"user-app\"]',0,'2023-08-05 18:46:03','2023-08-05 18:46:03','2024-08-04 13:46:03'),('d2cf60ab8ba9b9a2be7e8098e26bd9e07f2cce9e8e750fa18367beba2faaf926d97c1055b618a6ae',2,1,NULL,'[\"user-app\"]',0,'2023-07-28 01:18:16','2023-07-28 01:18:16','2024-07-26 20:18:16'),('d2d30d116c76d44e9dbc7fa468085151c037a286202d69b7292be89a9b45c5863ec0f9db179074a2',153,1,NULL,'[\"user-app\"]',0,'2023-01-30 14:47:20','2023-01-30 14:47:20','2024-01-30 11:47:20'),('d2da50a11080f7f107f03cde23f259e252349a078ac5e13cf49de4347fe131cb98816f1be41a5b4a',856,1,NULL,'[\"user-app\"]',0,'2023-02-04 12:15:47','2023-02-04 12:15:47','2024-02-04 09:15:47'),('d2e254d880c3f44fda5294e45741332b16b787329b63d1eb3e6d54a5dbb55837f21a496eff13fede',8,1,NULL,'[\"user-app\"]',0,'2023-06-15 20:07:18','2023-06-15 20:07:18','2024-06-14 15:07:18'),('d31a47ede44da8e9b42540971d1b03514ef3d70e2fe2eb9a0e48f7f4a64c665f36f5495bcd46161f',2,1,NULL,'[\"user-app\"]',0,'2023-05-13 19:05:40','2023-05-13 19:05:40','2024-05-12 15:05:40'),('d31fcd6f2a1a8b5b6e6365f2629b4c8180c8255acf39c590c0cdb41a24b4615b90f5a549d81196b2',2,1,NULL,'[\"user-app\"]',0,'2023-03-31 02:48:27','2023-03-31 02:48:27','2024-03-29 23:48:27'),('d33e55849c125adf8f548f051d9d65c39b0310275abbbc9a15734e68477c8991b2db75717f0e6d9c',2,1,NULL,'[\"user-app\"]',0,'2023-08-26 21:00:27','2023-08-26 21:00:27','2024-08-25 16:00:27'),('d35b21f32a4a3824435b19e82f95b1a73db9e9d4abd3ccfb8720d5b8bff4bc76e9cedc45855caf40',612,1,NULL,'[\"user-app\"]',0,'2023-01-25 20:55:16','2023-01-25 20:55:16','2024-01-25 17:55:16'),('d36671e3646e64d1711c88f54ac1b3b1822b989c570fd4303d6aefe8196ad7024667a1f48cb710cc',777,1,NULL,'[\"user-app\"]',0,'2023-01-28 15:49:57','2023-01-28 15:49:57','2024-01-28 12:49:57'),('d37eb065b1d9f9e8ddeb56e6ca2e6ee568f10c603298eb36afe01be3afe34883bd5bd63cebff7571',38,1,NULL,'[\"user-app\"]',0,'2023-04-13 19:18:30','2023-04-13 19:18:30','2024-04-12 15:18:30'),('d38750a67003f65048aea5040a094c34545bfda74eac21df092401b397fede31895f208fae1f8220',2,1,NULL,'[\"user-app\"]',0,'2023-06-10 21:08:00','2023-06-10 21:08:00','2024-06-09 16:08:00'),('d39c2795c90b3542244e1d013f6ee1f57a8a2c3ec73618b05f6a4ae24ceedbe3deb50c59ef55c4c0',92,1,NULL,'[\"user-app\"]',0,'2023-03-28 22:29:16','2023-03-28 22:29:16','2024-03-27 19:29:16'),('d3bc096b97fef043af6742899217bf19f8ceb761e8f76eb340a77ec9f4dd32f84b9718902bf00521',2,1,NULL,'[\"user-app\"]',0,'2023-09-25 00:46:06','2023-09-25 00:46:06','2024-09-23 19:46:06'),('d3da6e1a78945ea9936a935f20af11ecf0f47c7f7aaeec6e5e6ca4e08ee5766fa7f04761165f0ec4',1408,1,NULL,'[\"user-app\"]',0,'2023-09-07 03:31:33','2023-09-07 03:31:33','2024-09-05 22:31:33'),('d3e8d09c2ccb75d21890426fdf805c48d32bb8e9cd88e89ebdb2ed09f0012ad3fdebb825c8f63863',8,1,NULL,'[\"user-app\"]',0,'2023-03-07 17:06:46','2023-03-07 17:06:46','2024-03-06 14:06:46'),('d3eb520800a0a6a4349d648f56c03b847aadc364c6e48068eaa5d07e808ddbb8c2f56cbc53734955',1568,1,NULL,'[\"user-app\"]',0,'2023-06-21 21:51:40','2023-06-21 21:51:40','2024-06-20 16:51:40'),('d3f260f6637a212fd7d66fb20adaf8f2dc1df33b96b91edf7fbff7755227fb60e1fdd3d77d262c18',1154,1,NULL,'[\"user-app\"]',0,'2023-08-18 14:54:16','2023-08-18 14:54:16','2024-08-17 09:54:16'),('d3fc1e85a245cb11d41e696181c9174937408d35cc8e2b6c438fe55b506a50f164d8c708dd944ffc',2,1,NULL,'[\"user-app\"]',0,'2023-02-23 10:02:01','2023-02-23 10:02:01','2024-02-23 07:02:01'),('d420284855eafd62bacf6afdcfffb169c695668de0b96b5e2560ba14bce63efe834c97d102902e34',910,1,NULL,'[\"user-app\"]',0,'2023-02-12 14:09:39','2023-02-12 14:09:39','2024-02-12 11:09:39'),('d4304ad9c896b226c01da2ce9308e06d597e6b20f431347799857ca0c53160d8940908b052f303dd',700,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:53:32','2023-01-25 19:53:32','2024-01-25 16:53:32'),('d431d57bacab8c861eaaf55b515daa7119e4c74be2cbc0e7534fa715cddf4e2bc65dc739c048ffd3',2,1,NULL,'[\"user-app\"]',0,'2023-10-01 16:26:06','2023-10-01 16:26:06','2024-09-30 11:26:06'),('d445190daeeac0cf005034b9b9bb7f71bdcc5246cb7dfc962b8df5fad7ba04a653fff660d78e1cbc',2,1,NULL,'[\"user-app\"]',0,'2023-07-13 23:57:30','2023-07-13 23:57:30','2024-07-12 18:57:30'),('d44a027acaf7246e516550f123822245889511254b74289300430f7adda23e5eb8755ebe2b2a6bdc',1862,1,NULL,'[\"user-app\"]',0,'2023-08-06 01:46:32','2023-08-06 01:46:32','2024-08-04 20:46:32'),('d45576bcd00e43d47d936b8106500be62378e6fc558d00f2d5a9fd7e7cfcff12dce1f720926c1412',1814,1,NULL,'[\"user-app\"]',0,'2023-07-26 00:05:15','2023-07-26 00:05:15','2024-07-24 19:05:15'),('d456d949edf4ff971d4c18047b7a0ef4cf7caad29959264c4d67436f91612382a7532789ab1a9399',1798,1,NULL,'[\"user-app\"]',0,'2023-07-24 17:02:41','2023-07-24 17:02:41','2024-07-23 12:02:41'),('d463bdc02ecd91ee60496f68e017a51393455c3683f8d5a44ea14b2dae4d3e925616a27af2a3a5b2',2,1,NULL,'[\"user-app\"]',0,'2023-07-11 14:13:04','2023-07-11 14:13:04','2024-07-10 09:13:04'),('d4642bf4faf7feb1944bd6c7f235c3a74f9f86e542b9f27fa78bd12c1ca76fa2fcde78e42f491d75',1778,1,NULL,'[\"user-app\"]',0,'2023-07-18 03:05:44','2023-07-18 03:05:44','2024-07-16 22:05:44'),('d46872b577165431929b29c377b52dbe5eb434ea60bcbd2bf0df16da3cb100d306b31b79f7fe011f',2,1,NULL,'[\"user-app\"]',0,'2023-06-26 15:22:17','2023-06-26 15:22:17','2024-06-25 10:22:17'),('d46f7ed4169eeefa25ae9fd8ddc8dfa1da19c4f9bd06b97239f158991925445701919cf863827611',1890,1,NULL,'[\"user-app\"]',0,'2023-08-17 22:05:21','2023-08-17 22:05:21','2024-08-16 17:05:21'),('d47e600c273a525d1ac89933846cd405d35668319bdeae4735af1193067550cdbec5f92984593f2c',559,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:23:39','2023-07-08 01:23:39','2024-07-06 20:23:39'),('d4833577ccaa862218260f43371a999157c2f7a0916b2a96f7980c586e58044156f5622342c8bbf0',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 11:40:29','2023-01-26 11:40:29','2024-01-26 08:40:29'),('d4a093aba2d8be521878bcdde1f9c181602a821a5077bfd6fdd5cb7e1d9809c7a059e8eff923500b',2,1,NULL,'[\"user-app\"]',0,'2023-04-29 13:10:53','2023-04-29 13:10:53','2024-04-28 09:10:53'),('d4a15d9bf68ff2f49f32a8b1397427532d6db08a4549814edb317946dc6751359ffc4947d3c0852e',2,1,NULL,'[\"user-app\"]',0,'2023-09-09 13:48:35','2023-09-09 13:48:35','2024-09-08 08:48:35'),('d4a63ee3865f82df219844361d4d7e23f8609f9a288ce339d8691561be8e322bc095d5074fd9e370',2,1,NULL,'[\"user-app\"]',0,'2023-10-01 14:42:43','2023-10-01 14:42:43','2024-09-30 09:42:43'),('d4d06cbbe16721d80fe19194073ba5908187771bc9f70d50d3b6e0edeba89d7802bc37ba1bd73fe8',956,1,NULL,'[\"user-app\"]',0,'2023-02-20 13:17:03','2023-02-20 13:17:03','2024-02-20 10:17:03'),('d4f039e16ea7750afe865e9dc6a00159cdf8846aac4346fa1aee4ac6d690edd785a1cb1c84fca32b',2,1,NULL,'[\"user-app\"]',0,'2023-07-30 21:48:26','2023-07-30 21:48:26','2024-07-29 16:48:26'),('d4f6a87be5e13c2bedb86b130d0b04d58ab6837a3e240e4b8ee4d59fbb1358c306837c6dc0446985',2,1,NULL,'[\"user-app\"]',0,'2023-03-10 21:10:09','2023-03-10 21:10:09','2024-03-09 18:10:09'),('d4f8a5c5a8acc44f61386aa256aeb6a9991638ca9141c1b2e3437cd4616085f17aa5f50ecec0d384',956,1,NULL,'[\"user-app\"]',0,'2023-02-20 14:51:20','2023-02-20 14:51:20','2024-02-20 11:51:20'),('d5442936c2d083abcd46d8d0807d552e7ff09b3565160e3274a96763fef6bdf3f03ac5c03b45e4a2',2,1,NULL,'[\"user-app\"]',0,'2023-02-05 16:56:02','2023-02-05 16:56:02','2024-02-05 13:56:02'),('d545c9f8f5ac869cad8949b2492d3e27956d0e421d8f0acbbdcdc08a15ccebea9390385912d7324d',1173,1,NULL,'[\"user-app\"]',0,'2023-04-29 15:51:07','2023-04-29 15:51:07','2024-04-28 11:51:07'),('d550a4bca35831136b915f2947428279f17330e72265cee3f8f42609a4162fa08fc9879f5dbe1f34',2,1,NULL,'[\"user-app\"]',0,'2023-02-10 16:03:48','2023-02-10 16:03:48','2024-02-10 13:03:48'),('d559083edd3ee0ebef990a5db8c27ca0a287110b42507df1f5ad46f8a88fcae9a8649a0cc6ac8b63',923,1,NULL,'[\"user-app\"]',0,'2023-08-03 15:32:34','2023-08-03 15:32:34','2024-08-02 10:32:34'),('d55ecde65fb835e4d9e99062d3c28c24859950393baca3e74c121a134d85513517907268dc7daa71',1165,1,NULL,'[\"user-app\"]',0,'2023-04-14 13:01:38','2023-04-14 13:01:38','2024-04-13 09:01:38'),('d579ae06de448ea41d3d31c9fe44e59183d3a3dd2aac4416d99bed9f135fcdc3854a5dd775609c8a',586,1,NULL,'[\"user-app\"]',0,'2023-07-12 17:02:36','2023-07-12 17:02:36','2024-07-11 12:02:36'),('d58f7e0cb3061d70312a75e8d1bd83dc5c4565a24408dc322bf951d2018894ba335066c35611c290',1565,1,NULL,'[\"user-app\"]',0,'2023-06-14 21:14:45','2023-06-14 21:14:45','2024-06-13 16:14:45'),('d590f63d6bc95d68ac67da20dfdd8962309588837c9f73c1aa2c98a65a8dec19846b32f7f09d1c57',1962,1,NULL,'[\"user-app\"]',0,'2023-09-08 20:30:59','2023-09-08 20:30:59','2024-09-07 15:30:59'),('d591fd9ecfa71fc2bf26068e3ef32a54e71e67be4a12cb19ec2cd8bdc5995863b1440c3747546d7c',780,1,NULL,'[\"user-app\"]',0,'2023-01-28 17:19:41','2023-01-28 17:19:41','2024-01-28 14:19:41'),('d5a8aa1a82e4557084ee5c3b76338d273403cdabe0a606bcac2589b12c077d5b71350ac226e4097d',839,1,NULL,'[\"user-app\"]',0,'2023-02-01 22:22:48','2023-02-01 22:22:48','2024-02-01 19:22:48'),('d5ae8ce595d98eea518f26fc65071c88afebaa1b0eed377a75be94ca0114dacfc6430061473e1d2c',1291,1,NULL,'[\"user-app\"]',0,'2023-04-21 11:03:45','2023-04-21 11:03:45','2024-04-20 07:03:45'),('d5b01848620ae88a318a008e4e7008e42a1aec9614e9ae20d581b4adbe947fd7348841fd9cffa4c4',924,1,NULL,'[\"user-app\"]',0,'2023-02-14 20:15:22','2023-02-14 20:15:22','2024-02-14 17:15:22'),('d5e3080b20b7842ea3f9eab5019555bbf67f0fd22bea1af71e18a7b359bf6dde2bf88e3063168e94',1731,1,NULL,'[\"user-app\"]',0,'2023-07-10 14:42:11','2023-07-10 14:42:11','2024-07-09 09:42:11'),('d5e8d4b09a7741dc35762c6f813ccef5da3f81e316f2caeeda0fd017412e1034b46148b31ba8adc1',2077,1,NULL,'[\"user-app\"]',0,'2023-10-01 00:22:37','2023-10-01 00:22:37','2024-09-28 19:22:37'),('d5ef6f194401aeeba691524e257068d5d98369946ea7c38a6e0c4395517d055bf4e829d47f04863d',859,1,NULL,'[\"user-app\"]',0,'2023-02-04 23:05:13','2023-02-04 23:05:13','2024-02-04 20:05:13'),('d5f2aaf1a844925cfb3abc68c2f778cf2a96b55f3994e7e330962a6e6bc541054284e38cbaaef35b',8,1,NULL,'[\"user-app\"]',0,'2023-09-06 11:05:26','2023-09-06 11:05:26','2024-09-05 06:05:26'),('d606d8edd4a805095902138ab9772f80bfae1daf1f6cb69507a65702784b8eacd044c2bb78c7b561',2,1,NULL,'[\"user-app\"]',0,'2023-03-13 23:10:14','2023-03-13 23:10:14','2024-03-12 20:10:14'),('d609b575816205b9b36b12d47c06a34fb37d42c18753cf924d5376c2e53f2af5b29c2065140a3fb5',1092,1,NULL,'[\"user-app\"]',0,'2023-02-27 19:50:09','2023-02-27 19:50:09','2024-02-27 16:50:09'),('d63bef66ba0a27c8201e2fa20a7c63eb2d9799517e4466148e5f9409150b76df8e7688ff913dbe59',1375,1,NULL,'[\"user-app\"]',0,'2023-05-06 00:17:56','2023-05-06 00:17:56','2024-05-04 20:17:56'),('d6a367671594c0fcd073042d73074b2a304dd56fb13d7ba45d17702fa8d382c0e7943585a6b3003d',646,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:23:05','2023-01-25 11:23:05','2024-01-25 08:23:05'),('d6b1c921e31e0b1215a46752bf8a9bb4cc55f575a337333d75f9ea0270f43c7292edd7411a13abaf',2,1,NULL,'[\"user-app\"]',0,'2023-02-05 21:22:27','2023-02-05 21:22:27','2024-02-05 18:22:27'),('d6c0bb693e8d7479b30907d1e7703e4e29c3f137d7fc0c814ee7a6f3b09be5ba63514775c399d46c',2,1,NULL,'[\"user-app\"]',0,'2023-09-13 01:40:46','2023-09-13 01:40:46','2024-09-11 20:40:46'),('d6d7ed3ab3388f3355d5be005a822f67ef8f5fb3d6677de9118c98e7532ecd96355e828fd453ac7d',2081,1,NULL,'[\"user-app\"]',0,'2023-10-02 11:51:16','2023-10-02 11:51:16','2024-10-01 06:51:16'),('d6d7ef39f8517472214d9ceb79241095880855aa6452e8d96a78ca24a1b715e1a527b1e968aef98c',1005,1,NULL,'[\"user-app\"]',0,'2023-02-22 19:19:54','2023-02-22 19:19:54','2024-02-22 16:19:54'),('d6db92239bb5975dafc4b8c8c7c81c75a96dae0778cf55bed14a19f133e8452295cbe31cdbac9471',980,1,NULL,'[\"user-app\"]',0,'2023-02-18 19:02:43','2023-02-18 19:02:43','2024-02-18 16:02:43'),('d6e32916eafbdac5524e4e0fb2698e3fd2c94782dc84ae29e9be0de8c2f2dcd072f37c2564355e96',2,1,NULL,'[\"user-app\"]',0,'2023-09-14 15:34:23','2023-09-14 15:34:23','2024-09-13 10:34:23'),('d6e764e8be7334c6dbbc1dd231b91f8429f9b7a6e1147e9462a7454c15b3db24954420a69025c70b',981,1,NULL,'[\"user-app\"]',0,'2023-02-18 19:31:46','2023-02-18 19:31:46','2024-02-18 16:31:46'),('d6eada0834bb30ed475aeb973ac608512d6a5ce6a20f3e6331beaeaea570507fca4414b9912f2684',1479,1,NULL,'[\"user-app\"]',0,'2023-05-18 05:45:32','2023-05-18 05:45:32','2024-05-17 00:45:32'),('d6f37ee2b56bb488375e596657db1cebe6957c43be499f83cedb651aabe7a3b9f5dcfd4246e935c3',2039,1,NULL,'[\"user-app\"]',0,'2023-09-24 01:06:37','2023-09-24 01:06:37','2024-09-22 20:06:37'),('d6f8a4839ff5a19af1cf2761359432a4648111043c9ac73a88427ba5161c89fd11fad70cb725364a',1404,1,NULL,'[\"user-app\"]',0,'2023-09-11 02:52:27','2023-09-11 02:52:27','2024-09-09 21:52:27'),('d71290521864206c176b9851167cdec0e305ee134589de502c5248816a024403db8788ceaa5b2802',2,1,NULL,'[\"user-app\"]',0,'2023-09-29 04:23:00','2023-09-29 04:23:00','2024-09-27 23:23:00'),('d71b2c8589a103bc484b5e873a4d1d4b47a1a77b30eab71cea711316e8db526ab18fc6494241ace5',2,1,NULL,'[\"user-app\"]',0,'2023-09-30 21:00:15','2023-09-30 21:00:15','2024-09-29 16:00:15'),('d71bf67b1ba9b764792571978ab0dffa63fbc2ef27504a76411dfa2eaacb345434a55c17ac350092',2,1,NULL,'[\"user-app\"]',0,'2023-04-08 20:48:59','2023-04-08 20:48:59','2024-04-07 16:48:59'),('d733dd80bec4a1d45e7ade9a9adc19d84b0bf6c5f71c1722098f1cf54e0df41f6789325e022b59bc',1866,1,NULL,'[\"user-app\"]',0,'2023-08-07 00:18:53','2023-08-07 00:18:53','2024-08-05 19:18:53'),('d738365f89e5a3f1fd3e8e19e45e6155365a43a99f1fd4c192da687cbe558b8862f846e8071b0cf7',2,1,NULL,'[\"user-app\"]',0,'2023-02-24 17:17:53','2023-02-24 17:17:53','2024-02-24 14:17:53'),('d75325a08a37a6e1512d44433abb7bd2eff36cac5979219396c1bae705eb07bdd2387b096ebedde9',2,1,NULL,'[\"user-app\"]',0,'2023-08-31 15:29:30','2023-08-31 15:29:30','2024-08-30 10:29:30'),('d75b9c79d4b0b565b756fc87877cc97b426468c9bc43191b0e8babc664a9285ae9a2dd7a3c18682c',1094,1,NULL,'[\"user-app\"]',0,'2023-07-06 00:39:13','2023-07-06 00:39:13','2024-07-04 19:39:13'),('d75ce2c9a48b0fe29daf2e7971d0b2556b539971baefcd8cce1cc07e938b66c64b21920e11c46638',1278,1,NULL,'[\"user-app\"]',0,'2023-04-19 21:10:54','2023-04-19 21:10:54','2024-04-18 17:10:54'),('d763e68edf66a4092c56197034577f800e77c6daa3ccf296c69e5f72e08b5f59137a0adffabcb814',1982,1,NULL,'[\"user-app\"]',0,'2023-09-12 22:27:11','2023-09-12 22:27:11','2024-09-11 17:27:11'),('d7682f9f93d1a09452ee8d5a379e86d7692b75e048dd92d24d12c3292a4709962a33317a6f6a79f4',998,1,NULL,'[\"user-app\"]',0,'2023-02-20 14:42:38','2023-02-20 14:42:38','2024-02-20 11:42:38'),('d76feda17264cf98c520c26e6791737103c05a2c2c1dc2820d810720fdcd60e7b41f2d3d0d14c8d8',782,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:00:11','2023-01-28 19:00:11','2024-01-28 16:00:11'),('d7a258a562e03a0b0685b97d5afb37a1a5e00482c7d0bece94575e6fafcd75f784b37d072102e213',2,1,NULL,'[\"user-app\"]',0,'2023-02-13 21:45:00','2023-02-13 21:45:00','2024-02-13 18:45:00'),('d7a91eb10a2b05109e5d117a1b34a4e485853619578495a19f1eaeff0098777e71b3f2ec1fa6b518',477,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:03:41','2023-01-25 11:03:41','2024-01-25 08:03:41'),('d7aa1e56da78efd2d6f993e614932e6766e67f7fca48d65cb63676c5a1277598dab484e61297b245',732,1,NULL,'[\"user-app\"]',0,'2023-01-26 14:40:01','2023-01-26 14:40:01','2024-01-26 11:40:01'),('d7acb72c5e3301b5041b2cbacef4d3d8da13abca4f7d2aa56a79c9eee58f1acf72f94dfde83c458d',1719,1,NULL,'[\"user-app\"]',0,'2023-07-09 16:30:27','2023-07-09 16:30:27','2024-07-08 11:30:27'),('d7b3fc55b5d6fce857d01881a7511cd23fb1b914c8186de2b12e382b6ae57cd4ae19c12d20b60dc2',701,1,NULL,'[\"user-app\"]',0,'2023-02-04 23:49:25','2023-02-04 23:49:25','2024-02-04 20:49:25'),('d7d1b305dfc0b2347a07f7b96665df4c1f8c61698d527aa2019ac165077176c39848e9e0570079f2',1829,1,NULL,'[\"user-app\"]',0,'2023-07-28 20:44:39','2023-07-28 20:44:39','2024-07-27 15:44:39'),('d7e21301a1cd0c41348b8fa43416b901841bc23ec639f49bbdcfc78996ac0deb3c86647368bf2c89',2,1,NULL,'[\"user-app\"]',0,'2023-06-24 22:04:43','2023-06-24 22:04:43','2024-06-23 17:04:43'),('d7e5a0f6738b19e6661c459546c07e5234c6da64e5295ebc22c0a2f7471bfd0d90dd32415921387f',1295,1,NULL,'[\"user-app\"]',0,'2023-04-29 00:27:36','2023-04-29 00:27:36','2024-04-27 20:27:35'),('d7ea27ec26f0a7129db4efcc2b6e583424410c7287ffcf96b311b1d6de951ac952eb750efba80f0a',2,1,NULL,'[\"user-app\"]',0,'2023-08-24 04:33:47','2023-08-24 04:33:47','2024-08-22 23:33:47'),('d809b31264568a58384f3a20f4beeb13f1e274ff38c88bbdf0c3b9e57c0d4f8531735ce0d8893eec',1166,1,NULL,'[\"user-app\"]',0,'2023-09-24 19:41:05','2023-09-24 19:41:05','2024-09-23 14:41:05'),('d81e43cabd109651aaa0b9b46eea6715178d654e339db35bdc796cf70cc39bec2c7fbcd6dce18422',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 13:03:42','2023-03-29 13:03:42','2024-03-28 10:03:42'),('d8212a0151b8649a90345cd4a5881d4e2968bedb205ec41c25b67439933ccdc25411e9a0aa4dc8bc',1843,1,NULL,'[\"user-app\"]',0,'2023-07-31 13:18:57','2023-07-31 13:18:57','2024-07-30 08:18:56'),('d85a10a098e238b9a83d27e1449ff09bdbcd9d98aa5e80e3c98b944921b1c955f5ac7d661ce565a0',2,1,NULL,'[\"user-app\"]',0,'2023-05-17 20:58:37','2023-05-17 20:58:37','2024-05-16 15:58:37'),('d85cfb257c9690e4f2c80be9c48a2461a87263e78b48864cef2fd8e0e27bf4f49789d49133a149a4',1333,1,NULL,'[\"user-app\"]',0,'2023-04-27 22:09:30','2023-04-27 22:09:30','2024-04-26 18:09:30'),('d8623a8a7ef2b34bffc73ee082748a122148124dfe27f36239f52068ea460fc7775218b3e70ae763',208,1,NULL,'[\"user-app\"]',0,'2023-09-08 16:25:00','2023-09-08 16:25:00','2024-09-07 11:25:00'),('d87598ce927e084c506a24b2f3a8cf6c0198717106221a7e0f86a06c14189eb533dae180b06800a2',1552,1,NULL,'[\"user-app\"]',0,'2023-06-11 03:15:29','2023-06-11 03:15:29','2024-06-09 22:15:29'),('d87c754b70216e8640d8bae555997d3b9fa1e63df4fc849b7697e130c958bc18bba0fe2e8024f56b',2,1,NULL,'[\"user-app\"]',0,'2023-02-23 23:47:38','2023-02-23 23:47:38','2024-02-23 20:47:38'),('d8878f004600195f3953fec72d5dcd4717075df3a6d368c3ad66f9426b45cc578b5ab8e3656bad52',1662,1,NULL,'[\"user-app\"]',0,'2023-06-29 01:51:06','2023-06-29 01:51:06','2024-06-27 20:51:06'),('d88d688a65ba24071cf37d18d62099e89eb4e08cf0ef214f40a9caa947502488058ff92901030a5e',625,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:44:32','2023-01-25 02:44:32','2024-01-24 23:44:32'),('d8ae13d1573480b025d62f61b480c30b1f8b15e1c479ca959793782649b07e5885d4b274a4f79834',2,1,NULL,'[\"user-app\"]',0,'2023-05-27 01:35:48','2023-05-27 01:35:48','2024-05-25 20:35:48'),('d8bd0674479334e2c282ee26750a657df129f716d4cf851ec5f8b9f2b88e473d49b73f0a8aa681f8',210,1,NULL,'[\"user-app\"]',0,'2023-07-05 21:40:42','2023-07-05 21:40:42','2024-07-04 16:40:42'),('d8cba3ca59cab6cc7a9a0102b0500b3ba82f423a1300e22cc6f3e558003fcc9d661a3645ce9d26d0',823,1,NULL,'[\"user-app\"]',0,'2023-01-31 14:23:48','2023-01-31 14:23:48','2024-01-31 11:23:48'),('d8cdd7327d2a29a0917c36b073851b9fe6cf543d0d0e5366523469816c44d889ae9dc54ab4367351',1671,1,NULL,'[\"user-app\"]',0,'2023-06-30 16:25:17','2023-06-30 16:25:17','2024-06-29 11:25:17'),('d8cef34277d29666289ec515d929ffa0f112d8fd8b30a735eeaff5c079a75280e44cde5d5cc4c121',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 11:24:02','2023-09-18 11:24:02','2024-09-17 06:24:02'),('d8d893ed1c9f442c617c7f986886f1e7d4bb50fb401c353a408d932315fd89da08f9e0ba107f4de6',1679,1,NULL,'[\"user-app\"]',0,'2023-07-01 15:35:30','2023-07-01 15:35:30','2024-06-30 10:35:29'),('d8eb5bf463823c4050b86145df7d997eb03a98d9e5fb4255229957fc0dd7157beca88c6e1c2e6c45',1365,1,NULL,'[\"user-app\"]',0,'2023-05-04 11:44:28','2023-05-04 11:44:28','2024-05-03 07:44:28'),('d8f741af8bfa873ecd22b4fcb5b249ba8db540672d405312501ecb8dd6311d0d4ccfc57fe6378691',477,1,NULL,'[\"user-app\"]',0,'2023-08-20 16:06:06','2023-08-20 16:06:06','2024-08-19 11:06:06'),('d8f765443bca586ab0da0bb20d80beb6c5133bd76d54112826479508a372c4eb71f9c61a24944717',2,1,NULL,'[\"user-app\"]',0,'2023-08-06 01:42:04','2023-08-06 01:42:04','2024-08-04 20:42:04'),('d901597490bfa76b3279c912e658cb46d7130734ed6335a0d6089734922205dfdc3d77cd58aa277c',1730,1,NULL,'[\"user-app\"]',0,'2023-07-10 01:09:10','2023-07-10 01:09:10','2024-07-08 20:09:10'),('d9020993b5dd23a09b8931ac2aaf23c17703a2ff63f837cd952197a4e4ef199ac7a57ce7cafc3258',1526,1,NULL,'[\"user-app\"]',0,'2023-06-04 11:13:42','2023-06-04 11:13:42','2024-06-03 06:13:42'),('d907ec3900d0fcecd1544d813589e1be3e2d0557ab5e2cf59fca0298949fbcaa9c6f41c5109d2182',1581,1,NULL,'[\"user-app\"]',0,'2023-07-13 10:21:30','2023-07-13 10:21:30','2024-07-12 05:21:30'),('d9135775f85fb3890667bc6178b56596104019920d5daf6c92173ff502e775ee11c57e09892699c2',1811,1,NULL,'[\"user-app\"]',0,'2023-07-27 21:52:29','2023-07-27 21:52:29','2024-07-26 16:52:29'),('d92a515c8d2ce894ff9467a62a9fc86ac05b7db2e4ec0927697193758b9df9e4e4d49e269ca7fc16',2,1,NULL,'[\"user-app\"]',0,'2023-10-05 00:11:47','2023-10-05 00:11:47','2024-10-03 19:11:47'),('d9342526abb0a6568747a98e1ee184de0d578ef6c2f6b44cbcf53b2d570aa4f37da27a5ec8662626',2,1,NULL,'[\"user-app\"]',0,'2023-06-04 20:40:10','2023-06-04 20:40:10','2024-06-03 15:40:09'),('d93c8294ff7f7843a3bb8c8c0682de1d6396fa62c8c2246b921f4f90d96a21a344fdc09c73ca82aa',2,1,NULL,'[\"user-app\"]',0,'2023-07-09 00:33:20','2023-07-09 00:33:20','2024-07-07 19:33:20'),('d949be1c1aa58dad18c2cae43dda8dec06c97b0896cc5cf2c4dd730dc91c71d7c98738659818c311',1911,1,NULL,'[\"user-app\"]',0,'2023-08-24 11:31:53','2023-08-24 11:31:53','2024-08-23 06:31:53'),('d956f011475c629782f09f71fb7e824f8d929a9c523d4e6d04fe492cc526f0adf9706bfebb0ac43c',1377,1,NULL,'[\"user-app\"]',0,'2023-05-06 12:08:40','2023-05-06 12:08:40','2024-05-05 08:08:40'),('d95776136597fcef0194ca21e98bdf45ca597e0672dfe0b7de03729fa1cfd976f09d2ad4ba7caf03',2121,1,NULL,'[\"user-app\"]',0,'2023-10-07 23:31:26','2023-10-07 23:31:26','2024-10-06 18:31:26'),('d9621aee565bf9127fc7ffbbb65b8f803ca5fd052c9136224ff24d7eafa8d646861ead046c251e04',2,1,NULL,'[\"user-app\"]',0,'2023-06-04 23:25:08','2023-06-04 23:25:08','2024-06-03 18:25:08'),('d96f96cb1e9d032aed3f0a922f1b8c264339d7391a59281ecce8aa1ba8d8dd71d9a4ae20c089fbbb',938,1,NULL,'[\"user-app\"]',0,'2023-02-16 05:57:43','2023-02-16 05:57:43','2024-02-16 02:57:43'),('d989307e009e955a598a884aecaf26835956699c9ff947e9058fc13cf17120f4d98f629d07a4291c',1609,1,NULL,'[\"user-app\"]',0,'2023-06-21 01:24:12','2023-06-21 01:24:12','2024-06-19 20:24:12'),('d98d7a1ce1c63f7e399b7a5aa45a84c6bc8fff123384c9a169711d1fb9b1a7adb6cb34f0b635e65e',702,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:34:14','2023-01-28 13:34:14','2024-01-28 10:34:14'),('d99a731afee2bc38ad47dcf6ef37a92f6f1e76cf593b02a69f10d61c30cc7d94c6de3766b32d2aad',1403,1,NULL,'[\"user-app\"]',0,'2023-07-26 23:02:34','2023-07-26 23:02:34','2024-07-25 18:02:34'),('d9a97ef87c3f77cb18054aa36f0f37742331b42eade6ded67d8063dd9d8fe86f68074f85fdbc1af7',163,1,NULL,'[\"user-app\"]',0,'2023-07-07 13:32:30','2023-07-07 13:32:30','2024-07-06 08:32:30'),('d9c75049551c4482c77287755ba21e137eb6e4e1223c88ba99143d9ee308024cf17128d96ea878e0',1439,1,NULL,'[\"user-app\"]',0,'2023-05-30 21:59:34','2023-05-30 21:59:34','2024-05-29 16:59:34'),('d9d1ceffbe657a512f9acb3067f4a1d4cb21314d6697b7de1d425150029941fdb32968295fa5953f',120,1,NULL,'[\"user-app\"]',0,'2023-02-23 23:44:56','2023-02-23 23:44:56','2024-02-23 20:44:56'),('d9d4073855b76084bc926959c92ea48bcafce5fa94ca2d23b589b28f4a55e2b8a94f3e82887c7396',1182,1,NULL,'[\"user-app\"]',0,'2023-03-23 17:05:13','2023-03-23 17:05:13','2024-03-22 14:05:13'),('d9ef763cae5676035c233b6b6e4c163eddff6346fffbd316c1c62f070464a76360d0766285451179',1247,1,NULL,'[\"user-app\"]',0,'2023-04-11 23:54:38','2023-04-11 23:54:38','2024-04-10 19:54:38'),('da03dc7eaa84e54358f740be7634f353b2e0a54ed7b0359d906037c79ef5b7495819cfeda6cb4a34',98,1,NULL,'[\"user-app\"]',0,'2023-08-15 01:39:31','2023-08-15 01:39:31','2024-08-13 20:39:31'),('da0419617ceee6c955bfaec827e08e48cb2c8b85151e0b5eaa26f8fcfd1edc5b22708616bb8fb04a',939,1,NULL,'[\"user-app\"]',0,'2023-06-02 16:45:35','2023-06-02 16:45:35','2024-06-01 11:45:35'),('da0de2f650423a9a6ad37049c2ecfe37314d390df9a2e099ea42486c00f71d23fd946ab76f4102a0',1254,1,NULL,'[\"user-app\"]',0,'2023-04-13 20:46:20','2023-04-13 20:46:20','2024-04-12 16:46:19'),('da1ed73f8a4a7ba6f250c050ca9b81113a123a2e3a4ae0769934d4cda54299b77e3993dc34632226',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 13:02:42','2023-03-29 13:02:42','2024-03-28 10:02:42'),('da2823ac2e768112719f2c30fe43be32683169d39efcf3117316432e5f39e7ba69d46a7fb236640d',1393,1,NULL,'[\"user-app\"]',0,'2023-09-30 01:57:07','2023-09-30 01:57:07','2024-09-28 20:57:07'),('da3cc44bfc4a25c91fb5f06618687841855b6c75eb4d1d1c2eda8c845c766e1f7817cd7893099fab',917,1,NULL,'[\"user-app\"]',0,'2023-02-22 14:56:34','2023-02-22 14:56:34','2024-02-22 11:56:33'),('da5b9547313db05e11de4eb14f26963070ed643648d8ab911b3f6dee24d827af7b6ed8edc6f84675',2,1,NULL,'[\"user-app\"]',0,'2023-09-18 18:01:42','2023-09-18 18:01:42','2024-09-17 13:01:42'),('da61234e71ca383dbdbb0921e3448596a22da19dab45b128b49ca9b52ec3512aaf941dab07653bb7',1608,1,NULL,'[\"user-app\"]',0,'2023-06-20 19:31:16','2023-06-20 19:31:16','2024-06-19 14:31:16'),('da64440d984557c889778ef0ef038cb8afa7e89bf3071a543e07e1213578ca18c9d3cb6e3b28e3e0',956,1,NULL,'[\"user-app\"]',0,'2023-02-20 13:38:26','2023-02-20 13:38:26','2024-02-20 10:38:26'),('da6ddbd18a3fcf185ff72552903314b409b38093849357f19df120314fa03521d450291738c40433',1059,1,NULL,'[\"user-app\"]',0,'2023-02-23 21:25:44','2023-02-23 21:25:44','2024-02-23 18:25:44'),('da6e49782ee1e9b6b9bfab0ea3c41f8b3731748213512e8d3b6349378de61b8e0b7052e28285559a',644,1,NULL,'[\"user-app\"]',0,'2023-01-25 10:23:08','2023-01-25 10:23:08','2024-01-25 07:23:08'),('da72788cc2a81d813dd37686e1259e081f3342730d2012d4dc266d6b75a017c4e6396a80c30be998',1187,1,NULL,'[\"user-app\"]',0,'2023-03-24 16:58:13','2023-03-24 16:58:13','2024-03-23 13:58:13'),('da7d425c1b323fb6ef5bd64034535676c73ad505743a0a429947211cfb937b2dc715bae143c65737',315,1,NULL,'[\"user-app\"]',0,'2023-03-23 11:31:30','2023-03-23 11:31:30','2024-03-22 08:31:30'),('da7d63b4f3ce2f42fd0f082db1ef968800968ad16267e31aa96a1f5eaf45ff8c09feadb48b68b4b0',401,1,NULL,'[\"user-app\"]',0,'2023-03-01 20:38:18','2023-03-01 20:38:18','2024-02-29 17:38:18'),('da7eeb25474950a56661b2938ad7296934aab2bd02f8eb1b5de7224b7ef297a34656049c98a37501',1527,1,NULL,'[\"user-app\"]',0,'2023-08-02 00:59:09','2023-08-02 00:59:09','2024-07-31 19:59:09'),('da8a034d6e1be47eaa03244baabbcd14148b7e6a185bbca18001b9d477e3b6b3a6e550fd692b4212',1548,1,NULL,'[\"user-app\"]',0,'2023-06-09 20:09:43','2023-06-09 20:09:43','2024-06-08 15:09:43'),('da8c13a978e3d0c986c03ba66854f9a6ffe41f9d4e3f1e9481dbebe3a352bce1ca4f25c0f2b66639',1768,1,NULL,'[\"user-app\"]',0,'2023-07-15 05:11:55','2023-07-15 05:11:55','2024-07-14 00:11:55'),('da9ef8c76190e8af692b3bc48580cd5326ce4a991221aa2764a2c989fe664771ab4b0858874f146f',1865,1,NULL,'[\"user-app\"]',0,'2023-08-09 22:00:23','2023-08-09 22:00:23','2024-08-08 17:00:23'),('daa901e7876034a1eba78aa1ad30de8ba1e85b498c2accf7f42f426bb418fbe92a9ce1f6b2258078',2,1,NULL,'[\"user-app\"]',0,'2023-09-24 18:40:50','2023-09-24 18:40:50','2024-09-23 13:40:50'),('daac3444b135f8eef35a3a1bf6a9b96da78e26e071d50c112c93197547366458fce55880207947e4',1660,1,NULL,'[\"user-app\"]',0,'2023-06-28 19:23:13','2023-06-28 19:23:13','2024-06-27 14:23:13'),('dac11ec4750a2d0f2b3810debc76852bc4214a207dd1cf21a3ee7fc01cd176db191ca938e02dad44',2,1,NULL,'[\"user-app\"]',0,'2023-03-13 04:26:03','2023-03-13 04:26:03','2024-03-12 01:26:03'),('dac4796d8b3f20559d1c4f8f9691002a4442820af8dc07d510cda5c4b0a802a9969ef5c2e81ebc5c',1643,1,NULL,'[\"user-app\"]',0,'2023-06-25 23:47:54','2023-06-25 23:47:54','2024-06-24 18:47:54'),('dac4d7ae8641ab93cc78f7fb6b5793bfdcbdfdad6db1976d9af011a5c685751dbf79c7dff5ffd07c',359,1,NULL,'[\"user-app\"]',0,'2023-02-20 20:50:21','2023-02-20 20:50:21','2024-02-20 17:50:21'),('dac8289de4e71c67f6315c6c6bfbfe8006e27bc8dfe76d2180eb3537f3438ad4c09f2d91d0a25d71',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 17:21:30','2023-01-28 17:21:30','2024-01-28 14:21:30'),('dae4be33f39fc6ff208a39c76598f2b6072e4e933d84ecbdfb853cdfaca569613d1aadcbf2724dc3',357,1,NULL,'[\"user-app\"]',0,'2023-02-21 01:53:26','2023-02-21 01:53:26','2024-02-20 22:53:26'),('dae51ab7e102a2e785dedb72a217bce16d665d75b2be00afb5efa6521c1902987e03e56e0aaf8734',1109,1,NULL,'[\"user-app\"]',0,'2023-03-03 02:18:53','2023-03-03 02:18:53','2024-03-01 23:18:53'),('dafcb501bd09b56990d0d45c9b96b06a109ab4b4c278b244f3b7b82b5f49cebbbb0eb784ba37149e',869,1,NULL,'[\"user-app\"]',0,'2023-02-07 00:31:17','2023-02-07 00:31:17','2024-02-06 21:31:17'),('db00d8cda314db05f0ce1784b01f037a45fe8d202c375f7e24397cc50639a88ef5cc07443465b360',2,1,NULL,'[\"user-app\"]',0,'2023-07-03 10:59:13','2023-07-03 10:59:13','2024-07-02 05:59:13'),('db08ca647d1b879e149d37c780f017529a84d9831ca8f9c35cc3f21eb74157a929beda621ba3a4c7',1550,1,NULL,'[\"user-app\"]',0,'2023-08-24 23:59:30','2023-08-24 23:59:30','2024-08-23 18:59:30'),('db0ee8be274d360546a41121e208745b03c48444b1aef80476bf03eed102f5dd963037d77043e49e',5,1,NULL,'[\"user-app\"]',0,'2023-01-30 19:30:40','2023-01-30 19:30:40','2024-01-30 16:30:40'),('db103d2067780ec495696849e8efdf692158cafdbb17f2a9663797f512e0a782ef2fe2883a82c2a7',2,1,NULL,'[\"user-app\"]',0,'2023-07-14 17:07:45','2023-07-14 17:07:45','2024-07-13 12:07:45'),('db202dd8b11a4f3063e697a3fce90b2a80a4961b9fb537f3621fa69a7b310a4e0e3bc89707efaa7e',1394,1,NULL,'[\"user-app\"]',0,'2023-09-09 23:13:24','2023-09-09 23:13:24','2024-09-08 18:13:24'),('db2bb41b7d5c442518df3d15750372e4139145d9ab0c34708a62386def5a4197febd19db82d0deda',1286,1,NULL,'[\"user-app\"]',0,'2023-04-20 21:43:45','2023-04-20 21:43:45','2024-04-19 17:43:45'),('db366628794ba339120b6f38043c156d7c05358c1ea9b2b9157bd10b7f3fe2ef3c7fd5f5c717614f',1985,1,NULL,'[\"user-app\"]',0,'2023-09-13 17:25:38','2023-09-13 17:25:38','2024-09-12 12:25:38'),('db49a89677b92b2e3b489943c76666c5e55df85b9925f005f376a7d4e7eb0a18984c5a26a05eb287',129,1,NULL,'[\"user-app\"]',0,'2023-02-13 21:23:21','2023-02-13 21:23:21','2024-02-13 18:23:21'),('db4cdcaa88766e490badebb3e80bd4427bb0c1937026ed6a16c96e11311a7fe5d95ddfbd70eafb1d',2013,1,NULL,'[\"user-app\"]',0,'2023-09-19 19:13:23','2023-09-19 19:13:23','2024-09-18 14:13:23'),('db540fa507f1e732f9bfd383cc5343d06b1e210e957a3a0af81b7cbb8b29ba46f3b9326ad3db8160',1043,1,NULL,'[\"user-app\"]',0,'2023-04-04 14:38:47','2023-04-04 14:38:47','2024-04-03 10:38:47'),('db6cc8fcc00486b7702405ea3874d48888f4cf6c658b2cea2c0ba675d9ec5f2e64171232ef324704',2,1,NULL,'[\"user-app\"]',0,'2023-08-12 03:24:42','2023-08-12 03:24:42','2024-08-10 22:24:42'),('db6e055c75f141c52d2e02b537af078762fc083357b3859847578daf45014876b55833544a34a98d',801,1,NULL,'[\"user-app\"]',0,'2023-01-29 22:14:05','2023-01-29 22:14:05','2024-01-29 19:14:05'),('db91e75acd325b10be8c3041e4420ef514437a3ac8bd5b07c2d5cb9eb17145465d3fcb5adccf9ca4',280,1,NULL,'[\"user-app\"]',0,'2023-03-31 20:59:11','2023-03-31 20:59:11','2024-03-30 17:59:11'),('dbaa1a21a63a026c1d249a98b52bcf2aece88e46a7f3a003b82e970925236fb7abd217ca346d4f05',1598,1,NULL,'[\"user-app\"]',0,'2023-06-19 17:16:03','2023-06-19 17:16:03','2024-06-18 12:16:03'),('dbb946d45236ec8eb441660002f413f1db8b56e3ea9e2e061646527b914d6f3a1a8dabd6bfaf504e',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 19:22:40','2023-01-26 19:22:40','2024-01-26 16:22:40'),('dbc83845a50c68ecf4965f7fc0c17a2fbffcb1ba2a8e46eea4b2099b7b72979feb475103c369e5bb',2,1,NULL,'[\"user-app\"]',0,'2023-01-27 16:59:08','2023-01-27 16:59:08','2024-01-27 13:59:08'),('dbca2ed33918b35d00d61c3e009e140602a031471818e26a51b64bfd23dbe920be0ad0db151991a7',1874,1,NULL,'[\"user-app\"]',0,'2023-08-11 07:15:25','2023-08-11 07:15:25','2024-08-10 02:15:25'),('dbcce8424b17816bf3329d570d1d207ab1a28ab95d3de948bb005af561d6d4894486d3182fa250da',1256,1,NULL,'[\"user-app\"]',0,'2023-04-14 10:17:18','2023-04-14 10:17:18','2024-04-13 06:17:18'),('dbd398ee17dcc9c5106d5a19565afc77e10fee74b2137dc6084a4f99390e4af227254c6224417cdd',1782,1,NULL,'[\"user-app\"]',0,'2023-07-18 21:53:02','2023-07-18 21:53:02','2024-07-17 16:53:02'),('dbd4b1daf8e58030a0cdf5b1e8021ed3a05b7bc8798a94c26a5fd411fb1ee896fd2c52cb02aa3906',289,1,NULL,'[\"user-app\"]',0,'2023-07-23 05:25:20','2023-07-23 05:25:20','2024-07-22 00:25:20'),('dbdb25043b48b1e05d5657a1ca11e7605fea8d6fc55eba8d6aa6b8bd1c9d521219138d246aad8e06',5,1,NULL,'[\"user-app\"]',0,'2023-05-30 19:53:44','2023-05-30 19:53:44','2024-05-29 14:53:44'),('dbe2e6c73c41f7fe1a4e9c0f7671e79747985bc5a231a7394e75963e5b3a3061ba6f442fce5fbc7d',2,1,NULL,'[\"user-app\"]',0,'2023-08-14 21:50:39','2023-08-14 21:50:39','2024-08-13 16:50:39'),('dbe5906b43d129f446c0a0ab2f8a77b4ed73654422e3d98b2df11c24d32039e64df5581cdc1e2011',1677,1,NULL,'[\"user-app\"]',0,'2023-07-01 14:26:12','2023-07-01 14:26:12','2024-06-30 09:26:12'),('dbedfacfea4b2a9bbbc11d4c4687e7ee9f4c734a994eb31855fb71c636aff5ec7460239617caf076',1255,1,NULL,'[\"user-app\"]',0,'2023-04-14 00:30:09','2023-04-14 00:30:09','2024-04-12 20:30:09'),('dc0f68be99729e47f67fea2f073e216b74342c548faea4656a1cab5b5bce0eb9d5501b8457138107',828,1,NULL,'[\"user-app\"]',0,'2023-01-31 23:01:02','2023-01-31 23:01:02','2024-01-31 20:01:02'),('dc21a0f6f668dace80119208d7c9c94fdc2ac6073cee54f489a2b92ea3146ebcbda68d8cbe489cdb',13,1,NULL,'[\"user-app\"]',0,'2023-01-26 12:45:43','2023-01-26 12:45:43','2024-01-26 09:45:43'),('dc26b0410593e227f787dba955fcebd4ba6a1785696a097cb431b3d022f9ff1335a755a63e8a3e9f',5,1,NULL,'[\"user-app\"]',0,'2023-06-14 19:52:17','2023-06-14 19:52:17','2024-06-13 14:52:17'),('dc58c6c3bdf0b9c2daf30516ef9e40b05a3dc9b436244dde71a1338a0a53bd1071fd339e7f9ac4ed',2,1,NULL,'[\"user-app\"]',0,'2023-03-30 15:54:18','2023-03-30 15:54:18','2024-03-29 12:54:18'),('dc5a0581ed79c1f6f8ee774297a1018cea37646c0f6ef3bd13f3675598365cfaab6ccce53b52c451',71,1,NULL,'[\"user-app\"]',0,'2023-09-22 02:05:50','2023-09-22 02:05:50','2024-09-20 21:05:50'),('dc6c9fa0ff34e1fb7a98a3b6df052fb21e8607890ddb4db9d5b1b8335acae3b6d6b9cfb16a035d1c',1103,1,NULL,'[\"user-app\"]',0,'2023-03-02 01:57:03','2023-03-02 01:57:03','2024-02-29 22:57:02'),('dc9317505c7a4d00138c5860da340761df9c1fe590ba835d7a7c9745dc2a464ac8559bd15a98a44c',2,1,NULL,'[\"user-app\"]',0,'2023-04-07 18:27:04','2023-04-07 18:27:04','2024-04-06 14:27:04'),('dc95a72ff6a1864e413e312a2ec7cd4ecde07d8e4fc8d5dcb463bb795b9e946d2eafc07fb307755d',1482,1,NULL,'[\"user-app\"]',0,'2023-06-20 19:27:19','2023-06-20 19:27:19','2024-06-19 14:27:19'),('dca28a7456d866e333b7b78438d9e6e6d3687e86bb2e035f78df6f9a1605d950d98a19f98af22573',2,1,NULL,'[\"user-app\"]',0,'2023-01-30 11:47:45','2023-01-30 11:47:45','2024-01-30 08:47:45'),('dcd01c39ec77755d984fdde4c423ad9d01384a992bc971336ea5f6b603952cacbad52739984427a2',575,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:16:36','2023-01-25 18:16:36','2024-01-25 15:16:36'),('dcd2125aa684e037ac93469294b6b5a3a8657404ddd17befe48afd8e31201564694496117e3e5689',1035,1,NULL,'[\"user-app\"]',0,'2023-05-09 00:29:12','2023-05-09 00:29:12','2024-05-07 20:29:12'),('dcdb0d2291cb7ae12038dd32c4883d7ae741f94818a35babc79a989f05f3aa6b20ef8a3a0a263832',622,1,NULL,'[\"user-app\"]',0,'2023-02-18 23:15:28','2023-02-18 23:15:28','2024-02-18 20:15:28'),('dce45231041594a3034010e512d98f5719804e39b54057df3264525b36346b32b2c132ffcd3790fa',8,1,NULL,'[\"user-app\"]',0,'2023-02-20 15:23:15','2023-02-20 15:23:15','2024-02-20 12:23:15'),('dceb324e6220aab631e69edf047abaad891234af0e4b5d84b5f5cff8ed757634eff42528fa7d726c',25,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:31:43','2023-01-25 12:31:43','2024-01-25 09:31:43'),('dcfa52be0134846412353c24909bffdc12405aaf1d92fb8671fd590b85ce70a219b39918d81d1d8e',1461,1,NULL,'[\"user-app\"]',0,'2023-05-16 10:43:59','2023-05-16 10:43:59','2024-05-15 06:43:59'),('dcfa5f7253d9c48aec2e6a33273c90b3d3539ce74039b8c6214a13adc67d5da26022e55aa05c0880',498,1,NULL,'[\"user-app\"]',0,'2023-01-26 12:34:12','2023-01-26 12:34:12','2024-01-26 09:34:12'),('dcfd006b709c0237f558a26d0c77600d5457b502136614b7e6308d5250326f1c0f48a204e863d8a9',2,1,NULL,'[\"user-app\"]',0,'2023-07-24 16:43:49','2023-07-24 16:43:49','2024-07-23 11:43:49'),('dd28f57f8dcbdde5c612afd2060d1a9417767b6f12f7cd15e3987206c8fbc69f106396bad73b2885',1083,1,NULL,'[\"user-app\"]',0,'2023-02-26 13:29:15','2023-02-26 13:29:15','2024-02-26 10:29:15'),('dd3daf5e78c5672f2dd7db4cf1c0c4e7390fd23d1d645b530bf79c77201a6116ba2399b039070d9a',363,1,NULL,'[\"user-app\"]',0,'2023-06-21 18:36:21','2023-06-21 18:36:21','2024-06-20 13:36:21'),('dd417ea5f39aac262bc8f65a1cbbf8b870abd56eedcc4cd0706bb627a044fd3c8308754ba574f0f5',1169,1,NULL,'[\"user-app\"]',0,'2023-03-17 22:29:48','2023-03-17 22:29:48','2024-03-16 19:29:48'),('dd4c0cb281ec336eedbba049951a202f3975081020a8b7d510948b16e0317ae862955ee5965d1033',754,1,NULL,'[\"user-app\"]',0,'2023-02-04 14:11:58','2023-02-04 14:11:58','2024-02-04 11:11:58'),('dd6d523096459f89fd03f5cf6c7bc04de5a1744682a5492997ebc4ea6967f41f756fe67591400157',392,1,NULL,'[\"user-app\"]',0,'2023-03-13 15:33:17','2023-03-13 15:33:17','2024-03-12 12:33:17'),('dd6fde2e37d598930bd62bcde4ea140822c5ebd069f8d93aa8df97595cab4a7010b50e1f51d63a43',2,1,NULL,'[\"user-app\"]',0,'2023-09-22 15:11:41','2023-09-22 15:11:41','2024-09-21 10:11:41'),('dda48039340cbd7399c2a5ef6e358bfcb8171d06605ba48d5fdbdbb06fc12c83210fb424fcdb3451',88,1,NULL,'[\"user-app\"]',0,'2023-01-27 12:43:27','2023-01-27 12:43:27','2024-01-27 09:43:27'),('ddc4433fbe4fd060f07778fa6503ced7e0af9ea0ca8c1c17e1f53625ef12abdb451f10720274d519',703,1,NULL,'[\"user-app\"]',0,'2023-01-25 21:10:54','2023-01-25 21:10:54','2024-01-25 18:10:54'),('ddc84bc97cda93a370ac5eb0d3375ef4ddb2b6e29279f253b4ebf5773730426c51496d76378c8ff8',1783,1,NULL,'[\"user-app\"]',0,'2023-07-18 22:03:13','2023-07-18 22:03:13','2024-07-17 17:03:13'),('ddd75b963bd79829ef6bbeea6625026f4d187aa1a376f3d6bc3a7c857012731547816c39c34ebf10',1502,1,NULL,'[\"user-app\"]',0,'2023-05-25 20:09:12','2023-05-25 20:09:12','2024-05-24 15:09:12'),('ddf6854afd446fcbc83fa186babe14b88f7dce7be9703591d492fa4c6e239e866799beec24c2c27f',140,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:48:17','2023-01-25 17:48:17','2024-01-25 14:48:17'),('ddfdab3138dbe69ab806be6863a8cc80e0d882732c9cb1643e6d3809c8f4e327ba796328932a5c13',939,1,NULL,'[\"user-app\"]',0,'2023-09-15 21:17:34','2023-09-15 21:17:34','2024-09-14 16:17:34'),('ddfe46d322d57f51924c545883d55dc86571fad877aa82f1fe0687b2218ceea5f5dfef5e7f7874e6',170,1,NULL,'[\"user-app\"]',0,'2023-10-02 22:24:52','2023-10-02 22:24:52','2024-10-01 17:24:52'),('de139e221d4977b70dbee4c0825cc2958555cf9faa6c438315bb07d467ea99451570176efb6d8383',25,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:29:04','2023-01-25 12:29:04','2024-01-25 09:29:04'),('de1747d23206e1708b54a34fd85e85dbeb8d6aea63f579894b20a75b2d86f83be2cb8a769dc67842',1626,1,NULL,'[\"user-app\"]',0,'2023-07-09 19:19:53','2023-07-09 19:19:53','2024-07-08 14:19:53'),('de1c1dd80f6657c4b39ee8d8a0158bab85085ddb956b5a58f96ba0b9f18285b5d000b434b963c3a4',842,1,NULL,'[\"user-app\"]',0,'2023-02-02 00:25:42','2023-02-02 00:25:42','2024-02-01 21:25:42'),('de1e40bda36464c5124146a7f37367017e9b0f50bfcbb2d86377f3815b8f5083bc27392a7eee9ca5',13,1,NULL,'[\"user-app\"]',0,'2023-03-06 11:48:48','2023-03-06 11:48:48','2024-03-05 08:48:48'),('de20803d2da26085ad1e79f672f1cd4e85b88ccad41df9be575b02a190da9a55b48eff9293d41918',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 18:29:04','2023-09-04 18:29:04','2024-09-03 13:29:04'),('de2c46c6cb9356487195348301014c795ea61ce697575c9829b1f79b00731edaa9b1597f048f34b7',358,1,NULL,'[\"user-app\"]',0,'2023-08-18 19:46:33','2023-08-18 19:46:33','2024-08-17 14:46:33'),('de50e651aa5ab6de0cf76402e79c82f71f8c6eb25c3b5a6b0a58de3679f86f3c6083e200dd34f229',1312,1,NULL,'[\"user-app\"]',0,'2023-06-23 16:54:11','2023-06-23 16:54:11','2024-06-22 11:54:11'),('de5784c9d8af477657792a93394d3b4d2c5cbd08871d20ac7678a64ba8c325bb085b902146753ef9',2,1,NULL,'[\"user-app\"]',0,'2023-07-26 14:38:56','2023-07-26 14:38:56','2024-07-25 09:38:56'),('de5a6207228aa3c6d4cdd37e4bd9363b57b81ea8a195d7e0bf3051787d966c631ec1c6061ecb7cb7',538,1,NULL,'[\"user-app\"]',0,'2023-01-26 11:48:47','2023-01-26 11:48:47','2024-01-26 08:48:47'),('de6112ae576e74d895b827ea03a881829f60664afb5645696f2ceb19cf3f8022569b78487548bbf7',1398,1,NULL,'[\"user-app\"]',0,'2023-05-09 20:47:37','2023-05-09 20:47:37','2024-05-08 16:47:37'),('de6d551389f2d8ada4bc5d0468c50ebe93284fcaef4067918483a1526516669591d1cd04375b561e',1142,1,NULL,'[\"user-app\"]',0,'2023-03-12 22:32:50','2023-03-12 22:32:50','2024-03-11 19:32:50'),('de704df4a168e4f942798fe6ab7a8b320a9b7c9ce7d1115e67a0cee0073dc4b6cac3d4db88bf0d1b',1448,1,NULL,'[\"user-app\"]',0,'2023-05-14 18:16:18','2023-05-14 18:16:18','2024-05-13 14:16:18'),('de82083c9ca5284d6e4b27a7168056a01365be816b707adc88e96400d499658beec04551160c7a86',2,1,NULL,'[\"user-app\"]',0,'2023-08-29 16:11:03','2023-08-29 16:11:03','2024-08-28 11:11:03'),('de9330d72fcbd895ca100ddaf97093943049f2d03322ac91bb8791a9a7d176c034e4d07e5362df43',155,1,NULL,'[\"user-app\"]',0,'2023-02-02 01:12:35','2023-02-02 01:12:35','2024-02-01 22:12:35'),('dea880a080fef9d9f0b542da4c211afad18b9774c514ac60c84bf901d1b0cff3a3706eed2fdb02f7',2012,1,NULL,'[\"user-app\"]',0,'2023-09-19 04:19:21','2023-09-19 04:19:21','2024-09-17 23:19:21'),('deb8ed6839c68cbfa51091b43642b64096bdf3505e4a5df232414688970bb3474c4e948d6b9305f4',1902,1,NULL,'[\"user-app\"]',0,'2023-08-21 19:31:45','2023-08-21 19:31:45','2024-08-20 14:31:45'),('dee2cf80829339f8e7ba7d3475e7b2bcb6934381418eea7b2e68270b29caba615d9bdd82e2176554',662,1,NULL,'[\"user-app\"]',0,'2023-01-25 13:46:23','2023-01-25 13:46:23','2024-01-25 10:46:23'),('dee5d2a2c29b7b1c463d61789ad8eb763c3d9a5e3f5ffdb773fcbe65e4816bbb9fb094ca6833d274',1515,1,NULL,'[\"user-app\"]',0,'2023-05-30 21:56:13','2023-05-30 21:56:13','2024-05-29 16:56:13'),('def092ed4d94b0aa2b989610d2045c0260a0728a417348be30f1ab11697a2dee33aec0768aa6b531',1264,1,NULL,'[\"user-app\"]',0,'2023-04-16 22:55:02','2023-04-16 22:55:02','2024-04-15 18:55:02'),('def79310dca2802e78d0f6a54fd2eea9447fba82a407f25ab81b84e1dd348ac946c354f2b4a6238b',2,1,NULL,'[\"user-app\"]',0,'2023-07-31 12:16:50','2023-07-31 12:16:50','2024-07-30 07:16:50'),('df0509616e3dd1993d1ec898d3879a4505aa61739f0667019a954aad12ddd44bf604f6d2686e6cc3',1775,1,NULL,'[\"user-app\"]',0,'2023-07-17 19:12:48','2023-07-17 19:12:48','2024-07-16 14:12:48'),('df11fece701c3101617f2dafb2593535fad701192de862ab014933400a3eefcec61a5d92d45ede66',1015,1,NULL,'[\"user-app\"]',0,'2023-04-13 22:55:04','2023-04-13 22:55:04','2024-04-12 18:55:04'),('df17f2175b750c87e544a3637e744e67a1e09d132aba63ade196f5cacd6514c3f808da74ceae8c5a',1993,1,NULL,'[\"user-app\"]',0,'2023-09-14 20:52:50','2023-09-14 20:52:50','2024-09-13 15:52:50'),('df2f2b0ae58b08b38411337f19fb24c7ed3671ddf12d3f2f0b2bbc5d0a143cfeb32d9dcfb2b72cee',1529,1,NULL,'[\"user-app\"]',0,'2023-06-05 14:41:31','2023-06-05 14:41:31','2024-06-04 09:41:31'),('df2fbc2ff8e790dc5d4d278a3704cf4705e09101cbe2e3c518d94614b3d0c4188a647c57d7fd1006',1573,1,NULL,'[\"user-app\"]',0,'2023-06-15 22:10:39','2023-06-15 22:10:39','2024-06-14 17:10:39'),('df497723bcd0e37e297bac9d75e6ab542a31c9cc5bdf966a9bbc73c0973d61c08c56eb4a1d2dd0e2',456,1,NULL,'[\"user-app\"]',0,'2023-01-30 12:32:21','2023-01-30 12:32:21','2024-01-30 09:32:21'),('df586fa50636a18bfeae32f5daf1534bad645613746d1fdf538e61d095ac87201ab0d99c5854800c',2,1,NULL,'[\"user-app\"]',0,'2023-06-16 13:49:47','2023-06-16 13:49:47','2024-06-15 08:49:47'),('df673609d7c3a2b6f2fcee0bab4f6c89571f7462232b985451a3b3fff26e07d4d04fa5307098ca9a',771,1,NULL,'[\"user-app\"]',0,'2023-01-28 01:28:53','2023-01-28 01:28:53','2024-01-27 22:28:53'),('df68b05ed9699c05e791644b8a61299401702546973636718081b0fbc11f041170338f6be5bd345d',2047,1,NULL,'[\"user-app\"]',0,'2023-09-25 00:47:38','2023-09-25 00:47:38','2024-09-23 19:47:38'),('df7063c23c0504d941e181a9f7e6d979c7f25e9c9b03b01752eb7ad15a793387b3e742c26a74fcd9',727,1,NULL,'[\"user-app\"]',0,'2023-01-26 13:33:48','2023-01-26 13:33:48','2024-01-26 10:33:48'),('df88621d11922cc5f91e41b23693fc93bd10cd5961b3b7a089c0eeff7c8e43f0ffaea580483275e2',731,1,NULL,'[\"user-app\"]',0,'2023-01-26 14:39:14','2023-01-26 14:39:14','2024-01-26 11:39:14'),('dfa830af759de8815a230c998abdeed424b7b13e04717c73a90e2f078b9e170dbf063d20a13195a8',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 22:15:38','2023-01-28 22:15:38','2024-01-28 19:15:37'),('dfaa6e3c34a7ccc37902ddf17ce6460dd69b6f020e6501aa9a4782cb254e915ea0d681c338562043',1734,1,NULL,'[\"user-app\"]',0,'2023-07-10 17:55:57','2023-07-10 17:55:57','2024-07-09 12:55:57'),('dfc1c62348827264fc1f797eff51f731071f5f8597c853a90d21195cf79bd7e33b4b4ba5454aea28',5,1,NULL,'[\"user-app\"]',0,'2023-05-11 13:11:08','2023-05-11 13:11:08','2024-05-10 09:11:08'),('dfd98ec27f380be22c0fda5b46ee9d39cedee0801175953dedf0d17c6f6be704d8711c3e403739bb',824,1,NULL,'[\"user-app\"]',0,'2023-10-08 03:05:41','2023-10-08 03:05:41','2024-10-06 22:05:41'),('dfe73c09e6b7e06b79be317612015a281b80c58d0efcb68bafe5dd2a65329472a7e372a2fdd51089',1018,1,NULL,'[\"user-app\"]',0,'2023-03-29 20:58:00','2023-03-29 20:58:00','2024-03-28 17:58:00'),('dfe756c628ce94a2e273a2bf500c5f1e7edd1632b47c2691c7e6e0b3ad04bbe2e422ed01b589c956',2,1,NULL,'[\"user-app\"]',0,'2023-07-09 16:15:26','2023-07-09 16:15:26','2024-07-08 11:15:26'),('e0072fe8f8ad42a25a72a610fbf04932c189dfd687a080ad6c4240701c389bcc425b03ac835fcdbb',1568,1,NULL,'[\"user-app\"]',0,'2023-10-05 14:31:45','2023-10-05 14:31:45','2024-10-04 09:31:45'),('e04153f438cdf50bff6057c0ff247fdbb5302f230c330add46c6aa64d884b174c5766882d1a1cebc',2,1,NULL,'[\"user-app\"]',0,'2023-08-10 21:53:10','2023-08-10 21:53:10','2024-08-09 16:53:10'),('e066c98e14604219caee4225efda04f8fd6a80dc22fc11baf8e886c973e96d84e45aeb7c7e1648fb',156,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:24:03','2023-01-25 16:24:03','2024-01-25 13:24:03'),('e06fa590dc66f2ccad4c1f0b8c117e6673d47c9f9477b19973b26e4bcb9cfcb54a37b801d7d4408f',2,1,NULL,'[\"user-app\"]',0,'2023-08-31 20:31:25','2023-08-31 20:31:25','2024-08-30 15:31:25'),('e07fb0c3f4eab8882a1f89227a65b5a9f3575c195192cf6699be8e88296d04f4c3e5a9dcf3c0cdd1',1859,1,NULL,'[\"user-app\"]',0,'2023-08-04 22:19:25','2023-08-04 22:19:25','2024-08-03 17:19:25'),('e0a3d183d161e043e89386d1a95514fb8145ba5cef59ac2b3ae2af47b246eeca98127a9a98419126',666,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:52:26','2023-01-25 14:52:26','2024-01-25 11:52:26'),('e0bc929e54764bece008794607880377b8aa939146e207a962958009c303e2880706f0dd90f0915f',1369,1,NULL,'[\"user-app\"]',0,'2023-08-03 20:24:40','2023-08-03 20:24:40','2024-08-02 15:24:40'),('e0bed2597616206bbfb7d084916d3150900d77e117f288d91df9ebf59db3d4baab9bee6e517dad62',1501,1,NULL,'[\"user-app\"]',0,'2023-05-25 15:01:32','2023-05-25 15:01:32','2024-05-24 10:01:32'),('e0c67778af7f59a134812ede40952ba99a710a955e02faa59ce40e8c9909086b9aa484a2c35d7c0c',1903,1,NULL,'[\"user-app\"]',0,'2023-08-22 04:46:53','2023-08-22 04:46:53','2024-08-20 23:46:52'),('e0c87ad0164157033b9f6abecd81501d0fd7ace7efe32d4ece58428084d85e7d31ca4f0c0a30b00f',1175,1,NULL,'[\"user-app\"]',0,'2023-03-21 10:25:57','2023-03-21 10:25:57','2024-03-20 07:25:57'),('e0cebf5afe66ba041c0ad1713f5e55594c13d56a3e41d8c9d072e57cfc8f559431deb49eea6e8658',941,1,NULL,'[\"user-app\"]',0,'2023-02-28 13:04:53','2023-02-28 13:04:53','2024-02-28 10:04:53'),('e0d1ff288c92f672d98de4968967a18b1b72ecaad6e11d9e631a271ae796edabb417dffbe8af4cfd',1796,1,NULL,'[\"user-app\"]',0,'2023-09-25 15:55:26','2023-09-25 15:55:26','2024-09-24 10:55:26'),('e0d670515aa4a1c4835a414d02037522576ae1dc9ea401ae0f5f932969e277ed93d0f4f60469d180',845,1,NULL,'[\"user-app\"]',0,'2023-02-02 12:53:39','2023-02-02 12:53:39','2024-02-02 09:53:39'),('e0ddf6b5127759b904fcb235c30b4b2d0c52bd8541319fcd2800a234600e75aeb5636bffe4fc630d',695,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:30:26','2023-01-25 18:30:26','2024-01-25 15:30:26'),('e0e3a86e24703d4d170f554be1490ee8389f16563c1d88953b1550a8905369a945bd65e7e66f126c',901,1,NULL,'[\"user-app\"]',0,'2023-02-10 22:41:21','2023-02-10 22:41:21','2024-02-10 19:41:21'),('e103711cc882791beabc7912d666bed205d3d07720bf324c34ab0542b671213aba3c929a5bfcc21f',130,1,NULL,'[\"user-app\"]',0,'2023-02-22 17:16:04','2023-02-22 17:16:04','2024-02-22 14:16:04'),('e1341f5ccb40c60ff95d6a914d0f0f4759904b48a3dd31646d71823bb6c0e49e0035b79032b9b475',1002,1,NULL,'[\"user-app\"]',0,'2023-09-13 16:38:07','2023-09-13 16:38:07','2024-09-12 11:38:07'),('e13fc3dd01692ae8b58df5a77806d57475334aef008c3bd4c5194653c5c6fc07c02753cfdc9cdcb6',2,1,NULL,'[\"user-app\"]',0,'2023-05-03 16:16:39','2023-05-03 16:16:39','2024-05-02 12:16:39'),('e149bb943a9ab0f55539bb1aefbb4dfdf3ce41118972a181d9c4abb78f29a4679286076629f67836',1350,1,NULL,'[\"user-app\"]',0,'2023-04-30 23:21:58','2023-04-30 23:21:58','2024-04-28 19:21:58'),('e163816fb90ebc93bc41ebb23961d00d77b6d7a8945577b1b72fb9eba99e7cdb22dd65fbefd6a1aa',242,1,NULL,'[\"user-app\"]',0,'2023-07-11 03:10:19','2023-07-11 03:10:19','2024-07-09 22:10:19'),('e1771a0ead39fd958fe95cfc742ed2e4ad9ef2ebf9fdd03ad083cdaa333f05e5cf105ff2fd89203e',1410,1,NULL,'[\"user-app\"]',0,'2023-05-28 17:16:39','2023-05-28 17:16:39','2024-05-27 12:16:39'),('e17c7a74b897aae1f1ed2007047e47274e546eeaccbc660857f9810d7380512288101edf858ab5fa',297,1,NULL,'[\"user-app\"]',0,'2023-01-31 00:19:49','2023-01-31 00:19:49','2024-01-30 21:19:49'),('e19190829793450a504b21da9dc0d34001b7d41c4980c862d642fbd6ca1438ad76895ced9a20a893',1653,1,NULL,'[\"user-app\"]',0,'2023-09-14 19:36:23','2023-09-14 19:36:23','2024-09-13 14:36:23'),('e1952e83f5a6c4691b30701557344c7d09e35c27132daafa68164ccd7c5e8afddbcd3e3501aa6f76',2,1,NULL,'[\"user-app\"]',0,'2023-07-31 16:05:17','2023-07-31 16:05:17','2024-07-30 11:05:17'),('e1bf1dbea455785ca058ecbd2d4780fe5b4ae0c840c294e9dfcf16c167c5af33ed5272936eb8424e',211,1,NULL,'[\"user-app\"]',0,'2023-05-27 02:14:25','2023-05-27 02:14:25','2024-05-25 21:14:25'),('e1cc2a5cafc9374339e3caedb85fb5c8117896e7c15e3520b8785e9aa188e03f05ba849ffd543f1a',2,1,NULL,'[\"user-app\"]',0,'2023-07-10 15:03:59','2023-07-10 15:03:59','2024-07-09 10:03:59'),('e1ce0ac4f2e772c5b6c6768f5b392b97760ea30c3784fe4e9248e43ce3122b59fccb9807aa125f2a',2,1,NULL,'[\"user-app\"]',0,'2023-06-26 10:02:22','2023-06-26 10:02:22','2024-06-25 05:02:22'),('e1d1de9ff1e6e0071c5d4b96a0407d19fdec07ed50c2dfd8a918d464a8e6a609a9079df652d84d87',1926,1,NULL,'[\"user-app\"]',0,'2023-08-28 17:48:26','2023-08-28 17:48:26','2024-08-27 12:48:26'),('e1e78bbb388ba4799e21ad3f1171aea698db1f9c7bdabd29698b7a5317980a134effc7330399db5e',1909,1,NULL,'[\"user-app\"]',0,'2023-08-23 14:07:25','2023-08-23 14:07:25','2024-08-22 09:07:25'),('e1faaa3ef3a4e8bcbf201c15caeb9cee77591fd4eb0ea97c0bde54d338c1a58ad9ea47c7803629ae',1959,1,NULL,'[\"user-app\"]',0,'2023-09-08 22:36:58','2023-09-08 22:36:58','2024-09-07 17:36:58'),('e1ff67f70892884cb3d47b23754a89b07be9ab746dc12e73c707c7ba71b480c9a158b3506620b552',1910,1,NULL,'[\"user-app\"]',0,'2023-09-28 11:23:49','2023-09-28 11:23:49','2024-09-27 06:23:49'),('e20d5a293a9d42bba4e4c722bbd0a996e7515f031ef279285758cc928637857b483fab7528646c86',1521,1,NULL,'[\"user-app\"]',0,'2023-06-01 21:35:23','2023-06-01 21:35:23','2024-05-31 16:35:23'),('e21e3695fd4363047ee27fac39f8892a98a2e4789f1b4f5c685cdb59e5e5e336f1da322ccef65a5d',682,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:46:42','2023-01-25 16:46:42','2024-01-25 13:46:42'),('e22c18239a05253e127783b5440e7ca6ebdc564c1e41120c809818cc681a77d40562482f52b56614',888,1,NULL,'[\"user-app\"]',0,'2023-06-19 17:18:58','2023-06-19 17:18:58','2024-06-18 12:18:58'),('e23ed74fb4a15f99d253454fbb60d29ef7c67dbcd5e05b29f8f98a792980e38f7c9bdf1c117b4a7e',812,1,NULL,'[\"user-app\"]',0,'2023-09-08 12:35:44','2023-09-08 12:35:44','2024-09-07 07:35:44'),('e25e906eccb0fc28b9bfc4fba595f97e472120da54107204ecee294e0de32a81c1aaf491f493c203',1165,1,NULL,'[\"user-app\"]',0,'2023-04-11 18:59:15','2023-04-11 18:59:15','2024-04-10 14:59:15'),('e26f614ef9411ff34a9d8f8b57c5580ef19d20cbbd0eff1daf427532bad3ca46661ddd242c809a7b',2,1,NULL,'[\"user-app\"]',0,'2023-06-14 22:24:41','2023-06-14 22:24:41','2024-06-13 17:24:41'),('e29f778a2a5da0fee2a956db21778a93f2fdc296736dbc0f04a5098436c19e7bc90b7bb149d82065',993,1,NULL,'[\"user-app\"]',0,'2023-02-19 19:21:38','2023-02-19 19:21:38','2024-02-19 16:21:38'),('e2cccd66c74c04290f4f1f4bd47c4c5576434687ad2160f83f9aca6881348f7fee604192999ccaa2',2,1,NULL,'[\"user-app\"]',0,'2023-09-20 16:57:00','2023-09-20 16:57:00','2024-09-19 11:57:00'),('e2e1fd8a7668c8c9b3e697d65da1cc33690c8d3e28b71a36e6d6bfdbab15fdf502cea4ae8343f5d4',547,1,NULL,'[\"user-app\"]',0,'2023-01-25 10:17:51','2023-01-25 10:17:51','2024-01-25 07:17:51'),('e2e23da9547843fcc8f8a76d57b2d8b2be3816fd8556de66375910477cadf6887d5b1ac8d662baeb',457,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:42:01','2023-01-25 17:42:01','2024-01-25 14:42:01'),('e2e2edc76cf81310f3c8c6082bb91be7f804d93fc35193f68953a2b40fd04537ed6260876e82b420',2,1,NULL,'[\"user-app\"]',0,'2023-02-09 19:33:02','2023-02-09 19:33:02','2024-02-09 16:33:02'),('e2f91a00bbae3f6a274d45d1fa7678c2fa618c2d82e11da412985d9acf44caa68aae8c0f732dfdc5',1003,1,NULL,'[\"user-app\"]',0,'2023-09-30 15:39:56','2023-09-30 15:39:56','2024-09-29 10:39:56'),('e2fa4c2da012756a36003302975e367f569097cda8241238d48c5e81cda5bf591db01f19009e2147',1295,1,NULL,'[\"user-app\"]',0,'2023-04-21 17:23:32','2023-04-21 17:23:32','2024-04-20 13:23:32'),('e2fe62f1dea6948e53ca38a5b3301920831ddd0eebc48978902f886799087256d07ccafeb31019c8',101,1,NULL,'[\"user-app\"]',0,'2023-08-02 19:11:05','2023-08-02 19:11:05','2024-08-01 14:11:05'),('e30c1d2b2f4dd154a84f5b31e588855982bd460bb18be13b9598727f6ea5b2de6d550f80c9ea2710',815,1,NULL,'[\"user-app\"]',0,'2023-09-30 02:58:06','2023-09-30 02:58:06','2024-09-28 21:58:06'),('e30dd014a5c3ce7900972d42ade96374483ecb640a6e0e6c9c9a8e2b621a676f720c5f5b3ff606d4',2,1,NULL,'[\"user-app\"]',0,'2023-06-23 22:17:13','2023-06-23 22:17:13','2024-06-22 17:17:13'),('e313516788f8d6370e89a8c4e938c9f3c127c64261ce40584f7efefed2cbe16ee303df5b8a5ba01e',920,1,NULL,'[\"user-app\"]',0,'2023-02-20 16:59:23','2023-02-20 16:59:23','2024-02-20 13:59:23'),('e316de1b385f278d3f7c0199bce2db8429dfd4929bfdf2aad38def6ffd25d2934b1ffff4324eb0de',1004,1,NULL,'[\"user-app\"]',0,'2023-02-20 21:28:03','2023-02-20 21:28:03','2024-02-20 18:28:03'),('e3401a89bf423fe26172b543345060e8293d39d956f8c3fa9ff563bd484d366d2dd43d8f144e55af',2082,1,NULL,'[\"user-app\"]',0,'2023-10-03 16:18:38','2023-10-03 16:18:38','2024-10-02 11:18:38'),('e35aa5c78a300a165ef95a47edfe27fbf7cc0aae6551d236bc1654488b0d61a4dbe5fe382d88947a',2,1,NULL,'[\"user-app\"]',0,'2023-03-28 18:08:21','2023-03-28 18:08:21','2024-03-27 15:08:21'),('e3a613a54bfd02f413d73891317c23dfddb9325979c45e27593a6d785c4b9be40478b5e84a66f927',2,1,NULL,'[\"user-app\"]',0,'2023-08-06 10:28:36','2023-08-06 10:28:36','2024-08-05 05:28:36'),('e3a6f8e8f7243ea956e6523121dd89dab38733d17635fad9add75fa0cc0d51ddf206e68df0ec9a72',2,1,NULL,'[\"user-app\"]',0,'2023-09-03 06:09:31','2023-09-03 06:09:31','2024-09-02 01:09:31'),('e3af52fa73f564a6d78d6b3a88919fd6d34aca2e70ae66d80b98fe8fce14dbe2e2ae266d3a9e331c',1944,1,NULL,'[\"user-app\"]',0,'2023-09-03 15:30:51','2023-09-03 15:30:51','2024-09-02 10:30:51'),('e3b885994f3d2dd90cc72c14d442836cedab97def25c9974fbc472f080763c6e87de71dac31ddc3a',2,1,NULL,'[\"user-app\"]',0,'2023-07-26 01:39:06','2023-07-26 01:39:06','2024-07-24 20:39:06'),('e3b97bf857ab4290a61fcf646a37e2a01d75181bcd192714d93ad02a294f56876013e4843f285fc7',1177,1,NULL,'[\"user-app\"]',0,'2023-03-29 13:03:29','2023-03-29 13:03:29','2024-03-28 10:03:29'),('e3cbcca8e65795458f6f96d5963465339f3253868f1668e0a253b6ae51633960661d56263234177e',1410,1,NULL,'[\"user-app\"]',0,'2023-08-24 14:36:56','2023-08-24 14:36:56','2024-08-23 09:36:56'),('e3dc69bb431e600ca19ddfe3de2d9ae79f67d19d366f903d5b830525086c375d752c53d322292d68',1077,1,NULL,'[\"user-app\"]',0,'2023-02-25 12:59:46','2023-02-25 12:59:46','2024-02-25 09:59:46'),('e40419402f279682cfd726d37c43867b323a17243fe7e7cbb649943606a36e6e6641f39ed11ae61e',1011,1,NULL,'[\"user-app\"]',0,'2023-03-01 19:52:10','2023-03-01 19:52:10','2024-02-29 16:52:10'),('e405627d4b8c9b5ace03eac4150c2bbb14538ed59da16b482854df80ff9fc2133807c3334e1e9ac3',1985,1,NULL,'[\"user-app\"]',0,'2023-09-16 20:52:09','2023-09-16 20:52:09','2024-09-15 15:52:09'),('e4094f12e6d301c5ea4b45f8b42a3beb5a26ade3e2484015aa65e6d6a4f5b424ddf6516130d344d1',589,1,NULL,'[\"user-app\"]',0,'2023-01-28 17:42:45','2023-01-28 17:42:45','2024-01-28 14:42:45'),('e415058071a84c9a0b293710330b6c7bd275eb8ae912c1b1f40666ba529ae12d31aa0efd0078bd48',1757,1,NULL,'[\"user-app\"]',0,'2023-07-14 01:55:46','2023-07-14 01:55:46','2024-07-12 20:55:46'),('e41f7ea765189968e2e4ba08b4973cd1e724262fcf4b4c00e02929e7d78649f0d76277c537ba9662',1666,1,NULL,'[\"user-app\"]',0,'2023-06-29 15:12:28','2023-06-29 15:12:28','2024-06-28 10:12:28'),('e42e5ad14e7c1ad8b560bc47076290026b49d769aafc5cce58944841c02d4a72c7e6d0de2a8c1d3a',2,1,NULL,'[\"user-app\"]',0,'2023-07-10 23:02:02','2023-07-10 23:02:02','2024-07-09 18:02:02'),('e435c5d271e1041653e6758830e7c9839f5ae05b2aae97d9fff8a02ddc19ab68fb1c95202b2ad082',1012,1,NULL,'[\"user-app\"]',0,'2023-07-17 23:11:34','2023-07-17 23:11:34','2024-07-16 18:11:34'),('e45efb1f64cbb0bb3ac6887256d517968669cf76dfb75f6f6d92ea401591632942ca1206495fd49d',2097,1,NULL,'[\"user-app\"]',0,'2023-10-05 00:15:42','2023-10-05 00:15:42','2024-10-03 19:15:42'),('e46668f64086af173a84d0f06e466effb3dab3422c841d5ff26d308ae2833a90475d6d9c1aa50293',767,1,NULL,'[\"user-app\"]',0,'2023-07-03 15:58:14','2023-07-03 15:58:14','2024-07-02 10:58:14'),('e471d23456991ab619702dfc5fde321b84fb6de714f5b29f4f197c3b60920a18631367ce1af61adf',1951,1,NULL,'[\"user-app\"]',0,'2023-09-05 14:55:04','2023-09-05 14:55:04','2024-09-04 09:55:04'),('e490b447eb513566aacaeadbbca0e577beabb1ba479a7656d373756362709d7866ad8616f065c2ca',687,1,NULL,'[\"user-app\"]',0,'2023-02-23 22:57:21','2023-02-23 22:57:21','2024-02-23 19:57:21'),('e4b194d92c711e63f30e56b7df64041e31e42b19a4eaba9aae32137ac3ac5d5865a48789a44b7d5c',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 19:23:46','2023-01-26 19:23:46','2024-01-26 16:23:46'),('e4b2b77255b6e7352d6fa6f1734b04e7d598faa92e298317ec0fd9b8fe01866c80c5e36e9f6f5892',1165,1,NULL,'[\"user-app\"]',0,'2023-04-19 16:20:56','2023-04-19 16:20:56','2024-04-18 12:20:56'),('e4c2dd246d62aaee427eb13a65aa542ab9728e021dff5237a80387728cbee477b92dec33b4624bb2',942,1,NULL,'[\"user-app\"]',0,'2023-03-08 00:44:08','2023-03-08 00:44:08','2024-03-06 21:44:08'),('e4c8bf3d34b6c5aee8c15074b2deb15d3d168a0f76c29cae6adbf222f2a2d819728d9163006a0984',1436,1,NULL,'[\"user-app\"]',0,'2023-05-17 12:59:33','2023-05-17 12:59:33','2024-05-16 08:59:33'),('e4ce9c4515751440fd1dab512854b1cbb6c1e9bae2b97dc8142b58847398b2ae9d849e3cd18fcc6a',621,1,NULL,'[\"user-app\"]',0,'2023-01-27 00:15:48','2023-01-27 00:15:48','2024-01-26 21:15:48'),('e4db07af5677e7872c02195051a7a12cfd9659ae072c5cc858a16ce13e306de9aa4b339f56bd9674',2,1,NULL,'[\"user-app\"]',0,'2023-07-08 19:00:01','2023-07-08 19:00:01','2024-07-07 14:00:01'),('e4e0e4ca927b3ba6aab59073559524d2d06b49d886ddd88afa7ffd2d2d90db7ac6a348566b8e0357',870,1,NULL,'[\"user-app\"]',0,'2023-02-07 14:16:26','2023-02-07 14:16:26','2024-02-07 11:16:26'),('e4e83ebb51a9ac3199a2336d71b1a3e8c7c385be48b936248249807841c06b050f2b80d3ad2436bb',802,1,NULL,'[\"user-app\"]',0,'2023-01-30 01:17:45','2023-01-30 01:17:45','2024-01-29 22:17:45'),('e4edf71d446fbba8132fc28ad00d8ccb058aa6c55a74ad594949dd9d2bbba9e016efb4f15f28c95c',1293,1,NULL,'[\"user-app\"]',0,'2023-07-06 13:42:53','2023-07-06 13:42:53','2024-07-05 08:42:53'),('e506d1994dceb2e2c72ee9a89130c5fc6f62138e2ca06c76be4679d53682555c4bbb8d70b8bb80e6',1480,1,NULL,'[\"user-app\"]',0,'2023-05-18 14:29:32','2023-05-18 14:29:32','2024-05-17 09:29:32'),('e509734c0e88333f6a1ef93efaca639ab5f142c3337d4fe0b36a99723b476b3596bf6228cecc0281',904,1,NULL,'[\"user-app\"]',0,'2023-02-11 10:47:26','2023-02-11 10:47:26','2024-02-11 07:47:26'),('e51481fda32fa15352f79cafe7283b0d8d69728dff577b7b10a0897049d23454a9429b693b9e91a6',1213,1,NULL,'[\"user-app\"]',0,'2023-03-29 22:05:26','2023-03-29 22:05:26','2024-03-28 19:05:26'),('e52e60f569527172c4c5190e145b8be561abe02fb7832f530b1eacbafc17600650d7485533c96ed9',415,1,NULL,'[\"user-app\"]',0,'2023-07-15 13:40:30','2023-07-15 13:40:30','2024-07-14 08:40:30'),('e52f791f03d54acf8d1454266353d0de8e6825aa8aa0ebc21adcb9c62b49fa58f87737f55d65ba98',167,1,NULL,'[\"user-app\"]',0,'2023-01-26 13:42:50','2023-01-26 13:42:50','2024-01-26 10:42:50'),('e53a7b029e3678d13882b24c0f345a186d17697f26e7f796dfe708f65f511ee24e5ccd5a166ea872',937,1,NULL,'[\"user-app\"]',0,'2023-02-16 00:46:15','2023-02-16 00:46:15','2024-02-15 21:46:15'),('e54fe6609c1e35e06c2bdcb72fcf2e8e7034ab654956197e7e81a7ae3d56c60a308b4cb4b9f27012',1234,1,NULL,'[\"user-app\"]',0,'2023-04-06 02:04:59','2023-04-06 02:04:59','2024-04-04 22:04:59'),('e586835b8dd44740715e6b86df08a2f28815748c5bce4bcdae48ad1d7b567a1dab5e068d5064f4b7',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 17:05:14','2023-03-29 17:05:14','2024-03-28 14:05:14'),('e5885c2fd2d2370eebc21c63c87781e9f9e923c366bbb9f50461ed2a6ea0e0ac4e6b0ed657f1743d',55,1,NULL,'[\"user-app\"]',0,'2023-02-14 18:39:15','2023-02-14 18:39:15','2024-02-14 15:39:15'),('e589447151365a76e197ad80597ee298deacb169dbec8c454d406d645803e0c14b0c0e33cc37438c',1364,1,NULL,'[\"user-app\"]',0,'2023-05-04 03:28:26','2023-05-04 03:28:26','2024-05-02 23:28:26'),('e58ff18c5c39a5b7c7bd5091ea02838585857ec98b8cff716c032bfc4df0a385e07fd62cbd8cb0ff',408,1,NULL,'[\"user-app\"]',0,'2023-04-13 12:38:51','2023-04-13 12:38:51','2024-04-12 08:38:51'),('e59365a57d8286d4a681b59286b0c046fe94b4667aaab1fad7e04aeb2530db366919532905cc5a53',722,1,NULL,'[\"user-app\"]',0,'2023-01-26 03:19:59','2023-01-26 03:19:59','2024-01-26 00:19:59'),('e59e016d0fc2ef2c0538618fd8393c254f0e3497ba4d211558148f4302b350e5d756a19ffae406a5',707,1,NULL,'[\"user-app\"]',0,'2023-08-01 16:46:20','2023-08-01 16:46:20','2024-07-31 11:46:20'),('e59f66bb80e230221ccf716bb38d7aebc88b8a5815debd3611231f6a6074271333f4ccd272c0faea',991,1,NULL,'[\"user-app\"]',0,'2023-02-23 16:15:41','2023-02-23 16:15:41','2024-02-23 13:15:41'),('e5aee51b006027a0c94ef0c9c51ca9b4db583b32d0ef0c9fe0c1878ad9359f4052a1a35827b6a146',131,1,NULL,'[\"user-app\"]',0,'2023-09-18 13:56:44','2023-09-18 13:56:44','2024-09-17 08:56:44'),('e5bea583dd257aeecec817248a58ebd3f9a38d4fa62eb378e924fb3c7c319edf34d0bbdedc98539d',1145,1,NULL,'[\"user-app\"]',0,'2023-03-13 00:04:45','2023-03-13 00:04:45','2024-03-11 21:04:45'),('e5c006884b5e80848874a59d3553091b2aeaf9b0b9dd4498dca911f7f2983848c655011270fc354c',2,1,NULL,'[\"user-app\"]',0,'2023-06-22 04:27:47','2023-06-22 04:27:47','2024-06-20 23:27:47'),('e5d149ef914094ab566bfe5e1468cb4f2b99d1847b550216b82924a7c170c6eda024599590caf964',2,1,NULL,'[\"user-app\"]',0,'2023-09-02 14:59:30','2023-09-02 14:59:30','2024-09-01 09:59:30'),('e5e04f4f00df0053e9971b4d05d2ecf7880684eadec28c6b068a2fa02275f855843a5ea3513fad59',2,1,NULL,'[\"user-app\"]',0,'2023-04-29 18:19:55','2023-04-29 18:19:55','2024-04-28 14:19:55'),('e5eb0995eafac9df788c3e3372e608c92c1350d5e40943e9faa73a7d856de1cac070a9c411a044a7',298,1,NULL,'[\"user-app\"]',0,'2023-03-03 10:00:18','2023-03-03 10:00:18','2024-03-02 07:00:18'),('e6076f8f507b8945c35fd47150120b2a8bd0ecc09b342a5356728880cb673f9cea4e91e759bf741a',2,1,NULL,'[\"user-app\"]',0,'2023-03-12 17:13:17','2023-03-12 17:13:17','2024-03-11 14:13:17'),('e607c4c0413ebd74c7bca2323d003fd783a51663a29b72bfd4b11e2b7052d6905c4b87525f054851',868,1,NULL,'[\"user-app\"]',0,'2023-03-09 21:24:57','2023-03-09 21:24:57','2024-03-08 18:24:57'),('e625a1225d7249122dad3631e1b3d74db811dc43069a12b4c5ca2cb9ddfd1ccb7beada87c8245d54',961,1,NULL,'[\"user-app\"]',0,'2023-02-27 20:10:58','2023-02-27 20:10:58','2024-02-27 17:10:58'),('e629424a706d5230beb4143997ff19f343614a26df8fc25df698e03f9e0653e13c7a8b4b04cdffe1',1834,1,NULL,'[\"user-app\"]',0,'2023-07-29 07:39:52','2023-07-29 07:39:52','2024-07-28 02:39:52'),('e62d2d801506c0c128e3b52f030472235d96e34676f84b4655bb6c35755b3a919cbeaf31c84d1239',686,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:08:05','2023-01-25 17:08:05','2024-01-25 14:08:05'),('e62e729add7b0bc5079a8ff2eef296ce658e0079ed7b9256bedf31fb39b473db8281926eded72a0c',1319,1,NULL,'[\"user-app\"]',0,'2023-04-23 22:13:30','2023-04-23 22:13:30','2024-04-22 18:13:30'),('e63757e8a65e5037fcb4ac5f021db19e5bc2f7b3609d54fc3098274d92a228eb2952d3042f216105',1407,1,NULL,'[\"user-app\"]',0,'2023-05-16 19:48:08','2023-05-16 19:48:08','2024-05-15 15:48:08'),('e64b79c38ce29377696a734d568760a6e8772d997e2167d9a0ab0a78002ddfe2b4212e872ec3185d',160,1,NULL,'[\"user-app\"]',0,'2023-10-07 03:04:49','2023-10-07 03:04:49','2024-10-05 22:04:49'),('e679445a69c6321e8b72108f82c36171d81e3456b62e4911a8bc9f0d969c3b9fd360b2f8cdb7fd7c',2,1,NULL,'[\"user-app\"]',0,'2023-09-10 15:03:16','2023-09-10 15:03:16','2024-09-09 10:03:16'),('e68a768492ec23d1c94aa07540d2c7bc137a64352eaba23fd67b07294250ec75c999386564489cba',1649,1,NULL,'[\"user-app\"]',0,'2023-06-27 01:57:37','2023-06-27 01:57:37','2024-06-25 20:57:37'),('e68a80ccf3f71217af40b3af926af691c9caf50a4580e7af3a5f74c31730bed82cbe9b71c55c343f',1133,1,NULL,'[\"user-app\"]',0,'2023-03-29 18:38:06','2023-03-29 18:38:06','2024-03-28 15:38:06'),('e68c5a6b7bd1b00edaa7156fc7f903675ef37d3eecf3573d8f7ef1829efff02b990c7fa05adce018',82,1,NULL,'[\"user-app\"]',0,'2023-03-29 20:58:11','2023-03-29 20:58:11','2024-03-28 17:58:11'),('e6afefbe1ad19c3cc2da35d2f9d93342e884cd3b38fad44c063fea9781eefa8fb1eb5c17891aa65b',925,1,NULL,'[\"user-app\"]',0,'2023-02-14 21:19:31','2023-02-14 21:19:31','2024-02-14 18:19:31'),('e6b08aaff86f313f8f842533da92bec4c5ab720edfefce0f66fbc4ffae67cd15f4d5a3cb7473843c',235,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:18:20','2023-01-25 16:18:20','2024-01-25 13:18:20'),('e6b0dddcb589acb832ce9cfb56f96c51b3d2c9c66beecad0e4f53ba4e1678ac5edf716b07ccdc807',1685,1,NULL,'[\"user-app\"]',0,'2023-07-03 02:48:29','2023-07-03 02:48:29','2024-07-01 21:48:29'),('e6ba37a00b162550fcf285ab3fb418bdb4bc2b755c12473d1516c95c90060c59f912df0cf90e9427',618,1,NULL,'[\"user-app\"]',0,'2023-07-05 15:04:12','2023-07-05 15:04:12','2024-07-04 10:04:12'),('e71f4068f5c561c4e3a7b58b9a30fb44fc98697dd403f9d0869b78f6cee325f8536da69b07c0242a',1160,1,NULL,'[\"user-app\"]',0,'2023-03-15 23:39:55','2023-03-15 23:39:55','2024-03-14 20:39:55'),('e7252458c3f0858539020f826cc907d8aee262f554137b65eb876ed6bd0ea477259c8a74a1f4347e',2,1,NULL,'[\"user-app\"]',0,'2023-08-01 14:32:06','2023-08-01 14:32:06','2024-07-31 09:32:06'),('e72d20bbb09ff7d5c25db5ac811e2774ba2e22d7cdde1becc9c0b8ea85af59cbd6d84e42baf6bad1',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 03:11:19','2023-09-21 03:11:19','2024-09-19 22:11:19'),('e7433d0e7b7a6d2052b5511e6574a44191034a03ef0c530d054c9116684d4717917170d74027a0f0',72,1,NULL,'[\"user-app\"]',0,'2023-04-11 23:30:08','2023-04-11 23:30:08','2024-04-10 19:30:08'),('e75fd588a5be88b194267c06ebbcf178254e22163d6846cfb349e0e7c9d8633afa199f50a3d28068',273,1,NULL,'[\"user-app\"]',0,'2023-01-31 13:40:19','2023-01-31 13:40:19','2024-01-31 10:40:19'),('e76c004e7ae84ea5f1ce5d11ffc5bdc0ff19afd63556556b7b80e786d676d1268eb2cfc24c8ecc30',987,1,NULL,'[\"user-app\"]',0,'2023-02-19 13:17:05','2023-02-19 13:17:05','2024-02-19 10:17:05'),('e7700bfbea4131956bcf140dd2de067354bac3a557e47535c898f4320206c3c2e532228897785700',2,1,NULL,'[\"user-app\"]',0,'2023-08-06 02:57:25','2023-08-06 02:57:25','2024-08-04 21:57:25'),('e77e5fef7c1e2353c9428aaede679da1def90605bd989be4ee04aea95b8d0ef5ecd9db3f44a5e962',1539,1,NULL,'[\"user-app\"]',0,'2023-06-13 21:24:27','2023-06-13 21:24:27','2024-06-12 16:24:27'),('e780f8fb24e7c6e11013854fa7f9a9ccd331b85559939dcab98ecc1feddd0ab43085586c5cd08c2b',512,1,NULL,'[\"user-app\"]',0,'2023-01-31 00:53:52','2023-01-31 00:53:52','2024-01-30 21:53:52'),('e782b2c31f031ca09849afc731bcce12f4b74a36de21c64051a29139177fb73082d5971a601bc7dc',1550,1,NULL,'[\"user-app\"]',0,'2023-06-10 04:37:29','2023-06-10 04:37:29','2024-06-08 23:37:29'),('e78e7c02e3c9380a60d7b00a744fce75f8755df44e70e485d447edc52d7df042d1d388140d1c5c74',1475,1,NULL,'[\"user-app\"]',0,'2023-05-17 22:05:30','2023-05-17 22:05:30','2024-05-16 17:05:30'),('e7958fbd9d8251f1eb09a63e6da8d778c8635075aa903df97147119768af74b45b55b7d7bdd9fde6',408,1,NULL,'[\"user-app\"]',0,'2023-09-19 20:25:58','2023-09-19 20:25:58','2024-09-18 15:25:58'),('e7b35ff62e25abedc929d953fde8537d5531dd66dacef0e291791cd57da173d55dc789101f7c4681',1620,1,NULL,'[\"user-app\"]',0,'2023-07-13 15:35:28','2023-07-13 15:35:28','2024-07-12 10:35:28'),('e7c71e1470b9a8c8b678b189f51b3a2716ef288c9c32c2e032d8846de72d45066be8533c10686a03',435,1,NULL,'[\"user-app\"]',0,'2023-02-01 15:43:51','2023-02-01 15:43:51','2024-02-01 12:43:51'),('e7c9994c03e787782a7a1c3607d5a929a6307e0fe469220ad1d951f25c4442270ba645256c96c592',2,1,NULL,'[\"user-app\"]',0,'2023-07-25 19:59:30','2023-07-25 19:59:30','2024-07-24 14:59:30'),('e7ce012e8118680b42b14a37ac56bb1178b854784298590d9c9c57185831ce0ddeedae5899563461',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 00:55:45','2023-09-04 00:55:45','2024-09-02 19:55:45'),('e7d12b8388c2d30d801da40ce3ef7c23eb542c4970455c6565144c2033a5f7a4d3e34bdbd6241d02',301,1,NULL,'[\"user-app\"]',0,'2023-02-05 11:54:22','2023-02-05 11:54:22','2024-02-05 08:54:22'),('e7d8b831686cbdb3a8eee120ab0b10efaa4f5f26e97912a63850e1ed244aab1d267a0b5361c06666',2,1,NULL,'[\"user-app\"]',0,'2023-07-16 22:56:41','2023-07-16 22:56:41','2024-07-15 17:56:41'),('e7ef7af288cb8009d95679d55981865e6c0450886f7ef19ae3c47818c27a9fbe6576ac4994deeb12',945,1,NULL,'[\"user-app\"]',0,'2023-09-28 21:06:01','2023-09-28 21:06:01','2024-09-27 16:06:01'),('e7fff49e67ebae10694bc02a37bc76d85a9cf0bf21efa758a5581c16bb89b771383a8d60d714d63c',1428,1,NULL,'[\"user-app\"]',0,'2023-05-11 18:25:27','2023-05-11 18:25:27','2024-05-10 14:25:27'),('e847cf9b1795a1f7347baeba0f2a213002c00fe1cf1f4c9225034ec5debd15357fad29c2c0702894',368,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:00:42','2023-01-25 11:00:42','2024-01-25 08:00:42'),('e85ffbe455c0f607e57e9edb578cb770daeaf5acfc9a58cb0350d0e3cb33112e9ec466a4301ded6b',1428,1,NULL,'[\"user-app\"]',0,'2023-07-08 19:04:17','2023-07-08 19:04:17','2024-07-07 14:04:17'),('e8862431aefc93bce5fdb30fa106a05a04823a079cd18a89c173ca840c4b4e38586c94bc8fdf8172',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 01:17:20','2023-09-04 01:17:20','2024-09-02 20:17:20'),('e89b840d6a0d48c686c40a1492a218aa427c77782006250e31f0f8f8f72e1351f7ecb5c5d0cd0888',1760,1,NULL,'[\"user-app\"]',0,'2023-07-14 17:05:23','2023-07-14 17:05:23','2024-07-13 12:05:23'),('e8ab4a045da8a0d8c9fa3ed30db9e04af294cad0f539ae49f9e0a55b5453d05eb7a0358baad0be8e',2,1,NULL,'[\"user-app\"]',0,'2023-03-13 00:01:48','2023-03-13 00:01:48','2024-03-11 21:01:48'),('e8abfd261e0f3dde0288dcce08ea0ee3fc4fb34facd415635028f65344937a7c25ec8eef0babe29b',1172,1,NULL,'[\"user-app\"]',0,'2023-03-18 17:12:22','2023-03-18 17:12:22','2024-03-17 14:12:22'),('e8c3867f57fae5b8283a0072bd2362c2d948567f0ef6f773af4658e17d7c33a8723439f1f5eb2d5c',778,1,NULL,'[\"user-app\"]',0,'2023-01-28 16:26:54','2023-01-28 16:26:54','2024-01-28 13:26:54'),('e8d70ef0d850b307b76c563a55151c4cbdf98526cd67df493cd4903516bb4ab8d4a975e3d224672e',2,1,NULL,'[\"user-app\"]',0,'2023-09-21 22:53:18','2023-09-21 22:53:18','2024-09-20 17:53:18'),('e8ecf444874d83bb73096479a4b599162271268a4de5b9ecd924c44dc5d2a6b129569071c5e53ecf',2,1,NULL,'[\"user-app\"]',0,'2023-02-05 19:56:41','2023-02-05 19:56:41','2024-02-05 16:56:41'),('e8effb2c21cd625475e8d4deafa0ea8308d6a8d67451adaae4006d0fb148597036408b1ba88176ef',2,1,NULL,'[\"user-app\"]',0,'2023-02-11 17:13:24','2023-02-11 17:13:24','2024-02-11 14:13:23'),('e90b2d065bfb443394a5b86562a27cabec749f8f9358b63699e18b3cd3a53aed6b00fb06052994dd',1559,1,NULL,'[\"user-app\"]',0,'2023-06-13 18:53:23','2023-06-13 18:53:23','2024-06-12 13:53:23'),('e90f7790b19c40a1352076918fbb0667a289994f9a4bbb86650e51adad3a6d230debe2241c23730c',248,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:40:45','2023-01-25 11:40:45','2024-01-25 08:40:45'),('e93792ff584065ef9611a33e357d0965b0401d0faa69c8fb819f09b76f84846ad538df49904243d3',2,1,NULL,'[\"user-app\"]',0,'2023-07-06 17:19:09','2023-07-06 17:19:09','2024-07-05 12:19:09'),('e939904f92402881f14524445fbe712188d4fc270664e67c41757af814af2b26f35e4d9176011d97',1838,1,NULL,'[\"user-app\"]',0,'2023-07-30 20:17:37','2023-07-30 20:17:37','2024-07-29 15:17:37'),('e93d284e8da6340fad5e141a1cb9b783fb14ad8d9432bc262dcaa602b078ba8d50d2dcc4e16cfed8',908,1,NULL,'[\"user-app\"]',0,'2023-09-24 00:06:56','2023-09-24 00:06:56','2024-09-22 19:06:56'),('e947c1bc4a797b22da021463fdc4981c587bb48406c603b43d77de632456c7f66187624b3bb3c63a',1855,1,NULL,'[\"user-app\"]',0,'2023-08-03 14:54:32','2023-08-03 14:54:32','2024-08-02 09:54:32'),('e94e29eaedc1697c80b7ddd9afa60eb9cac4cb7aeb79f9e608ccc147cfa2e4245b6d84fb29606fb6',1611,1,NULL,'[\"user-app\"]',0,'2023-06-21 15:20:30','2023-06-21 15:20:30','2024-06-20 10:20:30'),('e96628798706c155c67922034abd422a0603b5effe49c5a8c4205d49a5168933b1a294f0ad4d5920',1420,1,NULL,'[\"user-app\"]',0,'2023-05-15 13:13:50','2023-05-15 13:13:50','2024-05-14 09:13:50'),('e98d12192180245e00fbc0480a88b544cdacfcd978fbe825aa8efde35373e14317d2a6e42a6b320c',2,1,NULL,'[\"user-app\"]',0,'2023-05-08 23:08:34','2023-05-08 23:08:34','2024-05-07 19:08:34'),('e9a30fb219e386c4cbc5d353fdfd8d6d18d279e3be1207bd9b8a8d238cc1651282905e08ed7f3e63',2,1,NULL,'[\"user-app\"]',0,'2023-03-12 22:28:23','2023-03-12 22:28:23','2024-03-11 19:28:23'),('e9a31188056fa128427c64c06fbec179330bac85dc82fe51fc1a7467e39e10b25dbc897bbaa30906',1527,1,NULL,'[\"user-app\"]',0,'2023-06-04 20:40:57','2023-06-04 20:40:57','2024-06-03 15:40:57'),('e9b73e0bd5a42a2bacdbe3124ecbe4468e38d1a7a1b9d6e88630e34a38fff5f70bd27a703ef09231',1065,1,NULL,'[\"user-app\"]',0,'2023-02-24 02:38:36','2023-02-24 02:38:36','2024-02-23 23:38:36'),('e9b7b0a25b8f5900ee045331aad2d535c361833bd3a82e092ea14caef3d38ce5baeec20c59230412',1282,1,NULL,'[\"user-app\"]',0,'2023-04-30 12:09:00','2023-04-30 12:09:00','2024-04-29 08:09:00'),('e9c8df0c0c89c36e22fd22cd1daa3177fcac6c80754592f2cef4719002bff612dbb2426b015b44e2',2,1,NULL,'[\"user-app\"]',0,'2023-01-29 13:16:32','2023-01-29 13:16:32','2024-01-29 10:16:32'),('e9e65e0c971cbd2afe902e91de3ae77d27503d1ba8ac8689fbf26a270d2795c4b4352db8230b9262',70,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:31:39','2023-01-25 11:31:39','2024-01-25 08:31:39'),('e9ef4c7a4dcd73e08daf83ca37c8b22d019e0ff7c975d4728787a73b6780f5c861080262cc07f06b',2065,1,NULL,'[\"user-app\"]',0,'2023-09-28 01:21:45','2023-09-28 01:21:45','2024-09-26 20:21:45'),('ea02f8a796860e14ad6bc26f87e9e93be7d92e9ebb40e57f9cae99e043b077b7747d74436183d806',267,1,NULL,'[\"user-app\"]',0,'2023-04-06 10:36:53','2023-04-06 10:36:53','2024-04-05 06:36:53'),('ea0e1b391cca7f4cc0cb484147437453753883783de0da76b14a3ec7d8ea091515015c003e35d42a',1055,1,NULL,'[\"user-app\"]',0,'2023-07-05 17:14:57','2023-07-05 17:14:57','2024-07-04 12:14:57'),('ea2eef78bb6aa89f0721b3766d926c4b53e0dcd80b016d7ebdd454f5ae19c79c3386ea74a1cb8fcc',1196,1,NULL,'[\"user-app\"]',0,'2023-03-25 18:00:44','2023-03-25 18:00:44','2024-03-24 15:00:44'),('ea369f4a0595dd0311f59362e7a31600a173ab44f9cbd216b77cbce5f6c28fff0b5e9e45cf5fcf7f',2,1,NULL,'[\"user-app\"]',0,'2023-03-31 12:54:02','2023-03-31 12:54:02','2024-03-30 09:54:02'),('ea55e86454965e4f337b2c8cca8353b6d5f5aefebe06bd5b82b3ab0902189c4517e7a7768b5dbfca',1243,1,NULL,'[\"user-app\"]',0,'2023-04-09 19:47:03','2023-04-09 19:47:03','2024-04-08 15:47:03'),('ea56aa30c23703c153e2ba254c1c597394a588590c2bc5e285bce060113f20d74833b93662b72545',791,1,NULL,'[\"user-app\"]',0,'2023-01-29 00:10:01','2023-01-29 00:10:01','2024-01-28 21:10:01'),('ea64027fcfa65b4c34fdbb5ec9a5283edc39a483abc8dca4060d2a787cef3ccb1eeae4e395f13e46',153,1,NULL,'[\"user-app\"]',0,'2023-09-17 20:44:27','2023-09-17 20:44:27','2024-09-16 15:44:27'),('ea727b91a27d6adf049dddceb8c5cd8069ec1048f7e15c2cbbb70f5accb403c7bb0977e0448bcf0a',2,1,NULL,'[\"user-app\"]',0,'2023-06-15 21:58:14','2023-06-15 21:58:14','2024-06-14 16:58:14'),('ea794004532d3dda618edd141d7fdaadf2270dc62c957c1dd461dbee9fda051bc29c257ced0177c1',2,1,NULL,'[\"user-app\"]',0,'2023-06-03 21:10:14','2023-06-03 21:10:14','2024-06-02 16:10:14'),('ea7d3181b2571cfbaaa06eaa74b645ce24a4451552731df8c192159820598c7b80ec3c3fdfd0de33',716,1,NULL,'[\"user-app\"]',0,'2023-01-26 00:25:10','2023-01-26 00:25:10','2024-01-25 21:25:10'),('ea84eeeb7de2f278b7e18438490b7d87faa6429e1cd2f36a84a9698903066aa7e9ec7acc99ff86c1',327,1,NULL,'[\"user-app\"]',0,'2023-01-26 13:03:22','2023-01-26 13:03:22','2024-01-26 10:03:22'),('ea875aee7a6c173c8bb5a02243b039a2b34165c304851de7ca83682145e5dee5cba988d252148231',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 21:07:14','2023-09-04 21:07:14','2024-09-03 16:07:14'),('ea98fa0b2b18fe5a54c8ae30bc4875f4af586d261bca8c6c558ac6e3a5d6e4fde008e4e2dcd6601c',1411,1,NULL,'[\"user-app\"]',0,'2023-05-28 17:53:18','2023-05-28 17:53:18','2024-05-27 12:53:18'),('eaad89db0eafa70853dc62eb1d981179e0054dd35baf30caab76922cea28eb61a9e413b708d9c5ad',1280,1,NULL,'[\"user-app\"]',0,'2023-04-19 21:24:30','2023-04-19 21:24:30','2024-04-18 17:24:30'),('ead01f51304631fe29443730986a792258d14b4285c03de018bfd15cf6f74d791982f8f309186e1f',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 16:20:42','2023-03-29 16:20:42','2024-03-28 13:20:42'),('ead502ea711174612816844991634428fda3dcd3c05176564b26832aa1bc7bacb996d7eb92f87e06',206,1,NULL,'[\"user-app\"]',0,'2023-04-04 11:40:54','2023-04-04 11:40:54','2024-04-03 07:40:54'),('ead8ac10d46e57e6352b43a621f76e0afa963bee4f6b00c0ed8f348c5328d489bcaa5d89d5d9c4a8',977,1,NULL,'[\"user-app\"]',0,'2023-09-20 21:52:37','2023-09-20 21:52:37','2024-09-19 16:52:37'),('eadd683903b8a8898a285a4eed77aa3593771fc9a2debcba5af6ad2df5ef1ea78f2afbb859f99575',132,1,NULL,'[\"user-app\"]',0,'2023-01-26 22:29:51','2023-01-26 22:29:51','2024-01-26 19:29:51'),('eaece7eb47cda4bd7fb34edfd707128d5a84872e81c5a8a82d4bd9f9012cef1cf9a11238dfc58ebd',1696,1,NULL,'[\"user-app\"]',0,'2023-07-04 13:39:16','2023-07-04 13:39:16','2024-07-03 08:39:16'),('eb2a41d53458a08ac77400df783f4df579fd125a53a18d1b829fcbf73e2b69555e0d9629152c1bde',2088,1,NULL,'[\"user-app\"]',0,'2023-10-03 21:05:03','2023-10-03 21:05:03','2024-10-02 16:05:03'),('eb2e8196348320a1ffb98375dfa34eb6cc12f38ab1067f66be7d487ff2d5fb7614d434e3a145d367',1086,1,NULL,'[\"user-app\"]',0,'2023-03-13 16:09:12','2023-03-13 16:09:12','2024-03-12 13:09:12'),('eb49034fc1d0adb2530561a1abd249843f12c13d6130cda2f1008d704ffbdbb00a030cd439736801',1732,1,NULL,'[\"user-app\"]',0,'2023-07-10 15:06:03','2023-07-10 15:06:03','2024-07-09 10:06:03'),('eb4c8d74bfd85019674a95ec95cbceb53a5e2109fd2ee77bea9425aaa7163623a648c524d82a0a82',1283,1,NULL,'[\"user-app\"]',0,'2023-04-20 05:10:19','2023-04-20 05:10:19','2024-04-19 01:10:19'),('eb89a6e02ce9df7d33dcf570c9ba6826183dc59e19588c439f3612287ff0cdacb7b612004d9007c8',999,1,NULL,'[\"user-app\"]',0,'2023-03-31 11:49:10','2023-03-31 11:49:10','2024-03-30 08:49:10'),('eb9031a3a724a1a4ca2e8485d59d59c4ff47f5fa23cd84430f9934141b5f83927fdf41e9eeddb1aa',289,1,NULL,'[\"user-app\"]',0,'2023-09-06 15:39:02','2023-09-06 15:39:02','2024-09-05 10:39:02'),('eb94cd55325fcf62be0dcdde3def32c97abc432ffad7d7bf45c7a7b62fd1c44a3ee0d51659987217',2101,1,NULL,'[\"user-app\"]',0,'2023-10-05 21:07:56','2023-10-05 21:07:56','2024-10-04 16:07:56'),('eb9b70449a319e390dc420f000ff3268fb4eae1b9390e5bbfc66ca3a08b1b12c3681b88bf2d4b502',1844,1,NULL,'[\"user-app\"]',0,'2023-07-31 16:00:59','2023-07-31 16:00:59','2024-07-30 11:00:59'),('eb9c2c3ca5f3e6bfef4cd289252fa8ee59e9f0b711415ba930d68802916fe13a0483b089e5b05389',420,1,NULL,'[\"user-app\"]',0,'2023-08-01 21:58:18','2023-08-01 21:58:18','2024-07-31 16:58:18'),('eba8aa08cc1447d1e370c9a8edd71b701ba8837ea72cd4aa317297b5082e4cf902b6bd609485cb66',939,1,NULL,'[\"user-app\"]',0,'2023-02-27 15:58:09','2023-02-27 15:58:09','2024-02-27 12:58:09'),('ebad8a166bb43aad2e20b6a755255612b602eb28dc4399e75f8c2ec9ed7d2efa65b8fb25a07adf3f',953,1,NULL,'[\"user-app\"]',0,'2023-04-11 17:56:08','2023-04-11 17:56:08','2024-04-10 13:56:08'),('ebbcb02f1a7805d5d444a731eb8c0dabdf6fbbda6f1e16c8bc5e1cbb28898715f14f60fa16695206',1275,1,NULL,'[\"user-app\"]',0,'2023-04-19 16:34:56','2023-04-19 16:34:56','2024-04-18 12:34:56'),('ebc2f70e7dd710edd52eba3c6def6b62f15e7206a7c9cc702ed0683c67fc160185c143617e0f0e71',1596,1,NULL,'[\"user-app\"]',0,'2023-06-19 00:46:53','2023-06-19 00:46:53','2024-06-17 19:46:53'),('ebde4c4791e78e28145c5f8bd5ec8d2232d24dcde30bf82eb159c913dc553efe7f9534dcaaaa9541',1074,1,NULL,'[\"user-app\"]',0,'2023-10-01 15:22:15','2023-10-01 15:22:15','2024-09-30 10:22:15'),('ebf7daae97a544f8f5f5ac9040719be54b81434789b58905bc6a6fc970a61a032ce5a9c0374d1393',151,1,NULL,'[\"user-app\"]',0,'2023-01-25 23:46:53','2023-01-25 23:46:53','2024-01-25 20:46:53'),('ec046015c53b97be3611ec7f987490f46a73cfb67594291606a8104c26805314bdd3b69555fa4d22',2,1,NULL,'[\"user-app\"]',0,'2023-03-18 18:16:37','2023-03-18 18:16:37','2024-03-17 15:16:37'),('ec0d554954e2889ae93526df23b328860a2cc86e37ed70a71b524050e3bd31e8da0f67fed2900b21',566,1,NULL,'[\"user-app\"]',0,'2023-03-18 14:26:42','2023-03-18 14:26:42','2024-03-17 11:26:42'),('ec1c7e37e5a6ff1466f1ae74e64af5bbd8df551de0c7d7267e159e468445383c7aa42b329ac3cd77',873,1,NULL,'[\"user-app\"]',0,'2023-02-07 19:04:05','2023-02-07 19:04:05','2024-02-07 16:04:05'),('ec1cfd1a8e9bbe8f40efa3738e383c0bd97051539199d6d88995f288219f471619fa0beba2c3beed',1423,1,NULL,'[\"user-app\"]',0,'2023-05-21 21:06:33','2023-05-21 21:06:33','2024-05-20 16:06:33'),('ec317f6dd0b66b8530fe93781b433fbec7f39542061b5b6944d8971716762ccbf1bafac748869497',2016,1,NULL,'[\"user-app\"]',0,'2023-10-01 17:05:13','2023-10-01 17:05:13','2024-09-30 12:05:13'),('ec3ad76bbf9ed9603293933b0e026695d743de0321e638b2cda491418bc9adba963c026707ee21c9',1216,1,NULL,'[\"user-app\"]',0,'2023-03-30 15:41:38','2023-03-30 15:41:38','2024-03-29 12:41:38'),('ec4a931f0f15de180a4f560eb06982f72968e1d955e94d51e283b45ba0d7eb4e7538371497ccab2a',957,1,NULL,'[\"user-app\"]',0,'2023-04-25 22:29:37','2023-04-25 22:29:37','2024-04-24 18:29:37'),('ec5656e9b168f74494787160b286cde5c420acad8662d11ff5761b56cade7cac73a768e0c2dccec0',2030,1,NULL,'[\"user-app\"]',0,'2023-09-23 01:48:16','2023-09-23 01:48:16','2024-09-21 20:48:15'),('ec586ec3da04395fa073c0773de9b3ebc8ed87a246e4e496b8bf8210255f0ef540398e0d9d022776',486,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:50:03','2023-01-25 11:50:03','2024-01-25 08:50:03'),('ec708711f2ad4fcf93260bb93926054cf94f79b1e451688f21db130442647b1dd7d4f3619c8f3bb8',251,1,NULL,'[\"user-app\"]',0,'2023-05-12 11:23:22','2023-05-12 11:23:22','2024-05-11 07:23:22'),('ec7e0b67c3d99aa61c12cccc2754c702cf6dba39cadd8d93da3391cfab457ae121a1e5c1f37e910f',961,1,NULL,'[\"user-app\"]',0,'2023-04-08 20:39:49','2023-04-08 20:39:49','2024-04-07 16:39:49'),('ec92fba0d153358e88d81dfb8b60654e44ef16f84f6d5b81d57bd3de88524804c576579278879230',2,1,NULL,'[\"user-app\"]',0,'2023-05-01 11:43:47','2023-05-01 11:43:47','2024-04-30 07:43:47'),('ec9f656ed766fdd3c509460d96f6cd16e345a6d4f6ee363bee0eb8d075ec9417528a26c8730a6927',2,1,NULL,'[\"user-app\"]',0,'2023-08-31 15:11:43','2023-08-31 15:11:43','2024-08-30 10:11:43'),('eca26fa38cd10eb155b114ee800823a13092cd057bbab608a0d89d8f19f59bc67766c94a87f61194',755,1,NULL,'[\"user-app\"]',0,'2023-01-27 13:19:03','2023-01-27 13:19:03','2024-01-27 10:19:03'),('eca2bb3c87bb6e7511d063b0f6e109692b3ccb44e08de58315bcad5cdd6256ba3ef7cce1224193a6',991,1,NULL,'[\"user-app\"]',0,'2023-02-22 13:20:36','2023-02-22 13:20:36','2024-02-22 10:20:36'),('ecb2b171306ea89cae75b986ad63ea15571eba06c7a43a17b94976ab3462a9540c83d80b7c169d97',566,1,NULL,'[\"user-app\"]',0,'2023-07-28 12:29:44','2023-07-28 12:29:44','2024-07-27 07:29:44'),('ecbb96172917e5ddb5f12a1b65a65a1d3bf1e841e4fb6b44ebc9d31c06a17b4b90e95e1575041863',251,1,NULL,'[\"user-app\"]',0,'2023-06-09 14:44:27','2023-06-09 14:44:27','2024-06-08 09:44:27'),('ecca22fd4763fec52e4b8d87f786cf104c4cd6dba8390e35890ba6c3f825cfdba1285f3deb1d285d',1405,1,NULL,'[\"user-app\"]',0,'2023-07-01 14:21:24','2023-07-01 14:21:24','2024-06-30 09:21:24'),('ecde2efd69767f3ae14bf5816c03ffa4f1cdc51404faf9143b2d4a96bd36bd82138920c5a005a8b8',828,1,NULL,'[\"user-app\"]',0,'2023-10-02 23:43:04','2023-10-02 23:43:04','2024-10-01 18:43:04'),('ed397ae179f71a55ed64c62cecf795ee51642b6b4e671bb31cec2bad74070fc53d5cea01de829bd3',1112,1,NULL,'[\"user-app\"]',0,'2023-03-03 12:44:55','2023-03-03 12:44:55','2024-03-02 09:44:55'),('ed429402cdbe12967789ad731d9b94495c74d20ba044cbb697a53211db7c4a3ad56a19169a4398ea',163,1,NULL,'[\"user-app\"]',0,'2023-07-07 13:32:06','2023-07-07 13:32:06','2024-07-06 08:32:06'),('ed4357f080e98a7a2476c168bcb04d9897a3d96b7b1f562130a7a83391ca74e6a7a0e7144e092d68',1123,1,NULL,'[\"user-app\"]',0,'2023-03-08 01:50:17','2023-03-08 01:50:17','2024-03-06 22:50:17'),('ed43726f69da8fa16315149ec5c8d75ae68f56e61515249f66b158229dfdb16eaac3b8c07e1ee182',830,1,NULL,'[\"user-app\"]',0,'2023-02-01 01:55:57','2023-02-01 01:55:57','2024-01-31 22:55:57'),('ed4b064f82f9d2109843c6d502a9d9d29221f01d0fda330dd38aa64f2d0cc0359e4f5da0dbddb084',1805,1,NULL,'[\"user-app\"]',0,'2023-07-25 00:12:44','2023-07-25 00:12:44','2024-07-23 19:12:44'),('ed5d75f36b219594ee01cdaaed38174375af55c32c4203be2bf0377fb2f2566538acf3c25d05d5e1',643,1,NULL,'[\"user-app\"]',0,'2023-01-25 10:21:52','2023-01-25 10:21:52','2024-01-25 07:21:52'),('ed5ef76c4ebe45f83aa268ec236ff5716e8426f916d4e5d1f29b9b927860759cd0d9e7ed1b951e11',969,1,NULL,'[\"user-app\"]',0,'2023-03-07 13:24:40','2023-03-07 13:24:40','2024-03-06 10:24:40'),('ed64275cd48b30992f2dd2d6e7a46b2cfba415a766d2e2f4e502c2c18419f2c2248ff95ae40b7f68',1828,1,NULL,'[\"user-app\"]',0,'2023-07-28 20:04:44','2023-07-28 20:04:44','2024-07-27 15:04:44'),('ed76edaf609c9d58d5f775d81c64d4290f1640e571c2893c8226dc6508772989d2b9b392bb359c2c',2,1,NULL,'[\"user-app\"]',0,'2023-04-27 21:10:31','2023-04-27 21:10:31','2024-04-26 17:10:31'),('ed799f350c0c8071cbb0c331bcbcc11bf606043c040b0446f6d9b33ad5198f929b60136943f90ef8',2,1,NULL,'[\"user-app\"]',0,'2023-04-01 23:39:33','2023-04-01 23:39:33','2024-03-31 20:39:33'),('ed810b22e74082d6435ce75693adce1b7e6e4c80098c90c21411a884f2b0a5ce9234e0ee48e49d91',109,1,NULL,'[\"user-app\"]',0,'2023-07-18 11:10:12','2023-07-18 11:10:12','2024-07-17 06:10:11'),('ed82287c3570b9fd2cf7e2c3ab59bc886c93bd801450f1109cc8fd1b93303d2f642847b1ba7c55ea',2,1,NULL,'[\"user-app\"]',0,'2023-09-30 13:56:30','2023-09-30 13:56:30','2024-09-29 08:56:30'),('ed86a1ab951745a9bdce635bb275000455cbafef08a96a61f573b7fa23bbf7058feaef0304506161',2,1,NULL,'[\"user-app\"]',0,'2023-08-29 04:22:44','2023-08-29 04:22:44','2024-08-27 23:22:44'),('ed9d35c2f50938c220d48ca1d1a14fb568408a0c3b4b2931197b52f5183832b04d2bbb67095f4d58',1566,1,NULL,'[\"user-app\"]',0,'2023-06-16 16:15:27','2023-06-16 16:15:27','2024-06-15 11:15:27'),('edba5b691a32a08579bb8ca220b0b5e227cd1883335c7b8f9443a2be50b9ef6374109b7a47d01b2f',694,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:47:31','2023-01-25 17:47:31','2024-01-25 14:47:31'),('eddecad9d9dd31ecf9ece954e3c23848cdea56065517e0c763ba9f725c5d39f2441309851b891868',712,1,NULL,'[\"user-app\"]',0,'2023-02-28 18:30:30','2023-02-28 18:30:30','2024-02-28 15:30:30'),('ede6f429c5caad052f419f50dec451b90e645839dca495949139df9c15cfb5724a6164c9477733c2',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 18:58:02','2023-01-28 18:58:02','2024-01-28 15:58:02'),('edee8cf96798a99207f3c8aea2707f07bd2545e25fb5ec3ec576092e86bc62db2a0ba0fe7bcb89f0',1915,1,NULL,'[\"user-app\"]',0,'2023-08-25 16:32:10','2023-08-25 16:32:10','2024-08-24 11:32:10'),('ee01660aa90dda1ba3ab78b9033b4535b3a0c360f14227ba166c7bb16e94b62a94961f74927339f9',2,1,NULL,'[\"user-app\"]',0,'2023-08-21 15:45:26','2023-08-21 15:45:26','2024-08-20 10:45:26'),('ee15b66ef613014b8fef054b571db52833f77895afb35119cd388c13d42531ab040551990475f462',243,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:26:26','2023-01-28 13:26:26','2024-01-28 10:26:26'),('ee2866ca82ee98c7897182532fa9d67d907d9ccdb9ad702b0d9afed133a8ba294d7af1bee081d447',769,1,NULL,'[\"user-app\"]',0,'2023-03-24 13:09:48','2023-03-24 13:09:48','2024-03-23 10:09:48'),('ee3625adbbd95bd4d408b5e9786fb1b4539614fee1360f2ceb8b0807dcd2e7a382705c987a9bf94b',366,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:08:03','2023-01-25 17:08:03','2024-01-25 14:08:03'),('ee4dbdc956364f506c716d5f93ec1c1d85603137de4ba4284b70348b1ff928a1e2fbe7c6274a9b11',1050,1,NULL,'[\"user-app\"]',0,'2023-02-23 10:07:18','2023-02-23 10:07:18','2024-02-23 07:07:18'),('ee506653f7609e8da8fbdaad1cd91be76132c7ac72ffbbf6bd7a0033179af157e83b78087ecfa868',2,1,NULL,'[\"user-app\"]',0,'2023-01-26 15:59:52','2023-01-26 15:59:52','2024-01-26 12:59:52'),('ee6db3483a93502d71aa5f04c61e0304e9ee4372847eb5333fb41611dee2e57b140a6452c3f839df',2,1,NULL,'[\"user-app\"]',0,'2023-08-05 22:17:48','2023-08-05 22:17:48','2024-08-04 17:17:48'),('ee915b0e4b7000fe49bde58fef7657d1cbd39091b360402cf8decdb767009493fcfcea05a8a9c1d4',1029,1,NULL,'[\"user-app\"]',0,'2023-02-22 10:07:28','2023-02-22 10:07:28','2024-02-22 07:07:28'),('ee9bf259d579a3a6e37f61f33e70eca1cf83d25c05b62c983201dd46552d44f98b09cfb833cbd64f',1359,1,NULL,'[\"user-app\"]',0,'2023-05-09 18:04:08','2023-05-09 18:04:08','2024-05-08 14:04:08'),('eea417e34d2d3b75db7811ed2a7009cc3e4b6efa297e986ce49d130c6391aa2e1da977a8cdb9ba71',2,1,NULL,'[\"user-app\"]',0,'2023-02-04 00:48:54','2023-02-04 00:48:54','2024-02-03 21:48:54'),('eebf349d424eb42811a3d2350c6cf4ee8e7a0290194ea459c9363ff0d5f141e8ddc124c1898a8d98',979,1,NULL,'[\"user-app\"]',0,'2023-02-18 22:41:25','2023-02-18 22:41:25','2024-02-18 19:41:25'),('eec1730d545828a08fdcc666dfdfc604ea3412f13de118d99a47a7ebbc5918b9e0441c8710d43b4f',678,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:18:23','2023-01-25 16:18:23','2024-01-25 13:18:23'),('eec59088f84ce35879f1811aefedce96bb111dfe0a692cb0bfc9cdbf871976ef40aeb34907c3d2bb',611,1,NULL,'[\"user-app\"]',0,'2023-01-26 14:29:22','2023-01-26 14:29:22','2024-01-26 11:29:22'),('eed3b1a2ba69866dc59e9d3d73415aa61d907e4971df034d69a87fa3fb08008412344642f197d160',1258,1,NULL,'[\"user-app\"]',0,'2023-04-15 12:07:04','2023-04-15 12:07:04','2024-04-14 08:07:04'),('eef2f91e73fec8d988f25141a6c76d3162bef19822debe7bc8dde68374ad9b3cba05c0d2e7384b55',852,1,NULL,'[\"user-app\"]',0,'2023-02-03 16:23:02','2023-02-03 16:23:02','2024-02-03 13:23:02'),('eef5f655be6e346bdc91c566a96d67ad0bdcee88e9075e4fabe5b4a377f9de89e2dc1c768b13fe9e',819,1,NULL,'[\"user-app\"]',0,'2023-09-19 14:54:16','2023-09-19 14:54:16','2024-09-18 09:54:16'),('eef74ce9f43aaae73f8c120db4065cb74a32c32f5e8ace70d79089450948f5aa56747d430b4523ce',1126,1,NULL,'[\"user-app\"]',0,'2023-05-30 11:11:01','2023-05-30 11:11:01','2024-05-29 06:11:01'),('eefce49e44b88c6c30c2d054ea21a0910918e68902319988b2803ed60c2430913e65bb72028ccc87',2,1,NULL,'[\"user-app\"]',0,'2023-09-11 13:46:23','2023-09-11 13:46:23','2024-09-10 08:46:23'),('ef038454578deba285a598430a21f22f60918d67bad65f6e63ea80dcf60e0a405deaf5e397a1c47f',987,1,NULL,'[\"user-app\"]',0,'2023-08-03 01:29:15','2023-08-03 01:29:15','2024-08-01 20:29:15'),('ef09686f1899d1837d36446aad3de3822a6a6c544b9cedf204f620252a8d907034e7e674d556741a',935,1,NULL,'[\"user-app\"]',0,'2023-02-27 21:34:28','2023-02-27 21:34:28','2024-02-27 18:34:28'),('ef09a189f01db12bd7b9bd4a74366f04fdc0aad797a3da3ea80122c809c0527ee8b9973c1583fde9',1203,1,NULL,'[\"user-app\"]',0,'2023-09-16 00:00:36','2023-09-16 00:00:36','2024-09-14 19:00:36'),('ef108a3256171c38796b892b8cf6fffaf2e47962d85387bfe8d7445a3b2979458089047a2fde0ca0',890,1,NULL,'[\"user-app\"]',0,'2023-02-09 02:37:02','2023-02-09 02:37:02','2024-02-08 23:37:02'),('ef1cd6a736ab53a4d21b750bc3d395a1f7ec54872e634c71762bd7bd1d6a74e5519d02b334e257ce',1336,1,NULL,'[\"user-app\"]',0,'2023-04-28 01:45:16','2023-04-28 01:45:16','2024-04-26 21:45:16'),('ef1d64e5b7ab26b72fd8f26a9403ec25e70b1992631390f1ba1ef6ff1a74da6eaac16f29e9198c39',388,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:52:34','2023-01-25 19:52:34','2024-01-25 16:52:34'),('ef318be5a746488331b8645907fe7dcf60be23897fc78995d5f56b5ce94ee0a1a70b93bc86f1ff48',2,1,NULL,'[\"user-app\"]',0,'2023-02-22 14:58:35','2023-02-22 14:58:35','2024-02-22 11:58:35'),('ef3a13f8c04fcdabefda4b44f430a91ad5bc78c20669e9458a5e5b831d41e5c8138a935b489ab1a6',344,1,NULL,'[\"user-app\"]',0,'2023-07-19 01:28:18','2023-07-19 01:28:18','2024-07-17 20:28:18'),('ef49ef78cc3fb0c73041fd5762f0787773c8d64060981a3575f363cdced4b073abe6743b4d128a56',363,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:24:34','2023-01-25 16:24:34','2024-01-25 13:24:34'),('ef51cdc419b500c68dde435f7c834485f1b629e8c4f0baf0796a97b6c6575d0aa3fc9eafee03668c',466,1,NULL,'[\"user-app\"]',0,'2023-03-13 15:29:13','2023-03-13 15:29:13','2024-03-12 12:29:13'),('ef5545653f09ac10f46710a32352cd98e9fdcdf188451d09ff98a09a87e71f7c56fb8f0ee7948a94',1771,1,NULL,'[\"user-app\"]',0,'2023-07-16 01:39:13','2023-07-16 01:39:13','2024-07-14 20:39:13'),('ef65ee69a47ed5f4752e1b13776fa9d0ce18a530cda3f2c0d01972ca61c102cae1aa5c0bacd99189',741,1,NULL,'[\"user-app\"]',0,'2023-04-14 09:37:48','2023-04-14 09:37:48','2024-04-13 05:37:48'),('ef8a42571b0cfa1d5401184a57039576e1ae3e0ca2c917d9be38570321a73f0787e0d3a27e31a07a',1832,1,NULL,'[\"user-app\"]',0,'2023-07-28 23:38:11','2023-07-28 23:38:11','2024-07-27 18:38:11'),('ef9a68be0286154932a2f0b91a8cd7e18181e468cc6025c44834b1801e2c194eb46c3983e36d61c2',2,1,NULL,'[\"user-app\"]',0,'2023-04-19 22:51:15','2023-04-19 22:51:15','2024-04-18 18:51:15'),('efa9b1946e2acb43537c0d889ca4943e7905e1f881386f72c7b525e7585bdccd59338ba106d9e8e1',1338,1,NULL,'[\"user-app\"]',0,'2023-04-28 19:51:44','2023-04-28 19:51:44','2024-04-27 15:51:44'),('efb27487ab2b6db40f70c8f736f6625645d4c76bd677717883ceea5724c36c5e0b164274283cff32',962,1,NULL,'[\"user-app\"]',0,'2023-03-18 12:18:04','2023-03-18 12:18:04','2024-03-17 09:18:04'),('efc5f2dd9ae571e5157f299bfd22c1662311df8b1083335e77b7f6688ec363c675ebdeaad703438e',1973,1,NULL,'[\"user-app\"]',0,'2023-09-11 21:12:46','2023-09-11 21:12:46','2024-09-10 16:12:46'),('efce45bcdf5c00f8257064125d815b7dacd405e4ee74673fd50865fcb3198eab366d621e853051e4',948,1,NULL,'[\"user-app\"]',0,'2023-04-26 22:29:54','2023-04-26 22:29:54','2024-04-25 18:29:54'),('efed9e60581ffb232b6a5fa99f7b3ff49e02a46df234e52c989931b4662197575dfb97c8415aa6b9',1321,1,NULL,'[\"user-app\"]',0,'2023-04-24 02:35:48','2023-04-24 02:35:48','2024-04-22 22:35:48'),('effda8f487ae4b210ac298d92fd373f4b2a84e2415009db26f30b3b9747733dccb71725b604c06b6',812,1,NULL,'[\"user-app\"]',0,'2023-06-03 00:32:10','2023-06-03 00:32:10','2024-06-01 19:32:10'),('f00525faf57559ee01f70949ee90aed544aee1cfaa25b8c04982dfac873c25b06c5e197526f1fd62',1470,1,NULL,'[\"user-app\"]',0,'2023-05-17 20:14:50','2023-05-17 20:14:50','2024-05-16 15:14:50'),('f0095868687bd6dc86d218b8aabe29ee1f453ddd1baadd6ed7b977ffa31ddad0e27b85314bc25f89',1879,1,NULL,'[\"user-app\"]',0,'2023-08-14 17:23:53','2023-08-14 17:23:53','2024-08-13 12:23:53'),('f014dc5eb5f41cab638a44a0dc4b3cee4e3ba41b91fe6280ac8039a9a2eff2dc775b93e2cabfb190',1636,1,NULL,'[\"user-app\"]',0,'2023-06-29 02:33:04','2023-06-29 02:33:04','2024-06-27 21:33:04'),('f022962468b7b6a32f92a8d2ac2f4135b1c6fd15a0a06040b293ee67a932cf1a6e2591b4b73a5871',434,1,NULL,'[\"user-app\"]',0,'2023-01-26 01:39:19','2023-01-26 01:39:19','2024-01-25 22:39:19'),('f03d0298f83327e1baa333aae55ba9ad272cab638f7427e6c097aae7c9dabd1940a3e44c4b1b60b0',1628,1,NULL,'[\"user-app\"]',0,'2023-06-23 16:49:02','2023-06-23 16:49:02','2024-06-22 11:49:02'),('f04d0f441936dd8523e9d33b7bf38725e230bbd8bbb280a4aad54dda7f2436087672d0040aafdfa5',906,1,NULL,'[\"user-app\"]',0,'2023-02-11 14:55:28','2023-02-11 14:55:28','2024-02-11 11:55:28'),('f067d347c0414c10c08a4de83a55721550f9f6cb3600b9210565d6210335bda81611ecb7927ee042',943,1,NULL,'[\"user-app\"]',0,'2023-02-16 15:41:06','2023-02-16 15:41:06','2024-02-16 12:41:06'),('f0688ed142fc2a4afef11de82dcb0e7649e73eb051fa8078533ce2c0369153844a35bd9742cac7ad',580,1,NULL,'[\"user-app\"]',0,'2023-09-26 22:14:55','2023-09-26 22:14:55','2024-09-25 17:14:55'),('f071e200bdf2d954675697d814911cca7c02cb1f24ef36aaadca5557be72abb092fde26d50e031e7',1361,1,NULL,'[\"user-app\"]',0,'2023-05-03 08:32:11','2023-05-03 08:32:11','2024-05-02 04:32:11'),('f079dcc2988eb9fd1b9be07cee98deed601609cfa40162f8b2780ad7de1444cabcd8244b19a193ed',342,1,NULL,'[\"user-app\"]',0,'2023-01-25 23:52:10','2023-01-25 23:52:10','2024-01-25 20:52:10'),('f07cfa9e619b44b9ae1711290654370a32710ccd70738142e72edc7f429147f55fc6e67aef0a1c26',1850,1,NULL,'[\"user-app\"]',0,'2023-08-01 19:22:49','2023-08-01 19:22:49','2024-07-31 14:22:49'),('f087c2492704212af5f5f1b8b0f09237b67654a167d98a9140c39f5fcf999fc420e977e292abcbf1',252,1,NULL,'[\"user-app\"]',0,'2023-01-27 12:15:27','2023-01-27 12:15:27','2024-01-27 09:15:27'),('f092ad0a11b3fc503fa159c9b2744511126ba364fe535deab887664d90872dd06987aeed6b03a0dd',1988,1,NULL,'[\"user-app\"]',0,'2023-09-13 22:41:11','2023-09-13 22:41:11','2024-09-12 17:41:11'),('f0ae80c8a44c38b93d2d73b730db92347fef0e71bbcc6c7a6240957d6df4c5c4035039523799b560',134,1,NULL,'[\"user-app\"]',0,'2023-09-15 15:12:46','2023-09-15 15:12:46','2024-09-14 10:12:46'),('f0b0a6dfd93470aaab455c195068e42bab7539e44d37a33e3fdc04ae12bc038308b450d078d52bf7',2,1,NULL,'[\"user-app\"]',0,'2023-10-08 04:05:23','2023-10-08 04:05:23','2024-10-06 23:05:23'),('f0e93bfcbd1d49bffab018d114b00d73928574c63404769f9f51401ade4d2a43ee6f334e263c57a9',119,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:24:27','2023-01-25 16:24:27','2024-01-25 13:24:27'),('f124d7e468faccd8cf208a958788ca1d60a19860a7d31ca9564d8fb3980009688ca9e131011e631a',719,1,NULL,'[\"user-app\"]',0,'2023-01-26 01:09:40','2023-01-26 01:09:40','2024-01-25 22:09:40'),('f129ea5877304aa07666c115bb5e4f2ae31762cc105ee6e78f36e0973ba2849913a5dcdaa57bf491',2,1,NULL,'[\"user-app\"]',0,'2023-06-09 19:57:15','2023-06-09 19:57:15','2024-06-08 14:57:15'),('f13f169209390b563c18f261b75e29a12746dc1521972fe40cb0c5c779468f0ef9ac6fc09811e896',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:25:02','2023-01-25 15:25:02','2024-01-25 12:25:02'),('f1476e8b73e17068dd3383189f094ce0c7ac7e4e97d9e5be3cd04aa39254726a1a61d4ea3b7aa4c3',210,1,NULL,'[\"user-app\"]',0,'2023-05-09 14:45:28','2023-05-09 14:45:28','2024-05-08 10:45:28'),('f15805a4f29d00c572819808488ba895c31145d6e15b43ba4905482b52e6ca9f38beaf48aa30995c',800,1,NULL,'[\"user-app\"]',0,'2023-10-05 21:29:59','2023-10-05 21:29:59','2024-10-04 16:29:59'),('f17f5d9791c4983fb3d41b8d7629dab3388609fc3e8b31d4d5d0d72eb105d16c5ff34c91f6417833',138,1,NULL,'[\"user-app\"]',0,'2023-09-11 13:47:27','2023-09-11 13:47:27','2024-09-10 08:47:27'),('f188bc6eb2b1b5656fda336df23b63584b7db90c600db13ad5a2cda4599163e6a502101be9340595',2,1,NULL,'[\"user-app\"]',0,'2023-03-13 00:10:43','2023-03-13 00:10:43','2024-03-11 21:10:43'),('f19337a1fba0561d1c7305eebe2099399fdf24aeb92094097df48bab786a70f04ff164d72a055e42',2,1,NULL,'[\"user-app\"]',0,'2023-09-05 21:23:03','2023-09-05 21:23:03','2024-09-04 16:23:03'),('f196e45d45fea2af2169ce7f22a3721deb64eb30e01fed49f4842543eb64ec279b53ea9b79810e6f',175,1,NULL,'[\"user-app\"]',0,'2023-01-25 10:39:15','2023-01-25 10:39:15','2024-01-25 07:39:15'),('f19ec7fe6b26c299de79af214a5d4613b76a0ad14f5299b422e09f60d055c3ec16470e5bd5d3d111',805,1,NULL,'[\"user-app\"]',0,'2023-01-30 14:58:22','2023-01-30 14:58:22','2024-01-30 11:58:22'),('f1c6707b54113e3d53849e62e3d5bb4afcbf615b097463a400ee43680d2cb2e1b7ac67fd6f799cad',2,1,NULL,'[\"user-app\"]',0,'2023-07-05 23:13:13','2023-07-05 23:13:13','2024-07-04 18:13:13'),('f1c7d8805099de4a834daea2de016e4b54ef679dfd81297ab76d6c5199783e6c432b68bef9f66063',1465,1,NULL,'[\"user-app\"]',0,'2023-09-01 20:34:13','2023-09-01 20:34:13','2024-08-31 15:34:13'),('f1cb67fb9c1e79c81698a3d3c0bcee35296dd1a62e4f3c60baad6a9804121009b12e8968d2775491',1421,1,NULL,'[\"user-app\"]',0,'2023-05-10 22:20:23','2023-05-10 22:20:23','2024-05-09 18:20:23'),('f1d66290b9ec71d83d0a1327064e6d1a72551c6654db9e8049fc36ed4bf6abe96b08611f0de8e116',705,1,NULL,'[\"user-app\"]',0,'2023-01-25 21:58:39','2023-01-25 21:58:39','2024-01-25 18:58:39'),('f1d7ae91cedc04d1411ee3e4b1a67eab600bd58caf8e493e553c07b2712c98cc02bf68bbe19d9f96',1094,1,NULL,'[\"user-app\"]',0,'2023-06-25 20:24:10','2023-06-25 20:24:10','2024-06-24 15:24:10'),('f1d7e08876255d4afc3cfc62a951a280b4e9f18e3f2d228da8c461e161a2a7573db7fb217d2e4959',1539,1,NULL,'[\"user-app\"]',0,'2023-06-18 02:58:54','2023-06-18 02:58:54','2024-06-16 21:58:54'),('f1dae46d40f9326f4013ca2b92e16e31b6c934e6cf33c2cdbda63e972d3d58188104f9dde5f27eba',937,1,NULL,'[\"user-app\"]',0,'2023-02-16 01:00:32','2023-02-16 01:00:32','2024-02-15 22:00:32'),('f1ebed88ca9d680754a8a74d02bb0840e90b393ae9bda7207d86a414d40475d9a49e78807b9eb6ce',1067,1,NULL,'[\"user-app\"]',0,'2023-10-09 14:58:34','2023-10-09 14:58:34','2024-10-08 09:58:34'),('f1ef30dc0119d560dd8aa697f39c58e81016b9b67f0c30e29b3621450531b16049f7bbe8a16f6655',1112,1,NULL,'[\"user-app\"]',0,'2023-04-11 18:35:21','2023-04-11 18:35:21','2024-04-10 14:35:21'),('f1f7e01914a26bc952007324cebd3db4c98d8896a1bbbd3187cabbda24852697e33c7b57f6ac84b9',812,1,NULL,'[\"user-app\"]',0,'2023-04-30 21:44:34','2023-04-30 21:44:34','2024-04-29 17:44:34'),('f210b81bc4e02181515e7ac170bc7debbc10094d983bbb373d5679c5f611e4a41941e8986f18e219',563,1,NULL,'[\"user-app\"]',0,'2023-03-12 17:52:11','2023-03-12 17:52:11','2024-03-11 14:52:11'),('f226cf44cb2ccc0bc400665fd361275f0167cb14f2d374b21564a6e6bb17ee2ad651bbc25122fdc0',1906,1,NULL,'[\"user-app\"]',0,'2023-08-22 19:37:03','2023-08-22 19:37:03','2024-08-21 14:37:03'),('f24a31104a7c0602c699f6a7a2f2adbba260be1dff1412d381b1ec8ba1523f941bcd8bf66adfee85',1490,1,NULL,'[\"user-app\"]',0,'2023-05-21 22:39:01','2023-05-21 22:39:01','2024-05-20 17:39:01'),('f25d515421075d1628295ad6c1aede0f8a8aed32b566be5c349f0f76e335de59c977a7e941ea850c',1987,1,NULL,'[\"user-app\"]',0,'2023-09-13 22:11:05','2023-09-13 22:11:05','2024-09-12 17:11:05'),('f287e2108b9b05b7332c5e5ca52d812c550b04864d9cb302997f055d1cb6caf6312f0f592897087e',1905,1,NULL,'[\"user-app\"]',0,'2023-08-22 17:32:38','2023-08-22 17:32:38','2024-08-21 12:32:38'),('f299771a1aaf8c8d64ddb6374503d3f38e2fb45431b4cc881d776d185b07570f03a6fe3205f9f177',8,1,NULL,'[\"user-app\"]',0,'2023-03-29 01:21:50','2023-03-29 01:21:50','2024-03-27 22:21:50'),('f2a5ddeafde41e16f62ec0a5b563606ab1c4bd7365413379ba6b90cf225943da14732c2f3a1505aa',2,1,NULL,'[\"user-app\"]',0,'2023-08-30 13:25:01','2023-08-30 13:25:01','2024-08-29 08:25:01'),('f2b141701b46ca3a6bce3185673b032fcffa76c79fd498241e3908bd688e81a8a3258230b669a754',315,1,NULL,'[\"user-app\"]',0,'2023-07-12 17:04:08','2023-07-12 17:04:08','2024-07-11 12:04:08'),('f2c3e94a13d46eb94b849fcc53adda4a4910b6e4a3451c84ac6b16d377aac70b8b7537ce033d7c8e',2,1,NULL,'[\"user-app\"]',0,'2023-09-05 20:06:34','2023-09-05 20:06:34','2024-09-04 15:06:34'),('f2c88f89b37df81ea1541ba4b9c56fd167de9c40f7454a501517bb00c4091a9b62ef66b646ba7e0e',287,1,NULL,'[\"user-app\"]',0,'2023-04-08 13:24:35','2023-04-08 13:24:35','2024-04-07 09:24:35'),('f2d70478e8cc05d7008b68c4a7c290f0a8cc4834024590b981437b69350cc97afa343418cc3da343',1015,1,NULL,'[\"user-app\"]',0,'2023-02-21 16:52:49','2023-02-21 16:52:49','2024-02-21 13:52:49'),('f2debaf5bdf2ccd13293e4d97528d7024282d1aaea76fab03fe96359e307763659a6940388260785',1313,1,NULL,'[\"user-app\"]',0,'2023-04-23 17:02:10','2023-04-23 17:02:10','2024-04-22 13:02:10'),('f2f3f7a4b8cce444405286edb8569730b988a6a20b473850193c61b195018a89e16286c84bcb353d',1260,1,NULL,'[\"user-app\"]',0,'2023-04-15 13:29:26','2023-04-15 13:29:26','2024-04-14 09:29:26'),('f2f4669821695b41f30460fa2ceab88804b888d5557c1f19777dd97fd7e36c726ed3dad0d5277050',920,1,NULL,'[\"user-app\"]',0,'2023-02-20 16:58:38','2023-02-20 16:58:38','2024-02-20 13:58:38'),('f2f4ad1a07cfd4e917ff807f3d8a9142377f472572979a1196d128efa249bf614ca8da862ea174f4',529,1,NULL,'[\"user-app\"]',0,'2023-01-25 14:26:59','2023-01-25 14:26:59','2024-01-25 11:26:59'),('f2fa09f39f06ec02bb86ace9fd7a69df72d248dd9c0c23e87bcf4c06ea58553e8f0e00f632439947',2,1,NULL,'[\"user-app\"]',0,'2023-04-15 20:47:34','2023-04-15 20:47:34','2024-04-14 16:47:33'),('f309ac5d5f8b7c60a4f692462ea2b9eed890c8e8a007e8f2e1ce9b1c92cff4f7499c27040c1a7ba2',2,1,NULL,'[\"user-app\"]',0,'2023-03-29 23:08:54','2023-03-29 23:08:54','2024-03-28 20:08:54'),('f30dc0950bf2b17830490745fa073ab05adae1953795e78cdc03904d3b887d9aa49a6b0f1cddc8b4',196,1,NULL,'[\"user-app\"]',0,'2023-01-25 17:18:06','2023-01-25 17:18:06','2024-01-25 14:18:06'),('f31b8d89a9c660a92f651d66eed099f129d9300be3ee7b499e22bedb2e4a6baddd2ad45b19a773e9',391,1,NULL,'[\"user-app\"]',0,'2023-10-02 20:05:37','2023-10-02 20:05:37','2024-10-01 15:05:37'),('f334ea1a72ceb93ea969b800d382b90aa5707f372906e7bc2fcb501f7a3ab96fc3990a99b864ae0a',249,1,NULL,'[\"user-app\"]',0,'2023-02-17 17:16:43','2023-02-17 17:16:43','2024-02-17 14:16:43'),('f33e8c2d6530d00ffd9ae1af1650d66b1dc3a3961372bd3f3e1c52e28baf97bf1c22e8326307dca2',36,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:29:41','2023-01-25 15:29:41','2024-01-25 12:29:41'),('f34a5494f1c034d163b93fa9fef87de5820488aedceee6b30bef396a34257be07af6464f25634c6d',2,1,NULL,'[\"user-app\"]',0,'2023-03-25 15:21:41','2023-03-25 15:21:41','2024-03-24 12:21:41'),('f35876c4e60b913e17d12fce3b90ea9aacbe8f9e91d190b64c73c0d35cb5f4e3ecac5a12fa0b2f5e',2,1,NULL,'[\"user-app\"]',0,'2023-07-14 19:42:10','2023-07-14 19:42:10','2024-07-13 14:42:10'),('f35cd9f4194dcfc002012dfebbb2a03095495ed9c5fb073a54fa8eb44f363b19ce2523d6dcba0407',808,1,NULL,'[\"user-app\"]',0,'2023-01-30 21:03:39','2023-01-30 21:03:39','2024-01-30 18:03:39'),('f35d51238e78e0813dcaca5c32e9484090151965c749822db348746e49547cb6bdb346fdc5d5f60e',1241,1,NULL,'[\"user-app\"]',0,'2023-04-08 20:50:50','2023-04-08 20:50:50','2024-04-07 16:50:50'),('f36f0fd57659805624dd2d09e9a37576d2f640dff9452c9026deb9c4a67d2817120bad26cc338392',2068,1,NULL,'[\"user-app\"]',0,'2023-09-29 08:50:29','2023-09-29 08:50:29','2024-09-28 03:50:29'),('f37422fa98ff9c182e2484fdbf44ab1e6ea5bea4e9ef6639a8b03dfb343e32d53f03f8825ff7bfab',1035,1,NULL,'[\"user-app\"]',0,'2023-09-29 20:42:07','2023-09-29 20:42:07','2024-09-28 15:42:07'),('f381b21664a7d6d25ba6212488942930512f422f1cce089ebf4cf5d1c5840d4ab929fd0a19f14961',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 19:12:10','2023-09-04 19:12:10','2024-09-03 14:12:10'),('f39d5ba26d46fcb531b6004f0d1375736d0340834d2826bc4061ea2e83385b7e61b1fe8bbd9ad29d',812,1,NULL,'[\"user-app\"]',0,'2023-07-08 02:02:48','2023-07-08 02:02:48','2024-07-06 21:02:48'),('f3aaf62a198dbd47162136779185ca7a02264074dd360dcb71424bb1d59be72fab6cc85b4b6361f7',1111,1,NULL,'[\"user-app\"]',0,'2023-03-03 12:15:09','2023-03-03 12:15:09','2024-03-02 09:15:09'),('f3ab61766765be2030004502d9be4f31908e725abac50f0dbbaf2bb3b763e418637f2b516d491113',2,1,NULL,'[\"user-app\"]',0,'2023-02-17 17:00:54','2023-02-17 17:00:54','2024-02-17 14:00:54'),('f3afee09381542acc32fb4d814f4a7f23e3395f3586f1b3c7503440033ad6b5b22529cc056dc4d27',109,1,NULL,'[\"user-app\"]',0,'2023-02-01 23:17:14','2023-02-01 23:17:14','2024-02-01 20:17:14'),('f3b1b4a0e3d886005ae0e0c3e0c0468b94ea0368154027a25d4bc59f35c459047d523b478ca50c34',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 17:52:21','2023-07-17 17:52:21','2024-07-16 12:52:21'),('f3c0a2e4473745ab700f5ad873428c1797de2aa95dc03ce641d3f1d5d0582c7df82dcac1207578a9',2,1,NULL,'[\"user-app\"]',0,'2023-07-05 20:24:44','2023-07-05 20:24:44','2024-07-04 15:24:44'),('f3cb3caf06024119c145d0034fbf0178a9e3e5391290fa7b2f0b558063494a7822e680f91a35304f',1253,1,NULL,'[\"user-app\"]',0,'2023-04-13 17:56:27','2023-04-13 17:56:27','2024-04-12 13:56:27'),('f3e8aa9e51545dcebecece0beb0a94b4d0339b76ec212364b1edd1f270de7059f28639e4fca42c0b',1611,1,NULL,'[\"user-app\"]',0,'2023-09-14 18:37:42','2023-09-14 18:37:42','2024-09-13 13:37:42'),('f3eb8ab823ba517db14128ebdec704fbb0cc8867c5d12197254322a7a309501dfd1710a5a5bcd4a9',1462,1,NULL,'[\"user-app\"]',0,'2023-05-16 16:32:28','2023-05-16 16:32:28','2024-05-15 12:32:28'),('f3fbafc3e131511e92ff1b0e7fcb3fa8439968e1ad9dae2afde969d1e483dfd22a8ee2c9330e8811',2,1,NULL,'[\"user-app\"]',0,'2023-10-02 08:26:51','2023-10-02 08:26:51','2024-10-01 03:26:51'),('f4119a3e92d5ebba012f5b1dd7515de74923dfdbeb9caa9caadb6de70eb4682accf089531fa90567',2,1,NULL,'[\"user-app\"]',0,'2023-02-04 12:14:24','2023-02-04 12:14:24','2024-02-04 09:14:24'),('f41454e936ef589f6ca5a1ac339bc61de1cf67b8599f3a5ec7adea34ae6317532390fa300a786fe6',735,1,NULL,'[\"user-app\"]',0,'2023-01-26 14:58:14','2023-01-26 14:58:14','2024-01-26 11:58:14'),('f42d1b598a1abc5bf092d23fb6b1bd07ae0272aa3c20b52bd3b1bd0bf454c7ce57f393d66803b1f3',1061,1,NULL,'[\"user-app\"]',0,'2023-04-06 12:38:58','2023-04-06 12:38:58','2024-04-05 08:38:58'),('f42eb33772c01abed35e29cc9c4cd7717e97b0e1ba7e7a64a8ec7304d71b4f832ddc3ad2e16665e8',2,1,NULL,'[\"user-app\"]',0,'2023-03-30 22:00:28','2023-03-30 22:00:28','2024-03-29 19:00:28'),('f43a35373345cbaf4270b9f24ac11172f2a4cd468ebcaadd7172f99cb73d94471c6c4c233f6a2465',2,1,NULL,'[\"user-app\"]',0,'2023-08-19 14:11:43','2023-08-19 14:11:43','2024-08-18 09:11:43'),('f452970dc30bd112e2c6e329fe72b5e84fc74bb3ebeeb373498cd6044970ee19cb0836644dda9190',192,1,NULL,'[\"user-app\"]',0,'2023-02-08 12:41:41','2023-02-08 12:41:41','2024-02-08 09:41:41'),('f46342bce69615787c4552aa7f48d6afe1931c1741c83b175fd59aad5d3f9be6ae57b9b0a19b00de',1761,1,NULL,'[\"user-app\"]',0,'2023-07-22 10:12:23','2023-07-22 10:12:23','2024-07-21 05:12:23'),('f47079f5eeef31aec6c0994f0dea03a974caf2fad73c300301b754122c1e0a24e915526dcf0d2b9c',2,1,NULL,'[\"user-app\"]',0,'2023-08-01 15:17:07','2023-08-01 15:17:07','2024-07-31 10:17:07'),('f476cb2a0249385106c4ac9eb5bbb41c1079276f15aa5b7a9c2b8080d76f2b90835ab4942fe5f695',1391,1,NULL,'[\"user-app\"]',0,'2023-05-09 19:14:58','2023-05-09 19:14:58','2024-05-08 15:14:58'),('f47afd1bfb006f43588758f13e1b1e3cafcf971c5442a0a08f4c8e91ac3cfb96ae835261426eb526',2,1,NULL,'[\"user-app\"]',0,'2023-04-07 06:30:02','2023-04-07 06:30:02','2024-04-06 02:30:02'),('f47b4234422b8f447333325aded60e13e639989192c751dcb4c864a67cbd74d17053d59fa5c1c139',947,1,NULL,'[\"user-app\"]',0,'2023-03-27 12:35:38','2023-03-27 12:35:38','2024-03-26 09:35:38'),('f49ac77270bf1adb5147ebadc2a0cf7ce907ebf0199789d17ef42da193d947a0ff55637f6ddde478',948,1,NULL,'[\"user-app\"]',0,'2023-06-22 23:04:08','2023-06-22 23:04:08','2024-06-21 18:04:08'),('f4b12659708225db0e23a5e18a5a420d24f188ce0d9784392c910b3177d1884169f1fe7b4862517d',953,1,NULL,'[\"user-app\"]',0,'2023-04-11 22:41:30','2023-04-11 22:41:30','2024-04-10 18:41:30'),('f4f9058db6d625eaabbacc0c770253aeff5a370e7fb559622578cc563d0911efa8eeead60cf4ed46',5,1,NULL,'[\"user-app\"]',0,'2023-04-13 19:46:46','2023-04-13 19:46:46','2024-04-12 15:46:46'),('f4ff327b687994f98c91b772fa22f2d7626b70db307de1234d9aa6bd9c8a7cf1f7f183aabaab7812',120,1,NULL,'[\"user-app\"]',0,'2023-02-23 20:27:04','2023-02-23 20:27:04','2024-02-23 17:27:04'),('f5019ebb22da797bcc088d20959333771c09ca33ebc9a1bb664dcfab524a6dc42d0cb1de32250c6c',13,1,NULL,'[\"user-app\"]',0,'2023-02-15 15:02:38','2023-02-15 15:02:38','2024-02-15 12:02:38'),('f509e1ac3822e8ffc2550b3f440ff376a52b5f11d44fa425da5d23e12685a9997aa1eb14391c409f',1390,1,NULL,'[\"user-app\"]',0,'2023-05-09 18:50:21','2023-05-09 18:50:21','2024-05-08 14:50:21'),('f50e034cf0f74f4943c91de5dd275de5611957225155c20f6bb4e5a809be14ae56bcb91bfc82deb1',2,1,NULL,'[\"user-app\"]',0,'2023-06-02 01:11:18','2023-06-02 01:11:18','2024-05-31 20:11:18'),('f515f8f2084e0749db2baaf2f5f9066f54f2f62a76404f7f188d6bd26b8035fb481b66d1854b7a24',1737,1,NULL,'[\"user-app\"]',0,'2023-07-11 10:46:00','2023-07-11 10:46:00','2024-07-10 05:46:00'),('f51e7ba07a6a4312c143d9622f91eeb2a6f2386a7f3ab471fea0dfe3fd4557274de0971adc1614f8',2,1,NULL,'[\"user-app\"]',0,'2023-04-25 19:17:05','2023-04-25 19:17:05','2024-04-24 15:17:05'),('f52df5aeb0dcbd13213c03534f41beb2f7aed511a3f80a4964f8dd63c9a7956a5cfe3928137d72c6',1450,1,NULL,'[\"user-app\"]',0,'2023-10-02 01:23:25','2023-10-02 01:23:25','2024-09-30 20:23:25'),('f5379cbcf623d32ccfbf45d5f402ed4404567085261ae7c939059ffca4325a72471a41558113a39f',827,1,NULL,'[\"user-app\"]',0,'2023-07-13 12:50:44','2023-07-13 12:50:44','2024-07-12 07:50:44'),('f587fe66c433b5fd7a5135b79d0f3ec61e606c71c5f6d9f9e7d8095abe689fc8f5b2493e1a6a4edf',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 15:57:59','2023-07-17 15:57:59','2024-07-16 10:57:59'),('f5a2bfc042cef4b0aec4d07f929d5ca095b2c2adba702d1a2710c8aa8abb3a646d1bbe10d4620ab5',392,1,NULL,'[\"user-app\"]',0,'2023-02-14 13:57:53','2023-02-14 13:57:53','2024-02-14 10:57:53'),('f5b09a0a7a821b0abae4180ac065461fdddce55b30896875bc2311ec88cd30612099c5f85618bfc4',813,1,NULL,'[\"user-app\"]',0,'2023-01-31 11:16:42','2023-01-31 11:16:42','2024-01-31 08:16:42'),('f5ce5f3efc556c506126093974ec1ef5f17e26bb0badd6437f19b9e24b60ae235540fb519c156e5f',1118,1,NULL,'[\"user-app\"]',0,'2023-03-07 01:40:23','2023-03-07 01:40:23','2024-03-05 22:40:23'),('f5d73f383f2a625970490d8dd34c6f497d3a56d4bfb2c3aea1cdec813dbd17c7ec5f80429c5dad55',1536,1,NULL,'[\"user-app\"]',0,'2023-06-08 00:13:21','2023-06-08 00:13:21','2024-06-06 19:13:21'),('f5e05c94db97df536c85c6c45be4479f7d3194a7397d0eacdc8ea842fd860248420613c7a9e30714',1567,1,NULL,'[\"user-app\"]',0,'2023-08-26 15:26:22','2023-08-26 15:26:22','2024-08-25 10:26:22'),('f5e092df6ab1750073dd57a6452918d50bed11aa1a0d61284a37f99e40f736a2f28c9590d1f9854d',1075,1,NULL,'[\"user-app\"]',0,'2023-02-25 00:12:07','2023-02-25 00:12:07','2024-02-24 21:12:07'),('f5eceeb13b4b6565cca66dcde65fb776a4f65dbb653d9908972de874a63bcb07a1d07aa31e41dac4',947,1,NULL,'[\"user-app\"]',0,'2023-04-11 18:44:35','2023-04-11 18:44:35','2024-04-10 14:44:35'),('f60175a496559234e318b5f88fd26cde8a58101e757379cd2497fc9eeb0ca61be8e74d90387c5cdf',2,1,NULL,'[\"user-app\"]',0,'2023-06-15 21:58:51','2023-06-15 21:58:51','2024-06-14 16:58:51'),('f60595f3db3c21aeb1ea6e7d124bab9c7c43c8c5d3ee4f2cda7b03152062562ab907dd9294f79a28',2,1,NULL,'[\"user-app\"]',0,'2023-02-08 01:11:36','2023-02-08 01:11:36','2024-02-07 22:11:36'),('f60bda8bce85c35186e7fd613cbf82161f35a0364e397c7c91c58b31ef65fdcdd7069c11ae47def4',912,1,NULL,'[\"user-app\"]',0,'2023-02-12 19:37:26','2023-02-12 19:37:26','2024-02-12 16:37:26'),('f6240ff3a0f6f603a9893178c2a16daab3459988bff0e64550ecd8bcdbed7bb7a0bd53d6903f4e47',1208,1,NULL,'[\"user-app\"]',0,'2023-04-04 21:53:54','2023-04-04 21:53:54','2024-04-03 17:53:54'),('f627fb5062069b76183fee2e45ef197407c679c5eb4ad6958756bf10f8b85ddbadb0bcb3b7a76ccc',410,1,NULL,'[\"user-app\"]',0,'2023-02-08 15:33:19','2023-02-08 15:33:19','2024-02-08 12:33:19'),('f63356249c8c64325e3944a850fec3195c79550d0cbae1ea3415c7136086977041ec157644acbb8b',445,1,NULL,'[\"user-app\"]',0,'2023-02-06 16:53:56','2023-02-06 16:53:56','2024-02-06 13:53:56'),('f64409fc7896aaed79b2511ba67b32d41530a40a98a565839c17201a26825f98e707c80c27bf36fc',2,1,NULL,'[\"user-app\"]',0,'2023-08-25 01:49:00','2023-08-25 01:49:00','2024-08-23 20:48:59'),('f6450e93a18974eb50685faee3dbe9397d509204b568848aa6e271cb636104d1377b95f4fbf57117',1717,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:42:07','2023-07-08 01:42:07','2024-07-06 20:42:07'),('f65453c5cc856b1f27cd2abe0989d9e544421a873c8e939aaa7b311b5537f3f28a1f9696ab2c945c',2,1,NULL,'[\"user-app\"]',0,'2023-09-20 02:24:27','2023-09-20 02:24:27','2024-09-18 21:24:27'),('f657fccf5da94cc9777d9d1e8a4fa9836da920e4364485bf437a230c1d5eba2f19b50332b2066395',236,1,NULL,'[\"user-app\"]',0,'2023-05-25 15:59:54','2023-05-25 15:59:54','2024-05-24 10:59:54'),('f67be7335762d2d8839044fecd97c0fd4c5717b20da5c848b49b947eafd4d35b948917aae4259e7f',760,1,NULL,'[\"user-app\"]',0,'2023-07-13 20:59:03','2023-07-13 20:59:03','2024-07-12 15:59:03'),('f6819712e8f08822977b471c9034e887a7f677df8c0bf8174ad231d7e59c3a5dfb217c49916b8ebf',552,1,NULL,'[\"user-app\"]',0,'2023-01-25 02:55:50','2023-01-25 02:55:50','2024-01-24 23:55:50'),('f68aa6b078b92e3589f7aca7e51996784ad679b9b522f6a0ee95b0011d50959d18d5cec54259d684',2,1,NULL,'[\"user-app\"]',0,'2023-02-07 01:25:28','2023-02-07 01:25:28','2024-02-06 22:25:28'),('f69573d62536ae7c25f87569f0447fbf100e4bc98ae0d4841eb9c3b52814ace9016d6688cf9b0460',1366,1,NULL,'[\"user-app\"]',0,'2023-05-04 17:33:11','2023-05-04 17:33:11','2024-05-03 13:33:11'),('f69b32dc4a9333e24a6b7083f7d1cc998828966003203150721646ba6834544b048da31feaed6e49',1407,1,NULL,'[\"user-app\"]',0,'2023-05-18 01:19:25','2023-05-18 01:19:25','2024-05-16 20:19:25'),('f69eb9c9e3da4969ab93ebdc261fdc08f8513298be626c860beb30d049fc8451ceba53c4cb794019',2,1,NULL,'[\"user-app\"]',0,'2023-04-01 15:33:13','2023-04-01 15:33:13','2024-03-31 12:33:13'),('f6a0e9ea738bcfc0748a9a7d8e1581ff2121e592731304294ccea5ea0b2120f18a446425a8c24ab2',1417,1,NULL,'[\"user-app\"]',0,'2023-06-15 21:59:58','2023-06-15 21:59:58','2024-06-14 16:59:58'),('f6a5481b8603695aeff6daaecf6b0f390a362000f3b49fa0e6cdce13f4d9963e57dab3328db5f663',1177,1,NULL,'[\"user-app\"]',0,'2023-03-29 20:36:26','2023-03-29 20:36:26','2024-03-28 17:36:26'),('f6b3c56e2c0a156c00340ce74b00e0e5c176acf9b28ce929d010f4b13cb022223206e4bb4acfa2b7',990,1,NULL,'[\"user-app\"]',0,'2023-02-19 13:31:46','2023-02-19 13:31:46','2024-02-19 10:31:46'),('f6b8554481dcdaafabefce72f571b851553df18d005ab3552d91cc658692d37b50e71fbbd5f7af86',2,1,NULL,'[\"user-app\"]',0,'2023-09-04 17:23:21','2023-09-04 17:23:21','2024-09-03 12:23:21'),('f6c36c806de8dce98f779740324cb4d0aab38c8eae7a88e2013833fa33dff58ca047492f190ef0ea',2,1,NULL,'[\"user-app\"]',0,'2023-06-17 04:25:50','2023-06-17 04:25:50','2024-06-15 23:25:49'),('f6c52244c78227df36d8f47bbeb8a5f3a996cc6a941dbb5222f0ee9b15badedcfc444a7ff5ac21df',976,1,NULL,'[\"user-app\"]',0,'2023-02-18 15:40:58','2023-02-18 15:40:58','2024-02-18 12:40:57'),('f6d7f81a92b3dafe72e3462033fe690a988691e9e1c8565d2572438ff5269c6f44fffb2c54488d08',766,1,NULL,'[\"user-app\"]',0,'2023-01-27 23:28:03','2023-01-27 23:28:03','2024-01-27 20:28:03'),('f6ed2a9d1ef8db6b93aa9fba4ff8ac12eed3fab1a95970f98d098bc6004e12f0cf1bd80ae7cbec20',915,1,NULL,'[\"user-app\"]',0,'2023-02-13 23:20:25','2023-02-13 23:20:25','2024-02-13 20:20:25'),('f6f8ec214be9c7a591f524e1b71ea4f8a28e68a917baf4d792f263b79047fba10a2438d4475b63ca',2,1,NULL,'[\"user-app\"]',0,'2023-09-23 18:55:54','2023-09-23 18:55:54','2024-09-22 13:55:54'),('f703ab40103f89c96d46f5f1a8d22b52e987cd5175562dd9e29c56ff782cfcb89115d8c490858f34',1386,1,NULL,'[\"user-app\"]',0,'2023-05-09 14:48:43','2023-05-09 14:48:43','2024-05-08 10:48:43'),('f71fbd97a5d1455f4bf74a086416077f776bc83b095117114f3542b2900548f3e21de967cf8fc08b',1069,1,NULL,'[\"user-app\"]',0,'2023-02-24 13:20:28','2023-02-24 13:20:28','2024-02-24 10:20:28'),('f72a99d2f41d585bf175ad2c8239bdebef6aef6e5bb3db9b50e6663b2f8ed916317c6298bb28e575',8,1,NULL,'[\"user-app\"]',0,'2023-06-14 22:14:57','2023-06-14 22:14:57','2024-06-13 17:14:57'),('f73b1acea7fc300a0043ffdbc9fac61ac4300445961c9c684a8769965919273788570e6b404de36d',456,1,NULL,'[\"user-app\"]',0,'2023-09-08 18:30:23','2023-09-08 18:30:23','2024-09-07 13:30:23'),('f73ef20a64a4fe81697d1577df4cbadd8b6ef574786efcb8fbf7b9226b4dc0ee2178bd80e78095a7',1687,1,NULL,'[\"user-app\"]',0,'2023-07-03 12:32:17','2023-07-03 12:32:17','2024-07-02 07:32:17'),('f742c74303f0f75500d6807c9b0cd4eda459fc265aa887af510f29cf8bce7e2f14c219153b37185d',2,1,NULL,'[\"user-app\"]',0,'2023-04-22 02:45:24','2023-04-22 02:45:24','2024-04-20 22:45:24'),('f74681563b4bf09e2f7c333d8656567de3d0344f2b80afda18b581381428089623e8395cce94f72a',2,1,NULL,'[\"user-app\"]',0,'2023-07-30 13:03:12','2023-07-30 13:03:12','2024-07-29 08:03:12'),('f78733cc92d6048db7e1e2d67b94696ee60bc3d56cb693f097e3a607d8b50f11f49ee4a7d3858037',883,1,NULL,'[\"user-app\"]',0,'2023-02-08 17:21:19','2023-02-08 17:21:19','2024-02-08 14:21:19'),('f789a8937cb41781123ca63e1da98e53df0d1810bdd7fcd4e9372e4f06a33a23261fc56f5d7a1e8b',2,1,NULL,'[\"user-app\"]',0,'2023-07-17 17:55:17','2023-07-17 17:55:17','2024-07-16 12:55:17'),('f78bf15729362b291519cef42563f2b76148652c81b7dc8f669bda39b1e9e31688e6cdb0a7055c5d',2,1,NULL,'[\"user-app\"]',0,'2023-08-26 20:45:15','2023-08-26 20:45:15','2024-08-25 15:45:15'),('f792ebd46f4cfe771e6e082457cd40944c224acd8836d494b4085f8f90c83d5ba5f2cab5d7e8be18',707,1,NULL,'[\"user-app\"]',0,'2023-02-06 00:47:31','2023-02-06 00:47:31','2024-02-05 21:47:31'),('f79a49539397d31a8ecadc7add7bd9ef950287f1aab10a50034e7957597c15ef765c7b76b8fc6d93',1542,1,NULL,'[\"user-app\"]',0,'2023-06-09 10:11:42','2023-06-09 10:11:42','2024-06-08 05:11:42'),('f79a77faffce40f7b02b5980c6374112b1f1e6eb7a08bac230fe6c7eee4ecb14e3e5f22f7adfa794',888,1,NULL,'[\"user-app\"]',0,'2023-06-28 15:47:58','2023-06-28 15:47:58','2024-06-27 10:47:58'),('f79da6c2adb72e27337bc96283c07f2e476a3deee891e4b77787010ed4357430db241ec0c352c25f',1005,1,NULL,'[\"user-app\"]',0,'2023-02-24 10:59:28','2023-02-24 10:59:28','2024-02-24 07:59:28'),('f7a3334965d67b73d1229b905b44b37e4cb4192b40ee6ce49cafffb24059d25f655f4ca5288fac48',2,1,NULL,'[\"user-app\"]',0,'2023-07-31 16:09:20','2023-07-31 16:09:20','2024-07-30 11:09:20'),('f7b597625d7cc146cbb1c19406ca6bba42518bd1635bbbd631aeb1a0e11ecc63faf37a1f9701b560',2,1,NULL,'[\"user-app\"]',0,'2023-03-28 02:45:41','2023-03-28 02:45:41','2024-03-26 23:45:41'),('f7bfb2592496f0b0a210260f554ad84cb7b2a90449b72a4026e596286aaf28d4a3ed66fc3b003dab',1012,1,NULL,'[\"user-app\"]',0,'2023-02-21 00:58:33','2023-02-21 00:58:33','2024-02-20 21:58:33'),('f7c3f85ac2ec30f3509ac0d98edba8840ddcb4e285a1f65138d1c7aac56733045bcc3c9d206dbc22',416,1,NULL,'[\"user-app\"]',0,'2023-09-19 21:42:46','2023-09-19 21:42:46','2024-09-18 16:42:46'),('f7d93fa35fee3c858486811a6768cb263655429ec42efd06bb84d2cc5c9a6966b1a921d7619302ef',203,1,NULL,'[\"user-app\"]',0,'2023-04-05 17:21:30','2023-04-05 17:21:30','2024-04-04 13:21:30'),('f7f1cfa4e5c1119681abf8892d8a27046c97f81acbd085567b9f856e82f3591a75c61ebfc18985a8',1043,1,NULL,'[\"user-app\"]',0,'2023-02-22 21:24:27','2023-02-22 21:24:27','2024-02-22 18:24:27'),('f80a80e36211281f037dad09ec5820c32199301ef28dc0ee1134a48cb5e72a9805317e1b4ce2bc19',1407,1,NULL,'[\"user-app\"]',0,'2023-05-17 21:03:33','2023-05-17 21:03:33','2024-05-16 16:03:33'),('f8126a7f3c79c2a6627b96c7978c4a6b54cbf91335418ad4d6d27bfdfcd19b1e4a2c09362c25e0af',2,1,NULL,'[\"user-app\"]',0,'2023-09-15 18:59:04','2023-09-15 18:59:04','2024-09-14 13:59:03'),('f8193ac05503eee45d64cebb2c134c1fe2dea3a0db52e4ca939b31b77e6f4c74a304fe367ca40359',1093,1,NULL,'[\"user-app\"]',0,'2023-05-04 03:12:56','2023-05-04 03:12:56','2024-05-02 23:12:56'),('f81ad759fd80f76bab668cada00be8190827c2e4b29c9e5b51c04b223704531496f93b5355e22266',2011,1,NULL,'[\"user-app\"]',0,'2023-09-18 22:27:41','2023-09-18 22:27:41','2024-09-17 17:27:41'),('f837792b4518714c5b9c13d22adea19206235ce2ef1556ef735198140246270d46f7c681f48d37f8',757,1,NULL,'[\"user-app\"]',0,'2023-01-27 15:55:12','2023-01-27 15:55:12','2024-01-27 12:55:12'),('f83ab9eb26538718b9a16661b135a58c9d70f370280ed8478ed67e73adfd2287b710b416f677ea61',897,1,NULL,'[\"user-app\"]',0,'2023-02-09 21:36:23','2023-02-09 21:36:23','2024-02-09 18:36:23'),('f843dd14c5e4b92d95c71b64b66ef0caeadeb604f3884a8309a76905bfa1f44cf1cf551e64350ae7',1110,1,NULL,'[\"user-app\"]',0,'2023-03-03 04:23:52','2023-03-03 04:23:52','2024-03-02 01:23:52'),('f84b3f18a27782a3a42571820dcaad91aa363c42e18a9ad75cafa35dff1a098c6862c849c6286d82',1506,1,NULL,'[\"user-app\"]',0,'2023-05-27 16:03:59','2023-05-27 16:03:59','2024-05-26 11:03:59'),('f84f698dbd51c653a5653a54dfc65a5a07cb204958d8a2e6812dc06ad743f630d0c422c0c02b4f2c',1945,1,NULL,'[\"user-app\"]',0,'2023-09-04 00:57:05','2023-09-04 00:57:05','2024-09-02 19:57:05'),('f862deeedf35a95c12c98bc22588d4b9970acb2e0e3f7fd855263f9378e5d4f6c77caf76d86cdfb9',1841,1,NULL,'[\"user-app\"]',0,'2023-07-30 23:56:21','2023-07-30 23:56:21','2024-07-29 18:56:21'),('f873de39df681833ca01742ee0c6d5aa8dc5b7185abbb7e4b3e7aa5f2dce22ff7c7fa03969125da1',1631,1,NULL,'[\"user-app\"]',0,'2023-06-24 02:15:27','2023-06-24 02:15:27','2024-06-22 21:15:27'),('f874f85395aa66b399180fc4f5293151ff0c36c9d24b77cf5f42c5d0cc6908dd2a50e3ad41ad9ade',719,1,NULL,'[\"user-app\"]',0,'2023-02-07 14:06:30','2023-02-07 14:06:30','2024-02-07 11:06:30'),('f88190aecb3778fbcbd81054c09bc32004ea3515d98d68c1c007d589ce93c3b270934f10ea8f8210',2,1,NULL,'[\"user-app\"]',0,'2023-05-06 10:32:16','2023-05-06 10:32:16','2024-05-05 06:32:16'),('f89807368accdea9d728cf2ecfbc91eda152be651a20692f855bae9905162dc1127c36d6fae255fb',264,1,NULL,'[\"user-app\"]',0,'2023-01-25 05:31:22','2023-01-25 05:31:22','2024-01-25 02:31:22'),('f89e5934f140656886705def524e4fb6d1cf7514216b63f643e36400856a67cc47a09bda83293a4d',167,1,NULL,'[\"user-app\"]',0,'2023-01-25 15:06:54','2023-01-25 15:06:54','2024-01-25 12:06:54'),('f8aee20aba5b4c497545b5d2e0fea2bd487ae7d1057de80860db80193d45909dc74d4578cfa9e1e0',785,1,NULL,'[\"user-app\"]',0,'2023-01-28 19:17:45','2023-01-28 19:17:45','2024-01-28 16:17:45'),('f8ba4ad9faab933ede378ca3002024fb5f9f5ad991fbed35c84a73a4fcf119127b235a5e1d97a075',1018,1,NULL,'[\"user-app\"]',0,'2023-03-07 15:45:35','2023-03-07 15:45:35','2024-03-06 12:45:35'),('f8bcab36ee9c44be010a604fd62247dfc09c6022a705b44a2d2488fbde280c31f43f5f1ba9574e57',2,1,NULL,'[\"user-app\"]',0,'2023-02-26 12:52:05','2023-02-26 12:52:05','2024-02-26 09:52:05'),('f8ebd6491965bba65a7be4e18f33258f3739ad764a702b28160132ed135c11643138bb378cd75598',2,1,NULL,'[\"user-app\"]',0,'2023-10-02 12:21:08','2023-10-02 12:21:08','2024-10-01 07:21:08'),('f9004cdf3e0040b12f10c7544af10cb20148045655e251d233f0efe88dd9e241e4ca52d941c9fafd',1215,1,NULL,'[\"user-app\"]',0,'2023-05-16 18:33:01','2023-05-16 18:33:01','2024-05-15 14:33:01'),('f90b2fd684482c9b5ed8527955860a380b31ac6847289fc234fe117d8c54157917cf9db2c14d8768',1420,1,NULL,'[\"user-app\"]',0,'2023-08-09 21:23:31','2023-08-09 21:23:31','2024-08-08 16:23:31'),('f922274a3ab779d388d4a390a8c60cc87a3544f555dd6f783131eaf7dd598dff66c072dd84d53601',1568,1,NULL,'[\"user-app\"]',0,'2023-06-15 22:03:02','2023-06-15 22:03:02','2024-06-14 17:03:02'),('f948343d56ab871a90b1e81b124eb960c3c9f600c8384d39654b1a08e6100b9043e0df02ea4ecc8d',1407,1,NULL,'[\"user-app\"]',0,'2023-05-17 18:12:53','2023-05-17 18:12:53','2024-05-16 14:12:53'),('f9486cf1156a2fe5e8a864124a897a32b61655e0c8f8bc18812c4153b00d6edf370d00b1cef62f49',946,1,NULL,'[\"user-app\"]',0,'2023-03-27 22:20:04','2023-03-27 22:20:04','2024-03-26 19:20:04'),('f94dc298698e46f19b6963995205f7306cbdb83214b8baeac1eec0c72d60ff3f40650e5ab405b8ca',103,1,NULL,'[\"user-app\"]',0,'2023-01-28 11:34:00','2023-01-28 11:34:00','2024-01-28 08:34:00'),('f94ded53ba610a37303ffa6769022d774b32f0c4b693e0ad04c434c5d82d54152ea6f62a28acb178',1389,1,NULL,'[\"user-app\"]',0,'2023-05-09 18:26:42','2023-05-09 18:26:42','2024-05-08 14:26:42'),('f97085c12d2ed8b42d5a5e5a9afff06b3e8e403930ced37e17da13f7aeaccecfa1493a56f19279b6',534,1,NULL,'[\"user-app\"]',0,'2023-01-25 10:13:59','2023-01-25 10:13:59','2024-01-25 07:13:59'),('f989e28b42e1340011401882bb101ffe7195e9d5a27b3ca3f324ed89e8cb499cd10fd2c41a1abf1e',773,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:12:48','2023-01-28 13:12:48','2024-01-28 10:12:48'),('f99894a7ccd5071355d882a622f211fad51f1602c8cf970f8b716fb0a801df21206972e71c634242',181,1,NULL,'[\"user-app\"]',0,'2023-02-07 20:21:52','2023-02-07 20:21:52','2024-02-07 17:21:52'),('f99b44d27bbbfa0c9d5422917f3b27f4aa325ef856f0bb28985fba61322e0b73507632e57dfeb9fc',1476,1,NULL,'[\"user-app\"]',0,'2023-09-16 00:09:38','2023-09-16 00:09:38','2024-09-14 19:09:38'),('f9b7dbf3f3db562a064f6761ff72e7f539c22d37a653946becd93f12b74a1fe63cccd57bdf5a2402',216,1,NULL,'[\"user-app\"]',0,'2023-01-25 10:32:30','2023-01-25 10:32:30','2024-01-25 07:32:30'),('f9bcf3c02120367f35857a169f59bf3823fbef574d6f9cb7cac6fcc4779f528eb55350b1e86cb583',224,1,NULL,'[\"user-app\"]',0,'2023-06-04 14:48:35','2023-06-04 14:48:35','2024-06-03 09:48:35'),('f9c305c73ca8114aba1dc1fe0b37c41890b0c81bf98d707b7e86f87f705a44629d2fce91777010d5',1185,1,NULL,'[\"user-app\"]',0,'2023-03-24 02:36:49','2023-03-24 02:36:49','2024-03-22 23:36:49'),('f9cc5d0c126d60ff8434bcac033805d0b07dca8b5e2e091d6d3c4b32bb609443a6279df6d3f144d7',1135,1,NULL,'[\"user-app\"]',0,'2023-03-12 02:17:15','2023-03-12 02:17:15','2024-03-10 23:17:15'),('f9ce33e6ce01fe955b5a7dd5620f5010a2b609ccba56cd21d28e78659e92370c9a031394a91d0249',1034,1,NULL,'[\"user-app\"]',0,'2023-04-04 18:37:23','2023-04-04 18:37:23','2024-04-03 14:37:22'),('fa01b024b4e901405655576db15134da2a0a70b82a3c5f9d3e633d75c0d94b8b257b54912b6bd26f',2038,1,NULL,'[\"user-app\"]',0,'2023-09-27 20:52:38','2023-09-27 20:52:38','2024-09-26 15:52:38'),('fa14006bcd60e9bc28c845cf65714a3d6d2efa3f3abf28932701d3f0289dcedc83853d7ddcc9ce81',920,1,NULL,'[\"user-app\"]',0,'2023-02-14 19:39:17','2023-02-14 19:39:17','2024-02-14 16:39:17'),('fa21705739bdc174f0f0f0e9556d9f0f386790b2c6f81830ab7b96685113edb1360ab9957047fa5a',809,1,NULL,'[\"user-app\"]',0,'2023-01-30 21:09:51','2023-01-30 21:09:51','2024-01-30 18:09:51'),('fa33446a1017ed72cecbdcfa5348af332086cd71d833c9b52a8dd05a00ac6919244250f6f8dc40b0',2,1,NULL,'[\"user-app\"]',0,'2023-07-10 20:32:03','2023-07-10 20:32:03','2024-07-09 15:32:03'),('fa3eb9c497872842a95b6fa37b2d091fa15f302babdece1f9ceda0fe514e4c10fe4898f796b2d7fe',1715,1,NULL,'[\"user-app\"]',0,'2023-07-08 01:11:19','2023-07-08 01:11:19','2024-07-06 20:11:19'),('fa49adc69d17aabc153f41e4f55e12441aaecd09278403e181046bba0717f0b3d548704ea0822879',790,1,NULL,'[\"user-app\"]',0,'2023-01-28 22:29:50','2023-01-28 22:29:50','2024-01-28 19:29:50'),('fa50e854df708ff28b00bec0209f3eb44cfd4f3267b26936175c6929b6e5c08a0e02ef8f16b586cc',111,1,NULL,'[\"user-app\"]',0,'2023-02-03 17:33:42','2023-02-03 17:33:42','2024-02-03 14:33:42'),('fa6a14d0670a7e26237184bf0da83ec054d0005a629954d6ef6f90eafd1931e7e7db20d3e7c96e5c',2,1,NULL,'[\"user-app\"]',0,'2023-09-26 17:34:52','2023-09-26 17:34:52','2024-09-25 12:34:52'),('fa6b0c495f4734b6d9fbb0a80e80d5e598effa4022a9a6ad79f163231161f3da1e53e65495a947e6',306,1,NULL,'[\"user-app\"]',0,'2023-03-16 19:16:43','2023-03-16 19:16:43','2024-03-15 16:16:43'),('fa749f523c5fa511dc828c71854dee0e0883c6b1f1b4d5464510aef0b96aa4945fe9d25003e6cbcd',1980,1,NULL,'[\"user-app\"]',0,'2023-09-12 21:04:00','2023-09-12 21:04:00','2024-09-11 16:04:00'),('fa74d8f27e791042b3dfc4f5f803a5469038cfab690998f0259d7487ac51dcfe89728ceb6764f29b',2,1,NULL,'[\"user-app\"]',0,'2023-05-24 01:00:57','2023-05-24 01:00:57','2024-05-22 20:00:57'),('fa853b761da4f036b45c3fd10e25b2ffdc008dda4f05b8045df3d9099a68960c17908a1af8d1775b',1693,1,NULL,'[\"user-app\"]',0,'2023-07-03 22:31:11','2023-07-03 22:31:11','2024-07-02 17:31:11'),('fa9449ae09148a692bd05166fe4502e1047ad098abd0c01acac77d016febf569c925000663f1219c',200,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:35:47','2023-01-25 19:35:47','2024-01-25 16:35:47'),('faaf53f0b570ecfc504ba3c7f677a764b20592c1c78729f182bdd39f01aa7b848bb01fb61cdc6b9f',1848,1,NULL,'[\"user-app\"]',0,'2023-07-31 22:29:13','2023-07-31 22:29:13','2024-07-30 17:29:13'),('fadaa062557c744adc03e0edc13860e61dd37049eff0bcc98306153367be307de95d656a2e1df2a4',219,1,NULL,'[\"user-app\"]',0,'2023-03-29 21:02:35','2023-03-29 21:02:35','2024-03-28 18:02:35'),('faee282e5fe7457cea9053b8d4609555099877543c828347e61323731ff4cf81039f8b6e4cfc38f4',680,1,NULL,'[\"user-app\"]',0,'2023-01-25 16:26:29','2023-01-25 16:26:29','2024-01-25 13:26:29'),('fafeb7a338fff42379d880dde218973229a17acd8cb625b7f2be0b875b9eafbdf66332b168cda0c5',2,1,NULL,'[\"user-app\"]',0,'2023-01-28 21:10:35','2023-01-28 21:10:35','2024-01-28 18:10:35'),('fb302c37e28ec467b6505de0b0b96af2dd491e2afb30b35a03648d7519794d78b380383b4b89b2b9',706,1,NULL,'[\"user-app\"]',0,'2023-01-25 22:03:12','2023-01-25 22:03:12','2024-01-25 19:03:12'),('fb3601f1b8ef63ba8fc8f7d910b017ec689d9a539907d4c2ab047767e608517db2f7230e0a962040',2,1,NULL,'[\"user-app\"]',0,'2023-08-15 02:08:10','2023-08-15 02:08:10','2024-08-13 21:08:10'),('fb3c7f94c451a97043ff63b5d0108afef4a3ba2d27292aeeac7d7f09c0893b94f08056eb78e60f46',517,1,NULL,'[\"user-app\"]',0,'2023-03-09 00:17:01','2023-03-09 00:17:01','2024-03-07 21:17:01'),('fb580de331d6bee7d432e3b7a75830445b5a5cfa52757ca23431504400f77cbb4e37ddbcf2d4e476',207,1,NULL,'[\"user-app\"]',0,'2023-02-07 16:12:54','2023-02-07 16:12:54','2024-02-07 13:12:54'),('fb67632b63126df83bd412e3fa4772aede58e0e43180c5deaf610ae1bea7aba68eff3cdbab3f7fae',1198,1,NULL,'[\"user-app\"]',0,'2023-03-26 02:39:03','2023-03-26 02:39:03','2024-03-24 23:39:03'),('fb689588e5584d074f0953531a9273d4bccfc098539c356984f22f327227b812a4ec4dff96b33ef7',2,1,NULL,'[\"user-app\"]',0,'2023-09-13 17:24:26','2023-09-13 17:24:26','2024-09-12 12:24:26'),('fb7eef5949948c1e6b5529e6fbcd47a8a5630eb6f28249e199c24247278c8273f220b9452e105df5',2005,1,NULL,'[\"user-app\"]',0,'2023-09-17 15:23:52','2023-09-17 15:23:52','2024-09-16 10:23:52'),('fba0111b5b762401b3586048d80401a2a22892757ab8d4a582c835983955c0cf058e400555d22ba7',1801,1,NULL,'[\"user-app\"]',0,'2023-09-02 12:06:26','2023-09-02 12:06:26','2024-09-01 07:06:26'),('fbaba29e31a69c8da5b9ea5ea4e492820d2df8f10e12eefcab62917bc5ddcc64cb9b33a077a8856f',647,1,NULL,'[\"user-app\"]',0,'2023-01-25 11:38:28','2023-01-25 11:38:28','2024-01-25 08:38:28'),('fbb282e032406597ab0f9bfb851e64d8237916341a2736e3cc863c2b29626afefdce4aa95b965578',1106,1,NULL,'[\"user-app\"]',0,'2023-09-20 03:18:31','2023-09-20 03:18:31','2024-09-18 22:18:31'),('fbb7bf4c46e9099937ce70573eb00d7f5015796b407ac078522a12c9747c256b563a660e6f27494d',377,1,NULL,'[\"user-app\"]',0,'2023-02-04 00:38:50','2023-02-04 00:38:50','2024-02-03 21:38:50'),('fbe23b6cbd9c366a9887ca8f193a1c2c4b59947facd06bd3f7e8b8286a7ae206c861d415509b5454',1092,1,NULL,'[\"user-app\"]',0,'2023-02-28 00:44:10','2023-02-28 00:44:10','2024-02-27 21:44:10'),('fbe8d1508c9b3c3c052324edbe4c1d19ecffb1b97a21b2d9431263f8580d404263c96b5f12e3503b',922,1,NULL,'[\"user-app\"]',0,'2023-09-26 12:59:28','2023-09-26 12:59:28','2024-09-25 07:59:28'),('fbf9e2909b2e535fdb3ab7dc1df0eb9af2f0c57845ef1da5be3a52042416c990ea503c4330662120',1052,1,NULL,'[\"user-app\"]',0,'2023-04-10 04:36:17','2023-04-10 04:36:17','2024-04-09 00:36:17'),('fc018e633ea2b0a40a08425609ec8ddfca78c0cec502a0e1e79c796471525d6b9af5187dae057b83',961,1,NULL,'[\"user-app\"]',0,'2023-09-22 23:55:35','2023-09-22 23:55:35','2024-09-21 18:55:35'),('fc0d2bdbbf321b5ca48c25b79d0ca9036b7ac308610baee1ff8e4458a958d181bf06b66b8e84d670',1853,1,NULL,'[\"user-app\"]',0,'2023-08-02 19:35:47','2023-08-02 19:35:47','2024-08-01 14:35:47'),('fc347ff96ac10d676cc4f5a5e13859406ea105781ee200bd0912810f71060300996897ecc0a5ef35',2,1,NULL,'[\"user-app\"]',0,'2023-02-22 14:59:41','2023-02-22 14:59:41','2024-02-22 11:59:41'),('fc49f2bad8e4602cdabd13ae1de8988e8cc83d0c28fa13cbee12d01af3a7929cced27e12f4572095',853,1,NULL,'[\"user-app\"]',0,'2023-02-03 20:02:11','2023-02-03 20:02:11','2024-02-03 17:02:11'),('fc5166415263ffb8a2e38a70744b42247b7691a60a2235de886fb25fd30f2e3c298c33dc40d3c536',1001,1,NULL,'[\"user-app\"]',0,'2023-02-20 19:58:57','2023-02-20 19:58:57','2024-02-20 16:58:57'),('fc5572f8d6a1948d4f02129ac31df5f74d15d1278602570ac862311b207b9bd817a89325fe3331ad',1413,1,NULL,'[\"user-app\"]',0,'2023-05-10 18:48:22','2023-05-10 18:48:22','2024-05-09 14:48:22'),('fc86af520bcbc26dce87d99e3de445843efa44c7a3bcdbddf61579bd6057af1a34581ee09203d948',1497,1,NULL,'[\"user-app\"]',0,'2023-05-24 21:47:38','2023-05-24 21:47:38','2024-05-23 16:47:38'),('fc9ca9d21be67a1cf274029782e67d074a6e831270b654e5637331b87b5c832f2d6d25a9dd445cab',1500,1,NULL,'[\"user-app\"]',0,'2023-05-25 11:42:42','2023-05-25 11:42:42','2024-05-24 06:42:42'),('fcb4654c8cb0744b655afc4dcf13a6b803b469884a981d8b42cce74ad1a07f47b94fb4043746f9d3',2084,1,NULL,'[\"user-app\"]',0,'2023-10-03 17:27:47','2023-10-03 17:27:47','2024-10-02 12:27:47'),('fcd1eb9a8ecf555ee92252b5b737639ff88f40961858f15d1a90e22bacf8fc6f6f8791c6a0658cad',280,1,NULL,'[\"user-app\"]',0,'2023-07-07 13:46:53','2023-07-07 13:46:53','2024-07-06 08:46:53'),('fcda696340076e4144340a0add1e55383255b407db873e12fe5d493fc7f375856997d682943d7242',55,1,NULL,'[\"user-app\"]',0,'2023-02-14 18:44:46','2023-02-14 18:44:46','2024-02-14 15:44:46'),('fceb3000f5d04514ca172e957635faef7d3f4bfde74c2fa13d100caecc22ac9fa4e00c16cd53955f',1248,1,NULL,'[\"user-app\"]',0,'2023-04-15 03:41:50','2023-04-15 03:41:50','2024-04-13 23:41:50'),('fcf2f0a4552a565c30e10b506afe9f4c3dbfc1e065cc54eccc07f2e5c492b5f62eb05224e3bd122f',775,1,NULL,'[\"user-app\"]',0,'2023-01-28 13:43:48','2023-01-28 13:43:48','2024-01-28 10:43:48'),('fcf34b96e78bc94a8e52405caf73f4f9da53978b7fb60eda3482e1230d2a753e1b15f18930dc2d86',1605,1,NULL,'[\"user-app\"]',0,'2023-08-10 00:55:33','2023-08-10 00:55:33','2024-08-08 19:55:33'),('fcf59c84f52881e75f1733930bb154d199c259b4f89a08e91d6bb8fcfd27c1aa5bb1a558022d3ff3',1225,1,NULL,'[\"user-app\"]',0,'2023-04-01 13:30:00','2023-04-01 13:30:00','2024-03-31 10:30:00'),('fd012c966efb54f8b7face7aebfc310cad4d0d228a8a091e5d67f78200463d1c37bf980813a12eb9',1637,1,NULL,'[\"user-app\"]',0,'2023-06-27 16:28:55','2023-06-27 16:28:55','2024-06-26 11:28:55'),('fd0f3e780ffbe43f75fdb0489b1ced086c5b4c3218c62ab970356b000156382621f0e48d4f90d50d',2017,1,NULL,'[\"user-app\"]',0,'2023-09-19 21:36:42','2023-09-19 21:36:42','2024-09-18 16:36:42'),('fd1b91f37a563599ed1753234ce02040c9a97ba2813391ca7f826a0cf669623fe078f1f5374e25c3',343,1,NULL,'[\"user-app\"]',0,'2023-08-15 18:25:57','2023-08-15 18:25:57','2024-08-14 13:25:57'),('fd1f970f249f0857ccdb8e1644f209310edd3ac20c7ed8d9215c66cb6fe62d70ddab9ca0f5deeb53',466,1,NULL,'[\"user-app\"]',0,'2023-03-11 13:33:57','2023-03-11 13:33:57','2024-03-10 10:33:57'),('fd4c1c2af258953620e050c20348b532461386dbefb8618fb1ed68a05892ae7081529a177452351e',2024,1,NULL,'[\"user-app\"]',0,'2023-10-05 21:29:08','2023-10-05 21:29:08','2024-10-04 16:29:08'),('fd653a16c670b50f025128e7bdd2df2546c5967c56905d58f29ead5660b0d8753cf4e5a3ed8f0365',1433,1,NULL,'[\"user-app\"]',0,'2023-05-12 12:45:23','2023-05-12 12:45:23','2024-05-11 08:45:23'),('fd6967f785eabbd0ea2eeabf8960d40f9cf4248a6359e8df86d6a5fb0d4a7993d020d367bce27e18',876,1,NULL,'[\"user-app\"]',0,'2023-02-08 01:14:32','2023-02-08 01:14:32','2024-02-07 22:14:32'),('fd6a07620f2d20015f27967fdb448470b8b5c2c5c4e0e3c56f6b2f7acd8822f635ba1e7b6d7fa523',1568,1,NULL,'[\"user-app\"]',0,'2023-06-27 03:03:34','2023-06-27 03:03:34','2024-06-25 22:03:34'),('fd7323a08499d34db11548c257c4f163db97d1177d6c11ad25d5d840f9fe11627c6a6cc1cab9d2b3',63,1,NULL,'[\"user-app\"]',0,'2023-04-13 15:43:47','2023-04-13 15:43:47','2024-04-12 11:43:47'),('fd7356539904a3a8721d16edca51642c4c376eb58551aad55ec03d39fef72ce6f1debc10cb778126',1708,1,NULL,'[\"user-app\"]',0,'2023-07-10 14:51:02','2023-07-10 14:51:02','2024-07-09 09:51:02'),('fd9f9930cb709779fc20bd463344e330f4f5e32d63c863ccc3a79c6cf0f240f6fc5807fcd31f7ab8',208,1,NULL,'[\"user-app\"]',0,'2023-05-03 23:08:47','2023-05-03 23:08:47','2024-05-02 19:08:47'),('fda5771f308137bfe7badc4aa5a163bb43927f3b38c3f29d991464777fc74d2c7e9d5bbcccdb9163',841,1,NULL,'[\"user-app\"]',0,'2023-02-01 23:38:12','2023-02-01 23:38:12','2024-02-01 20:38:11'),('fdba7fe172667b70a7701fb32939a3fe40d35a261e708c4f6268ab92dae4a0eb487bee36e3f5cdf0',1067,1,NULL,'[\"user-app\"]',0,'2023-05-04 21:13:51','2023-05-04 21:13:51','2024-05-03 17:13:51'),('fdbc39b6e5519b45ff913e8a6152615e5c64cf4883759180a9e1b21cf18254f168007726e833a0f6',2117,1,NULL,'[\"user-app\"]',0,'2023-10-07 21:25:01','2023-10-07 21:25:01','2024-10-06 16:25:01'),('fdc253d89fe112fce8ce0952cdeb4cb53767c0bfa9bf4aac2209a616d931dc9b68cfe79c2080ebb5',1992,1,NULL,'[\"user-app\"]',0,'2023-09-14 18:57:19','2023-09-14 18:57:19','2024-09-13 13:57:19'),('fddca3001f15ca9b9f8ea9415b2972b06588a1f0dc474126b66f6db33f24026bb73bd16dc832b619',2,1,NULL,'[\"user-app\"]',0,'2023-09-16 23:09:01','2023-09-16 23:09:01','2024-09-15 18:09:01'),('fde08b748d60024787ed19704de059368111871b685552ba033af81b5ba72ffa8c2ad6f1e7b32aeb',1439,1,NULL,'[\"user-app\"]',0,'2023-05-12 21:05:45','2023-05-12 21:05:45','2024-05-11 17:05:45'),('fde2a9a17f16dffb88585cbd8767d80d1faa1612c61a7bb20b9cf5b9cd47e0f60bc41c346d0db9b7',1968,1,NULL,'[\"user-app\"]',0,'2023-09-10 21:47:19','2023-09-10 21:47:19','2024-09-09 16:47:19'),('fde4f79e2ebbcfc051ea63a0d5753eafbef54fcb546254c9cba79fe4c7bf6b1aea4699e190af191c',1984,1,NULL,'[\"user-app\"]',0,'2023-09-13 15:02:44','2023-09-13 15:02:44','2024-09-12 10:02:44'),('fdf130386d1288b0dfc0342bfdfdd481539825c32eb57c1eaf2549b9455cd473379ddf0b3ec79bae',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 18:39:28','2023-01-25 18:39:28','2024-01-25 15:39:28'),('fdf65e6fe4a3820ff9b00a62070ba597e6ad37689cff7213c440b053afdbb06eda440d6fac6a0229',1896,1,NULL,'[\"user-app\"]',0,'2023-08-19 16:30:44','2023-08-19 16:30:44','2024-08-18 11:30:44'),('fdfd45840baa3f245110ee897524878305ff89834e724118fe0c9a4dc66571496ecb4b3f92ed16a4',1463,1,NULL,'[\"user-app\"]',0,'2023-09-20 19:50:14','2023-09-20 19:50:14','2024-09-19 14:50:14'),('fdfdb3bd2b0ba864a3e63e973056fc52b57d05385711aeeec9cfb42aa47e42e27a3bf916f423d744',920,1,NULL,'[\"user-app\"]',0,'2023-02-26 01:15:25','2023-02-26 01:15:25','2024-02-25 22:15:25'),('fe058ccdd31774b77dc0d4ca13a22ba721846e6059a9db700f2cc76d3454f6bd41d1a95447a252ef',862,1,NULL,'[\"user-app\"]',0,'2023-02-05 08:09:32','2023-02-05 08:09:32','2024-02-05 05:09:32'),('fe121909e8f803d397112a3f06b2d47e5853913d76636f54fd8ebb94f67533f309305d0e7090ffa3',2125,1,NULL,'[\"user-app\"]',0,'2023-10-08 04:06:47','2023-10-08 04:06:47','2024-10-06 23:06:47'),('fe1a4910ac80c0587f8f908cf3c535b86026bdf9c658c1a39a45bd01697ef762dc19fc67a76c5ea0',1007,1,NULL,'[\"user-app\"]',0,'2023-07-18 00:17:32','2023-07-18 00:17:32','2024-07-16 19:17:32'),('fe2c74d9dc2fe7dec025d56a39e5c2aa684fe32c192ce75cd48da60fd58f7ad0a88972e56542cf0a',1985,1,NULL,'[\"user-app\"]',0,'2023-09-15 01:21:48','2023-09-15 01:21:48','2024-09-13 20:21:48'),('fe30a94bc9398333e2ccb860e09155c8a408858e434bd084c2beb82d85991de3f84fb732ac02bf99',2,1,NULL,'[\"user-app\"]',0,'2023-04-10 04:37:00','2023-04-10 04:37:00','2024-04-09 00:37:00'),('fe4c5acf1e2f4676cc7b0e2647ca318264013908982eb4a81aec06f06102879fabe5c6df26a3ed60',2050,1,NULL,'[\"user-app\"]',0,'2023-09-25 16:46:13','2023-09-25 16:46:13','2024-09-24 11:46:13'),('fe5f22e51b7ece8d91f9b9d44f7edd4614fc22ee4ae83e55d75f6ccbd89d1c626f6a34f220a1e35d',1165,1,NULL,'[\"user-app\"]',0,'2023-04-14 12:47:25','2023-04-14 12:47:25','2024-04-13 08:47:25'),('fe76f58d27ca9f28e64968d3566dac15aa7e06d3a1918110f1f4503c093c738be80184277c166eb1',436,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:26:58','2023-01-25 19:26:58','2024-01-25 16:26:58'),('fe7d9ae7591d71297526da71b1376a21c427d3904be09241d72c2930bbe97393384f239b4bfc937f',1144,1,NULL,'[\"user-app\"]',0,'2023-03-12 23:45:45','2023-03-12 23:45:45','2024-03-11 20:45:45'),('fe867f80764455c704b6e0438d8b50ea1f9c2fa10037bb7716f7a3fb575545ecda2cbbb8d2c7ef67',2,1,NULL,'[\"user-app\"]',0,'2023-07-08 02:03:52','2023-07-08 02:03:52','2024-07-06 21:03:52'),('fe99d5dcb6ed2ab4135e1cc1a4751501f6d6f8d924ec33c48788f1aac6aa8ddafb08e5e111636c09',1055,1,NULL,'[\"user-app\"]',0,'2023-02-23 17:04:05','2023-02-23 17:04:05','2024-02-23 14:04:05'),('fea4404beab4a521ea050705bdc9e2aa3c5d914aa7133e532a73df6dcd372c5e82321361678602ec',982,1,NULL,'[\"user-app\"]',0,'2023-02-23 16:54:48','2023-02-23 16:54:48','2024-02-23 13:54:48'),('feaff6fa445f3b8313caa949d85e5738835d8e814aa2928f300e7737d8297418e267744aabb5231e',978,1,NULL,'[\"user-app\"]',0,'2023-02-18 18:26:26','2023-02-18 18:26:26','2024-02-18 15:26:26'),('feb2a92b2cc5ef7c9f4b2467454a625928e7592d717f670e367a4f9e5d2f4d4a17982d290d34538f',92,1,NULL,'[\"user-app\"]',0,'2023-02-28 22:02:12','2023-02-28 22:02:12','2024-02-25 19:02:12'),('fec1fa3f56171dda04ce492c172638d51fd7c2c54046a695b73a3d22c6f8877fcba4f42952d7bc3a',25,1,NULL,'[\"user-app\"]',0,'2023-01-25 12:30:57','2023-01-25 12:30:57','2024-01-25 09:30:57'),('feca6a07b8ebaf5ef774500bed2a71babfec836a3727dcd0fc50517b2199f1f96d3ed6ae26ab0268',2,1,NULL,'[\"user-app\"]',0,'2023-08-24 04:48:37','2023-08-24 04:48:37','2024-08-22 23:48:37'),('fed5f1f5893d7e383b4385bc926864246c5bfd32f5ef32fa98674d390161d81082b82854c0975a32',2,1,NULL,'[\"user-app\"]',0,'2023-02-02 17:37:47','2023-02-02 17:37:47','2024-02-02 14:37:47'),('feda62a4c815552566a357c84dede3544f2098f5d5dbe8ea74423293beb53a471ef2c7ca1ff53a86',986,1,NULL,'[\"user-app\"]',0,'2023-02-19 10:28:22','2023-02-19 10:28:22','2024-02-19 07:28:22'),('ff09316003d7e7da8a77c97acb657216bcc9a30a81622a84a31835ee156e49ea9a32f4af168e3c36',1054,1,NULL,'[\"user-app\"]',0,'2023-10-08 18:08:41','2023-10-08 18:08:41','2024-10-07 13:08:41'),('ff0c213418ea7f91fd8356f93a2834d769cdd268483bffbe81bde46c22b7be038e5bbcf6eb12722a',1293,1,NULL,'[\"user-app\"]',0,'2023-04-21 14:41:00','2023-04-21 14:41:00','2024-04-20 10:41:00'),('ff11009ac50ceb55102f2da187a7771eda343626aba0326ca1ff0a559b32a8aae74c8c6a3336116b',2,1,NULL,'[\"user-app\"]',0,'2023-08-18 02:34:26','2023-08-18 02:34:26','2024-08-16 21:34:26'),('ff26d50aca6111f04a9842ef1fe942d2120f7ffdccee13017f48331f404f12ea085022281769bcb0',818,1,NULL,'[\"user-app\"]',0,'2023-01-31 11:45:28','2023-01-31 11:45:28','2024-01-31 08:45:28'),('ff43b9b28f94792fe32c61658bcc6d6a8f4768cbe07e252b148f9909bdf4f19c58570c19de0d4dc9',1676,1,NULL,'[\"user-app\"]',0,'2023-07-01 13:08:59','2023-07-01 13:08:59','2024-06-30 08:08:59'),('ff48b02a49b8e3d2a1bfc59b4f5c81e18476b6d41fe10dcf56a7702fb307b2b7da1071b129d44f26',537,1,NULL,'[\"user-app\"]',0,'2023-03-27 11:47:17','2023-03-27 11:47:17','2024-03-26 08:47:17'),('ff4941a3316e7104e304175de495991d1f60a378bbfec7b0893a92588e6aba3247cc723ab3740f5d',606,1,NULL,'[\"user-app\"]',0,'2023-01-27 11:01:16','2023-01-27 11:01:16','2024-01-27 08:01:16'),('ff5789214a0b914f08a0aed6f35a82490db23a96a00f08f7f38471282f3de7ebd06fea091d23e74e',2,1,NULL,'[\"user-app\"]',0,'2023-01-25 19:33:27','2023-01-25 19:33:27','2024-01-25 16:33:27'),('ff607008571659de1c445877255f03dbb5110cd05d5d9c48f4472757e1ff6644cb710d61f7d8f1e8',851,1,NULL,'[\"user-app\"]',0,'2023-09-28 22:33:52','2023-09-28 22:33:52','2024-09-27 17:33:52'),('ff82f06b2034aae8d520e4d33f2949b8129c90190cde144241201426c4cc144107028084bf8b9d31',1538,1,NULL,'[\"user-app\"]',0,'2023-06-08 20:43:46','2023-06-08 20:43:46','2024-06-07 15:43:46'),('ff8a4bffd31bf3ce0acdf43135f6523e5a41d1d055c3dcc819f56ad7fab14d2421a0fae070f9a5d6',1114,1,NULL,'[\"user-app\"]',0,'2023-03-04 14:23:21','2023-03-04 14:23:21','2024-03-03 11:23:21'),('ff9b6ee6851a28176dc445e05071ea61c674edaf939306e3d61e62464f66fd7ce770b9b9db2fbce5',210,1,NULL,'[\"user-app\"]',0,'2023-05-03 17:07:52','2023-05-03 17:07:52','2024-05-02 13:07:52'),('ff9daa0a00b0464615e56c9b973d7e7343677d14f63d497e0a7fa3ce715966e18832e0fdc1281eba',2,1,NULL,'[\"user-app\"]',0,'2023-02-11 07:42:37','2023-02-11 07:42:37','2024-02-11 04:42:37'),('ffa9e23ba4f4d648e749d5f68d287686956bcddef920b9bde069d9d5f147690ea15b51f61eca9a3a',2,1,NULL,'[\"user-app\"]',0,'2023-07-26 22:19:45','2023-07-26 22:19:45','2024-07-25 17:19:45'),('ffcdfa61aaf7fbc62fea8637533c2e82eb60233288b27940d05dd62e336de0122a33b31ef5df245c',554,1,NULL,'[\"user-app\"]',0,'2023-08-28 18:10:02','2023-08-28 18:10:02','2024-08-27 13:10:02'),('ffe86f3426c160af67e956b3be07d79a28f55d0e6ed58a906e7f96d9bb7e1ef68497912d38265681',2,1,NULL,'[\"user-app\"]',0,'2023-08-13 14:17:38','2023-08-13 14:17:38','2024-08-12 09:17:38'),('ffeb160da49dbb507e12286517d16b2eed357eafc9d60d06e7c72fb15a3f0794d1ebb2cbde575335',1031,1,NULL,'[\"user-app\"]',0,'2023-03-04 17:44:57','2023-03-04 17:44:57','2024-03-03 14:44:57'),('fff0a84b6610050e04a32a296b4c344c4a2f87aebef17e329704d56fc61c75ad4a053751e3fba110',2079,1,NULL,'[\"user-app\"]',0,'2023-10-01 02:07:56','2023-10-01 02:07:56','2024-09-28 21:07:56'),('fffaf041e0aaad11c136275ecba40d0c44965fa2834efbb62329d7c96f03c4183e308c2aef8d4703',948,1,NULL,'[\"user-app\"]',0,'2023-03-27 15:08:40','2023-03-27 15:08:40','2024-03-26 12:08:40');
/*!40000 ALTER TABLE `oauth_access_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_auth_codes`
--

DROP TABLE IF EXISTS `oauth_auth_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_auth_codes` (
  `id` varchar(100) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `client_id` int(10) unsigned NOT NULL,
  `scopes` text DEFAULT NULL,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_auth_codes`
--

LOCK TABLES `oauth_auth_codes` WRITE;
/*!40000 ALTER TABLE `oauth_auth_codes` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_auth_codes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_clients`
--

DROP TABLE IF EXISTS `oauth_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_clients` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `secret` varchar(100) NOT NULL,
  `redirect` text NOT NULL,
  `personal_access_client` tinyint(1) NOT NULL,
  `password_client` tinyint(1) NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_clients_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_clients`
--

LOCK TABLES `oauth_clients` WRITE;
/*!40000 ALTER TABLE `oauth_clients` DISABLE KEYS */;
INSERT INTO `oauth_clients` VALUES (1,NULL,'api password','fT5p4x6gBX50f16u5y5EydDTdOKystD2WMQ2TWEW','http://localhost',0,1,0,NULL,NULL);
/*!40000 ALTER TABLE `oauth_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_personal_access_clients`
--

DROP TABLE IF EXISTS `oauth_personal_access_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_personal_access_clients` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `client_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_personal_access_clients_client_id_index` (`client_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_personal_access_clients`
--

LOCK TABLES `oauth_personal_access_clients` WRITE;
/*!40000 ALTER TABLE `oauth_personal_access_clients` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_personal_access_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_refresh_tokens`
--

DROP TABLE IF EXISTS `oauth_refresh_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_refresh_tokens` (
  `id` varchar(100) NOT NULL,
  `access_token_id` varchar(100) NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_refresh_tokens`
--

LOCK TABLES `oauth_refresh_tokens` WRITE;
/*!40000 ALTER TABLE `oauth_refresh_tokens` DISABLE KEYS */;
INSERT INTO `oauth_refresh_tokens` VALUES ('000d009b62c5cc9e6aa4293360190cf51d3707db2cf5e411fe4ee4796b5a161dc1a0807668b330db','9f1326f281f1cf9931e7024b9bc1f8f731ecb3cb0b129d3031004208e48ff30b1bf2fbb2a0923598',0,'2024-02-26 22:16:14'),('0015ff2a7aa05b5c350e863887e173c5b6012032c01864dc39be1137b249e21c84a6ded92e8e8507','35dc7396ea82ba63f1a3d3af6fe573b1f887a81b7aae486c3fc8c00ce9b9b73387ddd4dcc282422b',0,'2024-09-22 19:58:42'),('0016ccbd9fb0cc4c2680e1a050dfa3f54c2739daa84dfb5c1256fc1d8383c2b1235b0bf19fa78d55','c9cdb4d64aad1b24ed479f568e17c39a9f164dd516108b8aaf7fb674e18ff7555e71b72ef1fda2fe',0,'2024-02-21 11:13:17'),('0025da76a1d792e25d2d668798970872220a35d4506de972f909a9292cdeada193631e646d8d54c1','2d9bda1cb63ccb011f5f40f96e0bb50264dbe9ec1f2f89b669fb20e30c9491915c354862156a6948',0,'2024-02-22 14:13:11'),('0026f4f1284a7361c85298fd6d9337fe46916830131b9e79f4494843b3257f8ba283c5d730ac83fd','d1ec833f39a7c40961bcdf70853afe0283b31477f09ca89e41835b65ea4223d887078e2c922c2d1e',0,'2024-10-06 11:08:42'),('003ca708d9fd4f4167f37168431fa857723b3a2bd82e79032732b2c025891f5b60f9837a3cb04b2d','1ed54773db5623ee23ba4f2b8e6c799f9d9c16886cc9d41d17fd2780194dfbadda8f348343d7735f',0,'2024-01-30 16:22:51'),('0053f020c4c0fb6a907051805068e93727a0367cfd94eeb06c0d64fb4be9248689d4f6dc4abeafbb','46198eef4c790141b553a4ac6fffc9fda05d0ce17395bece16b34794dcd20314d1f919f10514c0b2',0,'2024-05-11 19:53:04'),('005888e3fef4be8542968056315d9e876a78ebbb60ae6fa622d129c640fd50e579ab9f86bde8ab5a','f6b3c56e2c0a156c00340ce74b00e0e5c176acf9b28ce929d010f4b13cb022223206e4bb4acfa2b7',0,'2024-02-19 10:31:46'),('00983682fda0429c75bb9d4e40321062271a220d402bd5f138187f954d10fe9ef31666bc852fff85','b6b089b7fee8fd60e206d8742d3f028687ee5b842ad95707ac00831b1a593889eb8beabae35741a8',0,'2024-09-12 14:07:57'),('00bd88732c3a41efbc2b8ce7e19699b208aa505fe0d38ddbf6f9f68ddad301cb729ab4ae69c11d90','b75eb65e95543a5460965767920521fca8d4227038c8aee17bfdb7aa96b95a7cb7046cc65e0e52d3',0,'2024-07-11 21:42:56'),('00be9bcb1fef929b4d79f1fba4bb574562001fdf2736b5dd9a15921f69d83491f16391abb90b21c9','64747902b657da4472b669b72b398ebba722a6d2260d960c42d6fa6903c6b3f63cf4dfe899b646fd',0,'2024-02-20 19:47:35'),('00c8cde06b257ba7f1c68e62019528c5875d14308d8c871c03182cf31c25afa7ebea4faba9222f40','d08f387ec7197f3862d7fcbfaf72936b0c2a0283f2c4a1dc6e8ab58e0ba722d14c24a3fda33b9372',0,'2024-07-06 11:13:18'),('00ddada7b196c2d8c23bbdc256dc243fcfdef4e4f77e88cefb2a902f7600b766b5cdcdb777f7000a','2c1cbbe19565fddbfd62deb04047e9df8ffd8a91e865950025a8aae70f5c14e10aca71621c08aa4a',0,'2024-01-31 14:29:26'),('00ecfc20e68b728eeeff89ced0a47c472bedd120004f1f06fa224326d124a29f9a4d17698a07cc9f','660a9457b51d1cbd6e93c84a79c4576e0b8152c5eb35c80934d45672383b0282d61f1bfa5839798d',0,'2024-01-28 10:14:19'),('00f3d7580aa2217adf69f02d82c763668ee81ea8c918f339b0af8e8c1654b21e02152353d4548784','4f0b96c770300946b93825096b5f5d3ca69ebc3d1c7ade8a394c2b8c032159750b072ebd74d12207',0,'2024-09-03 08:15:20'),('010498bff26294f7a5e2d9e164c221904ce1ec4ddf7a30dbf50d9c2edf745b90c5b2dbacfbad77ef','cd1538b9eb4ebbc5159d113d6d98ada15e6cacdd7970eb0d4dea3e016727139012ce11e7642324cb',0,'2024-09-10 19:23:23'),('011b4047f2622e420a6d4ad33a9b3d2e98be166ff7bdd733eee3cd56b5fcaaf2d081b76a9240c22c','fd6a07620f2d20015f27967fdb448470b8b5c2c5c4e0e3c56f6b2f7acd8822f635ba1e7b6d7fa523',0,'2024-06-25 22:03:34'),('012029a998877ddf890ebf1bd5f0d0fecd8e079d2a0240c89f5f2f73613e2edb619660619163ca49','758012b587554a20478e36edee76e0a42676b2ece2e91d39781401ed5c094eff662d609d1131b25b',0,'2024-03-27 13:02:21'),('013e6203931deb7f4b41c1b2aefd178e76cb87ed4485c25020d3a57981fb117fd82be07eae33b339','83ddb622ae0b6cafcb63a81cf71d35e2d5d1e491c79066c03924819b385c7fad1d5a96050c051877',0,'2024-02-20 17:46:27'),('0159aac72273ebe29277ac459f104b56624a57db1d7c66ee940ca8ce521e1a511ac7af4c2fd1047f','3bf75edcacea141eeb250b77783786391ad4d84ac71746c5e040ff5a2a27a6e3fbf548ab2ff41a87',0,'2024-02-21 14:11:41'),('015b5c4b5b6da67a69403c33335035ac2c012bc4d2e9a75834f63124ee55a2124b59ac737ac6f63a','c1f3552aacdc29aa7707477f7e5183de01a8ed90398fea1bcf40850b546438065888572f2c932976',0,'2024-03-12 01:15:56'),('017edd837182d845d747939d9948e55b968a0ecc1906f2de6407308d8c01c0f47ef5ffa7b5916210','3d3585342c30ec6b882551ac3a2d3091eb96fdbdfc3809ccd70d15a376e405f7e76b8a0bdfe0c693',0,'2024-04-23 09:42:47'),('018230dfb380cf4c5f5629d8958418d6129974e6a8e2ec6c652afc5af707c6aa870c09b4711d0c40','7fc663c4f6c48313df3f80f33bd943d09b20f9e805edecd5a6297eebb1011027b97896cdbe063662',0,'2024-04-12 14:56:13'),('01c25c4ba9529b9ea15a4d2ba506f3adb0f82effb0df1c40e9e21591c46e1ee5f35301cc8f85b124','9988f1abc221223e75122ae8e4e373eddd9d16b03c535cfc3cce9f767519ff0ffccd642abaa2c694',0,'2024-06-02 18:52:45'),('01c30590979fdaa89404de6b7d54623cd553308a22fd3e4a0937b0fc41300e7e20a886a4a76493d5','761d94752c151fab7b26bef97a28b80b7ee1576a74078c1a7ab95d2ac43b75fa1b4388993d5a7333',0,'2024-02-06 22:26:01'),('01d19c8db3c888af45adb0b0f3ccced121d012c57fb1d7e971f3c65b192e970e57e97b5775096f23','201216915e1f8394131beb541bd404c774f8a44184b22e324c997baa4ecf11f789b7039c65c18648',0,'2024-02-02 22:56:20'),('01e4214bf5b247468cfa8f5ca43599f1a3999d2bdc230da67a2b940b903df61bc2dc5c592cb27832','1d5028ff61b6719a3d7f7f3e08270cb59aceb9de13ba29ce37142086d057d7a2baf239d070009f11',0,'2024-05-14 15:32:04'),('01e66bd644f92df14dd33c05de391b33c30db1815b9523212b7ba104f4d8550f24b0b4a175cbdd7a','2c4bccd84eb75997712b160e84bb2e957d1523d6a2700a13724abaf98f840e360c823e7eae2e8c04',0,'2024-05-16 16:04:12'),('01ede27d70e0da43c71f4c3cc2b4540be303a0fa763d79d38c98b9efc82c50ba35b6cee038b47ed4','5a4d285e28ddf05a4ec51997964adb7bab9b4b4a5d282a09681e7995676ac953b15fd6fa4d39833d',0,'2024-01-25 08:46:34'),('020881427429ed1ce5e69d77548ad99ab875dde5d335033d992bc4118e1162d1200a41d0452698b1','c97865881c87f0f74aae1e9f1a9c3c08a182ee4a4934e245bf6ab2b72a2afea0998b2daa2e17e5d4',0,'2024-08-14 21:51:46'),('020cd676a495255e83d69c3462e8924ef54ebbf28b90625e40fcfdc6dbdcf5128b84371be86cea13','c116338b5d3a3bc0091050d35acdc9c00f0bc21bfe7ba04a60d64bd03b961eaa8970ca72b943ccea',0,'2024-05-18 18:55:42'),('0216d8c3b622b7dbd0876d224c201e2b52243ffe55e97554a87122aa6658efd6a21f13c42f23f072','021eacf958f743f3916a054b1a1cdaedf6b91680b701e3e238e2d4a296fdd74c9149c9fffb236ace',0,'2024-03-21 19:04:09'),('021c353bae8753183786748e317b3f9d441d2e9782a4dc15107b561636a2f8e6319b793e4cb13015','54b20ddee4b766f919c1e5245230e9014127bda6aa46b4f069fd3322fa673b4a7cf842008f29bb38',0,'2024-08-08 17:15:34'),('0221d540982197e657dc0bd59075b77998ba263bec0f3a590f9505772f61ff5982f63c788484e5a9','4fe436ca5f485e3c794d5f0b4abb78696ba75eeee74ba0898a0e34ddfeb8fa1f217b2f8b9381d8b4',0,'2024-06-04 17:27:57'),('023e4057297c021d1a096e700aac8bbb95db7448175da68e721afa3f1ed5dc26a7b2928be2affae1','1853150cceca2e4a2ffa56bb6c1308abc0b8cbc61969edc85aea88b4d28d69103e450176b2f13e31',0,'2024-02-13 15:15:58'),('024b98e530dda2aedcec24e3e36c86ecec4628b821339faf74692321a4ea491dfd04bb6e70bc1d93','f6240ff3a0f6f603a9893178c2a16daab3459988bff0e64550ecd8bcdbed7bb7a0bd53d6903f4e47',0,'2024-04-03 17:53:54'),('02650a5904028ac6cc7ad56169b484ba97533bd53276b6a3b6104cc08c91248371c68f1328ad00c7','3a282cfc712174582021a0584c970595185b80d26fab7fc3feb555646df53fc5b26fc139e697486f',0,'2024-02-20 17:48:18'),('0279d853f5fff797b0b4dc25a700ceafd4adcc8e5854e3983715b94e7c7b706f8a2cc9f0098dd37e','a64ca1bb326492ea4682a1a417a0b1b43aac0866a05115fa5ab715519b6fa83f9168907cfedcee76',0,'2024-10-08 12:10:51'),('028c188b34e79a59639c0ecaa9a3efc9a35b31e6bccbccc73ba8e21dd0e0667628b0562f7e937497','8af2eec1a0f16d4cb97d63029a875c785f05ec90074abc3e6af761a4ec9aa9e3791d79ee4111ea2c',0,'2024-06-12 14:54:00'),('0299d125398c60788a636365d254745aff5547255d473f179fdc7b95d36c0f093c5336ec98d6e372','ada81c1e7c9c6caec3ffce2694bb1b746966e157811fc8202c4952f360d3944e22bfa88b4b2f6ee9',0,'2024-09-14 21:50:31'),('02c18ba506fbec845c02b10977765ab9c262b33e5b8162b3f606fdbf63f1355be45f1e2e9db56f4e','1762a2e09ad065da554b1874b1e5e589ea7dbdce07ccadc7d799ca898e2429bd71507750a3e791a2',0,'2024-02-03 08:27:02'),('02c2a138d0aa8c584b3711735fc32e8cf1bedf74f9e569560cd2e5ac45881c36b01ea22f2c061f09','c6a603f59ea75c50e01ed3910f1e4030b8452383ac2d17f6dd6173c29463f68b897ab82961e45d63',0,'2024-10-06 11:00:02'),('02e101c057bf431ab92142b7d33560f127a903ed4a61b091abf732ebf0242c8cc89c08f3a7f7ef9b','3cfad83c1ffae61873cedd8b1ed833ba6a33d54a716cecf2b3388ad862444afcc257c8ac807dc120',0,'2024-04-30 10:06:41'),('02f30b2d96b8320e446a33edd9d80044be08c6204949bda64110ca71d63ba5f5275de3ed0e940704','35c2ab17a2b6d68303abe0b8c1587d18911d71bc0254e4557588eb9c889edbd01d4ed36f14938b0a',0,'2024-07-04 17:25:18'),('0310511ccd9eda61caa8e9f543a13b7212b917f715e5a4b5dd46c3be0ee4cfa5382ba5fb044e22bc','24743989f623694da3db3d587d80d1ca7148d226f2d53dd26d51c4c947583120aedff71178c9e88b',0,'2024-03-06 09:01:21'),('031e91ff1901cb22188dfba793f49ff8704b75e291cbe58067a61844d5d718d1bc26ad750ce61ac6','efce45bcdf5c00f8257064125d815b7dacd405e4ee74673fd50865fcb3198eab366d621e853051e4',0,'2024-04-25 18:29:54'),('03445a5a44a7f8f5232226845121a5ff99814fb62c51501b8bb66dbeeefbade97a0080f6fbbd32f8','f79da6c2adb72e27337bc96283c07f2e476a3deee891e4b77787010ed4357430db241ec0c352c25f',0,'2024-02-24 07:59:28'),('0356602b10d2a95928d0c1a0044d73cf145d9dcf1dadf140daf2139a39dd98c302f8a8c7a041bcab','7916bca3fba1533c1fdbc9be2ee7a86d952883037c7bfb7f8eccf422fa8238b9cece6b9ffb9b2955',0,'2024-10-08 10:15:30'),('03e01011e437129475b0cb381dee53cc9cb0b8d42fc8d6934b225cc72fb5184047b3fe4e7cfe9847','f5eceeb13b4b6565cca66dcde65fb776a4f65dbb653d9908972de874a63bcb07a1d07aa31e41dac4',0,'2024-04-10 14:44:35'),('03e6d596bbc47cf78461da70e56a7aad83eaf01f3aa8ccff34934f78dd7bb0c723f7eddbb7e92089','abdb9e2afadf0e0fd81071e3806114cc36728d87020a74e11210012aa9b004572ab04efa747e5e88',0,'2024-02-19 15:16:12'),('040eff33b8dc38479bb486b7420e43e15dd7b0471037823ead4f81c58b713094d587464f374b4f44','1a3cbd48e4c58201cbd8bb3b91ddea6a65924dc6b3379c2c09a9136272470fea153e5e002bdf6f06',0,'2024-05-15 12:43:11'),('040fc15d47329b747714dc09cda65c23900eb1661bf71ed75b1e2d526d53f467a2197660d891601b','4a13d9bef66c0b89deaf949444eb50b248a2cba63f3bbb3a3f1fc54995bf627de6e28c0ccac12b0f',0,'2024-03-17 23:05:55'),('0415c7dbb5560ae2dd6db0b92c361e7bf3aa813ee9b0f53570f0d70d4b5c1660d25a9bb4dba0e310','0128c3d66c8cb3ab4b200000c99c9c5b8d7fac33aef9c0dd910007ebb882de052c9f3a6445ff00ba',0,'2024-07-19 15:11:31'),('0416314d2992d4eb0bcadb33f940f507e194b84902aab43332f10935244749ee352551c00fa612bf','0d5bffbcaba28c04b46022a2401f25e34bb51a45aaf2e202d099565ea1965be060c7ce0155a12b3e',0,'2024-01-25 10:23:16'),('04264e249ae30b368d4921a7f7e1bff3da86ef5773e1cc0e6afa01346dd890588d225f85618f782d','8cf2031bdd480454f1e9cf3c959712acff0769463aff238e13e72fa6a72ba6612c55ac3c7dd51e25',0,'2024-01-24 23:48:39'),('042de84d478e73b27298b0471ec11a46700bcd5956e912c5655b2954e2c6cd6ac9de77641505d09c','dbe5906b43d129f446c0a0ab2f8a77b4ed73654422e3d98b2df11c24d32039e64df5581cdc1e2011',0,'2024-06-30 09:26:12'),('04357d72ab134f62593abaf7f3fc190a9d14f7e6cc20caeae1b3ae4c82c987ec6705cbec05d26537','ef09686f1899d1837d36446aad3de3822a6a6c544b9cedf204f620252a8d907034e7e674d556741a',0,'2024-02-27 18:34:28'),('04465a69c7dcc462daaa4f6dd31ab024bffba9b6a296628c18d8de9f2814d36b6b7bf071c5c0c453','d4304ad9c896b226c01da2ce9308e06d597e6b20f431347799857ca0c53160d8940908b052f303dd',0,'2024-01-25 16:53:32'),('0488042844bb5a266e0deb0463e1fc47981bd3688ba9b759f7c803b449c09e31284e7f01b94bb347','fc9ca9d21be67a1cf274029782e67d074a6e831270b654e5637331b87b5c832f2d6d25a9dd445cab',0,'2024-05-24 06:42:42'),('048c5b56630df47228e3a8deb5bb43cd14d9830f8eab93a59bdd982635c5e6b782522cc46da5c877','a02a38988b5589c84d16c92cac9a18bb02d423b1de35bee82ff411f010eb5d120148eb934c559dfa',0,'2024-07-05 12:22:07'),('048e44d192b13673e2e887579abe596d1e3512d70305e396f325888669e61709ff6ff8965355740b','64b8350c7424685bb330f9f337c3a2c254d7dc042bcee78801bf5d7ee02f2893c9173de5883c7ef6',0,'2024-05-11 20:29:14'),('048ff5e68c0204aac7a36c9ada688382045d8753995f341b17fed367c0598dbdca5509bb0a3757ee','a2acfbe75efa25a072c8b9b18fa26c78dbcbea9c6a53bcb8ddbcb57b8c61b982bc98eea226576b3a',0,'2024-08-24 07:21:26'),('04929b03cc1b358a15ff4e5c7bbf30d3d62d3dba6271fe1126b7c5bf6213aa3db423ae31045b8e27','840b2b9cbab37ec81e385667deb22df3ed49334e8e5980c89d2177632412399de0c238b66730f126',0,'2024-07-27 09:29:13'),('04abb7315d7bb1c0f6f896803a10c4bc816f5b1750417248a256e62ea304f07612760e59d93e15cc','c16f76f77fd5e364b875fd176615c7d8fe86eb46a874dafdf7129b4d3f17150024d0bbf0e40776c2',0,'2024-06-06 09:14:15'),('04ecac2036fc12f94f77420baa5631fb114096349ed6498fc78db1d16cb7a889dd1816a19caac8ed','3d4c5b8500e381a31908d3f46a5908d95a832347919fe4a45f7fb0e44d23d57961288451abc4af26',0,'2024-05-08 15:56:29'),('04fefe48da2ddfab31e3fd15feeb57cd99046c27689a6e28472fd29b8d46260689719c855bd13ec8','fcf34b96e78bc94a8e52405caf73f4f9da53978b7fb60eda3482e1230d2a753e1b15f18930dc2d86',0,'2024-08-08 19:55:33'),('0503912c2d2b25d639423757010e44f0ac918315dc2562bddd427489ccf9f9de99c662f79fa47671','6e312f064eb192ca3eaa3d305218032eb81ad834e408b70d33ab8eda660b677fc2a3cf31f4efc9d7',0,'2024-02-23 20:47:30'),('050a43a6277cd3ab95df8b054ad26d784a4800859639e5550ac4aff18a63b7c9ed6f80b913a06993','81a14054b0e1a01587efa3f77896e1bfff8a006a786a2dd0b77b3a929025290a1bc55cadae21b49e',0,'2024-08-15 19:31:39'),('05158cd815622b43f8ae405696c1225a4b89940f631228c1940bc0de3bfd59f5653e8ff14035423c','b58413901ea8a7ee428c23e0139ab7b850b98e1dcc5315f681a76d087a5bbb9af776e4b398ea0cdc',0,'2024-07-10 14:06:13'),('052a16453a40c1ce8fa27fdb81e986a052f5836a41e53e86b1e7b2e8108dd5b170b22575738e9387','131c6431bb8870d351869a7f20d9c8bff9c0a863ef8b5b5d30689fc8781cfd5a6b18cf5bdd355ffe',0,'2024-04-19 15:19:44'),('053b161314966bbcaa3a4c9d062a574c883f0a472be5094e34ca671583c74d3adcf2854199fcc1e6','030fa32d539187269e238ff2f567484d22bddbd9f21778e7d582f4ba5dc4c78757724e9b1c4a8a09',0,'2024-02-22 14:50:21'),('053d422302214dec791fb6ddf452b5f927fe880ac7b5dec9b5e354da5a7eb539aa42668305f5bd28','5b9a25f0dedfe7c72338e9cc34fdbd119d113126e9ad0c35fc9629d855d8e3258dd693f2aa8aa998',0,'2024-08-19 23:38:23'),('054329bbcfdfa661ddae7db5e0f843225449d1ae16c7af7c4f048e4bc47bfa274e75ae353779424a','902bb90f74389e1132e622a3696d589776d9bb02e8b760d2bd0c8f1738d2b31d317928e3df5f222b',0,'2024-03-06 07:40:32'),('0545fec7831e703dc8b45bdbdbb6c13bcd221199ef4d1b3fbbfacdf5e838889edb562ad796e57538','36b8748168cb7d25440fd962715f3c2261ab42913dd0c83f6e75eaab244be7176bf5f5c56a788975',0,'2024-07-29 11:06:17'),('054a50f34de72b283c65975d5ae8c72c87e862a97d91ef8aa62471b3e5a6ea8d13f9e25c2ea9c4a3','ad22d8ac76730c91fe85d2c66df0d5b5e35e6852b59167da879e307f4cd173a959a05b471a397791',0,'2024-07-05 12:20:26'),('054e375db3819fb88a3e7bd0813246a76d6eca685ed28f826968ab5cae25ed8c4d9605abc109b3ba','3efc969f2546dbf5139ded012405bc8b621e9c0ee029c6b4ddc7d1fe807ee4216e472b6bdbb50419',0,'2024-06-19 12:53:39'),('054ead412f4a54a9b0f340c48312eae129752de9339880379ef93103037aa99be356051a92d6440e','b7adfb0c1cdcbb56138277f84cae3be52d61b2c8a0b6431e64c08655013c292886fbbbe354137610',0,'2024-05-31 16:08:23'),('054eb645173913d62fd4ed7a8433ae33605f90e9e9c865252c732372fed56517d4a1b83e923bdbd4','a03a61a3e110a07b830260c9191a24a3606edd7913084e481896e36fa45d72c1ba59e9f6575e8ee6',0,'2024-05-26 08:51:23'),('0553fd2d6702441c110079c5ec2d05cd0a8010c85818774986b3cb4924023bfaa7bb43545274e2cc','0280911e89e91d5415b90aef2e035200ed017b5421213872ecd90b969b8c47a83b43937343454595',0,'2024-08-16 20:22:34'),('05847f8b4d91c875df9e4bf0c8a8e268b95f27a9f82bb661a6cb513eb808ee73b930675c970136ed','8108259fe0b4861605195496244b40486d1a492297094119f12bfec1b38cca48dd317ac0818c0bca',0,'2024-01-26 10:54:14'),('05940ea7c72c915f015a44185cfad645f4241fe2ca4c1dbbbbb42b42d5aeb3c70f73540fc364cef4','7b269356efb2720be846d1ea2f4bb93fa218b703de2a1d4155cb5c93980f1e392a6e19a811a6d091',0,'2024-09-01 09:30:02'),('059778fadc2c570a4d6c4d10a5253e67907e543b800a4ffd3336092799293ecf93199bed1f408d6a','ea369f4a0595dd0311f59362e7a31600a173ab44f9cbd216b77cbce5f6c28fff0b5e9e45cf5fcf7f',0,'2024-03-30 09:54:02'),('059d7b76997c207c63547365afcc5d07499000120b7fafe627c36b7bb088c5107ed402def35d8d9f','5ff0c311abfc5541c78d5b744a5a32c31c44f014457223168b7089221e9c5f67b884171f82660e10',0,'2024-06-01 10:25:08'),('059fa0b155780b1efa9cc490dd0e9eabf8c19538b47b8a548d296d51d78b5d45506dd1fbcb062034','a4bc1d159670e9ff1ff3ab08eaf2ea829e302d8f13e979b5fce3f4315d2a9462376927a12cd7b6f0',0,'2024-07-18 14:29:03'),('05a91670a05458d18df89c6b5c846791839697d19a90208086230b83fd58dd0dbeff9067878478ec','6131c8564a6ff25599f33c44fcde30de6ce9c9275ce08949d6b348d6ef50ff9bdff75c38adbb3336',0,'2024-06-20 13:13:59'),('05af9cab7aa4bccfabd2a66afe10a5b3f50bb73cef4144aa929fa9f9a7496d03ee15fb0eff87ddf4','aa4d16f295c2fdbd2b43e9c58026cb746de9ee232046095cebad178627611b6b49b4068bdeebbbea',0,'2024-02-04 20:15:57'),('05bfabf75e6437394a01275f74449a8f28215c0a74f8ad1ea8936f6ab2e0fe32bcab2c91f68b64b8','0386e94a524da3cf1af6284edb6bad543a596b74cfbf1d90608bc12b1749cb0fae47465ca083b5e8',0,'2024-05-15 08:21:04'),('05c0856cd5883668a1a292cb67b8ec4e14494a685949a9d20f134b7404c2da699d3453e74568a4ef','a7403fbf693a370376eeb4ccf82973ccec5720ee0c051b79bf4f646592e0c9aeb7b7779fe7eaf965',0,'2024-02-15 12:49:15'),('05c751cd6b2acba2fdab2469833f9a04bd97f5c0db6b370e03c49b2dc8f0474fa7af051e5377e975','4d631d5a8e631e2e23e44a180116112677053689abb274cf5792c349fa5ffb5ba3b6b414b7e1abde',0,'2024-02-22 15:51:56'),('05cc1f71adf01fb3199eb432dd42cdc6f665f991c7e727d2fdb5cb68a6bfb15bec50226277426d61','75c735814189b8c780a117b93b8f3427a410da408c0fc9ca0cbe9181b9e3ec667eb6bb16d1dfc472',0,'2024-10-04 23:26:42'),('060d0e399c70ddd612ebe1171628b4ab83bec3a14d86370a9c18a53d5afb4bde2ede6800f6f47abe','3ea6a444117520f42c4c859c8c53109176a8c08ec5cd8d436618ceb69134a25d137491ded1e49b2e',0,'2024-04-28 19:36:49'),('060d279dc636c99d48bb5fa17ad358d1ede9b7da0cfe119596f0397b14b9acdeb7d58e819e0e3759','3d059ba652e9facd77c6c60124e99c4b1a81d4d7b3e11529cc4c0657866ff6d80b4487962df311a7',0,'2024-02-26 04:03:23'),('061a6190ec86098b8f2df30412f46c396d145462ad7de1aca71fa1fcd4d01504839964d897c56bb4','08d237914ab4948f1caa62423b6eb4710ab487659bf3e462fdf4c91fc9186fa13fd3dceb73e9b855',0,'2024-09-25 09:01:15'),('061c73bd5ef79f0990886eb2dc861714e0274e7b455160bb60690b9e843a0d4c8b02054c339fbc51','06b2c3b5ab920c714bf57bb5363a88b511d57a104b9be878b946b99b2973503cfc2dbe082ecc70cf',0,'2024-01-25 08:04:53'),('06296e30ffb11ab731391a0f983b8f66763db98172fa838c7ee1532aecd65317478f245f5974db82','22b6e363bc81e4f0946dc6ec22d310159fd13d5740894e01778241949bd902569f10ae4052d7757f',0,'2024-09-25 16:25:27'),('062d3702ea17c404aabfe795baca4712e7b7aea4f4b33c76c9a7905310af86c92c01f98afb138bbd','df7063c23c0504d941e181a9f7e6d979c7f25e9c9b03b01752eb7ad15a793387b3e742c26a74fcd9',0,'2024-01-26 10:33:48'),('06306229840aec51a290a6b30ed9d0574a8ca2dfb0a9bcb7c8c102ae13be70683880b0a74510f587','f90b2fd684482c9b5ed8527955860a380b31ac6847289fc234fe117d8c54157917cf9db2c14d8768',0,'2024-08-08 16:23:31'),('06493c13555d5ded533c179584140f1ed7f35ed3760de2c4cbfafcb8c40ed129260475989caa1dab','e4c8bf3d34b6c5aee8c15074b2deb15d3d168a0f76c29cae6adbf222f2a2d819728d9163006a0984',0,'2024-05-16 08:59:33'),('0664a75e5c0ef9f03c12c766e36eae305a1c2d3200daae3e8e863254ef42e584b822b8283baf80a7','eec1730d545828a08fdcc666dfdfc604ea3412f13de118d99a47a7ebbc5918b9e0441c8710d43b4f',0,'2024-01-25 13:18:23'),('06732d9f0ea6d0489cf728a79f0f16dbed1336e76c0a31838f040c39769ae756abae08327c657a76','0b5128e90d62a283ad0aea6b6522141fdb7d1b9e22db52dc36764abff4590652976191e6f29b59af',0,'2024-08-14 14:02:18'),('06be8d61b03c9c92d33e9d476f58a7d4b847836b4e502242c80c0b13a0e2d13887800971e983638e','4f7f382a2a4bad4ef2c10dc93c4226bb947f8f489312c570671bec914631808e5593807998c84427',0,'2024-06-03 08:42:19'),('06c965cbf74fbceb3460cbd4a4cf93fa836e91c806a9300cdc2d842e5811b40f9c321795e9ad1fc7','653286b0b0074996d0616160fa2142fb7e0e3ff031e736b6d14d95793f12b89530f4a90e81e79c94',0,'2024-02-09 09:11:05'),('06ca3cdd2c590e556d80767c27c45a6b76c48a97ea8a69ac314f6a6a66c71c683b7149f133ee2262','b7b3dab902b18194bfb0e393508b164d86776fabb3de2a16d873accdd720109f92a15eae868d9488',0,'2024-07-27 09:31:30'),('06d57ce9e6446278ee0fbf725ff9950d92e38112b27b2deb1085b4435ccf2d1a6e9246265329a3a3','8844b29cc6658720bb8c739a81bc9e9587e59db780cdc13a3e9abd4727d666e67673c2430b02fd44',0,'2024-03-29 08:58:35'),('06db88a63056901734e3c0ff5a290d458545f9c4c399b211d366a6d306acb19ff225d9c91cb37415','d8212a0151b8649a90345cd4a5881d4e2968bedb205ec41c25b67439933ccdc25411e9a0aa4dc8bc',0,'2024-07-30 08:18:56'),('06dbfd81a222ea0c737628f1a88711fb6ea4d0701817ee8e168022f021c755e0b844f1f7c16d9144','1b3ce1fa98348669ceeaac8a1bfec4ae7d4be543af3bd1527f29321f6fc2457415f5b9903c49c009',0,'2024-08-23 08:52:46'),('07169fe64d4e30b0e845edc9c7c4953c2ac7ffe4246b7dcb2bc9b43b8bfe315bc0ac6109327c0afe','22db24508a270f1474e68e3bba4d1fed329a825f29bb13962002d470630b2d5e125cc9222a367b9d',0,'2024-02-18 16:50:26'),('072c6c30fbf9fb0dbcd4edc6069af656e5df68b081a8b45cbc4139d9d461c1ad53d22ee548f14ede','4653cdf33350aa5fdde14d7de010a195b5c68e975559872a03049beed82f8553f8eacb2d992d391b',0,'2024-04-26 22:13:22'),('0739f0a6cd46d2241347c3593a0b0642b19d5c76a83ac90f67aeab2100320f5e976f9c800f5a703c','f3cb3caf06024119c145d0034fbf0178a9e3e5391290fa7b2f0b558063494a7822e680f91a35304f',0,'2024-04-12 13:56:27'),('074048848eed2c659ea41d9409deaf38cd08439914f991f018a042733fc7d088a10cb699969a8a98','c732ace15bcf18b105d19262d9db0e526446fb76d87ae330db0b871d256b32e2d6248115592ba060',0,'2024-01-25 10:32:50'),('0773ba93572b7c17f530abaa1b40c8b0ca58a7b08dbac2fa0697bf7b89dc9115a9ae1ec78bf883b6','d5a8aa1a82e4557084ee5c3b76338d273403cdabe0a606bcac2589b12c077d5b71350ac226e4097d',0,'2024-02-01 19:22:48'),('07765b582d8cb4bfcc1f82fc09966f4379252e8cb87d1499737a9469209c865015c894357d9f1b98','3d5c068d04e0798d981ad2d86f34977b32121a08efb58df2a0c388db8e14f713025e6bfb3fba0e83',0,'2024-09-09 10:08:03'),('077832cfed473168f31f06f2445dce3937856a9b2cfe686ff69702430a0744688944c798634ccf6c','4271b9a76f13be27f5c9ac94938665926a8cfdc78699a238cf49801b5c42ac445850e42da3677a78',0,'2024-09-09 13:30:15'),('07923c7b3f96c27b64f9288ce4c14d853567dcc1ce946a8aeab14cf11bb399cb8869acbcdc4db941','41cef91db84af1b77da78ee1d079da43b2b409fb1ed48cdfd06fda4fdd27faf21a9f41c4b2c041e7',0,'2024-04-27 15:50:35'),('079cf1c9fb7f00813ac86c0a56b2a57864d284007ccf682daeb4622844ed046273c1de12da06bdba','6a2cccc593f12c4ae5d23d19d625663fa271e32f07d8e9704b479b32d7f80f09137f9dbbeb623cd2',0,'2024-06-23 17:09:59'),('079cf5a516e241f9c202cf25bdfd04aaa744e2e2f67a736c03b07432edd6e631afa8795437973592','87c57d41a51d3774cd6b265ba036ae52703ffeca8b908cbe44c1e61159d337a76f64f904be49ebaa',0,'2024-08-19 20:21:52'),('07ac4918adc4f20c463050c54ad91cc30a0e84c813a3340ad8a4e66b03f91d1bc463484e50280fa8','0f0f5706e4593050669cee9593b7eb98155eba43c359ea1c318a748655ef6003fc6eeff4be864407',0,'2024-06-08 15:08:31'),('07c0ea2863cc41fca24cfb01ccb1e55a5c4100254a72a3d3492f0cbc1bdf410deb202848403dce0d','14f7b5029527e4fbecd9848c551199e1ff109fb9af1bfad805c793bc877013d7a15ca0d16a9cc77c',0,'2024-08-18 17:04:14'),('07c84785052d4efeda646e6f38eaa10d6f4385ffb7b0567d7a9bdd6eaebbd057d5705d06540d66a0','ba26faab1a3a5ff61d81ba595a1c06380671be0f0f179287ad7a66d057b520b5a00cbc8de6e138f3',0,'2024-03-28 15:51:43'),('07caecc0961619cf9911704a3a4335d38d2e72c991b63c3cb835ffc21b9b56410a8074064cc121c0','983c304ff1e33268b20295bda3ba379db445c945f51baec8bdfb5565475ce0b76ebe3302d8ca6291',0,'2024-01-25 08:52:53'),('07edae7c6d2458dc6c49d9007baa14b968c35a079927a3e9c4bd6295c11e8682bf37501cb3c4a5d7','20708ffa3f4e88827e64c61828af8a68196d5c1166107121de078eddbc8218f203b5dc9158f4948f',0,'2024-01-29 00:43:49'),('07f6251f8680d65d8a95f4df0d24f65b77269bd7ce85a79fd11f68d019c47f32d2c6266780b3df77','16041a1cebccf8df5ed0fdb1e3d083ed9ee6e7b75e87ec14c5d22112b0f2a23058fff763532c9aa9',0,'2024-06-03 10:53:00'),('07f6f17f497ea4898b6aa2dd9a7912ff4fa04f61a281e3b271ad326205d2ed59c02fc5a54fe24fb7','560da154ef5e704b4b1e72cfd6bc672e83bfa18438355e6a6c0a379b5a380e59af18237afd291dbc',0,'2024-02-09 09:09:49'),('07fb640f92465021b1a38e8b49e250feeca2ddfbf18ee27aaae4da3b2f360296676a75a80c99a9cb','3dd7d68bde4bea6987dae9b30810ba9e85d361a2f4b928d2a850183136c1473e8a8c20a7371d29be',0,'2024-09-13 18:35:10'),('080476158b8e55781dd746a75107abedc9e9e89cadc45667bb4e48d681494c33c24de9512de36293','f2b141701b46ca3a6bce3185673b032fcffa76c79fd498241e3908bd688e81a8a3258230b669a754',0,'2024-07-11 12:04:08'),('081341ec042d19feff6d690cbea8a12bfdac52dab3f8f1db5bc25dcb2d0c9f6f91a4d6137e52e710','65df15f33ff3cbef61f8a3f06174d4e45ceb4ad14c9f9cffa5481b10c34f051416718de309cd7468',0,'2024-06-27 18:12:00'),('084876bcee681ca249cc48b3160100b57e22e435811647ee5e6c74fa2c3f094f081b645388e2dbd1','87e7f090fe390e86d8b44bdef6bb7dfb1329bd7b96fe601ac461a9fd3500098f3901e671da42d04b',0,'2024-09-11 18:58:00'),('084a289f429310d9d3d738d8687a343f9f07b442e1a4c1d9684b4cc9c24c6054c16d8ec991079663','00588669ac519c9665222ed954938eccb845a9b67ef1037cdb47842be4de0f3f4e68a2bd03444334',0,'2024-07-04 17:29:24'),('0857cb6d6202d0931f389325bfc81937441cfea89660268919783dec02a56af44d73f4732df75811','e6afefbe1ad19c3cc2da35d2f9d93342e884cd3b38fad44c063fea9781eefa8fb1eb5c17891aa65b',0,'2024-02-14 18:19:31'),('089f781a073c60e231f2185b40baa1167722861011d24d3770231a0e3fe1a83efc6a92c5270d5acc','a2a1193e865c250149a7816e09ef93544352f52e14ec5af104acdf1856d56b45e370867fe73b7e04',0,'2024-05-22 15:22:59'),('08a12fad8e985a82c0b8c077c3f5940da932abecee1a84efcbd680c3dc8cff08eb087d074eac1924','9093ac158711cee9c3b770a5b41147a30eed36a8326d62a164fd16756e360928d107d8e6e1ddee38',0,'2024-01-28 13:52:53'),('08a47df0c1740809e1b70fa701773130fde1d1171b0ef82f23f0e2b3e4e1ed25f9efb2a78cb14e0b','e6b08aaff86f313f8f842533da92bec4c5ab720edfefce0f66fbc4ffae67cd15f4d5a3cb7473843c',0,'2024-01-25 13:18:20'),('08ac0a10d01f1b4a666b8ba499e1f78075a8380ecf957e125cbb943b76826da29e5ba514c72e2d70','a97a25c15748e15c3f2729f7903fd52fb1370ebb88ca0d291ac9d3873b905eb3a17c05a71988fa89',0,'2024-09-04 21:31:18'),('08ac6b3bc2f576b8eb9dd6f91b9eae36869e3380f667a232cd656b10ffa2f25629339009a3623305','1324f2829c242fecc7d002822ab1a8b8486cf31c7a09a3131cc51db3222d9feeac90f23f33cbe408',0,'2024-02-27 14:19:01'),('08acfc243fd4f27f2bd98100cdb480dfcbf83919db6a58907211e52843456bee743171c4cdca04d6','613603a18f86fa9944c6bb5f27bf701948d924eab4bb2437fe280650213f439dd023872d8f926a8a',0,'2024-04-04 21:54:48'),('08d8e29608e26f55befbc7e9ca42de5754647a8c0c090c69777bab6811e3c5fd1d58a73377440704','051a81a8de2a5f12353eee3d13caeaecccdd9871542e64167c52b9879246a909d5be0e944ea6e4b6',0,'2024-05-17 00:44:27'),('08d9fd25acfa380acb41266f9d8d2ca67cf3c07ac7c5d39f931bf8e9828dd8a37cd099f9b737c0f3','43776fc607010e3306fd82829c51a43954d95bfd8cc4165fdd463a2800a412e7a87a7d7441687f8a',0,'2024-10-02 12:21:40'),('08ddc467b601cfd9a793571491f6c6a9df66ebf22147046af89a6568e804b56f73842fb39275b778','3600aa9327541c5256c87f2d2a2c63a0614ae642256b07edb7d16edb9f5bb5186795c1196c6d942f',0,'2024-01-26 12:50:16'),('08ddc81fead266dd100b399106d06804c5c766f71709d2460550e7a5ebbb5482230a91a08465b26f','2def9efb82d621d7d7d9a7b514828d60d1de6d8f2812cf37a6bcae4e9dc0dbe6c4f6c8fd45bf93c4',0,'2024-01-28 12:06:32'),('08e3c73b9ca0a685774a219038bcd4f4bcbbf4f0ebb4fe56e0489a02dd9ccc6d73ccdcce703becca','1e68a1c5f4ed514d0e38a366ae9ab052fa7d6593fcf180a5c11b61cca7ccf8210fc3e8be45e6225d',0,'2024-07-16 16:34:46'),('08f777ba3ebdb8821d2dc78c6ff91ed2502a2c5908ae0271750f5393b3d512ef71dd276f7e393207','6e5c09ced1f67c15d149d7e541d18b39e284a02f9eb7bcf81d922aa6831907063076475aa6afc90c',0,'2024-07-01 10:32:19'),('0909531238462a49d85d4429dd568fba920c7cb4ef5664f65c4611b1385ae72e75b83b5c1a2781b8','81f029425ea0966401c3d1b0ed5eb206c1726cb94949d44c190eb759c1ff2314b848ce63b406f864',0,'2024-09-05 17:39:39'),('091519a5d4e2e1ad271943b21f3a377514571e3be3f014355938b86e7d7baac061c4294385ab7c12','cc74e0c243cdc215d222ebb30e5aff50b4d59890f3507d2999764dd98b03f41a72fa479287ffe6a5',0,'2024-09-30 10:32:38'),('091a16ba76d73d04745730c67a60e59abf67ced8979aadc97cca9f4af39aa79874a2aaf6b333dc64','27ee73e2cb10dd46246d78b07ba1c7a57a81b1e2cf05cafbddc9b1a0fcc8ffaf0a1562ab3c9d858c',0,'2024-05-15 14:31:08'),('092bad80344538aa847277c392fb0bd2558bccfa6c82c28d72a4d59b20398402672b4735a0142d8c','92753fe08cc2820456e526b261f2292702c62519733bc6c104d9e45437ea8b436d275e5ec45c0624',0,'2024-05-21 11:22:40'),('0936de10da116517597224b5d8879ea021054f842447d9f81879390dd8df64ba08c347be1660a9b3','9a1a2de8303043335dd4bcab36c09ebc4017abc9b02d84e42f22d1922b807901eea4e231a7b83f9d',0,'2024-04-28 11:23:30'),('09485ca01399ca090be2005d9fa95adec5ab5740dc468681d51da9d25de2abe0fdb32cb519731a90','1aaf63ec69036ff5525a54bacbedb39f0ac06c33ac8f1271057b090f409f80ceaa324faac22c86f4',0,'2024-08-02 15:12:31'),('0949214e6b3e2aece24399afd339574659a953f8e2649e7534f545991ec56adfd49fd60a8617d0b1','1f6482218b67fd9476356b206a409fe45e5d524c71b6a787da646408a26874c91c6e13ec5125f01f',0,'2024-03-31 07:24:42'),('094971ec195834e9da400fa437916acd35b4a4cf59294b32ef7023dffa8cdfc880f943647454bd86','73875428799c5d43d6fa3bdf373943a435951c24228d10af5c56710f7bddcc3408d24a119abdda7c',0,'2024-01-25 15:45:38'),('09599b89d0d8b87c16e7db18e198879ce34b31f657fa53b7dfa8a0c6c37a7c23ece985640e7e9ad4','610b7f016f1bc4e1df63cc45e3dbac9e92784ae34073dc5e6c7715ad3278c8dd097b4e9d97a917c2',0,'2024-04-30 07:30:54'),('09613842061110401f080f5bfda5685ae6776138a792c12eee765068846091c3746b52dd2c000102','b88ae127a27fe2660c3e9a0ae515fc54bb69570db14092041a03dcc31679bdf5246d5828b634f573',0,'2024-01-26 14:10:06'),('096534227b37bf76bae6dcb6af39e5abf096dad1b1ab058f798515be8170a96e36f6999071988597','99336cae08b6ac26f4c58a4f1340ef238e41a6c68de077efde5c1117de16fcc7ed5d300e67a20719',0,'2024-01-25 23:56:46'),('096ae3d632692754b59d1f1bb145ece454e28b764e076646afe98cda36e3676ecfd956e573340e59','5046e2648511de48897ac06c90dd9ea3c44eb4ac3695c09099d0add0e3634d6431e7b85d9d7f8d26',0,'2024-02-14 21:50:05'),('096b24fbdecb68dddbf7a2ecf50719d3d219272f7db50c74b65bd2f3cbdf796cda22487f84f01c4c','a73cd780a2d8e468cac0ebdb45e6e1f813cfe61f59f6d4db31ddbb1a39c7032b148ad3fdfcfb3dd9',0,'2024-09-12 18:21:48'),('0979ac19f1ce690b5b79cbf2fa8c1ad15137b6c8f21c3c9254ef026989add773b4e76f72c0e8c30c','23656c3923c29a21ec760cb65e499e60fd07800959457b9fd1c97ab6203a058ffc0cae7465522f09',0,'2024-07-16 14:15:25'),('097b61a3d3a6069347eafd295e9b229041f46a2434804fad58f3ff1724e5bf2d347d40be9854ceae','b4da3fe6e5b8191641b196b0160c446e86bf650cb1e83dafdc5a4d9a6c2b7c9f43f18b4665e8a0b4',0,'2024-03-06 18:04:44'),('097fca0cce8c03edf2bee253b94a732632bd9c4db4fa63aa43a18b10f8323aea72628c79fb3ad3f6','400424f6a514cd883faaec7925afdb354064b22d41eb724df9be4be27fe1859796ada30082855217',0,'2024-08-14 19:27:27'),('09894cd716e4d812df4d9c31f10c1f688a225085a71ce0b0af2161478de09b1101a88e640f9231e3','372107dec16e670abc3df765ba116ac07a4bb43afab5de24ef57d912ec3e778d8d1b6fced85b6fbd',0,'2024-03-25 11:23:00'),('098a8d3ab87ea724d8bbd2b23be7612c1debcdce02ae81285c3b94b84a7f869e75f39d8d79e474f4','fe121909e8f803d397112a3f06b2d47e5853913d76636f54fd8ebb94f67533f309305d0e7090ffa3',0,'2024-10-06 23:06:47'),('09a65c44dd42a1491c8afd3a28f79d5f0997ee5e216ca52270fee12d182d4d5a3df37ea109adac30','9dda4fb2d745149a0b9d3e2f4ce8b0d6aae3c2aec3073284cad7276219b0511eb1734f96d921058f',0,'2024-02-06 16:36:39'),('09e1d8b049532c72fa4fbe1782fe5a8588b8269c34c99bddaecfb71a5613a8ab530fad84a14dd66b','6ee2aab026e3557b6d780e234ccda6faf929ec893c990817932d4f260e68f907ee6a590a5c56ff86',0,'2024-08-10 16:39:03'),('09e9160995b99aed2baa884e354fbfe9bbd4037154d371d4f8f5d48a392e0bcce964ac65de1f8d21','c729f583b38a82443f9a69a24eee0939071bd43b7a8dbb0842dcc6e3cad49889d73e30595629794f',0,'2024-07-27 15:53:01'),('09f429ea370f8ad6875f5ae3afebd73deb581aefb690bdb3a04cb0fb28f3acf041d835ae2b43a69c','892cc9a91e318ecc058d377054f9316930d3e473baa01b1e7a125976403f281f53235f9cdbffb35c',0,'2024-02-23 14:03:40'),('09fb06c0e167dfd7d169a9c7f6e35afd2ca89ff9e16f07c50ac45e30191ebafc4f798fd1b3c22af5','8d779563843ce0cc32debde8c8db873f98e97d7d43368b39735153811377991dfaa26887cc292272',0,'2024-02-15 19:38:30'),('0a000d79ea8bc55d5da175eba8fd336b37a513f01f7e42b52d0a24962d8da59f371a6f0428d2566b','46400719a29944270d29721b843ba18876a56e1e3a4309892a6ef90d69712885e71ad8fa4511503a',0,'2024-02-08 17:21:56'),('0a00f099b049cd581115f3cbf7f09d7906500f6f2b28c25e460ef51b6c3d07c84da3e05b7e3c6ef7','214bed1cd9fc6dd8905671f72f844765ff6ecbbab6578e793408089794a0dbedb2a122911aa79a19',0,'2024-05-22 20:12:28'),('0a23012a3eaadb69e39b5e3b53882258da8536c74a19859c6d911f5f690a81ec02c038fbcc4b3f58','ad09fd067486ed9b75e64e332e9445ea0f289b3fc8f4dfd612af160956c377547a52a5a02a182774',0,'2024-05-07 07:10:51'),('0a32fe2dd3c7d6cfb339e1c7ca1c2a530056cf4d355c98814f0c630f7f44339e930a5b86e6b409a9','266bbe04364af73b82ef2768a156bbe4683a777d716de66d1080aebbeffe6500e2743a549e5666ca',0,'2024-05-11 09:21:13'),('0a52550a7a0f014a275a4b9e6f2802660c2196665785bbe218cecbe64c002096794d87fbec40e0e3','c0fc818e7ebc417426960d69ce607ad0b036aa7a724fca2f82c723b58e1767c8be51564389a31f4d',0,'2024-07-11 23:36:10'),('0a5389e48883f35faac3dd715d26f9816eed9cf84cc2b602d4aa4a7ac74d4fff210c7615672d0a94','831744c73297c5d990da895fdafa96fcbe8a695aec3a22ce79b23630bfcaebc726954c7303955c14',0,'2024-08-12 09:17:13'),('0a62014af9647501830035b57476f9f8f140e3c1f639e9d945a19e2214c8aca01dfc10dfae5366f9','3200c21ee15844fc2a89d260566395a73eb867c7616da360b9003838eb6187612fb98bef631695f1',0,'2024-08-02 18:23:02'),('0a75d897718e17e627aa68d22d20af4d915a3d35509285b6f02100102ad3b9916e42fc833beb41f5','f509e1ac3822e8ffc2550b3f440ff376a52b5f11d44fa425da5d23e12685a9997aa1eb14391c409f',0,'2024-05-08 14:50:21'),('0a8f9b724ea71a0b35a5eba4b337b2f7404cbbbd53c2112b35f3d0b1f901be46d254c8a563efbea9','e8abfd261e0f3dde0288dcce08ea0ee3fc4fb34facd415635028f65344937a7c25ec8eef0babe29b',0,'2024-03-17 14:12:22'),('0a9b4c36acbc407b93467f8c75d83489f99f8980ca03a7a119222ac7a8f26ba2175b1950e71d7e54','d4a63ee3865f82df219844361d4d7e23f8609f9a288ce339d8691561be8e322bc095d5074fd9e370',0,'2024-09-30 09:42:43'),('0ab786d20d6a589af084eac064f946f0359b5c9909257af7df87860468e65fdbdf90ac9a7a16b297','bf81ccfce66034a62c9cf44fd6f35c5b5e6c367466e8135915b78ed97027357764113280865a0d51',0,'2024-02-01 19:10:01'),('0ac12e23a8c1d4e859235665520d90705a067784c5bc7fdddcde7ee9239b4fb9d51715cd3fe1b711','00e826f957e25e3c383e3c8821d755622f37dc1a34762457f0f65f921623fdf8709c4c25fee07385',0,'2024-03-28 17:29:27'),('0acdfc27f8354f5c0928788efcbf6d06f8331c3cf77ea49a980da565da7d94a17fbd094c0df0a9e4','e6ba37a00b162550fcf285ab3fb418bdb4bc2b755c12473d1516c95c90060c59f912df0cf90e9427',0,'2024-07-04 10:04:12'),('0ae3a8d13fce0968a0f6b56992c15280369784ea4a041465a3a4062b5dda8205aba9254c9b3697c2','07ab7349d7bc30f96f87594a3fd7dc52e801623f7a0e7a50400896fe366a8e84e4007aceb0b819e6',0,'2024-02-21 20:15:25'),('0ae9abf9062ec62e497d4a846c2c3e7f82a74320a8291063cdbec6f3f55d4c34adf0864e7d8ca148','4e5ef19314d1f220d05eb2c03392ffcfcd6aade73294e8138160e8dbd8650a3b44883ad11399a9a4',0,'2024-02-01 09:29:24'),('0b085528756abdf6c2efc1eb9a864412bd1600965a886304bae52a5f0a4ef17962cb187b990d1d8a','6b4b99604a17c640ad47594feaa3a24a97cb762d38d77d624ecc321a82533d5a919830a9eb7ca74a',0,'2024-05-10 11:34:01'),('0b1f9aab4a85c921c8c37bcbcd83d919ddf62151724951531ea21f65776b4d5319d09d860c1d83f0','28773038f5f06f63f0b5fc3fd5b4974291be07eaee6a7788f9d375684a9d0edede02f073b5eeb083',0,'2024-02-01 17:27:28'),('0b3587ea01b2fabee5650813f19d71107326a435bbcf7ecae7a1428dbca53f04a510b64b9b8455e4','bd39e05704251c666582969b8e593f0d223065cb836e75ab34f0a4cdf01827d1165cd59505e36c0e',0,'2024-09-29 17:31:32'),('0b46f3acef5efac25f7088b8abc62ed202de942e0199def7e1e5cac564eb7c356a6e202182a7af5b','6563b7f8b08484fbf16b0a06afdc34ed757f2bad3b28a9f3f39b37be24f97be555312f5c33129e69',0,'2024-03-02 13:06:57'),('0b497332290330d3a972440720eb7ca1f341da5b4ef85a0386539a9d001b86ad6c1a81ed5f822cc4','7d9456e8faa98a9da40fed45b0de23543f50bb0741ae6284ba27018bef70b0ffb37409600402dd61',0,'2024-07-15 22:22:02'),('0b84dfa95e3f3e6da33ee2724a4c1f625f1dd27bebe27da34eb32748abcb4f3648b539316e3593d0','15430472a580fcb6775025c0aa484e3b81563444beb3bd3351c806fefb44117c1d6d5f1648e15560',0,'2024-02-14 21:16:22'),('0ba0dd1e5cd5f0750e7486db63ce9e3d69a5083d23896abe5d57c66ea650deb092a124e694bd8cb1','05eedb392caa23c1bb6ff781797095aa85f3d016e3180e0783dbc4737c58af6466dde2058a76d8fe',0,'2024-09-15 04:01:46'),('0ba1766936cda3825c218fd855876a4da6cbbdcc483ac204b031532ce0a7f1076dfffc969c8738d6','1f44e1486175089bc7cd194e5011a15e56aa06bf0a193d27837a6eed4a5616db44bd00f5a7a4cb6d',0,'2024-10-06 02:02:13'),('0ba34035036752d2fbbb5974b483d54a4c0fc0914a8fced10e68aac3b4affe1618064ea39a6d6a87','e7ce012e8118680b42b14a37ac56bb1178b854784298590d9c9c57185831ce0ddeedae5899563461',0,'2024-09-02 19:55:45'),('0ba84bd2ef11c6ed637d5867dc031379ecb9cd75217bdd792a6c56b075f93b85c916830bc939c121','e7d12b8388c2d30d801da40ce3ef7c23eb542c4970455c6565144c2033a5f7a4d3e34bdbd6241d02',0,'2024-02-05 08:54:22'),('0bc1ed34a5488c505e10e8fed652c5a881ad1faab9da0677d2fd5d88a7a9958ba665bad6aacfc383','8e595e3f051d54bcb76ad623369b86b2dd0cb6a98fe2cdcfd022c06f3b00d0eb25a8717a6d1316b3',0,'2024-01-25 22:09:35'),('0be68ecc8cf1f3be8ec8b68953e31949f049ffc43185aa56891565060c463499060ca99ab41f819a','25956b939c6bc440a540af7e9b587378f18ee0faea03c129217dc74a8cd74df0170508fd681759ee',0,'2024-09-17 16:04:11'),('0bf34412f4fd79c0cd740e250d5401250c28bd5854b3b8218ab832af276597514eb9bf43be2b0b8b','1bca091c38f09df865a783ba1239422e0dae485c80e3fb6666cce7b291cde664cdf00382b655e042',0,'2024-03-03 16:44:07'),('0bfdcf42bb9a9cd00348c4e8ed7b6af5d715552206f12ef9ae91b7d8d5b6a1bda865b99a3b05f848','42e6c95cf920a6c863653b7eb79f0cbabfbb4f7df6925c6fc440aad745557e5c8de36cc907bf55a4',0,'2024-09-20 22:45:18'),('0c05fc2fdf8fa2a1f25355965e458a3eadde55a1e5f8b5797e8f91ba4bbf3cff81a6b9afea13fca2','8a35e36a07afd31c07f00074bba71335d92daaf83e0fd818985d668dc81f93db9ab7799e69b1e142',0,'2024-10-07 20:49:25'),('0c0702e1b82c4246a3f903be0cbd9196dc4dcd8b68ca798dba20690b149b67693df0bfc11421ba04','ac09ff3a7ef41d0a50d71fac0c2041f6a265b655df439d411d254c7c9955e9af5f166f59b209ab7a',0,'2024-09-17 19:25:16'),('0c0f295f4350982e3648bd26207cc9e02050318c151db0e8ca9139e481124d702b84422d455030e3','9436ffc63bf9de4da2f03ad3030f17e7f2ca16234fdf94e0abe95ddeba204c701ae5a64ff14fe29a',0,'2024-06-18 14:41:36'),('0c21f1c1a0bc1a50ba7054e71ba03de6d371533600cea1f070882d0d8a50af9d19fae295fec6863e','97d4b5be658154518995860a5eed8358ff61eb91ff7aed1f903e5dcde083a2ee3e5236159b407435',0,'2024-01-25 13:17:44'),('0c23c57439764e5c9b0bc8a5329504a4aef15a1e392d4397faf3324833a01b094c8ae39307541bf2','8b2a26c5f81d7ae23d11274eea056cf35626dfa4695f6af8549c9ba815ad8bb29a389484227b62f6',0,'2024-04-01 14:34:18'),('0c2e85556a0144e388e88900d47e53cf72011e91689ed8f77b07e636934d649d22396f2326fd81fd','ef49ef78cc3fb0c73041fd5762f0787773c8d64060981a3575f363cdced4b073abe6743b4d128a56',0,'2024-01-25 13:24:34'),('0c3696d529c548add2925cdb0ce8ae12d9146a050e960675d1f64730fdc016951579f2e66c65463f','83bc03336cbe9b5bb3fd469c884e66c5ae99f42ac2dc5cb7209bf46605f7dd5b6084e892e7118777',0,'2024-08-09 15:07:15'),('0c65cdcb82bb15229cd1e356aec60f92996a0166b4b3bee6c6df2dfea1ac580db2eea6a7b3b542b5','f25d515421075d1628295ad6c1aede0f8a8aed32b566be5c349f0f76e335de59c977a7e941ea850c',0,'2024-09-12 17:11:05'),('0c755979af9f1e1fde1cdf1b74bdd95325aac4744587202af00aea3066516bcf2161e6a028b12d6d','d15848cd8640898b90112997f4c10ddf814d8752e5f7ea06113bcc4de15a368a8c0848e75670a7a5',0,'2024-04-07 08:43:16'),('0c7ac9ef5ad7378ffae2588c19d9f3ad28c3471fd83d881373821d9b4f58a49efcbbee5484a055ac','a19cd4e493606dba077bc0fdf23c4b3fd5055c09cfcd4be93352afa71fb99a71bd3b617cc7d33ef4',0,'2024-03-24 00:52:11'),('0c84134021ab6ec4a951f779bf37de3642a95b25fe254b68735235d4410af9f94b0a1c8582d5270b','a44d1eba8136e2161db200845874c71f40a17bbe7fdd1cb281ee49fa5dddf982a2660824d110826f',0,'2024-02-02 21:15:24'),('0c8f33be5efeb86acb5bc0d9cac98838c44e0069f9e414660b57cf49d930301532fd59a31077b89e','6a54671bd552f698e4b51a1ea677768635fafc76c09f608a64f80678feae8b900fd10298e9c96d44',0,'2024-07-26 13:19:57'),('0cb4d047c81c7763443ce28971fb53f537c6377d44e3d2a4d1c582d14c687f626a59af26c32b0a8a','e4b194d92c711e63f30e56b7df64041e31e42b19a4eaba9aae32137ac3ac5d5865a48789a44b7d5c',0,'2024-01-26 16:23:46'),('0cdec95c4edc5baed03c6feeb9137611b624dc51baa9745f32045d5c34315fa18e5afa9c9fbeff88','6eab92c4eb1276e4ecb088b27d6a30ddb0fca4d6434d547c62ccf64c3b02d0c95fa562940f433524',0,'2024-06-29 12:34:24'),('0cf6dbf248c82ef7d7f739a503282f03aaa14fbe1822972483c17c7bd0e44addc6461e6278583c62','e2fa4c2da012756a36003302975e367f569097cda8241238d48c5e81cda5bf591db01f19009e2147',0,'2024-04-20 13:23:32'),('0d1021181bda055a92b256e27f1423bc651b8361a24cf3f30de015c3a5567ec47ef95ad02a61d361','da0de2f650423a9a6ad37049c2ecfe37314d390df9a2e099ea42486c00f71d23fd946ab76f4102a0',0,'2024-04-12 16:46:19'),('0d23cc958b7ac7c59e735691320d2d1e6cf6ad0e9425d75d892ea7a39377c119afb502345498708e','7d99ad898eee7ab922efecb8bc3d51f61f4b60392ab4ac8a022ec44616c226ef69865e93a70517f9',0,'2024-03-17 09:51:38'),('0d26a82b7fc1c482c992e5cc7d94589ac3a89e40f2961be623639a2c32bd778716a18ce578afa6b8','6198567b8016cac355b4f53045335dba8b9218f67a2d914c7a99849e9bfcc87d8bc2187636c482c6',0,'2024-01-26 10:50:29'),('0d2eec2e8b6e7d5465b5431bbbf4a72cf833e5cf20625da2127fc40e54f6fc233a0746b739b48841','90325d84401ee469e50e2e21258ff8dff0eefe95c383037327b38f945b07e3054a0f60012f97171d',0,'2024-07-28 08:52:02'),('0d33b181b6ff57441831fcc54350055545c4bc142be8e28daed94ced665a6529a8849c43003a5bf8','ea0e1b391cca7f4cc0cb484147437453753883783de0da76b14a3ec7d8ea091515015c003e35d42a',0,'2024-07-04 12:14:57'),('0d3e48cee098c44c92e494303905cd6a8646b0406bce79e1c5d5fc5b53902a68a10a74a0ad8f56b4','9d6bbd1d9996a7933c2fbd0834bd9591dc2ec59047d5cf6c26859222add59b596851c61e6a8f48bd',0,'2024-08-03 13:38:20'),('0d48a0c560f9ff390fc856a0e60a1fdf80ac22ea6fd1482b38555b95275760815500039afc4b74ee','d250b4b08768328c392e51915bebe804f04dbc034e8af7e1439363a4461671ba490527c0c1c3846a',0,'2024-01-26 18:28:26'),('0d5a0800e0a2be7a2288a816ea4b89814d3360342ef0d3fa8bf0e8c44331c23bc10574f2a7c6dd03','1cea0fc88764446243abec6f098c6ad7546edcf23f89f54e69e47014ebabf5a32d1cef9686c70897',0,'2024-04-14 07:21:47'),('0d735c70f6e136e2034bf5ed045df8fe6276f0800d82708eb415bf7b96681cc3891aa4090fa7de40','9fed244143dd71b1065631622f4166975df0f543d69f102705abe9ab94322650e2311b929a2d1508',0,'2024-03-26 15:47:07'),('0d7ec01e258197836faf3e484b7d71844583abf3e04182a9d91af503fd5d5dca128d6b103eff4b4c','551633d9b1595feb39412f071ad91cc7ecb0730fadf96551128637c5a30b4ca0962d8d38b9228f27',0,'2024-06-29 14:07:08'),('0d9019075ed0fa46f32220a05f6741888aee6f37972d0130cd63f76f16ea2aab3b462338b627752a','44e5ae8e87bed799e44378cda4c08fd32161548d05b99fa2c1aa234d6ed2fbad582d082bd1cbb361',0,'2024-02-08 09:54:39'),('0db0623facf586a5ea4ad16653f81f72c70edd25df7c5c7bcf0c67b9f0f98e809a0242bd671a7a51','a0f52d1a15d6f3beb7a6c0cc2a63e53507031de4318ec622f82d396bd34ee0c46fbb71e76d23ca58',0,'2024-01-25 23:55:27'),('0db608e210745605c44396bf445452b7b699fba66fee314274ed03f0ca69cc8b8c48ce9080c71c02','f196e45d45fea2af2169ce7f22a3721deb64eb30e01fed49f4842543eb64ec279b53ea9b79810e6f',0,'2024-01-25 07:39:15'),('0dca3b0b40aa2057431def6c01cec382755ebfea4fcbdb7005b80c3f9952a187aebbeb40db9fe666','85e2f4ede1753475be400871bb10f9e33242e42475613cf69994a821b7ed563b5c026b63cce6d4ef',0,'2024-10-02 12:43:45'),('0dd2bdc2c39f1dec0d44f61f684e4d43f5407afbe1a8ab0324d30f43baa3886cc27ea3976b9f267e','a80daeea5baca0ce8da0fdeb945aea51877e5621b70d617dc15150b8517e7ae9ef700366bd8746b4',0,'2024-07-13 09:44:00'),('0dd9c0f705bb5626d0aa9f4fe47a9712889e5ad65d405f40fa7de7cd0c2cee25822ef8f859bb3817','b96f5937ab59beadba43ed1c17ed819307b5140e616632aa8518b39b710a5f72da9516e9a2d87ef1',0,'2024-08-27 03:42:00'),('0dda4f035d407cdbf0edaa7efd365d39b650dec0caba9a913bdcb86183d88396f1d49aa354279b3f','322b958f8b216016b117270392c19ef7e0d3d2061d84049092d1fd6a5ed800245c51122d84e5cf63',0,'2024-07-18 11:18:57'),('0dddd21ff0fbc6a68e20bbdb79861c6791d971e65c71dcdcf2e2c86939452422ff03aa4ba95fe26a','dd6fde2e37d598930bd62bcde4ea140822c5ebd069f8d93aa8df97595cab4a7010b50e1f51d63a43',0,'2024-09-21 10:11:41'),('0de31b3e79197fc036dd4a8a8c60180e91284f01bb4a02184c3ebfd880aef17754ae18638e4a26eb','851f0275c625591ab3c25a4ca8dc9ac5354e2144045ef978d16229fb171ebd9820624c027291ff5e',0,'2024-08-26 17:10:18'),('0df47f4bd31b96079f556f444be697cf05a1484f3a6828a4b6690a0b66de673bea1d95cb9ace4a98','53390a52292f66cf4893b8f402f79199945024eaf2945e0d5ff639d5208c47de753013277fe9cee6',0,'2024-01-25 13:30:58'),('0dfbcba1ab0448399e681bee9a9434c7cced23eb85c09041bbcc1fcf26b833a6dea9b77ff9e2337e','d609b575816205b9b36b12d47c06a34fb37d42c18753cf924d5376c2e53f2af5b29c2065140a3fb5',0,'2024-02-27 16:50:09'),('0e08f238170b7c4f226c6ad5c8dbd912450ef83416a63321a35458aa27055811d2cfddeb2d3cd658','1a068bf448030ebdb348585b4cddb9bb3322686d8706a60440cf9a14ccaff70f0626c727282b0cf3',0,'2024-03-26 23:46:22'),('0e13213ba03da934cf53adeb49a2c607465291b20265e259f546353fec6d0fd177eae9a14dbd0e7a','8e38c99fb38daa238ccce6550c4bde57914ff6762fbe60fda67627aa573630e7b6999d987990c5a0',0,'2024-04-17 15:34:05'),('0e1c0901eff3cbd6952d2a952e963606e1fa01f9f3e1c7bdd9bbdc1803d8bf1d9ab20a890f778ed5','176dde6824efd42bbf06afdafd3e3875d148d99d34322a530b5a06de99f34cab0746b018f464a0e7',0,'2024-05-19 07:00:51'),('0e26cb50e494311b4c65d18aa48b870403b0084847922cf3b365ed4f8159b15e804e08b5edffd9de','86988cc36cd96be56ed694d4b9799556a7055c3ebfdb8cabbc173eff29f588b25e43b6370f211b3f',0,'2024-06-28 19:23:20'),('0e2ec8db22d556b6cd9cebcbf26f53112318434550870f223e310108281e72f151d98b8b4d1b3852','eaece7eb47cda4bd7fb34edfd707128d5a84872e81c5a8a82d4bd9f9012cef1cf9a11238dfc58ebd',0,'2024-07-03 08:39:16'),('0e3c64bfe31468cde5aaf90be481665fe2191838cee77cf11c52eb224dd084d83a7db03457f4fb20','cb6914338d41ee6a06999f6117fb8b1351e82fa57173d9a38102f624b3f37788387f04685b44910b',0,'2024-02-08 16:37:13'),('0e432383d8e60ddf6a0724e74293a5285c33170efa1cf78b1ddf0aac4556cbb2c206687b76ef6722','89f26e371d6a84e2470fed2a0b385b39748178ce597f1c33d1aca40b09f9bed3e7189630791e170d',0,'2024-05-10 10:49:12'),('0e546bfc579f706c636aa8c3a69d216281c4fe639e632c69930a417cbeede8684614514f492726d7','5ac74097edfe573dc458da78db4a76d990e52f383b1d776edcd71cfc00ee2df77427a40fa6f983d8',0,'2024-07-09 10:20:00'),('0e696660f49aa4ecaecabc525cd0b7fb19e912f79f5bcd0b38db2d063c932e9fb24da60a762633ff','28681a723f043008ea35b37f52c0a21f0b7df117bc2af36c5a92af6641fa837491e54490e5096ac4',0,'2024-09-30 13:09:20'),('0e7e29756d5acd244c00526770c8326eef07d0ab7117e3671f32d2d60b80177b92625e6798d49b6e','330ba159a867acf0cc111da4e0d443d1388c5ac30eb2c03e69ec29df2bb3e59671ab584589d69646',0,'2024-05-27 20:31:25'),('0e817a20ef6fba2c63f20a498af8fe29c21de95a3613c44daa533edbac081397e10e9e2c0f8bdd2c','3b54db95649a812f854e8fcde97d1c55a1c18a6198998c3ee4ca80352a9ef02b69128dc417fc5ae2',0,'2024-08-05 10:12:42'),('0e8999d22b4c641866e04421b91bb156c336016b33784f73b3d4c957491f94fc500d60d79cb885ef','4f227857e22e105b93e4cd0e9876467b8cf64901c24bc18ee7c7c4bd98fc0495d4b89a4f98406fe2',0,'2024-02-26 10:33:54'),('0e99707941ada522a3cebf6629f489dafb8f9bbb20b1c4790bbffd9eec61a35fb8f7d07c55db3d35','1b659907a6a2f7f6c9a1f990f80ad28048b94abbad00b3900825944476a775b3acc7641da9efcb80',0,'2024-01-31 08:30:30'),('0ea88e51b3ab2e9e2056c09a8d2e5b1a17bda8adf1908ade2b2872bcccec649cf7ec5ef4a09b6f29','0877b757be83cd40aafc84d55e79af02a26feb9ed655fafa57ad380a2a8f278c4c835913a1c56e3f',0,'2024-09-28 15:03:29'),('0eae214f9f4b43d3e4cfad3e397aab4b13f39dcc387c812d4d1868cb16ec32d5852ef11c001d3303','e847cf9b1795a1f7347baeba0f2a213002c00fe1cf1f4c9225034ec5debd15357fad29c2c0702894',0,'2024-01-25 08:00:42'),('0ebc220ea0d93b1408e0c3aa2fdec789b34d39236637d6d199fa710831746d2c3d54e2b5c1d09e5e','a2b94907bfccc1dda423d81b0f6bf261bc3d21e5f097b929f08bc46a5d6cdbbc7403e97298d08fb0',0,'2024-06-12 16:29:31'),('0ec9a2dd04f860d69713c91a9625675c72bea7e6ca3570014d5be5fcc8b87569b4070705339c193e','319588f2eaeefd703834df9547ae28714baa7fb1995937e1fee961f2e9cfe4a1e765a62c6311dac4',0,'2024-10-06 12:37:21'),('0ee83d5b0b454c72e32cd1ce5f9ad89a6db79994377cdca04730a662c5504494cd5a4893f58ec998','03e4bce2de74c4136dae2be979000db327c1f92d2d779716e6658a40841a734133403c8ce858fda0',0,'2024-01-25 09:12:14'),('0efeb933f0ac7c40b49dd7d16a30865c7ec7bbe2e4e04dd127d4a0512c175f2ad1b1a48dfee75357','907a3e51eeb1cc9f44bb6595265d3906ef477aa489b4fc45ca932be862c3ffd0c0a960aabbdec4da',0,'2024-06-21 10:23:37'),('0f151fb657c3f2515a4af614c220df2c7433509ad9b559a3af32b586df80d13766dda94c2584e9bb','c6383fc5877536fb78e09f827a7447fdafb00e2d7e99eb2fce83cc4da15823eeecf60ae21b123fb3',0,'2024-06-26 10:47:42'),('0f189e0223125a8cda4ce0961502744b7eab55c207ba0910f29498abd922396a60d259e6127bfeb4','1910a833a451fe641bd219588756887152e957c19476cbc9146823d1340b923732e3ad9afaab46fc',0,'2024-08-25 15:06:30'),('0f246dbb90b11301419e8bd1b4cbd0ad59955216875255668d7f3f1a4369508c21e6b17279f8bba5','0759926df8c950addbf0cfa5ccf4f4e7674010f23bd00e022db583aada670c0a12e999510c98545f',0,'2024-08-31 06:53:32'),('0f2d76f70adec35c00974034b8f4c0ab09ffb4b61a111434ae91d2992148142962607c4cde13ab89','4fea8d31368ff1b0daeacfa2830562a06845ae4bd47dc0bf81bcd952843e9f49cd01deaa2104470b',0,'2024-08-14 15:10:19'),('0f35f0ded4c5af04c9257d74ab26394e14949da784a877d93f5655dbd0b6fbdf3bbe361a964b00e5','d8bd0674479334e2c282ee26750a657df129f716d4cf851ec5f8b9f2b88e473d49b73f0a8aa681f8',0,'2024-07-04 16:40:42'),('0f42ddf0aad54cc801936510e287e91eb30d97961609ee3ce8d25c44c0cf63825bd8d9cc08071d08','e509734c0e88333f6a1ef93efaca639ab5f142c3337d4fe0b36a99723b476b3596bf6228cecc0281',0,'2024-02-11 07:47:26'),('0f5c78e4c8a8962e0be034b22ab21e3025f70c7ff3db5387a9933d3b4bf34a0ef5fb750eed5dbe68','ba35fa6ffcc2a1d021fbe8644a819b5068db554d3c079cfafbb475b8299d8f332b83da960119e289',0,'2024-03-04 02:31:03'),('0f839fc33c3fed79e2c0718710ffd3b70f364ee06a60816285ba8cea4bfd3ab52a74f65854f37ef1','185e3db7d3346bdfe921c83b354cd96748bafd62edc8130f3924a803b5b485be26327c269aa28d4f',0,'2024-09-12 18:26:00'),('0f9c0ef990a6ebd98741186248ab7cdbd145788caad80567b3e659a65a36391f0819c0b094918bb8','bd1491c422784d0036c945e74057d5f9a6ca9180a3bc5ca9ac673245f2cc780ce51abbd0156e16e8',0,'2024-01-26 17:09:39'),('0faa2ce219f9265e67bcadae8468e74f1af0f2062cb66efe795d26e8336c936110dbb9d74c0bb218','b92080ee7fb8c1a101834c03496b766ed1690ff642e5c201691c325756398285ac65988b7a087223',0,'2024-05-09 15:01:36'),('0faa614c9e0e8d6f49045df549f5f4e4dedbcf863480607f8418b533732cca36acdd1ddf15480a68','e6b0dddcb589acb832ce9cfb56f96c51b3d2c9c66beecad0e4f53ba4e1678ac5edf716b07ccdc807',0,'2024-07-01 21:48:29'),('0fe2652b33d18a054b76b73760847c351a95082c8942673df048756e2ba537e35da81c014dc5b006','c89cd9b84e56fda0c9d9366c8d2767acd58250a5f87e8cc6833125f54b5c18088915225cae5c9857',0,'2024-01-25 16:22:24'),('0fed9ba437710161bbb0b2ae661b68ecda61db29af9bdfc0bbb5f22b9a904631e6c68187b6495048','37ac6a68870162adcde64fa680eb1777d665bfe911314d81b7617ab1ecb8f34157429996430ae923',0,'2024-01-28 07:36:32'),('0ff767e74e3d2cb9a52577162ec66544e230603cf24bf662270c1c3fa3da0557243ce36949e270cd','4ae82a2cff09290e45b2a3044d5309ae51e7e88574deb7ea0e081b3fb84b61dfa7bd3c5b4bc0034d',0,'2024-04-22 10:38:35'),('1005ba4956772918999bf016d00b2295ed1bd26fd28bb21e9af2b3ca3ab11d61bb8fee4cf5d12090','ad94e6e864d6e40091fd01c029067c169bcb6753208b64f3a6db394332b52c15b08eca594815f42f',0,'2024-01-30 15:20:15'),('1005d505aff2315db3d8faccfe4aa2b0277f06be159cf129f759d485b49d36874a66741787890e7b','dc95a72ff6a1864e413e312a2ec7cd4ecde07d8e4fc8d5dcb463bb795b9e946d2eafc07fb307755d',0,'2024-06-19 14:27:19'),('10140a895589ed40ccb671ebb6a011591f8d8cffe83d48180e80b2098efaf39fbfadded05607c7de','70fd835cf3721386b9ebc4967553fed8433d900ee66b9edc1d21556abd1b3a181bd24345a76a2192',0,'2024-06-18 11:39:25'),('101ed69d1c597649e1278d760a45b0340f6278cd62eb89691a4811936670ca8a96db31f2d30a7ecb','3e6a852f57a418cc4d7c79564f9822769fbf88cfad92fde383951c4e289ab913489827990c070fff',0,'2024-01-27 17:26:29'),('103acdec017c7aeeb0a61f2b039e292fb334244e4b2bee0b5f0cf35efa53b1beb17dcb89870c090d','fb3601f1b8ef63ba8fc8f7d910b017ec689d9a539907d4c2ab047767e608517db2f7230e0a962040',0,'2024-08-13 21:08:10'),('105440006ec093b2ece8623c2933e16992960af4c14b03e3fddb3c84455847376c5c8b69351c733e','5890455ccbeafc3ba7329a72d6e0a28a13f136d3da12cca216ac1c67312eda36f4c398ecb15d73d6',0,'2024-01-25 16:00:51'),('10572ab3804faefcd57265d481b2ae3207ec795c69e09d2576b149dc87b5242cb5ac0d5430c5fb04','350143eb2b056c8b6d4ef43d7bdfd83983fdf3db11e66f6a277728523600ed7c393f3da77f6685da',0,'2024-03-16 15:27:56'),('1064269fcd5feda56c520cae411b9b760653998690142ece11f7d77b7ef075f3b418110db387cf10','36b4c795b6d891ea2ed62756093b288fad6096fa82c246beefc31ce33a3588b2013110130b40da49',0,'2024-08-24 22:07:31'),('1067a3ea131708fcc87f9da3ece8f29a1d28c5561a694d4482ac8df0ed1cb21d411a182f8967d25a','f35d51238e78e0813dcaca5c32e9484090151965c749822db348746e49547cb6bdb346fdc5d5f60e',0,'2024-04-07 16:50:50'),('106a1717ea93b9074d10a364068675d4261f0c04bf7c5df597e08f20704c7b520dcd4862551491b0','2b1229a1698352fac86a81317841a070c99345ce9c4d9d59eb5d7e20886981232ac21c9bd55d0ea9',0,'2024-07-13 08:43:58'),('1075b1c35568ee7163780702d23fd99b29e9b573b876c081d05c5bd1d115c27770fefb79ab0ebbf4','d2da50a11080f7f107f03cde23f259e252349a078ac5e13cf49de4347fe131cb98816f1be41a5b4a',0,'2024-02-04 09:15:47'),('10765f905b0b82e45a9cab61da1506e33ce714c9db08e653591a8fda1768e5edb4de86c3b7801011','c95bc518a0b5d21c9cd00ef81d564935cb1ce2e97f54d36f759031403d72fefbac4bd8e204e43f3d',0,'2024-09-24 12:34:08'),('109943682dfea1232ca00081fd3ef7cd2d3e816dff70e19897b3f20dc76a82456511b173f3e290cb','0dc5270e51cb51c221fe021efd13125d271a27dbd9a1dcd1e8dfe81eaf3831e2386cdd0c85b08b05',0,'2024-02-29 09:41:13'),('109ee63ad1bd21804fbc96b93a327d6d092ecce881820b12aa88c062a94f82571c558698158d0d4c','d9d1ceffbe657a512f9acb3067f4a1d4cb21314d6697b7de1d425150029941fdb32968295fa5953f',0,'2024-02-23 20:44:56'),('109f6e3cf53548ee7600a1bbb7db63ee65d2f5582d7a9b8a10cabcb8df4b71692221fcb545dd4773','58345c2c779cfd4285c142a0ea9a3760a22c3ad7e69502aea8cdc51433f410d6813adda60bcf19b3',0,'2024-02-16 13:28:11'),('10a85c94f2aa4becd1d78a4a3b07ce1987a6439682f3ceb4156a898021312f7d8a6627d244360709','f31b8d89a9c660a92f651d66eed099f129d9300be3ee7b499e22bedb2e4a6baddd2ad45b19a773e9',0,'2024-10-01 15:05:37'),('10b85f10b12fb48360ea94ad8ebffb1363bfdc11391cc00cd2238b4c8e4b92c7acd0621216a85e1c','be933b060b6ceba4b7d8bc5b746c5e775d6171d5f59d3239b20e06286be52599099d3e77230cc8d9',0,'2024-09-21 19:04:22'),('10c5733caf1045714fedc4bfec9ec1a796074e5afadc732924199ffbe96af39c03a10d510ea3b6c8','7481fedfacb0e2b951b51d05e9318ea2a7c888f6cf2fad075072c1b20d91209eb701f25002658611',0,'2024-08-20 18:22:59'),('10c7b0331678ff188990c9605ff0e11978866cb0c45f59e148efe3b761479289fc7c59da3f6951be','5d125f8059d98fc4dd30180a42da80d70382b6c816e15f7dbc9a75211ab22234852b92a004436e91',0,'2024-06-25 08:29:48'),('10e5cd99c0b54b3e0eedd38b4fb86811491b8ab41a473711a71ca0c8350c61c4cc26273c2e60061b','1e8c12490825f665d79272574d7feb48dfea330d3ef0475749d216be4c2ad792dcf81019770e5375',0,'2024-07-12 17:38:20'),('10e89f5abdc1a09a92c6ad4e92b736c6bf0a62fe56b09a8eff37a6370b4be8cdd595d0b49c044479','ff82f06b2034aae8d520e4d33f2949b8129c90190cde144241201426c4cc144107028084bf8b9d31',0,'2024-06-07 15:43:46'),('10ec669f2052b63c4036490699e21c78b117613ecb88fd8a472cca129b2da5a506048f270fa1e5fa','8502705ef6aa10a92284338afa0ac1684f363d3e02897991683f3f36d91d8bc2ea3cfa1413cf0b41',0,'2024-07-22 01:47:57'),('10edaa80ed03a4fc9a6029e046776a6531e0822531c37fc91b59d63f4887c378a3231ea86ede399c','e0e3a86e24703d4d170f554be1490ee8389f16563c1d88953b1550a8905369a945bd65e7e66f126c',0,'2024-02-10 19:41:21'),('10f12c0ddd3293b129719c212bd45ce31e17839d038001565dcab8e3d570ce84cdd8630893b34314','00e0620e76f9d29b3746d97632271371d0da14b6834f61f00d01d2a41242ebfe66e95fc0022ea71d',0,'2024-06-13 20:56:44'),('10f4a7df4e02779f878a6ef367d1d8f3a5add9ff2ae9dc6cdf2df35d94633d9fe8627300fdd509f2','7dfea9032ab960e26bf9fe0f794f68a8a774fc2d2ff84aa622e2f14bc3946811a8f0324338fa617c',0,'2024-01-30 21:12:42'),('10f6f928fbff95feb8eeeece0d48e8f7cf8a7f15a4d68fb9fdb36ce4b2ae4d318b04adf26725d072','a77afaed00b2dac8dfe644236c822ca74f294fb67e819f39f16916c0f440ae86240a63c4b20569f7',0,'2024-10-06 17:51:49'),('10f97ee59f58f9f076fc3ddf2efed9090512dcdb15492d1c1b4fa8a701a15838b70ce0cb72813ba9','0db873a7b7bc66ef9c7358e263f36e0b816966c5386385fc56315a5edccd2db38d464c4e3dc94a6f',0,'2024-10-03 07:19:30'),('1109a32923b708478dadeb3f17dc796d2def0cb3a790c451788f18b044fec14773e8285b7cc4af1d','70e141caba4a51541e5af03c4eeff07353de0926f745073acfb2c04d731f95ed942ba09c55b3ba95',0,'2024-09-05 05:41:28'),('110e76956343868175494c84fbc14df757a303fe6c1a5ac32528df6b9217e097e1698765aa3b948d','07ed02c313329f9c91bd6ac59c0b66f6843446f49771194510b23518f0229fd077b98e4d62c98fd5',0,'2024-06-27 11:41:09'),('1119a3679d536cd304a0a9a1c8fd8545f99e9b0742f292dce4dd8142169e6737c3987157827acad1','c41b1dc2349b75c2e7e677e054220fad8301d818a9a8752b921a78ef7128c79e6ba630cae19fa489',0,'2024-01-26 09:14:10'),('111de286adebb56d02d3384a61e7cb5e89f7f248668280c96a53372c576f001faee3cc06f143dd3c','2860059735c9ad9b7ca6cd7bee2d8913126b47d43e7ff0557fe5d13bf5476fa78eed686cf25fc0a8',0,'2024-10-05 09:01:12'),('11201e21004016157e0146089ba139464bde17b2d4a1e8b72fdc8b25b233815d134af63796ddc3c5','46e0fe93b4d6d8bd3f64cb915ee00940f3bc111aeaf7184ff8d0e5c462b83f0e557f134d136ef2da',0,'2024-02-20 10:03:00'),('112b635c8463a994955b58efa0140f873eb6faac9e2d27ca576095ccd79409d593f378238024412d','b9425bdc7c024e3e8f7d92620ad5c62d21c3935cbdb774e45e294d5c707d575f67179ed8edbcbc7d',0,'2024-01-25 12:33:33'),('1146ff271b9d491682c048a8867238cdf9be1fe3dd58504b8e8809c101d4543a31d06d001eccef52','912582fd6c3159cf59ef4ce800af764e7931aa38034df45a0258ba2933d048be157eb065fa4fa12a',0,'2024-05-16 20:34:13'),('116e42de7529fe2e56204145f72963d9e0c2e319c87919d96ffdb3c5a1e8b27f023c2f51552aa0c1','6440bd910f6aba4048d752e685e3705a73784a83f56702496f46c73b5fcb4e2b573f72e617207307',0,'2024-09-23 21:17:12'),('116e89146f9772575fdc2fc20221229b8b4eb949ec563444fb4dbd8703d579c8add725b24ae3d86c','9c82b92aab967d668a75a071ae979f798b74a573e394c9ff76d2f765f6b52a93cdea48054b92dac5',0,'2024-05-28 13:17:15'),('117a258e457a5929ec16fdfbd5190523911de3b915c554fefebadeb37ffb25ab14e611046f37fec1','ccf60134a8862740b29a8ef2b136a1d7f5ec04c2105f68fb84224b7cf87d71454c15c2b9e505f82c',0,'2024-04-28 02:21:38'),('117b344dc24346f1ee7b2e06f4473c1816a99d4cd33e267619d7ef1c249e21fdc53f9c2ab49a402d','d8f741af8bfa873ecd22b4fcb5b249ba8db540672d405312501ecb8dd6311d0d4ccfc57fe6378691',0,'2024-08-19 11:06:06'),('1183db906ed0ca905d5d4c45157d3dd3dd7f86d84419a4adbd527f4e2f699f45f40c43089bd8c8ef','c2e3dad75fb9c505716cbede3400b1031830447a2359e7b658bd6ff57684100b518bf167ec30908d',0,'2024-09-20 12:22:12'),('118551dba9006650a98254354eb45dc71bb512337e029ff0cf778c8808cf4431d7b25fbdf188d59e','ba7387e0f750de74b54ee5415b0a227800be48cbcfc235d7f2c32b3477e7679a03bb39c60847faad',0,'2024-01-25 12:22:05'),('118e69f7a22a264620191de8c5565c2b49e61827da0acc7449d62c2afd3822bb16c70d6c703f87e3','000d1b11ff7f951cd09b5a12f0130f7a08ac4b3238a1c9b698c9e93b48a2ee384f80ba1f1d3718c0',0,'2024-07-14 17:17:34'),('11906096c789ff2f723a3bb987e94458180cbadc05301713173a60f53de05819470289fb60f8f9e5','a58377b9702f29a0001bbb96a618d0a6d6690f39f0728b1ed594f50eb434ad79a1c2a083c7272050',0,'2024-09-21 21:38:24'),('119285b698311b0fc576974fdf291cfbc6181c68f1ac40e823c994c4f1a593ab4a036ce3f8c4ca44','7bff39e476f63d6557a72f2e8ff4f918141bffd07615b889f855cc1a2dc5df074ca7b498df315d83',0,'2024-10-02 18:50:35'),('11aa34e63e2c24cc5b825856fbd879ed8d3e2bff011b25d38040340325875d2ffe86500d04bd7360','953dbffb0d8c8d4c08df04292a5468466e1edd63afb2f3666bd7499f4013453bf40ac8c106d2978b',0,'2024-05-07 20:29:34'),('11ac2066e809349d06ae110e4800a82a7b0fe2081fbba9ed1d1f76988a5365618594080526319136','c1d80596f4217e476dff258464dac37cfa101dc122c5082d26e74889b00834ef24adf26393445a49',0,'2024-07-22 21:07:32'),('11af31bd362e88bb5b6facf7f33c96114dcbad4e230132cb291fdad14b947c54e2e15c76eae1e40c','702ac494bbe1157fdcfd444de7af463e37ef37a2c30fa6e6829915873643766499ca1c20058d00dd',0,'2024-05-22 20:00:49'),('11bf32249f4d084d35e2791a99d5595ca2fd4e291926d99f538afc74f8422d7ead087638c63855a3','946df0447c3afc593944b0a23a854f2db3b7bc94acbcfddafd51b5e196fd1042ff795395a470d1dc',0,'2024-05-14 22:14:36'),('11cf0a935d882a1054cbd7651436a365b2f7aed4a85e635cd3e93a6e25cec1b369d600f22b4e288a','1660af97523dbe7c9273ac096ae3cc2b6916d8d11a1c798c2bd9c9957fb6bfcdee2381adda792ad5',0,'2024-01-25 00:01:39'),('11d1e584694c2a4ad0f2120e336719598a413a47223b8bd38f7fca94eedf81f7d6f91f56cc9e25ad','c4534dfff32dba2b490d8b812e596db90a54469b7af1790532ad0a9a4a3dc15ee93a9063db207954',0,'2024-08-13 11:31:47'),('11fc799d00c798fa072ccfc572d82f3437673e7d2afd77478f6503cc62f689ee0e40c504e0448070','78ab68dc1d2c9eca63d09e6c8a44258820dba06696b0dc56618b1d9cc92a5803f69c2a600782a25e',0,'2024-07-01 19:35:33'),('1209449b1be8eddd511cc2af4f47c301c07788ac83cf4d82b9d0ccdf27b8640ae69c953c9709dffb','08bf7382ec707ec8f5043eb311adf9062680f0c80e73ce8970a99802b8026f87f126d3e0ca880037',0,'2024-06-27 13:04:37'),('123168f9e41d550a9c00ae20da833069105006773b25e2da373a7c75849949c848f9f22faf127c8b','b0c3573d1d4458906f54519be49a4dbdcf7bcd7fbd5722d2299908cffcb574d6d0cdd49e730bb2d8',0,'2024-03-23 20:46:44'),('124a2bbaa7ca8b40298b8e269f33328535a1883fc257b170ffe467b3876eb2733492c1fe4ef743ba','087f55ed6c6ffebab4366ba09f51593b28f735ecbd8eeef8029715daae33f1a97291d2198b9c2bc7',0,'2024-02-14 20:14:14'),('12563cb9a43fd4f5d282277c438ab20b5858162821d740bcd5f56105c72bc7eb8df24885b439c699','d95776136597fcef0194ca21e98bdf45ca597e0672dfe0b7de03729fa1cfd976f09d2ad4ba7caf03',0,'2024-10-06 18:31:26'),('125dabe3205e24b6d77e75ac30bc3cd79cfcc2da959ae8d20b5a004e62ac841b2fde78c8ce0ab5f4','71242bc7f5ee400ed69ed8bdadab45acae486f21fa2169df6efddd57b57098644ac74a82f01a4fdd',0,'2024-09-21 10:13:49'),('1265130fa5960ffa20da5f739ec579716c111d4939dad356bb07d5d9e5c560c0757f0b61a59952ed','68ca3fc6d6db0600f51179d2e09ebc49807780e31ee57c8b51ee97b2369bcc485b60816054c3f371',0,'2024-09-28 19:02:25'),('1273cd979b700d6f1ee24dc675bc75ead94b87b9a21455f0dab00755ca549d77fd629bef66d79772','180fc6bd90cd7ca49d2b3574a29ef7e3fbd3190e00f96121b0ac38f20f2c6d5326c254334fd99d74',0,'2024-08-10 13:48:12'),('12771e608436f18adf13e02f75cbe7ea2596b25a1c2a04b9a0546752da14b4ffa816accfcbb03052','5cae555c383de683f97a56d98d1923b272cd735e738bde25fc6a685373a3972301b060742b575f36',0,'2024-02-23 09:53:35'),('1287c184916b3201373e45b574d8b32674463951daba262029655e1f1785706dc4b25f84aa592e86','0b6471813535450f675889dcf3d90799ecfbb885114f6a7f66f2249f9a66c49704879044812c97df',0,'2024-03-12 01:16:01'),('1289c84e08fd34d02b132f8eb72382d09e80a3db64b61bb99f957585b248d66048b7f9dcc89e898f','0b64abff0e5b0f44dc240b63664cf33cf734d36bb8d1558bb21b571fc817fa6ee55e19934f811967',0,'2024-05-16 15:44:25'),('128a5f83c05e0b991dccdf7e3a4ace7b4b19a873b675a90e7d9746746d0f017d7ca173e80565db5e','4593ab0a9ee05b7466e4a3b83700ebbd91cbbf393d3dc25cb3d76531930cf858c1266eafbd79fed3',0,'2024-01-25 10:52:26'),('12957a6df9aed3168f5fa0d1c0af609685a5a54c308544c1bf4b35fbbf1b026a9e11754502b3cac4','13f4e1c044fce1c4e4ae275e753f5e4e02d0d52984351790f37c7a49dbabe98de28cd4106546012c',0,'2024-04-11 14:58:07'),('12959c3e5550ab32fd582c1534e6291d3988bb3ee7de2ae3f55279f08cf6a3fd719b3f055347fcf1','5cba5b8c633c4a4a436d8a34d6414dc04ee2084c11c4a939ecceedf4f9e8b089be3d3ca9d8493f74',0,'2024-09-06 14:51:26'),('129c9ac7a400ccc4f32196b5bad6e8e42172b6f266ddfd4b16f67ec79285d9fdb28ceb7697b464c0','9d8a64fad648d3b32d4656dc47a137ca40709bd215ecd764349ba9b5e1841db26df887f8eb59655f',0,'2024-03-06 14:26:49'),('12aca3d78ff72f8fee23e9c36abb1b7782e702eb3b8b87515156a07358d906706e4863878afda6b8','a5795022edf569e620fbebbc19c0c7772aff8982d2136fbda67db7201a20dfacfff74e7438e928e0',0,'2024-02-24 22:56:17'),('12ae297e5b0acbbcdef3ca470d7dc5b36a68dc2c4c4fe3d37bfa0e3407b633e59e41a3dcdfbab184','cc89d0c1ea13c489e6753b61a290feb4e9f7bf620b222e1e2ced64e51bf97c8d98795ab231f0fb9d',0,'2024-06-05 10:29:20'),('12c5a78d0fd874103e73bf24d11b9d06b43f4486d29febec76b13ee4a9788f51d6e54cdae7a33d02','21d0056e29c29a37b09f93a3155d45470c55fc6e31cfb3aec308e6375ae14e8d81185351cb6729c5',0,'2024-03-01 05:11:32'),('12c96780533882a574e7e588a7343465eb16e99bc05d7d3caf37ae41aef2c1599bbc18c6b8aaa448','fde08b748d60024787ed19704de059368111871b685552ba033af81b5ba72ffa8c2ad6f1e7b32aeb',0,'2024-05-11 17:05:45'),('12d0221e6d127990f9bf82f1f4cccec96b28a087bd4243f1858de8a5d18b0ade718b2a9c19ca80ca','161a4d3016d6d95718cd9d8c6671d98ebcdd6e5b16a78f8848fc6bde98f13c081978639013067956',0,'2024-01-25 08:09:41'),('12e07f6475cb497d6c4528a1b3f221a79d3b20d10c8a3433d410fd50130c5e1df1e9b75d309877f0','4f4ec2deaf42f33ba733365cd39742fbbf07b2f8bd24d2b0389e751a49efc4179da95cfa73f23918',0,'2024-01-27 09:21:21'),('12e5be722b618daad20733b43b3d51ec0453403ee5fc14fc41b4c003371aa2a1081d7436c86fc737','c548ec4cc702bc3a39d8290fc561f5afc6fc5b0ba83fb12b29621b334fced769001bf2c305b68390',0,'2024-09-20 10:43:37'),('12fa81b5e8ef0da9cadffb2b2d2a6a053cb60500a9451992795ee66df055c990c0bd736bda3bc346','0b3173fc09d96d9b654dbd84f5cd9080ce8d233f488acabf474c0ebf78abdcd747df9aa78a48e5e1',0,'2024-09-27 19:15:05'),('131a931498eb4f0287909156627c762b6d46dc8538f426651a8d689b34d9c0bb60c5c28303d5a660','6aefcbee48c5b10403ac6777582a225f2dd01b73474b0ea50f5ddea8204353de0c2eb92d58632397',0,'2024-01-25 16:48:05'),('131d81605efd5e0bbfa9ee56d869dae08a8324b3ff73488357fa1cf068da6151363b9b03a47b4415','4177cd49149e1c88ab76b6938fca7f0de6f4d6d533717f0a540b128c1c93990441a6c603fb14ac07',0,'2024-07-23 14:53:23'),('132884ce48157546ec2e686332cf345232c4168cfd72f3a3d36021c3549543d63c92a3b2c7d839bf','6dd65cca82a3820dc6339dbf88227f3a820ff2368d0b019e39611e4fceb671dd0dae04e549e9c52d',0,'2024-06-12 16:28:54'),('133c19dc150e41b30de2f592b708aab5a9f42d22effb9dc13b0824eb1a551c17652b8faef2b9ec39','5b9765bffb7f6e628922bfb6420270c59fdf65b2f57ac31e42355dc8426cf156c8f7bf4c3060ae3d',0,'2024-05-14 09:51:52'),('135da184feba9a4ece8f4f26af9e4dca8a40595c42d771ce60a48f978be6038bcde668592c84dfa4','4b79aaaadba5a01b5755acfb1577647010cdcc81406fac76f243fb73fb38596a5bea3f3d7d0f1ed5',0,'2024-05-04 16:49:14'),('139266a8177d90880a8546122b4f0edce8139da6d1615836cfe44eccad6cabe19f652ddfe55126c3','9baa692cc87d3314d3b07a6d2d132afad094c287c8cd83ad79c78aea9beec77cfd66e08cd11d3684',0,'2024-06-25 14:09:20'),('1396cf6ed8064792fd749d0f5a2166cfe82da7d60ba9d64db21385f0f62095bac04f9c8c4a8c8cd0','f862deeedf35a95c12c98bc22588d4b9970acb2e0e3f7fd855263f9378e5d4f6c77caf76d86cdfb9',0,'2024-07-29 18:56:21'),('13a6dd33b920f1f67d9d15bb8e66bf53c14369a6d298c5649f4d8cafb76df3932d75479bbed99244','b3501a8748910ed00559e8800d650ed58738163cf549cf23ac2dc14b1b804a8e3244d39a2e89dbe3',0,'2024-09-15 10:54:21'),('13b0e36da4f735f4ef75c444dd94e6b58c6241abbf2d2cc001e0942a670d9bb121cc139a4879d5c4','da5b9547313db05e11de4eb14f26963070ed643648d8ab911b3f6dee24d827af7b6ed8edc6f84675',0,'2024-09-17 13:01:42'),('13b22d56834b3dafa971f496e6582ca26d7bca495c384e9ee740ce54ae0c6a39b02669ae032e162d','f2d70478e8cc05d7008b68c4a7c290f0a8cc4834024590b981437b69350cc97afa343418cc3da343',0,'2024-02-21 13:52:49'),('13bd4c4ab155e6aa8c517486f1eed7000cf464940a4632df328ca8573f0cc6b7b5d360957ba5a88b','56f97986889f67ac42877fff83834cd4b6ae651b6b43815679210cd2f4571bf96099dabdaa8470f4',0,'2024-06-17 17:07:18'),('13c4e640c7bb842f2777ef1b7fdcb41adf487f3a328d446bdb93c17da7826705afb4c54c201ba06f','f81ad759fd80f76bab668cada00be8190827c2e4b29c9e5b51c04b223704531496f93b5355e22266',0,'2024-09-17 17:27:41'),('13c6f1318dc102c07e5444420d79f6999af72897edac16993ff38bdefc2ef1c51e0a40f609cecbd2','66369d3a27bdbe33732308f65e02d9b1b20bb53fc3989336619e15ae7e8aaaa95dec03f0a343776c',0,'2024-01-28 16:20:17'),('13d369cd681e8373a3b5d66b8fe0d62b597052aa46cb15b6cc48ddc88832bd1782f472bd7187fb5d','6b7b5674a2c5710f9114229558b73daa01a683de56e740f2fc5fed0ffe62428c12f79d08a890a203',0,'2024-09-13 17:51:12'),('13daa5c99e76178d9c08bcb71a87fae7fa229d77a03a9c69408d740a9df0a45ff51e9962b0d2e974','97f41070af36b2840ebc185a51c06c8a07c31e6d06cbd3a07d95950fe4257c31f35c3a8fe8f96b35',0,'2024-05-27 14:48:51'),('142ede0f4e6bfecde6db0673a07c885270bba8294bfe1ab7a986bf81e05731533bd84f803122dd47','cc9a45eb4dd0256570e707e95b9bd98a6dfbc85a602938242bcd25e97a751f1396639b9d50a23c3d',0,'2024-01-30 12:47:17'),('1459195e764d11616323eb793f29d97fac2aab78beb9525c500e3a274929a92a92a2ce17712bfbc2','605d63b4b2f96bcd34d32ea0e8e70e4dd9c3230fc8a8b9e61366a69683cdb05b77a202cc5c4cbca4',0,'2024-05-12 04:31:05'),('147a8abb504959841c9c89abfb812ccd9cf253e645b081e1223173c3bccf1234d682033051537d21','65b4f44869491fe16a526072877dbb42867d980c8bc04ad8700b5c1e82d257608f0037937911a36f',0,'2024-02-05 21:27:28'),('1480d55362408989e428e83478caa080babfc6b2853a85f24755a745ed4936e2c3c70126f4487d1b','22f410a8d05c639bc1de5e809b2f36cc4abd7b613746057f694f8b21001ed0f097469a7e48cf5ad4',0,'2024-09-05 16:16:36'),('149f99a2e76fbbdb90c4e4ebbcc283f7b3f49563444d6f5536a3ce2594041a5b4a03c6d5d1c40a91','9920eb99326e8b7017c1f1fbf40f150d03ae9851f5d894d675a69fbbe4e6408d492a6db1f479ac58',0,'2024-01-28 10:58:56'),('149fcdc23697a2c8b8d41831a44c390a36e7676fb7188a1308662898d5ef7d12a547bdab5238f97f','a27bd3e183003a38990a52e5e516702639438592d3868c2aba63db359535a07e3d4c23cc137f625d',0,'2024-04-20 15:57:51'),('14c52619348ff4bc7d8bc9728e7c0f87ada8e677c6123f38f76fbe59e3b62126327787f509a943e4','17bacc24909ba82ef5a20e7c0f1eda82dacd33fe4a139356727599a920d56ad32769ed0fcc746fd6',0,'2024-06-22 11:21:48'),('14cbc7c2a1a6c6da5d9f7ecda06678072260348511702806863078272fb145148b010775184d9274','b32d569d470d9fbcc63392e7c827f8f51c8c0815694c382e14ce403c98e5b1449a2a600df2c02888',0,'2024-01-25 17:36:13'),('14d12915eb7c3b17a7a39c1a5a5df1cd2f0bfe749e4b306ca9c1422d34975716ed030b75463f9ab0','b4fdc8a112730b7727df390ee33906aeaf2d36eaeee92a46c963f9219bd2394261a67716ea83e513',0,'2024-09-18 15:25:57'),('14dfa3b358aeb2a4a115f740276bbcca018758f829720435c9dbb430eda69f599aa6c05196c5c196','4512147c9568d435b5081c92d970c3e60743961f5b19903537e6191ad4c6e567c40f3b89f6f948be',0,'2024-01-27 08:01:03'),('14e7cb5fe10707be9aaaf4277831e4706f8bc8ab2ccfdf68f13b96bb4ba7b7f67a6be460cf0ca772','a06efa2018257225ab256a13f9d3d88764e0e9d9548f59308c5a8525aa3e05908f2c352d1d21c1ba',0,'2024-04-22 23:37:29'),('14f36fabb6ce5ba23dcfa64fb28d1abc640e58d1fbe0dda50e57042759cb2f9c005fcb601c85edee','5d5d343cad37c8736ae7d6bd542a147ebb599f8de9399fd20ec8f65f7c9653b1ba5108a5ce46eef1',0,'2024-02-02 13:16:21'),('14fb351d0f05bb1f68f3b54391b4d58d27c539751d36d0caae2f494c8698eb05a67fa78686ad744b','a9c61f9c15b7d1a01567766b6107daade71afc240eda6a0a2450b9bdc3dcdeccfe438b99f44d5102',0,'2024-08-24 23:06:34'),('14fda8692e87d6129b648c1e25b89b294d583193c5911b413129be8391dcd4f1619b115612b6ee31','20296f2a5421931564318aebc3e8bbf36e9bc2d8381ff98044a2735e0cc14dfd644146db977abee1',0,'2024-04-30 06:23:30'),('1511309d4c15b107f7ce6908248c18e38f9c63963eb641d5e6090bd8111c5082c6febe1b68e2d49f','9000b93832d7e7f94c9c622d989d11bd70bbd2ea90d0860b60bcf270cceba1b3494bb17346ede56b',0,'2024-08-08 12:03:31'),('151fac5e5a25664a2d7dfc906d8d936f77233bc6ba72e89a9fc38d51dfd7ff341fe8e6c7a0817d1d','1d00713aca4b8467d91a6294ce4657c42f956f3473561092b366d02f1c7f3536e847d6313f51a283',0,'2024-04-23 09:39:19'),('1524686430bb0b86d4d6925add444b56ac6b2ae2957f5de7958060b7b4c972ca2098cf791d7a24eb','22da33a7e9a21f1446dd83cccaa9d01972ca21725a62f0ce30cc8f750093e401f2b352eb007bfdad',0,'2024-04-07 12:04:37'),('153024bcb025eec1ee75ce93b3205b19b905d061142b5097fb5f86c7c02334ed0c6fd49f7f868b62','94a1e2e8094c97e7e337e8ee38766b76fc3b841b7de04d3c3fb2b398e6b7f5bcb29eb85275877c8f',0,'2024-08-26 16:01:23'),('153357ed9304580b66121caa977d2d838a46b45764c3f2ec95615070a0135edf340dc6c2c996aece','a024e6a8770449073c6f834d1f30be72e450ae203c35133b9412a0be581241e9467a11b3b85e118a',0,'2024-04-14 16:47:20'),('154220d602952b130b2c3fbcc2f180943d88c0966c58036789e8036d9398064f6bc10288f8e1d904','bfe56b78c8776629be751bf35b668902da994bac3f8bf2e06a8a44a25a323844e03bb31272d8f5a6',0,'2024-02-14 15:55:12'),('154a171584cbbeca8696d973073f40be80de2f17dac271091006e55e2a07d8d4406eadbb7b5e0c0e','de1747d23206e1708b54a34fd85e85dbeb8d6aea63f579894b20a75b2d86f83be2cb8a769dc67842',0,'2024-07-08 14:19:53'),('15564a047ba094285b0873bc3d478769d84c5e8d81cf155faa8700c7f2779d4cb73849f55b128f81','4f1d77708747651f91605ff3e89121e75cb8c0dd42054e4474924130d66b6dff430aa881507b2f4a',0,'2024-07-04 12:03:38'),('155ae0b700e292dcaaf5d82cddf55f5c02537b7e13859d9426fafbf1570765917de35706a12c3e1e','1e7cfc3bec6a77431cfcab0c9ac3dbc5f162207c2627c2e6bdd8ccc8dad7bfb891bc4c7ddd506f5e',0,'2024-02-14 10:29:03'),('158fb4ba50f9b9d00e02a46b4b5cba8b7373a244fe1fd925e2f03dda8637ae646d4475dde6caf033','5152472b2ccfb63cc30005b28a891596de0f61d988437de17bda71dc92d8f0f202e589f22c94aca8',0,'2024-09-10 19:25:30'),('15943cf1697ca7a14ba72bfa3fa4d0703121399a483fdb913031773ee0668f86bf9bbc96d2df931e','397f74565e213075c485125e0d461523db8446d6c05e9d44462471b7725955b802460d84ba9492e5',0,'2024-09-09 22:47:10'),('15b446702d2d691c39fe53d3d13df3e43fe2583e955583cad88398b8fdf6505d6e164c7053107480','7364e9bf8a2967027137d5fe6914b50f2de490da693157b62dbc4dfbb8eae8ab355f609a2dd105ef',0,'2024-03-16 14:16:40'),('15c6db5fc659d1a942e7820f9d26814d035fe4de99ed0ba1f500689240c424e4e3e670777743d2e5','d4f039e16ea7750afe865e9dc6a00159cdf8846aac4346fa1aee4ac6d690edd785a1cb1c84fca32b',0,'2024-07-29 16:48:26'),('15d24b60d89b004badbae216b865c7225707be5ca5efed076025488710f079167d1cc136336d9456','1a6549160c840d2769f569ee62c63d4b06df0b0caa580e5d853f05fe9935ce4328bf3ab1a2ae9788',0,'2024-05-16 19:18:10'),('15d8b94f38e6ad8b4e6fed0c5ebdaf5d570c49a82263168af530a010cd62221a25d4b2099a09b0f4','f42eb33772c01abed35e29cc9c4cd7717e97b0e1ba7e7a64a8ec7304d71b4f832ddc3ad2e16665e8',0,'2024-03-29 19:00:28'),('15e843928224974f766d08e7e81efbf3958da27eb089b9abaad642e70b808cf7fc45c25551ec79d5','9467c4b5b2f8d8f773facb5a31992861350a961c7a64062c88830202401734043917a356ec1873f9',0,'2024-04-28 22:46:31'),('15e8836a7e90f33fcc9e6275ed5d00d57598ca6b4512a2ef701013838d155630a9a8d43fccdf3016','e9a30fb219e386c4cbc5d353fdfd8d6d18d279e3be1207bd9b8a8d238cc1651282905e08ed7f3e63',0,'2024-03-11 19:28:23'),('15ea6e888150c83adae38411cc078f3b2775617a8d6e49cc9965c8061becd6eed4fd49bcc8b7532d','8fef43e2e7eb2574fd01dbf1401ddfa1a56df440945cd322093b1d1e56eedcb085a5be24faf466b5',0,'2024-09-22 20:50:36'),('15f477a3b72674c716508d59aec51283ddde51e36614c40b6cc83dd21c42478a6b8d16f1754639e0','b65bcbf33669051cb20bd4dd1acb61fab85b2fb5894f863c38852355daab60b3b4bb30e10876ccd8',0,'2024-03-16 12:14:08'),('15fdf42fadccae52d3544539bb56b69f0b0c2897c6468b768b2c444c6be6261459adc9e2faa29153','ab35c18c399688e6a570e2c36a2bc720ec27920e1b3f902938d586d452e08f2d1b9c680ffa849a50',0,'2024-05-07 00:31:02'),('16060ddb374b9637a0f7c852914ef66dc4b5c56e73bb91f82fc9d44211500c23d1546a3993e8fe5e','91c13b8bb8911e7510b92ad86b64a12c8cff381a94d24ab4331d5d5ba49791c00b800592e9da0267',0,'2024-02-20 22:33:37'),('161f94c1cba7a1a32c6ef28c81a84a15e8650af93eb798b139e9adbe10500afc471e09c9731688f0','36cb878553ac69c2f31fd55a5a0beed24cd23cf1ceb09980857c5f02c4ba8a9d5b20f42c9af1c0ec',0,'2024-01-25 15:39:05'),('162407ef9a29244826a4219cea79c5286ad11460be0951410b076cf8b5bb5d418f09b2cd374dcbe5','58e7de04e736b802a5c7dc98214ddc935206d8a5ca9e45057d046ead853c732d68a36054687cb147',0,'2024-04-09 15:09:29'),('1625ec757b293f7c8094f9736270b71409ef9289dbf2298986b5c40cec6bc0a194b5838ca554281a','cedaf9f888885ad057bb8d61b4f85a73a3aaff485db5b66173f57fade9a7edda90cd617f6adf6861',0,'2024-09-16 18:09:37'),('164e7ab4da9334c6062e99eb7afac09d854a67ade6329f3cb9cf2da115e225ffbcd2a1eaeaa556d1','bcf2953ab7aea8aea4f0df40619eb9e441c02bd825b1deed7d9de68ffc7f534599e521b0a4e04d37',0,'2024-09-22 12:00:21'),('16538e3d532fc46cb5f85bfdb4e896e62a6eb949f525cf600db408cec4719488a21a9e49c4801b8f','f47079f5eeef31aec6c0994f0dea03a974caf2fad73c300301b754122c1e0a24e915526dcf0d2b9c',0,'2024-07-31 10:17:07'),('1669c6348cf1100c74ab61dafecc389c9536d84b35c43d713ec40e32423aede91f12a03318cb79e1','4af1b72a979729e8f9e50a9799cf33b484e43af8e1085e455719c22eb242e309446af347a21af424',0,'2024-09-18 15:22:58'),('166d90f2abf35e80fe60cc9803b9c1a570530e28c63f3fe4425daf2e14cab5c78314a4aaf9dac7b6','7ed7a1a8355e9cc3d1183f6ebe843d32ff1101948d6c3324d58014a3e6ba3e67927809bee57f8605',0,'2024-04-17 15:04:28'),('16718b3a925e981cb789a676a8b578a3b3d758e6479bd88748a76e428626d6b9bce72dfc27a7423a','042e97e672895f830bcb5aec812faf55e52a989b0b7663a065b88ac3122e139f83b58e73b4ff91bd',0,'2024-07-04 08:47:33'),('1671a8eb0f5c514d2c29025b440c4bdb31ac76c868580b733419021e6f4a5d3d2fc5b30457b41a1b','d023f6f31aa4b381830b41636d6fa328ff5f984e13d7f67994c60116b271b3463245fc2d07a52b4f',0,'2024-04-21 21:51:09'),('1671c6ee4a307f13e722e52c83a2add65fba57fc9937f43414ee14d23848cb1faf91bff9aaedfb46','67f14a0dccd0e6da07a387631664dfe6c6fc1c65161170decabf315e481539c66b5e26e5f26a5e4d',0,'2024-09-08 17:16:17'),('1672c003dcc1063a431cf6e51e5b223e8152a251c21589f1edcbe4a4d4fb7651d1fabaf1c72626a7','dbdb25043b48b1e05d5657a1ca11e7605fea8d6fc55eba8d6aa6b8bd1c9d521219138d246aad8e06',0,'2024-05-29 14:53:44'),('167de288899cbd51e9d8ad7a4cb0a880601273cf37bd2c02295cfb38bca971509bd2ddd6d4155f1e','595c2688a0aba0c23086be0b867126200c76789568748cb373c8a16e121983e9d02bc79288d8790e',0,'2024-07-30 15:40:59'),('16946ca63c5674524996d0aba02ed97158d9cf65df05a7c937fd94334d34bf03a861a0a11df7462e','610ffe404be615a0860f29cf780dbbbbdb31257cf30b9a8aaf80b52367480ceff47557d72700e738',0,'2024-06-22 16:41:02'),('169e5659446a27fea1021ad87f1717de3d9646a040d73412093c662b23ec254cf783e174aaac120c','025dcd29244265eca5b285f5a39350648ca6193e42cef02d67008f240c204c35f96847471bb06b1b',0,'2024-02-17 06:43:31'),('16bbaaa9c931270349477d2f0dbd75dee8f33a5de4f0ff3b215fadb5a5b2f12536e6cfa31ffbc40e','f703ab40103f89c96d46f5f1a8d22b52e987cd5175562dd9e29c56ff782cfcb89115d8c490858f34',0,'2024-05-08 10:48:43'),('16cf960f8044856f08b0b6252c289b6d592a4f3a9101a5f9bd4ca4b872599a9278925af198e681ce','065225923f8f25b98fb51c01dc6a1eab5d8750451e8c0aefb1ff7f7066a93069fae9935fb30273d4',0,'2024-08-03 09:08:20'),('16d997dda59698e2d25b3b493fc0c90d07b2efbe433375cdb049449e1c69c153ee722b5c0ad59359','9b27c1a0cc3b829c22d21b361678bfe6c559c299a81748f2586f90edcdb0fa35b5823b231885981f',0,'2024-02-24 16:11:46'),('16dfb6880c6e729ce84e0e7c604ea66fceade3d08c550912009bfc02ffcee98332d1767ffe4dd6b7','122fd283e400dcca18aa29ee99a869cf611f14dd8bf38a8451fe2287e87e4a0e526279316f9209f5',0,'2024-07-18 22:27:17'),('16ef8bed144f19aa3746cfbd8d4385493e105846024c6a7a0e3562a32edc52d2f0df35fd7a9d0b73','dd3daf5e78c5672f2dd7db4cf1c0c4e7390fd23d1d645b530bf79c77201a6116ba2399b039070d9a',0,'2024-06-20 13:36:21'),('16fe1753e7bef73e127f6c2d98f1630a5558e61e509d1aef03687009d8563e0bb32fe49bf85942f1','2b2e6a4b9461c09df0bc6ebcd3d5494b1b58d31cf45d8c6c786bf6595f171373936a99ae618a8e28',0,'2024-08-27 17:36:36'),('171444b6f0c1b36e9c522689b7e141a31c785b80bb9b5974e28cf686166d28407fab9f53a27b72ca','4ec7f93778275e59ce54ee605b2dfaa2055db880e1ca2086c41c24f6190405279d8568ffa15bc4a6',0,'2024-07-21 10:52:59'),('171e05125bafb4eff9da6624c2f6d9e53aa91b30423c0c8c463abf4bcc3a68e8cd9ad476f10bfc94','bed871e28c5dfe94ee981ae8cd7dabd11722dd3383a360e1410ac657a13057fe4d1c2c9d3887ab2d',0,'2024-02-22 15:57:21'),('173d8e1b18e60e11ee03c391460dc8718ce688ad2b388ae57a68646420d5a3a7b30696e1ed371071','ba8e87c400a96446e252eae2e98641c1155fa041be2a53f2cdc33bb58cbd34817527c1521ab1a3d1',0,'2024-04-19 21:20:08'),('17417f8807d1c5dbd008e05bf610c7b1152ecf3c393da3f04d2da0ff4ba52414c5ac753ae542e4ba','6bd4f8510b27e135a7304ad3c3236b59063ee22043460b434d4febc3dbc0a6e1322faac1c990fc39',0,'2024-05-08 10:35:57'),('17668455ee8b7679607fb018234c328d9ecfe735b71e638faa10a91940996d06ec9bc19c686af56f','479837067b483ec22a22d7bc240c9bf40c00bd6a8a075c4a8e80f42b7fbf311ab32cb1d46f33657b',0,'2024-07-27 22:33:59'),('17695256c6f1c52c7f0cc82f6eb41472effc338c95a4fd0d5c68f522876fc1f249ed0c627b89b9b3','866c4a26aa576f3eff5ef0832572c151755be17f71f2ec41cf649717f3f856b3883e464f94e8d0d6',0,'2024-08-01 23:13:22'),('17733dc198edacad3fa109bca655899a4147be000c58519e0c3de87fc993710e80ed5eb54c457629','288a87aa0c375e95fc3e32554718751c395156ab0af0007df9fe971ab6e39882145698b36cd24490',0,'2024-01-25 14:39:04'),('1774693aedbd0e205de086a3e0612c25529efd6f6941c8b222ecce6a706918ed72eb958bf689fd1b','1b522c3c7e84e942d72b6fc62c4887c922d5a78db39644fc30a44915af54a75f41007dea8f6df2b7',0,'2024-01-25 13:16:37'),('1783d08261b459603d4ab8d98beb9ca75ac9c25d73f2d1f9ab8f0fa28857f4a6f3fd75c9ffb80e62','68625195c36e65577a122faa85401c0ca3bad976055b09e250eab468143b540952a6b3dc8d32d2d8',0,'2024-09-14 10:55:10'),('178cc8d7d4f990c5a6f6f65850c9bfea6b8be05da0ffa4ccaaefc15d75abd42246b189be4318ec52','41d6d01e44f851b38f06ec97d99c40479d8ace6700d43bdfa03233b82dbb75a5b4f45c164c43db20',0,'2024-09-01 16:24:30'),('178d0cf03611f152bfc7bb54df2bd03aae94171676218aec5d50c065a9da569b0268b9f24c2e7966','0d8593a4011319dbd7eda94cabe4b0c5806db6de6012470fa3d1ae408fa9c22d20dc2cf7fd12121e',0,'2024-03-28 17:59:36'),('17960c21956b313051b38ec17ef19571a77f4ed8cce593946f5258c7e007e36d8db7c3448a6aec2b','34c85b14cd7dbc4c0355fef9d64fa6a3f01362515d28b5a9bdf0014ce27807a5469e0f7168458918',0,'2024-04-22 14:54:02'),('17a076052ba18f26c33e8c8cc07895e54d17b551c75928e029936c03822bba06ad7e95548c76dec5','fff0a84b6610050e04a32a296b4c344c4a2f87aebef17e329704d56fc61c75ad4a053751e3fba110',0,'2024-09-28 21:07:56'),('17a86d187e2a1b09d4c8d0cbbabbc1a0da9fe938b0f4580e7e4e571f3bd7a395c3edfa49696f900f','527654a04870ae816e2574c2ff4fc648b6aaab30545563073accc2a50573d4debff3f29c102616d2',0,'2024-04-12 08:31:43'),('17ad5e4bf07a37b1ae1474520427aa568618bfd6f14cfd966be8dadd9992176682fcc68c6c5166c2','193cada61c971be2bfde3a17125806c8cef79a0507b627647f2624443dbbeddf9b6b7f3ade0b5915',0,'2024-09-08 14:01:39'),('17ae6f57ea58643ad39a33685b10fb4f09243cf4cd5bb2955d000e4d9cea670b781d4137b8ca5775','4427acfdaf953d762dae724ee10d3744d534d58f19b976ed51afe537cb6ee774dfa99484ce6c75e7',0,'2024-07-05 15:50:41'),('17c051f660bbc959a0549ded21a020f150bed72121bc87e40537985d14b343b870423f9b44d08166','cada94e10a894bc589303222df2be65022932feec311f1d94e2c3c355a5fc6e38bede9cb04019813',0,'2024-02-05 10:42:21'),('17c52fce07b7e0bac9cd6a8cb83225496bc085e2bfe901b2f50779e8a88f6cebfa139619a5708594','fe76f58d27ca9f28e64968d3566dac15aa7e06d3a1918110f1f4503c093c738be80184277c166eb1',0,'2024-01-25 16:26:58'),('17ca34f565fc74aab1bd517b606d9c98d117ecaa8c863875ea692e38a12cd129118113cd2ee80ad6','3d32f5df420f24531e8c06c1f11f23764218c56bcab2e35b8f07fcb4b44ec72e5bc78355e3dc1b47',0,'2024-10-06 10:18:38'),('17f4f9a6ce108e0c6e27ad377ebd578fcca281e16d09f010fcf08b1dc7a8830f5e5c358a21a0a24d','3fa08168770c7f591fd747c4350d1c0e083adf4b1181dedcb3cf2b002efe96a0a0ccbf282351ea2a',0,'2024-05-29 18:38:40'),('17fa97af91ea2daa15e91046c94980fe9d75eca00b519530f45a4e9a6c81f0e5f67b8a9370fee0d1','4bda52544d7ef232451372c451ebe4f6a86764cb94d2a867dfc70e8438203041b7343865fd42cd9e',0,'2024-05-08 17:36:56'),('1803e68eb576de7b0e35e8d978d2a3f88bbee6cf0dc98c7d1dd58439b8699111bee8713fd3227bfe','01757b949022b2d697a3923ae7e5669c869800857de73a3a5e2d17c321f07838974d0e165ee62ec3',0,'2024-01-26 15:33:45'),('1819f621666385dd46a87a5abc485b11feb8f0d7bb1b61c9df84373caaf65ae9b3935344d7cbbc10','78f578049cf5a1a26437fe51dc4e5556cfaf052b24f35c1a570a65ff3b5f56d65bce9a404ceb8b90',0,'2024-08-07 22:13:51'),('181f0985b21cc9aa4f2f47266cf060e6b6b919171bfee9d53c07df1d8be7ff2ed91efc1b14383d3f','582c5be9fa100462a83766e6903a07e752476857057df2e6b089e187d7299f1e9002bbf8103aef6d',0,'2024-09-19 20:53:08'),('182ccabc7daebddf0ab571eb0405ea336790f17d2d067bbd44c368879287fcd91042d4f3198e10ea','332aa6a60b8761296b309a3c01914e952373862002227f8cfb80dfd1ae7b91708f72e02a3d2c0280',0,'2024-03-26 05:32:33'),('18399d43056e1f49429e406b3aaec686c98ae483b4d720e25957a5bfd8722835eead10645c027673','8fe28c3cf7fee33becac7764c9c479fe7cf6c83d323511ef417aa6b63f74a877127c0eb8e6c76126',0,'2024-07-30 08:07:56'),('1842354301a1e164e52096f8bf72b9cb235b65ae9e1ec7d93c5127a33363e3e76ae7d7833aaefc93','a9b5dffafe69883dd572bb53b42f7cb9f259c205df52d36a957ba648256fe0d4024ae60956f816be',0,'2024-05-01 10:51:37'),('18534a5ef5612a90974981a51e4d19fef58711bd2a77dbf4d92a0f83fa22f697195e73afbe4be489','d8f765443bca586ab0da0bb20d80beb6c5133bd76d54112826479508a372c4eb71f9c61a24944717',0,'2024-08-04 20:42:04'),('185a521cba405d93591995614b9f27180a038ae277d039352f03e243596df723865eeeed3d952e44','bc7b57386afc35f1dd233a9aeb90ab24e52035b578d20e9abbfdf73c9010da15d525d8cb10fda87d',0,'2024-06-25 10:15:19'),('188e2f9d36368ce010d14d4a7f985bd8e9201081b7e45caf5af770c8b341f235eeaa19376be2df8d','bd1fb34cef6a7ee424e14a07355cf41ce2c2aa6e64f8346717a68eabcecaa44a51e41d2f30aed2a4',0,'2024-02-25 19:55:56'),('1897f4880d9c2abd52c125c170c56add730f6cce40f8fc5474c82d103f208dc14a61153e023f54f6','b72580c664a9726473466859fb50392b646af958259a216833b7ce4e19bb98da80f96bc0cd1a4e2e',0,'2024-09-04 20:10:08'),('18988a816543862ee325848d58bfa31aaaea4fb7e278b6343fe65fcd552335c9e1750ca353d91a5f','dea880a080fef9d9f0b542da4c211afad18b9774c514ac60c84bf901d1b0cff3a3706eed2fdb02f7',0,'2024-09-17 23:19:21'),('18993af206f2f4f0eaf82e99ae4e4b5fced0bf43ad0f23351b3ca6f0b4134e0b35d079d66ff6265a','5e03a287436e7e8ad7f36f00a225f6412195760ddea2575cfc29fa5211fbfe06e4bd88ce2c096df7',0,'2024-09-16 23:05:56'),('18c664af50b6349bf0268083aa6eac05537f96bc8c33fe69d9cdd72eff7230301927cc65601cdc75','3a88bff6331b559818e875e0109984b642b8b4d0b62881ffd484ec339c56ef51e1847a0e9b303ab4',0,'2024-03-22 18:40:15'),('18db7c6d8723562f379e5e98c2343239dbb64fff819f0a4f99974efa7e99176305456a3487d287c9','7593d22522c5bab2392a8c6d5744ef77dba2877766ceebfd4d10d57de1cb0159f896deae7e312e28',0,'2024-06-15 17:33:32'),('18dc37cff64b875a9e78c5d4b36db7dbd33e9d4b98e87dc05396af4338b8a7d9f1fad58884be1db9','2e0b19bab299fe312548d3ee6b4a331db9bf61da5c452fe6d9100688939f383a414f3197877f7cf4',0,'2024-05-22 20:00:41'),('18e2c178b402ae67b462b83de1166ac1250dcecaf72f1b85a1117a064b4d13b12ba48bd8ef229093','d2cf60ab8ba9b9a2be7e8098e26bd9e07f2cce9e8e750fa18367beba2faaf926d97c1055b618a6ae',0,'2024-07-26 20:18:16'),('18e6baf310403b15f3de181c6720a48e6d72f8ae1afca3bef2efaa82eab53ac2ed0045c465b54a81','816b1c80f7113b42756f917cd25b5124befebccc506eb6f8d23983126b57849f0b6980da5b9062ca',0,'2024-02-26 08:45:56'),('18f6f87dd22d07639af91e3c9ebf592ade3c8e2424969b193fa3f00eca9fc7511996d63f0a8b7eb0','5f717b12e55d157fb6709680242c57125346aa6a4bda87a748baae1a222ff326a5d930951929ecb1',0,'2024-07-16 12:11:33'),('18f792edf3f93315b4496d4699d0dfc63ac1e758b291c65629b5d85c279ab722f9e0915b059a612d','2dece457499edfac97442d2b7b21b71fe5487fdc20c7683c70dc5e2da13c4f5069ab91ae9ab54876',0,'2024-01-31 14:20:42'),('19084b2903e9895fe8c62dedaf42149366de54e1665d490328d804b4d30232a21956c8f5d7048290','a959e7911e559bf4c914fefc74b5a2e70684d27fb38de1882508cc1233de1a86c3035f24078d32cb',0,'2024-08-26 14:37:28'),('191634e751a4b6ede8023f0269868c1264c8822d80e0a0ade73f5658dac022aae3fa0b2d88855a0f','2b70c46c71693111cd77a7f7b7d001029dee24b0f23321a0aaf60368921cfe2748934fa71425c4af',0,'2024-01-28 14:38:15'),('19180bee64f81b2bb47378f03c4d4a415cae74757c8eb3cac7a8af89e42e4900aa6b7769ce876f09','51b7d6d90b45c554f88ac25d8e9b4a5ad6458810660d76b1074569edab9b12b0fc3101866c361726',0,'2024-01-25 17:23:09'),('19219241699e3db66a29abf68fe14a6b0047a48adc23b49285a5b9072e2da43b49ffccc19191fd79','73e83e3c8ad1beed387b6b5271ba72d332024dc31ecf80188656a74a6eadde4c02bb5437c1a60f09',0,'2024-08-05 09:11:24'),('194bde9b0e794edc8228cdb17aaf653fcab37b5b7d836bd55032cad3d911a6d3397b436fd8e6871f','6f91566bcc130c5c693a9663b69b4c65228dde438345290f40f8f6e17f8fe40b3ccfbd9c0cd1fe56',0,'2024-07-06 14:02:47'),('196675fdc481f5d6345cdc36312df8ac8f9a7cc141cc465e1b37d8e2adcb592f1ebd675365729bd2','4c0ce3825f0cbc737ff228a598e91899f471ea1d3a0b0675a5e18d1c7f389a639463e8ec4753c3ea',0,'2024-01-25 09:04:27'),('196fd36fb93c7256d3f46a44411f0068d2290585a1cdde91ccc68d96678d51703813781814f3c7db','2373086c638b835469eb70ae610ee33cbf18e1184c0f91c2ae90f48f570c84fb3e288a73987a6233',0,'2024-09-23 19:45:49'),('19791d343bc155946e4b448a1b07a8151568e0da65d6a4c92604e5f0c9091464691232d4aad8e517','4b15762c13021843cb67f41a98e5fd3fbc14f7e3f200c942dec1cc6990e1d0d0d5649d990ca4aa3b',0,'2024-05-14 08:57:55'),('198ddc661cbaa2893f8c7784b8737d0cf505e08fbdd4150da07b6b428d8c222fcf250ba3c2b02ccb','a3f84f5293a41eaff1de847d45234616ef82e99b8ff1b8da4a05ddce9c9a110073b9c9700c089514',0,'2024-05-30 11:56:35'),('19b3c679f7578c91ac637f27d1642cd6171c69a30f1939ebb62021a12a1c38afe75872d224f6c588','ffeb160da49dbb507e12286517d16b2eed357eafc9d60d06e7c72fb15a3f0794d1ebb2cbde575335',0,'2024-03-03 14:44:57'),('19b50fe68d1070625965a9fe7f541ad2dc7c4e5c6751dafb3cc21a34995f3bc7cf04695b1f16515c','172e8ed5ae93322b2c1e635b8b3650f392ecdc77b116fb8f3f1080f07f6bfc99606b3854758cd2f8',0,'2024-03-12 14:15:53'),('19bf50aaaef1790cf5d7ebbfd4d366bd2b8c856ad0c59e17f339e28a89091b154b4ec8a2059f8e66','03d22645634ed5bcd3832b4d641a47cb1298cd61d42fb9231c54c84992afc18f7148f53a87a8243b',0,'2024-06-21 11:38:42'),('19dcde7717f64de796ee8d203a56f9a78e7cdf8769de2348311d0dbf52ce39bc64566ba0eca3130b','d9020993b5dd23a09b8931ac2aaf23c17703a2ff63f837cd952197a4e4ef199ac7a57ce7cafc3258',0,'2024-06-03 06:13:42'),('19e52d4aae7ad172fa33e3bba32ee14a720109cdc405a7acb75b127e7afd0e574b3d9a9a989d281a','71ea1a61ce0fba267d0f7e1979771c27aca6f216a34d93257320edd70e2c4f27012c959b106e1d2c',0,'2024-02-15 10:45:34'),('19e6b7de80b5c83080ba399997d11cd936f9840b83aee721eb74a6f450823233ead3087ecfe12f45','721a75e65cfa91e661bb042cfdbb564e3af949fa1693e73e164dcbd42126f36da53fa7743f7e97cf',0,'2024-09-03 20:08:01'),('19fc8ca99eba524d21695f2818b4ac49f431de18f170c5ef2605db28d3e1e563ec1480f1a49596d8','04c6f8aeb7015caaa2a6fb6681cf2993f77595e1b25bb67fbcca80b314af52a55ef824b5d75ee227',0,'2024-07-13 14:47:08'),('1a25be257fa75a144da9069f1e6ebce06987628c1e0fb24c8df52e29a528ed3f18853eb0de6bbc9e','d46872b577165431929b29c377b52dbe5eb434ea60bcbd2bf0df16da3cb100d306b31b79f7fe011f',0,'2024-06-25 10:22:17'),('1a3f9d53954ad347f181e8e7fd971981b72ff16479aa0cd1277d63ab0fceaedb4dd7d91907ca2c23','1ed093d58d14d5557eafe5778a494bc807ed6db1152021838ce9c15e71197b1ce913c222219e30ff',0,'2024-05-14 16:29:50'),('1a3fa4494f80d93bb7b76546712fb3834311e8f71060de4c09edcdb1217b0a679a1fb22497c64e77','570ccb34573cca99a39e16d18fc4d32045f4813843242a910aee6fd9c6aabf4a2005f9d461590af2',0,'2024-01-27 10:03:50'),('1a4f57bfb1a324e54fc30eb6073aed14c38b6cbf96d2718971d6b0518c6230d8747e21cc898c5203','e471d23456991ab619702dfc5fde321b84fb6de714f5b29f4f197c3b60920a18631367ce1af61adf',0,'2024-09-04 09:55:04'),('1a68e8e9cda1a6fbb7eaff289da15c9c3a15470f7e022c0f088fb6d453d1c72c68938b2b4868d3b8','774901493ceb0371296065287b49434d5b564f7c6cfb009964cdeca0fea30c0d208f0e288775eade',0,'2024-02-14 16:51:52'),('1a6a39cd754e69d6734fc66a990e2a5d51cbcbf69de72f7ae93d02fcfc780de3f1a5455e8fe24e11','3e23445a15cd79f28f44e5c63d686f4bbc257287540536b7c0082700390445c417a94d876efdc9ac',0,'2024-07-07 06:57:26'),('1a79ea665a22c11330007ba48b93a13792b84d1256c26405c81ad8705883af4033142fa54f3f8eb3','9d2f2a49a285080874de3baa32156990e989f5960c8f31f8f63e796dd330701c99f746c7f01e29a5',0,'2024-02-29 10:33:29'),('1a8933c08a383ebc013891446c4bf0727d8620e8b43050abf0850174a0b2e13ceb289f254235cfe4','d55ecde65fb835e4d9e99062d3c28c24859950393baca3e74c121a134d85513517907268dc7daa71',0,'2024-04-13 09:01:38'),('1a9006c51e2d2217637c42fd1c92bf6614598bf77d5d98ba7d05ced349376b1ead8d041f71924c6f','35c0225d38f4129ae21cc6d2522c384933ce9ef46febec09745f58b0a8b946c50fde3b5613460710',0,'2024-03-06 19:58:58'),('1aba8f3a4f790af83ea1b057d02745c697da18e54a0a521239b202ebd9f12666326279c46bb252e6','72f692134fe3833b165900f2f8306d8b0a042fe01731c15b8c7e56313e637f726b971256eb1e9cff',0,'2024-07-21 09:00:11'),('1ac33ca7e110e687b00a14b0df9ec1cc14ea729d75ffdefd6fe42ab10f65526a2ab3b8fb3cf8becb','06ba12c03765d9b7034579378230073a9ce5c53d90360a9c4b6a500e768a730f033f98f538f01763',0,'2024-04-12 13:22:19'),('1ae8abc9d54a0c0b1a3b2bd8f5f804c136c5ca4617c4a3196d27ceaccb5812cd3a196b32884a4dc0','7bddf0d33635f73ae83ae18700f3ef569e0e7ad0922fa0ceaca2984b6e82e244ea7bee88fffcc88b',0,'2024-07-02 13:51:17'),('1af418e2127298ba2357a21ecfeb569d843f617278c45b76e5cf866fa7a7ca089bb51ad7bd8e851d','31fbb9c1dc1c67d242bd6d631172475b5ac87ffefecd9a230f7e26086f1c9913ac6d87b966d39627',0,'2024-09-07 15:46:25'),('1b030cd47f3cc56ac2608bab98e5ab5847e3563a30057a760e9128d9106505c8d1d1467674cb319b','0b688a9e08b5f6cb97da29ff5338327b2bef7492f6a66924a961a91e92cc95140e0d1c38cdff821c',0,'2024-04-28 23:25:26'),('1b04258fc70c08e1c3c263aa0118769c7325b3a2d10e99b8a40e93e25bad587b243e57503650ef25','ccb89c31c988106ac798853c06c991ea8f5e47e186e741c22cc8cf008172d2c897012c0de3ebcead',0,'2024-02-19 00:13:25'),('1b17eb4e3215db84ba89d8012859ebf430685ce33486aa1290960f76791b31062e61c4d3429df8ad','bc7062bce4e326d9a964146d44536c8de06c72629f8ae176ec04abb8ea1545c8ea81081847d3d3d0',0,'2024-03-06 20:59:15'),('1b252d18516633373f9c8016b7675c31ba31e40984b287313732b5d0ec44704d818915aab634a608','1218338aa0bcaec5b9e76c4304606b3e45ffcc58dc51aac86f5bf9420b4957aefb865e7337c1c511',0,'2024-02-01 15:48:17'),('1b25ed02b9221c784891eeba059a84b9a0925fd4e74bc67ef45535670476b291dfd0dd5c2390ba88','893b2019ca3edecaa7b71075e214b6770abfaefa4bdbf0374424f7e5a9e31e4a37ea68e6c14781c6',0,'2024-10-06 00:48:55'),('1b2e944ca6f88f195036d0d773f2fc3671a6a5049b3e5fc64af406dd6161dd8b0007967d4b9173c8','b5189a59069878e4f679c6b4c38cfaf9f16ca670353b5156ecee8f43bb999ea4942a55bebb65d1ba',0,'2024-07-06 23:12:36'),('1b367ea61af29d75de53761251a3cbe5e98a97d28ef569ccbb629bca93e91001f2e06241ce9ccb48','6fc92ba64b84e5fbafee42bbca1a3b1a52470434cec030d900569cb10e5a04052b1470efedfb5c4b',0,'2024-01-27 22:20:02'),('1b3930f946131c6bebe63af10f5f915ffc20342a535b65554efdeb6090df12081fc9be7cb7ba2028','638d6548a127f7481bc3faf6398784f14de6e832d792d948f94dc6a725205d6ad25af8c95e687cdc',0,'2024-01-25 12:54:08'),('1b45b201eefda3d6e398bf67902a5a002f4e54c5f780a7ce976949fb092ec7645c1a84b279ec6e96','c8bf996593cf7ac8a7fee9a38fe83df8e936c6222dfb6c66d8f9b977466d4b65bb3ddbf963153fde',0,'2024-09-28 19:53:10'),('1b66f6233ed5cfa4235f1b09dea92e10c56b4c63c4f8d4867d18dfa5c9bec8cbca17ce8e9d409934','62cb50b56e57cb2ae27b57466cee309fa87b78f8c4f1fd220ecc8b9b7ae24b4df52735d6ef9e6066',0,'2024-02-10 19:38:00'),('1b86e679bd66276f2d599a7cc14de9098533ff2e0e73db56d8b7186edb537e4b8346834fb487e2de','ef9a68be0286154932a2f0b91a8cd7e18181e468cc6025c44834b1801e2c194eb46c3983e36d61c2',0,'2024-04-18 18:51:15'),('1b8f2f379b0a5d06893b2dc02a2ce8c833e3dd3be150cd719dba6210299a859379221afc0983234d','a7e8c4de654d146a88dabc2253fa9a2869411b5397437f55594be3014515cdf89d9704f546e41db3',0,'2024-03-29 15:37:21'),('1b98e88a2e963f61bd89d35ff1281c5c40c1d96b26c07ba0618e54d775eaf9fb8e0d4cc9b0e86731','400d8b87e2725f1bd4416ca347ad98d05d3fa29d2a85b7e94fd17bea7254570ea366b0c3b8e0891a',0,'2024-06-02 16:11:36'),('1ba5695d3e58efdfbfce39484cf7cd7d777f8f63453cf771b52846e0a419fdcc8dd85c5de2f8d47b','a6e79f7b13bf1fd568039346cbc193a7715342e95c6df6524a24c69684990c0fb25626236836a042',0,'2024-01-28 08:20:05'),('1ba8665492da77d9ff54424214021dcb8b60792155d8c703efb447d0d4a2771a5a9446ddf0bd30c8','8a655f815b7fde119deebb3c2d7c003b3c21622548362db11912a64f66d1901bd6aaef6da8058232',0,'2024-06-15 16:21:38'),('1bb7847f5f0d8a4493410a3dac6f241c6ce25adf5ff7d2eedea1af4a15ceb954d23417d28c55f36c','f1dae46d40f9326f4013ca2b92e16e31b6c934e6cf33c2cdbda63e972d3d58188104f9dde5f27eba',0,'2024-02-15 22:00:32'),('1bb9e4eeaab84d5fb1f86fc2f6660e8358deb845b2e155aea8a9d2aea2b321fa0826df96593acaac','42a82dcecc76dcc527938f1efe0ae5f87cf9d629f2ed402c16f784a0dc7c716d7b42139e01d38e24',0,'2024-07-27 16:32:05'),('1bbee4461a3b538cfcc7c2ec3b1d054b800b4d03c3a79676cbf69db7b682e320c610cc98a671b529','2f13b1bd4fae735537fd3b6cbdc7cff8edbefe752edbc1ec21ff232b55260fb050f99db2605d3cfd',0,'2024-07-14 09:12:40'),('1bd2437f819ad465a6203d37d9f05338cca2b920dee42c82f1b6c5389283a2e9551d34ddcad028f3','a8b48c0eb6004d776d80d15f12c3b58951eb50da28c17900aebfae2362899952d09cea1d16d29fc0',0,'2024-09-18 21:25:36'),('1bd97080b6fdf73775e58d7a6d4083c12aacdc0e90ea1a0e0f8a62109272b3be3ea5bb325a18ae6d','4a840c76c9ce23acd336f099c60a45551c2cb53a1fadcfee9e3f50b12fa559703546013909edd5dc',0,'2024-09-24 06:41:33'),('1be3310857c1386deb944be4afaf30b876f52cee89461edb985da7c6d5ebe961668f0a885e6f99c9','4adbfdcfb1bb73119f69d8c1b08ea42fd8b817c3275c6fac86632564bbc9813659ae5ce23bff2ac3',0,'2024-04-17 21:01:40'),('1be72c0b7f4a8e500b2cfc861eb5ed8fb095017e83db00f00001fbd6edd48cb873b2652436171740','e780f8fb24e7c6e11013854fa7f9a9ccd331b85559939dcab98ecc1feddd0ab43085586c5cd08c2b',0,'2024-01-30 21:53:52'),('1bfd6036ac96141878e31e52e446bf7b88293a5a9509682f0dfc012d0b8ba0e408319dde7c70fbe3','ed397ae179f71a55ed64c62cecf795ee51642b6b4e671bb31cec2bad74070fc53d5cea01de829bd3',0,'2024-03-02 09:44:55'),('1c041d47324f5c8b19a41de45b8894cc1cef58917c7df1216bbe97904443de18ac7c221b8ca4607a','dbca2ed33918b35d00d61c3e009e140602a031471818e26a51b64bfd23dbe920be0ad0db151991a7',0,'2024-08-10 02:15:25'),('1c04c1cced6e531db926f0b66b23b0ae388a5419b2c5f81f7c9db88c5911cfd5dddf96da5e517424','9ac9e9e41af87153c43861824643484075517dfb70e0dba699dabdacd9b28c537907bcf9ad84a3e3',0,'2024-02-17 14:02:08'),('1c0d877d0ab883a898fb6191ea71c58edafc0ef56bc0fa40ff11a65a35cc22881107400413526263','85b3fed372e6ae437ea7870fff32a8b4cf7e4ace96fd4a60766447277213a739dfcbdfb24a36f851',0,'2024-02-04 08:35:32'),('1c0f50649a26835e5ac545b5f111a4e35aca945964d437062e6b1ba2e8d558e36c0a24c3e99521d5','30914a4d0f6d61cdfab99008744edada19c576333a3fc8516336d6768c9e3c3737dd34d74065019e',0,'2024-10-04 14:11:44'),('1c2c3e629a6f57cc32df6e50d414d1655c50f8f49b0e6635ea8f69c3fa55ca26bfd8ae16df230e31','c325047668f4d63f1b2a151da682635dede7bd2573b8104242d6fd48c9ae3f40f881f3a9339b741b',0,'2024-09-24 13:23:43'),('1c3a85e7c739ee2283a2384371efb6ea972bee5c837b9fc2fd4def2be315ed0fac48e031a8a453b1','0d064f9141a5d736f548ad5bf677f1509411c72a3606c1bdf4941e02c890af721b285c511549439b',0,'2024-02-10 07:05:38'),('1c3de5449a9b442ae0f5c8d127ddf4fc3a56b860d80cb6bd797de19a05970f1933b310957becb694','c9d694057cfc34cea3da68c565bfe44d7ed3e6644a6358631bc8d67c7ddb8f2f5c177c45635ebb31',0,'2024-07-23 14:42:25'),('1c4141e41317bc99396e0f379765884bebe398e00d004e67be86caf761ca8ae38864a9622d196cd3','4fd3a5cc15acca8ee6908ee5a93764591636f0216735cfbc9a591e424ac1ad7bb3b4014719513aee',0,'2024-04-15 15:29:13'),('1c5d8a69111e64a9b940a0e566055e3fea2f27e62596e7e6301a17bba2987de480196591d28e4501','4c621dd574c1fb8507ba962173ec03a33da3637d38fe90ea90baab04187e30f6519ed8c665f1fb57',0,'2024-01-30 14:20:13'),('1c66ed5f4207ae647e79bab6011f9a1a0da7234aa5778b52696dcef98dcb51294c0d2a7a1e9ed38a','ea794004532d3dda618edd141d7fdaadf2270dc62c957c1dd461dbee9fda051bc29c257ced0177c1',0,'2024-06-02 16:10:14'),('1c6a896841d2a8ce5a5613e406cce7ac017b2726bef3e9659813a9f97e71fe3d124d8036624f29ab','cd97eb3b70f481057b936943761df01da95d833cc92df0df77de603971435c3fe5662f4bf6a43575',0,'2024-01-25 13:15:43'),('1c8ba867d060689d2edf38af502db54cf80504b1a79d3f3abbefd61cd48913f8bf3a01893ac8efcb','2dce6713419acbb07870c0f9c3171c7adb3a3568dacf925d99c2c17c29748092e8384ed6ba649d66',0,'2024-01-25 21:29:47'),('1c9114675ec2acee0fc01fe4945ba7b70130d91f58f1d7ceefc07a78080d22134a4685f0edbde979','3b52ea12f84041f97d0662e6b6b6a037644883eeebf616e9476410355d319650d1ba8463fbb702ed',0,'2024-03-02 22:53:24'),('1c960d41a889af8d18864b58a0581b13da7faaea49e06a239885429de4e984b90216a73431149b01','98f6a44cf826f19590634a712219cf019325042a3c7474353ffcba1ae0896212e418bae258e8fcb8',0,'2024-08-09 16:54:11'),('1cb94ebfcd89197bf641421573f3a115375d371e9a9e596bc539567b3876bbb1ed8d07af04aade2a','dc26b0410593e227f787dba955fcebd4ba6a1785696a097cb431b3d022f9ff1335a755a63e8a3e9f',0,'2024-06-13 14:52:17'),('1cb9b7bf999734daeb08904e4387180e0bd90bfe25eb320b337db654e9648cf32a1daee878845a93','71ea820c4550f3f5a4d2d5802966489f6cac9a2d6ef67a0b48a282c26ebe578b598a5488279b25c9',0,'2024-02-25 19:35:35'),('1cbdcb2451a88531325f71489f028c46e4f923f9985a2fdb498a1239135e91fb64b7275fd01e2c7b','8a156bc5f25c42f9950f2f3cb36d321b3a89a09ff8b47bd3a89c5bfc0da21abb99173165db84d2e4',0,'2024-05-26 11:01:15'),('1cc88ebad10792ce31a8270caac8b10dde9fdd385b95cc60d37475416dc59bcc311e82bbf491fc7c','c28be923bd687fd8ed07c6d83e42f9b5641dbc82d82eb4f93a5fd70682b847c876b84e44a3fabcfa',0,'2024-08-11 14:26:06'),('1ccea5f58d3e7a982b18a6d0e086b6519c99392fa5b291527c69a5eb771df10fecbaca989ffddfcd','1b06f79f7bf9c6dcfe61a54306774d5bf206fa4c574bcfe22ba54d80c9ce081ec32c5b83739edabb',0,'2024-03-03 16:53:43'),('1cde42421daf21f1c6ffbe77bfb95773082638d5e1c322f0f857d5c708da47f09e30d68804b28d60','3631471c83a3b066375bb308e190d7133e6f93669ad30a1f75d00be8f4c8633be2870f0f279b6cca',0,'2024-06-04 15:27:00'),('1ce5b747527ff61ef8adbcc84c4a49f259797e5380b11bef6e8768c118228e1cdb60fbe1c404848c','ac9e6198e57c4cbe608634923c4796ee43754adefce56dd1135c21240cbff5385d6790de0ae81ecb',0,'2024-03-28 13:29:39'),('1ced5d40f43c99e97226f6a0beea66acd90b80637fef40a015265e7b76b544de631eef21d09c82ca','1af594a7379265eb0c3f47904c13d03fa5c37fb0be5b362b09541daa51ecba5dd685e12ae5f75985',0,'2024-08-14 10:04:08'),('1d01394ad467211d9af34f1a49a376288b4b5b94ca033005f11f9c22c443b9ea468ee76696c383e3','0cbfd84bbcb040d2179db78dc08a194dc27d51311b5a35b5f1fd50a3543cc9ba07e56f9e55ced435',0,'2024-09-27 14:33:11'),('1d04ae4a704eb3adfee3b7c101aedca8dcd582679485c64e2028efafff879acde9e69a163348c6ad','7f510e93f8d4cdf0fdbbff11f39a0cec1db7e10eb871b5caa05af8473b9119b27841980e6b206cc9',0,'2024-09-04 15:20:10'),('1d193578132a800448de09af6d362af105ed6e16568761462eca5533679cedbf015dfdca929a395a','be05d21eecbe2ba32a27ade5865dd8fda087015651b1fb3242e162a26fa6e50e401e16d4bcc81d9d',0,'2024-03-01 18:07:40'),('1d40767a2a225d4b82b9552f76a277ce0bc2bc7003c22b8e813f30a0c1fb69c5385e88e504de84fb','4428d891d4387c0d51b5b475275faef7aa638f6eb5b02d745cca8c5fba7a518a5275f9c05586714e',0,'2024-09-05 15:57:46'),('1d55159cec79f7a04d85f9c9507e613effdb626b34ce99db2994babbc5204d5d34658bd089b287a6','051c061c58fef2c7f6b1f9ea32a1eae6c377d824f481eb29de56ceae6eb068788a75bd7fbc9de9c9',0,'2024-09-21 11:51:31'),('1d6131959c857ea8048e79ffb58e8114912e6ab60335bb157d375c07a8881ba7d65f92327828d4d1','ea2eef78bb6aa89f0721b3766d926c4b53e0dcd80b016d7ebdd454f5ae19c79c3386ea74a1cb8fcc',0,'2024-03-24 15:00:44'),('1d61b483d223f384d8a65491ace23dc9e5849e3b28cfbf509364568a9e90cf9e5acc9cf85842ad2c','69b2c5ac9a7127f48d2f6629388b8cfd3d74ba7b8c242a31cfa11a22660d53e68018aab3e3333231',0,'2024-07-05 09:22:22'),('1d61bc8c78e526848b2f7083c3dcad9aa7e5ff1b79039f79451cf0db64165eab9eac5cddf790fce3','0d87d6aba37c233d4f6e151cd0f28e038429e5ddb98ed4980826772d5b93237b3d6a6a6e1b88e94f',0,'2024-01-27 19:12:07'),('1d768fdee226199352542f5daa2aa98cfb494301490fc76df018a8012cdb886bb76d35dbd4714a15','878401c309fc9257d5c9d5480c87b1a9fcd3839ef4689f0f04029c99d5e43d604ea7eb77a2a4a81f',0,'2024-03-29 18:33:46'),('1d7888ac3c2ba1e749aac556fa6849a2c32ab07cd75d2f8d4d21e9a64debf2f305e1f0ae83c1c719','385b8de7cbb65ed0791ccdb94884616af0247a49b6e229acf37a06daa244eeb3ba64207574d2e54f',0,'2024-02-20 11:53:28'),('1da9f0ba0f0df1e86d5ee8e2e3e9edb609f0710439d43a83910e2296782bee5b117d6cac8632bee2','0862e9fb37a817cbea51ae7e43de918bf61f07b50f87ed7dd22c1a8fe6203a4119a984fb978c6edc',0,'2024-03-14 14:43:38'),('1db2fb8a29a5a6eb7cc19fba497b789a991f931b30d344de53cf25fa51dcbd3c41218263acf54ba1','e0bed2597616206bbfb7d084916d3150900d77e117f288d91df9ebf59db3d4baab9bee6e517dad62',0,'2024-05-24 10:01:32'),('1dbf96b6dcd97e42fe50ad196cd78339abc51a54524992fd0e8a7646318980d09c2fcf9e5913de89','8c12a048903774ff29c47f6feb2201fc68710a7a483330dd04443c90da76b911d5147d6fd50ee3a5',0,'2024-03-02 22:03:55'),('1dc80be360d59a2ae83100e0fd071c52b63fa95d4c58996fbf66bb75ce87c45ed73da850751b622b','4dd4105fcdf29bc8f6b7cc15bfdb104a4386c181a6aee0c3a74ba2effa4ee13c807abbef8762c53a',0,'2024-09-10 09:40:47'),('1dd2d2ed85112ea4a710e3d01c9add1a0638ecfe057e443dc2ff062d0317b8ade4b3c98f0b6db713','1e4f5f8619115ba537eabc6392607de74e32534679c8bac558b6d3609b903b9b4272bb916b731aa7',0,'2024-06-28 08:03:27'),('1dee81b6d5d268f03fe6f9753e059b4214304c279c6d5352aba0a02427ef2a4fcd2384fd07ca6550','e68c5a6b7bd1b00edaa7156fc7f903675ef37d3eecf3573d8f7ef1829efff02b990c7fa05adce018',0,'2024-03-28 17:58:11'),('1e02834f90efdf88cc1a60a8a1fe4d3257ebdc0716fc2014e84d6d4462c504fcfde03524920fa2df','ed82287c3570b9fd2cf7e2c3ab59bc886c93bd801450f1109cc8fd1b93303d2f642847b1ba7c55ea',0,'2024-09-29 08:56:30'),('1e073ee48766c0c5c931e276e8b052529ada4d90e90f48b17ef3b6847e63d6b46c49cdc57e19a049','17bade14287c9a9eaa068250e4e3bf1be3aa7d29c02afb701418845ff581f5c34d42ae61682bffb6',0,'2024-07-21 18:19:34'),('1e12f8c70f1594ebc56bf67adb6194887269d57c7082d6c88833907f7e1821b861b988c58761b9ed','fb7eef5949948c1e6b5529e6fbcd47a8a5630eb6f28249e199c24247278c8273f220b9452e105df5',0,'2024-09-16 10:23:52'),('1e19e37c3306f2d5fb90a274420b71c855440c729b7613ee7bb7665cb293ca1b5c85949ec43c6c4d','47019d3e8658bfd2233f358cc1caf64a61b27bab6f3350972cc231af962342c02604e94d168874af',0,'2024-01-25 08:57:52'),('1e2682f19dd4f83d27e059cf21d0958cc9b08f5fb1da8a7af87495a221df8058a404d44ed442b4cf','523af433e393ba9f086c3c1bd8522a12e1cbd54aeac5e7529fc27c922262a8ed1eb5bd6e2f2cbf08',0,'2024-09-11 16:39:49'),('1e440767db4b4d0ac1d0b792543ff6544efc32d6d87e3499b65bb4f42db6ee7afca4fff582d59007','c3aff36888d39f09d2a010fb6bd5c18a704286c7581aaba2a63851518af48e1a1d8673b1e5745803',0,'2024-06-14 15:19:53'),('1e5dee4e0e91869fdaaedbdb7176eb24e69797b01b2f9acbe3e0c5142605794f4670bf323419fd88','83b4cf10d1f51d446b7f2fa658740b0e51bec307f0315f627bd8f8b3078e015471fe9369d322ceb0',0,'2024-02-07 17:34:02'),('1e63c90157b9abad0edf13e10edabc21b47e595c2cdab5641ba3ccc268ffea80f88e4385e843c316','dee5d2a2c29b7b1c463d61789ad8eb763c3d9a5e3f5ffdb773fcbe65e4816bbb9fb094ca6833d274',0,'2024-05-29 16:56:13'),('1e64bb15b9062804d2d94f8d6107ef2816f2b30b841c1bf70899f0fe02a1a187a1f72df4a2ed6c26','79d79efdd63513966a29a70b680aef952bdda174612a9611360499cfe7c193ceb75040cdd9d134bc',0,'2024-04-25 00:14:32'),('1e705a5b65bc5b98f0287c88f028de476bc4c21c2206ef77c68ea84e54007d3724cafbb729530bd3','6f0927e14c4a835296f1edab4091cf8ffd769a2fcc35e2207a33e84b8e6f2040dd792bd36f8c7c6b',0,'2024-07-16 23:09:21'),('1e7f726e44f708c04ddbfa3f409df51b678bf30919b11c9eeea90f699336166ffb023d12abfe96d3','632ea7d44a8a4d4831631459d0763cd8f9b635b70edd966fe1124a67afdc36f2c17364bd52231722',0,'2024-07-24 15:00:26'),('1e81fccce39db55e7589930460fc10a9ad0da498507ad19566b63340b480540df11df3bb3bd9815c','def79310dca2802e78d0f6a54fd2eea9447fba82a407f25ab81b84e1dd348ac946c354f2b4a6238b',0,'2024-07-30 07:16:50'),('1e8953acbbc9251acdfbe518a2ff418cc0404c9baeff7541523349232c36f33a6a22f4d2faa5ea7a','cae29e7bd7ee9c9f4740944b1a374d6ac28abe1999459ddca035acf3fcc0882bb48c38c480a2dff4',0,'2024-02-06 06:19:47'),('1e952b52d6b8905648520c4c3921690f0962b7515870fb1004e12c067968280a98aa31a143750cb3','cd58c7abc2a5d6363689ac5a657ec95ea84c399b9b99bd83eda0e44f23cfbe91e921be269104371a',0,'2024-09-19 11:47:57'),('1e95a09926011b9ecc371d20b28f31a3b220d9c799fa38c8bc361b87590c9b21f3bd14411fd0caf2','00ce432465a4389eb6d41dcf4048d2dca483e23a862b8a4e6c1f01d8bd24d14586ab31993e8a6253',0,'2024-09-20 11:48:02'),('1e9ee4dcef0a05defb7dbdcb1f3e7d4b7f93f9f73595dce3a75d050e3d899ff2f0946af741e92f2b','0e57e917aa0618eb296531381ff0ac5563577504cbfaa79ae4556401519a2acf5198e0fdecdbe473',0,'2024-05-04 01:28:46'),('1eaee1b09d279d015c6dfd34486cddac5ad59cd712d3925fe46040548d214ff11930c87041e4d3c1','79942b94cd105b1dfb066f6e0e546fddf8dafce2f4e45508a10d92edb31441205c2b21409cae897f',0,'2024-09-25 19:13:00'),('1eb07af8da82bab84c64c261ec65d5f6e79d60e57d20cd426340431c8d7cb54407169aad239bce01','7215e9bd3fce38b0b05c3795f4b0b5cff2c260316ec6871299e089c635465b7f024c7f9c694fa65b',0,'2024-03-09 20:01:53'),('1eb8ea9a150a8564432cb861fee47d61d838a1c18589602bd25011a3c5f8acdb13050a8c0990f54b','d99a731afee2bc38ad47dcf6ef37a92f6f1e76cf593b02a69f10d61c30cc7d94c6de3766b32d2aad',0,'2024-07-25 18:02:34'),('1ec11a3d613ae974b9454dd66a0cfbbf1e8b8627165fb8d0dd5296d76937fd96bbc4a955b7d1a4ec','7174631139a98f83ea237272bfb101860dbefa3799392a1ddb458e7d92d44eb2c2dac3f7eee6457a',0,'2024-09-21 20:37:21'),('1ecd5b6d1de9c4e614e88ec36e4ea92224acac729070ce0b5ac11427a901da38be6ad9d55cd2b7c0','471a507b53f57dba98b83fcea501a4bcd6a583e4d6aba6a3ad7effa74d62cf57bc63adc79f06e519',0,'2024-05-16 16:00:07'),('1ee454a8637052d7c098f1ec1eb05293e99c71231bac1c27686c1b0577b6815f5ddef7a62d4f4416','d85cfb257c9690e4f2c80be9c48a2461a87263e78b48864cef2fd8e0e27bf4f49789d49133a149a4',0,'2024-04-26 18:09:30'),('1ee4afb7315b6f20cb85f9234f1d9ac83962b08626fbb11fce526d5273bbea1713c73a693d002441','1d4d840186a6038838e7d106c76a252140ce8005446c2e1659836bd0f7d729327a87244db5448319',0,'2024-01-26 07:42:19'),('1ee55ce82eae278ba5fcfddb2e8e2c50cce4b6c59f8d42ac28fe616f36071685dfa22dccfce3b986','09bc0dcc637f9509e85fd4bf743dc843e1a365f8138f840654e5d2cda743c936766da883e10dba36',0,'2024-08-04 12:10:32'),('1eeb48d08364c8f3da81da3fbf8ef2fed9996d9ed074c2d863a19bff365adaf772427c35c8ccd81f','8706513791c535f109e5d3155f913d5cc498c47ebbd26a49c0f330a3244e29833f0f86307a332abc',0,'2024-08-08 16:23:44'),('1f0c92ae7f8c9e38d0712eadf82d733dd4f1231a840eb29644bc41f25be8047c7932ac1d899619ed','2d3113540e4f65c2c54144f6a177d5314e50fe0f32fee2cb694ff64fc15ddfac0f5b4b4c52a09c4f',0,'2024-02-02 20:01:39'),('1f204a3c99be9402ff26e03ee0192902a82ae6b11679239bd3e9e06e13f5f1b014d8f58eb1f5c1b6','17a304709cfae664cb60fdcf21fac629ef3a560c356dcec1dbced0d208ab92229d63f6109d82a7eb',0,'2024-08-23 18:41:36'),('1f4039ec406173850a10c5de1eb3ca0c8148ef3bda34682c4b3ec0cd916ba4479908850b6bd6eb0d','f2c3e94a13d46eb94b849fcc53adda4a4910b6e4a3451c84ac6b16d377aac70b8b7537ce033d7c8e',0,'2024-09-04 15:06:34'),('1f48a5c518ea41618e7765ddba0af144f61f345254456603c90320eed87649d3159cd678f9106df5','b1ed602da78b06df504369e53642eea25fe574a82ee5903d4f80bf68e41c91c75d6de52dc497c871',0,'2024-04-26 17:24:33'),('1f5e31f3ee227ccf9d45052b6c97e7d0f5e9397bd4c510ea4e39ece022f5e35965adc8e6ace3911d','862a18e545e4f2cafdac90dc65d5ad9972926b7d2e5c79d22d26961cdd04698a2ec981618c5b08ac',0,'2024-02-21 12:15:03'),('1f7a90860e8f7fb91c500d65f8062fcf0a82dcdb08e8d9bbc38396b3bd136949e66c91471cb24a81','02e13a269a60d7bc2e54ba1452f7840bcd96e2a82332794cee46e33d49074ffbf7ab5d129efcd53d',0,'2024-01-25 09:03:56'),('1f7bb03594d507675e9f88df06b23a6540342337b0b851e579eb3a02a9c39d0c458c391006924bf4','75f303b489f9382cf6de03e19debc9c6093e203dda09262c891036b3ba912f1ca3ada8b028337d7d',0,'2024-09-20 18:27:55'),('1f8a8b0de039625346dc48c102bcebd17fe5d0a848871f9a9fdd1546ab69062bfd53d04fd8f5b727','9b7f804063e5a140b17eedf00d62d711c90a8ab1aba3c20587b0e48363e36d9ffe94e14eb0b559d0',0,'2024-10-06 17:08:28'),('1f9e1c1350ae1f6ef3395257e1253a35ac91c385f790db9d298388c6af1504c483b4755a3042013b','7201441b4eeeca4ae7023d9d9df27e61fc479ad17644825bf8ca2566ac9842b9c0548bec779960e7',0,'2024-02-06 10:36:36'),('1fa26084c1a22a3765762d83eddac402978c6bed171f28f308b34d8cfce641f2a429ca7f2c8fbaae','f9ce33e6ce01fe955b5a7dd5620f5010a2b609ccba56cd21d28e78659e92370c9a031394a91d0249',0,'2024-04-03 14:37:23'),('1fbad960d3cd6859b0699b4011867f9dd080fb51aba950e8f1155a47631fcac1aea20cc55617d33f','7925a12376564905c7c1bf0cfbdeb7314552ac1ddbc43dbb378074a23eda71eb514af5e423dd5a6f',0,'2024-06-28 11:32:31'),('1fcbcd8744fc1b4993d1e9442625708747ce56e53f8fdbfd7c8e035c9749390693f24c9195cf75db','61e21628df7e7231e88f207b601a9aa87e9a5e70f7eeda5db0813125e1bbecd27e9088d3bbbeddc6',0,'2024-07-03 22:58:41'),('20090a326568c5eb1864438f13c4317a2854047a83b9c3b712f6ecec3f5ed75ad88f9058ab10ae94','bed4570ebee51d8c5351c8c3cb77a0bfeac74cce84fd0038f65691080a11362113d884eaa37c38b5',0,'2024-01-25 08:46:27'),('200d9277f686e59e8d7911bbd66906f81e9b2d447a62fd969d14006c12c7715a169bf0892a23724e','847f66d95a1757a86d52535a497cd1f74e8be280d9a677434148eac230d271e57727a2888f73348e',0,'2024-05-14 17:06:27'),('2018b181c64447cc2c8643444bd21af92f0792e007387d5029e7024fa9ba9a1e2d2169fe59700ae7','7da1a207e979b28a271e14b58b0d131540caf1b6467b3efe2c564470725b1549e2f48b07f1cfef81',0,'2024-04-19 18:21:38'),('20200db06b3d3213756129a4ab808681658f94cda820503ee7c3deaf016e2a00d390aa7b88f1ad3d','e947c1bc4a797b22da021463fdc4981c587bb48406c603b43d77de632456c7f66187624b3bb3c63a',0,'2024-08-02 09:54:32'),('2037e18cd278f93d8a05c3fe22a8e7dcef1407b3c60458230c63f4661fd87fc85602304c504b3e3e','7597df91b07ae4479eb2cb7c7d28ef25a8305c46cf2bc713314eaec6a6496ad8063d6c70a4edf24c',0,'2024-04-13 23:03:38'),('2050c197edb9c027952df246567a7f14e34175faad6a0f0023434543ab863b7d8da02d0a1134566d','474de413144e21804786ba8cbc7149ee2a8167a31215542c1af779a430b5f76807f5bad4490df9f8',0,'2024-09-09 11:59:29'),('20776009e2d899a82f5ee69b885b760d48919e43a400ea892e6736064c543a453e20e5b7607073a5','a8245595ba32f7dd9b7a3550884837d36939c5f6e464baee6f58b64a95522b3c38ecfc770edf13cf',0,'2024-07-06 21:44:33'),('208b98b5047ebfca9210b9647c3ae3125527deebcedc7817f530442a2ddc1b90e176dfe350285920','38dcd9655b1b1bd50e8c3957787d7b9b936eba37d374bedf1754be9e9a57178e722611d1918c5290',0,'2024-03-17 16:58:08'),('20aa49d2f5ec32ebf2155e0a209c3f0fc86efaff5ddbbb294203aa91547a2925b0d3b5202cbd769e','714f836316c543a69a880b0c1c9b98ffa9da1993d6acbbd21216861113e68b867b22675b52ef34b1',0,'2024-09-02 22:25:56'),('20ad18db442297425e3e9402fa53885e80d373b5031aeb88735998ca06e41113be2ef79c58cc4950','00f87571bec73c093b0d3a4aa16c632c4ce29ab3b6ce71837a8796531ce5cffc99666fff2602a8cc',0,'2024-07-18 22:55:08'),('20aee104a67fb8de476839729c7dfe08689df506b32fe61cf8feb01f6a04c8b340414dc1f64c5186','4c5a29fa8c923bd688c31742441d316a0d7caad5f3481d0c51cab0b94613221ed966daf3427340fd',0,'2024-07-12 18:32:12'),('20dc170098e7071ede359cfb3f83e9bd6e2838f408f8f84427788f1f86a361c6a713ff3731ba0b26','e435c5d271e1041653e6758830e7c9839f5ae05b2aae97d9fff8a02ddc19ab68fb1c95202b2ad082',0,'2024-07-16 18:11:34'),('20e42821d8e74c25fc66981b65f9d2d9d68785124ab20345e22fae6c064d7c70497b03e28d2cc7db','cb41eb18e0822c38be89d8de16f5299baf34a1bbf0878d085a763b6965c0eafd76cbe29b71a401ba',0,'2024-04-16 10:39:52'),('2103e96d738959181a43e3cc8cbcadb0c3c5cd0ba05c5ccd6a72ae4bc0658f9740ff918ab13bfdfa','a9cd7074f27c346f24e9225081f883bc4ddf7d4f8b841f5167d41b8ee6c2ad21f6788c4c17a99227',0,'2024-01-28 16:27:06'),('210a173d58dd853da607775f3e981d636e9d848c70551f7795e52b6e854af2fee85b520031ccb404','fec1fa3f56171dda04ce492c172638d51fd7c2c54046a695b73a3d22c6f8877fcba4f42952d7bc3a',0,'2024-01-25 09:30:57'),('210c7dcae1f9375a3f85a9d8179c8295aee0d7a6e43af0fb053f8d886e85094abefe9366d9cab2d7','dafcb501bd09b56990d0d45c9b96b06a109ab4b4c278b244f3b7b82b5f49cebbbb0eb784ba37149e',0,'2024-02-06 21:31:17'),('2121fe2ac8335b60cdbe7ec210953ab9d563d4a8b6b534395e744c5ff18b85d4ffd9c77ffd080700','6eed41312f4158e1c4c7503a411327175c9b0af3ac3ae9067d7cd2d67b40cd465c1f4548d94eccec',0,'2024-06-30 12:25:22'),('212d4f09f14fc8fc8921cbb53e941d22415d5f4c5777b29ec2e4f64d7b23d033ec70630f4fd2b334','2754a05343e46047bf0543633cf563fa9eaa4819d9e0d921f9140ea920cadb66cf4d5623fb269d0b',0,'2024-09-08 15:03:42'),('21301344ec9e20b5f6e3c02e4099a16ba90c2d51542206511c09f1677cc00f6600e205bd11f44979','4bc4d909821229d356786269aab95f2374317b05dfd322276901eaac4ee4749e339314a838c9bd98',0,'2024-02-21 19:43:17'),('2134698affd8182320a52b6475192543beede2c0f54e15358e56fed0fe9e49608ec98e5e231d0b0e','5d4a85d621a6a016d1c5eec6bd0be534cf3ddc42bb462fad4f1859d8a78d3b9bee8b48ff9b753376',0,'2024-05-08 16:59:25'),('2134b802b992b2e75d2b6a7a77c57d99db6b10703cf5ef8504f988f925147324eb6dec539d2fe33d','865f22ef25ecf869335025273c31d92702875dcae3b4106353f5ccb63e4419fdc0d470157abf4395',0,'2024-03-23 16:08:58'),('213f4cc4f9439c6b4b32f53cef69d8ee37e67b30fccdfa87f578b488a189bd14971094f0fef448a4','e22c18239a05253e127783b5440e7ca6ebdc564c1e41120c809818cc681a77d40562482f52b56614',0,'2024-06-18 12:18:58'),('215950e88a80ecadcc2ccbff2e98683d9faf90bf4985fbc6fe96f5edfc6d100e265257a05cd930e2','aea827e4fab84b848aebace7860964b63be32992a3a0eba29e8927fb40d026e3dabbe7330f014921',0,'2024-01-25 00:17:42'),('21600b832ea96172237cc51b42d7feac2c76566d2d48b127bfbc33bc627c1b29b1e25fd418441038','46fa5832094b4a42ce6fa8bc3171abde2170809dab5f118b3763876ba27aaf23c2026c1c0185a1e1',0,'2024-04-16 18:47:59'),('21680f67f80b1b1261ad20c34f263c2c0fa985019923eb63ea0a67da0fcccad32f01337f91385e4f','127ac91a421073656be5daf8dccec2a7e2b1c3e05b3552d556fc1a57f845526f7cfc160fc75f1556',0,'2024-05-31 20:12:03'),('2191515045aa0fc91326e56733374d9346880dc8c9d7bec90a4dd93a6567e4e13dbf240ea3dba132','bf50d799979a9ff5d6709efba6127dac181f0c8da0d5b49ed2980041ba36d62af8e02d58917b31f8',0,'2024-05-12 13:48:34'),('219412a0df0f82fd33d713913e231b0e2a6f1be4e4b166b27ca75c9df1ceb76d055dcba29a1647c4','db540fa507f1e732f9bfd383cc5343d06b1e210e957a3a0af81b7cbb8b29ba46f3b9326ad3db8160',0,'2024-04-03 10:38:47'),('219d8f5a4667b8a03a9fa87e772ebaab363934cc79e075a474cc0d63a822982949b4e7934112513f','7bf6cc60f9274374bb2ab7187554a7d5035df5cac5232389d8a1e6c365fd2ea4772a4d1dfad1464d',0,'2024-07-07 13:33:02'),('219f63d7842504530b91319aa4924beaeb7fc2042962818f271f1327df2566de9e84ee4f33d5f8ee','2b4902a4f6b2a7e8e490527bff91bddb8a8728c6020f9faf474fa071a914b344eb4c07465c40adb9',0,'2024-07-05 17:43:41'),('21ae0382e4950f1d19a351e80326a9e7b0d4fdd315f964779697e40229edfbc2de5d1fe6043238bb','c57df1b5bf5993d1bda123e9f2cefee8023b7fd8117cd53d544feb76cda1e4f6e38bdfa06d0c9b05',0,'2024-07-12 20:07:55'),('21ae8bb72cb432af5d2b9bfac0150775e3eade697423815291595220fbe366824dae01814cfec944','e58ff18c5c39a5b7c7bd5091ea02838585857ec98b8cff716c032bfc4df0a385e07fd62cbd8cb0ff',0,'2024-04-12 08:38:51'),('21bb8da2532b582cf0cc07477109e15efe70c7d9c59fe9f13662cbe62e9e8c28852fc329fad58b07','599e88e4b6eb037303b70fad925289d1246880d3104b6b1391b40836ed4ea8cea35d0a0cd9621456',0,'2024-01-30 16:39:16'),('21c3afc65949c4e62733ecb82b63175cce875f588f6a705db8ab3fae5d2ad44134714fa924a95060','4d953987cd7b3e8d699cafddc6e602d7cd8ed8c29b9881761b3ce51000792d170ea34b4b50c14ff9',0,'2024-01-25 00:11:28'),('21f0385e6204dceb5540eb3ce94c47472d97dbec35f5a7d9001e62e54460a5bb91405c366ebb1a30','51cab43d70ae9ba2b9461af4ac11d05c4c53dea2218bb0dd4d3de29fac7adea8280555a07de8ade6',0,'2024-01-25 20:29:55'),('21f419e95e85c00754675e1f3a8fc8f4aef2c022ee697bb960cfa4ed9c475f0d6ec763fc9fcbcd10','54fd317a8c3439078acfb18c7c6c0161da5bc39e1d93d2646e0498f43ebbdbabc0b0f181f0e364da',0,'2024-02-11 11:52:09'),('22003b5baccd5a56a241e92410795cba019e8f2c2c7200160540e75bcea6506eeee96127cd936d90','7b347349022b2c08c27b287f85d0065ab3f66c6b90f89af0d6cdff3ef600c35c96bed33dc57fca2c',0,'2024-06-16 17:04:40'),('220104b856d26c947d1f4b93e727aa44f0c602b87a5802301c2f79783b4b201890087f31c2c120c3','ac4a26d6b0ddf079238e1b14a0f6330a0725f87a03fd3d777e1d7f2c99293fb29f8d4fd0ff87a91a',0,'2024-06-21 14:26:52'),('22166cdf5b388aebf56d4427106b2e1eefca1784c1840849add457348ef5d04ff9471f3fc8590a6b','84586fe4491072648083e32c2c65e29e90b71e75ef8f5e6909ff0985fdcecfdd4fb1914a962aaa60',0,'2024-09-29 13:13:09'),('2223b53fee36ead70296eb4d036607cb710a1fc9215ae8c8e530e394f6b4fd02a865f83fdf316cfb','04231d1a6cf98c5eb08dc31eeea53a5cb110d269e78bd3715396228213e32300299eaf175fb0ea9d',0,'2024-02-20 13:12:10'),('222510881d58fa786cb456e9ccf6c80f968d2b074a4fd3291437406bd37294eca451aa171b1cee45','1f85a347e21708c5152d60600a648f58b91f14e455d4f04e945a12a461f2c3d8f308ce17ada0c8b4',0,'2024-09-17 20:35:29'),('223fc2fb3614dcb03e3d19dcfe5757247724c453402526a83572b46c5ba005454ee6a6b05dffc417','74a72878c52237ac7d7585d2980a1d98fc1ccb49e5d6a92015640d61ca316ac0f0d0b12e4bcc0702',0,'2024-02-18 17:42:16'),('225654e37d0c4a5d9a381dbff0f2ea1f0d579a0830dd4df09ae2767217d291fe39b5e6fd0876c1e2','2db760f26edde6715d654098096db2df17833c3add56eaa30fef247996445df0f39a14dac7e75f93',0,'2024-04-30 16:08:15'),('225e364cc9fb9a9fc56d3aba30bc7aed0f6e7e968c588cbc21a3614299f3a585f22dec93c17d5299','da1ed73f8a4a7ba6f250c050ca9b81113a123a2e3a4ae0769934d4cda54299b77e3993dc34632226',0,'2024-03-28 10:02:42'),('2264cd7d1980bac5b91603bcceb71f42649792a3f07b8756d93b28c8448fc238fb18972b011a7b64','befe7f751bfe2557cc6514206089bb816d8588442389c1ad902c473d374852159c5bd21e6ccf70b9',0,'2024-03-02 22:39:03'),('2265cd5bed68ed702d12e65be3dc036ae659f371b6cef8a7b60c4a8d3dee37470e50c2b8823c9e13','65a05c59513c6f3489ba10fcb7846d07c34a7c3ecb90df892d720999dc4d6efb6d8539a295228b9c',0,'2024-02-22 19:30:53'),('226fe974d3c931c3016d5d1889e1c5380b8fec7f2bf6bddd68beec94124190b8f9b0e9d7d5862585','68690de65d9ef125b70a4cfe930ddd4e11415adaf255a35a9abba5ff9032148e9dba012fd6af9a6c',0,'2024-01-31 08:47:43'),('22848a7907b8341fa39b7f6f07a1d45ee606940f1508fbb918c6765d87ad2672cef803894d0eaea1','4f2e2eedaec409973d40eae4a7d4a13df27cf96ca3cf3c3bbf5b02ec3696de6fa47f684f0e83d225',0,'2024-03-04 09:21:02'),('228b3637df0e64a7f065fc158e77efd300d4c8cd660a5aa7b1dfa90b3a1a9706cc74613405159780','462a99393b417039322427b608f6443a6bcc753bda56e10c26394304e8107b98a55fd3dfea753426',0,'2024-02-02 14:26:32'),('228e7ef824bfbcb4c062cc9eaac6aff5defc4b14e494cf1cdb52eee42738148421047ca67992325e','06479639c1da331a32240c1fc0cae1333703104c3f219c13fb8008938bfef5882cb82fb4d78a365b',0,'2024-05-09 14:59:19'),('22a0a5b1ca265c3b50dec5f3e9780f98ac70327d2f9d394daf463c474606ac13a5c7a399a4866d86','44e204ada4ba660289895a6c82f54bf78f1b448ef976c865fc706f8be489ae1dde54fb4b3fdc2672',0,'2024-06-09 14:19:43'),('22aa004285aa6767b073f6a780001b67c5bf57f049438c8dfbed559af0fe6813f3922008c56d04b9','82695a099b5d645ce6867b3d06adc5be5eeb747d32c9328c561664f2878256ba533b3467117db2d5',0,'2024-09-18 19:53:58'),('22ab3e77416cc80f19c904301e62708304ee760ba438665ebd47150896835b3234bbb865928ccd39','ea64027fcfa65b4c34fdbb5ec9a5283edc39a483abc8dca4060d2a787cef3ccb1eeae4e395f13e46',0,'2024-09-16 15:44:27'),('22ba4192ff3f819b03f7490c6845f7d92f84c9b23a7bef0a5be2ba14edee20c9a98ad9661136a0ec','3252576442a7a7cd2f35e6f7e8d7c8a6efde6c3ca12b28ea8e8ddea41469922cd33d1b379d04029c',0,'2024-05-20 12:49:14'),('22c889b83e3c938b2b80b715dc8ba25644e4ece6acbcd57df7f387ee7549b6d485d2ba87af391078','869b9d6d2f1ba4a5c820a08244a90df1a7e68ecb0f6950d8790ef01a21ed2d0f5b7d640bf972ad5b',0,'2024-05-28 16:15:18'),('22cd3e8a5b87ae4b7a3490e9a3a6fb0fb4c08162234df2fb08654855fed2d0012442000abc9c41ea','0479ec341095782af860c8fc12a37eec6feada0aa1970467285b9ca0be8caddb724b139089d97626',0,'2024-10-02 22:32:24'),('22cfab4944323975b9299b6039894ea3f968ecd3427026dd44e6a6d15dae9b3c5563ef653f91448c','ccb568a1b971a7944c488bcb02ed8a1db9b1ffedf6acee054bfcc7fdc1b2e73aecdb61fe688bda2c',0,'2024-07-30 16:53:26'),('22deb18dcc22f503291555bdb6a03532c72b70ed1e8c680bc61866da8f620310adc4e046c2e5b1f8','cc7bc89c18f45ab93a312f16d5dfb60aed382ecde5a83dd986f6a870c1e69f9fb06016f38e307ecd',0,'2024-08-26 13:06:21'),('22fc449a34e9e3e745c66dfd37216b45ccdf79394fa6f31be0bcb628d7629ca7d8d0e752db953759','599027124c8c2a37bfae2f644b5946f7cb1f9d824de2e35016afd5717d88fc788c55deb9d79976c0',0,'2024-01-25 00:21:37'),('232ac44a2836615800e8e549f10021aeb9a547603934a6bfe65111754bd8e878d36794e9c5de613d','b5e175b606bc6dfeb3174c4489ac947155d0714c61a97f9ad1f7e6434b656444c277a178f2c915fa',0,'2024-01-25 18:30:59'),('2338241af525b5dd66f4ab3ecd47446f90572312121185c3c83581f9e0b2acc52766151e02dd71ac','ede6f429c5caad052f419f50dec451b90e645839dca495949139df9c15cfb5724a6164c9477733c2',0,'2024-01-28 15:58:02'),('2344be498b3fb25ff62d1cee9623fa2f294690591968df29ead239b1bcd72cf3b65cacea62f78e42','cc13649cba43fe6ed1c8a457869ddee49bb56494fb07443ac85f7a11ec25603bac235c08e9d75478',0,'2024-05-27 10:42:21'),('23458b8f6822e83a852f8334442a87ff172d04fda96b1e7aea06cc16b735315c6307c1a15cd29ad6','17db11711f1faf65fadd49b93794d472f8e1a6d99c8f57779bb3b4ee87c5e4da9dac43fc868b51b3',0,'2024-01-31 07:34:11'),('234fbf26d1e338e0599d1917a8160b769e398ee22f1dbe69ffe4549302657dfb3be569ba6c0ca0d6','f7f1cfa4e5c1119681abf8892d8a27046c97f81acbd085567b9f856e82f3591a75c61ebfc18985a8',0,'2024-02-22 18:24:27'),('235a3c27158e551b9af942c041cdc847f185bd8a2c4bba73a017b89728598b3bd4acf6efd072f454','8ce570119e6ab819d3857f886e7fbbd80b01c30e4852af5cfa3ad953b7580f5e5fd8243739ac7c0c',0,'2024-01-26 17:07:42'),('235ca9c6165a287ef32be1180cdb70960c16601e453169c225cef6f8758f1e785bfa9a963a6dd438','58dfc843ac71f9a72044ceaa9a819fc82829b51edf2fb331f548373ad83d08a8d268ad373e62488f',0,'2024-05-04 15:38:20'),('236e234123257ebe083b8404efa09a7e31f263c16747d1e1a116a26d06a02e55176b9158724a722d','54f1f30b470c06e428beda7b0b8b0dbc7bdf30f69ca4f4e58850e2ae51deadf2cc256aab11987911',0,'2024-09-20 14:16:44'),('2387ac6d7572c151e805eb952f8b37f358c8bd671c03f08189961420749f70d075b0c0378fb7792c','ea84eeeb7de2f278b7e18438490b7d87faa6429e1cd2f36a84a9698903066aa7e9ec7acc99ff86c1',0,'2024-01-26 10:03:22'),('238c09d73546c93dd321bafdaa0f20983bf642d3c09ca468e3ba52eda835b3db20048c8cf4ca1aa8','f4119a3e92d5ebba012f5b1dd7515de74923dfdbeb9caa9caadb6de70eb4682accf089531fa90567',0,'2024-02-04 09:14:24'),('23ad0f9f17a314d08ab279e51f17640b431fd534008113245813785f2767ed13c3ef5eca6d53efee','2b1a8c73db2468f06c01a11938bbe846bbfb042bdc9949862104c9c637029ef863ce58f7b03ab143',0,'2024-06-25 12:05:24'),('23b20e0f109281aa6ac9cc13d00061347be7bc27b7c3b48d4421138513752948c18e444bf727844d','626e601e79bde7c3f2f928dfedb24e6f2cd3637e8e374cd88dab8a23e4c2a30ae839cf798ce868b0',0,'2024-02-16 08:27:38'),('23b7d3c5c4c1064d905be0c976c6b4b509e765a79bd6f1ef809776ea65521d1efa55a4fd37e71899','ce03a6b4a824923045d35dc925c48e68fc4fc05fb32d6979e1020fe75487873e91e1cd71a83c7825',0,'2024-07-29 18:36:18'),('23cb86466d2ae0def4175bd5195e7b06bb12299f95caa051c1978b5a84d730e4caefc1b38ce60ef0','0e6235a1c186fd1bc5ee5b46aedfd4d206a65a52021c79da24f1b264846bf9f8cd3873cde54ce0d1',0,'2024-06-19 13:52:53'),('23d23a78fa94582ef91d0f3eabfe083658c5bbba3f4493ec714d596c9ff86ae9989dde93839b5c20','2c7198dfde8c99082591ab4efea0dc7be5a7d6b887dca4619e8218264c2b146e97f55fa2220ced6b',0,'2024-09-03 22:45:45'),('23d8a09c51883c8f87c3d7a7b5f90bad44fbf442f878dc98624a6d4fdd871bb384c6a86189a1aa43','af2acd87ab86f7a3dfe377bf81f9c46968f2986670415a0e9553e3ead927bcc20a4b2e12054d9e88',0,'2024-02-03 13:34:56'),('2409a3abebdad492cda5ac1e3bd66f7416b0e2dfe5bddceeceeff98af1e8ccb166b2fcef1f7dd0f9','a0261612b721dbe81bec14a3fa36ba65cae347a2079a364b1be37c0dc24912bb021c9f2c74994004',0,'2024-09-06 13:28:41'),('242f27250bbb14005ecf368572e73ed3dd0ac7f787cacb8e4c03461e005a808282aaed4bffac1a4b','954f223a2f6a881d823b1c75a108b2ebd1afe97ba9c5c23a923d28e7f5fa67004835b856ed5fdbac',0,'2024-01-25 21:55:58'),('245d443e93a154fc1910a62bea80aecd49fcca7dbfbf13bfc31d1081c7d0681333f82b1e3ad47771','75b6e03151ef1562d87ffd323e08b87f7cf2ab7ce9f64e36ef49e3494781f6bb7ec6bd384c5ad86e',0,'2024-07-17 14:30:18'),('24627654843f6e7ce2dd9d13da2358cb32be32d7d3bfd4563937e04748252f04caafd657deed21a0','c782fbfad471cc17a1c4e1d4f9c91671ddc44bf6e22cabbcd7b849ed5917bb6f1412a8104f64e6d7',0,'2024-10-03 23:38:44'),('246cfc812acf6afa510042ec14a1bf2e7abd0afa15f3bdfcc6309e625b4c3d8f7fae685456c6508c','d5ef6f194401aeeba691524e257068d5d98369946ea7c38a6e0c4395517d055bf4e829d47f04863d',0,'2024-02-04 20:05:13'),('2473042d4df4353d9c18ddff97d2513c777f7595d3b8fed54607ef3c24abeb910cd097b773798c61','b3ba6414a1435bc1737c5c83aff9108693334e73b454b7598c5f1576d7108b69f6deee9ffe02d236',0,'2024-07-05 15:36:43'),('24791f537f35be4c3838617ae34d41c71f5f122c5d259576e12ad4b5494a4727462dfae6eaca07b9','05bacacba712b82c8b61f98d52bd48b543b1f691dff266f29132afd213b588d6646141e6cbe7cf2b',0,'2024-07-29 14:59:37'),('248b08dcc176848235dfcab2d9645fe0ab22ca0c6af80df70823f49f0c6b7179222d5164fc91dc9c','5ee4cdd6ecf453f825b391d36b3414751743cd1f0058ad4a377dedf98570722da824a08c1a3c01e6',0,'2024-06-16 22:30:38'),('248d5e258ba22764a9fed837815003ed17fdfe857ef8846787db92b7607556b159fdcd4c7b0ab598','c71a6253657b78e8c5873b20340b485d72af0b85efafaa1d0060e9c2276af60dc0c2c984c6f137a6',0,'2024-02-01 20:05:25'),('24acaf62973fd351359b063f78c914eb67cb7686a0f45430906e8ae3ee7da34be07a686ee61e0fda','c3ea537453286d5a326225380f45698a5753055bd79f5131a14a3884b74c6de69fdae0a655a009a1',0,'2024-01-30 09:22:57'),('24b9f3c9931ab0335fb91f2ce84d6088553383e67fdc0c76900332274748a2fb01bad741eece50bc','d7e21301a1cd0c41348b8fa43416b901841bc23ec639f49bbdcfc78996ac0deb3c86647368bf2c89',0,'2024-06-23 17:04:43'),('24c46a2647ebb90de403357709dee77797aae05423fe1ffcd55eb2410b153746cfc24659b2a40d33','f19ec7fe6b26c299de79af214a5d4613b76a0ad14f5299b422e09f60d055c3ec16470e5bd5d3d111',0,'2024-01-30 11:58:22'),('24d3368c095f038572fed493ad3bf278afa1dff68829b8a58384fd4e5d461729fa131ce8dd587201','8fa0450e5ae85de69f576b5cdc9a61f5deccfd8e8f40f6c0a556ba784c035a1f7a7b2457cee7048a',0,'2024-05-14 08:20:23'),('24f79af51be37888ffdadcd0abed766f891532aad339a370ae88869aa40c793753c5b07d48b5d18d','b4f074e5dacc21a6a31af3b9bfed0bb1a51e963fe2dba6ecfd577487a0143fe7ec6a5eb585503bac',0,'2024-03-01 13:55:47'),('25079665b2b6a580b768268b9a1ec61f05184de086386779d331827f3fb897b6a64b88b0963fbd75','7c19db1382286cde507634df18733ca5dcd83c36e0d4bc6ba33ee9f877b9ba04f4430c7b5aa1772c',0,'2024-05-15 06:15:48'),('2509a38cee6f79fcca042af0085d78d98c7d3fb98755900fe5cfd07667a5adb039fa1e6770ee1c89','1f72d3e0485bcbc3470159a3d9f9765f32c7d2baabc1e6b8998cabc6210a59890a757bfb7e917e88',0,'2024-02-20 22:50:37'),('250c225af8ed87f83e49dac0284c3de221cda9ed6fcf519cd000742021fb31d559ee3e4e6dfdbb85','ba8b4b31308f21b365c8ad9c7c821b5a8b6315d5b9b4ef450f42e24b4046b5e30d1ad2324f24bad2',0,'2024-08-13 21:09:22'),('251c8364cf1a7e0e3bab362106e7a528a6a2496c839ec53fcf8a4d7eaf46e0a27c9ae322ac69a325','20c96c25aaa609ade5d456df944b6380ef49612f715cf8640e96f1dfe351e1bd2f8ed9c94da51587',0,'2024-10-02 10:54:10'),('253d0803bf9517f68bef37a0e21dabab575d72385678542790ffc89c233368eb86837db9edb8bb52','6f6920f1b0edc45be03d5dc4357b5683b438702b88b01f25a4433b304adbdb721fc69db290bba362',0,'2024-07-02 15:01:08'),('254fc0d31c7b643ce7677cd60642163f620b8572c87d070997c10579f243e36bf71f4b36eb8c75f7','1dc0f2b6939695cf03298698c3808ff4d43b41336d288c0c8e7e1589997775634e1fcaa62cb5e89a',0,'2024-01-25 12:44:48'),('255879c0bff2ba089a53c880dc44487689f471c3f39f56f9f014470f9af502a0f08bbb8554728769','ae8b129f51d43cd766e1a92b9c9c9ffc9b65043c81b358960ab374a5674acf13163934d41801781d',0,'2024-09-14 20:00:36'),('257efbdee092d64c805d9af464e10d7c9e9aa41f405cf62fb307c3d168ffd7f40d7526cf48be7775','ff8a4bffd31bf3ce0acdf43135f6523e5a41d1d055c3dcc819f56ad7fab14d2421a0fae070f9a5d6',0,'2024-03-03 11:23:21'),('2598eb6db91c4f3c6fe1612357078feb3359d39145982449a97ec534909e5d82c9efe480655b57c9','45e2637190174d86c55cba74ca94ba48e5d1c6510bba5865e092c838e7768104c16997ecea14149a',0,'2024-09-02 23:39:59'),('259d4f96a559ee768e4eba6c774ca7b8efd9d930d0cf58c8428fc2e3b7784853b2bea26649bf5a84','ddc84bc97cda93a370ac5eb0d3375ef4ddb2b6e29279f253b4ebf5773730426c51496d76378c8ff8',0,'2024-07-17 17:03:13'),('25ac38174b8929a98341a554559a8bfe1f4e4a9f5a656b000b000c1b5b11003ca0e3bb7469ccc2f7','0e78431e53251617bc7150e9dce03446e1c761ee49ce801f48501aa471dcab67d9573543e6e92473',0,'2024-05-04 09:46:54'),('25ae30e2c4440f43f7f1976d67adb49f0a8a9bba9eeb5a74b3d031d555593e1bc68d55d4b2f892be','deb8ed6839c68cbfa51091b43642b64096bdf3505e4a5df232414688970bb3474c4e948d6b9305f4',0,'2024-08-20 14:31:45'),('25e22c659428a9125fd3db654f3090712bdf3043d52e7aa52f42ac04b300471e54b352d5acb175ba','ce08bf945b04d6b5618d677f993eaa8a562d9f8ad6ce5eb077baa7a7de0a9aac9fdaa609b7379ca5',0,'2024-02-28 16:26:00'),('25f55ad4b3fb20b9adc13f1941678be04a525482046ad1827cc9f30410d27c0a5f8428449e0bbfe5','28bd24e1b6fbfe33dcca28c648ccb51a0cabd09e5e6847160d7e0685a64fe426959eac4bf517b297',0,'2024-10-03 00:21:24'),('260420a8295d2278fdb3f389f577948b7b8cdfa47587d46229c2056d3af4c1e83867aba700fca412','b451fb6556e3a6d744ac5f5e3d5af7fdad8f6072f60fa5f006d453ad03d9d98978c76d3ae8142151',0,'2024-07-03 09:53:34'),('261092165246a3488a21728c8cc17d8d85d705d486c7df3b7566998b1daa9377d1f0684e602ee571','8ed611c1b894b3eb06e6dd384b7d2cd37f90ada92effd94ec91dd6ee1f78c6a944c63ae26ff720a2',0,'2024-10-05 10:30:52'),('2620c4fc805c737a333a90b3360f582d53003d985fb12fe5f86bfe2372cc1f45b79818c1bdde3889','63bbaabf42ae3bf64befac2a35f850700e96d93c8f2701609fb5bcd16836c409d0cb998ef0de16cf',0,'2024-05-10 12:55:07'),('263b0270e48a1e2aff061ec655574db2b8ccc27c0302d93cb7574c922464d653e36dd19939a00d6b','f1d7ae91cedc04d1411ee3e4b1a67eab600bd58caf8e493e553c07b2712c98cc02bf68bbe19d9f96',0,'2024-06-24 15:24:10'),('264a971cdee90e34579e4e39ad3eed52b0bc572a90d35ce63ab12428f3839d1799efcde7c80054f0','6349166bc0150c3563fc24d03f0d190d9a852f75568ab7eb32f2c0f661b97fd78853d7c2f7630581',0,'2024-04-23 19:05:09'),('26596f88f953f2022eb651bf53afbdd3280034fda745bd8e7f6e535302786751014691c4a8b5ccf4','a22b9d0675523b620c9b4c3196ced20eb30939dfca604d0f28fdd549788b4bdd5d3d9baa45d14513',0,'2024-09-28 22:36:46'),('26703235522f8f732573c15746e7ddbf41089680dd26241c7bf78901d092a8a2ed88573395c38ef7','3674933faf52e6bf6b05dd423a4be3953577354231d1170c21719337b2cb83d9a5492763bc82e71f',0,'2024-01-25 15:09:57'),('2683c923315b079c0b43abf21c80db3e3299ebd730de4defe015851e476691cbbbaee5b0235725df','e0a3d183d161e043e89386d1a95514fb8145ba5cef59ac2b3ae2af47b246eeca98127a9a98419126',0,'2024-01-25 11:52:26'),('2688fe6048b4aa63103621b54a5c1adfd5dacc5216e54179ea668e0f253ee87432019243792f30dd','ef1cd6a736ab53a4d21b750bc3d395a1f7ec54872e634c71762bd7bd1d6a74e5519d02b334e257ce',0,'2024-04-26 21:45:16'),('268a128c9f725ca20bbb779680d18c27f9ff39676e1aa0f1e6b61254c05d337a661c758c65fa2823','194f4a66bca36eadf4729aebf01c4242b9a0200abe88585ea01768e1a36945c6cad0da31f79e0830',0,'2024-10-08 07:50:33'),('26a271ef966ac31cc4ef335c46e4e04c68723b6cc5fa210ea8f542be42062bb30c5a16257526ce27','ddc4433fbe4fd060f07778fa6503ced7e0af9ea0ca8c1c17e1f53625ef12abdb451f10720274d519',0,'2024-01-25 18:10:54'),('26a66bd14af1493a8642e8d47ebeeb5a62c6b35cd9d6d7facc16efa2cf9618efc738923056bb4607','63a190b3c379fd5663aa9fcc387a9ddf75d14f36ddf1656402a48b68ea1ecaf6554fa065ea353dfe',0,'2024-05-05 06:35:09'),('26b81dc398b24a2cbbfadcd208da04f3e16ebd0968bc60bdc42fbe432471bb4f03531f55e34d4885','45e5601d439c17b208e53a9372c07be91d551b2f30510da17e0f7efc31a4974f939e7ad2e188301c',0,'2024-02-01 21:35:08'),('26b990b133da4ca5721e7fa591197e2ad57a25ce806ed36c3582498ba1f3f0fece0e79fa6a69c248','b5a15c11d17d36a9a9709e2a03b3a29f4aeeefd0c17324e61bbdd0af8e089fe78f42467af7fdec4c',0,'2024-02-19 10:29:59'),('26d055101cfd0f1cff6924c4b8ad2b3dee70496f0d8bf32666addee7c44c4168b5a8bdbdd4492d13','072fbb61a1b8892358844279f91f42b89412671128ee6458dc39909dd168995ffc312ba3e145c22d',0,'2024-01-25 00:01:13'),('26e1f22fb6325bdda887f811be89c2b1007258e878407fceea49e3b1d6462f43f970a4753435a863','21a29aae227e5568b089d2b9880e0359efcacc70658b9bf52bc105a2c7f6c6dd77aa43fd70a3e76c',0,'2024-08-06 10:05:34'),('26e3574903b124a3d5779064125073e8fbc4c445bd6ae8e73a7a5bdefac8c3ac32575f8dfcd0ab61','f188bc6eb2b1b5656fda336df23b63584b7db90c600db13ad5a2cda4599163e6a502101be9340595',0,'2024-03-11 21:10:43'),('26e7a8744620a902be2c0cfba3f7d576cae931def5a9dcf5a61c766866ce93f2099d3d0d6ecdfc58','bad283ad89c21145aa522d971953376048fc55417b15aba4ba840c8b5866a109f9cb8f4835ad47b1',0,'2024-08-23 09:22:43'),('2701782c46f36737a817b429bc51d47745ba91faeec00bd5a93dca842c5c01a3b6cfb9af3bc97324','016f5f8325d9192e17a305d4e40f4a167d34679276030b6d53c23eac09c281d6d614bff19337e3fa',0,'2024-01-28 22:48:19'),('271fc67c2fab94d95f49b05f1bc594ff0f35c44ab622847a0e71a49194fe1d84ec9346ba784f808a','61a2078113e9c5f736f92cd6bac634a5584c0ab2d18e72ca096a6733e874e431d3282179d970491c',0,'2024-03-06 22:37:03'),('2726ed30895dc85327a16c201f1b2e28d843783254c2e332d1a7d584661d6d1dae3007e7e1e00ba8','f07cfa9e619b44b9ae1711290654370a32710ccd70738142e72edc7f429147f55fc6e67aef0a1c26',0,'2024-07-31 14:22:49'),('272cf0f2359f7bf14c301390a5eb7f004a60faf1f72d00c4f140c0bf7e747314f28116d99b79c422','9ffa94ffe6a3dc0c1f5a32d8002fd3c5b2a02bcff62e3b045031547a7a53025a2683dadbad2e9b79',0,'2024-03-28 14:07:29'),('273b9c2eddbd57e0ab62da9a838e4c39c231bbf9ae375aff12b68cab8beda47406fa9745b537ff61','57cbe1ad6c7785d421fde686cd72e14076f02742e486796dcbfe439370d461b45b334c2fe3bccd77',0,'2024-07-12 22:42:15'),('2758434c924a7aa2dfeb91db72fe2cd58d69bbfab6d114eb7da3a9f25d3a9c5a4a9c7981a6acdacd','244a11ee5f2d072958f10dbf9ea5ac877ec8bf1760d0795cf43ff26127d8849cd826988889e171a8',0,'2024-07-07 00:57:36'),('275d8284ef150a712cc8c28dabf277869af163547167de284b6d6a0201d530ee3cbc3b81842590c4','ce18577fa5da4a0ac96f7812e1a36f4951a05b0c5b71cd6ff3b757a3cf3b23dd80745a2bc87dd3c6',0,'2024-10-04 19:53:16'),('276dfa11f749adf1325526e48671919abe441e29785c2953eb6d811b03cd7e1eb66048431ba9eec8','b00f4cb5febe305640056ff80d8b753a1ac819a7df364eac5bf130c2352fd5f1471d60f902460c25',0,'2024-01-25 14:39:49'),('276e337281ae8ffecf6eb24ddf3068021150e455ff40f7963bb34bd6c3bb8362177a644b44a85107','a7ed1bd5be27459037f043eb0dc213d08da375b9a32a27c0b01ece3a7bcc40da0d051e4992fd466f',0,'2024-07-26 15:43:59'),('277f08d3da436aeeec10e16f20bb7248d140e899e7e7e7319d5a7709f2fc2198e651c623e7f47859','ace65e0f4ad0ec2922485b64d47acc8388dae010f6f8af9d8828de94e092f54431e3042ace4a5cf8',0,'2024-04-07 12:05:09'),('2792a89284b3b101e87992cd779a57c216534095170f7df0f4cf6f7614f86fdad9ec74ea05c70811','103e0ab3f580ce28774d9b5d72777e8ee3af4a8f8e8e9272a51a60efd9a6dc703af89fe0efcd48e6',0,'2024-04-13 23:03:25'),('279788d4f851c963b28ccea518e7bc271a8765611919da51c20200073244837a51ebd70f2fe0de61','b6b51bf44948162e9a14e1a88492b773ec39f74f6b148d13f951aa5b952fdb555c5a729d39ab040f',0,'2024-03-26 12:13:54'),('27989d78335fa99651f668519b30583dc35da38b0ed44af18444f5042d77b58acd1c4cbe3d8ceef7','55c0a4bfdf16f826e6c0f9cd5cf15742ff88da08ffb11db9f3f6aca646b2f2eb2bf32aee3e76a9e7',0,'2024-10-04 09:50:36'),('279d0db9550a0a0e1379898f9d30b2d7ec216750c094ab4b293520ccdd14709e81b34baf849c406e','76cda373011996e8b6ceb932f97fb972946b4d491dabf6045c3733d4306f81bd99732d0b92a4bbb6',0,'2024-05-09 15:44:27'),('27b87662ef1af72475aebfeaea584994dcdbc6f23c8321bd084d1ced597c2490b4d06768e36259b3','d5b01848620ae88a318a008e4e7008e42a1aec9614e9ae20d581b4adbe947fd7348841fd9cffa4c4',0,'2024-02-14 17:15:22'),('27bad70df67828ee03962b36d293d92cbac0d382274e7b2d80c0ff59e48603ebdb0eb73aa80c5c59','523db0c796c19d9435e1cc676da9b29f0243059752c97b37d340b1b9d1052d7ed476d4dc6d030ef5',0,'2024-08-18 06:49:02'),('27ee2eace382d40bf908ffcd9e67f42c47b2ef083597fce08fccc3cbc16e04ea0caaea3e949d15b7','8104aed330e9cbec638837ca47db100f380cc1ed8243ed2e49087304cb8387ce8d823c452253a26c',0,'2024-02-02 22:57:44'),('27fc27535c464380947a308f1e205191adf3f6c3b6e9825d2cc46d32a1658cc731028fb94221bd56','5757e64238279ef67b16b0c96d05fd1b0a0b0f124308d65a464bde0e6ea7e9130d382684c969ab75',0,'2024-09-13 14:02:53'),('27fd0966e5036f6c3ec59e8c9a07787c78e0780f4bf90c13c8032b2b791df9ed6d58f7db43065294','fd012c966efb54f8b7face7aebfc310cad4d0d228a8a091e5d67f78200463d1c37bf980813a12eb9',0,'2024-06-26 11:28:55'),('2818c099555eaed7006a34e213f7e68924e0a6d535b26a100b6d2351593c96f2f2c40c9703202d8a','94765ac04b260c2f6d8efbd9648d12f726898e029d197c56a80aa054c419b955eaa16de610aa9329',0,'2024-01-25 11:28:27'),('281e99ee2280dfe94c36165f9fa312b2fa3e594f516802c0740b31d928d7160cda7e3bd9430805dc','2bce6acd4bd8e08684096001d1ba4b85a1800009857767dc94511f004460dd8a3a28729f72eeefe9',0,'2024-07-10 18:21:09'),('282065795caef84c6f2023ada1fe6d77a375c2a3cae727d4e9299122e5badd21d914307d61e0a50e','481dd4af85ac173cb36761c04ccf0548c31063c5587140c0a392ea56bc657e768a2483d7412002b3',0,'2024-02-22 18:54:53'),('2823638e394474f4cdbf0bc4e1d68607805f69fcd8432da2dd0eb80198ab1dd8f0db2fe2d8cf6c9a','d901597490bfa76b3279c912e658cb46d7130734ed6335a0d6089734922205dfdc3d77cd58aa277c',0,'2024-07-08 20:09:10'),('282806925ae3599944f2b7bd22f6f4511ca23a31d8bcf4ba8fc0b18601167cca788c729196373803','b37c84c32aacb699e2485febb9cf378d4898191654a49a3732eb2a78a4e5f1e9f5ffff15258e5edc',0,'2024-09-22 12:19:23'),('283a49fab9ca920e118c61f66e22560e6911bb0937cf8a60672cf4197dfca9926d79526506e756b4','603ba5bf24503dd90fdc6c3fe7236ef15e763640bb7fdf8bd3fd8a93f52c7795394347b65db5bca8',0,'2024-02-15 12:46:40'),('283c97205c453671654670a1d221230c0256ace00c1b7c7c535fabac15002919bfa9a7a5606348c6','cd73351ea8111910cc759e45719706eae67e5ac5bf03ab03921cef8fa0b99186d1b1e78cdd2dd503',0,'2024-05-17 18:56:23'),('28497fc6da800dcec2cba971f552dd20fdf242112db085de77d8da00100264d170b163610bdc0591','ba1a280806af81512b386548d781f0cb9c345c8e57f4410aed0764c35d32a9943b868cb426eafd4b',0,'2024-09-05 12:17:08'),('285ac75b8c65eb7e11632f6b770fb0fa8f306a2589c788ce4a07a0e38f463e5d01e0111f918702e8','7eab702381e24eac86da5d0277f8545c5cda9ba630c18c2c0c9c246fe7638337b515d10f82faa64f',0,'2024-01-28 10:34:32'),('285e0f1648ad9cca068f4ff3816d5cc3a21303c9b835c953c123a863bba44fcdf6b9cc2a28c302b6','215c0d377ea17d63eac5e1dd8fc2ef07c8cf2c05e30ae624997291b0dd713a1b991388f01bb4b72f',0,'2024-08-08 17:29:57'),('28608ef7c4d30a5af02c54f8a953021aa10b2233f8af89813f88eb4182cb81b23481901d0a3d2dab','c8331887ec234c4ea2ac68b625de317beb6505870ed068bc521f267a3421d1861943d7f15d996e1e',0,'2024-02-27 14:29:17'),('286f5bdb31da0f794e441b1c0c16646f503a81929a047691b4cdf37e01f9d34bcd651e6bb1174fdb','35b8ac539b882bc10797c9c25449914ccca44e7d2bbfee35943c61c1558421c15957f12b74793776',0,'2024-04-26 15:25:20'),('287251101d883bac3b175ef0a00538cb94a1d04743b022e1aa1f0069f21f8d0810742e755249abc4','6bb360fa01e80f69fe6f02a0a3c3882d1e923c6a26c1d2306a06053aeebcbe0c8ce5bf47ddc879cf',0,'2024-09-23 10:27:11'),('287546f14af0f326b2e7b75f7f3f5b08f9c562ad6b802411b22c64efc2e939a57c2d9de337f80597','1a3a59c6de76c0aa786e364c81f8be608d63c99571b342bca580d9b0eee3c19259e34440fb0879a9',0,'2024-05-14 19:36:13'),('28885da80040d2e593c679cfa755fb0029584053e018dff89d9117de4eceb4744feb4874e2afa8c0','afb33c9ca268939dbf5acc674ad9602438c4e604d3278acc53645aeab0352d52f993a2edff269fa2',0,'2024-01-31 14:22:18'),('288e9216f432accb526a880ecd0fc34ce7b0809c8893a70f14b3621980d081922969b6d52f2c3554','4f3950ce4f940ea078e926553d6e112b09debadac021372225673059a343e8be504b9a5c1153eb6a',0,'2024-06-16 11:36:21'),('28902202b705ecb6b966472dda2a63b555b4b4efe821ad009653dea57be3e4b2fd7e2cc83cb7e71a','67729df32eda04359ab0c0971e0d79f0b32adfb1efd4479ee0a81595e2cb65376054d9db4c439053',0,'2024-08-15 10:04:49'),('289c051cb5be1b6f4317422d4aaa72b0c82f1564c250eecadb2ca6ac93221aae61aecbfd1be51bc4','4f90d588dc5df1489733b0607531e1968d363d7f361e92e09cbdeaf9be1ea58d6bb71c778eee0d55',0,'2024-08-14 22:12:44'),('28a72523979412a41070fc67a60555e4556096ce8a21a8cfb51d8cb1ad79e1e0907f78797e9e9bfb','55dd608b07945c26e4e470b81d1b4e6ab3c31ae2f7d2762d78f605865ba31396ce304205c7b57b8a',0,'2024-05-14 15:58:34'),('28aaaed1667183eb18e6b51da69e4a816f23baf0101d9eabf6d740c447397db9a0ae05dc8de4ff16','b85a6acc723a26b0647362a131b40801347b3773f37b0af7b3625a9d47b81b0f77b17b8065f6ecf7',0,'2024-01-25 15:43:34'),('28b622eaf76a28cdaf26a4021df1fecb0c94e084d227ef8a732f982d762931a22c576c05e21b02a0','ba1f39503467a04cdb03f6cc6dfd902ec3d75f2ab5f6d22f52ece7d165dc5b03bde1bb02c0888d8f',0,'2024-04-21 21:15:33'),('28c3dbd216174b80e60a44e72b3760aec3ea574be67c10415a67bb0114ab861f624a3f34d70e8cac','3b0a100895d98f585d397ac987d5c83cc7949dfc591fe2613b56591f202950d1a5c7b214c987e885',0,'2024-03-23 17:35:58'),('28e840826e8b6aec5b2f714e467bb3236afdfe97bb3d12dd4948c37bd521a11ed326faa9059113cb','7dfaba8dd239cb6a577e7070e4b056952cfafb3e87dd01b2dfd2af3e085bcd0d14e384f4cd1f307a',0,'2024-01-25 00:25:08'),('28f77b13ba5e3613d99012f9a3e83f0942d40e669a5935942801c62151ef6b88e09501226e153399','ba0676fb389c240d691e2b23060d282347db7f7d6231e006fa2f5094ce0f28d3cf1ddb0cf04b6e6c',0,'2024-06-25 15:39:51'),('290a23f542470582a1305472b6379e3ea81e1a54da7446a360cd5fe0cdc6921a5e9b16e293435e00','188c73850fa57386967ac41c18b08073785804dbf0ca39a12ab2c4509c06bfa10d0886812ea02b3b',0,'2024-06-18 12:19:11'),('29107af01cbef18c897127bb1854f24237de2296e2808b78ad27709793c20970de80710802318c85','51073f6365092743fe6763171d3d1d9b761ff4a57787a131589f415d9f08c1f72d5548aade15a06a',0,'2024-01-30 12:37:13'),('2914c286c6818614aba385fae1e220486e9bef55ed8918568188b09dc8f6a2cff57e783887520235','d4f6a87be5e13c2bedb86b130d0b04d58ab6837a3e240e4b8ee4d59fbb1358c306837c6dc0446985',0,'2024-03-09 18:10:09'),('292c40cb0cfa4c7b6f1a4ba20ebc5f5b72351ad60014706f65855bfca0b7fd13caff5372e616f929','f8193ac05503eee45d64cebb2c134c1fe2dea3a0db52e4ca939b31b77e6f4c74a304fe367ca40359',0,'2024-05-02 23:12:56'),('29450b850d8347356d9092a9c2f7b163fe1d2beb3d9d61a43d57bc2001553a869679110d43b36fdd','f8ba4ad9faab933ede378ca3002024fb5f9f5ad991fbed35c84a73a4fcf119127b235a5e1d97a075',0,'2024-03-06 12:45:35'),('295a6e00357d4164ab9a6ee7a294126c5988a89733aaa52a743963e925763934950f3e164fe15f4f','ddfe46d322d57f51924c545883d55dc86571fad877aa82f1fe0687b2218ceea5f5dfef5e7f7874e6',0,'2024-10-01 17:24:52'),('2977e18ba5f55507ed858e642f0c207fee3217b969b142fe034a6b1cd8ce1649919fbbf1ddb04318','88e02b58de4c8e9f6b913e39d314bcb94e2e6c13587ba6ce8192a321af7365cd5f8ade51b9a0ce97',0,'2024-06-18 17:56:05'),('297e951df524694143e9c21ca5829a6e579c954d31aa328dcdc375355022034f49892726b369fe13','144788d07336e89172243eb3b6d66043d0c163d622484b53a0863c365b9a459004a5bcb85acfe541',0,'2024-07-23 15:58:20'),('2982c59a99f32df4881cb1030c3c9d85fd04a3b1763045875d73a067558f944e1246227deab2acd6','74cea86fd0d220cd6e9e8f83fcc1898435b240b6cd4dae0f925b8f5f33297532bd21b94ba0a37e9d',0,'2024-08-16 14:34:41'),('298613d3af5291c766ff067023f3d20b1971fdbb86671fa7800669ea17422b365aab99342d02379c','22cbb00ea5d191444c6187b259dfab05dfbbbec8efbfc0a6effaa1ff8bec2cf1971b6d2edc002efa',0,'2024-01-30 21:59:24'),('298b0b73e995253f2b3fe6b1b31577d6d51d32beca5ae3c12a432e967836eb2b603e8a634bb76a0d','616a4b788480c26c5cd5528f3fb54db5697a7eefb7221298805c414585896796c9094de3c1bf5d3f',0,'2024-01-30 19:38:18'),('298d5acb55fb2d3f8898dd2f9c44fd04000d72e1eb4cf6183a76dc027ae2102b8aca644168725256','f792ebd46f4cfe771e6e082457cd40944c224acd8836d494b4085f8f90c83d5ba5f2cab5d7e8be18',0,'2024-02-05 21:47:31'),('29ad0e09903ddb37c850124eeea562a74fdcd697e212fbb21a62df77c41acdbde7a8f61c17afcfb6','764e6d2df8fe3832d7d114556773be7e37c77d0a4c1eef03ffe1a5b13d603d1de6cd4d16b43adb82',0,'2024-05-01 22:58:42'),('29cc29372501b0455be475e56c039106a1246e8cedd487c8504990e57ee38eca93a571e14a9af7cd','0188f0cd65885cd8f4b346c376b7df168740a17b339e65ce67695fc0308828fd87d1746803f1c2f0',0,'2024-04-30 16:30:58'),('29d1c0ecd7fb22edf91db87366fdca0cf16e447bf87ce256ed48690061ae1a2e3fc3ef0ae999ae31','91ed2579bab5bd3cc0cdde6a9048cade0677fdd64c538210c8e7e84011c0cf6d074254b86209c024',0,'2024-05-16 14:09:14'),('29d81fbbdd302b52aa0686055a058d01b3f181aa368619885da7c6481f4777aad33a398b4f5ef728','c202b3d2ae5fe55785c19e3d7fec4ae4321726b7a480dfbdbc8fb3ef531231387c81429507c99f57',0,'2024-07-13 13:20:08'),('29d9f7baf241b99a9aeeae3aed4f3d9c80ef830c801834a007e4b3a0b4fa194fcecad56216f4f5e7','4c20c68e35130d2c53e73969b2dff4eed61001773f9e3f22c57f20f8a313d1e3542074293156ccb6',0,'2024-08-02 07:53:59'),('29deeed21c3161435004d1025c070e6900bf8393ca2dd06b7d4ef85e363bd4af665103d5aaa96db0','f47b4234422b8f447333325aded60e13e639989192c751dcb4c864a67cbd74d17053d59fa5c1c139',0,'2024-03-26 09:35:38'),('29e2ed14f38ebaafbeb66bf928810e0312b0ce6db02176708cf759369f4c2c14099c83b0a78bc39c','aa65c789c6a898f384b5f926a94ebb60dddf846575e1e2c922fea4727bee7cb41cd4d68ffc0493fa',0,'2024-01-29 16:11:17'),('29e380c0337823b05af595de262f1f7fe203308f1b1658b06e4c18d81cf3dab3730e9ee2194b93aa','80355f426c5d226fc015536e8d75bc9d8137db75a5dcc6b10f77dbf60d1a3605e6aaade8f9b616ac',0,'2024-02-14 16:43:24'),('2a16641730eb33487c0a5400f4980cd93d954e953e1ffd1cd1975e20dfd28d6afb56e1bdbf4954c8','679444de14466e09186bf23135e70561fc0d0d00e98b3b5f671a35ee01e2e9ce2282d9276a407ee1',0,'2024-06-28 06:43:25'),('2a1bf57817b8c958fea37b040ef26eeb0751bc9d51d2b21c857f46cb8d03067e76ff74dc0c29e736','8e94f459d3268a0551a4aed0e5aea228bbd3453d92876a858b18b6c809b861d9d401541e3a54cc7f',0,'2024-10-05 22:20:31'),('2a3915806209820e6405dd2eaa70da001257c678a2093034dde9f08f43b87b6f4523eb8fe5a52190','83de592a8675c4206a323e9845c0d21ab2dbc19075e10f84ff019431c502351a253d01c9c3354512',0,'2024-01-26 11:52:54'),('2a3e08289be3cba3565a32a697e89283cddbda600139fd322e5a0ee6545a700c93ded7accb987232','078d609a7c211d09a0f3eef2dcabc3ba9702eb0cd00f90894ed54b1f7ee4503eed0fecdb651d7dd2',0,'2024-04-26 22:15:09'),('2a50427fc3d6985b7e78a4ede67431146b2eb9bb2d6645d5554a16555e60e18ab97621e6147e54f6','367c293a82b5750ce68e767419df969f57a911adeabfeb233c40dad547344f2dd116c0b6219977ae',0,'2024-01-26 16:24:11'),('2a74ddaa6c17a5deb560fd4a32eab65bbc064e1be294b3ff3d87aac897599e56f732adf9d40fd34a','af37471efae04f1404305738ef624a9399f276852bbc1a4724579ad68306b087625508ada37deb88',0,'2024-09-05 15:32:11'),('2a767800656fbe7ac51410544ebaf9b28f2ec7086b78bf2c7767c1f77898e839dd7992265a4a398f','12aae7ab046cfbb58a634aaf3b1f708f48253609210d1fad8d0e36d971a804c2b1939b771d7e0dd2',0,'2024-09-29 08:57:53'),('2a84221303fe0046d3fce09bfa8cedca5c28ea7651f2df49876e5f41d8d716d7beabb74eb574aad3','d47e600c273a525d1ac89933846cd405d35668319bdeae4735af1193067550cdbec5f92984593f2c',0,'2024-07-06 20:23:39'),('2a86c0c5e817b2cf4c362e6da87e5c781d675ccc211aa20c5cc7e0ebf8003d28a8c0c2fa6dcc221c','5cac92cef56e53d3b8003280911c917ab6117f8cadf183b3d5223be2073e6f49dddc90969541e2e6',0,'2024-07-16 12:54:41'),('2a89df7434e05aa7f1f3c3325a57281d8463a18f900cc0a77bd0c32f4f481afe88ba9b6738c115fd','ce98004d28caaf3c07ac1c257a185f2237a775ad4943209c8d05f6e69fc53a25eba9b010df3e4279',0,'2024-02-04 21:33:39'),('2a89ee2ae75fd3675897949ed476f6ca426f0c951e337bd17a86baa8e321ebe465cc75563fba2b71','527f692691558f4d741cdac6771e386e41b5aa3dc444b0bfc39d4fff0c2147c651fed86ebe0a94fd',0,'2024-04-27 15:43:34'),('2ac287dbd1f46abbf7816338e5a1f69163e202cb5046416c5a3aba0999fabf501e8c23cccd219bd0','5827099b110e55211a9e3ae01bfe411f79c2192e73c68ede5ffefa8778082e152071cf02e5deaaac',0,'2024-04-22 11:43:24'),('2ac451f6265e252589b5a7208575c73be62010d7d83e4c6a67f0790adcd9718844c1a0df55e8557c','1b7f7f1ca63fdca5321d08bdbc5f100649a9dc3686831098ef7149419c33fe9f00b9b9d322e69e47',0,'2024-01-26 10:05:43'),('2ac8a086f197867dde04d86dedf9f28bf0ebb94882a21e9fbdc78dc3282dc7131da725caf7ce2fe8','9f3aa349b1afaa8d0dac108ebdb44ce69684368328aa8972b700886248d6e40cd642e3066afe6b2b',0,'2024-07-29 15:58:11'),('2adcd9536fca478b47be2ead26276bdd780fad0f2753fc8bdb0f9c8356e48e8964059d7cd12fa029','d6b1c921e31e0b1215a46752bf8a9bb4cc55f575a337333d75f9ea0270f43c7292edd7411a13abaf',0,'2024-02-05 18:22:27'),('2ae80940248bea7b86656dde0509a891a0d078c904ef7f4548e8e3baa8a5e680b3d7f14aa470783f','100b9d4bd751ebcf9e18417eeaad4299edb6d815e4d4d656681614325317de55a4e87e5a4310a450',0,'2024-04-19 22:39:44'),('2afa9ba27ddebeb55a4427cbb48cfc60765cba2578947f3b7fc175511dffe9dedcb2602fd6f1d4cf','fe867f80764455c704b6e0438d8b50ea1f9c2fa10037bb7716f7a3fb575545ecda2cbbb8d2c7ef67',0,'2024-07-06 21:03:52'),('2afd237c6ec02515dcbf535a8d18776990d05a1ff1ef14e7ddff3ab9494d35ad8f1210b10e97273f','330a9241d5623e542014d3b87b9840ca3d340811f80600e873c9ce68a63ae6704276c7e34f2a3537',0,'2024-09-26 10:42:26'),('2b03ae92353c96f2b22a96a541e6ebd696ff4ed21203028204d1997636d224ed778b011b45af4fac','efb27487ab2b6db40f70c8f736f6625645d4c76bd677717883ceea5724c36c5e0b164274283cff32',0,'2024-03-17 09:18:04'),('2b174ffd664036a7e93303bf40a812d68cd9926c8bd011e568cde07072d942f471b3bf29be159787','bf3db6a666d55e6e0bb082581a475f4429fd1a253868888117a04ecfb48aa8d9dbb837e95e5fd5a0',0,'2024-04-18 17:53:09'),('2b2bb0586a028ddc98c204c25abbc74821b04b88a32d6a45901e2e856b7b87165eabe7206c53e4c9','e71f4068f5c561c4e3a7b58b9a30fb44fc98697dd403f9d0869b78f6cee325f8536da69b07c0242a',0,'2024-03-14 20:39:55'),('2b2c16490893c9b31f1753626c598f4b237fea05a3f8fd7e7f135ee915ab6d4abec9e55387a756e8','1015c1793887cc291ba987d40014ba9880aaccd219f66a5fbb4824be1fea55fad453463fec0dfbd2',0,'2024-02-11 04:43:54'),('2b35a241004047aa9699fc34d808a8d81325f53ceb0268063e8c292814d3aabf7886e7e13f5d93bb','2aae60a2256e32cd42a87719e4e72330590bf876cc94d70503c60e8515b08f5c618578696020878b',0,'2024-02-23 19:48:07'),('2b4e6dc1134cc81b6acbe0789b5cf847fbe133417674dccecc89e10bc1834f2a58f39f3d54ffd3c3','4489a5397062cf4bda61f6f32b785d70155f7d74c6e273ab964e5c23f8478aa35ca4b006919bb731',0,'2024-03-23 10:54:30'),('2b610ab178209b63481b1abf6f380a93cfca30a1d1acbd19f345f153b690d6f957a035f641447c82','0859e052e5231851be2babe714291d61f07b61a85735660ea50dd95f2b1e9a91f3cc4e457a4445cc',0,'2024-09-14 13:57:39'),('2b653df86fcef19cf3abd131588c93f35e3975fc74b415ec0008c21c70a785624cc4bd99d9f8b3ae','3b08505c74e9868a772fcddaaa9da5d9e5ef8f0b03ea3e5b4da685f3cac39fd7c7531c76cc115ac8',0,'2024-03-18 17:04:05'),('2b747c98c43a34763d452e643c4c6ba2d94e377eec5bd3a1cd1dea1cd408be3a705b6be2a1f65660','a31778d2309194c63c40e834bf5584c6f6a0a5bb08e34d8133b446c88784d2aa7fffdb5fb7ca3117',0,'2024-05-04 21:06:47'),('2b7cd4cb637cfe4df874bbe7e90c54d8b5766eb1554fb28ba7674a9152784688a431bb4465360fae','c86c427ba713f32fbc6714ab56fdaeb2c16a17421cc1171df2bbf7b20887f628952f05ab9fce86d1',0,'2024-05-17 23:04:48'),('2b8b1c32fb447f84af1a23f4218127493478857e93cf51ef192f0f94b1ef26170dfe3852ff1b236c','bf5f0216fc4b636a21b10355d03b90fc629b18a399f3d4ab3ac557da22581d0833191924eb377280',0,'2024-03-07 18:12:47'),('2b8b96b06616dda0116287cb55cdb37f6aa9f3ccdffbb04fdf07e974a8d145d78d6bf17def62b426','7ba1c0d5627d177a43bb55493562156b9d694571c0ed0da50f5db3d74fbd52e7bb8ccee383b0af4a',0,'2024-09-10 01:14:26'),('2b9021987523192bb0e346509f9a003d4b044f2edca2b90f963259d76800abdbc55dc8e7725b59e7','d8ae13d1573480b025d62f61b480c30b1f8b15e1c479ca959793782649b07e5885d4b274a4f79834',0,'2024-05-25 20:35:48'),('2b97eea9f10edb3dd2cb98b91df4251091e558d09b89d17e2e651bbf8a9c34341bb7dd5851c788b7','11af18f38d2f3f3ba6c6ff29e9e6acb54f4a68f80eb9fd54533290a6202b971f00b84fe6c2e64ba8',0,'2024-07-16 10:06:45'),('2bb17eca0de2fcbc425bf0279ae343f5879a0be8077c3bfedcd6c55cc74decfef9b66625c334e774','40610a52f76347e406ba308efe1848ac4843cacc8bfc103f0da68d2930d5e58d10182630916c9d13',0,'2024-01-25 06:49:04'),('2bba9949fe16eed42e10794bc6bad575e04e2f08b0359261ee0bbac3407bd445276f811050f59d2b','7b880c2e6342eba48b31bf7241a826182cfc4ba823b3053f3eb83fc149f8c77a51bb67dda9e95a74',0,'2024-01-26 14:22:11'),('2bd1bb9416e24cb616e1a312f0766e1bd20f3ac15403519484f6e6f9cab718a5a83cabdd81e06165','1f6ae9a387edc8b563d84c387fd019778a87e255f3dc772de7669f279ab0e139b580c1ad3182cc58',0,'2024-02-29 21:24:54'),('2bea7675d3d01ab5a7991f5375bec02ee94b67aa47bd4dd37b0024956887240678a725e450807729','9596f81b115bef728994a4f08e8bce150663a5388c7999aedcb62cd1ecd3163404ea206e46394df6',0,'2024-08-18 08:03:20'),('2bfe14a823d0b0f3f4a6f06326d27b954c70cc75762202df031a03674d71ea734321c61b43b0da6c','8f3d97c50be1d3f874b7708f4a7dc13f9edcf1283c3cbbc770c22cd1743e0a8ded5ca9d9e6c12269',0,'2024-05-08 19:45:24'),('2c0b7dee113e3982e1e16e7e107860f4b89b71dd1be445cc1759c9a770ca5316ee06d0473fc59273','de1e40bda36464c5124146a7f37367017e9b0f50bfcbb2d86377f3815b8f5083bc27392a7eee9ca5',0,'2024-03-05 08:48:48'),('2c106f91028c42d7b53f7d609515e95cd83d0a3adc856c1a8109cbd409faac98acaa94caa6028953','b9f6673cba1cb3261437bc1dc240f44ce7d2430f193b66406455b114d4f5c8fc0914e25dde45197e',0,'2024-05-10 13:48:07'),('2c8b27aca73d2131f134d966a46c83e618003c9246d230b582244962364803dd45c9dc1af33992d6','f99894a7ccd5071355d882a622f211fad51f1602c8cf970f8b716fb0a801df21206972e71c634242',0,'2024-02-07 17:21:52'),('2c917028ae1efe01398d57174bdff8a370a6f4d7c14cda17b802ee08f3e384fa4215e3a603629136','f6a5481b8603695aeff6daaecf6b0f390a362000f3b49fa0e6cdce13f4d9963e57dab3328db5f663',0,'2024-03-28 17:36:26'),('2cb334e4da608ad992aa0f54990ae38b0fb601f92b3108231bdee55039f3e7dbf1c9888ad0e80906','ca500afad1690bd16ac4f8c3e0264c5111f03a590e66ff3b3029116b7efc0ac6203de7b783c7a242',0,'2024-04-17 16:06:08'),('2cf0c0132913f96dacaef06533d48e1ac3979535baf82306cad46c6479a628211d07bd780f3c9bb9','9f4dc5e79ca2f1747c17a009092fe2e485f2656d2b93fbfc0e0152e2fa0f6894f0c3e1dd8af81fc5',0,'2024-01-25 04:30:21'),('2cfb4fce5963b034ec55832a0ca524e29248ae6e69b35c863eb037a100dbf95714e5e75d0f24b1a1','dce45231041594a3034010e512d98f5719804e39b54057df3264525b36346b32b2c132ffcd3790fa',0,'2024-02-20 12:23:15'),('2d08c864e8ed7ba0536011c1f560909cf416ca2eb19d415e838694a8cec4c017a79c932a2489c003','7c26803e88616d4d02240c73c6541352d8a8561e5fa0bb72b599d1524defdf98baf8c251deb19947',0,'2024-03-03 16:24:05'),('2d35ca3b789665fd9d2d1d40ada52c6e840c916ac8cbf2e07e8d0c23788b11908e61a32388f8bef0','a436183f4f734d43152760099b53ae70dc3722f99f79920e14e715bfcdf0c10c80e1d718b09fb986',0,'2024-06-04 14:16:50'),('2d425d2c043b8ab7b524550d5c79372e83042a54f21041f3a6c82a4689c3de1268950ce69a91e828','94800a9c65928bc4fa0d6da75aedbc635e84fd5e86fb6a704f085519914922d60418baaad4793b98',0,'2024-07-14 20:38:07'),('2d43a1eb4f7323c484014259a9fe70b9d57fbec637dd665e7bab4bd953b4324e042693c552687d2b','a0ebe17c3e72809881bf592e823904157dbc0f33cb5dad20ff9e044bfa839c78d95d49c42aac51f3',0,'2024-06-22 18:11:16'),('2d487a5d15d226cd1917802d91869190664c46ceea0721a9e925417591a18bc359f4766880ead743','a789345b2e0b6891a81362d870cc33e0bf9ef1666da8f8991423317606af8c835accbae9b346d61c',0,'2024-06-05 21:59:02'),('2d5366dc512cd6ce6d14aa731f8b2892693121d2f3970b93b1759a91daabffb4a90113af2aff3786','c0cecccd99e4d00bc0233bd764895e25b67a1d04d9a10ab0ce3bf491ab9500f028a891885921c7cb',0,'2024-01-26 15:50:42'),('2d5b899e2d3e77631cb02ea99a22c22ca26d3ce49b68a494bd90376a7d11cb74964809b207ffb7c0','6d5181f980327d609218e4a2d460c6ee7b3308ff484afc8bcab63c05003bba6ad18ae4d04033fd6a',0,'2024-07-13 21:45:13'),('2d5c472ebb70ec5e5d4bfdea4878371fe87891c091ceb719cccb17b3a948095d239b62c5378fc296','3b4974c214b0787660339b1976bcdade25f6194d0b882c12e4eefd0b5430910bd3b9798dfade3dac',0,'2024-05-12 07:54:58'),('2d767cfb5dbdb0d80ea8b673d7bea83f2232c5e4a9e09c29abba29c77642825c7bbded868719a7a1','921182aab607ef3a7af3e2ee725f385f92965da96f167a5e8372f8f09c156e89a0169ebfd3e15112',0,'2024-09-21 11:22:38'),('2d77f469b2bbfaa79651dd717c714d7c83aa94e9ba67d71d759445435d7c9fdfe450116ad9b9474f','46d519c5dac9ea01e8281691afe832eeb3224ffc0004075efb631d01ed88c4929947401df6e5e41c',0,'2024-09-18 13:54:49'),('2dae0369560430826d895448d4d055349a42dd2afe525792e7b2813b64b31f042fd25a57f39c982d','3d9ad4f3a879490b417ce3fadab42ae56dbc27bfba9210c6e097b319224d0001459b9fa2771cce98',0,'2024-01-25 12:45:09'),('2daf43a7a6af07c56e5d5f2befa41847da905a8c2bee83785aff961577ab68ad541c1ed300140c1e','0c515ab2d28dc54d79ef4a3fdbbd63b256aba990ee6cf4c8d233d5202662d63c7984dfc9e75e83be',0,'2024-02-09 16:33:58'),('2db89dea6ad892dbad5cad814bca876117d5a1e971682af1b9d87ae0fe07e879ac99060ae737eb36','5ab271576c6c5ab3cac8a882aef42f4e2a02ec32521e325d62f297be60f0401fdd46cf62fb342f37',0,'2024-06-06 20:48:40'),('2dd6fc271f6bddbcee0f33a81c5bdf3983963368765b029167a9fc41bfdf2e480833685e4525d85d','db6e055c75f141c52d2e02b537af078762fc083357b3859847578daf45014876b55833544a34a98d',0,'2024-01-29 19:14:05'),('2e05d3710da8ed12c27786d5ea9bb72041581bc4eca4461e1677e585c5fb0cd05c79e8d886471edb','e066c98e14604219caee4225efda04f8fd6a80dc22fc11baf8e886c973e96d84e45aeb7c7e1648fb',0,'2024-01-25 13:24:03'),('2e08e54b9e5a3b92d3c8db00c4e61ae935a20f6ed0b7bea6100e9ca392dc2e550470951789d3bcb8','e75fd588a5be88b194267c06ebbcf178254e22163d6846cfb349e0e7c9d8633afa199f50a3d28068',0,'2024-01-31 10:40:19'),('2e28cff545e867e4ae39f69b2882410762037bab80bcf2ef58be00d2ccc56ab8c89f829bf51fe634','4c21778c7138929f156ae60e16a771812ac6c1866ad682715fc86324942caa22f4b16f4e16d7f1d8',0,'2024-05-10 18:48:33'),('2e29b2746376f709f41cd9d8bf9862c2a7c2f90b3992edfff3f2dd5e47d93c2d79d60f8fe9839a06','8c3b0517a7efcd563b60793b960c694ed94d329250dd9852e25cd4713fdb8ac6ff90a8a6f30ed46c',0,'2024-01-26 13:00:33'),('2e39531bb614afd0d8f9aab58e3327f6d952e1439aec87b4656081903515211eb16a461b55136e36','73953f01b1d9aa8a1a056f70daaab47535079622cb06e3d8d5a8322137e96391f1a86b2dbea75c9c',0,'2024-05-16 17:37:34'),('2e62650e5d476c33b69d9fc1ea8b33d27ec014585737302792f486c17b721f4a15145e653ddcb091','3572b6afbed93ab5b507e09f34ac1b17e83a4f275a540129dc8909a017a4794c50b08eccf2b39c23',0,'2024-02-17 17:23:46'),('2e66030034b62fd4ce3c04101eda40d90aa2700ed7791ac2e257d35cccd62acbc9bbbbfac96268c2','0acd915b440881f0209e3e6fd9a4473e09255ebf0042f489490a044dee0631c0a4070d36a5125090',0,'2024-06-14 15:17:40'),('2e68ead3244083a5023d437188b81c34d5f5f690426f64b68ab2c50ee54d8ddd39e5f861d1712184','a39cead7e02ba6c9f98b3170aaa676cf8cd25857ae8baa173b00a2509e4b5fb97926d1088efe9990',0,'2024-07-12 19:47:37'),('2e7e9098d7cc1beedafd878c024e9974898622cc439640a522b4b37e3de2d84874d8b72d069465cc','e5bea583dd257aeecec817248a58ebd3f9a38d4fa62eb378e924fb3c7c319edf34d0bbdedc98539d',0,'2024-03-11 21:04:45'),('2ea3af82c20701dfa438c4e7d20b3f5c3c7207402c99c084540a117dce80fe7ee14f0e488104d8cf','6c137de8e32d3f180a65da3245850bf079f70e8a5b1841e5a50c4afc19da4ea4608583ec53a9bc2a',0,'2024-09-03 13:30:26'),('2eb1dd21f056fdae6c43c0c0778da4fceb8946f15f20b5fc53947d9a2c363d28c5dfd14156a8eacb','5ab91c1007c1d09ea565d65753188d562cdacf5dd9e8ce923bdd9982e2e2cc6886b5480cbed85aa9',0,'2024-01-25 18:12:51'),('2eb47b4d18a02c904523c40f4a4a141ef73f76650a4691479cef8dedd941a082ad979adb6a088d1c','1feceec677d1820b373162b475b57a881c985f1cd2c804eb7c9ad75908edcdf830ac5a74ee047448',0,'2024-07-04 15:31:53'),('2ee0af977acea3487111059f8709767084f5948bbd49970163d7fd67e82a351ea7ba8bc87073338a','87f1d83a1b1d58e02b7c058f031a74f3215d10d6c0c89788a47b775888d012fb42102e916ac069a7',0,'2024-03-31 10:46:00'),('2eeba357609f4c6ddc6cb8057173cbcf42f4c12c0a279a17285af581a6480760eafcbba2d1d29893','69ee9a33df14f8c3616f465113f57ab5d3e76949de9d58526092290c13e5a723dc4221b7a617b15a',0,'2024-01-25 15:57:20'),('2f24ae1e2a044bb9b38c060894d823359a82eb73e6ea4db9ae8d73f4487471ed716265246286ae8d','63d4ec272a04ed236908738af07f805f7eaf50ede433f74beb56d650b7b1d82f67ed976540ea9f99',0,'2024-04-13 06:16:31'),('2f2d8cf5cf7bfc9d6ef824a3fac4781f4c972dc2dd9fcfff936891456e3c5c6a9580d9aa64f1d1db','7bf5c6fc7f3557c91ad0289cf588bafa141a57fd3b153160595b6d17e1371c2afd2db304e865e2e6',0,'2024-06-08 08:06:03'),('2f2fb165b98fc146169c144d6df1a00281d0e4d8d832ad867b6cd87cc3597692f8424ff7e8af9cba','ead01f51304631fe29443730986a792258d14b4285c03de018bfd15cf6f74d791982f8f309186e1f',0,'2024-03-28 13:20:42'),('2f3246d11bb2403120fefa4b3bea0433b0b275d7ec330d22fac04f88b5bea67d358737795358b16b','050a4534970f3f0fe11a49d3ce4bca34835e910b8454aa61c2fcc52d8d34edf3635eb7ab86d2c554',0,'2024-07-02 08:10:24'),('2f6d98db025d9aa3341933c9f4d59e74372096385ef9ba7460908f450a49a17b4690cde7c28bc92c','10b03bf28bf72d3ba3c00aa454d780902c60d9d11e720c2478734ec7205e059a7ff2af0af2d831ad',0,'2024-05-04 15:20:24'),('2f6ea3f4381bd14974d1c49450b63249d6db8589c69db1d68c79fff4a52866557b6750c47b001200','6ac5bcc6ff0cc01e601055a514e5e433102991316de36d58a2f73f3be534a48a535ef0b2d315c351',0,'2024-01-25 12:35:59'),('2f78daf6ea07b4cda4793abd9e00261b62647f3cfd980ef11fd763a6f88152c3d08f616808ea53df','ef5545653f09ac10f46710a32352cd98e9fdcdf188451d09ff98a09a87e71f7c56fb8f0ee7948a94',0,'2024-07-14 20:39:13'),('2f7f08e9ce89c4f6110dac384e04b435cff012fd7e57a89b8a294fda627b2c6466f74e4a4b2d437d','de9330d72fcbd895ca100ddaf97093943049f2d03322ac91bb8791a9a7d176c034e4d07e5362df43',0,'2024-02-01 22:12:35'),('2f834ecd7aead18dc5642ace9949ddfcc2aebe5bdfc7b4853d2032fc81061ad772f6b274102be680','008e870f12324ec43df8bed126aa7fc222dfec4d1f025e9c2c7ad509e50f102da849e239479db628',0,'2024-02-21 17:24:53'),('2fa8723ba6ffea35049e4f3b5c46273796d3e97a27e5af90c714c4e662c2a7f2ff02bd2ef2edc3b6','78905a19dd683db35a3444d8033f3a71b7174ea4b76bf5d3bf9e681e6fbf6555239d02fbc7ac702b',0,'2024-01-25 09:37:21'),('2fad8c2c89bdf3735886c823bbc522c49953b59bc6ab722639ed7c8629bec3b12d3d2105d91c3246','e30dd014a5c3ce7900972d42ade96374483ecb640a6e0e6c9c9a8e2b621a676f720c5f5b3ff606d4',0,'2024-06-22 17:17:13'),('2fb4c1c6e7dd347d11e8fef1fbd3fc9566fe7ee689b4c5e860576c5affa24a9a1f3f9705551ff47a','592a3e445663f064a5181c8a8c0c30d0aa2807e215be4a21232ea77ef3cfffd73a52ec9b08fa570d',0,'2024-01-26 09:41:12'),('2fbfb2eccd04f3ed6b9c826e092c7597cc29f3f21027e87b80c3a94199a73d5f2937e5be832fce35','21cdcd2921fbe54c66b3faef49dc607c10234820753aae62bc3661d9b03ae5883471a9bdeb91de02',0,'2024-09-07 10:42:03'),('2fdcfb650ba7c0754f924435df2aa6d6b470e68fef3882bf012fb345ddfe1a57c98a989009f6352a','4a78d9fdee7b48ccb7478511603ba223357bf83d4699169e55dd04333cda001b088d7f7da888ada0',0,'2024-01-25 08:41:09'),('2fe32167013f5c0b0894615bdf2c5246d71a1d6a17daf5517cad5bcc203ed9111bb611d4671f4973','7e685fe6c7cd0cd55e9dde04ce2e00adfee2c778c75fa62c8873d0bd9b0f8bad4c7e0fd28e6de477',0,'2024-07-01 12:02:45'),('2fed9c523a739967ddca6fe680d1c448f09a63f7698ae3041ed29bfeb6c9aac8e4179a05c2b690db','479cc90d076d5602d9b788b9567c4e86184efdd755d9de7423cc09027319a5909a6194fc5e1f714c',0,'2024-01-25 14:13:03'),('300548b0bf722d040f3f032ba144685230ae06713b0fe475ce6a3d6214ad97d9c0fc9597ae204bb1','a1f7f9fadacbab63f0d41c826f2b13ff0506f099020bd263ea78b7b8a3d605e3dc3609aef15cf674',0,'2024-03-23 13:27:16'),('300625990a7458710be80dc097e70c6db104018bfe5786594f374036d5154f056c7436790a888845','5d21297561fe9ed221671024090fcee0c6d5ec48cdd491731fc700351a9213dd6f5bb01d91b47b74',0,'2024-01-27 13:39:14'),('300a8d2f7593b5c22422a24107c1f86d257a200cd9af6abaeff0c34b0ba695428563b66b344cf45b','7346f282bd36e2e368ccff8a945a38e044f9d368c5db44981d8a276bb3bbb6e8fbfdf264a7fa3eb3',0,'2024-04-09 17:27:54'),('301fd72b20950dc231cac63db6aabbc10229a6076188c5bb05e168b810255cdae89a744706d491c8','d76feda17264cf98c520c26e6791737103c05a2c2c1dc2820d810720fdcd60e7b41f2d3d0d14c8d8',0,'2024-01-28 16:00:11'),('302640a923b714ff06bd75ddb79de6cdb14e3ff2125471ec092785305917fe53031c78ad02ba0f53','72e27eaabc39a9fb8945514b42711e04f4bd930b11cd00f21ec900204e0f8b79c534ef5adc5ab751',0,'2024-06-19 11:53:26'),('303776ef167189aac11aca175a4d4d9ab13d17f1dc6655b5dec014887fe5b319708941d673ffd80a','3d3fe8579d324fefb5121fc4c6907fe9bde0d7eb99d2f80a0f9c7092e159a9cfece245858a68b684',0,'2024-01-25 06:14:07'),('3046d751b60d59cdf4e54f9dcac85639ad12f2d3ca224d7f30d58422f65403160e0b3156d74ad580','1de80dc74853b1a16c5e66d14f76816ddd4c855746e18e1a5bd80b260da80ea173996821cbf1aa06',0,'2024-10-02 14:13:28'),('307fe3221ea6bdcea622f2c0c072911521f27b22f2d8c129a05aaa23c60c701195b9a4203b7d06fd','af63b16956bf2737d0b7a2f3f354c61b15121da0843701b486721b1665578e52ada7bcd4e985fce7',0,'2024-03-28 20:11:00'),('3080df23517020d43d24e5a53523966f49fcf43cd583cc1a8e0296a5443fb8709e2aaacb51d4bb40','962f962a88a16aa20b5640fbc53fd9f269aba2526c12a3dbaa2cacd3c7757aaedc19e7723787fa6b',0,'2024-07-21 10:53:41'),('30833165631dde8513a2e9946300c3b8c139166e270c9c0efbb53cf48b3d8b9e8252b9ae90f763d2','040535543836dad5f46757ffb2d27e4b4be6ef7f56fc7fd393ca2032b8a6674523bcd5dc07fa415a',0,'2024-02-21 19:27:31'),('3088bf1cc29b926a42dc8db696d52f089e360071b00b8f9d652e55e7b5f8d7d588b5042bdeba2991','90db3b2c751d860f09996f53e9deab366c13563aab940649a2122929e31ed79797f25c2b0ed8f93d',0,'2024-08-07 09:15:30'),('308cb57609bd089004bd8f975a8d1188787ff3f5ffeb56e193e1e20c4d73e40e4be4b60621c2cec5','39df07772bbcc41d3e63678012cd1f785a21af04d112fd0352937f7a09fe3a3c6949e3343fc8bbcc',0,'2024-01-25 14:06:24'),('308eda1c73308765bf6679fb577706af37ee879f4bac9dbacd944d8659c90d4115a04e93dca7bccd','64259fac90de22929037f425879562f4dd90cc9ad7c14403e8dd5e484935c6f9d6d698f7f1c14745',0,'2024-07-29 22:56:59'),('30942f063d8a00ef2dfaa52c72d087397de73d67b63d82aa47462398b149584288e5d7fbbc88d4e5','be59692a81e6ea6039124f66b31b87a838ea843c3ffcc2eb5a592bdb9620a30135189aebe7f8fd7a',0,'2024-06-19 20:09:04'),('309aa8e66803c083e3af3b549fb2828ebad08b938a70cefa8394ba4b72d134290e1b6888b765f34d','ea98fa0b2b18fe5a54c8ae30bc4875f4af586d261bca8c6c558ac6e3a5d6e4fde008e4e2dcd6601c',0,'2024-05-27 12:53:18'),('30b7619ca6cd81fa530edf31401879e0205f7e0b9fbbdbbabc3ee7b940418aeb1364c8b5eae64b06','1ac1cfe985aac2f78dcdc009f9d186150b8d031f9debe37bc67dd57752d6abec4c76f8355674d83c',0,'2024-02-20 15:49:42'),('30be49eba010cddef58c347a5072734031356933b53b8e29cf3abdfdf8fa97db4e5aaf5655a04fcb','56afd52cc0183d6fc8e1c6b48ce053734b7f4049363148594886587ffa7ffe587309abd9d38f4b8d',0,'2024-06-29 13:23:11'),('30c3b88b36742ff94723e31a8a985022fe4b2d6f1d5312462eeb9559c8e797651b688f898c0d8851','2654591e6f30cc52c374838b513cda0205726c624568aa4a4008b798b00b19e7e40efd2095854132',0,'2024-06-06 09:05:56'),('30d21c9f990ba3214df1c10c996598a431df683b80f6657fba7d8a40388fe96da3d3414389395ef4','e163816fb90ebc93bc41ebb23961d00d77b6d7a8945577b1b72fb9eba99e7cdb22dd65fbefd6a1aa',0,'2024-07-09 22:10:19'),('30d4e1953dd71f202b6b7d73271a8d2833c8fa87126e2983f55ea254dc7e4a77f7e057eae9f5abae','b0e6cf79614f7dc9b383361331275ebd36e3336caa0df080ff1be2a353607449f5fd702dd698c39e',0,'2024-04-11 17:06:46'),('30dd2f4c3670bbde522ccca5002ce44e6a39397ceac869acf9783f5a193ba1b16d0ef1ee80600148','f067d347c0414c10c08a4de83a55721550f9f6cb3600b9210565d6210335bda81611ecb7927ee042',0,'2024-02-16 12:41:06'),('30f4d0b1db6fcd418e8cfcf812613baa1cb5d0ac9ba8e821d9fadeec42b8dd52ef4429e792d60ed2','974f6541f7fca88ba5dacc7c759b1914729c33fec61866e6e9497bfbf33ba1413112a33c36acbf17',0,'2024-08-25 17:53:04'),('310c368735b60adebeb6eb1fcc4af91bf0fc4558c20a8980e612177bba0a3d846052b6eb5c88ddea','9b0b39b6ce09a3a34fe9cc9ea2e58d50eb8028059957707ef4dc5f0e8970401adadee6c4891f9f65',0,'2024-05-26 10:20:01'),('311576b420ad46b39fa3906d5e5aae78f496342e58f96f6d11e3229a3c67195ef930c5a42a59013a','1f8944d829e3ae1c43325c38bdca886f79922b0cbc66e3c0b621b12922884af04e482e620732cfd8',0,'2024-08-14 14:50:19'),('3128f822e9f0156c596a9387eb718840a204878953ee3ff5dd4d67e6d8acfd16b0f4acfba02964a5','b8a5dfdbfd80c3f23d3597d9951a3f236692cb24c68e9c3f58793848cf50f95d5ac8cf2b5c79f1b1',0,'2024-07-24 05:05:22'),('313fd5e6c5da6728d6d031f868ef509cc34bb6caf2af094dee63555149810fc05be2cdd7b2b7c25a','de20803d2da26085ad1e79f672f1cd4e85b88ccad41df9be575b02a190da9a55b48eff9293d41918',0,'2024-09-03 13:29:04'),('3145383f8ad1ea080e4536600283c1197092f0f7c849bbfcdac741ec7a2fd54444d402b9cd72e374','6552da70784e99399cac0625ce17813d06203fc68e5246f2addf6f6ce3f82dea4f85048eea4a3cf3',0,'2024-04-20 08:24:17'),('314f8a878df884960d30b823c75cc2cb01eea68fc59cec28406f59fdf53a6cb292c7b9ff430eedc4','8a7df3b0e9ecf4b18df1cdec31cb38e2e4f2f3555e553e7e213b1de797500bd369566230d8115d3f',0,'2024-09-08 22:47:49'),('315172c81c4e0326f96143474e0e064f11596b5434f8ad1b0c6989e5ce4935758fd007d453663f17','44dcb8279296c68b6ad747ebb90a9ec1411521f1d5dda1efabd6e5735a994bf635ca226eed3f42c5',0,'2024-01-30 15:57:12'),('31aac9bfdf3f1f716d20a2129aa9d5d5ee2fe05b4d98dbeee7e6ea1ad8bca6ad1cee20a774caeb84','de139e221d4977b70dbee4c0825cc2958555cf9faa6c438315bb07d467ea99451570176efb6d8383',0,'2024-01-25 09:29:04'),('31aeb76291c633f2f4891acb3fe298d2bdb8041d6da50b8ea276aec9d256be2b9f22ef6b6a4c1de6','bc6e274f8557f55b04e9f6c6ef1dfb5b88dd0340eabb1fe74580d0ef302eb095c34f65c7925d441d',0,'2024-09-20 17:55:02'),('31c04da45aeb941731822c0d0291c15aa6628a3bb61fa65c00df9983ed9ee3d4c96a521a017c5bf0','a3dedac472bafec5100e5e9c81e8f270e515b431bfbcaa95bd513a4c256555210a17e85900f12972',0,'2024-03-06 11:12:38'),('31e2ed65180b2f96efedb21bcaa6ce761f54b23327621491e5f6eeedfeaafd07c0cbddcb903332ad','61c3d4e0f7b8cd82857a835d1757c9e0480c1ce6c8554558aed3a4b0e32fcc78f31d3ae3df09d0a7',0,'2024-05-11 10:26:39'),('31ec8444286b8e4427f19d585d9e14cd8f9b225dad0a83bf672d519a237a15555171fa64f2cfb6f3','30a0380429606a5b8c622b9a80440138e54a13cb7adbd522f5a1be2b1713ec04f5976c3ee12b819d',0,'2024-01-24 23:58:18'),('3211a69ab3b00143f885730794ef5979b671e551f9e6132b02c8e942976a818aff079ade3307e5ed','d606d8edd4a805095902138ab9772f80bfae1daf1f6cb69507a65702784b8eacd044c2bb78c7b561',0,'2024-03-12 20:10:14'),('3219e4cd7544fdf1cc2b5a42bce1b3d20aed33510de245352624b281877b7cd329c3a203d995ee43','b5c8459666de7cbf938e21b19dc048237fd0473e68f765913e3fb29df9e7cbb902a0121982fea2af',0,'2024-09-28 19:54:54'),('32263d418369f2b48413c23dcea3979cb24732f19e2f1401712cdf73e6bd89f7804783de0a4d559b','f515f8f2084e0749db2baaf2f5f9066f54f2f62a76404f7f188d6bd26b8035fb481b66d1854b7a24',0,'2024-07-10 05:46:00'),('324437cbb0fdfef9ba0917f2f433fdb79c971ecdbf7a58d7db8ac5165657631d8dee2dd765af3474','30a130792b24d90ab1d1540d779221d3182b5da18b1a84f0c876ed2c426fb55ad2d03cd72779c700',0,'2024-02-20 18:50:13'),('324fe5b39f57a372d58afb6722e94ecc6653f1b79c6cd50a07794fe16692f4aef24ca8d2c1111a2c','6a4784405c30aebe34d73ec6b18517a451e850204eb31a7bb7d3b5549cd39d4331907de366db376e',0,'2024-09-12 21:43:31'),('325cebc9c86c77c5627707b7c64ffedf4d5fc33ba3e6d369cc992b79f69bf0c06db6a91581fead85','8b55ff0864a56659b2c4cf016680bf4a6fcabcb497b8129165a06180185dd27f9b2f3371b309946a',0,'2024-02-18 11:05:00'),('328ac0e46e759f22cedf8a8dac572bfca46d76e4a0a5e3478f045ad2eebae495411b7e2fd764247d','49fa28b8ff5b8eb565d1239d323ae280abdd6d105378e10718d235e9064d57e5ee53d2ef1f8c4f08',0,'2024-02-28 14:39:38'),('32941ef1562bef29b79ee152dd4bdfbe845821b87a581b45a8bcff7e396a8e97188e824bff163ab7','bd29dcb2775a08cf717fe744ca6d019d4715c426c4d99bc2de5bd4c65a34dbd9adb5b234ede86d57',0,'2024-09-30 10:35:11'),('32a5f6b7c61e7abf3b0cd974134e94c18b8216f3df547ca656ac569f45e2b0220e577dfaebff862f','1acc1bcd08416b310455a2e4b31515ca2e29c55825662b1d7308edadd624d023ae76548accfb3277',0,'2024-08-20 19:14:49'),('32a948ea32f2cceae05c593c449cad907bd5eedd90e85935819a5919b0e5f45c521aaf18b3fabbe2','fdc253d89fe112fce8ce0952cdeb4cb53767c0bfa9bf4aac2209a616d931dc9b68cfe79c2080ebb5',0,'2024-09-13 13:57:19'),('32af82b11f56fba4396a31a214294c49b68fa730d441f41d76ccdc5c142302ca19652273a798cdc8','c2c0777a3397cc2024e58cf7c01e9fdd1a09962298c4bbaf796432fcdea126571dae7d51aae51ba9',0,'2024-09-01 18:14:34'),('32b1020675e1a37524f7cd48ea4e679e2e67e1a6d11c455765fd6da583fd1010e7c51be1c5eb2523','99eed08553c77307cfa2d0b6204bc506c42603f29f9979e057585722f41583454784e995685cf8f6',0,'2024-09-19 19:01:20'),('32c1d767a038791314e69eb23145b3d48338c22b9eac08f6c19668892dcc66bc303a3b2dd51f7067','797c7225152f6a10f67f4d8ef43367b7ef309ab744c946dd7824e76a915865649cdc4daac8af9a3e',0,'2024-02-21 16:08:06'),('32ccb2c5d2e37b4fa3db520edbfb130395ee7d679eb1c5daafd87eee1c9292418b8fa7466c8528a4','f5019ebb22da797bcc088d20959333771c09ca33ebc9a1bb664dcfab524a6dc42d0cb1de32250c6c',0,'2024-02-15 12:02:38'),('32cf6bacce4d79086582dc90e25acfea35bb8942701c525e731db5a1f490b355b78c4ccc1b3f5eee','26fc9f9298f5934b370357bfda43049ff83eff171261d42b397c3df3f0576236f6a925a563afbb5f',0,'2024-09-19 14:06:22'),('32f11f4b26fdc9eab6141f690a85a7cbe578591f0d9bc9050c4c4a8e1dd68c54e51b56b3a22607a6','5cf816bcf8c3e4305ab77ba11fe6c6a8d51cc5b9c175d014eef3dca4fd86b7d5d4fd50828fc3ffd4',0,'2024-08-05 07:26:32'),('3329908cc649ab78a44a51f29692d264f3fcecc322493208a5375fec43c007dccddc5a97730ec968','1912f1df7bee1738ff3666d0e4ecf92dde6f30bbd1bc6a6ad2c73e3862cb253a328b686b44cbf4b7',0,'2024-08-06 10:22:08'),('3333254b871dc518afa296bd5862766bc8258f06b6f236680e89e5cfc5fe2fa450c356504af2dc69','27f08fa306dc51815fe978aa160ae850cb175fbaa4840fa8207350f6240578ab705bb2425a7c5506',0,'2024-01-25 13:25:01'),('335716ab03d771699f724ce7c78942908e487218f1d6ddcd67d616e0bfb9608f694b7f9c6aa33d6e','3e730d807f3287adad4124bc51da48163cc000b6a3734c77c45c1d2ba0a2e4f8cea82312aa97505a',0,'2024-05-18 20:18:03'),('33688321cac97f4d16a79abd91b5c1dccb0194754c9b85db4c669bb64070244501e0220e046594c6','7bddc989c09e224531898076a811f8f80ffe6a68b689b9a2bb05215423f231b2f8b09eceb86fec4b',0,'2024-05-22 16:56:16'),('336946aed926067a0f16bf5447e121fc34561c835f4feaeeba35c3e059ce75ab2b8a35a79dbb22e2','b4d0968c05cfa934d46b3ec409542f0afa950efbc63019884451ad771ec1b1022ee77673c877b8b0',0,'2024-03-17 23:09:01'),('336c6b515ae85a54c6ebdedb9a99da623ef305a1438b62a30c598e72e342b071c032f148bb887487','ac03f7e25b45aa2d82931b717bcd4341daed7a6b83b6b9d8311900222a6cd59557c839e7961b9c0a',0,'2024-03-25 15:10:52'),('336f8e64b4140230594530fc522e2ac4e4372293df2d2fc8794de02901de649dfdf0ce155a605db7','d23c33685a3d5cf7d1e25396968750bb0acf23303fdff94d8ae7e07146014d5cac10ee63c44ff90f',0,'2024-07-28 11:26:28'),('33929827c42940ae8e1b73dbde55c5c9ad9bcf4698a15b95c31d16df535cd52f8d1ed2d2c093f1ba','5bf521583d5bb5116fa7c2bc57141904fe7ae74acdd6bcb8fb22631f7de57f399046edc82ea517fe',0,'2024-08-20 02:57:42'),('339e078e25149e75ec219182d7ea8f120060f7f19b7f97efd501f40464cb96e0c6ca591a2fa2f307','3593f05be79e1b4ac67e0a08c4e08b7c6343192a7016bdc2e57db3b0be31056b30128eeaafa21044',0,'2024-03-01 15:09:19'),('33b6991b32682f77172d047918089ca57b3cfe1fd72e01b09385e2be913ff6122de5f4c643009a62','456d3f09a997fb8cf74f9ade4bff0af295fd1445dfe3a4f9c747b3c96edd14f8dc4b0bb3cf640cfc',0,'2024-06-11 14:50:56'),('33d41cac535b498b9e89e813589e0e321ef71c960ebe7403dcb1dcd84304ac2c998e9ab00efdda90','447c8d8b0305885c1cda66a6783b56b51ecb312409435767c18c2bb34b7870b87fb7de5d600f0c91',0,'2024-02-17 15:18:28'),('33e5bab8e3e1cc1df4ca7ff309308e57780919d5c1a10e3441049c1169a7e3e6cb21dfac2b9bcad9','6b3fd36fa21d7842808dfca58341972202a161eb15bbe6862b3d53daa0c8ade34b8fcf325536b37b',0,'2024-04-02 19:02:00'),('33ec0265169ef73a53ce50e644a201da340c9f06c4e020585ca6511bd3fc60963a8528734c84d6cd','abf728a8b122e1c202ae359b973c4c91f7e3b9b93b1434c89d5f7f62b90d19a7af8847796214f604',0,'2024-07-24 15:23:28'),('340f3acfd0ca0e38d35e70eaa08debe12e5de91246486411cd99369d36f983d70d0a1c2e43393c89','5363cc29aeda7522670c1839e743f20a5b37a5859c29a2596f1c4d58ce9e0fc970bc24c896defd5a',0,'2024-02-23 18:15:47'),('341043a7b10787853b3a167c9d675e4604771bcfba71f2878a92673a744718104fc7c0b94ee660e5','ce75dd90ed1cf13afe68ac64f625734b01948c654990901d89ab043c259e57ce5a214cae43248fab',0,'2024-01-25 08:04:46'),('3414ed0c673fe9b12109724f21278d1c9589724a1aa9be012756319b1f1b648ba76912808bf83cc1','f83ab9eb26538718b9a16661b135a58c9d70f370280ed8478ed67e73adfd2287b710b416f677ea61',0,'2024-02-09 18:36:23'),('3423c010cb1fd509125cdc8581b86f6dc0d93ea47e18f15868466f4b615f74ecb311f65f57799900','71f8fa121bce17e77d653be703f3f94f102ab29defda68904691d0ab44ffdd654d57aee3130856bd',0,'2024-03-16 13:43:12'),('342f68fdac21e27319519e1ee0d8d733a06c976c48cdddba39e80b0c6d57cd4b0ab40d453d3baf5b','2adaf0da6fce30936cb14c8cac8318b36567f87aebda4816220ea08635b3225ea155f4da7feccb1d',0,'2024-09-10 13:06:05'),('3432a5592084eb8fb084a9a3b8ec0f15f928153db9b67bcd84cd049e9c6e866bccd183b8970aa4ef','0bdbff46b7bb84713fdd6d8885571bcfa3e5ef9da12cdbaaf8c50e2c3455b12bb7a1f25c7e0e446f',0,'2024-09-29 17:15:38'),('345b9bce60b9b18e0b722c6976a8edc7fc6814dc3d569cd8fc70f554b838b40813ddd8186a46240f','2e333036a9e5a5baa8d3c478571cb8348b5a06e0a0e209c68473de4d786ffded2071e54c8e916fbb',0,'2024-07-21 10:53:37'),('34642201c6e6a187b2f1b589eb4ebe8a8da68213c280a044a623379e282386928b6d327fe8b86a7c','1cb9fc062893679cee1d7d08a69957bc4c803b9b2c0e4905ef6787ff2619f51cca2ad708d847fdfc',0,'2024-10-05 08:57:50'),('34677b866b288ff6bf7bc8ccf88b668c50da69ae5ff2aa5cc31d01438202242069e66e68802721f8','77706328477e24594c0c4ede561871bfa99e98bb6e8f557b98f1a4686a4d2cc4dec36f5786818c3e',0,'2024-09-03 20:28:35'),('3479561f734eaee0efcca4808fabd0334ea4f02062332955c5f1c1ec885cb4292b603382bf5010ce','1236decefafa09f4ec5798787555c457907c13d6f5dfe1fbe2325acf24a1138e0663674c26e16872',0,'2024-02-20 20:05:27'),('34b6fae5ac936b243743ebb1d7ded490d230a29f3232a2d985535bf1c0657d75e4d2ed57b2d52011','0a217e8f61a16e28014f627092d7fc70f6a41c555ab9ec509c107631250562f4aff4e13d776bcd66',0,'2024-06-25 19:42:24'),('34b8f3dccd9252b25c7fe71473ed6f167eaff864e2e5f7c3442c41ee40076500d09153731161f937','9fb7f2095e4fe761c26dde6a44b8974b4e164cd134e054c3bce0553a0c32ae094289156e134856ec',0,'2024-10-04 15:54:09'),('34ba3c9788982357905d384dc88cc797378807ef50a6f73e8f37aa657ecc9a73acf3ce3663efcb8e','933d6c177b8ef07a25caa14f8db7e346e74fb2b3e40b3096306ea7b2421fb09ee256139e6f794924',0,'2024-09-09 11:02:35'),('34cf4cf63c82254c41ae3ce2b1d97b5026137acaf7879fde3223d4561bca4fdf9fe0525cd2626549','3499c9b7630391b7e4fdd226b46b1aba438e87c7517ddf1852b9e828fa7a6788a176754fe1c731f6',0,'2024-09-28 14:10:50'),('34f6a1c3e57ec4fd79115549d156a58b22b65cfe1a62a1e4f71829723e89e77c076149000ba1f064','9bfbbb66d2330876f702e6ecac9460258cc9a6145a3fa00cff05eb11beb05f23fc993e8b6894d53c',0,'2024-02-22 16:19:13'),('350c8c14791d7926be3386970d9e3dfaea71c29038347be06779d9feb07e5b858a8d4a26329d7567','848bf50126dc1954d0a5f5349484d490f3dccf8ecfdbba0da826759ef1e33853abc8170656534c46',0,'2024-10-02 16:00:14'),('3514228797b86c7f8eed287c49011ed366a7bdbbded67e3b5cf235c737675ae3c992446f262092fa','27df53d584b6351fdcc6440af642f8a4898c76bc7d392697ffec9a14747087403706cb0ca4426619',0,'2024-02-09 11:38:27'),('352547b99072eeab255f2498cea816e3cc5ed452436088abf3c8ba35067ddb7b89babb7d192a24dc','ef108a3256171c38796b892b8cf6fffaf2e47962d85387bfe8d7445a3b2979458089047a2fde0ca0',0,'2024-02-08 23:37:02'),('352a0afc079074c2ad01da101823d445429e57144243c9cd8f105bbf5627dee8b237deb093e3c762','aed9946bf670f571c025b1993ec3d17bc5fb801f18865f5463d0fd878d5ea4917934b00e4fdb3a1d',0,'2024-01-27 20:31:41'),('352bb7a5020cc4a213c45b7931676784a159d83583f8ba95d09f150cfa7b5c436b5cf69c4496c179','f334ea1a72ceb93ea969b800d382b90aa5707f372906e7bc2fcb501f7a3ab96fc3990a99b864ae0a',0,'2024-02-17 14:16:43'),('354380813ea47b986a2107ef6e57b384a18ec2af4f9cf0047cb0a1bf5671453a95d5909e63420445','7b356827adc935c2c9bd70a0710227786421f85f06d005d3dd4ce936e5ccdbcc95f99f853c7f6577',0,'2024-07-10 21:20:00'),('35763b9afab8b4908d10cbf65129b2cd1e23990af695f5d3cd84c17cebc051b42ce2eeeb777b1b3f','fdf130386d1288b0dfc0342bfdfdd481539825c32eb57c1eaf2549b9455cd473379ddf0b3ec79bae',0,'2024-01-25 15:39:28'),('3577bf62edb87333e815563229fb165ceff8f84de768165da1ae4b06d8bda1f12aebf1beb3453bde','ef318be5a746488331b8645907fe7dcf60be23897fc78995d5f56b5ce94ee0a1a70b93bc86f1ff48',0,'2024-02-22 11:58:35'),('357cfa9f45783331abde7ce59956aba0ec5f41d38b02779afcd530a7b4aeefeb751a38b3bb66f7c3','045762ee2716d7496ec7fb8e67e2fb8ed23981772417ede1c1eb5af9cfa3016f3d6d3985a3b8ddcb',0,'2024-05-16 13:02:46'),('3591a45d33dc4eb6e53e8b31230bdab0b6e4fa758857aa07684516be37af2f20dfff93d3ea18a0a1','1fe3542cbb84c35004df21912e7010a711f9d9a1347cb4a330f7c80eda2334a16119f1248da33f66',0,'2024-09-14 19:43:45'),('3592d8f46c03cbc605e43c03ef497cbfc51ff9d9f7a93c4f167a10a2c1d6f581fa94f56daa19db70','0456f22633e1b323d89cc27cad72f5f1e534aef07c5e7d78eacb6190c71b91f85690eb1cc433a046',0,'2024-02-26 13:54:51'),('35a1dac1b9d820a6ace453219729041648314bf26f26eda9a9e56906b8fdd933313d5cd5e21acfc8','5cc2d1b46234d3c67518f978e98da81d9bcb13bf3d76c05aba7d6daf0efcec3e5c3cdc8c3726ebb7',0,'2024-02-20 20:42:46'),('35bd05187eee92add20ea963bf12f0b78f1b40d887d0db55b7e446b02c3daf897fa98a78c476eb8b','fe1a4910ac80c0587f8f908cf3c535b86026bdf9c658c1a39a45bd01697ef762dc19fc67a76c5ea0',0,'2024-07-16 19:17:32'),('35c40f7b56320c2d92daa06868ff9540ac0c4dde046981157b16306bc36d9ebf168f59a27ca4bc52','e5d149ef914094ab566bfe5e1468cb4f2b99d1847b550216b82924a7c170c6eda024599590caf964',0,'2024-09-01 09:59:30'),('35c497d55690f787d6ee063f8cb789824145a74248272dd69482444db26fe7a91d3eaf1ee437aadb','4736c492b6538b1a2f0d7e4e8e5d407093ae0aa07988001b110d8c6d310306258271e8e15ddbd47a',0,'2024-08-10 13:49:09'),('35dc1e90aeebb01e16f02020503c1c40e51b23bf3ad2777006262f3956fe4840c1701de15bed88c3','ec317f6dd0b66b8530fe93781b433fbec7f39542061b5b6944d8971716762ccbf1bafac748869497',0,'2024-09-30 12:05:13'),('35e8a8b994449e1990b785eaa62405a82b224a402ee441a70230d42a0ba9eec11ed0d143e699ce1a','a8c660b1ad59187229bce5ef5350a482eadd805262334652facdcfa616eb5842536ba9d0ac18b61a',0,'2024-01-27 11:19:01'),('35eead93420d8cf822af28fc9677fe98cbd5970fc4f841b535a8c4df8bd37553713d987c394dfebf','fa01b024b4e901405655576db15134da2a0a70b82a3c5f9d3e633d75c0d94b8b257b54912b6bd26f',0,'2024-09-26 15:52:38'),('35f27251b1a9630e45c26daa27c8453b9ef9e41678d68a5f9a3b17700af569a848a8bbe2452ea1f1','835903c584187121b34cc31ab7a7616938093ed498ca497f4ea2c545391d092f025c76c556f6e9be',0,'2024-01-25 08:08:41'),('36055487ec4bcc42552053097facf62a74b77929fa2a2b6fd0a3f69dc11773a6a647de6e298bfe3a','4cfbacd763fdca20954e19a51a1ed589cb51d80e8b397cbbe5fd01aebfc3facb5ee77d45f005cfc4',0,'2024-09-15 11:10:34'),('361a73975dee79b72c895347bf8157965d74fb6d9bd5c13365cdf18181192183880d9fbfd31c5cc0','648a434ce51f189e398108681b1d83222abbdd7c19d1b825e1f8a29621b92522d414f1cbb0deb450',0,'2024-03-06 16:05:09'),('3621dff80b7a2fb294f9849988ce1c50bfdfab2d9711e8b63b54c07fe81e0ef8642b2d3c981672a0','beabf75b573ac42dc586312252cf6126a68484ef5b3713f562bc17c971f2ab676bb17a4d92f98fe9',0,'2024-04-29 10:19:46'),('362f91fcd6bc1a0de6efe998725dd1dd0a739d3c587a85dd5a83aede55fe15638d5550acf8a8b50f','596b55a9863f8a688d9a3c79f91514c4884cbae7e82449373286b164a934034c6217571cdacd414f',0,'2024-02-20 19:22:50'),('36408a126acbc9d5ab07d3605c6bf30c74858f20ba9cf71290a8e449113494851d9073022c2fbfde','6c1db07c94cd952fcfc8113912c4bfbd42fa764dd92e37f5ee5bfde20b33e7ee7cb946f53cc462ad',0,'2024-08-27 08:04:01'),('3649819dee14353b7be2ee2781d3615ff532e78b843725c77687adee6438dfc62a648ca4c6ea4f49','0fcea94cdc014ffb7e1ab214b2b7ea3d5ab9f5a5ab945ea4771b96170c5112529d94e60f27c2f39d',0,'2024-06-15 21:54:48'),('364ec776e763735f29945fec1dbc105989140f2b40cef5399eede7fcc815ace0635674c0c3a68252','1a9a7bf0368f703af1f602aecae79b84bf3e9d30e86209fec27108425157041a56edba55dc8a9cfe',0,'2024-07-25 09:40:36'),('3660136e12f0283f5f6b215b24de94287d7fd9c703ab40777d14b42d6e1dc1d13fd856cfae8349f5','4fcdb55b690b0e239288646fbc6368ff02a5072ef1343f689bbdba016d54fcde5788206e616ccf2c',0,'2024-02-29 08:54:11'),('36607749c0c613e26a0a7bfd77b0a6f27362fa35597970fe88bdcf58ce9876b0e597d050eb10bf82','9ec4af9f71e23b4b38e609c59c6e4f05c17d17234e06c8be8e26de87185d4f6ecfedcb51f6a51ffa',0,'2024-07-06 22:27:39'),('366911e069ce46621353219d0a3622eac70a47a37877f27f39dffb6ec3defb0feabe220bfa521dc4','2041e44cbc9a21f9c9150e556fecf8c0cdabf36456d03cc0d48a7eb50c6c781f1f9a287b20deada5',0,'2024-03-03 12:19:26'),('366b1bba3d6970e3b1be9d374657788b5d850fcf7763c82b6e31d9d87da3229e09b682232d516228','dca28a7456d866e333b7b78438d9e6e6d3687e86bb2e035f78df6f9a1605d950d98a19f98af22573',0,'2024-01-30 08:47:45'),('3670639979074ab9c6b574d0c37d3849ff9661afbefe72118ec5bfb44052d8402c3245ba5aefb933','c998d08585c10f86f3714d6125138e2eddf7d279f44590bf49d93c009aca7478aab44f601939d527',0,'2024-05-16 12:23:10'),('367f2106ab55a125618aeb1ca6b28a1117647501dbbce80173f13b6ff3353fd38e0806eddc3582f6','92fc4936a6833606b48a4708bb018cff8a2efc3e8fd071c7392bda7d08340c237b85fa910cfb8396',0,'2024-04-14 21:44:40'),('368e9f5127ce43c0e03cad543def97c0c9b35a0c44cd229abf2f1459d4755e2bc14da3c5067502e3','959d295000bed417771e57d1339b10528cecb5dd37c062a472589adc1d568974a12fc708117ad22b',0,'2024-08-12 12:24:53'),('3699bf1c1ef89edb9f7cfb20650141b3a3be188c97393b9cb5afb1660dbc54e994b4fa1511cbf259','243058fe976525574db20ac018d9e7b05a965ed8dadc83f70cbfbb8b053e53a6913a799c56acdf8d',0,'2024-07-16 09:30:10'),('36a1653647d4a80d53dbea7755f7ab33dd4f7c1086be840f1d09aaaa8f68ba9426969f9f368593ac','377748c6027d07f648f7c21f010ee39014b3cf619fb37db6725a978b7defc0cd3a4ffa5f33af07d2',0,'2024-10-05 23:53:28'),('36b2a1297d8bd1474eb127027d9a7760f6f82d360b098d432f4f543a7a3136cd1fca7311cbde213a','a5bdea5b88b35deec4630271c532992c8376bb70801add26650f1f7bd7017d7f86d25e410ab4cc18',0,'2024-08-16 10:21:53'),('36d446ab1bd97c82ed6069f826332db45ee038cdc9b5b1ba438222d76d5d09015254e1bd82a92d22','441033892174aa10218b95af2930ef830d608faabfcf616992b1c1631e12aebe957163a27132985a',0,'2024-10-06 20:29:24'),('36ec12b5953505499a3297c4736537acbd0537067f9fb1991ed1a238c78424007ba8272601189600','583bd657193d611e1548525eb2007074ff8443aae9761105aee64cd413d8e35546b2ac50144a3209',0,'2024-04-30 21:51:36'),('37128f6054f871bb34f5b9e1da5bd5ea5287390d01fa934262104d81e35c3bdd5b4a71f7ed6bfc9a','00ff6030e5c5fbef8da482ce37687954cd1efa7368c7c208a92dc915f52ff5b39e2addacf6c13966',0,'2024-05-17 17:35:39'),('371cdb01a279eed136d19a841b184f404f8df98582cc680483624106ccced7ac1610ccd4c579e80e','fc5572f8d6a1948d4f02129ac31df5f74d15d1278602570ac862311b207b9bd817a89325fe3331ad',0,'2024-05-09 14:48:22'),('37428a6e7540f5de02e6bd691584df86403d8bb87a930f177115c3dcd34dae3d595ac552728e5699','a5cdcd3ca9951d994e81aacc8d684ecc9109476ae60cc52d74b76e87fbabbe5ad9a14f7860271d2f',0,'2024-02-15 19:17:08'),('3747a72df55a57f265092209cab5606415dc2b2114557f34085a0224db816d4bbeb94a65378a913b','3e18e230e2ea62aa86ad3a71986c3c24d90306bb85258a57ac518d0cb84863eb02fd8b2852d467fd',0,'2024-04-07 08:42:21'),('378b5ddf2436b3196aa403cbcdac54a2aefb7ed6213e427163890f940cccc55f8a32604a3b013233','583a9b0f5e8a3754562594b126cf3eec14a50942a63f5757c286788174ec327bbb5c5b3677d0a1bf',0,'2024-01-25 11:34:51'),('379c2f92a14ed83a4cdae577ee9b497503511a4084c74876a318c077c86fa44a8cf9d662c775c1de','a8e74b19de7a7b6b4a4d625a69f49e69dcb7c1c93246268abd3fdf4022fb85cf9f6a8952efa65b7b',0,'2024-02-07 17:57:39'),('37a991553347e4205132f4eabc2d3377f074f7226d9d07f4e5c0d0873a66eed9e616a3a6ca2cb66b','d71290521864206c176b9851167cdec0e305ee134589de502c5248816a024403db8788ceaa5b2802',0,'2024-09-27 23:23:00'),('37bd4f0a1a8bc939c26150a2be0392b29bfe88ea1d0b5683f5f7d1246c28a9e989f4a56139f802a6','541395f08ba958e036f43dd1370662a1c2733e5f7faa20cd587ffc6b1e869ec7269475c4203e4434',0,'2024-10-06 18:50:11'),('37f4ebae1b182fa997985178b512095a7d5fd58bdbae2b4dfa39387b3b07a955569cdcbbf8e86d55','81a1173ee56186eeac2ac617b4d7f78d384e7df5ad52a9de2a0ec3984abd875137469efaa02bd9df',0,'2024-09-16 18:14:20'),('380a9d5dd290ad4798f5d801cf22fde3d35599d53f1d2826a3b388fda868026314d881611bd88431','27571a9f1e2bc66553df83033b644f2b8aa7e7b96d12badaf6dc89efdb2991742d4bf40c45cb0138',0,'2024-08-16 20:20:24'),('381d0768b3b2447cad9827f10579e4d045d633b131bc1102272ff40f008e5d0d1cf19d5d6c2a3b7b','ced6a0f72877e33e7a51d72068a6a53f835f6e21f458874bcd8d83195ce852e37d53dbd7601fb5d9',0,'2024-05-11 12:12:54'),('381d594fda86764d763080beeb9185afcf7eaac7ae692d489d1a1c76fa4d3b494d757b0735bd90bc','1dc9fabb99252d0dc0429537828add0e6245991d826d2827f3d3ff5407a07f3a892edda2862e0651',0,'2024-06-14 19:10:04'),('38330a750aed7d16ee146e40729df64efa0a44b04c52e074438b1a5db49542759c7e495b593a2a24','700257e3cd0b83ab31cee05e863c85ae2fff1390a77ff2d03f134845aba3f01b9d78851d4163e1af',0,'2024-10-01 07:33:40'),('3835fe66c48ccd7e13981b90a5e4a0217ce997ea46e9860ac7ac49da792388467b2408aa326702cb','95a54005d89fdbb531f84657802b26b251f107c47fac7e0e24a67910f028b2e0df02e3ce42b5a2a8',0,'2024-02-19 11:12:56'),('386ca291103a9d088b8b4412b0913019c9c619593143ae9d7daacad119028b4900a6d03bc03750e2','3f3aca56d5cf3486fec92eae874e03b467fc5f5036c68ef1e5e626b25470447d59dc1012550a8160',0,'2024-01-25 14:39:14'),('3871d129d1db931c340814884e75f66b575e48ee0c264bc56e8150697ff1f57ea8360892b0ac090c','ed76edaf609c9d58d5f775d81c64d4290f1640e571c2893c8226dc6508772989d2b9b392bb359c2c',0,'2024-04-26 17:10:31'),('387629aaadad2b1504481dfc7de569d2a7be0f85a87798490d3b6ece647a41ab7168224db74ce66a','e3b885994f3d2dd90cc72c14d442836cedab97def25c9974fbc472f080763c6e87de71dac31ddc3a',0,'2024-07-24 20:39:06'),('387a5f08ee2213ff19de67bbcb6499329ef6864aae562c031dc25f41f868fea1a419ddda47e4cae0','486a23bff63f497f8733d689474a4debc083ece2a4ac049ffec8bd0873b988e8ade7eb4f7a901dcc',0,'2024-10-02 20:26:05'),('3880d293b4f7ae484d2c8b8b650e086640b7aa56b62a658fae8d9d9e0fac09142c7e2818e96c47a8','35f36cbfb93f53b459d54e568de4adf29982d53362199a4e0e1f985ed10ced7aeb35d1cbd381744f',0,'2024-01-27 08:36:24'),('3884664f457ac05d6e3be679092077ffe514d844e5d5478fad11cb60ee860e4a1a765c56b3e75ab1','3535edf74a13e9bf299fcee639f8f5f738786b788ad57a2b2590d4f0ae828c0185f51394967970f9',0,'2024-03-08 04:53:32'),('38bcdd0ce28a865a96bc9f08bc5a4bb1acabd2596336b4eb76a33b34a76992d874d7ceca8e03d4cb','6b8423db93ca5a5f8548c47ac974ca662ea10dd58b0905047616e77ab3c4e284d9ac8b5375717348',0,'2024-08-06 19:52:24'),('38c7d3feb148648041925b595956f445f0d25821f2e3ab85406ab28fcd69b22ec5646bfe5ad6735f','a2c9e4c9ee256e1a3c65a6a1bceb07c2e1d0399ca5b3eecc026d839edc7740c190cec4d338a1f4a0',0,'2024-06-02 11:35:03'),('38ca19266e68dc91eea9da65becf0f421d0c97d0ce308deae37173ccc15a8e967b2950f6c1570c12','bd6478b520df68ce50b4096dbf7cf61425780f45011d48e22edc1af8deb5468fcdd892ca4c3ce940',0,'2024-07-20 09:09:54'),('38d880d5056239827c0c80611c25822d97b6e6571e6670cf62d74c81832b7afae7c6644bc878af54','d733dd80bec4a1d45e7ade9a9adc19d84b0bf6c5f71c1722098f1cf54e0df41f6789325e022b59bc',0,'2024-08-05 19:18:53'),('38dc771a2611f2c7bb903f4644499b8dd4671d86c0da82f4ef9cc41d65c954d5c7ff7a9f075eba24','dceb324e6220aab631e69edf047abaad891234af0e4b5d84b5f5cff8ed757634eff42528fa7d726c',0,'2024-01-25 09:31:43'),('38f633859f3c7e9e5c02866b9d0781434fbb63bd5d5a62a5ab87be6f3671658c3f714a6d5ef1ac81','cc66caa24676cbf11eb4949364bc436442620d0bc0cbee3ac7586f00f50d6a6911b3f040f9ff9e08',0,'2024-09-06 16:56:26'),('38ffc1359007bebe623eb74a0aca4af33317fe5f7aed4bf3fa6770e9502376e691e6df45dfb7b9da','f17f5d9791c4983fb3d41b8d7629dab3388609fc3e8b31d4d5d0d72eb105d16c5ff34c91f6417833',0,'2024-09-10 08:47:27'),('3907064e09d800b20953a56125df3918fdfa5ed5f1e0ceb36fc92c044cfd627d8913078f9d52ad2f','91396fd588ef0786be63cfe1ff9beefe8dc9506b8be1c7d9a0d5487b94c7a58d21f7da15a1e5656e',0,'2024-01-26 17:14:24'),('390d6e14cb4894949e88138aae5b394ea381c3493e500e2c969689275a216ffe112c14f87762a7a5','6b025af1fa513c828d6886fe0bfd9397756bf82b0e899febdae8a5701e3f6da32285da459940cb50',0,'2024-01-31 14:41:52'),('3912d70992d53a2a96b7d5f1697c6831e37b145d6d01e447d9b734a303fa16b12335b031c0591924','a79ff45a73e90c7f7e155934d84bc04f20053d62825c6dd123a0a1ee4ca2099942fcbb768d3b04da',0,'2024-02-22 19:02:21'),('391feecd4e6f11cb394272707a838a0302a5bf9b1a0605049f968b2d6b127260a7b25efde6fd89f1','c341fcea19c12a7ed1b4c234cd75aeaf1e5a7ebf3cf399c1ffb6f213528830b6e5ed1a5eba2c7cdc',0,'2024-07-24 13:03:25'),('392d0860e9456426c75e1745ca29b1c32a0f0f775dc4ab4aa2d4609f56471cbce09ac800452a2d2a','f9486cf1156a2fe5e8a864124a897a32b61655e0c8f8bc18812c4153b00d6edf370d00b1cef62f49',0,'2024-03-26 19:20:04'),('3934ce6a4bf2a9d495f47fd17bbbcd0bcc8518153c6acc8f1e24f316b3ef84a7768528f92d2ad33d','bd32427b755e37ed121cb2014f2efd68c5d7b88a185f0742809b555e9a75855a5193d72bb481ae67',0,'2024-04-18 14:22:07'),('394e0dd38264469e796f289b0b0899f9ede018f299761891db11510722abaa74078abe1df462b1ab','d6d7ef39f8517472214d9ceb79241095880855aa6452e8d96a78ca24a1b715e1a527b1e968aef98c',0,'2024-02-22 16:19:54'),('3962f661ae8a6532c89e3d927bb35ef9def7d12f08899e85990c32228f896860e08fd1bd4d0f92c9','00fc5368c225fa615a1a188740ac3cf22b26fce7998d9612140ab3e540a8b71ad4c33344735dfc51',0,'2024-10-03 05:24:21'),('3968e8a7b14131e3f6617a642944c46b89f379425bad38b911a3a8c4f07f62d8c3ecfc3884f2c21d','0563eb6194fbbfb171903194104207712334a4d351921d79ff2ec22d10e13a0eb92bd46369a8c800',0,'2024-03-08 18:06:27'),('3980f04fa46764a8a30aa2d7d25d218c9e9cc1b2f306918010130171063793204e51bb8d0aed3e11','ee915b0e4b7000fe49bde58fef7657d1cbd39091b360402cf8decdb767009493fcfcea05a8a9c1d4',0,'2024-02-22 07:07:28'),('39e1f66fa68d19a3199b08718dada0ba552117d27bc9a786d70dbc26809f2917979a3ce6845a1cf9','5f7f47167c67b462d7e34c3f4b8c9dc178fbe83b1351f2477850232a47bec889afb19891b65d4d67',0,'2024-03-23 10:56:05'),('3a0327cd7b5a747508a9b5e570ebf43c11ffa05604050832259b278266e3e12f5588e6ecf156724c','0d8d88b87b33ee3413f042a3c415228f8dc00b298ce4ecb3c9bdf4afd92b7f10cfdfa3bc4b561b0a',0,'2024-08-01 07:36:08'),('3a04fc3660ac462f563439caf2a452d0934a7337be9ccf183d41a97dc3163e3bdf5ce518b5183cac','2a9e688b8c34121df9c6d865049c2bba33ef64761eb540c894c87a7939d89de34ad13a6dc6bc91a5',0,'2024-07-09 14:08:55'),('3a159e96891c817ceac5beb19ad108d2ba17d61a9ff0545b8e25f05542559fd6ae4e65e2df2d0f1b','680886a04f7658f0cdd63a9f6f5f3597eb1702889d2f80095ccfb6a978ed61b0f844e418f46882a6',0,'2024-02-16 22:08:25'),('3a33c47e0ba5b136d7f0d5eeabd5f068b54803a515345eb5f64e0f840f41cd2761d2dda7f3292d77','6a378b9e72f4dc1f7ba347b7496aecb3e83dc2b031985cf486d42715c5b5b4b59726386bfbffd3c8',0,'2024-07-13 10:25:54'),('3a3e6e487bbae28a42a49b80cf482cf963845495cdbeca13ada22c7e67345da8e9e435deacfddc97','104b86a20ee8cebeb0ad8a493fb35549a53bcbc8cbe7d5cf61840554fa7b3b31126af92f0549c608',0,'2024-07-30 17:21:13'),('3a47c3b97f7f22a5f22bc787fc968eff1c7a8b6924a26c0bf8be416614982c384e1c930f413d36bd','7883c53393d4fba002197edfa79fb9b7ab562f57752c987acf69d56eb6f3183c61878369dbec18e4',0,'2024-03-09 13:25:43'),('3a5636a1ff4c0ea0e11e3d157cbbc87587c959e0c79fb7ee41a1b57e31166cd66924c9e61d47e5e1','800d18dbfd9540175facfd877bc69db2d07bdd086ef1f45760c59ead151a4159123402d40d5bc645',0,'2024-09-15 13:46:01'),('3a5e6512447a1de8c12a5db45b453330665227fdce1851bb0a80f613a8ac660f89b2f17fcc8431cb','2fba6f5a55f2fdee2b4268ce45fd85e4e0cb4df6a09edcb54d88ed33d6f42e5264f14de8b1829659',0,'2024-07-09 10:05:59'),('3a68427e1764653edb6899ef688be61afd06a802fd32c5fb903ae9f7e31330441eabae54064bef73','6a00e5c5f6e5bc233b1556b9ac7577c086aa4aaaf1090ac3160c1b5dcdeda0ab21d328bb9b64ebb7',0,'2024-09-05 17:13:54'),('3a6a48f57151b66aaa362801062299adae7fff9697c1d72169a41dd418d15a72a51cc165467d826c','ac4443fb0bdd0279acc2fe9d607e9820e47d9cff65bbcdbc79d7b590bd8cdefc88f530c7c4184f01',0,'2024-03-27 19:38:27'),('3a71de031369d1ec1d9f6724294a768c309e937207ca73ca6087664726cdcd5c195fab74acee7a38','8d05f88d2ecc01ee0529ef415f051aa223b70df556b122282941d8fae62ad57c54eb52d9b1c72571',0,'2024-03-31 21:20:58'),('3a832cd420a469ae3d59b2be5b9e16e64b72cf2889927d17dae30acd3192897426a67549d6930137','2389d17dd1896ddbd5cedfde2ef67c326ff3f9f00a8fdd1a4a80e9686a99e69d8a67a34ef9a76ab8',0,'2024-04-23 15:18:06'),('3a85e2a1e596ed851e7b0e205178bea3379a72d34bbe96a4d6ead7a3015324da0e11f848fe8cd90d','70800f4a1853d3b7f9458a604445ce54f78403c8e0c6239aa0afd6a5558dddb553a9707c8fb43f3c',0,'2024-01-25 13:49:09'),('3a9e7c9dcef1e00cf114279aab5e4a41856e72f54cbba0a5b4e43e8ac2935348fa05254474d8e7ee','0f15a42bd0451a8d86a87f5a8e7fbbfb50c233354e4e3d7de104d2d45e2a83605f2d48f3ef772906',0,'2024-02-28 18:43:20'),('3ab08ea3e03d2f3d1a196bfccc60c1520eca9bbb01ef2d9adf5f883381a010a13e7227ad5c73c58b','0b1afc87b8762e929edcf5622167dea510b0279a77904ca4fd0224893c89fda9c1aba729e4e6562f',0,'2024-09-24 09:54:29'),('3ac0ecccacaf9b765173d29131e76a512c0054065367ec0691cf2944cedbca41f153045bc1af896f','dcfd006b709c0237f558a26d0c77600d5457b502136614b7e6308d5250326f1c0f48a204e863d8a9',0,'2024-07-23 11:43:49'),('3ac38348f4618282919a822c860d3d3075cd49865b5d1db0902d346d53dc9ba2a44cea9135af7d4b','e78e7c02e3c9380a60d7b00a744fce75f8755df44e70e485d447edc52d7df042d1d388140d1c5c74',0,'2024-05-16 17:05:30'),('3ad63fd991c9b41f6ceb4d63deed4e19854631ad91db52590c741da63213b42e9bde4cc8b546009d','6153517fa1c11ab835a5ea74ef415fdec8877afde84fe11c06450e6d90ae69c291f30da9d7545697',0,'2024-09-12 07:16:38'),('3ad6d5a322fe43135d89bc989437b431800604e8d7cb08c2167b498deaa2acdd31dd53596fa819dd','2e95f7a24ecee9f9e089ec3f62bed8879931a5c50b19db3b0f10337f2a8580a49898a3b482237f09',0,'2024-03-14 23:15:30'),('3ae87fe1b4dbeb482a921b222e39bc6ea280b245fddad8df58ec9b242f7182404b88d6c287d81bd5','b2dba9ec718d3712bf48db19e2b2a7a22b901dba806c667bb3f11c14d109983c70773925d453e623',0,'2024-04-12 10:26:57'),('3aef1603757e3a612b2cfa700905811be3fd7c3cac7e21f0245e8d407997ae471116c715cb3a7f96','e506d1994dceb2e2c72ee9a89130c5fc6f62138e2ca06c76be4679d53682555c4bbb8d70b8bb80e6',0,'2024-05-17 09:29:32'),('3af5e49f6c7d0661cbd4cb1a283a8797f0a2c36ac9df176138bfdd44e46c72ffb061da2b9aa43903','7b787d5b3e154bba4e19933cff450ec1903119012efa5f5797647484d4e372a66097ea73cab352f4',0,'2024-01-26 16:30:22'),('3afd6a8f202f3ec2d396911136d9e80eef0e9b1db29639b7251f4a29a0d8745163a9468b543bbcb2','5711e79591ee8964e2dcf8694a2977d9233eea9d1697f7c43460e316cd05a921ebeb8a7ed6551213',0,'2024-06-02 15:25:22'),('3afec66732a3984380d23fef39790165c0239392ca2c33ff018a37231fc0fdbbd9ece1943ccb02cd','e405627d4b8c9b5ace03eac4150c2bbb14538ed59da16b482854df80ff9fc2133807c3334e1e9ac3',0,'2024-09-15 15:52:09'),('3b1772d8c9edc61ad4bb737170a0a51ef76b5a9270d9683e724a7bff3759aebd456066537a3e873c','72340cda9634d86bb11305cff528fe6a56933ca9d6d7b92a492f820e5d7d036affbeadf22a8504da',0,'2024-03-26 12:15:17'),('3b259b2f9503eaeb59f36541322c72c7edf23a5b049d310efacd4680bffff1c2f7f8efa33cdbce42','97f14674611a11c179f9adc8f668478a80b1c4bdf2f44e2409011314a50cd4377b9350652a5cf613',0,'2024-06-30 10:34:18'),('3b4f7f0ec8e595ba53cd196d7f95ee8e87ec33cbafae4a5cf3953b513aba590d0d02a39a1faba0cf','483830612e5df97b37ca57fb7f62e4b402e9755a01092a01e6096777d2253f622def34727b027037',0,'2024-08-25 11:50:24'),('3b588101a6d0d94dbe78b0361b15572b012cd17f4d8a5619f4f00574580cdd256b048b6c0ad18d50','01844752f99c78e6d6275755ad441ee1f13b122e57fbc8e05ecd87667fa9d928f44d77117f259fc6',0,'2024-01-25 19:15:03'),('3b789a1f684c63ec8382fe64c596bbeab9c077cf4e075166b21d85ff51c743926074e27a324bd9fb','18a5848ec7b28fdc660e09f5104e623c664fd0ea123ac5b3d0b2f71fc7e2a5338f68af5c28927a42',0,'2024-04-23 09:56:36'),('3b84afb2c54e85f9536a8d324ea7a59d189f42bfc7140573cc9c9972fd1f17e829fef3c127503288','92ef24a1a23dc80b1850caacba276cf004d69ea4c403619e03c0eca1b0eaa317dc044477550e9b78',0,'2024-06-15 17:43:10'),('3b9e6bcadad9e956345b094f8f527095987aba2508e60ba3ff5db7cd41249531c266c8d43390c91d','1ed3213d7c4e30a5ac1faa8c3ec626bea2f55b41c47f3826ce1f126b38d153d260f7a9a8a17314d5',0,'2024-09-11 07:56:51'),('3ba8e4a7e94a8111849c17339cf736704cb56cad8b985f6567a597ce2579f204ff01b8964b4c7901','6066854073a6463d0aab89ee1788674cb8bb7e732014a1809e51d339123dca10150d98c5d6ac6453',0,'2024-06-21 07:26:32'),('3baaca7492c261b5f1441afd9c07f6976379759c51af9eaa9d3fda04a0bdb49e11ee4f1782739322','0e12e318fe5eef007aab8b939349389d245771e84fb82883c5f4b50d3ffdf44f4995aeef7c2eaefb',0,'2024-07-16 11:02:51'),('3bb8d96fdacc47eaad2639cf310953f3d9efc285bf9efb45ecdab654d1f043376b689881432e5d70','ecbb96172917e5ddb5f12a1b65a65a1d3bf1e841e4fb6b44ebc9d31c06a17b4b90e95e1575041863',0,'2024-06-08 09:44:27'),('3bd314fb6dac52357a5b51530b7bd37ba6394bd7705a97b94ef651c59e74e4f08d2c1286ac6cddc0','aaccd624adfcb6de5442b9ab275eb6da073f68a2e2b0d93fec35db60f9e1f63165824a870cd4a4c2',0,'2024-02-22 08:35:03'),('3bd7a0c23f8f626e3a67c35d4323d896696eb96bccca60dd37c3a4d639fb0d82fd758cc5e3012aae','ceb24181a5e902ae20e49cc9d6617e113f01985f25c1c4a900a367c2fe24ef34a879de1efe7e1faf',0,'2024-09-26 22:09:15'),('3be8bd8d932a058bd33d010f7f7017627f0e7ec2f38356486ff975abc7926b47225b2a634783ea27','cca3c62d9e9e993c22a1bf7fc247322a247a3a32e88a5c67db539a7ad2e1317c4f72835f1628ce3e',0,'2024-03-06 10:31:03'),('3c00c5217ab7737191febdeb1cc7d1db219624cc566e9c4a764564447600759619ed0d7a79941d45','c73e964f7409959764fd7bf8b4d9ce15444e03772b7934be92c27641ab178dfdcf5d219fe7b926b6',0,'2024-03-17 15:36:00'),('3c37a0e8e88b40e47b89dba26d3ca2ef2cfa2a5c76a674c79d87f6987bc0fff194c202715db63c63','a904a49fd1fc4097c9cb75a9203a3cee70d953639ba45a6bde39dca7c9ac42fb3a4dfc34186d2837',0,'2024-05-08 18:15:33'),('3c735db8d639e64403b70b5af2c18e0e06136c78d92864a64431033a17cf9d4072ad3e6b633a835b','83e0762085976fedf5844f227e1e2fc3a5c33a2a3492227555dd5a913034cf1805b83a82c5a39dff',0,'2024-07-30 17:22:13'),('3c777986f20defde052f57a0aefedaa2ce8265a3419b3c8f33b5bf018c52cd1866dd319a6ed7ab2c','c56dc30e9c86121603046f3f2851c4da5b45a46ff4b69733c87318dd14f9a8ffdbf8b8403d45d1ca',0,'2024-05-05 07:03:00'),('3c814aa0b151d81cd382ffd6217374b5bcdfbdae36349cbf3d4e25aecd74c76eec8551c060a6ca68','247bc895f1fad44a37f74d272dbbcfdb421bc4a06f6e5271695854468d8aa500ec60d6f8c1be2b3d',0,'2024-03-11 20:31:04'),('3c84db91f19d484fc152f5a6b2bd8aa39a5a73e4fa428d36bc5b56676fda8eb1a8f23e45661d0fd8','8358d8a3fda574c22391df17638227c67d8b4862ff70a6c0b686dfc8b670f6926b7112c2f4d94485',0,'2024-02-25 17:48:43'),('3c8758e29873eeab1a6f71acb94995786e42d6f34f32df58ebb81ae3928e2c31c47a363965c3b225','4b9d4b5c4b41d50b138337b1b75424b9708a7f94ff50d5eeb77ada17f06133857ca0c9e2a5bc3adc',0,'2024-05-08 08:32:24'),('3c89d6053b9635c2542c21ea987afa24f0cbe762dad78be1a5a31e00a4c1ca84d8ec2f19c0e09c21','622fa5c533541cf3d99d771e84b1fc7748b6c5c44e5b539b6133a613c167cbdb59ee6d81926706f9',0,'2024-08-10 16:27:12'),('3c8a83e2bb1aa63769446f387a2ca4645f727503380349e0b5a1ae5025ebadf1d3083651ef56cc09','9779e4cf6ecb8a494073a0b8193a829fc65593aabd53cfd7e3ba2ae0ae7761352a5fca37b6400733',0,'2024-02-24 09:52:04'),('3c8ad1c87bef9e87cea34ee4cf6924dc17934e2744e68e3f0ab54d6a20522e0231c9a0788c8c7fa4','2c892b961b08fda4dfb5deb7e5833bcc6efcd16fad1552e17770c71abcc6c273492cd21a86804b4e',0,'2024-05-16 11:10:01'),('3cace39d4ad836e8006dc3c69d9651e13e450bd784a6aa5bfe796ad119a34d43aeef2739a9df0db8','5ee607a6bff81bf11e7b89e05bad197635a921baff3a89096a5cc4d236436599f8a16e462803cf49',0,'2024-04-22 10:01:12'),('3cbc9b1f5cedb4e1515be7db3473a240403462cfcc0ecb04ae88f2856c3effe7bf54640c6bd0ee7c','60ec1fbe30e9cac433bdf11edae5917e63bfde8b51df080ad3b21bf5aea264efa2ab9c86cb5b36e5',0,'2024-07-11 19:23:42'),('3cdd1c1b9bdaa160e3d3f0ca8ecce19050d17ff641d521677775097b23820f5d93cf401d791a5cef','b0929fa05fa15aa8eebbb935eebb6f38233dbb2d9abda8f149bac7c0ca6608c759ebf229dd3e8060',0,'2024-08-30 22:00:55'),('3ce1c931273e8fe048c5b217d68e1fd9b53b2cc1af7f7d0d3def95f287dfab23dbd79b3c2b855122','fbb282e032406597ab0f9bfb851e64d8237916341a2736e3cc863c2b29626afefdce4aa95b965578',0,'2024-09-18 22:18:31'),('3ce3d4a206f9aeddc7c4d7e31ff6e08a9d8c66d2479e4067fe6d2a6a32494b45e2bc7abacc536a56','528cc77868867f884641194208cc4f745b6ff8465bb521f0cd77bf5cbaf1441c261fd0a946eccc2b',0,'2024-06-14 15:07:22'),('3d026e5163f5a78a2a83188d5923f5b450981cd0e68bd0130e0464b14a97c333325809bafed06338','9ddc3bdeb595a41affeb2ea455f24d35ea11bbd2697465265bc4125473448ad29ce79d66b8d9d887',0,'2024-05-15 17:40:14'),('3d04c9d675b2c670a41c21fb4cfe327f7d454b0c56d1aaaae9a2de8a4d12ef12f8748f0a2d7b8af1','0d2159328fc9235ea2e0979c50fc200631997c5b62d7e32704e5368547b408d6c3a741f50843d420',0,'2024-07-06 20:01:04'),('3d0e0db9737ef9835d1ba7fe1f298f675226b353fec0f001a6631ab30db58dc9e7ef874cc5b193e5','e2f91a00bbae3f6a274d45d1fa7678c2fa618c2d82e11da412985d9acf44caa68aae8c0f732dfdc5',0,'2024-09-29 10:39:56'),('3d149b9a20efd1ab2f626fb399f0d105967b1d21aca73c90603f59fdaff230f0ec84a831dd625d8d','937929d94f83d9dc35d609a9752466ddcc9a06d34653703f8fdf322cf76b16a33ca1b4380a6a3ee3',0,'2024-07-03 18:42:40'),('3d1b2bda12c1407e37a9a74c07e8d040240db08d3541ba00fd0a3371e2599d1a34a38e5c78399cac','a7b0f0d7c82cee4c1d3ce1d691bcc4fedcc98300eaec0484505fa2c7bd532f7e9afd0d7be93e8f48',0,'2024-07-08 11:24:24'),('3d3e8726f46ee098adf49364639fe47a396680b8382526a06fa532ff37f08cded68489ebdd48d7f3','d0a917f504d64c78043aea87b512b66711e3d16d2d4a2f4b533c9c89222cff7c0869a99b5716b23d',0,'2024-09-17 06:26:46'),('3d4f5eb526e50fbec3f2cebbc45d5af56f97b65ea1178b11de7744034a8efe640dae22288a1885f0','d8eb5bf463823c4050b86145df7d997eb03a98d9e5fb4255229957fc0dd7157beca88c6e1c2e6c45',0,'2024-05-03 07:44:28'),('3d5b9a4bbfa185215016c8c18890bb5549512ea8cbf2850b033ca61f8a4ab0f4c4882b2f82fb823f','ed810b22e74082d6435ce75693adce1b7e6e4c80098c90c21411a884f2b0a5ce9234e0ee48e49d91',0,'2024-07-17 06:10:11'),('3d5e8c30e6f0e089ecdee8b6fac4c311bacc2715b790d7510def156b918412f5f3e4dd7f5d2f5d63','bf1c17ea6488ca6490d7b7d97589e77c816c7ef1cc3ad298bfdca5b96a12ba20fd3505d394e635e7',0,'2024-05-09 16:30:50'),('3d665413f60f76337ad98ffe7ef7b5de583d006f47057161358cb7e60a858ff966e1b49b215ceef1','6a896a90bb9cc986ba952f5f9407ea39ba9b68a27b2b6d5c1aea3914b356262c30d013186c5b6bdc',0,'2024-04-21 09:00:22'),('3d85a5b8d9f0d7a7106090129b50486293c12610a33e164ddb56696a084b365a5abed882cc54eb94','5e57d3cfbe9df55db174c04d048852d92cbf172a9aaf51dc02819176713bbe86e6eca6838bd9b194',0,'2024-10-01 09:48:42'),('3db511379c5201979763aab551e01c3befaf162181b6345fac89cb3f33116afcb9e7c21d1cbabf2c','3348f0eaeb0772bc19d4317aeb07b20092004846443e84c668224a43fe92bc94fc1e486e4bfccce5',0,'2024-10-02 11:17:19'),('3ddbaf4c22620a31b446d463145c177df7654a47fbc4245c4e80372f5c83d74081303bea6d0d76c8','f0ae80c8a44c38b93d2d73b730db92347fef0e71bbcc6c7a6240957d6df4c5c4035039523799b560',0,'2024-09-14 10:12:46'),('3dde6a31cc6e6df54c16110ac3ecadb7b4208a58886666250f1eee35b9280dbfca024194eb118c1a','1727405f2ba310696c4d94d36491a649f9d98a4a8cd446c1b9c451e03e1a2aeb5430a7f5fa474247',0,'2024-09-05 06:04:37'),('3de4d68cd8c35e1fd426b481e9a8eccd0bdbd32fbae9d5ff83f9b0084c42f5b145c17a913d9ab43c','e1341f5ccb40c60ff95d6a914d0f0f4759904b48a3dd31646d71823bb6c0e49e0035b79032b9b475',0,'2024-09-12 11:38:07'),('3de89c6c856e67e8d3678828aa29866711a4a7dd00c6d429fbf4b94ccbfe8820fd9d390d72458198','df586fa50636a18bfeae32f5daf1534bad645613746d1fdf538e61d095ac87201ab0d99c5854800c',0,'2024-06-15 08:49:47'),('3ded7e6510f14656780e6abd5d9f1bb8acad6fe8d817a1cd99d2bcf472f09d67ef8fc065822d1f00','57a67f36437baf0efdbd5b14fdeda541deb88a881df172304efca552987a000e3d364403c7fac99d',0,'2024-09-03 15:02:24'),('3dfd28b75fd3f84aca27b2e6bb7edbb023a24b44ee5fcde336d0d4986f74d6d9092316af81cdc301','6e8925f6f15c8eb2d81b0e1d1b374933a163020f620e04b39bfe3519207f333c5b5d5dccf1e52302',0,'2024-02-08 21:02:43'),('3e0717c577d738b627bb78770bba1ed6c618e2de0459609a62cac4f35fdf19d8670029a7fffd14e1','1f8c0b9ccac10b8ad735bad0b7623842671a7fd1749e86638612ac5b6950bfd1a6c0d0059e06a981',0,'2024-01-31 18:50:22'),('3e0a6d73ddef03041ec2630f0e819c67facc97055d71b575ca1930234d066c7f17a393187cda9536','adfbaffe95594494fbfc6ae735c374db88ff37337498247cfb9fc15773fd748dd7fadfa50fa0086a',0,'2024-05-09 11:58:48'),('3e11f1e18dc1bcaea5c725da633598809f35517bc22fa36d6ff0a6f959ecade8c8d2403bfb9f31de','3901771dd692022cefda087f82318c83b2bd679826d52737df517534f7d017eae6d1be06ee117edd',0,'2024-03-02 20:55:22'),('3e16b5d7b8830ec9b74477df0909758dde92e84148405c01b3e07ed416b1f7f21b0d218190068727','3cd0ad1b52a86e70d2ced0622efa87caed55f44c0ccc80ada048a09dab6c8b7c0a7de5560d689ae9',0,'2024-06-23 00:54:16'),('3e16d1d535ca1c3d62995bb85e7e6d1d16be67c846c329bf121d4e944b9af2d1402eefac0317c20d','f9c305c73ca8114aba1dc1fe0b37c41890b0c81bf98d707b7e86f87f705a44629d2fce91777010d5',0,'2024-03-22 23:36:49'),('3e1ca3a50390247b75f7b7b5cf6d2a9b090a6a429168f37d6f89551e965630d0ce0431bb5e401c57','0ab127ca73cc93f5d17d2863de91293b671f237d7784e41fb3acf6523cd53a0e4ecdff131920ef7e',0,'2024-10-04 22:09:29'),('3e20b0ed0e5d8455c2bb558252a71c55790e326fccf96773bdef98afc06d8d438707324f47011922','ead8ac10d46e57e6352b43a621f76e0afa963bee4f6b00c0ed8f348c5328d489bcaa5d89d5d9c4a8',0,'2024-09-19 16:52:37'),('3e47017645e52e15f4237eaaf75cb8f93a1ba73e2c3dad12138f7e33d18aa2bd1f2a1f7164621994','844e49f1fe1e380dbf7213e3f80edaf358d12e054be67dc445930264a55436d2f82e9d0fd5fa3005',0,'2024-02-05 21:14:03'),('3e4d389d96c67f2553b3bd4eb3173ddc45dfbd28aa76eefcfe8fbf951bbb8d775fcfabb5db339830','45adc1957514aa8bfaeeb0d562f05d0a6c1a88ed9e44b6ed700efae89a94e595f2a298854fc90251',0,'2024-06-12 15:14:59'),('3e6b2464a61e91537d0bc1c45928f48bb7dd0d512c87a6dfc35ed094f6c0c962271b271e11b2718d','7907b427e698ec398c7075d6eb616c3b4e7e926daef4f59ed335b313b315abd0bb29047c2c22f3e0',0,'2024-04-23 10:00:29'),('3e73abd0746982da688c4381bd799435ac932b292eebb1b8e43d9326bf5143cdc4343fb8cc079f91','bd918569ed81d54566b83d5a71333f58bdc3a9f486ae6bf14d80566c31b37e1157f03a22ea46bf35',0,'2024-10-02 22:12:21'),('3e81bf9b0b4484f8b07c954cdc2bb42278beb6698814cbe87e8c5046f3a4c8e0dee62753e8dffd9c','87a5451ed92d2134015256a7d69c025de5297a0cd5d4be42b702e7ecf1d41a6c3f8952c5966bd910',0,'2024-03-15 09:24:36'),('3e897cfb7042e6e1b89b6b4adc4687d62dbf6acc130b882a2d83911eca04a7d7a8fa479ebc2a4730','5a40f228b5be1e92e93a816f6c2546d1c77c97002a3da5b5a66165b008e51b2fd9e45160bbb2a1f4',0,'2024-01-25 14:34:56'),('3ec0b24af646f0ca13a67a5299f3132dd66b91f7223bdc422a5fbd441a3613c1937350b35b801170','a22466815dba5b77a4a6d7070d34280363c68e47fdeb5c02d536ab76c0115ad0f21312a75f40521a',0,'2024-02-17 20:22:43'),('3ec92a3b6cc9ebacecb208f3198066bb44c4130eaba0bde4b73277ec9eb574361b8ce8bd2967f2e1','f73ef20a64a4fe81697d1577df4cbadd8b6ef574786efcb8fbf7b9226b4dc0ee2178bd80e78095a7',0,'2024-07-02 07:32:17'),('3ed136fc8ecdb851f1f2cc34dc4afb3713a2d93ef9be3eddb89433a6804f273dd835d96866760708','da8c13a978e3d0c986c03ba66854f9a6ffe41f9d4e3f1e9481dbebe3a352bce1ca4f25c0f2b66639',0,'2024-07-14 00:11:55'),('3ee58b6f6742dec9dfb382951ff95ac1999db4b7bcb0b37f28c699ff72f2088b3d3cdcdb93f685fd','cbaad064532a165618849ef19875aa0a46fa44002b1781f03537ad368f799256be3e858f568bc2ca',0,'2024-02-07 07:36:11'),('3efdf4e68acc4cd0eb7017ee8ec3632562752300d0ee4e9508e0404af14366e1d2bf1c1a6c51e7d4','90a41f4dd4d0833131f979dd5e288801098ab444f9f0f6505eedde04a9f2f4b1571f61790ab65320',0,'2024-01-25 18:57:40'),('3f0d3b6c242e4e30244d36248fc0d48f7d64aee723cfd6e344a943c4abcbc52b0930bc07f4a9d181','df0509616e3dd1993d1ec898d3879a4505aa61739f0667019a954aad12ddd44bf604f6d2686e6cc3',0,'2024-07-16 14:12:48'),('3f31ca5ec20ef34480857057c20a3acf20729ad436d61cdea4397496df0920d7a838e3af8e11e6ee','1011545c4c2aa5c042de633cce76b359d0c34762c9a255765e3be349676b15edc3708c3dd67cd44f',0,'2024-05-20 20:39:24'),('3f3753b9678ed7bb8a9701755fd692da630a527f13cbf0fd42b18c1bc98b5524bcacaac3c425c17c','dae51ab7e102a2e785dedb72a217bce16d665d75b2be00afb5efa6521c1902987e03e56e0aaf8734',0,'2024-03-01 23:18:53'),('3f3b065322d23103b597f8a350a31fab1543d298a5d6f89dbfa5de06e833ab4da4462b4857f8a5e0','6422e7a7b9d695faebf02f481a780fda541c82f18409a097c88a1e6172b0ef07bcdead952fc811fb',0,'2024-06-05 18:14:02'),('3f46e2566e8b41df0defe6ee810b28addb01640b7f4a513a3ed3a3a3c09b7e7a713d1bd6bda0a753','fd653a16c670b50f025128e7bdd2df2546c5967c56905d58f29ead5660b0d8753cf4e5a3ed8f0365',0,'2024-05-11 08:45:23'),('3f6f5ae365ff4e2c6980f8973fc1d77b2a91bb7f3a2afba8aa41b6700a1a03f3eceeea23eec1eaeb','f5e05c94db97df536c85c6c45be4479f7d3194a7397d0eacdc8ea842fd860248420613c7a9e30714',0,'2024-08-25 10:26:22'),('3f73678e366cf70f5f697bfd1c92bb8d8763b42cd64277eeb9dc639dee0f4dbce30d45cd341afef7','909e8995d82a7fc406858e36a1535b2e2d247d0ca6735892f9594b2d3444930e3e503af48b87087e',0,'2024-04-22 12:20:58'),('3f9499eb4c62083d45fa4f1eb8fa6543d14b1f3fe97a0f93f42ed116d9469b9186e692e1f5d52bff','dc0f68be99729e47f67fea2f073e216b74342c548faea4656a1cab5b5bce0eb9d5501b8457138107',0,'2024-01-31 20:01:02'),('3fa4fc6c9fa52aebd9152ecd59ad8997c2ae0f183951b1dfc31f5709b3f790b1a7a6f9889872a007','cd3e9f19f22503ea838f0bb1da5c816e83701ae49610d2349d4a03da558f8e1a532c27a08ab6e7d3',0,'2024-07-26 20:30:49'),('3fbbd59b5964317efde50cf65cfb9c2bd47d496a4fabcf0a5da57665d715f6e2a7d422c8a671809d','9af1bb6b76969905c237b2fb73dcd77d14ee968d3a7f7190df979f0a93bb88cb411905f239aecd6d',0,'2024-09-07 17:15:38'),('3fce08cd6008ee6fc8d42faf4e955547a6b1bee500202b7c28de3aeb747009df0817f0b4d55550d1','79e5d0622c266f4658c9c761c82c8347128055c78ed198f0b079be7243be153451e30d693814b5eb',0,'2024-03-13 19:08:18'),('3ffc8b2abdc3aac9bf00e9dd1895a58edd9e3a192e712d1d1713f84df300a47f2f4703dbe6228a3e','86f4bfb766e52273ceaefa177f22b3ba521825cdf993f9aaffccde795eb0f25a6f1ae5055091d964',0,'2024-08-14 23:20:03'),('400da89f79aeb3e40e76ab4e4bde4d2733b8b2e2e0f5e0044a9a62595909ba1dea255a654bf6075f','cd7aeeca686192d539e32a3e814791833149fd416ea872beef5e2d79289e5ada16a7904f4603182f',0,'2024-06-02 10:10:50'),('401449f39287ae44089d976bc1816f112880b2f641b13f97adfaa919423cba3506c4204d0fc614b4','a90771a8b3bd6eba5713a252fb3ee477d447b1016a1372a84d2ea9c4d63b89fc771c1945659d2edb',0,'2024-04-29 09:56:29'),('401bc609b0b3ddaee1cf994d25570a41240291341319dd173c138c99dd92af4a4aa39a82d13665df','a0004708db00022ada9820bf81d493f0c8e23dacf224a3b3f5189f27b33aa8b61b84c74e9c60ddf0',0,'2024-05-18 13:35:49'),('401fcc234c75bb299138a54fe7f079bc87f1ceb3db80dce0a59788178693fdac32927b217ec7ed99','f89807368accdea9d728cf2ecfbc91eda152be651a20692f855bae9905162dc1127c36d6fae255fb',0,'2024-01-25 02:31:22'),('402add209e3c18e094b5554f784a62326d84aeb769a8324eb555b850f731fd5c888fe4236b2f78be','a03adfdaf61e0cf64ff680cd6b288bf44d3e98688c83f13c77c3d64c6a827bd7f144986dee6c0c56',0,'2024-02-24 13:13:52'),('40379a83f3af91dc157b3b413a6b1281cf8da68895d1da6d4dc1a4f634cd17c9f3f27c80658e9734','105dddc59588685e9bbc8a7513458283437a705505c2d72cf952fce1e95919077cdb4ba5aea6d81c',0,'2024-10-04 16:52:28'),('406264f68d0c025dbd6a9d9cd7a21746b258876b4e27cdd248d21009f477e4e8cd9e746a4b36572d','0d98753c498e65c1e704a59ac7dc171aa7671a57afea4607fba3d3fda715588eefc698641e917fd2',0,'2024-01-25 20:05:32'),('406bb64607ab87628edcf020e84a58a14fd522790fe2102d7207a58dd1c50fcb3527294ffd4c649a','73d2b73ba1472d6186868d1f93c584c244e589483922817a629343d38fc6261bb46f660dddfcfb42',0,'2024-07-10 15:09:41'),('407bc0bd52ed108ac17612c00e58c3f1237e23bd78433e1983cb36b1c0813bd1ef2ddf6178faefb8','690755ce4c17713882f3c87d2883a541f2d12a28f1b96687420c309c8cf82a500b07d3514f51bfc6',0,'2024-02-18 12:30:20'),('407f389cce3147a023ade9019ddfb4aa786505497cc6a91e0cf5bf0ac5155eb58549d70b8a8f9b8e','4509b64122c9829848b580edca83c6192269c4c5bd86d1d110201c32b2a630147983c82b0c6cfe14',0,'2024-02-27 12:12:13'),('4086aba9373b00a1d15a59e250e314056e3b8e72e9f0b456e82fb81ac61354c7dbc08c05659b3a3d','8d73f6b9b3182ec74fceb9615a8de14de84e3d52d59c2cda085d0d87ea9a3f36cd1a6ba8233c8632',0,'2024-02-03 09:24:56'),('408e08735c4a3c6a27f5063769c18ef227b9aee4f1e54ed50e7c51d46ef5d76ff75d83135372ce12','ef1d64e5b7ab26b72fd8f26a9403ec25e70b1992631390f1ba1ef6ff1a74da6eaac16f29e9198c39',0,'2024-01-25 16:52:34'),('40b5e012ae528c4ed17b383a7ec829910e0b2cd2b97fde292f318a14008c7c892147439a40d7b6be','e20d5a293a9d42bba4e4c722bbd0a996e7515f031ef279285758cc928637857b483fab7528646c86',0,'2024-05-31 16:35:23'),('40b8ae82d807fbfd4db772d0f85d4249d8a0b821fdb02d0483e9494ae5c3111a578b5bdaaddc1eba','af0ec70b8e66933b2d95da68fc10526c924ad2e1601e148069d7f478b57562829683cb4c8e25e00c',0,'2024-10-03 09:27:51'),('40bf713ad0c20d708b882d9a9350cb4e79e7dda5cb01e4ab9dfb8c5e6ef868d3ae0a8207a8b80795','021dedbb031d806ea5c32b0179183a9ce6703456c7045e94767edbdf9eb7f766bed894bb213d6e39',0,'2024-02-08 14:24:16'),('40cffc079361e6173c750fb0832316e4bb4925e42fc4ab73d5f05ed6fda6c746953118b28d66521f','69404299f7e22813f04b6c7ec8ab4aaa7cbfddc7d049fb6656f784e274554ddeec05ed0d659c8c14',0,'2024-04-12 19:45:11'),('40de1a84eba1c8eeacad17639a3b877251c754002f565b5f3e3f8223061ab14daf774faf645998bd','0b5820b567298a6a1c1d19d8d4c819ccfd77c57f486d0e2d164a65b74d289d3f785fcfa59cd41e06',0,'2024-02-17 19:54:01'),('40e8046de36dd58f0cb950c7291d3109edbdc08959fd49cbcc648227a643976059d798064b78eb6a','5fc16aa6e6662788d8067061e93442b7eda94e63611283982e538535ba444e91466819d1419ec37f',0,'2024-09-14 20:01:53'),('40ee31218a5e9879d2b1d3b2a8eccc0a4660166bfc03f6e012c4a4546b1f4590cd70249aaafb400c','66a4a662ded3d1697f8850026a80991e1f4fba79f864838dfd2a59858c4128030f5ba3887a2e5297',0,'2024-04-21 16:54:59'),('40f3ed99a3d3883553138e1128b75761953b607b65ad7de78e84c3701ff80dbef389ca756c5410e3','02aecbcc7c9b26562df48188765efa527cd81ce67d999d87a5b3d2d14d081082ca45e2a3c6300078',0,'2024-03-21 17:43:13'),('40f4b8567de58ec8fba0a845a14b1d51a84373fe65f2100193af28f83ccda4613314fc08a70044f0','ca1bfb86e579eb7e8967fd47dd37b7c9695f2d3148d35ca6c3dc972425d965db9e9d2ee29d009c26',0,'2024-05-29 12:35:03'),('40f8e41c55f29b8a99a2fa10a9dcaf81eac7057cd6040e66215db6ecb4adb31db7864941799e4fa7','e2e1fd8a7668c8c9b3e697d65da1cc33690c8d3e28b71a36e6d6bfdbab15fdf502cea4ae8343f5d4',0,'2024-01-25 07:17:51'),('40ff5991b63d26d1492341e3a1c75a9463a828cc1d15d2a74d1651eaa70934e9e9f8a6bd3e31dfbc','cf55872719b555b9cdbda10c8e7c6c63ad428ccb221c48ac752cf69eb458183b300b37876f6d50ea',0,'2024-09-26 11:39:00'),('4103a6fc12da64e8d5a0605d8c15f3349ed26fdd6a15ea0e77d4edd2c757be90ce2cbd4c4e7e04b7','c29aaea5ef5e8b9524a2d0926283b4873f6ea959b93bee9c1ac0105ba6b860a90fd30bdbecaf2703',0,'2024-01-25 05:26:59'),('4137e0cc4a2ad1aef379cb3a0fb8f63933ebc974a30541f32f2560faa0258668bb977e6094317abc','0cfcb008ca4f02962d3f52b59ee19c3707dafcd9ec92b4bcf4f67fc0d33fefc8bc0c19f65f41fc7e',0,'2024-09-04 15:14:50'),('4139375c660169aa010d98d07ddd6a7532e8cb071431be63a0e1e655d59d376dcdc8a9fc6db67970','288270cabcc4a3132d2b9cdf1c600c28cc08a4832530cca29a6cb01f75475a8804f25f25b7839640',0,'2024-08-23 18:02:00'),('4142c1f4ac98fdaffec21b43437caf03c5cdbccc5aed3b60f5ead108f5b3a8388c18f6c31872aada','a2a56ab413a1709031de1d05724ad9c440b07b5eb1ad60c5e28a1d6dec85072c98f33a9b8cbf25f1',0,'2024-01-27 17:52:55'),('41584691e45131337f96e1f9dfff98b8753b75c5e4da11eb91d624f9a8833e89cb1d309bc67d9a93','3b36af3ae3b3b42c944571617e29da00e0413e4e4bb95a5aef7721a1ae657263ad414706fe089602',0,'2024-08-03 22:00:08'),('415b14d0abe8e70d568e88a9489baafd04c8016503301874bcb647f6eb52e6ed0dc61bbef54901f9','73eab44ecd7939069f9fd05480e1d424e71b36f65fb4a77b537d3b96ca184b38643454afed0f9c28',0,'2024-01-28 09:37:10'),('415bd07cf3bc94dc0e6533aceafa03cc8dde737142f8f0a7a9cd1030a8dd030a9e947fcacaed4e90','cc0da786d740a25f5e4ff994562e5d5cbc029e2d61343bb3ba821b85c0ff6b412b6923b7e0581c15',0,'2024-03-11 19:15:21'),('4164c215bf16dac326673c696623e03c16a5e96bc0ad9b94bff545d1c27b26c67330ec56961eaef4','d1797da26e2186308f03f962fce09a931571470c2650cbf6ecb2b1ddef87600ec1c452f0dcd06c50',0,'2024-06-29 17:31:20'),('416bafacf0990103990c3b679e5ba72106ed2e5d86df1c1a11c1ae477058540c0cc0356b873f2b21','3e987786c12d90986dbf66b692e566c4416478b464a4068d7c81cc078e1c8867f5c2d21e1fa41706',0,'2024-01-25 13:15:59'),('4170b3e946e5bdb7c4fca5ec5e21d4ced82658b521233bc1ff03805b4612e71ec749e6b47ce7e330','b986c80742cbfd00feddd84da5af48a4d4ed29fef04f533063d40393f4c14b0bf0123c02e154c980',0,'2024-07-11 21:44:01'),('41897c950d06e0eec89f0a6d57626e07319399e7115034450f14e4c2875759b48d919ac12d03d965','496bc5d307631a93830688c214c1d72aeef390de0d15017bd27b2297e8a42ab0dc5e3d5f5dbad3e8',0,'2024-10-04 14:07:16'),('418997eef2185eb53817cfdfa98c020bb324c81faf37a686c6ed97436b4a594462f437cbbc0707f2','a8f7363527d6831b5796790de09f6037de0934319fc952e1e8aa452581b2b0c9e7a46578da645eb4',0,'2024-01-29 21:54:37'),('419177555ae6dc16b9a5090a6d86958a8821693720a869a5969e2b04d5bd8fe6f92672aff9f52820','b9bbf01ac373f408b2daaaba2b732a01aaa5e18b8caa86e1cd14d46b53b7150992263f40b973471b',0,'2024-03-05 22:56:28'),('41b95715ab22c8446e42661bfe8d1024fee424efbddb47299c100dde08190476c34235ce2ff9523b','bd38ac82405c1037f78b2c557d013c97d1b82d54954efa31e997f7afa55f39712e76fb7246c1e0e3',0,'2024-02-11 13:53:30'),('41b98d55ab8654a625b230392d60f38a5b47e76c7edcde72caf06e26c3cfbddb33013f5e1ef5e91f','ae7a89d058a128c7f3ab32cd2ee292a1f0bb00e57ce869cd0b0e9426e2771499b637ba79fa56e1db',0,'2024-10-04 21:37:06'),('41dcb96e4b965b1d3a39fa8c7f8b9e142ef536ba10382833a79287dcf75d05281d4fd2b96ab9942f','8c42e1aaff1904c8eedee7336ed9c5fe8e8350fad04e836c4de96e2a93f4879dbda4862d9538657e',0,'2024-01-28 16:20:23'),('41e055fafbb11a303ccffc49349f9bdad693890d37674c6ee5dc986dc9be5e8fe6aa492d7bd568c3','4451c2ce10ea63e2f8f348aaeac578e9f103ccacdb8d41739743945b942af9b8576b6a4d89c34e0a',0,'2024-09-05 16:15:09'),('41e40408b30d25bedde491e9da88eb266fbe25487a4d3c63cf250339770c3c028d2ee6d6a72a3040','e41f7ea765189968e2e4ba08b4973cd1e724262fcf4b4c00e02929e7d78649f0d76277c537ba9662',0,'2024-06-28 10:12:28'),('41e6b08c1bbc6efb517566af68974342b3930c2c08c6cba15018486db0d9ca594b70084cb9ba2794','a6f08d029a7e63aadff79b7637ff9b34a32d199207922cc93fa903be509cee2c073b3b52dd57e98c',0,'2024-10-06 08:55:12'),('41e7ef775bbae85065d76a2bcd42c561f4860d2e451d786abf0e2cf75c90c78529eecd88feb2fa07','91ed2163392664504dd69ddce517719b26480c3ae7bd0efe7f5db4d6581bc2c66f06ca9d4da5a760',0,'2024-09-07 16:43:33'),('41f299a030bcf118c4209504643f4f1c95e5f21a5e55c62bb51ec29a1267846ca0e1583189b5e9e2','f1d7e08876255d4afc3cfc62a951a280b4e9f18e3f2d228da8c461e161a2a7573db7fb217d2e4959',0,'2024-06-16 21:58:54'),('42298ffa750dc99279a788c5774720a1a57ff348a1b41ab54bb149a14e2751efabb0c690cdccaab0','8abf624a11c359877449916372fc782ab95fd84196d8c2ed11b1e3b31cd710e14969a14aacad5e79',0,'2024-07-28 10:54:32'),('42446899a7e03362c03cf00058c640a75e4866a29a56637344eb4c6e2066667803c5560302734020','0f46862ffc2933da5ee9e249d8c20642474ae13fbfede39b9287748e3dedcf122092fe2a85bad4a8',0,'2024-03-01 12:09:02'),('428dda40594905f2ec520e5817303fb6088d761eccf166cbfd4328d7b502b5834d408c40d498ad0d','d172b7ca91203bbc7be0a46c2ac8c9139ac0e361883851228d294a61b8016e322d4e0e1272adf356',0,'2024-05-11 19:46:08'),('429e6631db89baa125889aac2d749bf1917306d84b3445d6991217e119a6778511e681e59144f84b','17e0f9a4f6c92afabf43afda23fa102db6af7809a8fc06ea8fdb31da755ac57a0709d9c352032e75',0,'2024-10-04 13:23:30'),('42b02b36592ed48cb35d1a740b6186f17875e0a27fa277b9c5458db4b9c232f2d2983e3429fb66cf','8cbb452ae8da1e42859fa3327ecbfe23ff5f7f4c4d4b5d69cc9727ff42c9c5c1235e3198c4fa352c',0,'2024-09-25 12:00:25'),('42b35eac87df2e3ec5cd307be3f87ef8730e4d36c1b67b3363288a8e63fcc211753f00739eca56f3','0523edd537b7db655d61fdabab0e3331403bebe78e12a01b3bebeb057792bbf1e67f5c3dfe2c6ab3',0,'2024-09-05 22:40:57'),('42cdf8a9c4ee34b009faaf90a456b9b92afa6b4e36f9bbfcd7a3c89ce80014cd0f6ad7e471430781','15ee1acca39cb1c309fe3935b23e4895c37e3ef2e2f43f1ea91e8a02c4ede975e31bb60c1758ed03',0,'2024-08-09 16:31:24'),('42d064df1b6e2589f993819129e7d1a339114fbb5ed5fe432b828414974a3c33cce07941ff5ada67','2fec41f47a210c5b6530e3775e707705a6844bbceb20b5d01d86eb091774cce5f79baa4548103fdd',0,'2024-06-21 22:44:10'),('42dd1ec3cd83aa09399ab56fb88efd3cba96e38145775eab9d114241ce0858239bc1302758846360','82dadd22c04fe80661ea9eef7a951d665572c8b9ad0cc17d8fd333ef1d59bb137af5d9745e213ac3',0,'2024-10-02 11:45:04'),('42e7b1457a7cd5b4373db1e612cb937c1bddde823c400c05be2832551077fc4cc2cc5c204ac0e081','fea4404beab4a521ea050705bdc9e2aa3c5d914aa7133e532a73df6dcd372c5e82321361678602ec',0,'2024-02-23 13:54:48'),('42f00099595558d8a423b68e792e480fb54b7ce6e02b289ac389425d3cf1f41775b1c7e28831902f','7e417785d30912d80966ad89217da912692730d6abb530273b3b2b1430b72ab1780f0fa3b59f6066',0,'2024-09-24 12:11:52'),('42f488aafd9850707dd3eb7ff05bbf54f538648eb319ef7b4e0cb99f1ed7c344719b0b844238d81a','65a7051b30c013c0e1125401725cfd5fcfb883b957719f54fb8b6c3ace28219e045ca4dd8a661809',0,'2024-03-04 19:23:41'),('42fb0136a0fdc0df36125a0dd661b918414f324bb048543e776220e7e9f792ecb95c0139a96ef908','ec7e0b67c3d99aa61c12cccc2754c702cf6dba39cadd8d93da3391cfab457ae121a1e5c1f37e910f',0,'2024-04-07 16:39:49'),('43048ab379208a2bb6980e1ac7cd559265450b2467c0b8f3d9da0828093ad5b93a5fb3492a026244','fed5f1f5893d7e383b4385bc926864246c5bfd32f5ef32fa98674d390161d81082b82854c0975a32',0,'2024-02-02 14:37:47'),('430a8dfa878477543974aeda8f372a6f5c685c245ae18f39191c6ec85f3b9ef98a1e21087006c61a','7896a818f1d8dbfa38ee54d4085dfe146be118a41df00e86f4a0b24e7f610ab8f5afbbd81de31bce',0,'2024-07-15 22:24:01'),('43242fa67d062340571b65dc51716e9dc4c3873293c8bab366d56a77a04b1e7dc6d162d4aefd0512','40f3f348cb827fec5a697b651a98d673b813c3cd12ec5e541601a50413f448d0c88a6757386957e9',0,'2024-01-26 11:35:25'),('432f2c24736dbd9eb70c25990b8d19765462ca608c19dcc43f10a481e371839e2adf9bb930bad6d9','e29f778a2a5da0fee2a956db21778a93f2fdc296736dbc0f04a5098436c19e7bc90b7bb149d82065',0,'2024-02-19 16:21:38'),('43483a1476422a194eb662cd7a7b87015268e25a730488f7a83179525e7a06e738ddaac378faa0c5','8db73ebb939c871f249ae566c884f4d42d2164d8cb68ec2f1665439e92287b927cb7a1d47fa46f1e',0,'2024-01-26 14:49:40'),('434ecc4410dad3372a28a57908e45ef49471a792c53135372d07c3869ae46846cbfe8786fd2e0170','3527449d64b4da77491f2f2327a89b7c22deb9029a7af9e0048159dbfa8acdaa5c50740dc6fe9372',0,'2024-03-30 18:07:07'),('4358eda6d0a43a4390e3b0e95f8308c67e5df614be4cb5b193cc634b7a95a66674878a669d115489','351e34c4327d10319fe577bf65224b7256655f986c5cbfa3248a4c1f650d68f0e4d83a9611ba7083',0,'2024-02-09 00:05:00'),('43691ae8331579e17d2fab94be08264e10d7912e6fb37dc28ef19ab2b6d7383d11ec246e88ab9762','99354b00e98dcf84d2419bb016d119e82e579b305fd1abe92a98965dfa48082b6c7ea1bc769eb062',0,'2024-02-23 21:38:40'),('436d69a0b2762250643384f01e82c8c3ded8a17bd29cc5c55a22a5ac786c2fea846b9f62232f4288','c0945e6f13c6f59482d2bf456411988d7b18b51ca9455aa1b89a720f2e5094aedbcf75020cc0c7b6',0,'2024-06-08 18:45:18'),('4375b0b062f61130bd2eb0db1bb44d8045539009769845a560116483121528d5fbdd635d557c2d59','ae5cc63ca84e1b54c41fd338ef48a7d0a821ca12e220eb0d5531ef42ecd5b34e94587d21d6adc677',0,'2024-02-21 18:51:53'),('437794982c35a88aeb67e90fe5f32bc53c1c28f04f35cd81484c8070d62f0817070f1bbe2f12498f','d9c75049551c4482c77287755ba21e137eb6e4e1223c88ba99143d9ee308024cf17128d96ea878e0',0,'2024-05-29 16:59:34'),('437d5c965b0a8ba4376f65c2645ace70b573e1b08569b9a1e486520ee3e11f0a22afb328e271c4a8','0d49ac8401580873c372c30bc41160eaebc1f62e4859d3ddbb6b3e23b923d11980f045c9a185f7de',0,'2024-05-16 22:52:34'),('4394adaca92cb4742eabd1671b6c4d43421af7d1d771cb013e8e34ae2331ded94487f736011c0ac6','f874f85395aa66b399180fc4f5293151ff0c36c9d24b77cf5f42c5d0cc6908dd2a50e3ad41ad9ade',0,'2024-02-07 11:06:30'),('43bf93500ed3f5e0cd395b1288600afa983136bc1897d4de47fd5889e1310a884b7f218ce8ad2a01','f2f4669821695b41f30460fa2ceab88804b888d5557c1f19777dd97fd7e36c726ed3dad0d5277050',0,'2024-02-20 13:58:38'),('43d5c4ee5e77f14c590f045ef6583f14d3743dfc8dca8f6b5aa27d7a34c67d5a30ee810b74366678','c2bd83f69ce3ed3a5579e46f1ed2156454d75dd470ca131f1d39ffb0f880dc87cfc1672c64838b2b',0,'2024-01-25 19:05:52'),('43dd5c2f1d594102bca5458d1d11f71ae840f5439aea285306cd6bfc92c5c4ffc33a0507b86dcc0e','91dfc9428d8924dd197eef59feefdd83262b346340ebcdea621a60169f4cc8a67ff89504a8119de5',0,'2024-09-26 17:53:25'),('43dd5dd418e49800edc07c2eb0eedc35d6d653be77ee2c5271ce69ab7b3086f64bdc5885a5e613d1','99bc97a4de6e6c8d04bf057f8b078f7ea57faf496a999ddf98b7bcef3602fb2cef941620c7570769',0,'2024-09-09 10:04:11'),('43e1b828bfebd574b4968676dcaa4e4924ea66ec834a0cbdf07096aef9bcc9e09538815997d6a8ef','ce2a3d4cecd9c7153f9e6b948d42cc3bbeb95bc39e62abf46ca2ddde7cc746cb824cf6edad884f27',0,'2024-07-06 15:05:40'),('43ea3819afb5d811ee4888446b59280c3cf8675bf1fcbbdb04d0522129962f5eb9de9dd31b05e623','07d495203879121be2ab2eea446d4023f1d85c9aa304b11b8a75883d48e89b96462d84a2026ce007',0,'2024-05-03 19:55:48'),('441d5c67d80ee355ae7264ecd92b9e4a96a34d2e30af464eb2cb9eebb545a5d2211f1780de1ba11a','5719f541ca7355ccf6b72aa6e3157331d77def9e250bad02addc883dc8ea3d62c3e286b2af3b832d',0,'2024-01-30 14:17:34'),('4421576ef0771cb6d12fd8e2f2ac08306e0f5a751cae2c9d643e161b4ebd7afbdd43eb1f92bbd6e8','cc229dce9583546efdaa55f3e64b103560f05e82d44c275b1b66d374998d19b4d7e96e2818521de5',0,'2024-08-03 18:43:59'),('442ca8dece21e5847f3f0f070e4b12ff4be627120e81a26e2d1e99e3a427d065f98ff67b56fb14a1','182415bf66b8f3ca46ee8874b74d1993a5038e1c1fd7108adae104517aba2993f59397a2fa3cca67',0,'2024-01-25 15:48:10'),('44332a3158066c279c84848dc058c7c50d674b5026c4b53041b83482566e479783de5ded14e4f2e0','0b6ce03f5ebb758743c1e2c30b30f67020731ec41b202229332cf675d5bbb4d620697166a448d8d8',0,'2024-04-17 15:33:26'),('444376ef170826a46934eb73f764739f2ee0c572d8929788a5d6a80a2e01048392ffd4fca8f3b916','d7aa1e56da78efd2d6f993e614932e6766e67f7fca48d65cb63676c5a1277598dab484e61297b245',0,'2024-01-26 11:40:01'),('4454ee6edae972e63b951167f678a34ce8ff3bda2793163761cbb92dad9a7037d3d1c9e3d361f16e','d420284855eafd62bacf6afdcfffb169c695668de0b96b5e2560ba14bce63efe834c97d102902e34',0,'2024-02-12 11:09:39'),('446c73e35b8ce84c47aa623a096ef26512d3f64b079606a9c372c6b5ed728c8d90b02bc35fc19744','d5ae8ce595d98eea518f26fc65071c88afebaa1b0eed377a75be94ca0114dacfc6430061473e1d2c',0,'2024-04-20 07:03:45'),('446dec6a034c26717041d8a39db961e441283a283ad94c157a7605a063cee19b04ec2f9e20359d75','9e8868e8c197c55269788886e47b885fee7360944d589f7874b4235c46d7f6e672bc5107bdc6bed9',0,'2024-03-13 13:32:14'),('448614f714e56e8fbdb6a2c23f9f197046cbca7c7b44a3ea8791226c08c40bf94e3b319850b042ee','938dc861a7e85086f21a006380446c65403210bb33ddf071a793e739d6af8c965540c22182025051',0,'2024-10-08 00:42:52'),('4487ef4b23f15a89284d889ccf43d7df8e034742d1ccebf9d673d582927ecc21afdb07d5a1b928ad','78e36f2581a650606f218a96f53e0127782f5dda5e1f1b689952be2e79e28da0248742db82ced693',0,'2024-10-08 07:43:24'),('448a6435ddaaaa6da68e55793c175f0bf617d21126606205941872b1e50f2b779b5ef32fe3c77f21','58eb40fae2ae0da544d930f1ee7342e16f3da0341303f2deeaa60564aff8935bdc17b68364678fef',0,'2024-02-17 19:08:10'),('448cb0c36b7562ff229f3787620b889ac7a26b073e219f49ccb700a11af1769d78e57dd67a1035f9','f9b7dbf3f3db562a064f6761ff72e7f539c22d37a653946becd93f12b74a1fe63cccd57bdf5a2402',0,'2024-01-25 07:32:30'),('449a12e40756b9d134a5f8f2d58e6eb36a63f3e0c78049b8b137c15caa37aecde2d027c0253cd11b','2a5f01a59be66761d9bf2aff52517e5cca28f9ce6888a4a4eda01f0af7459c67ec1ca4529aee48e4',0,'2024-04-30 16:09:31'),('449a9a2d60058f883383331570aed40db7140334f641f31cf02caec8093bc64d017670f3a3b985d9','fd6967f785eabbd0ea2eeabf8960d40f9cf4248a6359e8df86d6a5fb0d4a7993d020d367bce27e18',0,'2024-02-07 22:14:32'),('44ae7e9e3aeb53b35c78db78eb464c481f737f3b16ee37b209bfb07ffb9f97edde3c7789f31b0868','f49ac77270bf1adb5147ebadc2a0cf7ce907ebf0199789d17ef42da193d947a0ff55637f6ddde478',0,'2024-06-21 18:04:08'),('44cc501c0f9731adbe2c9b9dfcdc62136fda347b2428144cd94c11c4faf094672bb3bd686626317e','926fe85ca418316d121cc48f091a49967c23c96838d3c1530a9db74faf28cd14cc549c3c30ce6bda',0,'2024-03-01 11:46:49'),('44f0c177ccf85af66f90b05658a1599595d7b38ca3e3fef135e8c6e755868b902dadf39f546e50dc','210812e2310417d0f317437652d4463951d96eb1cc30b243532340056de0b5fe14fcfc2a888267cf',0,'2024-09-26 20:07:31'),('4505629dc03948cb9a0dcaf729536a4edb2d279bd0411364c090c5a579ea9bd6e4a8c3d15a005885','d6e32916eafbdac5524e4e0fb2698e3fd2c94782dc84ae29e9be0de8c2f2dcd072f37c2564355e96',0,'2024-09-13 10:34:23'),('4509f7604ba02fcc6e33c3aebfeecda4963c5c429c7c1c46a82c6f849a786cfe8761e851f0d7a3e2','f33e8c2d6530d00ffd9ae1af1650d66b1dc3a3961372bd3f3e1c52e28baf97bf1c22e8326307dca2',0,'2024-01-25 12:29:41'),('45309e551ec3e8217482237c7f029c2a25b6616b1df658de2090471060b983a263e3f89998420069','925d6c9bdc14bd52bcbbc4de557631ab1b4fdbefc18dbd48b6b4575361ad66594e5fea99de917560',0,'2024-05-29 06:10:01'),('4533f318ba31649749846d4dbebf727d066368f3560933b3b09d3bb672587b2ef3c3887cf7b85d51','9a0e13b6308890aceaaee6651abfe06d13a12702353cbb4dca9f1a0669860a16bcff00b3ba9d8d3a',0,'2024-07-03 17:57:23'),('4538638596f7568258fc367313b47cff903cc73a6bddec05aac13750410e412b3ad7cabb1fcf4e55','de5a6207228aa3c6d4cdd37e4bd9363b57b81ea8a195d7e0bf3051787d966c631ec1c6061ecb7cb7',0,'2024-01-26 08:48:47'),('4548dc248341eafa7b4709918969c42557b3f723c7ece838f6842c2a21fb3d0134be5403da96a063','e07fb0c3f4eab8882a1f89227a65b5a9f3575c195192cf6699be8e88296d04f4c3e5a9dcf3c0cdd1',0,'2024-08-03 17:19:25'),('457a037969333630939943b1cceecda38136f0037e73fcfd3a7137045e4065c07833298ce0c74c52','bf435994e2b499a9da0993fbe944f380031721144cfc1717fafaa18c6f86f120dc070ac46c2aa788',0,'2024-01-27 14:58:52'),('45836ac43bcc530cd25161ebb9b9ca89882877f641b0b338d7be1dc3db34f2caf72d881d215447c3','50f1d0b934ba49b607f710f4555b39c2565b2e3280a3b34411e029737447698482104bf897edea8b',0,'2024-01-28 09:21:17'),('459d13ebea7a6c168e286d41dc2609b65b2ee29771a74137f6fbcc2c6a0836c9ca6f194debd5f4ac','f79a49539397d31a8ecadc7add7bd9ef950287f1aab10a50034e7957597c15ef765c7b76b8fc6d93',0,'2024-06-08 05:11:42'),('45a16d1b680685a578792150776d3897c314fb800b7bdb66754cb270ed5a07033547f72dbe03b792','30fcc97e4a0d23337e5166f4d7eb597706f81bc34e2edc28d9ec35ea95077268470d635c04beaf04',0,'2024-01-25 14:40:11'),('45ac2ec4035fd684b4bdbc1660d67151a97a2ba140271b22137058676d12eeb4ce2b9d88403ab459','cb9160f3f88a16d5b6233523ea024426a21b15301d2230a3daa18169f409c384cc8a7aae01060fc9',0,'2024-03-18 08:34:20'),('45c5529aa19a6b9fcbc216ad57caaa55f736b33aa785e3a401e79aa100c05b1dcb6d0ab92a22da7a','cedbf98b3ffa255ed6a63f038fa28a39ec1d46ebca93a4ec187fa6344a11c95fddcbae6dabe206c0',0,'2024-06-28 10:54:20'),('45dbe471f9d93c02fabc8159d68eb001139cf300a76e9d181a15b9b4de044cd692bf467aa36d744d','36e4f5417431824a5fc387fd2042e15fc0eb8b47a4624325e0fa603ddb117cacd5a8e1fc72382351',0,'2024-09-24 10:05:22'),('45f6e9fc3c04a582a58b474eb911edc8ab18d34b5467bad84ce0e6df0d93452944eedb96f1896022','0d741f85e13ccda0bdd549d359ecce6dfb421c4c1fa4ff8b7bd39221be5763b9babb5aa36cfb9f6b',0,'2024-05-09 22:23:40'),('45f937fff4531e1bc6a1635ca95277d0900f17d17582e598ffebf02b31efddc2c97a8a03b2b9cc4d','42e6e1e0c6864f46873f048d0d95f8436cfc5992403ab1c418cb32c4cbcd5db64ec3b0463743ce64',0,'2024-09-03 15:25:39'),('460462cbaaffc154c23654e7414b950de5685a1547f6ac5d421317456597c993117db34e6bc5a2fd','cda5d55437ae391c6e602071cf6052092fcc93e90d6556aad202b527903d67ab04cea2a1f6bd11f9',0,'2024-04-22 13:12:41'),('4608a05c5248636957e9f2b48bb56004acf5d19efed38b40f5130539bb279f5d30c6fcaec18b506c','4c8dd101015dad0adac493ca52ba0e84e22fb776ed3222fd4126488bbdcd727f38f3d1f87012cf43',0,'2024-09-14 15:59:39'),('46095b6372f944861c9c40544478c98d147b129c4172aa0f82e3d84444266828e90108f760110402','90c9e4afa1cfa11a224b71942de582070f0093c2f9a8dff36e35f11497257d0de4b87a3effffbdfe',0,'2024-06-24 21:34:55'),('4611d8a05470e1d87e1472b948c70e9af26daa52fb16e8ac6a57ebd5fc4cf9cffca403331c4600f3','1038c84fa4cfa5dc6340ffde9470a967d0c11b4d69fafddeb822b28d3f327be1fd51d847ae93e7d8',0,'2024-02-17 08:10:52'),('461c9f874ec84be60b80b308c36f45f312284b88bd4846dee11e2a28d1d86687412dfab5081cee3c','2de3d30a9da1d20fa25914a962f8c243ee40a87899bb42a95ddf40a4af5fedba673ed3cf187c4a90',0,'2024-09-09 18:17:42'),('461f8438466ba4bf133c8a7d73cbad9ac826fe3eee54344b7a2f20010810a1424d872299b2b37ea3','a0cfd37bf1ea07fc436b17480c6d1832b50adc7b8f2718458e46921699de0d8bd30c32828ed82439',0,'2024-06-16 20:45:47'),('4629e21ff324b6578d7499a352f5ada3a5f8fa2ce7f032ed2062ac68e0d5940b94c4aab612a8a842','85fc2bdaa2ca3193c7808b39abfec7381ba836e5c8d3a4d182e7c0169d130309ce4e69a7c4246fd5',0,'2024-06-28 21:54:34'),('4638f9637d5acaf7d7c8e81f3d21ea0d68917636a0bc6c6cd7fb31dcdcad23121360d67dd47795ba','47c3f4cb72a90154b33ab880cb561366e26c0564ce9fbb326178197930acba25443e1776b758623f',0,'2024-10-01 20:37:23'),('464303a1ef5cf1da23bdb2e6900e182f89fae716468035aae87090a6ed2c9ee02018ef5a60fa2b87','a662fbaf6975a1fca9d800406d420abc6cf2a35fced3cd63f4362c852da2d88f51b4ac084352b609',0,'2024-09-20 11:46:28'),('464a0f1310dc5147c8934c466b2a0211ebcf5e9f2e92065d3bbea5980bc17db9348b32e322476779','4c4d68cce75d0744a5d78b60fd9602514cc125c1794acc6e28999ba3a901fc29c41342f5fe920e03',0,'2024-04-11 18:50:46'),('464c70e324b5444b150d83247b5abe407d28fad9bd1c9b60c6061a09a775d72dbfd2eda57570dc6a','67b13d01a0754eec2a2d690f84f43c3bb1a9e5d33397fcd65da02b4367de72efb86f88d414ab8301',0,'2024-02-24 16:56:03'),('46532e4b88cc719c864329e4da57937264bbd71f9d536bcaf41ffdfb1d993209a58800a2b5304260','8c8326e52d50c498616487445cb9ff9957c6b4647d6343b6207d61c2d5aad2ea10b965e703078a14',0,'2024-09-01 11:22:25'),('4655aee5967340bb5d9ec857e6ee76e33e80bbd427b72a34c6d0d4d91b1ffc6087ed87213604c415','1ebd9de28f8aa8065fd5234465febb24598b007d1ce91c428246c1e48509351eab5f2bef8b211cbd',0,'2024-06-15 21:54:24'),('4667d67d3a10a9711b932bf9a9be6ee9d7893fbc04509515eebeb79a56fee38c64e16cc52c4f9775','95a4f9b7729d1b5d65700af1a4ea721305a145e758304114070d77add83f138ddba3577553215508',0,'2024-07-26 09:46:18'),('4673a5c08f214ec67f151c8263e1bd28318a1850903344a28ad62746d5129caad5bcdd6c115eb779','5a2d53f1a377b0421158569253dfad58040f42d2367ba965f89be9e748f68cf929db9448743c3d80',0,'2024-08-21 18:47:06'),('4678fdd511ec695cfe6cdf8692269398e6698bff30a7a4af328cd8d9ae97b6c8aabe748261e76fb0','a653984b4a93d8f07f59f46fba81807771fd10e6cd1d8c7c25590b2c1820424b67e0905555e4b2e5',0,'2024-09-14 21:18:12'),('469d244096fef9fd017933f0238de3c6feee202b6aae7297f1bdb9847282b6af3bd268ce3aa7abf8','6c206c32fac157d0149942440d5036e2505a05511a33dd28fd10e4015e8c44ef262fafcd1d52a455',0,'2024-06-02 09:32:06'),('469efcec0a369a21f4fb2d65222ba77fcef6eb81b24a6fd2959f9674d6f337dbbc8cfdf4d809c49f','c9189bef3d708a1d963302afd46e260b496b999bed78ccc8b09ee59316d376190c9474f4dcf08141',0,'2024-02-22 09:52:59'),('46a995f9dbb795b3330cfa34920f27d5176a468e1d8a3c1255ffa4c9e13d54734755c33ea89a1308','d7682f9f93d1a09452ee8d5a379e86d7692b75e048dd92d24d12c3292a4709962a33317a6f6a79f4',0,'2024-02-20 11:42:38'),('46c7ab2915bd49a2dcf5ca17b0b654cfd26b8d29614d2f6fbc1db230578f13ee125dd9fd9ab83d8b','8bc12f3900e7cc6143ce7123ba54a7ab0754212d30512a59fb7858c6cadb80ea287df6c0e15bbaac',0,'2024-09-26 20:11:21'),('46cb11f7476d83a8c3fa5cdb43c46334e4c7f3354f79d4c57187f00dc1baefef6f7ff1611e216dfc','4327f244c59ecbfd8646ba1d00e9f51a77ff4ca1184a9237c25d459e8e606a296b64e1ba4714701f',0,'2024-07-11 13:40:36'),('46e6ed0f37b6fe13d59683857a24d10b121b2f019d7049bfca6cc14baca5f31378347cdfb2e3a9aa','8add3c1a74f482562e8296df01381e0c89f29850ae0130bc64057c41ba6c8f3473fa0af867b20c51',0,'2024-07-06 11:34:56'),('46eace74de7e5831a872d5561423dc7e59c03ca3d554f93b959e9964e70f2e2938294e5cf77a5b74','c642c529932ff4b67ab6763d8ac8b42f93cd222c29ec7459d840cb290d8d964c98a22971cebb4d63',0,'2024-01-25 17:27:04'),('46ef4327a5c20df8785433900631caf70fa84d1055bf99ef617e37065183c55045fbf2dfc0939c5f','128874f8e6ba550d9ef7f66d4b2db6e8e28b7682076edd4d302394fd742f175ef29f58c0d9c504dc',0,'2024-08-28 08:03:35'),('470076a10fc51450016ec62bd6d2bb851cbe83cc6426b6791385fd9dfdadcbf5d6420ef6a7a152e1','2671af5916e28e34e923614c7580b1ce93f744b94b784407608465292eaa3e6f9df2b3ff46f0b856',0,'2024-06-12 14:51:54'),('4707057fed3c3fefced7b08dad8fb395bd1aae3f967eb2a24f55e6a6a1d5898a6735d420ab270993','3ee9aa72465e1e5f43183903e3e957ed0deaa6d2b7311830567c050f7de296e6c71d63c54bf5bacf',0,'2024-07-04 18:21:19'),('47141a77a5d9f24611d636cd55f40010ab1600364760b78aa576ecb7afa3f087d6b60ff18635659e','4c4d31bbb83d6d606a406d7de550e70d424a68880e43334cd30fa75fd16960a10c95211cdd2b131c',0,'2024-02-08 12:22:08'),('471421a5d7ff71ec79028ca38a2569f3d5dd944796d80785094f4fdde0eead6363c0178d444c78fa','225741ae50d5ea5b6b0130e063b89ff92f44cc4c6547ce5383f598d0a2b5a90672d1793cdadf3516',0,'2024-09-11 12:37:07'),('4742f960ff03fb91b03c3540719f7e8b16ab69ac4af7dc19f815b92a9895e23c4cad274774a13886','3f540c78992040ee911d5764525800d298ac4ad6c540f74be99f0f7d6f51c767fde8b31b71466ea8',0,'2024-07-16 11:03:43'),('4752555dd496fd1ce1daa86edc6a5d47047714028c3d3a27c898dfafcc2fb8eb20571f8ec2b00593','3289e67f071163a27c3e93a3889e2d72b383c1ecce0f828ed1f5d59ba1ee73acf81951cfe1a67117',0,'2024-02-20 12:22:20'),('4757bae12cbaeacd8ebd6a30e95a5a9e3083d5ee8275da81f8dadde896f8aa9013d6169e8bc37712','57f85f25ea1b503c4d5c20aa8af3698f6de0c5da38f427771e72912964686fe127a7e716ac119929',0,'2024-01-25 08:58:11'),('475f88eba0b10062b7979a25c962b35caa002dbe7aa5913d4f7a5a45b65361e37ccb45bc17045178','133adc4f8eafd41ea8e8ec9fe7d00f6d11551aebdaf576b0d4856d271cc531c6cec13852c6214581',0,'2024-07-20 16:43:50'),('47880a9182aa8bf435b27281201252b013a61b558e924a857648489af853e8b9a27c157975758b3a','7217f2299390ad4660b70a434b7dcb38854d1bcc8cb6b806a70e67b1d188cbefa902bfe5e5f2118e',0,'2024-09-30 18:54:56'),('47ac84941eae8aea71dd3bad9d3277fe51a06c8cf7be746774e7135e696c575aa2c6cc380d3eaa28','b0713ca298658f5f04f6fa190e57894ac21814fccd3c7ae7b12f5bafc04a2dc5efcafde7759f60f8',0,'2024-01-25 07:26:33'),('47b970c1bb6116f5a5a11a975c3f275e91221c1f265ee8ccff268e0521fb333011911561d1a235ac','2310f3628b7e9938a69e550b84ec5922584d372f77c540c2ed4858352535b623795cd0a811d2d5c1',0,'2024-05-07 07:43:48'),('47c0f646ce15cf708424e6b642e502e2783264196938e77c9df42a07c3c4cb6c55c70cc564f70961','af33b58e6ca19cd1a6171db00d22c95bf581e624596b27c6014ac2608476068d9df30ebea3b86adf',0,'2024-06-08 14:35:53'),('47c9f7ce9a5a0f94e16bf28fe9715044d74882a690dcc543a8a3b34347aab3a3bc751dd2b96e5366','c2a88fcfcc8475dd83759cfabd7245437bab5b9272531e86e6b34c7a3d715c0a72509021f7ea7660',0,'2024-02-08 15:10:48'),('47cecb5cb69030e395963f44e49062bfe9749ff5e1b21a8e3a7541b7f9c1f8bc48af6e6fcf2d859b','031edfbeaa94e7418b96445b63ea8ffdffff1079a9afa34573216585db8e63c6fc0c3e8990a10626',0,'2024-05-13 12:45:07'),('47d43efc90f6d93227cb62e5d264ee42b1064899355fe25ace6774df3394fb6678737e94ffe39e36','70a604a69b9e6adc57d797c9b7fbf872b7dd076b800c199573cf03219a3af689a385512ac8c02142',0,'2024-06-08 14:58:37'),('47e6f670e26e65082844748f90dea643b4f7af30f99f53d0c812e1d73508b293b77791a65ee5e5eb','c3a41f90199df790607501be90f81580bdb827af2b62bb1c4b2096babb5c480b509f43bbc7d5018c',0,'2024-01-25 12:25:16'),('47e845e5c3e598aaf1d8ef3d55a58148d26b2a025f70bf80dad6111449dce96c26c3c7b234f54e6f','69f9c352949918cf7ad6f27a09f5b595436c78b03458f0b9061d2f8af93428c653986b1ab9c2935e',0,'2024-02-28 13:02:23'),('47f0fa7032432f0aa02e52b8fff8785813f5ff4fe67386c7b5ca1729fcd55bf0fa5d7e83184a2479','d579ae06de448ea41d3d31c9fe44e59183d3a3dd2aac4416d99bed9f135fcdc3854a5dd775609c8a',0,'2024-07-11 12:02:36'),('4833d1c8c8ea08285aa05b116462c69da066afbbcca278870b09c92d0fe6b9d350710d226ed289a7','dbedfacfea4b2a9bbbc11d4c4687e7ee9f4c734a994eb31855fb71c636aff5ec7460239617caf076',0,'2024-04-12 20:30:09'),('4837ca6439dccaabff9c92193dccc40e4bb6d356c3387b489fb999cbb9ae45cbcf8d57b8dbd6b73f','354618f9ad09f22c49b22c968bad6d2721f3f48f6406385b0fe9c756ba7b1feaf463ab85934649aa',0,'2024-10-03 19:24:24'),('485070c5a2060eacec98ba4a9e7a36a207d4f1ae1a38a98dcfcec380305565496829ab62a9de0779','cd9b8effec45ab2ba9a40507668be2e307df9f74e0d6128d2bffe555e5d60b411b954976367b85e9',0,'2024-02-27 09:04:29'),('4856dce10f71541ee1d2d0127826843e9fc7d1d6e2a8c7af79612b004349d787bf4aec1900f5181e','69638839d49720d6f577dfabde6e1697125db2f46f38285d20a6f2ad302a1630f2a4aefa37024ef5',0,'2024-01-26 11:09:27'),('485ca1d24554171ca6a62d3e5cfcf34b70cbeff58913cdae1c94a08863fe8d4d4cabdd6bfd26ac47','732b86904e8fd078afc38d35b6060505251ca5b6e7b1324efa2b2e0be423dd050e5b57564022b809',0,'2024-02-02 22:57:12'),('485dd753b12f484866866d8ada9900058955c866586899c5ee12171189b41ada4d2820e36d74ff55','bc2f4e05ede55cb1129f698fc2021c75038c43b899afe7cc5449f113c2d80aa226e0bd1072b2f980',0,'2024-05-19 21:17:18'),('4888af5518e1c2727848e85f7b59e6e27a80b2b716b85f7ddf57de8943d5b3913d3bb843527d5f1a','6bae7755d79d2039851511923e7d5d943cd1f04796e2ac796b8f663fcf17ef6cf568811879314cbb',0,'2024-09-18 16:42:00'),('48c529ae9e1a6c11671b58dac74b3def9378ba2dd69d82764bd2fc666d24b35a975f735839842581','794717135fec5ed33618931fbf80c6a1a1b543ddb2748213106904316c14446cf04b682e8e43159e',0,'2024-04-28 23:13:49'),('48cc7de783d2f2d077597817773e514c6fc9dae210227e185a9659067dbc23d3b2315b7200702e93','0ccc38449f0c835948b07e9adb7b3feca5389fc7c5140ae4542f0431cebbce32973717e4a007c660',0,'2024-01-25 00:40:53'),('48d9aa7888a4cbd889656403a7847e29ee51792cd72a51cc77af0f505fbd097f8187e6dcca0ccf98','e2e2edc76cf81310f3c8c6082bb91be7f804d93fc35193f68953a2b40fd04537ed6260876e82b420',0,'2024-02-09 16:33:02'),('491d62e8e271085223324067ff16a9a553063626767ec3bd1529304d512c4f90496c52cdeae14d65','ccdc1b2d5bdc0fe5249a30747158beacbaa1ef3c0874ce9a4e010a6e7e5c87db368d4bcdc8502c5d',0,'2024-02-25 08:42:37'),('491f61e7474c4549f5a1e8f9c187a0895cc0610dd9339cf498214400cd2f32c8ee764321983cf3b8','2facd5a6b9a7f53eac8e219eb7162a074e5cdb6f56f11fa161411614ff8c2fb0f989bb571ebc9303',0,'2024-09-18 11:36:54'),('49285d39ab93820d79fe0f468a44f59ea2e39279a918e05322e4922eaa0152da97c66029ac6d0a29','f63356249c8c64325e3944a850fec3195c79550d0cbae1ea3415c7136086977041ec157644acbb8b',0,'2024-02-06 13:53:56'),('494d9ede915620df174c3dd8dcb0f6b39a0cad5353bc20b7adee70260864da2ec0b86dba3dfd124b','54237b7ba88d462ff6ecee3afb8a565355689128a0d3ef647924cb2387d793b7d4a91c8b0fe1681b',0,'2024-09-17 10:05:20'),('4956aa3a8603d653949566aedc8495a770772fbdbedefd8d72ff50ddcd14bd7ce2e1cb381a2e68f7','7098a8ab6504009b684aabc3e1c042a5c25a5c6f0ae616bb5465b09aaa5fe4bd6e5f39d632376783',0,'2024-07-01 20:30:03'),('4957fe53ba9f7c4269da7fa8403e520604780824fb8e1b0d499f0bfd71fc7dc23bc058e89476dcf7','2d6efd0dfcac47fbc1f20051c3f19e3c522715fb2f4bb619e9ba2f864ae3a183375b1e39ab6eeff1',0,'2024-04-20 21:59:40'),('495c1c6fd210f25e7e9ff59f4e94a7c5ccfba9013d60e7336f07ce0095df932f86f6510a0d0e7d16','2cf11ad6979570694ecc43d26d7de94c9e1363d5537b9650234e11d1e182fbcbf56a06bd375c865e',0,'2024-07-26 20:39:52'),('49658b848abad2205b5b6b192099d2b99d677560ed1fa3e4014dfddf8819b1338fa0a097be386a50','425af58b8c14d35891a9a035c48a5ef447d2246c6ffdda9b85a6bf4e39c47f72e4efafc4895e950a',0,'2024-07-11 11:20:30'),('49669f0509fdde7aa6bb5d407aebcb7d2e447808194e1010500d75d30f1ac5ffdc96e2ad00baa720','affa4585ffdc3ecac2693ae0fae9d9a0016acac4acc7d13cc2251cdba490e1fbfd4bc74372f195c0',0,'2024-09-25 11:14:44'),('4994633da85710f01cfee61225d1d6fbe76c4007ba75bd465f60f47e8260ceb522fe5af207213ea5','b1541ab30c0f99aab587417539633346a3b0c3b26ccf785b6e912351904532e42101953ce2637b5d',0,'2024-01-27 20:36:48'),('49a29154d63cd4bf429e2e92debf57feb2c90a7b26864d29716c307973142803a6a18d12cd83cc64','c784300977c6d211975deb150d153fcc88bf088e657df5f6818f3e62c79d8d79f1c3674101de7db7',0,'2024-01-26 12:32:13'),('49b25d56790837007fd67871f613b97b50e018cb6375b32a21ea9b776ed1925c0a8dc1363f318a43','26ac0bf49a94d3c52ebd469068e18e0c185908a9f1cd619e1af5a4b891897a3cc889d6998fa9b16d',0,'2024-02-18 09:33:36'),('49bca8c7d706905e52eb89e545065f547ec2b8d83ef3a9dc66bcc823cccaba8b185b0bf51eea9e51','0e13c3707ba6187ad2b83f62559cf53523e0b1375e5b83fc30fb764ef13894598f3ef728d8d765c9',0,'2024-02-04 13:17:31'),('49ca7cf111897462d2ddba4b1efee92b4d481a5ac54cdc31ddebb6822826661bbcc944c9b376dcbb','d4d06cbbe16721d80fe19194073ba5908187771bc9f70d50d3b6e0edeba89d7802bc37ba1bd73fe8',0,'2024-02-20 10:17:03'),('49d02cd6e9ff44b9268fff8a31069206643d4f3b8bfbf1419c4edf57556901631c9fe464004aaaf0','fe2c74d9dc2fe7dec025d56a39e5c2aa684fe32c192ce75cd48da60fd58f7ad0a88972e56542cf0a',0,'2024-09-13 20:21:48'),('49d07f0884609f176c1ad1693471c1d96d45f83dcc7f8caf52e81b3084abc6e93bc9279b30310c77','83619bd498c9da1d947526cdabfc35a778fa7195ebf9e521922a111d30c007778b429452f2b0b62d',0,'2024-01-25 15:37:13'),('49e4e5ed037dbb4bb415ed397cc89908098fe09dc9b59c1dbf1c583c3b2b9e8a10f32b9407068af6','253f6791a21f84da6bd3a460456ab968a6d3e99ba836cbdb909844b9ac6f85b99c41905f2c2d9abc',0,'2024-05-10 14:29:37'),('49eb5d539c3c13154459c6bfdc161c873dd7c608131829e17899809e358d7fc0a24c2d6c228133d0','52f3fd0ef0db37e2ade300129fca24231d5d0467ac32f5237f55fa1f59de48eac560f908d82b6991',0,'2024-10-01 08:31:19'),('4a039682b61f59b0f45897b16ae8accd0f89638b4dee87c6db71039c164938bfe6954bb44496ff12','7a8246ec032112ba95c99624d7037a65619495fc141ea5aa72dea3093ab9caca88358295073bb55d',0,'2024-03-24 08:20:05'),('4a42ab106d996a8d2d5316ee49de2f26b1cd54208a69db3f06c1001f116ef73b048c81ff0c0d1a2c','204d8fadbc2b7ae88bfd84a5001c9a825b15cf786f14e422ab6a58a8cc6e50ace070f22b67a46c24',0,'2024-10-03 23:42:49'),('4a618dd4244ceb2d9262d64ab1bad652246d3c896f861a92e7762eb1848cdf62fb97ef686718d41f','e9c8df0c0c89c36e22fd22cd1daa3177fcac6c80754592f2cef4719002bff612dbb2426b015b44e2',0,'2024-01-29 10:16:32'),('4a6a5f1b5ca7205bb6b77551c313ee6ce2c4e60a4b9c49a74c98222c18fd611105a2c07cd9ea13d6','ee4dbdc956364f506c716d5f93ec1c1d85603137de4ba4284b70348b1ff928a1e2fbe7c6274a9b11',0,'2024-02-23 07:07:18'),('4a6e169b0dc97a988349a109eb4f7ee4644188326d37dd2dc6ef340921b9ac44308ccaa3a2f9c31f','d456d949edf4ff971d4c18047b7a0ef4cf7caad29959264c4d67436f91612382a7532789ab1a9399',0,'2024-07-23 12:02:41'),('4a97490c7d4fbe17834d2af5ce018399c01bcce401bf895aec3af994c3981cc53f7b276f24978d1e','985fab0bd49b57311f6d1340c7cb26ef7b9e81a5140314f8a0a7e50ce99e4daab330346d5f0af503',0,'2024-01-27 19:04:58'),('4aa02a707508c53236ba11162802fcbb438cd0441828f660da5393f8cf837689e59722444802c8e7','60f4e864caed1e7d7cd91d6814f9741cce46ce4c0924c4e737d35eb55191ac4a039ef65cd5688b76',0,'2024-07-02 15:15:51'),('4aa469afd0fdafaf34270299ba1e8605fe54542c79c7ab75ffd32a9ef0f46da6360d038d461238ee','d5e8d4b09a7741dc35762c6f813ccef5da3f81e316f2caeeda0fd017412e1034b46148b31ba8adc1',0,'2024-09-28 19:22:37'),('4aa4bf9a7ca7e93fd6fed5165a03cc059bf98eb88dd1b4a7d561737ccc5f7e12b097eb56afd1000c','9555a282f87472b29178694ce5e969d14229b65bc33f845937699bef0c70c08d9904f8880f4f4d87',0,'2024-03-19 10:12:01'),('4abffab3a92493a1b577ec98c5a07395a74233f698a5008014131926d3f9d25971cb35906023d182','8aab73b65405b93fbdca7da0104620cd9e686c04ee63f918ed06a62879c6e24e94ee7e8163c32480',0,'2024-06-23 11:19:41'),('4b226d6c0e70454fbeaec05a9828e3a0dc18b6883e7ba19415d3cac171a4673ae69d1f953b9d8a13','4f3e66a9e2da69bfd3094b2cccd5318058b182bb367956bb595b7ddcbc1027becbc8a95e7af51200',0,'2024-01-25 02:24:39'),('4b48ff0ceeaea1f7bb94ba2b2efeb04134544380515349626e645fe86ad4257bd4e632a8fffbad64','a6333fd5b2183ee9566c51c0edd4ab1f41c17c21fad782f64b90dfdc40f5338f1e83b3073a717fa0',0,'2024-04-23 12:50:20'),('4b56e92db2abc656b57233481fd628972654f1ff78470ab20dce0e9a2463de8cbbc1a3a2b9608cae','333f04aaefa4cc302bf2ad97c94b1f971af34a1cf7a3250616440269b92b8e732cb2de7a1438ba2e',0,'2024-09-20 15:43:31'),('4b57b213ac5a39f25784f335c1bf8c010cb0a68d238aea2198b9348421d6335677f6c8a15385a136','2bcb6d5381c1df431741d829056abf83dc07e9941bfd56def9dbf8fac8ebabd151f57bf9ee728e56',0,'2024-09-23 15:01:23'),('4b73b09be3827486444df74363eb35a98962c9d39512c454d075d71d44751551a4f0219dba43d8a4','f071e200bdf2d954675697d814911cca7c02cb1f24ef36aaadca5557be72abb092fde26d50e031e7',0,'2024-05-02 04:32:11'),('4b8907412e7d30d86ae6d197641662961832b48b6c1a9b87c567aacb2306fe503bd3da62123d733b','5a412cd454fe8ecd6a5c68f2b17cf04d613f273b6250700caeb3a2a8099184daa9a7314da4b5ccf2',0,'2024-05-23 08:47:39'),('4b9e97e1881af1a199a086061fcf41cb69efb0ebd41089f049d83f9d47bd384cdb09d101733a5a72','0ec95ec1f584dccfa45fb0da6224040b9f47310d81842cf6c89975953e7daed394bcb5e129a4b4f1',0,'2024-08-02 08:17:37'),('4ba3ee68ac06551cdc29c7fde5e53e6b1ff0f366d56d6bbb21df252511a50e94f926e73ae39bdd0c','8d84724be476d7f4834df33d968fa97913eff83e4e1e06643280dd203079be39e64a4d1e53394555',0,'2024-09-21 18:27:51'),('4ba52839e65055c9e8e5ab836d585715a3c06ab0e09a64817cc1073dd3352c05b066efc36be81c0c','1f4e3a85050d0697ca1abab9aa670dfed9604ef6dd3bea18f7d07623f6bb634f1ab4b431305e711b',0,'2024-09-25 12:37:15'),('4babb8602e09930a9a8fda605982212f0a7f9336e7692da6d63c9ed1d31c3c6c1e738ff19cfb0887','647e3ad1ad5556e8a4eac5bace7dc74a6f1e4179e6589822b531e5f04b798b1532f14430391224db',0,'2024-07-06 11:39:08'),('4bac7151b5dc3bd13a801c46e5b51c1b1c28b7e973a82187d10b77679acaaf1169e78c2e8f4fca0c','9a7afde07f18d6be9037a1afa07c3ea0136e3a147fbb0f4273530fa14bc39b95da14638920ebb6fb',0,'2024-06-26 20:10:58'),('4bbb762ad2a899d3b29ba570d2781ee88baf00524eea86da0c56fff27af6e83ffb019d94a68a50e9','59de1b8081453136e3788bfe75af7002e079fc6aec2d0094734c447531b90af18dc2308e671378e7',0,'2024-02-21 20:22:59'),('4bbeb4595353588846a36b794d1123353e52a0afcf1008759aa21111bd1012558a83d1093176302b','f2c88f89b37df81ea1541ba4b9c56fd167de9c40f7454a501517bb00c4091a9b62ef66b646ba7e0e',0,'2024-04-07 09:24:35'),('4bc511d59bede49ce145d6680c8dc77a49b74e2cdf3dc08c5e3aac29478df79e33b6ee6260d8fcaa','8ed4d6c075abda36116e23b1f24c7d34deb0ad0b50929f7a7d4d24af4df1b50fb397cef77288421d',0,'2024-05-08 23:36:59'),('4bca51f2b34e5f8381b71d286e8884937151c97e430dc8e2f9ef2b5cb0cd5b1e24324f7eb60391a2','0530f8eb2aacd1e29add6615bab8ad661d95de526435cdee2d25cfe126ee77fc665052081f87265d',0,'2024-02-05 14:03:27'),('4bd12ca66d5d0b618db4e0d1d0b98a3aeaf46dbdd9379ac6dffd875992af06535d71e63759f05ba0','0bc22b3c950225b8f9802608cf3b86edcc7f874cfa1534dccf42a8499eefb3a441323e3864da6c90',0,'2024-04-10 12:27:16'),('4bd9f31f382eca71a1418a9e3bdc33fe33132bfab57fcfd9d66c590bb5e064d362f8205153c9cff6','c5b9e5b97236cdf11d6cb87541f5193b5f82411bc551683623250bebddc35080f39ac38f5433e44c',0,'2024-04-08 18:37:25'),('4bdb5100803e882927bfef30ac9ecce799bfd9493ca6edb313d2445d08a6f6e77475bee0871aa650','0b2cc89becf3eaf7d00500c267c2e41f75d951fc65b10b1f837a1c45cef0793355c1d8010bee771e',0,'2024-01-31 14:21:50'),('4bdbcd5cbe4866bf1d6c2c18709a870a2895846d1fd1b45d642d9f12e2669e1568105fbe0ee9f25f','95f8b9249d01c0d6dbfd4bf32cc5f542adbf066cf4ae52a1a5a0eeb56d553c1d432d3366c9ea32a2',0,'2024-03-29 15:18:03'),('4be460aba0190ed5e2d09f60dacf4d4f8a2731e2255b5d05ec4e8a576e41b482942e9525c8f9ebac','4501aca4da915ea0ed32d04e214d6b28bd52abf431f63e2ff5d41029fd247871e46f388774c80047',0,'2024-01-25 06:58:59'),('4bf730704b1dbb7114e151bb9dd43068c60ae3c1539b67a3a2cd1747567f06ecae62e9dbae36eb9c','5f8f4649c6101f04c6ce0d72cb804a0cf8c9bae7c46216b85da9d7508e259c6fdbce4f50eed5dba8',0,'2024-09-24 12:39:38'),('4c050a6d1be694bc66986da54307d87854c7a440ac9a6e5273e1db472f0beddbb2ec05b844dca4be','b0109754199232d3623aa3051ca77aa56f333a9468faca1fba0a102423113ed120509c4afd11c0d5',0,'2024-01-29 13:35:01'),('4c0659efa8d6e2e0013c823d3a4f50d73cad514cbe1f5e2ddf435ab6868df7bf603ef355e1d8cad2','f6f8ec214be9c7a591f524e1b71ea4f8a28e68a917baf4d792f263b79047fba10a2438d4475b63ca',0,'2024-09-22 13:55:54'),('4c098cadc1ba02a221d3c719f29943a5731d33de4e37f45149600a9a12ed2df2bce5cd3825d1775b','2877d5ebe38f381d644baf9faf94fdf521563a9bfde7149d6a82015886c7f045d25879133b1b1581',0,'2024-07-24 23:55:45'),('4c21793a1d2a515d74656added7802eece868b2db39f59af4e1579cd56c6c48bd3191d531ccbdfa1','2158e805d96917b00792f68a5daacf1e7136743aef05a150776e8cfed00133bb019d125d8352a2f9',0,'2024-01-25 09:32:33'),('4c239f14c0171bd16a3f759187c7e68b3c3b9a4bb4c670d7e16b8f7c51fddd7ac3fbc08a3af75d8e','86988faf7f42ceb5da81abc2d0495e89f8b43fdf44bf1daa98b040ae0bc752e198f81b91b62756bc',0,'2024-09-06 11:46:12'),('4c2cb78ab3caf5faafb02a312881be121d0f65aa6b3311ecfb78afc9e04898fb5ef125798b899f25','dfa830af759de8815a230c998abdeed424b7b13e04717c73a90e2f078b9e170dbf063d20a13195a8',0,'2024-01-28 19:15:37'),('4c2e51518a8d7cf7b65ff82d9517ad886f90477b1d5da037a425d4b2861026a5f2ab5b1fd35f1f9d','b7cc367f2db787976e4b60355b917616e6ad87e910b684f4a3a1b3c41d7e029d920fac5efa924bf1',0,'2024-08-22 07:02:21'),('4c3536b91109b2003ef6cafd6f8abc0d10c0bda7f299f69103466383b201ab04e690c515a76cf168','b4a144a70391d17e9a9630ea591e13449062a677c5cb628de8524134889a055fbfe024a1724174a4',0,'2024-04-18 22:08:15'),('4c35d488a1c6a83592e688fb1da70cd9376ad90ccbe1588e71021398fbb08f5910f3d344ad8199d8','5cf966b47d347dd49130e8b118510dbd68f5fdf2459d372e33721acdc6d728988cea253132435338',0,'2024-03-06 14:08:56'),('4c4e6b53719ef4fb487fb11da3f97342f9008b31c2ce8fb8aec4e1a2a4462bcbfa544d95a7fda46d','ee2866ca82ee98c7897182532fa9d67d907d9ccdb9ad702b0d9afed133a8ba294d7af1bee081d447',0,'2024-03-23 10:09:48'),('4c6e24892f317c2e1ead7e7745c615db91f60d1d5086f33565c4055baf7650885e8dc901de428a6e','bfa1cefe0b3b96ed85efe3af28140297a492ee1ebb2ddce8ac48317050a566cc256b53115cfb034f',0,'2024-07-29 22:43:48'),('4c77f19101544d5e1ac5de530d47b0ebfd6f24ead306e26aec397ca19433f24f5edf8eba26c7bed5','d4f8a5c5a8acc44f61386aa256aeb6a9991638ca9141c1b2e3437cd4616085f17aa5f50ecec0d384',0,'2024-02-20 11:51:20'),('4c78377887a958a20915b9da08701194ead513dbc1e3d78c1832756bcea24127b6cc3df04b57ccac','946982ecd48595e01c274645fd880cf8483b80b6881f30ac490ff19f1611d3f6681d4dbf73dc7af0',0,'2024-07-30 08:11:48'),('4c83ae7789d6d1896075c6b3d991dcd6985fc6b8ead6aa109815e155cfdd58f3d4defbb800046d9c','26cfe4a4672c123a7cc94c87bccaaecd2075784fe85cac3a86b1889067a760759f497afad93a8d9b',0,'2024-02-08 09:51:20'),('4ca3b6ac100cc0a20d9d8c71bf8c2008981b780d84d88e60d2e12c5f9523f9484787478c6e813d25','66c54389b12ffba3de2e270f44a37fa91f5eece44461c7cff95e276ebedf42285a242d85d9422257',0,'2024-04-23 13:59:09'),('4cb64591f9736c86b9621882420284e8c9cd1a700a6e120d9638ede722300d9ff9a03a782ee67189','166f2b4c1e061e797d38df9c48ac15984dbd718b4c21239b0043700793b7524ba3fd8d7ce3b3273f',0,'2024-02-22 18:13:47'),('4ce3a6b828d3c299a854ee417be36726f61a9fc09b660425d92a74fae54e8d644fb6f401acafaa73','63973e43516c55b68c9d45c61a455a082aafbbae0eb84d755e46115bb35c8a92f41b1be8c6b88072',0,'2024-02-18 09:47:18'),('4ce824465204855a7e105a8e062403bf36f7e92fab101a35db462bf493c70b881870d7826e3f862e','3d4eadb5dcff7f3b20f1f371d71b014c3efb014d68055b81f93431dd19666df250291b72e39d231c',0,'2024-05-16 14:03:00'),('4d390f5f18731d97c4d0af20bcf88af44a1c5f55690d0d672001f3d5ade433b46d5d747983f86d8a','f00525faf57559ee01f70949ee90aed544aee1cfaa25b8c04982dfac873c25b06c5e197526f1fd62',0,'2024-05-16 15:14:50'),('4d514818e2cd6a07397fda255ab3f5c39e301cc8bb62ccad0736bdea87860091fa20994cd8ae2052','8e344e6c2cc0a1128905cf1cb97b411a30faef5c50ac27990ecf913688d0a319553304f9bbcd5a24',0,'2024-08-26 21:08:25'),('4d5617ad29939b31c4572a3051089d4c48b9c4286c9c31429c3edf4572aed99e944f58de3ccdaebe','68bc635d845c81affa13ef919caa13103f62d359b9ad1dc08d1e4d63e238bb8f9c346697ee5159f2',0,'2024-06-03 06:11:08'),('4d87a34f7e9a5a144331b03657f8181928361bced64a9059738370acb8640f9ac1724c5b4e345715','a95cecba77a7cefafbf3c22fca5dcf3be721928d260f79a7c69e5269b645200e672616870365366d',0,'2024-03-28 12:41:19'),('4da31d643dc260adb201ee1abf5520d46508c0ed09984d413517d03c1ffbddcba156b48f4e37bea8','15268cacddac6934d3c8f4c5185d7df9ed8c13f12a0f45ba9b65d5c475719e8b7cce7cf4e81d6acd',0,'2024-06-12 10:54:47'),('4dad341a7292a1b969297c3d62546ecb2b3a22cc26eb47abc86a521341c6c6890787f4e9725f38fa','b04423fd0654c77166829ec327d60954cf41d6053d400f85e220663ce1c0209518668644c12db8bf',0,'2024-10-04 16:43:52'),('4dccca8040b95fbdd77ac4ae59c171223ef6a5374c9fedaae913fa1abd4e25b8c65eff40385500c4','58e0f32e8d281a1b125da0a70355fb2e34efc1cf7565879721ff815e96891f04b0ff8b51839d2cd7',0,'2024-04-10 21:35:20'),('4dd04ca5b73898d964977156af4ac001bf33816bbdfa8c090e2c90b189b8d21a9036edacfd57df73','d16463f2f689768b82c5e9e0935c5848d415dc6157528b237c1efa3c4de3d18bc0190a009c8e2c6d',0,'2024-02-03 09:20:38'),('4dd35c6653f4106d6df6f4dbb87899773f697d3caf7779ea2dd3702f6674580178ddc1abec5c5489','c7032311f8a680bf680a0e48e65a9d10035e1c3f8be00c1bbed10538dd1ad5a7f2d4e54a1f337540',0,'2024-07-11 12:54:19'),('4dfa90593dba758af63b663771dbed5c65d63d5e2d91b1b46086ce887a1616718b6bf8f805c411fc','b0fde7c7f94860b8f87d58a23c99b3c4adf5e7a2b069cc20909ba723a64e90e673338c1e6e1bcc36',0,'2024-09-21 13:57:15'),('4e1e4a1f64ea877e073e4a12db74d6b647bca06c49a839111e76402a9449314d7c28d92fb3f5e682','d4642bf4faf7feb1944bd6c7f235c3a74f9f86e542b9f27fa78bd12c1ca76fa2fcde78e42f491d75',0,'2024-07-16 22:05:44'),('4e24c6f567bab9cc300b8ab5c29c67f455f6f198699674841cde9bbf0651e8a8a3353a390991493a','912a0fbb74b493f9c9bf19ff8b9b2faf71918ac8a070622b6da5179a956e2e34385838c2645b3da8',0,'2024-02-25 20:46:25'),('4e26225a2b6d82910180c78fb3fdf205716b523fde7dee377969153dfeca1acc43b7513bc466b652','d590f63d6bc95d68ac67da20dfdd8962309588837c9f73c1aa2c98a65a8dec19846b32f7f09d1c57',0,'2024-09-07 15:30:59'),('4e27250db68c6e68cb661d20002b92382078a1f63f30436704d346ccc8f2917ebae4a0ac5d5f2ab1','04d558d6637dde0641481edcd4da2a802d7f99a75a890934a5b24327a30ac6fed132ca7aa29d8f03',0,'2024-02-02 21:08:33'),('4e33f55da0a7c4b5dd680008e074b81b3132208b03cac3835e654c9c888241a5ad870b4ddebe65e0','0853e612fe4a30872ceee38fddb0ad07a0ba1aba673099ffe1dff45351f1a13a44949f31fd2dcf87',0,'2024-03-17 23:07:05'),('4e34d8617642528c921ff74f970c3edb6aacfd50b8c48c57b0c50055bb35baa848fbdc5b20163477','5545a9cfd680b77a6cc6be55f9407a77061a315380953a3fe08fdf11003bba3a11ba1bed07e4e37a',0,'2024-09-04 06:46:51'),('4e39ab721a0701e7f6276d5b144d1c4ee993181872525b91711657ed3f2de16f2ed18cf687bc66db','97a9e1a9efa78d9516d9a676d9350471091127fcf36f52795e186ab5daa43217336efe03d3d6b691',0,'2024-01-25 21:24:34'),('4e4fc039a6ed2f61a90cb6a876b6320eac00d10d2a35615277b0043df0e7734c2cb783459c504a64','d545c9f8f5ac869cad8949b2492d3e27956d0e421d8f0acbbdcdc08a15ccebea9390385912d7324d',0,'2024-04-28 11:51:07'),('4e5fd2a1843bd008aca3ee2ba6753d92c94b30cd1a0df0461d3863ec27d85722ade46d8b68d09772','2a31031d80caa4a3ef89c96b8e70cc0d5068e9ea7783f0dec15ab4aab550103cbe299972f43610e0',0,'2024-01-25 11:19:48'),('4e60b908004f190e498fce93af4dfbc836f226f8c2702a4156fa3f6e2f157baecf26643be3544c10','ba9a00b1fb3e28fddb31e08a073bdbcd60622e94e27b9531b4bea55064323c1ee7531690a1d63638',0,'2024-03-23 15:05:36'),('4e650dafaa9828fc38183813a80a5cab29a2b1a8d825b3aa157ea9e0d907da000817a4144c86bcbf','308ae0c92e1e75278a9eab2702ed0bb35a035877b3b0e22d475eb595e0db1794b8415c3dfb3aceea',0,'2024-09-23 14:39:29'),('4e6c678e820078044be8c4fea3a724cc6ec0741dd6eaee9703dc8863a4e643704a2cb344ec221fe0','290114a4208bd86c187725f3cce96184f9a7e5a68b4900dc94c92a9391addfcdfa848df3324e5b0c',0,'2024-01-25 14:22:09'),('4e770aa5b39cfcf309aa515010bb8eb7d8c8548ae0bb8c6c2812c0d5351f74b6356420fa60725068','832ae7f24e06e31f33724d466defdd1a574706b79944befb59a7b32174dafc2d399a2f3dc21013b7',0,'2024-07-03 08:33:58'),('4e779183aec83f8bf18f3c80504e375050ef016ea8fc01886de20f29a0533352f71de665a390157c','acd1a4f420340592f8e8dd39afb1aea1c63b8b7738306dac89cb6b05e639731ecbff8824c5d6d5a8',0,'2024-10-03 22:17:58'),('4e83899d9c42156135eb373956dbb711a243fff0e7c14042df656c8a6dd7675f15a224c08a28a99b','591a57d521e12098cfa4d2839d06e90ede6eb0ff91b00e98bf5f1bf07fc450c492988083ce7d267a',0,'2024-09-13 18:22:04'),('4ea5d505b92fdbc94a986dc388f32ed278c887eb90e799c0c58ee23a0185e558f8b18fafbae3dc2a','060f6176c0257c7663e3d3e9459b8002d887e7fc322949468481f00a5681a16f031be8eb43f55f0b',0,'2024-01-25 11:37:42'),('4eaa694a4f78e5ca866850c68f36d27d14d4ad0e9d56e652836c7fab64b45e621f2d22c954baa61d','428fa87065626baeed93a2e7d4ab3895186a81173b9b72f4db095d7c4aa620f003e2b50dc2aff95b',0,'2024-03-01 00:25:49'),('4eae6363075ad162d4f89b985a85952f3cf46507ce4560466fe43c8001dcebcd2dcc119582b1db47','67bf9fa5b01ebf8c2f71c7ca52b3c6910c946a3be997877903ab68733086b4459dbed22e9d013489',0,'2024-08-08 16:44:29'),('4eb00aaddba96df25c9d1d1a748c33d42e1a4a70e0504596539894c7c2fe4ba94ab22e2cfe86fbf8','f79a77faffce40f7b02b5980c6374112b1f1e6eb7a08bac230fe6c7eee4ecb14e3e5f22f7adfa794',0,'2024-06-27 10:47:58'),('4eb1e8196445920facf59e075734364214a6f26fef333a27d1e67b0ebcee98282b14fa6f4dddbe11','ead502ea711174612816844991634428fda3dcd3c05176564b26832aa1bc7bacb996d7eb92f87e06',0,'2024-04-03 07:40:54'),('4ec42c8084774574082a6186220d27b1c1f5d0e6f07f60bd1c24c04af8f9d1f2b762f2b3d300697d','6b123f4b3a9da2494e2c1b1805dea66374397d267c55d1e77e4ffb0427839bfd5a3cf575809d294a',0,'2024-04-28 13:03:06'),('4ed0fa669e4549ab00a767217cfd3b3e0887d42c55997431f3bd731d03dfa41b6885e6fa4374ca94','b15cec648582648cf3018f2cf52717768018162581ff16bc020b01174d3404df32269f7dfbad74af',0,'2024-02-08 11:02:17'),('4ed29dc99489abf76d8499c6fddaef6d674c9033bfebe33e7a9c638dfcc7900a41130a4f0827c837','cec6ac3439a0391268c3eb10dceaf5ca087dd9310c14954587a0a65b349d15b21d3615cfe44f1402',0,'2024-02-01 16:26:13'),('4edeaf98376dda202115b745d0278a4f8155628c8780b90d420b08002b4a175a4fd4a16f7c490a9f','ecca22fd4763fec52e4b8d87f786cf104c4cd6dba8390e35890ba6c3f825cfdba1285f3deb1d285d',0,'2024-06-30 09:21:24'),('4edf9bbf08f9391f29dd8b5760a9187798a752ad188325e2da3bd56a58d24a56dd3444dc83f77012','098bd703288f8bd3f03a57c615a4c750d0f273179870696e304a57cbdcfec6ccc2487148b46f80f4',0,'2024-10-06 15:24:43'),('4eebec74ab3fde581a176bed8d0a223e5ca411f53602f475b50d778a3ef940931dbb69c6719f458c','b164e5f54fc0c05025360852542163e9916cbd5e93a02b6a2474ced03780b97e748ab488c6af1f55',0,'2024-04-21 09:06:19'),('4f30d3e5bcaa092c20def50ebf2ce7070b3200735aa97d616ddac1b92712898f1da61f594c86b298','5bb036ad72741267558ee235f542768743f78723ae0032943188554e504f25f870dd39dbd99c376b',0,'2024-07-24 13:06:03'),('4f47d18908c8770a04a2a0ef91d937d222ce6eca8744743b0caa2fca03f7d8e408fbb6751d656205','eb2e8196348320a1ffb98375dfa34eb6cc12f38ab1067f66be7d487ff2d5fb7614d434e3a145d367',0,'2024-03-12 13:09:12'),('4f5ffe2ec557a86cf2e1e971b7d3be419ef4267f8998ec2d840db88b0bd2e3c5abd425e1c9dac7e6','cded1b1245f0e8ebc437aa409ea838dcd07dc7ffa5c7d9aab1edd429f13c0aab72969d9aafc81bd2',0,'2024-02-01 22:18:00'),('4f6f423477c7dabc5802cc3002b7b8b7b12309c3da9da254c20da213807359e0d54953625b1aac14','cfb4d0957c3b99321cc8dc92861a5a563e37dfc69733ffb003bab74e500ed900efab202ee636aaad',0,'2024-08-01 14:06:59'),('4f7bc484c860da2c369959f48721bb9ac79f9cdd6e5e99daddf7eb0b3fc5a14e2507a723d63e5fa0','686f876be15de0772ab7c64e38d3efe878b750cd9538e005a1fd5959adccbd9f5387cd637790bced',0,'2024-01-27 11:01:40'),('4f8143ae23c5c03eae357e9afdceb60a6a42abfce422198c07ea97f560f968c35d954fc83dbaf295','0945495f04a55061041290b4e3de71d8c332da5d19e6c4b05b606cae52ae3144b78bbdebb6cec05c',0,'2024-03-08 10:02:30'),('4fc4b6226f1bbe1acc3628433ac4539287c4a56b404026661590577982fcf0db75fd5cd0d178fe24','6326e06125e2e68555a7ed08fa3eca03c3e6d9a59c1125370123b200ce8478a865a8c80293395d02',0,'2024-02-14 16:42:36'),('4fd4188d22043d2e9b15d51b8f18f282aeea316f81d1ec52fb312f9b56515e5ecd445296d668ea10','b0ac79308e7dc98b84fe7bdd4357eacf7147d3363b80486bb76c0de077819f2a183874a89a85ba11',0,'2024-06-16 16:05:33'),('4fe362d16c44c8a332bdf9d452cd842ca8051a07d6a82caf443d445e46867692622a5616f23a7d46','550caef43763fbc8a418428faa5eb1781a03af952ef7880d12d03d2e25f380117ba5094687c6c709',0,'2024-04-18 12:50:27'),('4ffa049d58ff50f8ddfd4bfa08891f1055bfd7dd7359ff9caf4b08af76c18bf19c52e84f80ec92a6','7fdb1a52756fc6336186648946fdfbdb09ddcf4fd197d0dbc8d9c9069632ac217cdfb2dbdad49227',0,'2024-10-02 12:23:02'),('50016f71106498a310f206824af914d16da25346cc2b7fe82ae2eb45a62d44c6afce6b166df2139c','e1ff67f70892884cb3d47b23754a89b07be9ab746dc12e73c707c7ba71b480c9a158b3506620b552',0,'2024-09-27 06:23:49'),('500363ffaca2ebce5cf5c498a1eefeed955ab0e992d092c1f6db76aea22d2403dee39a01aa04f557','06d7e942a5079506f83600d93c74f32327890802ae8c5944f4f78669e41978dabcbd058161577a5b',0,'2024-09-20 21:27:55'),('501a1b44a867104ac9684a7505e93c07c15951c1b7f896681b4c8227613ae8f7aeacebf6585f5488','055e0d9ae7df2f060cfdd63136d2154bdb74eb1177e01bcf5d5c872f23528a4d042a8c03888aa5cc',0,'2024-09-10 08:51:27'),('501eb6bb69b1239334b5a7ebb6589a52a1edb7618b98d8562eaf7ccaf9fe412a198252025912bb9f','54eba2b5c0e032ea79e69d58b4dc26024cf3ba3d009cfe41f4b0a0982157c8857cc793308acdb0f5',0,'2024-09-12 10:00:54'),('5037587329122436a3ad03a8e75026f69eb05e41e602ee6725f5615f7ce13e2a76e9e6c30b2f3e44','13cb5b8adecc7bc6411f225ae68d62651177057f2e9d915ebb1551e53f0bacd953f099e4494667c5',0,'2024-01-31 21:59:31'),('50385391e4e29487cd2bc02d5e25019f934202328b630b9891dfcee8440e1c73d1d2261e924e52af','4a7146f57bdb9923b5d7a0c925dd0779fbb58f6ef938dcc0fb33a8ae414b50aa28dec3140893734a',0,'2024-03-21 18:01:48'),('5052a3150756d1cda47c7f85c61d02751ac973b02a7bd199f41dad994b1f3dbadff0ea4ef7bda7d7','49b22959c5385b80f3e8cd7477f8daeec62f10fbe7ac676d6736ec97d9d1b6c0dc3dff35026327b2',0,'2024-07-21 08:58:33'),('50533ed7a58c68782912a6e8e33a6a71ee7a7a295d4a32f37853b965af17e5c738cf3ee9a96dd737','27face47dc08843a64ec44caac96841a78209e541daaea84ad6011ce32ac96e8821ff86f212b5516',0,'2024-04-09 23:15:59'),('5055efaf2a3f8f169c65b128b89c0daeb49ac559c21e981b4cd1e9cf54833658a5af4c03726ba5b4','69fcf51251cd7f1452c013954a89f89cdf1dd67d58a5451672dec95317633c50b68eb96b0d8a40d3',0,'2024-01-25 08:45:54'),('505ddc14a7596b13d9d68a7a321484e77423c0b09323ed5e4883bfb7cb9d9517e0f75e832dafcf96','b337ca03f7b910a5e6b977a1ab8d29d360c790efb701f73de3fdce0f4901a02599b6cd40ecab9204',0,'2024-06-06 09:21:52'),('5060ba1340f93a3de9da49e5a08bfe9ed428ea06dc9a0b05a779a8784d158544fc5d4ceea89c9790','c7c1b79175575568d2aa5a80f92d3ec5ddcc897128bd6fae07a2fb8d5cb1919ba981114e8264c628',0,'2024-06-19 10:07:44'),('507a45f5ba4c97d8fc4c2a3f3023a926266972a5d428aa2297489fc338505e409f0964f4a54c2273','35766c8f8cfb97fa0c94278342d6b9637d6d3cbaab8a72220763f8a2db61e1ad931f91ce4845ac68',0,'2024-02-08 14:40:36'),('5080308ed0d25fc5e9ae5ef370eec6a62e7b94d3c3439d27644ccc019777f0934be4782ba8785d89','6919c3dc59dcdabf047952c366f3ea26b3df2869dc5fa7953ba089ca8ab323980f74e2358938102d',0,'2024-05-19 08:58:09'),('50824e1a6896b9c93be9108ae26c659d9d3209acd5c86b8869eca862293f1f8022b0ffac3e1a7155','0b9b9ee7ef0c7f8e24cab443ff5033e1e04cb379b9975c9be22cd9452712b9ff9042d6d67c22fd50',0,'2024-03-12 19:41:24'),('5083839c289b1678f5839fc086b4f58d618e4eb7c0c48e2cd8b32f2cf893673ddd1b469f0c8a3ad5','af9ce45fe8133bdcd6d842bedab35c52d83615e9205249e55753ec51f543fca45b0f21adec9bdd40',0,'2024-07-11 16:55:46'),('508c4fdfb19318b8e196255a1d5c7e757b2f8fac3b72104e4deb19144570db69b015d3dc0e998b31','6c400e754985e7bb30b01bfea84e0359cc4037f179943452002f74588e3045901ab555e92e8f2dee',0,'2024-09-11 08:36:04'),('508de541436202922deb18dfd552ea30394f05cb6907473fa11abeebc0e89bfdda5654b714869d80','dc21a0f6f668dace80119208d7c9c94fdc2ac6073cee54f489a2b92ea3146ebcbda68d8cbe489cdb',0,'2024-01-26 09:45:43'),('50a64502c2aba646acb9b19d50a84f92cef6461354290722b61c2f33330e29ce88e1be81bc006cd2','d9a97ef87c3f77cb18054aa36f0f37742331b42eade6ded67d8063dd9d8fe86f68074f85fdbc1af7',0,'2024-07-06 08:32:30'),('50abb74fd4030d79e075128a450b6d73775eeba037b073df1aa01223c8598417b9b1fd0e45cf6700','77ef964d5f9119f28ce7c7eb4a7bf3e0efc9bf63f360c5333c94c162a5f0fb1aa452458782f7de2e',0,'2024-02-23 21:00:36'),('50ade11fd6c7ae002b727d3a17c36eaa4fb4fc9f2cfadaf391bdc07fbfa74df0ad65acff8c3c40d3','8e4604e96a0343717b9e10aea21a439bef1aac162833b96f609f55c897ec5f930d69e4bc714dc15f',0,'2024-06-14 15:12:57'),('50e2783b1e66380055c66707482a5ed512e4751326a30f12fe91f45dfcce6733acb1c672f2b42af1','b43b59fddb2a3bffd175b0fdc47a001d1e876d40588e6ab7d78e5b7adf6d298b702d0c8d2d1826b3',0,'2024-07-04 16:31:17'),('50ef43bf0a59a2c019668bd91689a48a4f04ed0f85ac3d3ab3a35d8b63b1a8ce6af9abec43ae38f0','a24afc603f1a5d3940920b0a26bf9c1bf4294c22150aca9a5b2dce13bec31ae48a169a4453fc4570',0,'2024-02-13 08:09:19'),('511c30d8465f59293da29ed5fb90a30db1fcc87923b9c1bbaa18dd9f12247962deb604c272d6aef6','4de713ca2702c6930e25d34925e734695701c5fd9605a2da0987d24dc3cd85991264b9de747c4dd2',0,'2024-06-17 10:55:30'),('51285053b34ae34c2a2d3a8b0ad5ca1f7220e97c976fe0095a50f35e205e1db4c5436ed8092efe88','6cfc53fc8fc69f8d106f51b2992bc1b0b4c42e83e6f5f5e1a841634a6b4798d9eb6304cfddbd360d',0,'2024-10-01 07:38:58'),('513565c83356cfcc1e769d32ba88ebc848d9a21e1b9675de0d452b45694283d6faf7abee344eedf6','d3f260f6637a212fd7d66fb20adaf8f2dc1df33b96b91edf7fbff7755227fb60e1fdd3d77d262c18',0,'2024-08-17 09:54:16'),('51407f2d1c325a6c57a5a3c722a47d6217865a5e90e78c95f455f52e14e865f030f83b2468c52795','7421604e399d14102eb7677e801a05836c38a5acb8c90521339478223c202fea201cdf5eedc8ff80',0,'2024-01-25 14:47:11'),('5155e786a257b193545fe248e72107ed46cccace3310f7e05a1196b97d9db0f539e8f2201c953ea0','503b612b49b0416141a727e23ccb2447433730521fc3f01b5bbd9c25426014e9a2cc15484090e260',0,'2024-05-01 10:50:18'),('515fc0acd8089b6f2466f764004ba1bb01601ede7087311c3eadeee89fc2729d36909f7e05228337','601f356322788ceebb304daafb4a760138cb4b821ae64f6eacbe6574b8601e7bb35baa8b9e270906',0,'2024-09-13 18:28:00'),('517a6c1529d71448a0ab6aff8337a11ece113a9879e3d33907944c0f6f95f44e79deaf3bd3e101e1','3d19f3bc06e2a8433ce1b45ffac1469285281cf940cc3f9612a0be42bef5dedbdcbae3a2927ab5e7',0,'2024-03-11 19:28:12'),('517b0d25c3f4486203b7383075747d36ab3b9c3e5ac3e52d0efe9c6eb73ba7648a58b868a0d6f5d9','ba510881e1a336642dc645b65acee7e22d168483c26eccc9abfdaf0adb594b668d4cdeb459a5a6cc',0,'2024-02-21 21:42:19'),('519cad97aa9602b4a1340e8c95676c1d82375f4bb78fd3247fdb92fab81cd3d30f94286a921d0a9f','596e67ee20060d16d660edcb0c6916b74d70d73ca202caf999cbd671d77d43ffd2d95b01462e6f36',0,'2024-01-25 14:33:18'),('51b2dde107b0bfee72f4569a43cbf3c3bb0bcd10ba02e2509db752c72e5a2eda9fc693d701e23156','8d0aa62b8e38ea5b6c671ae42db1ae55c7571132a230c3f59e16be5e9a27dd15982e4ad9bb5f2fb8',0,'2024-07-04 15:26:18'),('51e40323531acd8a8cb6c4bfe3936698325f06c90782a855eedf9cf8cb19c75a93a0ae1c755a2792','0a15fb858c9695d387cc182cc45883491ad8709b4a9878eb4d6032cf6a2e4c3c71956dd9b899bf58',0,'2024-09-18 14:34:58'),('520252953aa887b0603a0ea4fc2901a9ad6ec0a64798943ddc40727d9b510de6627a22efce5cb238','9dad2c2dc118d8e3a6ee41179c84ef1412ed6494476f8805dba2ee883b54f7e4f9d0e36a58721541',0,'2024-02-04 22:55:31'),('520a53bb4c97fc71efdf90b1425504b76420a31963f738a2a923875c79f4634983661b6093f269ea','9da696a00df60980733d5d3ad7727b94e74d4ceb46257650c4b55c7b0f12fd5cc27dec99c111da41',0,'2024-06-08 08:04:56'),('5220e191737319431f89733a57900c1243cc620ea2f3cb44134f0702da7a5df96cd6c0dbde2c3e31','8cb1397b3f342b93ca78eb632b3430509aa14c3e0a50da4e227d488f9363c703da349bd085d56f49',0,'2024-02-04 13:03:54'),('523d118be87662fea6678454fa7e1494a46f6d99ae89f0a527a26a8f067133d4348bb19dbd15fc62','26cfbfa81fa32d13d2c8dc594a6b9ffa0e5f10fc5ec3d7953f1e60b6febe4a7042e6ff45abf4d25e',0,'2024-07-09 08:39:27'),('52555d4e8d032c37a74507643ee222934210d795653fbc096350a8b3ee3ffd15679b9c193586aa24','48aa3aa5b5cd78fabc176aafa9b0ad3c194bed2c58691f2a69aea2bdaccea65e445c816b8b5b1001',0,'2024-02-22 21:18:19'),('5255a0724a74adcd0ca9ab60a8d6dcd757cc289e8f5cfde8a6f9f30fceb7c4b579770a1634c38b06','a26255d63ad4db1d3d8faa69a6ba91e7e9116e83d933379131231ed7ba6619d4eb5d0c2fd9ec3361',0,'2024-09-16 18:13:29'),('526b0dd045beceab899ac961ee9502995decc5bac25aca2dcadc67bf5120252f5b7fef40223315ae','9cc075943dacc1dbdf34b0c0e26f9b07c6262aa55488618b9dd15a8f13a110538f1ec968343a11d7',0,'2024-02-22 20:25:17'),('528cf01b4259591f56e0464d59d41289cc21191e82c49df9ba9e9991fab9da5e8479962d474d1a88','edee8cf96798a99207f3c8aea2707f07bd2545e25fb5ec3ec576092e86bc62db2a0ba0fe7bcb89f0',0,'2024-08-24 11:32:10'),('529e6673ca0cfd535fc2e3de55860a14caa8e94289c37810abcdc7f9f0c8a13fa1736a3d20e0d6b6','8cc180bb83469bc2f35d49c34d2ee88aa6f0cdd05acba84fc12f14297e76eeab4e55632fd2c66897',0,'2024-04-29 09:14:30'),('52aad7abb4b73e221387b5f7133ae8a48d16d8a9af64037e8365f31ad5601bb0edb36e1032186183','d7b3fc55b5d6fce857d01881a7511cd23fb1b914c8186de2b12e382b6ae57cd4ae19c12d20b60dc2',0,'2024-02-04 20:49:25'),('52ae4222ca765910624be8b90ed231aeec66985db0dba4a83cba31f2bef74506c82e0cc51d045c96','0eaf7c41f5f0e71f3c7f6b1bce91c6a429eb7ad4eea0cab1a307d50a76aeadfe42e3c1b118367f32',0,'2024-04-02 08:56:24'),('52af40f8b43e387a002c877ad5303a5c074c211059764b9a409ba7c357fc10205146f2f56f288609','3ab0a0757e49a51d5ebb364d90527e8040ea042ba7890a1b3dc85bc6f978757098e31f715a10aff8',0,'2024-06-23 17:13:26'),('52b4866496763eb94945668b97716481c54787cc346de4390e4b78b463225471de84eefb27ca11f6','299496e63ed8bb86fad5cac792ca4d0b9b2af26a77a3c0d0673bdb409e6037e8599f39660c682911',0,'2024-09-13 20:52:15'),('52c73727f5530ae9734313216a8b90c731d681b1416addd07192084b2aa3b29b91076a02bee1e27a','250e110b33f2161180664ab6d8ac0936ffdb93e9211d9a10e657045512b17a839fff4178c0b57bba',0,'2024-08-14 12:29:53'),('52ddf5c30606bfc01d6f14e5a28847486853fc86a41af0a7cd3ca8ec98ae0624513382436d2b3b27','f94dc298698e46f19b6963995205f7306cbdb83214b8baeac1eec0c72d60ff3f40650e5ab405b8ca',0,'2024-01-28 08:34:00'),('52e682219e0544f3d8913bf7bff08f17d23436a043ed0cb1761ff614120b8c803395b56e07d8cbba','d9d4073855b76084bc926959c92ea48bcafce5fa94ca2d23b589b28f4a55e2b8a94f3e82887c7396',0,'2024-03-22 14:05:13'),('52edc56c3a8925d701ffc455cea2a9f40c19abf829a36fa5652866ea14c47d4ea89e2a9f78db4ed0','dbcce8424b17816bf3329d570d1d207ab1a28ab95d3de948bb005af561d6d4894486d3182fa250da',0,'2024-04-13 06:17:18'),('52f72716317cc53de4bdde96b10830bf86796ba20cf30779b366a81d8b522c6f56e149982465e88d','2eb9a72625ae31798ccf3977cc2862f3ee51b00cf4c9cfe78531286ec499191973f254381820a203',0,'2024-05-16 16:03:13'),('52fcf771c79f5829bd3b6ae355533e07db1a466b8bbee4bad7a3908a0d9b418f6d3ce7e27ccade84','445bfbcdd3835dd192e6faad72cfd783d6a457c6d13172ca7bfe8e8f288462f1209ff20946e361dc',0,'2024-06-26 00:49:10'),('5306dca1e6880a0048821083c0ca875d77ae1b592dce444e95e7bfd41ef631b595511baaaf015c07','34f88aea5c64da0ad662dae30c0e0d37c22bb7b713c5991454144057c9f3e09503c90d362ac86508',0,'2024-01-25 10:40:03'),('5334b3f63ec686d07b7db50a81c5726df8599a713faff7a02af7a9f324e5faa70e7c96b16b6b10bd','0842c116f730346855c8f58621da7977ac337f7f4bf164d4610ee287a5a0e322dc644d398661394c',0,'2024-08-23 21:41:28'),('534218545b2205898460742c4eb0ee21c94886253235cb3a7ac27ac4e0dea0f4b822e5eafbd2d639','7f46cb49d17fe6178dd80593bbbadfb1b11624cf6c223d10ffa81653a6785847394902a0755af7bc',0,'2024-04-23 09:33:38'),('5344a751b91a1cd25435c4b3326b6dd69e5108e9533bdda9f3fc8ab8c45069d66308c19a435caa85','f7c3f85ac2ec30f3509ac0d98edba8840ddcb4e285a1f65138d1c7aac56733045bcc3c9d206dbc22',0,'2024-09-18 16:42:46'),('53566c9a2f92b8514c0afdc665d6dd31f2b0e0a12f9c9c060bfb730599b33843cb81935949c8b5f9','799a07c18c13b11692ba8415146d918f7ef54e2ad920545fbeefb61b730a2706b4c8d6f0dcd98fcb',0,'2024-07-04 18:20:28'),('53689a581a6e3c9bb5e38792e7a60de7c9bca32724f51b4e8d1f786ec3f295ed7c23d16db1be540b','e21e3695fd4363047ee27fac39f8892a98a2e4789f1b4f5c685cdb59e5e5e336f1da322ccef65a5d',0,'2024-01-25 13:46:42'),('536f589b6e494c081b2f4dd50e82d23008995c1d3fd9bb705d21b96f49a4154b1c3c75fcd9cfa5a3','5a5212de08059cb9c77141d938db1e7c2fa4f9a8e0610a5da370abc9da78f72baebddb0dc78aae47',0,'2024-07-07 08:32:59'),('53720468a6dd8d39af9055bc13b7826c5a5fe64d799a7395f518932d24d95748969e1c85e1d0e2aa','11f784c1a1b07f8db431419251b7d8af0f75490738a42a64fb381122ce169c9d8cf75a34c94f5713',0,'2024-02-18 15:09:26'),('53751edb8cadd6c3a95a599ee5258e1410cadb90ad534d61abbaf4224e5607b56fe95ff67e1c0501','937fb095392e4b4a8408025eb8d53db4e31b75c4fcb33de997ac6484e5e1362d057d49ab28c2ce68',0,'2024-09-22 12:48:39'),('53959419efb4f41d2ee9d2e872c2d4dcd66bbdcb8e285893a058f73c6a161fba10620daab0fc40a7','c1279393a1bebf62888fa5c772a40ca7bc38c486842303d1cb96e8b05ec24aa5aafd4da265d53da3',0,'2024-06-19 20:55:00'),('539bd7daea3ec17ef47013ea8ba975e4732be26a2c4d18cac1c39b0c42df330855a17c8d4ddf7841','1bf898efd802a63e1221fa8d7c54f7120d1f0ca139cfd69c995c4344ce6a0e1abe5f9f6bb169cfd7',0,'2024-01-25 11:04:37'),('539e1dd6a172d817637d1c398ff8b779c374f4e43fbfc07c0833ded354cd7b43c133b635ceaeebaf','a9a6dee448e9413231bc61be48748577e50d6ba9a4ea38ac2db07f881f7c5cade6fe90dd72627f9a',0,'2024-06-01 19:08:07'),('53af2bf18bd24aeb545775ec1b3fbd3f349ec82432446a87bc41885baae71049c0ebd8c1345cfc94','bd900fc2e50de94f60806e94c49bfed54157969617bc06eb14e7a475084b1bf6ec147f95b5f2ae44',0,'2024-01-26 07:58:53'),('53b1432dfe2e8b1ae667ee0722b8367e5b694695acb4c3cc217a4b0a99cca3d8a918e06351ac89fc','929993689f04766cef2c531dadc0ea9f62c7f1f8848b99f29c4cc08da571f35035e4938771aea419',0,'2024-03-02 05:52:56'),('53cc0763dcbb9136a57e579514442a4abb1a1a59dbbc97daf1f6cf546093f71de19101daf87228f9','46f668a1d4072ce56a80be56fe6c6fa3da8623d559f3f43e8940455e2024b84ca0df8509e6644e81',0,'2024-06-26 14:45:49'),('53fa18bbd40ed14cf451ce982c004f74f7dacdedb42298ac908408e69dd8a4bd66c746d4106732da','aa7b3ca55111c27d8fc7a476794d97d74403d85bb4fbc5851138021060b98f7276f34934137bb0fc',0,'2024-06-15 20:46:07'),('540736c7e93bfb775b5452066ef622a5192517f498848a46fbcf36b31f135f38f775fe9c907b7c51','97045e0f9d64d546f1099d98c46f343aed0729fa8ed434c23ebedc262a4132b8fc196d1443546296',0,'2024-03-02 16:08:35'),('5410610e23a7805268d3a766672257675490f0597b4afb35a17cc3ca6a9813b85a178c4f8699beff','afd12936a61c558dc07a6fb857579ca8890102bb2e39f171002abf68544e766c49d450710593dcde',0,'2024-10-05 09:51:53'),('54157a2e45a022e8950c9b08f30fb013dd20c07fdac635a6e0ee0cf509db07520571b244c232c148','78a7c6380a4267b2aa98bb05e96237258c10cca9fc688afda44a37abcd0b02e3dca2954ba2d682b8',0,'2024-02-29 10:34:26'),('5416a56c9c562664ac60d7f249ff5ff5759b0e01b70418e211aebfb3efe510d96bc5145d5b4deefe','7de4e247e7aae58d99972d2c42067fdbf86106928a4df5c6900815f0a4fb9dad2607124962c715a2',0,'2024-05-30 10:35:58'),('541b4c46246ba9694b704eff1fd918e800aa939fa7906e4674d47a6abe4310df738efab8aec38e18','b448cf792445613848a2b528e6bfcfecf2016d894e7f6e6524fe33462ad998c2eda93bacb6dc1c55',0,'2024-09-24 15:28:48'),('54468d711bb107c1114b275a83b37f487d0ed6cd91172e95dd26f010312b6ca02010e0ce77573031','da9ef8c76190e8af692b3bc48580cd5326ce4a991221aa2764a2c989fe664771ab4b0858874f146f',0,'2024-08-08 17:00:23'),('5449b49ffc69b93ea8fd09e16d34c8913fd03a8c5a2bc85cbd402cdd929a8be75bff20f2e9569498','a44a5792e90af59e18bdebfca8fd09457e4a3ec73a8ec6fbdfab9cb87e383c7e9cc72f1cbc155e98',0,'2024-09-19 08:07:51'),('5457ad4523088c2280bcfac007f6cef0d60a431bc268c35146f02a4d3fd9a254a4defadfd24fd104','93d90b9fdec24155053dfe76b81d5d43278589e6630708d6d61fe22e3387caa056cab0ec53ac7e01',0,'2024-01-26 15:20:30'),('549a14574846e10c9a29c4d699499e2ed11ead715f5a3301e0a6774fbc736d28d40fc670e285a807','530757539058262e16ed6d64519fce6bb7185acc7af136e70a5a27082b3ea81efcab65d86af44e8f',0,'2024-01-25 13:27:39'),('54b0150918f314abfd7118052c4a7a4ea21f22317659de132ced966bdad9a262f043ece5fe71f60c','d7acb72c5e3301b5041b2cbacef4d3d8da13abca4f7d2aa56a79c9eee58f1acf72f94dfde83c458d',0,'2024-07-08 11:30:27'),('54bf30d303577c9646f2ae7e516a699680e31953ee866b9ef4c4dff78b50a14f716b39569a739ca1','3f3e5f567960f3d80dfe3e7df011302d3e1fdcae61c914dfea5515c34b673febe64d755bff4c16ee',0,'2024-09-21 19:59:41'),('54d1072eb00f3041ff02d80f3bd8972d4dc0188d6626f8ef14412f0ea5bb420e43bb9cbe991807e0','9d290d0e5d7871f074a0233b5a089f09eea2868803c98e903254a7da70e766ded3e99cbb3aaa9e31',0,'2024-05-15 21:47:46'),('54de230cf09070745499fe7f5286cc9cfbdcac086f595e7a46d9b5d967ac1bfabb475f4f75102fd2','f2debaf5bdf2ccd13293e4d97528d7024282d1aaea76fab03fe96359e307763659a6940388260785',0,'2024-04-22 13:02:10'),('54df4a62bc7858a7eb4c424a5fb243718fc67f5d08c4cd075232bcc5cb27b0d885dcdf0e5b0cbdb0','ff5789214a0b914f08a0aed6f35a82490db23a96a00f08f7f38471282f3de7ebd06fea091d23e74e',0,'2024-01-25 16:33:27'),('54ed957743c87d1822ea6fff0a807ca5711ee48f412fd371c34444fb449b53b15bba1e952d68b02d','b59c73e46243c7a819d663070dfd6b054d116c7382c10586ee360e82aff735d4b70234cb72da9c43',0,'2024-09-02 18:43:30'),('54f713842dfa9ff7611aa25468ce9cfdc859898093953242d6bc8cc3e656508c45304826fa8811bc','74d08e48828834e8ee4384aad3b77252f8f804a58648297e7ef7f0ef593119d235698798f7b1225e',0,'2024-09-03 16:04:24'),('54fa3a3552e0e2dc3e57c5a4572293ef5d096006d6e3b9ef6a70df1c8dddd430cbfe0ca1ed2940d8','0a25c42279be4d7b17a3ef4d5ad0541d05f30e59761335d567902c454fb4f8d7c9ad28dc5818da60',0,'2024-05-10 21:33:17'),('5500b6e98d7dd311131f283b70e2d6c30b8101a8772c19e5053f04f799e67906282c72715af00595','4af0136aa4e81f1bc8b4ce2890a79003f0176869076fc6dd3859027db598d9fff0d987dc528cae48',0,'2024-10-06 11:05:27'),('550e495dcc9b7938190bdfb14c22f124966ca3f0b493bbfd3e3b6ce44f792108353a65cb0cee221f','81c6e4fc005ab5ccb51336f5cbc2855f22aacdf3caaa6cef21c9364098cc6f4cb095987d2bf7dca9',0,'2024-10-02 22:18:18'),('5526b4d1e3096cbbd482fb75160137ea64f476c0fec52df44b32c612fe9e48fa49c5cd360a81efcf','04d0d8fe92f5430e9f2a438d765df7bdc00043f4407b445350a611eccd24e5e0524692d255d48236',0,'2024-06-20 23:31:45'),('5530d51cda50acbd930352f7c0977b807014006f3cac07c8dd0bbc95d1f168778a163d17931e3889','9b6e96829b3d8be49280cf612856c3dbe856af0e6aa708becba98ebff84ccf7f98db5d9cc120d013',0,'2024-04-30 14:39:17'),('553c149d3bdea83ba2d42c0161700110a27d5af3b744417ceb10bfe3bfadbc28ea7259feed0c29eb','42fc9e4b72fdc2c6110516a6978c40829bc8b12464f9d87580b50924e38a39598d48e6c4acb8762e',0,'2024-05-27 21:21:36'),('5565201e3156c263aca648e4d959283b965fb87e2d50badc840fd911e1a0fe826d3179ed8e4d3c8e','1fd7f56377ac5511c83de45fbb64c5b872d5b63daf9ca987ad3694bde13ba0dd508cb8db5c7af8bc',0,'2024-04-26 15:25:06'),('5581057447d492d0df1c38e7e06d28e48bfe424507b3289164ba57ffa472b97856066359050579a6','1e52d5af32f53080c5ca2024a440a95d38f8462c76d4a206053add620270276a0e06342cbb1c0a63',0,'2024-10-01 14:11:10'),('55926a71c5bf3addb9535fc9cb1a4813068c4db3987e9ea36fa3ae5e56366f4c202eee1783189135','648ea5c2d55a363798c46f6e38d4b660fc8bc6a471739ae6483f56685c0ccb27b312f0dc333e8e62',0,'2024-09-15 09:38:58'),('559350ff10052a862cbf37d124905e74c80a21f83f5e18464d72fe594de4b330995e47dee247d114','e316de1b385f278d3f7c0199bce2db8429dfd4929bfdf2aad38def6ffd25d2934b1ffff4324eb0de',0,'2024-02-20 18:28:03'),('55950c9f17efd26cb3129eac9d462c1f77c883c2f3cf7e57d5359f1e9c138c87a906c419e1487a56','82859b83425af738944baa6ee34cc2d60a3832c0f093eb1c59379a10deecadeeeefb85a2eb738572',0,'2024-07-30 17:19:57'),('5596b51aaf5423c42159575211dbf87cab717f5798e7833647997f6e55201f79e576179c1528bc4e','b89ae397ccf46e6e37af258dd277b4b8bffcfb16e975b6c07d955ec39e40d18b1517959631786b98',0,'2024-10-02 13:13:06'),('559d8f1810cf4a4ceb83fce2d73a8921216e16e47b5241a3bf3f653f57896864ab55fd454a6b1ed7','c419eb7a78fa7dd5d5208d6f51dd6ad3e4f978fc897787e3936b68499e86abfb51e8804b419dbe86',0,'2024-06-30 09:10:19'),('559f563f23fa94e9b188f25fb10cc7b175e0d103d6f5960571ea7fcb4ee8a3ec27c89bde45603487','d989307e009e955a598a884aecaf26835956699c9ff947e9058fc13cf17120f4d98f629d07a4291c',0,'2024-06-19 20:24:12'),('55ac0b4a95a0d80de6c2f64deded7027d95782b04a54d1046481d487114815e10dfca7590c3822df','686d58fb9911abb47ca696c32b05a1b71de1dbc2899ca08679fa70bc7531006242bcf67c1935d9ad',0,'2024-04-14 21:40:14'),('55c96fbd4dc584aab5932ea76ccd58864f45fbe271e8a480022eb407f808b0479c69e7e7a6225e2c','1266f44f9f6a00d6bde7ce800050439b12fbebb854ddb98a12f22a531009e9aa6901eb0f29892a7c',0,'2024-09-08 07:14:48'),('55e7ea3d1d8ce28a11fbeb4e14c2a4759e49c1ee3f224a9319a80ad4f7d57cde7d06b5de1803ca7f','711119a4d72bf700e7c830545d88f2b4f4a197a116e3de73b9aa00b38c61fe6bbbe43777fd1c8da3',0,'2024-08-08 13:27:47'),('55fa171c819883c2f3c0306301b996a6d8eefd31a7d773cea1c461182e397ce45e2cd2005373c3d0','f41454e936ef589f6ca5a1ac339bc61de1cf67b8599f3a5ec7adea34ae6317532390fa300a786fe6',0,'2024-01-26 11:58:14'),('56028e14c9483601d6620e21dabe5c061f637896c859c5d85899a3a3e18444b50e50565a49f2114c','3dd4dab7aacd2ff5dcc8385b1ec7d9bc7e425894c126d75dbc18f34137c15e72970fa5a91ce893e9',0,'2024-01-28 10:37:04'),('56044f63e95148205dee957e9455e3733dc1b5692fc78e05bc6ffe6adf3cad6cb97caeb398c81819','b3ce978cf6ef6e51d389d2b1b0db5937dd7e3bf398653606781c4a4aa7f052a5159a7fe3155357a2',0,'2024-09-16 21:32:42'),('562ea1ecd3dca13b5c2b3d995db2574dee23a91341c18f056dbc8748dcf4399c8a28691cace03d9b','ab43e20ecac21a1987e4e7d7bb9f67474e9c1eff4119052e9058229421ece1aa5ad70ceb45451972',0,'2024-01-25 10:05:58'),('563a896a10d01a26d13150686bd5830bd5a256dbd2703c0f2ce86f4b768a4011e482830307ef15f2','75f07cb7fee6fd70644cd5d7be224e4ed68166bd33f780fb6c036f2a5b8c49c0893b2813c1365c8c',0,'2024-06-24 08:23:19'),('564d2eac9e4aa73d3ea6d378a9fc532af9976e47e2c4849fb14975ac2fe43adfc855a15e6889c914','bc43c28ba508e9526a9a7675331206c0870708f2b7f5b77189469a12f5fd428e7f466014ef23b2ba',0,'2024-05-16 23:10:35'),('56602402d1e754fc840ce40cc2267600a967be134a31d9a446603d904e97d7c0a4f9889652cbc8ba','8fc00b1a64cb406dcb867b1739c7aa6bb7c3c12ccbd2b52090846d3873b579e9a42888c8e53205af',0,'2024-01-30 11:18:37'),('566227de1c5099d072dc13799c27418bd640ee6a3c640f8be56408ba0c1d3d944b77e16805ece094','1d7bfb5ad84ea064772ba499fd1d7f87eaf90b9958d96b3060d6a1709f47ddd7c3237cbcc415fb07',0,'2024-07-07 16:40:35'),('56671ad9ddfcd7bde5927305474343c9a7aebbc0ed37f0e398de07a6b9739e9e39b5d71f251ff364','749348e869e5669b02fbb26fa19a21d90d782a77cc551e6c5d18cbb8648c2be94a79ea32f46213fc',0,'2024-08-03 09:21:20'),('566bc9ef3816e9931374ff6e3d5c47fb765222b53f560cc22bc5ac31ab2c06905592506e22535edd','d87598ce927e084c506a24b2f3a8cf6c0198717106221a7e0f86a06c14189eb533dae180b06800a2',0,'2024-06-09 22:15:29'),('5685f929c13fdbeb5e77104ebc853a5387d4c7f7246cb321c1091f8df502ba1d17ceb25d4f911dc3','6fbf2bf20d0ca9fe5d248c6fa7f0a469495ae57dc1af4ea137c86fe5ac0472f5d3e544ea5ae92d39',0,'2024-06-22 10:53:58'),('5686946a8073b14497adcfc321f3dfb1cfc519a0a57c33cbb031a62c8e9c7b1060c5db9aab27512e','74a3501c44e8cfb8b1f14a86a82d539897807c2e8cd54702cd79913a4c2e1613d85930ecea3bb2b6',0,'2024-04-27 20:39:45'),('56a0bfca8f61a5009154d2b318301349d1c8b483e074322315d5baab68ac2cae3675a7ea40d47699','dbc83845a50c68ecf4965f7fc0c17a2fbffcb1ba2a8e46eea4b2099b7b72979feb475103c369e5bb',0,'2024-01-27 13:59:08'),('56af1a2cf30c205f7806abb178a321c5ac6b2b45a781bb28a88ea6a37b6b471f70b3ff7b2510f2b4','162760c25c8006ecf9360f29efc76a1a86b9dbf75204a711c24ba0e01c98e8a567686d48b1eec716',0,'2024-09-26 10:43:54'),('56b469fa854b6b83d030fef40b0637fd697d5d02d822ce93e6ec05c3667f0a4b65daadd78ff39720','fe058ccdd31774b77dc0d4ca13a22ba721846e6059a9db700f2cc76d3454f6bd41d1a95447a252ef',0,'2024-02-05 05:09:32'),('56bf5ae42de182e9e6ea6f3e0e2479b462f438e15ad746c2dff434a007d16cb835e9f01bcd800640','3415c323e900712b33c561c015d0716fd939d44d9e18f84b205c2cdd547007c40ec64582d7c4c388',0,'2024-09-24 07:27:13'),('56caed0b86d2ecf582e458c26aa652b140e52a082266422048f226d83a2c498e3c2cb7cd00420fb6','5f43f071cea6d421bc07b0fe0f766ccbdc53d2072aeff9a86bd3618a1ec7f6976b5751018c7f5ddc',0,'2024-02-07 08:37:56'),('56cb3ed582c950f035c031fc01aa7398c0ccd100154823dea211b4338505f8b8186015935b8db233','c410c2eef1ed7d58c408cd3ecfce764473f91dfb9c92306e427b3d5a3a479f6d03de4958d753fe91',0,'2024-06-26 15:49:10'),('56ed92ff8287f5190f20a0e9a1e9374c5a731e78862c4914785e9dfbed45e7b4f60d210a08d5fdd5','812357d842a477f50e827eac130003a684763aa5db4df49af5903db93a3e09b08d3279d4cfa59f6a',0,'2024-02-17 14:04:36'),('56fae7a9edf29a99d544fe07b8eaf8c053b5e646bf81dce88e0a520b04d778c12a128e14d818bab2','f789a8937cb41781123ca63e1da98e53df0d1810bdd7fcd4e9372e4f06a33a23261fc56f5d7a1e8b',0,'2024-07-16 12:55:17'),('56fb58c3f07cf78262c47860b906f54dcadb6b30100fe6f60ea0795deeade387ad4dab184b360b07','fe30a94bc9398333e2ccb860e09155c8a408858e434bd084c2beb82d85991de3f84fb732ac02bf99',0,'2024-04-09 00:37:00'),('56fc637e09c84b50c825c43032070452fec12e510fed6cf0b60f55b83f53ec769c509d24d3abd974','14127b7b39c8bfc70995296f939548dd24665d83741367339b8067c038e75a308a2d8fdf5c6103c3',0,'2024-06-04 14:12:46'),('5712f5c6b0de5d2476e269b1021b4070a90a657da0814f7ee222ff4fb8ef4a98a3dc9cac4e953500','8101c8345cfdf0d67db49a6ab9ba0ee87efbde25d5f177e4113910249ab0b91303ffc4aebf6802f3',0,'2024-01-24 23:37:48'),('5735490e4a2ffd16f8bcfd2529079187dc94a471bf0fdaee92e5ae251563dfa67133112efcc55475','4537ce217692f78c517a17442c3e81f1bffe3af03e66488aee9ebcecbe5b1d12fad68c2774845484',0,'2024-07-17 13:43:40'),('5754bbf938187d71244678c47753b56d76b0d274dc97ec9c9c1794394aa1c67bc9864e7edac3879a','78ae1ddf7e93dcc95e64e8c3a2a23761e90b2b9c049ce9f72cb610cd0772c334f711187f2e8466e1',0,'2024-03-19 16:44:09'),('57830485b4e2e19741bf35a9ee3123b05770acf53713b44c9dd906900f3ab0fe32cb2a2f93ea20e9','6cccdedddad04f6c303b744feb3977f8597a0a3c0e110657eb36daa071f3bd366f2cffd62f7e65cf',0,'2024-09-26 09:40:16'),('57869620a182af8367fb91ffc278e40cd8a51c03da8696c5d2acae3c0e82c64cb7f2e5b0f1cd900f','f1ebed88ca9d680754a8a74d02bb0840e90b393ae9bda7207d86a414d40475d9a49e78807b9eb6ce',0,'2024-10-08 09:58:34'),('579380ee25224ff368f8a935fab3b383e9866f17ea3728c57d033bb7ba5eb9debd8726c4401acef6','9a6d7eef020c7c3246f4df6b81b07f49041ae03c8d009276f4fc004103f293c89f05f82dd6fbe4bb',0,'2024-07-11 22:23:09'),('5794991b96313b4fc6224b85fea84d119e13b1b86e5db7f4420c96324219076414686e1882b0cea3','effda8f487ae4b210ac298d92fd373f4b2a84e2415009db26f30b3b9747733dccb71725b604c06b6',0,'2024-06-01 19:32:10'),('57957c84cdeca1e3075dfecab2dada64bfcaf2b36a415b57c0bf514b1572a17233c5943b82067c7a','9dc8f05189ef2f40b5618ae63f2ff4f57625b2502105f7ff2a11ce48e0edf9686316fc4c5ebb3338',0,'2024-03-05 12:58:48'),('57a8ea1d618338a4e7ab128fd88e322ade721c17403f454ffe52c1c48abc9c4d92d2c4e3458d64d8','eea417e34d2d3b75db7811ed2a7009cc3e4b6efa297e986ce49d130c6391aa2e1da977a8cdb9ba71',0,'2024-02-03 21:48:54'),('57ae8980c88b16b68cca9e2f7f53412f1ee5765e0096526c73aa742ff3ca72f9e611acbd77316a4f','da3cc44bfc4a25c91fb5f06618687841855b6c75eb4d1d1c2eda8c845c766e1f7817cd7893099fab',0,'2024-02-22 11:56:34'),('57b97d75689afc13fd56c2277caf8524b1d03a401b4ef65d5397d930dd628da3553dfcb228ae30ae','abccebdd90b131300a4677e3bacdb7868679b8a3c0264f236867871c36ea56f205c18069a17ea37c',0,'2024-09-29 13:11:45'),('57c16cc1a828bf9a679a1ef5f3727d9717266363a902bde4a01d3e2b6d2842dd12599895394eb482','975190cb6351e43228190ee2a076da1f0f5c7851c4ea6a11e95fee163fcf0c22608c0bcac8818b69',0,'2024-09-07 21:02:10'),('57d47eb079c69ab84a8c1e87648dab710a4b2568a7af7ea37f187762925857196a3286793b5861b5','4830220de646346f45b0c64be367020356a7cf8bba4963bc7ccfde2ec5cd10bb1615bc0bdda938da',0,'2024-07-22 10:45:12'),('57db446d5ff09010f74545b4ab78631e293576e73bd36e5872748ed5c505d61990b3e81f3b069c11','cbd606de096934c55d8ffa6b7fe062c67c98fa8ae94fb3e1b64a850053278deecbef88b4c7d6fb37',0,'2024-01-25 22:10:42'),('57ecf6c00235489f76c1d2b44cf3d63424843e1729bef2b41e862b8249d1eb67eda405ee8cfcba62','b6a1ac5153dd4bf5690f52908ecf65001844f0e8e2ea470c20e7922b3e0cf795862e9cffc2e726eb',0,'2024-05-07 16:28:21'),('581bd912d988b9909b27d8cb96a2375b3013b047f83f10dbc5ee41b28b10e25a44072c160db0478d','368abf20f27a95c234b39ed8797e07742f92dacb525ce4ac6b3922d0d84aa817d82336149a51b84e',0,'2024-01-25 11:41:11'),('583781334be2c9c1d4cffbcd18b355bb56ad9e5e13988d2b166ba378b6aede0b1408bf1a440170e3','6c8f629303c1dd6296a0be16032eda8c13c2298635eb123f2b596045d25433659abbc56714ae3ce3',0,'2024-05-14 18:14:46'),('583aab11c7a90608cf3588642ab3dd271fd351d8c224c70471ea5ad512b32328eb5d7016744a8edf','80b36857fc73a6725fa7817923868086ad7aaa0d5ae5a4a952a0ca48bbabd275ab8459795488096e',0,'2024-08-01 23:08:38'),('5849a40035c233d618c10f4d7fe103ddcd90a7c3e018d6b8d4369a1a46ae03ba53c25f3501401069','91dd7256b0cfc95d05e80dc48ba6a5e1de0d478b61b32daccc5ddc533acf67884cdb21140cc368d6',0,'2024-01-28 15:25:05'),('5862d84e41544ac227593c0f79eb499c324809c34688cb40223358349daecd2d02ffe65c226cc0ac','7ee4a4ff73223bbf088b5b011e2774436d9b428b012c1394647e64fa410e15769783577f90f56d41',0,'2024-09-07 22:39:11'),('5863f0d891c177b45815e6da6c8ac99a99f6c684d9531fd83b441808485cb03c27ac4af2e3801a70','6af300ff0f22562c8141c14d163b39a37a769e3f9c7581f2594e005567e0f9d89fe0a8ccc738af4c',0,'2024-05-15 14:34:11'),('5866bbd471627ac71b402674b3baebd28c971ae6b3943a53172a67dde9ddd012e2858a1d031dbc60','2854b0b6706166cd701253d1365802daea3491e403ec7b1e0d616e8d71a3374298fcf66872bb8312',0,'2024-10-02 12:42:29'),('586dd0e4c7030f051a137254f4990749fd1d6940bb6cd581a58f3731db746f688a357551eb05868d','e93d284e8da6340fad5e141a1cb9b783fb14ad8d9432bc262dcaa602b078ba8d50d2dcc4e16cfed8',0,'2024-09-22 19:06:56'),('5887f60acb8e16a4cbac24f5146850a2a01214bd3c2e03cf8dbecadfd47c2b90db13ce31e4f71a2f','31947d227a2a91121c29870dc5cf97dad1eaa71ac0615d36fddc5f338e6727f7148f9cf6d3e240a9',0,'2024-02-22 07:30:27'),('588a25f83589dfb9bd39939034d49a6958525be8a4fc7943c7517635c0987471961c5443b0031ce8','4ebc67033998915178f4d897cb77416d479701e3a028b6a751357153c5aa27ad1468ee23a7694517',0,'2024-02-11 12:09:55'),('589800770ac94a06f0a39281d60449324a0c562d16b11de808dd97ee710ee0fa81ed01a635584417','5bab5777cfdf45368b737e20587d476590871d84702d1822b77d473e41678c30939379013cb2e53f',0,'2024-03-10 15:35:32'),('589bfab3eaf6a43d86eeeade0143aa35537584638ce640f1f7a5e16809340932926e7a65fc32fab6','a8efb1e959470c0e08763816f857f4c363755bb9c2417dce1395d537ef0d7c7ea4c49921a88a2449',0,'2024-05-15 23:03:29'),('589f78d9f43bdbc6d350a19912c723aa6a44301ad93e05ed8f62800178c4b7dc6507c9b07cd11844','9af90a7ba7fb7badeaa7211b3dc27281870d69476716e9c55e2ee0bcd4f1bc061777d2a951c2b18e',0,'2024-10-04 08:59:49'),('58b396b5e9e646baf8e025802c561fc0e8ed7eca26c6933716078cce7e22f082cacd1525fbd77555','ec3ad76bbf9ed9603293933b0e026695d743de0321e638b2cda491418bc9adba963c026707ee21c9',0,'2024-03-29 12:41:38'),('58bd114fe4636397c05a0415837c4f5e7a3e0d603fc8d3688ed6352c7467fc45ab970e4493df3448','ea55e86454965e4f337b2c8cca8353b6d5f5aefebe06bd5b82b3ab0902189c4517e7a7768b5dbfca',0,'2024-04-08 15:47:03'),('58c05d247dca06f30bf1499d486400999289862dfc95890afe81f203b6ed5a5cb46186b9c291fd4b','a79c7f9b0f1ae9c36518cee9a25173710f63c9c4a11acabc4508eff9e1bbdd89bc12db94f66ffa00',0,'2024-06-03 11:56:45'),('58d1fd3c23727d00dec1e883cbf69e17f460ffd054b50a84826cdeef34e7b41e973d5c2c8f41cfc7','95386f22a69a6522f6399e8281c78ae6bf8c813a75bfdd7e5f51e9acbc0eb08ae52480d27e200b24',0,'2024-06-15 20:35:08'),('58f94a8e5acc6640712e621fca149b6f7bb936eae3235bc70fadbc70bac1af11e63147cf4933bccd','6fce057ba445582c91e3a5d6ebd3f82cc646e91793af0af9caea26096a2b949869bd91b5ac6160c5',0,'2024-01-26 14:52:16'),('58fa2cb8914c6e7dd77cb1891050687ff3927176da1ad4767185afd71dff91984b31b5ff7a10d3ab','ac33bb6f938203da56c392ace7f949e95c42c1ba87de251137be8940490bd3ea2c0cd0393990ac1b',0,'2024-03-16 11:29:31'),('58fc96849f69fce1d7c3a4c6721b841980680b54b6f7f0a5b2fdbc3ce63cdddc94b0062ff27fb6cb','eebf349d424eb42811a3d2350c6cf4ee8e7a0290194ea459c9363ff0d5f141e8ddc124c1898a8d98',0,'2024-02-18 19:41:25'),('59052ee1a6f2650e389144c8297cd49eba2d5bc76b4a7ffb200eb940d4542a827c5731511bbeb18d','9df079e0fe973c9f9038cc775a469804fd7e91ac02db16171773917a16671bf59c9d69a19fc90660',0,'2024-02-10 16:04:20'),('590651da12317dcdaaf5f23660f86baf4849661a7fa70544b5d9e596d2d9b1c5cdd19dd40b4b13d3','c83b0401bb17f8e39c5126f639b523a6cc5599db18b6b9f179354dcd58a1b3645b7d99c3114d6bbf',0,'2024-04-01 15:00:16'),('5906cbc584546d6af76e103a2557cc67907c57e763b5a60ac3ba8f0477c7ea87611c3e78e21b8678','19dba882bf890c1e5171141cccec7e1b6067b55471284a06dbeb3a1fd32acbcb38126e91c4174585',0,'2024-09-30 12:04:40'),('590a3e1a2c283c915ad122507b8ae15aa9a87424ca0e01a00e0bf8f6e76c5165eaa834a6287e46f2','4e1f7024ceb4cbcd421234c849fe09d4c162806439ee520529b36ad64f44f9f75386c938c69e5e11',0,'2024-09-29 06:56:07'),('591072aff73088c2cfc02a22ee20c6ddf518d13af0a455d852f83965f81a7a29d9693acbad4e6635','7436dc1444d81339f1bd5d3f9bf52491e4b5822a5bf1307514b2de23e690d44a20ae2cdd74fcfb40',0,'2024-07-15 17:53:34'),('594c4dba559c4402a9760eec859b58e3841c6ed27c4c29c60c022b964ce432c13034b94cc359ebf8','29227fb621e9df6c731d46a021b36e5ecdf6cd59b26bebe4a7184e633b1fd6bdb5563225c39fe400',0,'2024-08-15 20:06:29'),('594ceef2ad953746b8982a0b3988da42282b83a9383143bef58a4a9433150555a360c0c2bb6b6190','259cb516886991d98648bc861687191a671e7c2af78fea1510df6a0fab7ae7ba356ee5058e216738',0,'2024-06-17 11:21:40'),('59541d7094a89b4fb8438eee434839c2163b115478b2c6d74ea7cb028ef3a4cec45863529b791e38','2163df0ea6f55d0f3b6963ba132a8b76b1d7562785d588465b790e8a93964985267256b254555d30',0,'2024-01-25 02:01:53'),('59826ed2155bab88833f1c69ecf35be3825603191d8be2eee865c4a71360a7db74da0245c7a0af37','bdd85af265f0bac1714cd5a42e2cc11a0834645e1625a6f6e37f853284db6a67de9c1daeb866ab6a',0,'2024-10-04 22:33:37'),('598f609e4cd71210f82df3bbb88b527acc03f7c322fabd7836422da03cb7ef33e4aa79e78865d53c','e1cc2a5cafc9374339e3caedb85fb5c8117896e7c15e3520b8785e9aa188e03f05ba849ffd543f1a',0,'2024-07-09 10:03:59'),('599d2049d901fb85439477a5f8d9ab6860464c86c154b47ee4b8e81b270bd871c6200dd8afebdcb9','38366c3eb66e6f788a39e539c25af433572f9f4d2648bc72105955a2c50b3e62f3b85f59e2ff8c57',0,'2024-09-23 19:46:42'),('59ad352c5066b92038178b234494757807ad2dd08640c49929927122bc794aba932fb7a5c5f7943b','4978f1d6061977311d3a8be4bb3b7e379702b5c47d536543e777237387e9477960812bd4a3aace70',0,'2024-04-06 12:02:43'),('59bdd295d244a7c09bbf84455b83bc963acecf8cbf4edbc1936acf7290c6ae361908c6dd5c4fd7c8','fc5166415263ffb8a2e38a70744b42247b7691a60a2235de886fb25fd30f2e3c298c33dc40d3c536',0,'2024-02-20 16:58:57'),('59d14f529e69fe020d8955ff6952fe6e4b7af75cbcef5c4e9e5a778ae808d1d1ef14d8ea6c1ff97c','d7a258a562e03a0b0685b97d5afb37a1a5e00482c7d0bece94575e6fafcd75f784b37d072102e213',0,'2024-02-13 18:45:00'),('5a071cec461d2b2db97b3daf5bd26172b301da0c27ca45714a849c48d03868dc9e3063c4887ef9cf','99f4fd45a12bd87e3237bcd0a0f8d756c2c7da3e8580433ab634b44977e06bc8d65cd7b9a3ab0762',0,'2024-02-20 10:36:45'),('5a12148d69790a004dc498c2fe472b02a5a79e1e3bdf18d29915d1d670d32d00eb9b875d8d0b0029','a895dc4c48f43f32cae9fa7149571ec97d859b78716835ed10e191ed577200559d911cfeefcc016b',0,'2024-03-24 21:56:11'),('5a1c35b29bcc621aa0028da9fedf81a508b643e55f71b9a660eea27d8fa1cd95954a54e7ce8564d4','976a9443f0abd455389995469b6911aed9beb328013d84f2cccb9ee2a1c89a4901d14ac1aae8717c',0,'2024-10-06 18:29:51'),('5a31a3fa65911be200a7d6086604cd5147b1732f69e4a284d8fa734796942e417ec7dccc7228c72e','3497c7461c75414107336616d5fde9ca0b531763d606299442daf963fc38841b07c6061593d745b7',0,'2024-02-22 17:01:34'),('5a3c7581b5a62fac029be36e54539bfafd266ef2bcef99e62dfcdd7a47c1055935293388dcc542a8','99df1f5604c361b91d67d72cc76b1b78f9fefcfd78ea6dd326e8859c8d1eff810ac2e8c6f778e046',0,'2024-04-19 07:26:46'),('5a3cc72baeaedeb07c047244951b42bc961d6e932b2e6a3cc2cb8c9d77260d28865ca6a101a780a0','a08cc56759dde8b57129520cd786dfcdd42a5d6d6c964f6261aefab8a7e8e5e121164d5660ca56e7',0,'2024-03-17 15:36:46'),('5a43a0c927828c1c0ae716622b07c6afc91a4d120ee41289512ffbc4ee14abe265949fc0c9d801b1','3b0f7b2f833825eed3dc4e2cfa9c57cde22bffeac5b019bfeb5ede449451ba90e32a65e447024bc5',0,'2024-02-20 11:26:11'),('5a43b8393831db7d445e7772f7180f5719666cab4cdab20d04bfd54b02092489cbdbd60d2c8479a1','e782b2c31f031ca09849afc731bcce12f4b74a36de21c64051a29139177fb73082d5971a601bc7dc',0,'2024-06-08 23:37:29'),('5a5c9312227d120881eb5f01713254e62964f1def95345e058d45670e5fb83ab818b8e28cd48d281','b50dea722efc6b4986f8d231e396f47ea86373bd4e914e36671dd8589cda3ea6ee9ddab94ff4320f',0,'2024-09-25 22:29:14'),('5a7cceb6067909130643a8b06911b569de70547db6a9859b9a26a27babbaadd59a66876bda1d32a1','b83bc1d34e28f25f0cce964bbf776163326fdf19db14c9433da7ea7776a49336d765fd76a7243254',0,'2024-06-08 08:16:38'),('5a8c14c4f7ca342470d607e67ffaab4ebfc9ad474713de0b68cffa0a4625881d775f3cbea336b059','1c467d1b1a941f3b64e0484eff9f3de2c31798c46235f9aadc3ea48eda56d46aec65318e1a5e6dd9',0,'2024-10-06 20:23:17'),('5a8d1dac825af4c8af41725c11e0e41ae724a361e38f356a8a91be96c25e82e196cc39131839e4f9','122f2ed8a2272e13ab6b4964807486ddd97ead14aa0e783c5de2c15da3daaae4aea21be5768fdf9e',0,'2024-06-25 15:37:45'),('5aaad76c8498ecd1084f82c23bb269783470af00e72b9160b1b681c40804dd9222ab01e5e4086b24','7b8ef544ea0228950cf873320e700331dac09466da1a7c14809d1cbfb62bdfda638ef0f3336f8def',0,'2024-05-15 19:13:54'),('5ab7a854a0cbc87c9641f9e767aa92600759cbd66dd2b4d70701ee6e3c1e47f2229daae99fae0b18','d75ce2c9a48b0fe29daf2e7971d0b2556b539971baefcd8cce1cc07e938b66c64b21920e11c46638',0,'2024-04-18 17:10:54'),('5ac4ef4f6a859cf6b6a2b65a8fe971c21fe2b9bbf0019b1efe2d50dac89817e23cf6e0eae4ecd863','e25e906eccb0fc28b9bfc4fba595f97e472120da54107204ecee294e0de32a81c1aaf491f493c203',0,'2024-04-10 14:59:15'),('5ac5eb5a59280145b1528a295d4a8933f04e25fd082d6589c22c350e89bd304125f8ec30a5aef891','6a6ff4644b3417f932495e5be3684ceff7d9940ce2ad309a8d585a82a10c30bdeff4c87770281298',0,'2024-10-01 23:05:57'),('5ad788826093d9d973c45f3d8d3d0cb61751d9ee14238336eb54d3cb51168dac67b647bc9e433f55','511a870cefdf09730e970e7f0b7d47088df45334ab2d326a9b07c276a4be28073832818b6f9c9edc',0,'2024-09-25 08:02:48'),('5af00a9c71242c1f6396b33f3a612452b1027e0d8bd8fa9f1c386ca2ffb37cfc68ebb4d8f47bd1a1','87e3a3e153aa5e1e62caa3ffd860cf84bae0199b83258980c6308bcb8e9e9a7bd68d9278e7b17c9e',0,'2024-02-04 14:02:41'),('5b0a50ad69c0889629b51b1c811772b69105db9f84549858e7241c0805cd459bb7a78e3360800817','efc5f2dd9ae571e5157f299bfd22c1662311df8b1083335e77b7f6688ec363c675ebdeaad703438e',0,'2024-09-10 16:12:46'),('5b10ca8bfd5c2e7393fb6012d5858a73a9181461f5d8bda29876297b098156faa74cf8cf41197607','e40419402f279682cfd726d37c43867b323a17243fe7e7cbb649943606a36e6e6641f39ed11ae61e',0,'2024-02-29 16:52:10'),('5b2bf1fe5fddd6b9d651ba725214d45e7db565dfc61e72837a4bc284253416b6e54abb5c82bc2a65','b32d46f564641e9510db421ce69e37918ab91ac866b7b7bb3e36d0bce67fd8362c0efe9c4f9d3586',0,'2024-10-07 20:42:28'),('5b371a0ba2c9cc340e2265012f94495cc621f617324ece62ee17c0add538d19c85356196a4c6967c','ea56aa30c23703c153e2ba254c1c597394a588590c2bc5e285bce060113f20d74833b93662b72545',0,'2024-01-28 21:10:01'),('5b46966964fbc1dd63c2c20638d39e189462d6278e941c2bd16ec8316d8aa75d6a267b0888128cbf','ff607008571659de1c445877255f03dbb5110cd05d5d9c48f4472757e1ff6644cb710d61f7d8f1e8',0,'2024-09-27 17:33:52'),('5b5588ac40cfab8b9053ab061eb03d859c75de71d0aa47ec240c588bcbeeff9ef69b2eb09dde0d30','bdd95bde9451965febd38635019c16ede4a8c3409d25b8180250c549bcd8bcb535bb3ae1644faa6e',0,'2024-03-23 16:24:14'),('5b64cd85ba66e35babf244c0912a58b5409d1f5890114ef27098c7dfcec05b90e3389840edeeabe1','446a5b2a0fe5b7903ec823c1891ce926712d98e49d292f1108a516d6da4ddd73390e4e6e5b0512d9',0,'2024-04-18 11:51:33'),('5b69828e921055792e466173978c3596bf2324e508011fbe879add24bbe7926b5e46f99f9ae27e68','0c0c3845b557b5a556407ec9bd6ce3381e1d642058d8a20e563d78b82a05d390684a1d1c34f55ca0',0,'2024-02-16 10:05:49'),('5b7d3678986a7c03dbb69930fee0b60fd041e9e618b0782cbc72b3e273b1618c933d294ffb840d92','5f58f973a73cb45a153072edb6620028744242e9ec22bdd6653a83bceffac29b212132ee57d18cc1',0,'2024-05-27 20:44:59'),('5b7d9966eb795550a683e1d24fbb84f2faea86909b4ef4fb6f150931da5f68be6379146a0602889a','190c3b85aed7bbf2d2af61288f193e7950594f147d65a288ebf3c89642ec60c00adb8cc6426550ca',0,'2024-02-21 22:18:05'),('5ba17fe3bc67df1e23ff6a3c04efdcec6b9c0e4a2a85236e42bfcc3c7a4c8451d770a773e19b0653','6310542495181af1060d04cb9d76bfda666d546f06494698df462f9c0ec6d4ff11a7b72a976db4ec',0,'2024-03-13 14:58:47'),('5ba69c8493f3d7f87a53fdc7b82c9dbab6487c65bd99b7e88e79264f9092325b9dccbb1490b02554','c327ee5faecd64f6251d0dfeacbf5019c1bb84718e7dd3decea853460379b71a456d1ed663b07873',0,'2024-07-05 21:23:37'),('5baa684aa2e0fd965e08ec6df7793599dbda01bc4600ac6b629b109327d56458235fc2e717494047','b72e5bc86008fdca51061585cb23605b26bc11bf2a73b5b314ae2e640ec3dd8e7371e83bb6d9fe5f',0,'2024-07-26 19:01:47'),('5bae0d4103d972468c6941989fa7aa767b9a5748cda3741c950f00e2900c83afff71c9d19338575e','94b31959280f214c70467d54357d2bbf9102ed29a1581a98e1f7f5c0cbefa61c6d2450be6eb6f153',0,'2024-08-29 14:15:57'),('5bb5ae0f619dbfef1de9ad0d0d93a035d070ebeae9817a0427f2e3ca36e2f841d0959bd1f87b2bd6','c90f191538b22dea7b97db051be1c639040907a5d9b282bc0dc561a4df10622e647b546e1f875f2a',0,'2024-04-27 18:15:56'),('5bc4c59df141218e63381ada1a507549b9fa229a6ae24cf91c7829740cbf08f37711a6d55845af98','06d3e5241161201e5b745d1560534d5f83e3baafc89c070ab9b0e6f3c70712869ef898218fbc898f',0,'2024-03-10 10:13:51'),('5bd5f1e1eac3a545c091ce99f2cc1d61b22d6820c29627e693825d524c92a80c73a0d94dec844fe4','59987ce708e0a02e813d5304904f97507d1b5843c75fa30fea8367fc77c40822bc11fcac4458931d',0,'2024-09-06 08:21:57'),('5bf71c947952910dccee8517523f3960ee70481d1868e64d38a4446ef46280198e0826f3e8113a7d','e68a80ccf3f71217af40b3af926af691c9caf50a4580e7af3a5f74c31730bed82cbe9b71c55c343f',0,'2024-03-28 15:38:06'),('5c097c1c0918de7eaff6c119bb471dbf480449493d47a3d8009b57f5e4f375d514ff1ef8497e64c6','7741021628551ce3a71e2af9aa4f557e3ab6f1ff464e0c944c3eeeaf4d8d1fb0e7e43edc569cec53',0,'2024-03-11 19:30:14'),('5c11c76c28c18136d7c11e20168305969ae05d364b8356893f981387d2c0255a1e077573ac574f70','e85ffbe455c0f607e57e9edb578cb770daeaf5acfc9a58cb0350d0e3cb33112e9ec466a4301ded6b',0,'2024-07-07 14:04:17'),('5c3aa5a8a881e792ec9436e7143ae934dc02cbec409a6fc7312ee7e6f5dbde63fcb0d74e8cbacbb2','08ed7ceecab3ac47805fdabba4163dd3bc7b76e04b7d80218c45633ebcc21d7bab9cfe578fbab133',0,'2024-02-22 22:21:03'),('5c57c9a7be80d216b3df37c2171bf6c1cba69229c66d5b6ebce5f8169da3d308f25d55836bf440f2','c4891d0923b88f2669f78e096c5d819e3d3581336954954d6c68e1d3ad8658e68d6e65454769ce7b',0,'2024-08-20 16:24:25'),('5c5f91ffae46bc4deada314bfd1a45cc635aacd4a0a4d6122b236cd5a77ce13fded7a1438ab33572','9b094eb91d2dde1a728ccdfa1212976bef42ae3ba1c2e16e7c29662e23fe5b4c516d19767cdf9ed3',0,'2024-01-28 21:05:36'),('5c6df7bdf6de495b2e7d3f15f4c7ad61297fe0ae96d91ac69702fd604cbe80ed34c54224a6b35071','2dbf3578ff6caa396c8d3f22434fcd5255b419eec4cce2aaadd8f79f42664e260f66154cc86ec706',0,'2024-06-23 07:45:57'),('5c88ab6940d932cae26cde933195b19cfe47ae399829af5f19825b22eaf6a2976eeb55f4357b4e37','68707e64fd845e056fdf28e300ddc16a0f123d3f446cca6f994daef8dee15bf746f47b987da0e8cf',0,'2024-07-06 14:01:35'),('5caf37b189f40455db74a0a85cd7d921f28cead3c49cd5630f5fd419d47413a48c6de780262fce1c','1aa24a9c266721668d72cabcd6b37adc6cfbc2807539b754bd9ef10b0f8642277fff540d00155051',0,'2024-01-30 18:17:16'),('5cbc883771afda05d37899bba357cb20e4437f9703bed2f919e85612bd2ce5efe35a5eb1f86648c8','6555878e978658564d4a72d8c625df9e63ccbfd3693f8b8da003e0ef5da46615bb1fe9de7fca773c',0,'2024-02-03 09:20:09'),('5ccb5e80de9fd5cc79b80061215b75287d4b1d139abe2f0205cefc3a4b4c12723c75d5676a6e5544','b4316297119b59abd9b0d16cf54d11899dd701421c5a1acf45107602d270332c9049a9cc42dd7784',0,'2024-03-13 15:05:05'),('5cd321903a79507fe1a1bdb2f8f16b4463b99fc61ffd152459854759e9c9c7afce3a263115e2a7d1','a24a099e3db2ac0c67be98d6415869487c40630e6b5ef2fb1dda5973883746e9760188e311f02457',0,'2024-04-23 14:02:03'),('5cd591bde9a209038786bb42065dd95d358d45b00b8edbfd92b155fedc191c03392ed4b342d186e3','f381b21664a7d6d25ba6212488942930512f422f1cce089ebf4cf5d1c5840d4ab929fd0a19f14961',0,'2024-09-03 14:12:10'),('5d026b31eed4a780cdbf6ee68b824b7db39a80025dc9117c327eb3202950065624bb2bbaff0645b9','09764d49b696d73e09144f96f8679320834d942108a21f0563f9af97f1918ac268639b8e569e2d2d',0,'2024-01-24 23:52:38'),('5d0f6f3ee5927977b63840d64404dcb9a06c8ba342deb95813d418e236c5019f60e0c90cfd085df5','bfe2fb8a65a9dda2c1729c69777e1c24581a724b155baf2dc3cd87e81412088508fed3347872c4c5',0,'2024-09-27 18:00:27'),('5d390425e89503b1273f252a999755e50f5076a690d62e819e15255607ae238f1e4790ed6415689e','d6eada0834bb30ed475aeb973ac608512d6a5ce6a20f3e6331beaeaea570507fca4414b9912f2684',0,'2024-05-17 00:45:32'),('5d3ab0ce1b4cd67ea2df5b997b027dcd0d31c0b8f587e2347acae45b41cd6110a9a2c68b2716c74c','7b919ca64ccc0511d0927cd0de0f5c2219b958f528bb64c10f01997180aa7fff5b81adbe8239a54d',0,'2024-09-29 14:02:56'),('5d3b6ca1942b6e4d099e5ff7040c4f6ad1c140214d0c6080f45e2771131ff326919b40a2ef29fb4f','54ee8a77caa1cbc03d4f35bfca7c9baf80cfb745bd1e91df7b24985bd5f82cf4396cd8989d920c59',0,'2024-02-22 15:27:04'),('5d3cb3037110602030520cb498db663922f589ef7da85b611e95d11245bc1038ca9db62f4c3649ae','1a3528024a327f37333cdfd43e8ee57a22ff964a7b713d1da7e2bdf0bd5914d82ec3fe38bbe3a4e6',0,'2024-05-16 14:47:02'),('5d4653852af1d8dd5af56c3b016ef2d32b993fa03e14a04c9e94a859275bdb287ca9c02f9146088b','ad1a243ebf16bfa6f89dc7394022f301a6ba60e2a2f6b90ec967077d6a53f8b0e323d8f5c1f33e3d',0,'2024-08-20 10:44:34'),('5d503d689082880c5b8024c0178882346c1c27ee1f5bff29194cef4df901b285b9a87a1859a71414','57302f39f8f0cb9a2c7ab3f8215eb7ffb89e89a7af4aba8d8bd753cfb5ef9fa1e1669bedddf22f11',0,'2024-06-26 16:09:41'),('5d56cfe31c391a7a3be1e4dd0926e6b2eb9eb30be3d80bf93ddc578b980149061786c748f12b0327','4661074fdeb1d99479c269cb4f9fc83cf512ade808a32a97e71c4b75285651edcdcba1591cdda278',0,'2024-06-04 17:21:52'),('5d6b24cb1df397ee2ff87f19e3f7da30d7e94d3c3cb65267b5d22509d3482ad0185f37675ed76a88','674351491ed41f790eace18db4a973bb95908decfdc3d9ad7d83aa7ceea9ba75c8c79e00a248ddd3',0,'2024-04-27 20:21:13'),('5d771c0fec5dd4cd9762c0329a3e7b8f124a3f13399f77db0226868ee607876a6e7c3e91cd6f1bad','3c6b589ef2ac9338ac55dccb07e6d90d9eb23ab838e6f1dd82d2b3666c7edcde5f045c5f977ccf5b',0,'2024-01-25 11:47:47'),('5d77ab2d05679f36021264e7e4dcfa0a6663faa0e7cd3cc6858127c04a84336807874bd7fa42ec33','504a20a235fddc67ea6c715c6d4976d738f2709ea5f9a9d8b14b6df3bf472384cd4faf9c40176bab',0,'2024-08-06 13:16:43'),('5d7c871b3224fff9b1f7996ac81661fad320b2eedc56598d2035175600ffb234cb374fa5036277fc','6af78ce8ae53e01474626c15073c0c9cc742b6c74a7c1f4462fa48eb3670e23f02e116eaf303dd10',0,'2024-01-31 08:30:13'),('5d819c7c09866cc3e60b35d298b9c2ef61b5fd3ae6c7406adfd4763a93c04b40ba161313ef635928','0567208101fc9f60e8b02fefc51cbf34547612c813ffffe3b3f9d430a7248ae49616ebf5e3eee477',0,'2024-01-25 14:54:34'),('5d90438faea5ceaa140d3f56e18c0e35cdc38cfdb760a261394ee4be589fe0e9394b3986ec586288','b94e03b1e8df23cda31b4c72ee06e0c9196cd0acece51601afbc23482b6988a4ad4c490a40055bde',0,'2024-04-07 12:03:40'),('5daf9c78b17021ec7833817343d61495c7ecb0065bb5fac953f9678b861d01f47d52c90381e6057a','157ff63b66bbe02a7150c623abf17c550e098006b7860daae0236dcbec041b92be1f033f0f9e1ed9',0,'2024-05-15 15:30:32'),('5db3b2a31faa420a3f6aa2996d3503060d0c2e024a076d73de7772097a491720b9db457907e6ff97','dac4796d8b3f20559d1c4f8f9691002a4442820af8dc07d510cda5c4b0a802a9969ef5c2e81ebc5c',0,'2024-06-24 18:47:54'),('5dbf9ca3e980bc985ad015b77880ebd986f234761fc8358e574476d354c39125a74984755ad7d527','f6d7f81a92b3dafe72e3462033fe690a988691e9e1c8565d2572438ff5269c6f44fffb2c54488d08',0,'2024-01-27 20:28:03'),('5dde88e6c739a9024b97e5f0ca2869ff1767c34a1bd27ad48371c9f12e462fd6f7156b4e6a7354b9','01b77699fc429cff6d66e4a4ac3ea1ee7d1e89ad3032ab53b7ceeb55ec025a376c3381119f513819',0,'2024-08-01 23:43:07'),('5e0082bd5bfb819d46eb6ae7b0b2c11c5af34b9fa2e5e4203f329a8d3bcfd6aaf307b5c7eac66487','ea02f8a796860e14ad6bc26f87e9e93be7d92e9ebb40e57f9cae99e043b077b7747d74436183d806',0,'2024-04-05 06:36:53'),('5e020d80de5b24809e0d2d91469202018143d85470c09aadb332abe9b9827d34b2f839c19b0f3b2c','db08ca647d1b879e149d37c780f017529a84d9831ca8f9c35cc3f21eb74157a929beda621ba3a4c7',0,'2024-08-23 18:59:30'),('5e185759e4391db5c374b37bd4f17835f25f2c3d50c76e0c3895b6a4e8972c1c78e7c8cf4e61359a','6811fca8a7eac5f6ed6ee0bfbeff5649100f93da720d96ab1ae6a8b694c39f87daf37e6362f9ef64',0,'2024-02-08 11:43:01'),('5e345536f06df420695b74a835ef010e7ab2a8df164c1426e6ea04d56c5732711504fcf0b73124dd','2ecd6eef7247789f4426f47d59a5e80c258cd88ea62544f033c2a09098022bf04c8eb76798030ad3',0,'2024-01-31 15:12:01'),('5e3628ab74cf5fe532714d59f62b36ee93db4c28ef8429a65d14b7707f8761464bf907c461023a17','1a61ddce27f16296c81b456410bed8a6cd66449a35f13790d62e4010c3085897ab397856dd8e4929',0,'2024-03-15 05:54:46'),('5e4c62d66c2d86f3559ef2213b3f74757bef31468a3f72d6660a74a45f7ae57e753f05ce0ae58e47','3b5781c431f5989a12c5c2ff23bf2900058dcbcae70ff78eefd4ec3210681120be7996a5d006340c',0,'2024-05-08 19:07:45'),('5e58d50e407fd060c05746fa4bba418c50d1a15afe54c3e7b947fcfa1e8aa316da0914e086c9aa28','345bed25f07e3fac0304c9ebf7bf765fc8efd56ecf4b4e8cfb83dd6a7f045d2510fcefce947d5644',0,'2024-07-16 23:11:46'),('5e596acd04c83e0f01e5290d601d3d7f183899315e6ef069cf0a0561bde178d1a981e6f9f36630b5','122c783c75e6f55705354ed2d4b17474ab495fe4339ee4ad60e0386cba49eeee1af67b635cdb61b7',0,'2024-03-01 00:24:32'),('5e766b9ff1f22c530ef7655b2dba36582bad39202406511a74f5826bb25ff04aef1efed6121bd15a','285347e3cb5fad9742fba8878bed7c676d4e983e027008919858f6cff5d2f7793101cedccb474a93',0,'2024-08-20 12:31:17'),('5eb8b114841f98d2f8e63d7a71d31bae6ad75d0c4cb19fa93ac6d9f1b8fac887b13472684c32f706','2f674db9cfe17abc97c7617e544486a0782c6c76ac90b5cf27a34bfbc75d29af50f71d0ee137d90e',0,'2024-01-28 08:00:33'),('5ec8118eb5dbdbbadae094a913b9979d1ff5dd3c73d6e7373db007acdf8818a7e868fd8aa0cbf050','a1494cbbc5e5d6ee5aba06e59c4f6d9aef615496022d9a2d32839eda5447ecf2d0ed5b4ec17f1465',0,'2024-02-12 14:12:52'),('5ecf835e4f7ff65898226602051ae3138a7cc1471dae81cfd49f3a925a8e5a88bf09c89cd48b61e1','61bb63de7e0a07f43363d6e9f275610fc4c9708a963964150bca43cbf0da11b73ee9298501f538fe',0,'2024-01-26 09:29:02'),('5efe2b80eec1058d5abbabf1c752d2073177c279228433bca1a84de554a0b71be10a3d62dce990b5','4044d783e0450013bdaad2ce0b60586eb0e4bd47dde8b3e77df2a51adfb3db090e8d3bcb27f89bb2',0,'2024-09-20 17:32:56'),('5f01359fcb8df13b2e90c591ea7658d61f562c41b0ea280a9fb1c22aa8c0c37a56b4ce4e92bffb1c','f4f9058db6d625eaabbacc0c770253aeff5a370e7fb559622578cc563d0911efa8eeead60cf4ed46',0,'2024-04-12 15:46:46'),('5f21d33b66c875a8dc0454d6dd1b26767a83660f6927213965f053f4a52bb9e2e9e2b4c96bc2d633','f4b12659708225db0e23a5e18a5a420d24f188ce0d9784392c910b3177d1884169f1fe7b4862517d',0,'2024-04-10 18:41:30'),('5f3904bf2dea3301b4442e19d2d1231435ff5af13d73331f3a6306955d142cb022413a2eb69fb185','0e9e879c58927f922dd58dc42591598b8a4ba48fadd3f624b7962318b2c881e63b7579a4fd410675',0,'2024-04-12 13:17:55'),('5f3997eba08f9e06611087cd0ed31bbe6895d805e4f3bc390cdb4656b57de73d57ca6eb4ce5a6ff4','59752eab447811ddcdad057d23a159cabced8daae2d82280d42fb614c59ee853ead5384dba3bd0f7',0,'2024-08-08 11:35:29'),('5f5edaec6c306144cd693232ed693c4ed9ceb958468fcb933d0b8318c9f6c458cb09a8366cf1a2ff','6780c0d4ca5df53e619d0ae37597820ab3ea5bc0a8e5653f7a4799c86a3467c5ae1d8294e0407914',0,'2024-09-05 09:25:10'),('5f72d74454dd1562fa7d9c79a5c23a22b94582e2f1dd3b45224be652e30208b8d3e4eee8ce1abf3a','2c44f13f37bd397924c4bf062feea12dea73b96345b8669d559f06aca35a8e34c34865b484a97426',0,'2024-02-20 09:57:00'),('5f755b043b146fd4204d5ba269182e2348cea50df85103fa07ac9bd8c9c576e4b9d20237f16f3426','66902dd3338874419ef57d95872f0622938a9c9c1d9c36eda26f25986fe60490820a34c2326aad31',0,'2024-07-04 11:36:34'),('5f769d68d9cfecb597e0281e6d4ad21c4d555e7c69d63a7256e809c34e7d99d2ab0233ffd388a54d','4112bcf42677bbfa0223ddd4e4af1fa871159103ecc72ba41c4a4a0187c6b580793f5a1a49e67f97',0,'2024-09-14 22:06:01'),('5f956828676471919a4df5273330acb8c79ae6b148eb4bdb107ce09c7d454a7874f59bbd04c26c36','c78583c17f1fa99642f3c36ca2dc0ab700d649d87058055cac15c1ad817c4d8cf6f7f7f87e004a66',0,'2024-09-26 19:50:53'),('5f97a9e3dce12b0ad38fa936361e369829ac0af45fce3784355aeed2039e0d5a76c5fcfc8c883dac','f2a5ddeafde41e16f62ec0a5b563606ab1c4bd7365413379ba6b90cf225943da14732c2f3a1505aa',0,'2024-08-29 08:25:01'),('5f9c8bb7b871621eac8a46b9029d3c3432e8bfafe51bc1ae92070a5b3cbc1932de968bbe054d1a4f','bc6ebc8b3a1e28881aefb3b7323182042c5555ea08fb576451951f8234117881792436ec4b148c7d',0,'2024-02-25 20:26:23'),('5faeabe04e89376f97ca97197336ba8f51e177c11cf92813e82efeb034ae3053ff5c273a3213d099','e1faaa3ef3a4e8bcbf201c15caeb9cee77591fd4eb0ea97c0bde54d338c1a58ad9ea47c7803629ae',0,'2024-09-07 17:36:58'),('5fc4fc6df7c1706466446f88d5bb507a918d7a6de55fd18b7eefa4a01583e91d982fa9fd3897172f','7de1927548d63066d8cbf738bad555b02db2ed0f743d20143c4d8d04f004b08f76ddf4da32b0680a',0,'2024-02-10 09:39:31'),('5fd12f5dad771ad1a0b84da0859d55a201fec02c982dcb295fa4eb4ce07d83247e58375553a4cb45','720480cb911d3e87ba6099f20327b1d23cc9f0af4468e301d005953ef78fe22e7bfc11ca51c1c027',0,'2024-02-11 14:15:16'),('5fdc52289283315be9324e1fef80c5c5ab0482fd8f173dd0e25e3d7f5a160d4b4dd8d987e81bc812','78636c406a2a7703282607d3fdb062bdc18d49e0fa6752f696bcb98cd83214915dfecdf0c52dbeac',0,'2024-09-07 23:53:47'),('5ffe1a605f3d919a499af54ace5850a1362c8b1269602f50e5a31f74e19fa1fcb84021baeaacde5d','476bca0613ec089134411661649915810f469db0f11f917873add7f1e71e052da24e09d51a987e01',0,'2024-03-29 21:27:55'),('60049c5684d8ffb7d210826b5c5e421e5d8266aaa36aeb0ec7f6f9b243ab96afaa3cef2380916408','bdc8583276365a19a0c19f78e6a566554f26abb38269f78223dff0ccdde23b48b30b3fabb01d3d06',0,'2024-04-15 15:27:38'),('600bec58fc39de24ee6b94f005d72287e99db786d3fc75c9a412166ec791f6c6920ccfd86c5b4b4c','32b07101d7689e75ef5a752ad0a0f319c06353535a5086c606ab248f7b05df23741b86c37dee2ae7',0,'2024-07-02 20:01:55'),('60284e59e42c9a5934a42c8e60f8152e221e36e732ed42bd3c9ed69c35cf43e38324f097f51d5215','b2774e11232ed2f9c9f238c3981393ac87dfa4f19e42c25a6d93138deb073309f844ec451688bff9',0,'2024-06-18 18:01:41'),('602f1679398be29a809ff873aaedcee560a35cdad40934c00c69799a7913a2785b609fda090356d0','8b5369962d46998f4da1f609212ce7c5352ae257331aa491336ca26bd37d40ae24394cad4ee30583',0,'2024-04-10 14:44:24'),('6055b96e6d8970f6c1d8e37d29bccaefafd5644021b246346069e26b0baf30d8762045f34a74dd29','fd4c1c2af258953620e050c20348b532461386dbefb8618fb1ed68a05892ae7081529a177452351e',0,'2024-10-04 16:29:08'),('606444f978c6f965f8b1b120af533efa17ff70d804b74891a7316b6e821b2396de0253368bacdace','d31a47ede44da8e9b42540971d1b03514ef3d70e2fe2eb9a0e48f7f4a64c665f36f5495bcd46161f',0,'2024-05-12 15:05:40'),('6074a48d7bd627872002ebe4b185538a721310ec6775a7bd4079cff4716fa4441ebc75423a65a827','05cb09df7504c50cacd5d7873ad7f2a8125959bd769a5c283fb43d7407e7e642fdff7fcfd06b0545',0,'2024-06-20 20:05:29'),('6084ae46a751cfc564411e716af2d5d5bb6c5f9ccc1b8c0b51c8e022eeec98673b59a8acef525f5d','b25fb47adf8ede7a743bad394332b801c0ff90644bf74b621f10c9d46f6b86c0208ce455219a305e',0,'2024-07-30 16:50:25'),('608dad9bff9597846e6351214c12c70406cad63d5eb00c2a514deb03c47d53f3d5735052fcebeb9a','e5aee51b006027a0c94ef0c9c51ca9b4db583b32d0ef0c9fe0c1878ad9359f4052a1a35827b6a146',0,'2024-09-17 08:56:44'),('609c4b957adda12256db06eeb3ec173a8f8bb4cf7e0dbff4764d9c3f392495946f5a6cbe10043247','2db9a729de8f045a8e55125cacaaecb9a2adcecfdfc703bc370f8572e519d909c0c96ba46ff0f46c',0,'2024-01-27 10:19:01'),('609d4342a3e9c00145dd4ec3b434ce052ddadb9a5ad3373819e6a214ff337e46a006bf6fad56a5c5','305dc98f5a1434e5c1df96a5ffa379c1faa20b71fa181e8380413e39030a0495983e12e27e5eb4f2',0,'2024-09-11 13:05:06'),('60c505ab1d70449337fcc5eb0bf5f0cc460e0c82e998ae71d92a138d339eded1848ef1c8ee00673f','06e1484aec5e1ed72a5b56c037671dc4fdc17bb3d7fe4383655744910de172224c7c0dd294bad39a',0,'2024-01-29 21:38:38'),('60f68f1e1c9803e46b57fb2dd75a4cdaeceacde3b27b0bf9c4a823c3426e3d4e97e51a4dfee4813c','7628577c9f41ed0fcc565593575b08ed654c3ce8367de9974181a1f0d7d4c72a2027f2009399872f',0,'2024-05-28 15:45:51'),('60fc64188286cc8299269efb3d8be8c3cfe5355f51b53bb78d5a8f92521b6278b416f83b2d6c59ad','9721b4edb6579c73c4c4f139f36f285b1b85207055f57cbbc1bd7df70c1181d47671539f72557624',0,'2024-05-11 16:43:04'),('61013d8a8c340039c07fa951a8537cb850d4a13ebd85e691c04b98608ba4639f640211ffa62d1b8d','6de1661762d43d8e474b4cec9e858a0c0db8ea507557f8ba8881931f9826c21dcd4dbab7a777ad0d',0,'2024-01-29 13:15:32'),('610543e77e1c055c84e86db7c0accc8866bf22c0095a7c9403e757fae82a359cd8d0b0cdac0b98e9','54d45f8e850cf0881efb4783342748201c7d398af44a3fa7c3e3c8615cb89c5559fbde5ad220c47c',0,'2024-09-10 08:52:31'),('61067c9ccec42d3ca9cd897e85777057d7c3898f77a1e2ead4226db22ae5893ec2d2e35be7bf6247','8a9a1f139959f6a3aec9a0752f39bf0c793caf31bced5fc999afedb72a932b3c1dbe910495741af0',0,'2024-01-25 21:25:42'),('613bf04f7a5693d27fbf75225e473a7b28e75090a466087b917067ed43fcb7e01d6c5b6e62cc6f13','246ce394861ca4b344525e7353f55224218802b5c306a7d8e5e66bcd8a2e141b8ef4a15fcfaef97c',0,'2024-09-09 21:56:59'),('613fed038633da87c5b2a55f901701dd907998187d13b81c33b92bc9f475dcf9b514d9385f5d4556','05b65f3a3d860dd1e021e9646b91c4a00b94368f8f47c1573b511561f7756d2dcada3906e53395b5',0,'2024-02-13 14:41:46'),('61441cd1e8915ec876f68940618e9bbcd758eacbecdb250fe5af6152c435400bffd5854e6a2e52df','b838da4f7e92f58c2d2fa0a5992fd6ce70b4dd3ca0470be7dad2ab58aade75ae31403ce775d12635',0,'2024-04-09 00:36:26'),('614b9f1c38328f0083613f83f658d6317e2acde5b1acb7ac0af58142e0c98eb447cb719b4466147e','f3afee09381542acc32fb4d814f4a7f23e3395f3586f1b3c7503440033ad6b5b22529cc056dc4d27',0,'2024-02-01 20:17:14'),('61504b12c268e4038ac40954077c15487f9096dc7b034020aff914268fddf6dc3087e37e468a403e','b241d85818328e5682ddc0cc2f2df80066b5ac79b44de43fcd68af285e5f6ff109318177f38c8f24',0,'2024-03-01 12:22:27'),('6176a1567c9554b043959f2aca4bb2e9be4fce4ce8818bfa9a0b7a9922bc6ca917e3a2ec1ec5e1b7','57ecc8dbe49290958a735a5cbc8274fbf436ef39d55447acf1cc9a6a2d4a3ca0b3b4c7dce3609118',0,'2024-05-27 14:47:58'),('618b98de98436ef31a9fc8bb4658abeefa3987a8fd2dbb8a94d7c6a29d6fee859b183d55fa9c1864','c8d1be5c4c632608933570fb9183d06a2f8aaa6d506591f913cd6da8c445be69f2c0f6255b9978c6',0,'2024-01-25 09:56:32'),('618e1bf3e31f9dea33fac6149cb2647f323d2aa5383c80ab2f2bf1460224debe79e2ed4b3a2f5c64','9f9105ebc5875344753770fcab9d00c1f452e693fd28e33b32814c304027e2f44d0fc4f038daf998',0,'2024-04-10 14:33:53'),('6198d9b05738274160600101b1cc9229a3ab61848a46ed1b3c359b176779f32c64083523a75d1f7d','1829c2782ff842174feeffd19d0e836813b30ddc7a56b069760b8fdf6bc1722d12d59a3909e40239',0,'2024-01-26 15:35:34'),('61a11a0b8ce117577723486d496511186e66906e356ee7d295a3ff3e8f7b56b2dfb66276e927ea6c','c2c1ef8d48d74bec89a8111f0ea414d012cf5625554a830179190419b28ec0a73f874cbb2dfafb17',0,'2024-09-09 08:33:25'),('61af4ae0b452da96eedacafc17fc0002f5c5c98bac4852730040b81925213381e19a5c5e87a30f37','bd107325e4584f81817e701784efd5bd720e50fdca7cd015fe84ec7eed4741fd7f2c97f4ce83594f',0,'2024-10-06 04:40:20'),('61b7793f6d8cdd1ebd647d8cda56238f8c4e7ed7820cb4d9b163933880be739d36a13adfd9062643','2b3773b3b58b9144998878fd60be7ee6712b00c4c2304752b366b86bb51362a6becb849a0884af22',0,'2024-02-21 20:11:06'),('61cd1710f679ad92f86078247e5447df2bdddbad629bb7dff73cdd9e62f0776e2c5d0407e29d0779','9614c3c4ca144f97e37fb58a986b7e21243a7aca5c76926a967f76004b9e945ff6958705e3a628ff',0,'2024-08-09 00:02:25'),('61db2d04f76237cf072c6d38150268fd994aa52df82428d15ae5823652c52cc0d042aa973cb2f9dd','c02db0763f3fb6c504b1f0d42b1d0b3e7bbd4c0a81d8270bbb5278e0cd444895bb2a0fc7bdd65e4f',0,'2024-09-26 20:13:09'),('61e1eeae44aa3ade05b4a7603e292fbda78daab1aeae70e594f3cfba13443393783fce14bc4966f9','56665b250630cdc052d3bf8344838851d2ae9be7993cf3e63b7a35de9ad6abe3c2623a7f9e088001',0,'2024-02-13 14:17:00'),('61ee6ca7392e88f6cb4b015b3c016a008c0e091352c831e0c39aa48bfde5f6a4f82f69cabca16ddb','87e044315e10524c1d7a85bcc3cc1a6f16bb1252af2e008fb98cad6e38c131669eead17b5bc56189',0,'2024-01-25 13:25:41'),('61f12e17d317b0ed98d4bdfa7523d2d7fd311f291c84ad07cca562ff4f49f800daab012ed9167f91','ffa9e23ba4f4d648e749d5f68d287686956bcddef920b9bde069d9d5f147690ea15b51f61eca9a3a',0,'2024-07-25 17:19:45'),('61f35d0dab61957e74cbecc0ce15bf80787707963eafcc3326000d5b96e96f134c55b84d96b31e53','e53a7b029e3678d13882b24c0f345a186d17697f26e7f796dfe708f65f511ee24e5ccd5a166ea872',0,'2024-02-15 21:46:15'),('61f8cd74931f52f5b10888aa209316157441f3cbe1af22abade669739b6b66bc2f54ef92cef17e5a','f43a35373345cbaf4270b9f24ac11172f2a4cd468ebcaadd7172f99cb73d94471c6c4c233f6a2465',0,'2024-08-18 09:11:43'),('6206a0a8d5d100014845c805fe1cee9ce23bad7fc752a7a066e7abe59b6f5327d2680a0a888d38f0','cfcca74641869b931ac335cc81ef21334a2d8b75e13a8c594fbf205fe9ee60e47932f1171225bdea',0,'2024-04-27 17:11:58'),('621b19acc21d0450529675cdab53252c3c865b766ff7d359fc275e07b4222e10df3d804162b97723','1a016f54281377405f00aca02354028635228875bcfad02d1cb992acdf849b494cb957fecc34ccc2',0,'2024-01-27 21:44:49'),('6227962ba5dd0c3a62fe3470bcbf878ac88fb209f82c177b7add9653e3efb48eddc2e6bc28fc049e','a13fb01f8172d754c74f8285f53861f1dff466f85e25376a798a6385ddfa95cd3efc9afc8dcc558c',0,'2024-07-07 07:28:39'),('6228a1ab3cd2b4624e94012b3b0e45731d9c1452e6cd7a4c47e437db5245b2e827a7123779874479','d6f37ee2b56bb488375e596657db1cebe6957c43be499f83cedb651aabe7a3b9f5dcfd4246e935c3',0,'2024-09-22 20:06:37'),('622de9be8adb01b439ed88b46649844d66cadfc633f6319eee766074ad1d224628f710b697727625','777aa311da13785e65faca8361f3b9ef6aeaf2a866b881f213aa5e102c89359aec34741bc11bc56a',0,'2024-10-07 13:18:16'),('6230170005f2f7d7b9a9fe1d8a4b92865663b5173dbdc6871d9a9c0e8cb0b38671b986b02313cf5e','a76a6af00ddf11f2ebc4d545cf25e7c2130a3818d1c3f2418054338294ac30e4e471b694af8da389',0,'2024-06-20 17:06:29'),('6237f6311261926f16f4c97013a6eed932def5d0cb69d9c387a9e197e30ac7b085bc896bba473465','7d36f1d810d7aeb8f81a1642b3f891b2ba0a6fbae4998721fe7ee4ba82a906143d6911ce247bf1e1',0,'2024-09-13 18:28:59'),('6243fa0616ed6170426b038a19a79d888a0c71fbdc255d154fcd3df1d90c719c2f0927ae9379640c','adb20ed58b95c4722abc930dc4b940b2a6937d17caccec103424c50f37397a569fde4ddcf9766239',0,'2024-05-08 08:55:10'),('626a19342e11f676de6bd74803824e176876c68b29134085bbcafcfc5404ad4410bd4b84ee4651bb','847ba1884ed7ce8d0706821d492196cca4f38a18df2cc7de91823d262e3f21caa0af032b3343bbbc',0,'2024-02-20 10:00:56'),('627372f0e020b2ebe4b07abb176b2522690101f3c9cd4471f6fb13264e4d9bc9edcd8278353e435b','7ed19821b12ad52d21dfb9c298f6196e6ffa336ca213ae5461089c07d037bcc264f0dcb81a1a890a',0,'2024-02-20 07:58:33'),('628076d8aba919905c0ad4ededddf1dd7e95a0c8eade88126d63362ee4e0169540340d25fb883803','2e726d9808f0b29f412b6434fb1990661aa88e6d82b9078d373550053fc53f92619b228247b0061f',0,'2024-03-27 19:26:42'),('628eac1bea9dd24d5f6b6ba619dcc48a4410ef04324ded82123292c4a5cdb85d410a4fb65c288986','9453a444fc123e5787cdd8034b98b85b1ba932169c6fb9b3abe70cd42aab31eac6ba1171b8725951',0,'2024-07-23 14:48:16'),('6293d2143467d7a1d24ec83be8d8dbed0ae2a23a83887c522153037d3cdad6a263fda22169e0c319','f36f0fd57659805624dd2d09e9a37576d2f640dff9452c9026deb9c4a67d2817120bad26cc338392',0,'2024-09-28 03:50:29'),('629c7f61799759dd1ba4db268e41d8710bec6812bc47bb6a39510a4d07e321d741e8bce0382d6bb7','fd7323a08499d34db11548c257c4f163db97d1177d6c11ad25d5d840f9fe11627c6a6cc1cab9d2b3',0,'2024-04-12 11:43:47'),('62a06cfc0418a1fd32df8cfd8e6395decaaa5fce740955036f9f43b2fbbd6661f1665eb390bd5663','068e4d9f75111d90af1c009788b8b105bec3abb8630089baa8fbb66d8346a625aefbf1ebdc4da0eb',0,'2024-06-11 15:01:08'),('62a79ff57fa24fbde306ed37852ed05b652b41280123c2e5d5861ecf1200557375426855e716390d','91562018d538e5c21a6f313e555317fe5354d0412770512ecc860d1e723da51e4c0ec59b7d8df941',0,'2024-03-02 06:59:41'),('62b71046399c741f575bd281f2a9c1ca24bab3e593ed3ba640a990710849d1c53b57290dde08d567','1b696664e3541f07dc95779a57ae65c2032f860daacde4efc89fc5bb93694a61512999833cce9b50',0,'2024-04-09 19:56:37'),('62bd7fbfa883f5e696573d9fadba89032c174522c0531f8bf9cb54dc51d04597fb226b2ebc785b75','99d3538c346469165d78bb95726062d1e8570b27246a4c88d13dd810dfc181096646f9d1d23c07dd',0,'2024-08-14 00:00:39'),('62ede389fdc9641f8d8641cfb796ed9f638f6d5a81a35e5feff94804219b5ef59ef34711b63206d7','80fe6e0d44cae4ec8a76ef5bdbf3e23d7117b01b15924de10b2a64b326c1f52920bd535dcd566ccd',0,'2024-09-19 21:24:53'),('63072e2d96321dd28988bc530000d54e468cf2fd8cfc3859a9bfdce4933448bedecfd78d9461d092','b6b4c1b28135c450b8619614796bb03dc98290d828d4f665e14721336b98f8a4d3715eb118c27dcc',0,'2024-02-23 22:21:35'),('6307407cb87339baa37a91ac65a2a927ec88a2ca5609a9588920421480d720c8ae436cf271bcf346','89179c1dd05d7156258086013e90f55f6e763027275f4ed6de45c24b2d70036c114f387ba457feb0',0,'2024-05-06 09:21:29'),('630fb858f89984633aee28af25923d1fd7da2dda4fabb2faf8d8cbded6e64661ee397c09b8ab5ff8','11bc0b058e0ce7d18ac76fd55ea8a0433a227bd4be80e1964e5be95baec6a5fdf22b8967c57bfff4',0,'2024-07-13 09:20:57'),('63240c903c37bde91aabc96b2d9df6ae034d61b3d7dfae4dedd8b4a0f51021d2a4a7cea3b339bd91','b0eeee4252091271cf47fb9dfe71690d586784e08ccbfef3467aa50f00b89904b21ecb2dfbaa3eeb',0,'2024-07-30 13:26:13'),('632807b1cf5d70ce175b8a663e861340c5e2291b010af7a7f5ae5b9b017389c55ba4d64c7c4ab76f','d6d7ed3ab3388f3355d5be005a822f67ef8f5fb3d6677de9118c98e7532ecd96355e828fd453ac7d',0,'2024-10-01 06:51:16'),('634eddaf462b74eb948903da3ea435a291f8682359813e78afbff2792b571c8a66e59bb38fcbeedb','c492058d95d755ed525fa8bbce3a1d3920c80ca03fc91617e09f6105d3fc8fdad8efe7f1ce02c336',0,'2024-05-09 22:56:56'),('63558832a9b27c10b81ed9b5dad5de5c2d09e7f09a6c21423afefadce353af6d04d5938a30a97c5b','d809b31264568a58384f3a20f4beeb13f1e274ff38c88bbdf0c3b9e57c0d4f8531735ce0d8893eec',0,'2024-09-23 14:41:05'),('635e0b00c3d666d5abf24990eda04663afb6c4ca086cf30e3a34f90e0540abcb591ef3c8a067793e','c7412cd8bc525f8b970f00c51004467751df0c30a7e0a6c1866ce1160d116365c9fa68ffbf59a07e',0,'2024-01-25 08:03:28'),('635e27674b17c790f8b483f0134336e9df66966f73dfda8ad85d70030bea69eb8750324bf2b23183','0083437022b8d6f506087f6e2a414da1dbf2fdcbff53d6815185e3276157645c80f5da4b938c215c',0,'2024-08-18 13:46:08'),('635e5deadca437379ff0fc8c4216064f885dc912710638f6e52883b439bc7f4a72ccac360985ab48','95ccbf645b05b4fda3e9376784c9d3ac0864352190da240a4d3cf832a0ba725f827b1f37474aeec9',0,'2024-06-01 15:12:14'),('635eae5675daf62b5bcfda82294a255a8722437e43354aab493b4f1d17a9d762917ff8debf522fa3','438c595bf253ebd0d64d1e8546c67a40a194c565486af48f11ab3b961c321bd143536a5510e2247d',0,'2024-06-08 22:28:59'),('635fb771d6707ade64ddfacf9213c3bd8cf59dcc7e75d06be30cf6e89227aa41702a9ad83ca9749b','79cc0bf3231b168b550c1c7ef37d187072d3b6038bca8a4cb56d270499156330b7b9fd54a6ee0f4a',0,'2024-02-22 16:24:59'),('6362d90154e09432e3538b8acd4e3cb7d8268997c8b462cc19739c1a1bb8e287a58f29599d51a4b0','d29be6052079f193a9055607bbaa4549483e18fab5ef0cb6f304bb08e3780aa1892cf497557e2e02',0,'2024-07-05 15:09:56'),('63720cec975c07d7d90ae0b33eea2e904f844e1abd6c2cfcf948b4476db4f58ecade36a7298b2a94','93b5759b4c9388e856df22f6a3eb6bd1b19f8c552d0cfd63ec422e7df78432824512ae4d47ede69f',0,'2024-01-27 10:37:32'),('63749c9ce856a1bee2088eeac7ede4673a5a9d2303aa83bbbcdcd3cfae3263ecd1e6c0b00b8f6780','31f099e78eeb6ab865c731c503b222275867d4e115c0b4481b17b096d3abfed33a41835aad41f875',0,'2024-09-12 23:25:26'),('63b87baba4ee9c5b518d6dc3f2b7c29e3ec57d638d08b000fc7cff854b868c63c34f1bf92c37333d','0fdae596f83cadf5c9f84e9096548ba9072cd7ae1f455606db956838d6f31d6b7bd7dbba778bb50d',0,'2024-07-06 11:33:12'),('63c3cb484fdb6d576831ff74c91516a0e48a26b655ac27c3aed8f5628aff831df0be53d0670b3fcc','af31638c6cdb0ca0e0f33cdc04074fecf5396b8012bc0f4c234f8f15f2c247110cbd7183e34b6a93',0,'2024-01-26 09:19:19'),('63c70497fe774767a436f7c9e443675f6dde1f9694668221f4c343eb85752123914b9ce28a1ed46b','5b1069bdbc8e722f641eb353da00e2397d264c7fe093256a96c390a2ad4922472bc3f6d579467523',0,'2024-01-25 19:04:56'),('63ceee7bbe859d8cef525c5a4d509ec035bb83781ceb1b46c3b56668f2e3ad439503af15e72268c9','b8ac5b3a449a57e4b590d08ce7dbe3564430576a9fa0009a4a942546b7cec94aedcb0f9471682e53',0,'2024-08-30 15:41:28'),('63e9b88bfbc0c912f6f0a9516b17c297d7ac9edd780c2449adcf4e12c324503e44eeaf068900aa62','bf7492b66f19e48be94e60bd30a437f4476ddce002a818d75ec117bc2107257115a9889667443cb3',0,'2024-09-29 11:06:32'),('63efe33f1b51d363d9eb0a21cdf33c46ed65d4b4c5aaa577349d46fe8035b99200cf5ba823d5b574','3291abc10cd5146f069d1d0bd8af161931b5892ec6b69fe870a5a15a9fbc050217d5856415151a89',0,'2024-01-25 05:27:10'),('6405ff61f9b6421d199460f2ab091c37904c3502b3402d0a880d46b31b3e5fc2b8cc7f40ecd056c5','c30a7b66c2f1ad9429d3a8133e8554e500c8493e56c1ef270461bbad4d96e480c59e1da1581fb5d7',0,'2024-01-25 11:02:24'),('640e91416de1f0cea669e84833cac6ff563169aaf175be6d40dde4b217d67ddfa7408116c96b4cf7','23e8a6c4960c95f3e4cd06e795a856e9baa119f4de972577ab13a3cfae747f9d2ccec0cd8b0c2dfc',0,'2024-01-25 15:46:26'),('64136cd8e7d57d9a7d2d7406b5a2e47e76eb2964b636f69077ff490e54cb55489ce99dc4be5427f8','ed4357f080e98a7a2476c168bcb04d9897a3d96b7b1f562130a7a83391ca74e6a7a0e7144e092d68',0,'2024-03-06 22:50:17'),('641bd114eafba55433b1b3a8ba321cd6531ac3f9aafea4a203997c8959b69be73c2fc386a89e18e4','71819b550f19a9149fefc5d1e519f45181568bfeb2e8fa1d0afa97b34c61b94c2497d1e33fa418aa',0,'2024-03-05 11:01:30'),('6449a522138a69c8587822eb10f440e4dc4817f71a1bd17e48d8025740b64954df2a6c454e1bc6b8','2d8903ee1002587264a1adeaa42462e234e1afb18bd927216250c5aaf9cbe90cdc7fc7032ec5cb0f',0,'2024-06-30 16:39:01'),('645048b747752fc838d90127df55f35e01630df93dbfbf66afed385d3cb5b3808718a2b829531d35','65ec96090dd6b94e820fb9054f82b1b0400359ffd721d69e91ef362cf0ef5b8e12f20aa4d101f816',0,'2024-09-07 15:23:31'),('645ecc6628ab2ceeb7a90b982e0605d7147980df9020c7d16a73011f7c0337e43d870918234f2086','04faea3e6454eecaefa56c8b81e4c70d0f3f37cbc67c39e24cab2e3d581028e01317062e3d6e8023',0,'2024-02-27 16:05:26'),('646322cfd25aee03cc2d7097da1c456305de1834299bd059002ae7f6d6fd5f15349379e48141e630','cf90b31a9ca9ed1c245ede4f595ca4b94f1150c3fb7df422ecddc978fb76506e2635ab04d11f4351',0,'2024-06-30 17:07:37'),('646d3cca702403c2ad972f804584f02569c8078bca3e97ccce21fab1919549764a5e9a7f53967005','53551e8043056b12c44920c8874d579bd97dd5a4ef47ab969d73b64ade5f63576fea53cf4f3636dd',0,'2024-07-11 17:56:27'),('6474ebc15f4d0b2b010453b0ac65e83019bd800e85676df4c2eae0fdb6de6b9d05a4dca1844cc4bd','be23557c371daf9e9eda9fc043cfa747a44cb7dd14b00b835504186103560248a23e594ca15ebe42',0,'2024-02-23 07:03:22'),('64974d9050c4e0d4f3113cefc962dc2951d1d53ddc3e8d6dc9602499a02817664df23ec375745ce6','7aa8ab1821ffe6e74a183557ec0950df22ce680c65c4f396273570f084d201ae221d837322f0f3a1',0,'2024-06-06 09:40:08'),('6498f7a43eab454e8029d7969c5824e9ef8551e58884bd8d60956d1cc287624ab6fbf2d55aba3722','54f70eb747d8f3e65b8f1eaf0b71168f4df85022ba88fe66010fa5d7618162bb2812e6b8db4a7fd8',0,'2024-08-25 12:03:20'),('64a02c42486ce97e62c244f7bec48215d0c3fd4122ae1ee01675c0f069aaab36156c63505287787f','eba8aa08cc1447d1e370c9a8edd71b701ba8837ea72cd4aa317297b5082e4cf902b6bd609485cb66',0,'2024-02-27 12:58:09'),('64abadb6f0a6ff50ab2c3fb357909ef807166be192607731b95b6ea68459c0340a238ffa0c4f2a0c','d02f123b8eae284462565593f6debbddb89d1f0b5ab3eacc3dba959dab6499de49a903e058156253',0,'2024-02-04 20:13:49'),('64b4ed7e517e19774e48b864eb9754bc4de86bbdbcc2e57a840c79d7e2b3cf05f6bd02738ed5fb76','54683e9f3addfd560cc143f8ecf3fb66ae2b85dfb83827ff8456eeb4753b02fa92405cef0b890638',0,'2024-01-25 07:00:48'),('64c68634d19918669ab1ca0e8f11b2c3eb24311ba5f7f14dad7cacc39e95a25919b77b37ab43bb54','fde4f79e2ebbcfc051ea63a0d5753eafbef54fcb546254c9cba79fe4c7bf6b1aea4699e190af191c',0,'2024-09-12 10:02:44'),('64cac28c7ea12e264c6bbf014e0c14e000719cef78657a01d069d27028034e8ab22ee4808230a24e','d4a15d9bf68ff2f49f32a8b1397427532d6db08a4549814edb317946dc6751359ffc4947d3c0852e',0,'2024-09-08 08:48:35'),('64eac80644d44ac75789a169016e06799669ed89e8e32ee561e29abf16fd78c00b6096d97749a5d7','88600ceb6ad9c199cbfe6024daddde8c4bfbddf2b8a8c370bace609863a07335b7534c5a28247e69',0,'2024-08-29 15:24:15'),('64ee994d0686aeb54e93a3230187012373dc24e314f0b43184c3a0a0371e112c7a5d291a416f7a98','cd28929a7cfea08f0455aa44e9f72af1deba69d2f4fbb6c59c1954bbc7296a7e801765d9ce8c8a06',0,'2024-05-18 16:07:42'),('64f3a6f63dce0d9b41a5ddac484138f360a023ce7fb4ad620cc352c30a54e2ee2e2228f60cc8076c','bb00e2c19f32dea261981d1639216833d1490f9aa86a36373ec9b7ef19cb5fdb92ffa163f16df3d7',0,'2024-01-27 16:45:10'),('650e41fc15c2ff8e38a2d589ee63db91a3e66a7ce1da5d99c6816750d3398b770761c6208d02a2d3','95bd4a7837577bea1fe01ce693e892a186b88cf27319fb23591854b53c553138f488b33143498589',0,'2024-05-29 13:16:41'),('650ec77ea6f7ace7f9770e297743026c9333cae9c8bad946870558ab9cce4375b29143877d98f9d3','f2f3f7a4b8cce444405286edb8569730b988a6a20b473850193c61b195018a89e16286c84bcb353d',0,'2024-04-14 09:29:26'),('6522c41560f2464b5290efadeb481865c65073959bdb3cbc2e62c4ffa0a9b60d626a6dd7a42f4d51','8ffb9032de13a1f216b29c1cfcce019b00408f44b5f7269758bb31b5de27412acb04084c9b7e2aac',0,'2024-02-01 10:58:58'),('6547f9e37ed7ee67ade78f4658926c45fd80b7d31a4085a97748a10e09f41904a5afb7797029994b','4f1f2e73e398cb931c10e20ef8b7c9977ad67922b45de29ffa624dc3d9206d8b9bf80001a40a3545',0,'2024-01-26 20:09:08'),('6569589e15cc5fd6443211338e1dce2ff78b90ba55b74920a37e1cf3cd5628f3b2b8da38968d6331','bf1e1f77e00fd56b720ced68ac2d2f2a0077bdd548ca7c85900f5fa36ede42472fa645cf851cbea9',0,'2024-04-03 18:35:26'),('656aacccbeb463f7e9f1e4f02fee67d255c5e8d4f14d2d1ce725902cf6b9e10c8331e48632c95783','d63bef66ba0a27c8201e2fa20a7c63eb2d9799517e4466148e5f9409150b76df8e7688ff913dbe59',0,'2024-05-04 20:17:56'),('65719142863b7d8b895051c301af65bbec8e9e8f792516c2bd43e67de9dcb517788f0e5fd5a3be4e','26b0894d81b2f3e1734f549dc8a201d855a43b26d663816993fdfd7e278f1add29d824188bfeaa7d',0,'2024-07-16 09:30:50'),('6576faead050cd2e795257660736058e1af4acc3fd07b7c16991cb62027e433c008841c1c7660094','3d52ae869a79f559f1d601c9ac78bba902dd4df59689432f41da714569d96242310d458bf91ee5e6',0,'2024-02-08 16:58:00'),('6587256547aba85fc763267963ba7dc842546bdc93ea09c7fdd1ed6bb5d2bad31f1f1f2bacab41e1','1bb41f683e40267bea48fb9864b3030bd912068929400deae630d92a0d95b8948f9df39895a7b2b8',0,'2024-09-15 20:09:46'),('6591bedd9f959b13ea2fe8669b22613e12b123670c481bfe5ce8494bf5d5302fc389ed81187ccc07','f73b1acea7fc300a0043ffdbc9fac61ac4300445961c9c684a8769965919273788570e6b404de36d',0,'2024-09-07 13:30:23'),('65941c034f2e9756872ec355f7cdf76f7dfc6153c38e2cafe8326b42053c74f83cd4360c76e35987','c3b27d41ff82b4e2d6d285d761e30aea46f5f4744e3c082b0022a08e98818414416cf5df578f44dd',0,'2024-02-06 08:30:20'),('659bbcd51873b13de50562c34d7c3670a1b42917a8f5f50fe6189bdbd8869825794c177f51bbd7d5','0b3541fbe1ce81c96f62ea6463bc65a6e77cc2c951d8cd82c29b88ebd666666b465806f07ec4177e',0,'2024-09-23 20:25:37'),('659bf3fdce9ef0bf83c29a84637058bd6325fb5bf3a39933e30504051e98496389dc865b902a6e4a','f80a80e36211281f037dad09ec5820c32199301ef28dc0ee1134a48cb5e72a9805317e1b4ce2bc19',0,'2024-05-16 16:03:33'),('659e2795778602e0ce67abefe388b5048bc51276b298626cd0b66c9140bc8e821b3babea652d86c2','b748c1b1e4da050658970bc52c2d6e3e2b0795b785b7616a60d7d3ec6705865577b0aa41d05bcb98',0,'2024-07-23 11:45:16'),('65a556afaa61647720e6b216fea6ef111604d561f10e367b294696baf02e6affc6d16273e072e63b','11547d46cdbea78370a0fdb599d07165c2d88f5c691198be62386168a2f2e371176eca832959f5f7',0,'2024-07-25 20:16:42'),('65ad0d7947882d325e253d9999c36442aa837e5bb5575f18ae649165ac295649728d27f06a140220','bde2b1a97c6d46eecd2c05e7b4945ab86b79211a35a13f0d109075e38ad32b5447332b9950d46220',0,'2024-04-09 19:51:50'),('65b3903aa94c6ae3020923b9040a60d6a794418a85f62d10e1d0fbb56430f0bd5e32b2f5ce7330d9','fb302c37e28ec467b6505de0b0b96af2dd491e2afb30b35a03648d7519794d78b380383b4b89b2b9',0,'2024-01-25 19:03:12'),('65b61a46ca7edca8dde602402a9dd8471bf8580ca5f06d72b6755d505e754e90e381450f81db5262','fd7356539904a3a8721d16edca51642c4c376eb58551aad55ec03d39fef72ce6f1debc10cb778126',0,'2024-07-09 09:51:02'),('65b6b5291ab405aeb1926e962d4d9f489b57b7cdaaf18bb8632f327bd35029346b2bad942f7e7e26','8f66e72dffc6de90aa387646ef06a49aa4bad55f478801983b93dab6a77323c02e7f702e86da8bac',0,'2024-04-26 14:16:05'),('65ba262ef2f20c49ec9f57b70ef5fd93486e9320a1e57124e3f36ca0f5c95d5285f4fca518242c69','c3c0060454f17bab7d43205bd4825c6e73ce2edc3d028324e3d6ef2654ba3342399a0a532b6cf7f1',0,'2024-06-23 07:57:56'),('65c7d5037419e1050bd4f8ea405f0d75dd8d2a20d1778bc866701a52e61e8409f843430258759567','71631e654a758a3f390522f332d9b9e35a6841afddbb4570f95165240cf8da8bba2ddbecc670889e',0,'2024-01-28 15:10:28'),('65d9ecc35054dcd414318885ff43309f820d1f4e7ebf5e9477027348cf706bd3f7f334d0e7d5a537','2c9f0ff422dcea5c744ac1dab9ccc1d74e3fedb986b6e7017cbb8736518e9a7375408323f8fc7137',0,'2024-02-10 21:33:06'),('65dbedb11392a3cdc17f984e514b899bf1cec99c661644cbe2e1a940f54773c7b6de07a1bcd1c583','4529f81d6e2e816dbf13bf734ea44b06573030d40ce57916f48f16c83c1e091d380a8844ece4f186',0,'2024-01-25 17:22:15'),('65ddda8d2d84c5d71bd88bd9b5a9aa2b696bddd5d07e4ab397c2d8c0706941e5e0250699dfeb32d6','a3a0dc959577761c2c9b4cffad27be7507dac97382ee86a63084394e8937d57a63e7bee11d3bcf8e',0,'2024-02-23 17:32:05'),('65fb6bb80694f03012c46147778cea65b87ee00d3126134e735631145fbdd9b7539dd14e5e77ed09','0a0b07fe7de15c2546e76c800f4671e3c7c9980a869c5f3e3e7b089f8decc28c6f328c37afa91809',0,'2024-05-05 15:55:14'),('661e9771cfa0183933abfd65660fef8ba26d809c7455b728660de5abe2fe6f719a3e883fce4a3082','319a4443c3d9c1939f327598b633ae37ee614e104affe2b6c941be89cca44af5cef152a5d04690b8',0,'2024-01-25 09:49:14'),('663105dc256f70a03656c2368ac25579485a3e6ab4d71f80a060ccb371449eb0d6397abf31ed8996','d8cdd7327d2a29a0917c36b073851b9fe6cf543d0d0e5366523469816c44d889ae9dc54ab4367351',0,'2024-06-29 11:25:17'),('6632b5c525394d9dc474fd9b64353b0d01356df03747a5d838b2a12d30bacfda144b0cc5c5f58587','3ab5e751953b0c4fcf4ea536266190693608badb93c7d9e830a166cf2484e825bd9b3470f641941b',0,'2024-06-22 23:01:32'),('66371913109053351b5841d9177735b18696022c6b4d69b42eb9387bb689931461673c66a7c72f11','a15c2bfc409d183925228704c006500c9d5d7f839e98bfa1ba1f2c210e1a24ef440c0fbfb08fce65',0,'2024-02-14 03:20:20'),('663ce2a0d0e5f59d5c7cb657b15b59c347b7044580720b4ae4b58e7921faeac77018c3ea5a1080b8','1589d2d2588108f43b7a7f5199a214b8fa6bb038b9977951f9c80cee21f6e004d5a00869620d6c06',0,'2024-02-07 22:29:11'),('663f5326255f6bbada667e0b919c8629bd5d521d8f9bdc423ec1e2f22da10671c650c4b31fc3707a','85be2acbe0923542a05e834b311759c81499023a3a520a578f87fed64aaca2737126229c94240121',0,'2024-03-04 09:12:53'),('66698ef1e0de66da27c60ba7cf41ce35f3d31283e7176e817644f40493f86e6a1df84834e91f112d','d96f96cb1e9d032aed3f0a922f1b8c264339d7391a59281ecce8aa1ba8d8dd71d9a4ae20c089fbbb',0,'2024-02-16 02:57:43'),('66732ce14a49e4e2ffdeaa77a7473b26ed28e577c7147d66a5910b79823288e3f18fe11373870495','e7c9994c03e787782a7a1c3607d5a929a6307e0fe469220ad1d951f25c4442270ba645256c96c592',0,'2024-07-24 14:59:30'),('66822faba7e96c5c30dc62172fdb5535b745657292eca2623221712aaff5c087d6a8ce2773ad5e09','f5d73f383f2a625970490d8dd34c6f497d3a56d4bfb2c3aea1cdec813dbd17c7ec5f80429c5dad55',0,'2024-06-06 19:13:21'),('668a125527f3eae9df41781003047b4f78fb0192f14f802c99d90f2ea82beaef3e7eb979af824759','f014dc5eb5f41cab638a44a0dc4b3cee4e3ba41b91fe6280ac8039a9a2eff2dc775b93e2cabfb190',0,'2024-06-27 21:33:04'),('66e908ce0dbdd657db312befb9c305f94a36fce2029e1e20ec40429d7c66b6cba348f5b33ce83b14','b434dbbb4f201937a19a7e406141109c5b36f96bbb9446e2f8960fa86d584865db65782f2c5b85b6',0,'2024-06-04 14:26:00'),('66f234c6e985c9c83681d5cc2c9668075d860ccf84413e729f2d5f9b9409b22e6566b9a20871b2ce','0ac297e257071f5c78ab6fa9ba71a5a8f26e3e5fc563695d4cb5a304146551eacd7e418aa1901c10',0,'2024-04-28 16:09:59'),('66fb74f95bb2f17f78ea2ce640613e1ec78ca36d559dacb790fac1b23818c588a00c7ab64f96c95b','becfb8ce46f8481f773f11936cf63d8a2e1d1513b31297f7b05442754c363e0768ab30fad9cd072f',0,'2024-10-02 14:09:52'),('66fd5c415ebb095a9b17d04ea520f7c74f7d95061ae618854041775180819125f01913bcf3e7edfb','59d382746de087d37f74b774078eb54aa015394d5d925b0ee1cc874fd97b5e45f2990ccd7ab1788a',0,'2024-10-02 18:21:54'),('6721505e9dd97f7e422008e4aee3f2d609d9999ba8a64d0245e2db9e4bedf2917751975d8256a4e3','f6c36c806de8dce98f779740324cb4d0aab38c8eae7a88e2013833fa33dff58ca047492f190ef0ea',0,'2024-06-15 23:25:49'),('6731eb0cbeae7014433a62fee8b418e7040da5bb94937550f0767abcc90eca1f26d9697fb4001f7a','39d17065b6c0bdb44b97c9a8ea4076d2d94b7e6fbee39e5d111208c7fb8f20b3669f709b036a17ae',0,'2024-04-12 15:43:58'),('673d7f23e3aa4fc223fe85a6a29de10be125ccd7a1ce9780491380d4fb07829f0bed8e1d0e19ca4d','dbd4b1daf8e58030a0cdf5b1e8021ed3a05b7bc8798a94c26a5fd411fb1ee896fd2c52cb02aa3906',0,'2024-07-22 00:25:20'),('6746f65050e30fa7137027ac4fd25c5795af780739337b96faa9e485c20799c8dd5833b6e9923f4b','35a95a7fc9d25b63d103448703c38d0f619f5ce57d769d668d98c9fd3dff9a8a8cd6d01b4c13342b',0,'2024-04-11 18:52:08'),('67484a710761a673ec30c4dbbfc304329babb05dfd109224429c03fea2ed9eac3b1afeb1ae0d2c2b','9f2cf9481cbdd29db56f26dd2b944f52ace633cbc37793bb9bc731bed80662e0523b5576b497e3c5',0,'2024-06-05 19:21:20'),('67875bb4f211c521fd41abe33460c0c0e26868daaffec7dec0a02646ab9726a72807ac88882b74e7','926d11cb047d7be28110609b4d1886f2d795e639d0c5c7622e1bf661d2de4926f3fea90e7483e888',0,'2024-02-05 08:08:14'),('67909adeac64390e9c484adbb0cbdfa56e63a5e59375e6d327925691fda47869e299705b33940170','a44dbe3847896538aa9494c87041815f8c339a6abb0a161d8df84814fc86f65a40ab624e9f2565c6',0,'2024-04-13 11:31:14'),('67945b7382a77dd5219ed9c08995c04f6fcf22afc9fdf2273dfcd63e321d41b3da2dc3159b101da9','143adfb26c2e9842ff5db0f45628b97de2c7889d509a5a7b909b4bff2c0388c2ecf5ced2f36e946f',0,'2024-01-27 08:10:30'),('6796a14b97db7763a55932da41105e10d938a34d14bd6264b9a5f6439bc3ee3849d4f5845e30cdc7','6f15901c835785b7e1baf1be646907d4b9e881991636dc8b309714471ac24ff3eedadce0b8d34487',0,'2024-06-15 22:08:55'),('679d6d21df0482fcbf6aa9f602e77e1145352ae1160cd2a92e807512357ac92caded0261e79eba28','8ea4275e4262356315e97e619528050841ee4b6e8b3101d774e4030772d797ff14fdf9e07b793ba9',0,'2024-05-01 22:58:16'),('67a408c7652aefed823fcbaa5d7187dc0e4c1a696ad6ade8c9a15b191ca6b4df5214cefa61f0d5de','e90f7790b19c40a1352076918fbb0667a289994f9a4bbb86650e51adad3a6d230debe2241c23730c',0,'2024-01-25 08:40:45'),('67a4c7a2927c2859d3f7b094836436bd7775ef60e5e31b10aa57a35a283fcf6723336d05c8cd22b8','a9bbf73e5c4402bb77e761b35591a8216b0fbb15ca224462cef2446864c352d3466682cd6099f1f0',0,'2024-03-05 18:24:35'),('67a6fdb3cee338849e7ccb8b31f72df1a8435ecec0db5562ea441606adb8b97dd62239a9e10cfdbd','4b6a67b486ead462d6a17292659013cd04ad5ff7561c5613a73cf910cb78a4d5eea444014147afbc',0,'2024-03-28 13:32:06'),('67fd3f498b9f8e602f9cc224623353a29fb3321c4bbe6faed1637005f80766f8640dd670ced4e070','63c300873ebb7929953ebcf1766248df4b00b3385812e337fbaac6a04ee2b0042e732a52153f00fb',0,'2024-09-02 16:11:07'),('6818d5afee9ef5f68ec1098d866f10f23c6c4246a531aea6bf65ff930ee1a5aef296e3cba4350425','a6f4a3e8f2ac973c92368764a08a131f24efb6578ab64a9907d2a2334ee2807a34ee36a794e56e43',0,'2024-09-05 17:29:57'),('68448ed4bdc33a792bd82410caf890f085281c895eb392bca08a876a9c636fcd33b038b688520bc3','447295cea60e361d81559c660a9c8bb0e0f65a4be85455d949131668a3b7de5267509beb6627255e',0,'2024-09-23 16:31:56'),('6847d2ae5d3e0ccc2a73166efc2fcfe1c052810912394653b03a4bcd51fffabea4d98bef74cd7535','a8259f8f1fe35648a04c3b8cdf46ac3f03dd455bffc275253cea1010a1460d156df4be2a7cd9d60c',0,'2024-04-26 18:36:48'),('6849b4861ef375a6ee0bba81d05d2f0ac52a03c1b179d82742bf0e57bbcaf6a04c3a37bb9c03bc9b','9e73841421a975ddf24e90246ad06bf0470a7724b10cf5c63ba65b42ec84a829951bc7655f9319c1',0,'2024-07-31 14:22:03'),('685e57334e7d4829e03396fcd883f52534ed7468430f8f1cd303f316b30d8730b57d8084b1c55eb5','8817924cbf94355ebbad8b04af1f6f4e853142103af71199a81ff50bfd6e01e244d59ab68874b92d',0,'2024-04-18 15:13:37'),('6872d181e6fed8bc88f516b935e252d1d1d9e80b8fd3d3aad1a734a259dbda815ae347bb59d61f14','c410775119463102df7ca2eb10e1e3d92f1fb7bd1e5e526415972cd0e73d552afab30338c6e70d2c',0,'2024-06-12 21:04:28'),('68763ff78999afbed9ca5ec991792461702d608b7beae21c207fbf1a1af7cdc1489de3ab72eab62c','b1f0cbc4b8557973cd7c112455191f7b903f064ad0a9ade910f8c993cf213d335da4185ec9defe91',0,'2024-04-29 15:57:11'),('687b34bc56d6aec4bf3a4f69e38b2e2acece30bb84119468ab8f2cd5db7560b2eb5fdfd0277f6c79','f0688ed142fc2a4afef11de82dcb0e7649e73eb051fa8078533ce2c0369153844a35bd9742cac7ad',0,'2024-09-25 17:14:55'),('688413a96b7bbc6894cb66886bd18aa842af1ad20f767f16a19e642fec257506ca6b4a747152e486','584efd955c57dc35c278a4aaabedb49478b3deef6f9c56ce041a3c3e4a8d72de62b643b842ed5819',0,'2024-04-04 19:31:30'),('688fc045a67715bf6cd79c84a1dbe0333550ac188f7b4a21e003a7a48f72bec61f5660c7e0bc068c','bdb932f9c2a0ab59f871f95391d24d987bd387303ddac9f51b50aad02f8f69983d0ee39680707e71',0,'2024-09-28 23:05:21'),('68980f93204657ca8ba22fcb82df5e215ef641eec81f372f17b50536eda2160bb815e011a19f6f8c','4f1a369455f918522119526d63a50de117fcc616d0c4bdd7cb553f8cafbc3fc5e7ab59b568c64dc1',0,'2024-03-13 23:29:00'),('68a73589b7da19a32eb6763dd2fbfb5a82d0f0147ca8f5ec3f10b5e9698345e5c7f5f70f97c9e834','c4e9129d23f3dd0d1a8781ae5156f18c2f8ffbbda30dd21e18f6df387ae5cd2ff051cf531ad36278',0,'2024-04-16 10:41:02'),('68b619c038837a9d095021325d7b21f5bf1f1a6aed34c5af43d34ff29263f71bbec7647eb0cdd29a','f6a0e9ea738bcfc0748a9a7d8e1581ff2121e592731304294ccea5ea0b2120f18a446425a8c24ab2',0,'2024-06-14 16:59:58'),('68c80cc77b515c60c7d8fdc672ebe7310d1d50fcb12b260d5ed68a43ced239c19c91c08c1b892004','0224293b224a4d30988569c03f7d46575b130f54d958ee06fe20a6039a3ec5e0c727a7918d58cf47',0,'2024-02-01 11:19:14'),('68ef3872b47dc642bc0d3501f07ce731e88089a67b29bd9ecbd116c0c6567938acbc5b394c67b912','e1e78bbb388ba4799e21ad3f1171aea698db1f9c7bdabd29698b7a5317980a134effc7330399db5e',0,'2024-08-22 09:07:25'),('6904e4c562d035be7d4bce6d0c6acc30811628056ed79b4fa257f491a5adee85aa19be831115396d','c40c52c5c8b7df0a19b9c089c774b8dc81bf390c9a64e3e2a97b1ce1aec126587f3c103237d44510',0,'2024-07-27 14:41:39'),('690cb6a6e54949f469646c963207ecd17cad2b8baf501af3223063db11840000673dbcdaffeccb4b','75f02e8fa821a8f3022b74ebaec50369a808b6617a7ce22107d82340aa1da8031da9d9384830fbf5',0,'2024-01-27 20:46:46'),('691118a8ba71dcde4469a079447ee4a426517cb7a98ed532f98f2d19c6a65681306fb1a36f7b4b16','f092ad0a11b3fc503fa159c9b2744511126ba364fe535deab887664d90872dd06987aeed6b03a0dd',0,'2024-09-12 17:41:11'),('6916d05c5d691e70bc0186f5b9704c6c2360701f8a456a02743653f1c27634c98f1bc95fb6970ca9','80be5ac59fff28190c0bacba786063056e4e0bc6186442ae17e5e5110a13c458d1e20460e113cfa3',0,'2024-03-06 22:58:13'),('6922ad0fa8325ce41d348915ecf6b9675ecd7c7843d77f1f60b47df63b9ade65e8c6bd7739d08f91','6dd9b47636c82d8fc1ef8612833e3b6f59a2f8cb44cba45b5af44f3d4c00b1d334ae7abecca65675',0,'2024-01-25 14:17:49'),('6927299c5a43512a3176704f12dd07a37ae10215e9f1f995be657dd98f1e973a901feba85a632772','7520ea07346564a9042efc832bf48c2b26cee6f5585f4f2931e447fc139e376330b7414862354177',0,'2024-03-10 19:27:51'),('6942b15782ed55489959eddd61e42a795dd49f6b9897787689851f60b5d295b61d2266cb53ee1d52','02cc7de98a9b96f915ebbbd90295e7a4be35f81dcbe9a17e5e972c7d59bc724a6a0789fa51289fc2',0,'2024-06-21 19:39:41'),('694c1e2573fc641e32c628b9d15a7b8f86764a9a0e40a7c14e880cdd140a795e70ffa99cafe781d8','e17c7a74b897aae1f1ed2007047e47274e546eeaccbc660857f9810d7380512288101edf858ab5fa',0,'2024-01-30 21:19:49'),('6962042d7f37a6e7f2e06d26e73190f4a2d29b62aee1981bcc277246d3b235cba4f3a40517018404','30c3b46cfb3d3774365960bd46dbe15dd45140c59303f0d9a37827509642a5ea9e857d215fa410f5',0,'2024-08-06 07:46:08'),('696577082dfbbc27f92cc7f49c250d3df5316602f342980e51b25aa87d64e392ee271decae26eaff','9125a8bac28f4a76fd94d7d7dbc04b2c685178fec33ff105333a049a448dcc76387d9427331d4f45',0,'2024-06-17 00:01:25'),('696f1bebb983d1c8993de7d9e69e7aaf9dd5ffb226d1728c70cec3a542f794b371ef976c91fe9414','e23ed74fb4a15f99d253454fbb60d29ef7c67dbcd5e05b29f8f98a792980e38f7c9bdf1c117b4a7e',0,'2024-09-07 07:35:44'),('6971ba4c56ad9fabd4d9fa7c9e68ef25a050cb716979d4fb2138f71ba13a2c5a8d9c145561b2fafd','732e66229b77daf85e22a1cf6c0ea2d0d37120aeb5687976b67885ba710cea75c5d9db352114d04a',0,'2024-07-12 19:46:42'),('698f0bd7a9e2c05352005c6a9951ae0b6f9df86ba6590fb4bac8c7cf343d949cc1019e683a42e12f','ce1e10daaae1a5aeb00a2ca3a46bfe8b0a25e46197cf5ea565a7c3f813753492bb3e3aab29c5b51e',0,'2024-04-04 06:08:42'),('69b4e08983fc8b2e1ae3667f9107bf8a4b71deb064f8f84e4251fd609470671c5aed1595e2f95643','6da3b36fc97adbd3fc89d4d8e760ddb77566443311b7fede063af83fa467b840a92727295d23b357',0,'2024-09-21 15:23:46'),('69b8d13646d009ff72a60086a5eca2d52f2a667669168b301bc69bee4305d71b4956b64fea184015','0110c1123f7cb2c581ac524f4419ca983242780c80a931ef09dc507dffe676de299f3c7b24f1941f',0,'2024-09-22 12:18:59'),('69d4061233b5df00295d17c5d04c6593c26fbcaa9fb8e250f2775434a3082fc9829f3790b4f52e1b','3eac4e90c79cc854b785b9fc92c31011f5a38ef0a133ba429b7700e1d9ba8cb94f907345201313d1',0,'2024-09-25 20:34:34'),('69fc0a476b5c7ef92e8a61eec6e6d998b30ad0788f4a2474d68301fe4da26e135d7ddb808ba6dda3','38345fdbe2744dfa4a14a1260fd519b6799bccb80ec657bb7104251e5acf3b1844926b3df1b160dc',0,'2024-09-18 15:14:30'),('6a02277d8a45225ad7ff9a69676131826cb0633332960e3061f848686a8f7f2ddbfec1683b546fb2','0665166ef4c2117b69402feb0f5e69a67c50c369ad024d8db1fbed7159cae397b3ff2951bc29b0c4',0,'2024-04-10 14:21:21'),('6a213bdb92fc8d75f3d43c60de01ab6e8a76ff3f1da117d4ccffa4f5d6bd11c76026e8b2c5dfc5a4','2f48dac5dcf4bb0b56db11ba60df7f43127b704b794fa6d2ca3e6e78baee3923c7bf7b4c6a466cac',0,'2024-09-20 16:24:03'),('6a23eb9b4052e262c6ad007167b44755f3922c76ca188ad868c0f5325b487298c3972b010a98e2f1','7a672772c4da1db66a95d04a9812879e2bbdc2248f990ac6dcaf695fbd1f1d87eee06942923b992c',0,'2024-05-23 21:10:22'),('6a2f793efeb0d6c118bab79abbab2e9beee793da6e82a628f64faae10563214c9a180eff25982072','98914296887e9b856fc4222c35d10abf6c21eee9828f4c28bbc3d663c9e2b04a779dc791e82ef032',0,'2024-02-27 14:24:31'),('6a43b72fd241ca5cf3a25a7aaa77920c5d740fb3fd907f882a5c52e216757d268fb845032d36b842','72d92a2cacca1268755acd96fa358de8e582c8a1c89183256eb89280bc2a7b435d7307c6dc53ef42',0,'2024-08-10 22:25:53'),('6a45bafdd9fffbba4ae1c245382aabad88d83b41ea2b04c1601d96e4570171a27f4200f1263aa5a5','89f0142a0cf24bb7d53584c94e405d8308188a10bc40055e372b629bb69090c07e3f2690d7108bd3',0,'2024-08-30 22:51:22'),('6a6ab5214ef45e2d36dafb753a90df53f7cb8d147680cfddb437df5aea6a70d396ba2ebb6ff1f69b','43f49db95b0955a75dd23cb12dc1d96115ffa9fc744adb9a62cb6714c4c0cf0aea469474818c27d8',0,'2024-01-28 16:59:06'),('6a77528e1db6f3eda26b8299cc9012c0815281370dc1cfaf5eaf4a3c19e63e7d26188c5a7a5643fa','b8107171817320f3f2b5e0f3719a43cac1d5ae871513ade155429b74f6d37bd21f7d767469f20f50',0,'2024-06-16 10:17:48'),('6a7c3a2f91502dd27a1c36b69c3c57e51abd874b9ef0ba9bb6989412064fb7e52679e2f778342777','2c5276fa74b83fe4ed57b8cbe8d7039df113bc9faaa276b23f32263242495f71d2f930f8f0452ff3',0,'2024-07-11 07:50:47'),('6a82685279d05dceae303a9249746f6dae0cc79619ea7117c3362f07d07f7acbdb772d8c67ee402a','f299771a1aaf8c8d64ddb6374503d3f38e2fb45431b4cc881d776d185b07570f03a6fe3205f9f177',0,'2024-03-27 22:21:50'),('6a87f759b70c1b563134713ae720d93297c9f1a238b5a7fff9b6018707cf73c749700467941063d4','e72d20bbb09ff7d5c25db5ac811e2774ba2e22d7cdde1becc9c0b8ea85af59cbd6d84e42baf6bad1',0,'2024-09-19 22:11:19'),('6a8e885f125eea1aab4a895c5ef1c3777cbd54ea56eb79a41bc9a577db07ca54fb122ed6f0df6b22','6a78b2d70695feb759b75ef0ee328ef31f67c0b2d763c8d0d495f2ee5ef61c0d85b308768e90a581',0,'2024-07-06 20:40:17'),('6a97f5029182cf5b811bf1787c2f3df2911755e655f3ef68a94420046604139df7f97eed751c6796','c1855f6e416926c16b3805cdea5775ba438fafc8c531640842834c892beb0a2b071151d89acb3799',0,'2024-04-18 12:45:29'),('6a987222e8cfadeb661f706a15823e1ef164de8440020abab6f5ba0e1de69000a9d6abded87465f6','c126ee4b75fe6ff49936f5b7aa47372d9c3405c51c47e449f704aa86ab96cdcfa1f50fdd225bab34',0,'2024-02-22 17:21:13'),('6ad35b496fdc8259493f307ee64445a1a8c2b803c3790c889324c5a2b6366cf7ce5ecc821dc01f91','5707def3b435b974b74e84e78351a276e8fc409869d3184ca7bbb17159dc5db4ea12b30e42af27ec',0,'2024-10-02 12:50:07'),('6ada860b10620e76347a5c6236b7782a62a99f457aefd8f73771b19cf0a8b264da4cf277ccb1a9b2','53ed8585bcaff09d6cb82ba57387470ae8323b008d23c076b74c949fedbd389d207be7a66f7e2dd0',0,'2024-06-27 23:57:58'),('6ae447a23f8f75f6b207d7cc852d0555b7813a78c95a583fd642286135f15635539a366c94cf167f','6bc2faf63bc045e78d551f50625d1f7821abecfb86565bf3505af8ca362d1f435195925661ca17ad',0,'2024-08-07 19:31:40'),('6af415bfa653c34206b4120d46f42ee1ff96e2d0dcc1f8c5df4f0294006247ba3030f592733e09d3','35664e854101852f24115b3c74836470eb9433c8c443058ea149c50ceb010bd59e84ab690496cd65',0,'2024-09-10 18:40:43'),('6b21e8792d5e9e0024ec1a62d75b5c3ba9390871f39df2ab2a5d2c3b3333777161a34f5814bd8bd7','b61b2ebfef1de301fe45227a29a84c95196c177e85cf7c44c0f335d04484b91e984142b62c54421b',0,'2024-09-06 15:38:38'),('6b2983bb014b023d69aa569a64552fc1a8c370b2b5c79244d1e8e2c62f8cae338643456015b386b7','3ba16d3ad5c8c28a0980bd7b401f6cf28531345835d92b003ccc94234f15646cd928f2d048962ed3',0,'2024-09-01 09:12:27'),('6b476f67db38e0a58d236dc20d27943bc79b178363e94961fbf9f0badce493b8db90ec7f4d284a1f','df68b05ed9699c05e791644b8a61299401702546973636718081b0fbc11f041170338f6be5bd345d',0,'2024-09-23 19:47:38'),('6b4decc42a890addb3eea943bec84753db8dc39d0982d6431ee495f9e2111536faf8ea020cec686d','2e2d908b8a71974547c700384d52f269887e9b3d3bac1aacf5cd0f0270ca7ffae0db90b9a570f394',0,'2024-04-03 12:02:42'),('6b5f703ae391ff8d9a0d081dd2e4e626ded789e87c8fbaa8fb5cebd1b7d3d1c00fc907870d04a52e','521d3eaa18974ea4cd1be30c9bc10e57d50037f20bba5dabf616477b577f36cb09eb201606c70223',0,'2024-07-28 08:52:21'),('6b745e4b6d9b1a4547acf7df444322e36b60f5c39aad79fde4bdeeb052b1dbd1ab74f8d13a8389da','829fb98d3849c0693d0a690fce1d6cf2cac5d6a03b27918057f8a6c2326ca708c5b6732ac14f5d94',0,'2024-08-10 19:57:16'),('6b77b3e00d64cd83b5b0cd272ea63b01df5ab7f529502f16847fdd8c243442c2fb40dbdc74d57ede','1cd43b37684ae1e1be2e0b6b93fb9add3db9c13ed78d69bdc3f0e6c8084981a0dc99d35a92923c0f',0,'2024-01-25 13:15:23'),('6b7db1788417449bb2df52e5f7786b06d90ab460fadbd8efc03dff906979a01258901a90b9632915','052722a55bfc6b5dc148b37d511c3dad58db852939dfd4fef2678ba594fbb944d0df649d380250e4',0,'2024-08-17 14:08:14'),('6b92006b81aba97f22d55d45ac6761b972fb772a711457224b5902c865baa305cb869b02b8ec0714','bfc586c699fda7dd23915b9b92e57d3cf1978f8577a3b74234436f5b714462c8f179e7f43262a093',0,'2024-08-18 13:10:57'),('6b98a4caf3a180ffbb58111b3a230697b847975750773dbc50cf16e799ef15a63857b4828134004a','dd28f57f8dcbdde5c612afd2060d1a9417767b6f12f7cd15e3987206c8fbc69f106396bad73b2885',0,'2024-02-26 10:29:15'),('6baed12d4dfac757d3853dc7436ace66d953334673fe0eb474e94dcd02fb944e4fc59655577bf86f','9e4f9515b07352bab11f8e486d54a32df96beb7434857b1231d8b13fa7e553a3b77dacc00ed23c32',0,'2024-06-04 14:18:49'),('6bb649c92bea35804f86ed02d74254ff63b9d69ceabe179705704d7458573e1ee52fee25d57d61de','743a888a388b194c3867d2d071150885cfcf4af2eceb8de2fa84bd38ce1a5b1c5d49e4fe6f427a72',0,'2024-05-16 17:14:33'),('6bca59d6dea59983cacd166b1a1756feaed19456dbacc97801e019c0ee00a6caab5dbfe095eb1233','eaad89db0eafa70853dc62eb1d981179e0054dd35baf30caab76922cea28eb61a9e413b708d9c5ad',0,'2024-04-18 17:24:30'),('6bd28199932d336b3b1085b8955b9823e592413f1a9037e1664f1802d2f5f9dc4866381b5883e55e','43087139cf3c6ebe0a499228bd476e1f67d22c5d17fd251ec5ef3b842fb947ff921f4da1ba0bb28d',0,'2024-06-13 17:06:32'),('6be7f390d42d798c7998bf1f8cd1568898a60d546ad50ceec02349e7325c5015d36116587353c7b1','f6ed2a9d1ef8db6b93aa9fba4ff8ac12eed3fab1a95970f98d098bc6004e12f0cf1bd80ae7cbec20',0,'2024-02-13 20:20:25'),('6bee8b3af658b74f8cac4150a38d0089339d0db4be838aba9c315bd6c0434cd74625c0de7259fe84','6fd884338775b775ec80053e8f98e41a6e9cfde8a30c15780186754080e3328b4871fd06248d770e',0,'2024-10-03 18:22:30'),('6befdec5f9471aa77c26cda6e891f484b849c479e4ec6f33a7cb36508a4478cc5781390a272cda53','ed4b064f82f9d2109843c6d502a9d9d29221f01d0fda330dd38aa64f2d0cc0359e4f5da0dbddb084',0,'2024-07-23 19:12:44'),('6c0765b5704d2c506f94054d929669e6edb082485f28e9c25966c3076131dbd8a3c9e325279b3752','6e348461888516d96ec577e3b43761059196b40721ab7d9747b203871c5e8d0198ff6d1527d0d7ba',0,'2024-01-25 13:31:16'),('6c221cc6fb4d9b689a6baefba173fc37b362245e820edb3baf0b8ff07fefd1fd9b03fb2fb4caef5b','91450542e84b979acd29d783fbad7e7aa75382c75c0dc41e8b80348fa0e6dbd9aa5c80388f2295c3',0,'2024-10-02 08:41:57'),('6c236757c26e486a074599840c97f5e20a1f197c8cbb065d266e32e3d586afe7cd850a1f39366127','c8e99f67158ddc5cb27f28574d48b18576fd103dbe5f47a07550ba59f182af3482028291a2b6876e',0,'2024-10-06 16:48:01'),('6c2d08092d83c2526b44a52c3f434b6076fe1384a48c342f0bc859b5c92158c12872271cacf541b5','3c536c450c10f58fa35fad2bbd36ca8ed5b7d9a4026b30259487d7676031402378249cbeb1b05fbf',0,'2024-10-04 21:05:56'),('6c44045c2d62d2fa37f83ca60266cce9f9f7a430a29f3330b35d593cc4760b20adcc9c80f12a5f8f','ddfdab3138dbe69ab806be6863a8cc80e0d882732c9cb1643e6d3809c8f4e327ba796328932a5c13',0,'2024-09-14 16:17:34'),('6c4e4d7b7c65e395146600eef47038752e7c80c36853234da19007059dad6e6663bee9d239be21ba','6cfcd06dc1ea9f3fd5a955996f2da8dc179a20c84358ed0b79e01c3bcc8029cb6b1c4154aba43ca0',0,'2024-01-29 16:10:03'),('6c66feb72a2e4d3604b600cf43a37a3d02a0269452b18ef30900452806d2d8515ca9d8546134a291','ba1cd950d915f4cac5b040bc853c39015878b851e13dd4ef14b1cdce553ac78705d919a1521902f3',0,'2024-10-04 15:27:51'),('6c9477e1eb0499d6013d5cc5e78e907cd6811574a6361e13b140eb88509b1e99a16ac27b5f080c13','1c309ff751f8d213a2e7a96451d0cb5ae3b73fe02bbfc1e3e772817ea7255186fe7a4ed7bccfef14',0,'2024-06-06 14:28:33'),('6ca897e9cc24ef240e89a031c843f9c198921193a20a9ad8da17b0150a2d5444f732d630323a434f','d39c2795c90b3542244e1d013f6ee1f57a8a2c3ec73618b05f6a4ae24ceedbe3deb50c59ef55c4c0',0,'2024-03-27 19:29:16'),('6ca8c37c4749900d2c64578afdc8b19725d6046b02bf639b765d4cb6bae12dd3674206498a2a7f4e','87c655da43990b699432fe849718852392d9fc1825627d5db43c41657a1265176bcf8130ee97e71a',0,'2024-06-14 16:07:59'),('6caa40a4ed3088f22381ab8cac25fc6a2792f6fa1b6cf10dcc489df0aed47dad6bd2ee270c8567d1','fa33446a1017ed72cecbdcfa5348af332086cd71d833c9b52a8dd05a00ac6919244250f6f8dc40b0',0,'2024-07-09 15:32:03'),('6caff0f62223b0ae7d8a3d857e05472abc15f6305d139b67df2ac61683b61ead4d63fb9a628d6d80','10fc1661227f55dc3c96c0b865acfef0160e346cb5bfda2a1f7ba1c0be6ea465d6e6cafe02b2f2b8',0,'2024-01-25 14:06:34'),('6cb98f9cbdfa24d102cb5a0cd4d18eb8b0a4fdcca3dd9f30ac9d88b74a0e8ab475fc051319228ecc','1c90204a1433814f1b48d04b689246c5392aabb07924568577bc3bfb02cd55f125587e1e5aa7ffb0',0,'2024-08-02 20:30:26'),('6cc2a45340c6bb02b90a864a83245e76eda410c671cad4edd0199bbd3973481d37738b1ed66882fe','86ccb25ecd3c327a45492a78eb2c0ce7aabd251ea6819470f35f96923169e49325242c649ce15213',0,'2024-07-05 11:12:30'),('6cd9e8a2ff26a33e8efc08b8977ffe6b15ebb40e985a9068a827d58858289729c94dd8be7191c38b','86103e404b133d7a272dd9b41804b1d3b11757ff09b1bec5456e0b0188a352cfa3129c4dd26f0406',0,'2024-01-30 04:51:29'),('6ce29070f680fe7b1afc5baaa74eabc499a91520316fd9eb609d122f01205ae6184afa13319c1be2','c487655bd6db2c1b18162f4a5fd8758a72cb2fb22289ee4c5c15732e03864d3e7013d690e4ec137d',0,'2024-08-18 11:54:00'),('6cf2e9d9cd6b33e9d42682631ef01eb348933045dd8d3e38e2027a8db47d0ba56cf3ba4fbbf35430','c1b80210825f6e35c2f8ee597c416c1dc6b3beb66d148d4a352d293b09c85d0b311561ef15ab525c',0,'2024-01-25 16:48:06'),('6cf52f9c3db7c3bd9f91f6f6df5ea9e59465379c0843e727c7039286396ec5154766cc41a5cbe342','de6112ae576e74d895b827ea03a881829f60664afb5645696f2ceb19cf3f8022569b78487548bbf7',0,'2024-05-08 16:47:37'),('6d05566f599b25c24b831dbb93fddf9cc6a83b76c8c69ed71d3ffb0d5c833704557ef03ce5a92d98','eec59088f84ce35879f1811aefedce96bb111dfe0a692cb0bfc9cdbf871976ef40aeb34907c3d2bb',0,'2024-01-26 11:29:22'),('6d191f1f062c1ea2dd874b1da584b4884e7a93c363030389ac7d9480660d9550da3c2fbf54413acd','71743ecbbaf90f30dfaa539fb15201e37c8a8af8aa62246295dc24ad0daae24851f44c3303b5d365',0,'2024-03-29 23:49:41'),('6d49afe61956d94be3d8545fac6938c5b80d055a780e4c97fa138be3a55bbdd3ea1de8e22d6e6d76','ad3aa1e062d223d616fd165a48545b60939df91e27891e72f30d6fe71cb94b1220164385d0c11e91',0,'2024-04-18 10:47:28'),('6d56441a51ec1ff2a84a249b05d6c0d5b8f1144555d01bf0f852a381fa731c2e9d2ec4b8363d7530','c15f7dac4bf39304e2cb9b091d3fa2126e4afb665d0c54fc7a6d2680fc20eeb1f7af1d2167751096',0,'2024-06-16 00:24:14'),('6d62f70ffa5783610c69660a28c67e865ce3ed080c4fb38c4215b14ac059e3d1123aaca2c9bfaddb','4fc32a66beafa25acd8e7bd9e15a67faad697a989b17b09de2e2a1283d84add10c480070d43e1518',0,'2024-05-31 16:28:05'),('6d662ffbc7a5a95a755812974f3801fd0ca09d902e8dd95aaeb155a558521f6869971c16056830c8','d85a10a098e238b9a83d27e1449ff09bdbcd9d98aa5e80e3c98b944921b1c955f5ac7d661ce565a0',0,'2024-05-16 15:58:37'),('6d669983e728eeb6b635976d4316408d4e39a4d750fc92ec4527624fea4a83cd3dee8001336524da','731b3b84cd6c8b68a5dd98530b9ca4f9803d8d6c58dff5197e435ad395a2a9df2c2aae2ab5045ab8',0,'2024-01-26 09:16:12'),('6d7236918fb336eb59460aaba6cb0b62ca77112c60feae67e9d1e88f3b2b17cf38cd1a1420a6d9f4','c8b9e3bd37494f0777ce6b677b4eddf0aa2df5e3ef7538cb7e41055415c90db1f2a2988a9d8cf8b9',0,'2024-09-28 10:11:06'),('6d79eb53d871049983e903e573df23c495cc8d5bcc20cb505beea06e8afbc3a2136f917deac88fee','f7a3334965d67b73d1229b905b44b37e4cb4192b40ee6ce49cafffb24059d25f655f4ca5288fac48',0,'2024-07-30 11:09:20'),('6d87827ee98b11872b1ac2c20b78a8862d8c2029f975a2f67dfc463a4508379c9cb415591ca8e747','3395e6ba225d17e8df2ba8c6ace275e6a84bf58647bf41c1ea31becf6ea8e6e027ac193cf31eda7a',0,'2024-02-09 12:33:24'),('6d87af90602322ec6926d1b37918e28a77edece70bc291df7cae08272558b81c62284a658eef8a83','f50e034cf0f74f4943c91de5dd275de5611957225155c20f6bb4e5a809be14ae56bcb91bfc82deb1',0,'2024-05-31 20:11:18'),('6d87f6f0f389be3bcc82420bee0039db9c5e7c83ab9cfac9907aceb822017c239fab979aef2449c5','d6a367671594c0fcd073042d73074b2a304dd56fb13d7ba45d17702fa8d382c0e7943585a6b3003d',0,'2024-01-25 08:23:05'),('6db7056648d5b18fccea2c4c132a5c2be9e3701a2ce860d3b3acfc815161663d4f83cd9c7d981c6b','29be36632270818b882cb6b2183ee4f132f91d2f3c76f36234b4ad00f491e91867708166296e46e1',0,'2024-01-25 08:36:25'),('6dc1ebce3aaf26a1dec4253452c7d51d6dfe73901e8af58b030a1d8691833d70b36d070457768f58','e2cccd66c74c04290f4f1f4bd47c4c5576434687ad2160f83f9aca6881348f7fee604192999ccaa2',0,'2024-09-19 11:57:00'),('6dc494277e34c3ab3ace412bd178a929b3d9c6c0e8406a8399c2230c55ad3e9aad27cda5ef0e4d5f','82522980d8cb139ea018fafc11027e571b9bb0f5523f4cec470050e8c80bbd7afb4599fef81f15ee',0,'2024-04-09 23:17:17'),('6dc6defe90c8132daff0866424b661abae2428302e704b2847b87d00c5e48eec734efd350b830651','e0bc929e54764bece008794607880377b8aa939146e207a962958009c303e2880706f0dd90f0915f',0,'2024-08-02 15:24:40'),('6dcd8827a7178d61c332ef9c9e7bc1b76f0d856100fea4db1a91c1c7d9bd140d2a4be253dd9e9e9b','16189e7eae00f0f1d9391f19f1d3c5fbce4d4dc6cab8e89d02b8dcdddd95736a2a274af4ca53cf5c',0,'2024-04-24 18:31:01'),('6dd006d30f853a1ef7d54f0f69f8512a1c92c86f1a15a3bcb9973651130798da136e2e0510150011','9774076c39a2a61caa77ca91ee7201c3d552e5811f2f2c06297208d26b7e7f7abedb5384a2e320c9',0,'2024-09-30 16:00:25'),('6de0a3dab5cd750ab9a9eb95b2e1498ababaa868f4ec8159c6fb00a0ef641845c067b1374b65d75e','b8fbc5738bc4c7f03c54fa9d4cb056d1b06e8ec46d5f1c9223149fa10423048fc9bae0b413d4df3c',0,'2024-06-28 19:22:07'),('6e0028aac39d0057ec7359d0e0e5672d5d6b9b032e02604610e05d4df671be7d80fbe36cac40e526','2e907accb67ef7510960d83518cfb1d864917da26fd18cffa66b349473bfe4cdd1783412a0fe0360',0,'2024-05-28 16:50:42'),('6e056f7cdbb94190f9e10f1b53ab57be9919707db6ef6a042e23cb8f630afa63c740c30b906f6bc1','b78ffc9b6db93e90a7ec77de3118359f8ba48dcbb9fa76e5656ca141496ed515055d80762fcf711e',0,'2024-02-15 14:59:03'),('6e0eca5d0c074951d3ece9e31f159d34874fb01a4713996695713063d4b944b47057832e81f7b259','646bfead5df6073bd9e895117315ea4e19fc002cfcda02ea29ee0e8ae87cd3d149ffbdb3f871bf7d',0,'2024-05-21 21:46:26'),('6e0f3e000d9479059f29d8812b82543579d98f8ce134288742e9787c2dc3881be4bc54156aa2135f','e06fa590dc66f2ccad4c1f0b8c117e6673d47c9f9477b19973b26e4bcb9cfcb54a37b801d7d4408f',0,'2024-08-30 15:31:25'),('6e1e193f8bc257de90f86e50799b84d427c64b216da5da3b8112755886beddcffc72e39b8f6e768b','c2626b4e793ea22ca6d2ac674746eb923859ea02a87340ef744cd6f1aa81d61e9859a912a89ca747',0,'2024-04-19 17:59:22'),('6e29ece711b40faea103fe1ea98c8837bcd20f3975e6a68f3387f8015db0d60d80ad31ac32193dab','ef3a13f8c04fcdabefda4b44f430a91ad5bc78c20669e9458a5e5b831d41e5c8138a935b489ab1a6',0,'2024-07-17 20:28:18'),('6e33298cafeb510d544581825e4de90e116c24d30a92eac7dea93ddfa9f8f2068649f3db6d9f7279','59e8143ebd452c2ab9eb37d93e28ef021961a54eb6237f183b0849f319a7c2a2ff8c672a3ba5d49a',0,'2024-07-30 12:59:51'),('6e35d14faf950a5bb18b73de33b3f3a2c22f5fcc73572fe3a802702f3bf950381ab6b0e56ac37392','2dae103ae079d8c07a7eebba446acdaf0ff62deb37b4a210b7eacb5b251a08a3e4d77841cbbd8927',0,'2024-02-23 12:43:44'),('6e393cc6d3087a6618d15eb7d24114e07e63e45a4643b11d05418bea52c347490f9396d471f27594','4cd441ce50a11479534a007ce7c3169ab4a49d844f74703742b3366a3ffc6818e4e2970bef81b945',0,'2024-06-28 23:31:08'),('6e3bd63e58f6a2ce9505a18929af5ef0fe98b39bc930c18a59d822faa9142a4c55f632fd77402ba7','90d360f696b7ee63be2e818c215080889c70634f841dd3e938e51ae30a1548e20e3ee418cb1f7753',0,'2024-10-02 21:57:34'),('6e49d7b0441eba564d88638911ecf64ecae4c0b44e23411bdb5570245c5666bd629df06fa85d78b6','c9716775b9165f728e37592ad8f0fb22811f1567a647612554a0183c215b1f6d1933f00bde27ccd3',0,'2024-07-25 08:48:31'),('6e53b58249a19247685f257cc1754b81aca7ad14af19e8838d26ec02ad25c008206b35e563a9eeb9','3ca9f58f8d9ddebf6968da4ebda0d982af6fee792955f8229d3f1b80ab39422305dc9e682dd7ceac',0,'2024-01-29 01:49:55'),('6e57d10452f54a79a4302bc148abbc5f789e38516f8de073f25fcc6f0286dc0d977329910e0bc901','9ff8fca80ee181a087f3d1b9fb154ccba1a6a1c7fb23d37e3e8945cb4508f8e59702368a014f6641',0,'2024-08-27 21:08:51'),('6e6006d7861f40efac50a5c291f74b98efbd05569f86a0ae9d492d894f836f267daf023fe3b80a71','455599afec57d6a030031f08a064b40ad5c71dc4ec05325e1870bad4a3af9c2cc4345690a309ae16',0,'2024-08-10 17:22:45'),('6e8e121c4b9e2e7045b99a7545c688bdb97dd49fb5b54f20509caae853e0acb8fbcca7ac83cb57f1','1210d55f0d4ccc2ebd5bf6967b8f81ffb605537547a4ef0ada9f06289401da32921b55aba9bda8e6',0,'2024-06-04 11:12:13'),('6e94e0fdb229590b3994c5b4ecf1ec84fd8a244a2f795b09a8eef2dd217f9190e8aa79b8384a2c84','82f87df952a52e6b832a5c241dd1af80558e2b16f3dd13fa86b1441cba69380ac75ba7c239985700',0,'2024-09-09 16:46:25'),('6e99e756e61a67452fac2df0fb81e55d778d119575545e9fcc6e38f3ae1f568743cebb3777b49f76','4659a8d97375fab45a19b86a4fda073b787a7013ef81f5c4830f65bb3e5e23e6cc8ebbf2fa91c2e2',0,'2024-10-06 15:26:36'),('6eb3849c560daef6e53837e05e13c36de6e2326d9c8b40ce61411bd86bad2892fdf40e9a64075560','ed5ef76c4ebe45f83aa268ec236ff5716e8426f916d4e5d1f29b9b927860759cd0d9e7ed1b951e11',0,'2024-03-06 10:24:40'),('6ebdf3072a793e76e7d1dea3514348b6b2f8af593d7f834b22480aad4ea49225a74b01ddddf13ea7','888792eb9a50d7da0a1c2cb66be5092a24bd6b8d75906289ca62ba344a68f926ca04376c8f53a458',0,'2024-09-07 15:24:44'),('6ec1586ad4cf418e8e2c5670ce6fce1b0ff9a3fc06965f2a95af58ab7e2ce9afccd8f6dd1c78ba68','82d108c3851ba8112c3a77365b3859ad3bbcd8f16c9d65e2f662b3cda537cb35281e50b7d278c7ed',0,'2024-02-01 12:01:29'),('6ec7aa79698d28df0264ff578c4f79e49e521b0ee28b03cd1b4dac1245916f49ee1d3fbe61b2fc90','368431854656eef05c714e7ff7ee286087feed9f8db6e14270fbccc97e72bc55f126f7b17be362c0',0,'2024-06-22 17:24:15'),('6ec95bf3208eb52deaca5f58fe043445547b0687c2e2e17865db470278cd52cd3423278ea8ebd3d0','11c1b7f258885a3324a1c4d97c38c8d8ee7671515e71e7c4e81d6405cd7365d78302c20aabc66c52',0,'2024-05-05 15:53:45'),('6ed6cac0503f40aa91ae8ab5a460d10d8d2799b6651e9bc28c9f2ea0cc186957980d9dddf35508e6','b9341d606ae7a252cc363d2cc2fc1cb2caaab7c53ba20b8a84ea41a70242c6f4fab19e435b17182d',0,'2024-06-16 16:28:49'),('6edb95a44cf1dfe15f37f9ff3317d9fd7ec0066e3e1d688882734ff74787cfc75830fa05e77f646d','c584afb04d20e8ac90fadeef2e2f28e88e71e109516b10b36aaed7d70c124ee106a4a669952c2f1e',0,'2024-03-26 19:20:21'),('6ef04f46b64ad5c0e50aed5a5257e24a7f40be2a1653c3fac575ad520be2162aad9250dfd069dbe8','1d4afafac1a93c73bffe3be2983520d57244e48c0cb4f024860e79aefcb6f5a728331e62e800efa0',0,'2024-09-07 16:37:23'),('6f103e0ce008711eee196d5ccebb7629a4dc30b9b48382ace37a0e31be30d961ccaf7193bbe862ba','381d712b1ca909ddb3e78d5266d55b747b95160d69e2962b13c77b24e74b3ecfa390b3ae180cb22e',0,'2024-03-08 14:09:00'),('6f12d321ab8b38643cb6f45d85d11a517f33630352221ce88342126207eaf503a2f8951893eb6467','dcdb0d2291cb7ae12038dd32c4883d7ae741f94818a35babc79a989f05f3aa6b20ef8a3a0a263832',0,'2024-02-18 20:15:28'),('6f37a557cf217dcb88ab12fab7cf2c7c00097143b9e5e88c108deaebaa029fcabf2c90b9f1e2bd51','44b7923819aaa6e91d2980083fd69a5d66212cbc4877f42ed753e930e91f99dabe9f081fe4320df4',0,'2024-02-02 08:06:48'),('6f6cce05ff108e40023d88fefe19b1936fccde4d897a70ff9c0976e130f729e206fa1b9e3ebbaffc','3ada2b9adf45b6d9adf8eda934620c0c88890c2a4e49b9ebc0dbce9313eff5fe015a9e26e1d35dc8',0,'2024-03-05 16:47:44'),('6f72e7e39f1debb365739737c87142ffa31d002c03330124550e12c8b23f6381ad9e1f8cf3b21441','0cfe7ce68ea490ca368c3d66d3c926837d0d7804abeec0220d3c331f9589ac548a889972481b3bce',0,'2024-08-07 07:09:05'),('6f77603948b5ad749679d3504b940f4f18466770bfc4633dabcd70340de0735f87bb0c8b8722b092','5892507f31d95309c565d50aeb381c471d4e299647e1f34b51ef9c6b3da09e268afbc65309bc3346',0,'2024-01-25 12:17:04'),('6f7a10201944cf0b979756f0d8c1614d00278dbcd70e287187c600822e613927e8a2bcc58d4da7d1','5860ae4ee3635a13acc1f8163a1593925f11b7570baf2320434fa9d3b9819821d3f7187247991784',0,'2024-09-06 15:45:21'),('6f8339604eb6d62dccb5263ece1a024f7518122079a753cdcea29d45ce60bd9710f329288528a147','47e81c2c41349bbffa5422b39a896d5ba8a9209c5ae58d0f08405fb5f5cc3e09119935d7966b2ee3',0,'2024-06-14 17:36:43'),('6f83b9e301d58557fb46e9295b23f1b376d769483f39912d1ad3058edb90eef71589fd680bb16520','90ccc8c4710b7cf53f7894f165cc9315522a84f016ade56916644a85fc435863a161172551e09628',0,'2024-01-28 13:44:17'),('6fa0b616f74e113723d00829cdd8cabb90fc3981500c8c7bf3c54d62260bce4c3d707b204fe6f396','0e6611c82f32937d0ba2415d25822aa0cf7d88d96477851a3860fc60ef0cd8bae6980621cbadf3ad',0,'2024-05-16 14:01:50'),('6fafaab4de483858f4aced5216556d6f8d956cb48b50b9a2c3e03f700836525713d56dd2e89ed4d0','96653838c34cb118c9955e78113d4db39b2763c8ddbed6d208832cf832502b6b8fedba5491b4f0f4',0,'2024-10-03 13:12:49'),('6fb1860208f3e6c9344605cd5e848ca1c95b32e3535a17e56d507280aa82be1f02f0551d3d74061a','96b1c9127ad3ec86df59b238e90ff53b5bc2fdd2ec827552a1c6b68c2c3e6284400005cfa70d850d',0,'2024-01-31 11:41:58'),('6fc91665a1104ad2d12f5d24bcb3a787068938f2fbd1349b30fe107271272786280f2f8f788c84fd','e54fe6609c1e35e06c2bdcb72fcf2e8e7034ab654956197e7e81a7ae3d56c60a308b4cb4b9f27012',0,'2024-04-04 22:04:59'),('6fd5155e8edbedfd840cad542107f7b0ef0571c8d3831e9d186814ad5c24925b0183ee6973b66e8b','630fb98163a20c70d535be510a3bcda7beeeb5a466e7c870457d830e39a7e961ac608a6a53b9be16',0,'2024-08-02 07:54:02'),('6ffeb307f62c61244082654d9549e03bcf5b08b5ce7a2594eb37f13860b53e658fce756880761ce0','142c2e3847415cd48aeaaf867fcf19e0a6518954d9da8677c21543c9798a7fb7fab356c82e714017',0,'2024-01-25 13:42:31'),('700a249c1cca3d99e860c94d01a092a308f377e443300b9133664dc3e39ae957f6f26c81c9327d46','968a929bd24bf837efba2c51ae30ab4cd480df8982bacc67806ba4687e7ca2d308dacf1babc2a58d',0,'2024-08-26 11:16:22'),('700dc6899fdd1bc119b6559755d3fb7465bba575298842e1b23d9a8446e7afc86939d5bd1eb07180','1f98a33f7ce7da197b8e60330bba7c1e7de37e88b5dde6978a04816bfe7cc519457eb4e685be26b6',0,'2024-03-24 17:26:06'),('70194245a8baacec13dbfb3a3dbae76e21a977277d8a5902d75dfefd695246e74549b531df1a101d','3bf73336848fed07c46d8c64c0e7819112895ca4c6f46eddd268223dcefac230cb1ebb92c4637c39',0,'2024-06-16 10:18:45'),('701b1083ef8633ebd4335893bc2962ec3dd8f4bb0451220cfa9d69c60d1513f47213252ad53b1f69','f1f7e01914a26bc952007324cebd3db4c98d8896a1bbbd3187cabbda24852697e33c7b57f6ac84b9',0,'2024-04-29 17:44:34'),('701b137c26bcd8d9afed65e68db516a3018c6bb1c976a139b88197d4e6a4f06475711e080fd4a40d','7c9a9cbbb3dc8b251cb651878559713dfd6c26351271956f4f2263bb37affcf470cdd94d45f4c665',0,'2024-05-01 22:26:01'),('70371241c186a4791f98334ebded0e41a34cbf2b7e4a80285bd541440f3abc6a021dae038157a848','8bb100e778e84c5ee60ceee17abd3fbe98c865d32f9923f94b85ddd7050b8ec7a6c8216fe909bd1d',0,'2024-01-27 14:00:36'),('7047d82bf273b85bb8cf2e7bea5531fb2222bc0778989823d99d4c0074e21fc5d28a8865f08dc4c0','d8878f004600195f3953fec72d5dcd4717075df3a6d368c3ad66f9426b45cc578b5ab8e3656bad52',0,'2024-06-27 20:51:06'),('7051fdc8c894e7b3821c9497e5a6bda4d53a5c00332e829f1b913159c9979c0752c5476d751492d7','6589218c9ee2ff522885f183d587fc9be640c76002dc0d5bbe46afe7e2cfd9d19877d1e651cdc5a5',0,'2024-01-25 13:19:17'),('705a435d88952f68680627264aa6b8ca488d6778f245fa40c60359116074a03f8680d96e8df6f55f','30d2ec9982b18917649c93787631ee355b32ff3d63bdc2c555549bc14d454bd5d42a85026f0f65b0',0,'2024-05-15 15:20:23'),('705eecd7b5367216d2bed656abd9241b30e70946441c1e46ab4d4426dfebcba88d44a62aeebac138','86210e9dde602158899bdbf850201ec98d0e3a3acae2b3fb74d93a8737508bbae3497927972169be',0,'2024-02-17 13:18:46'),('7083b132ec0ca02676098e416cf4e35d1de94d42685a390ecb2bb46f6cf0d7d10cf39272e7cd2156','f88190aecb3778fbcbd81054c09bc32004ea3515d98d68c1c007d589ce93c3b270934f10ea8f8210',0,'2024-05-05 06:32:16'),('708f06faeb9a8b8eebcd1b60b1a803773187440fcb1c07c952e78ad0a29c4a3b4ae24fd6bb3fdfe2','7a09adda71a3abb1c950beb287da420e667519fb23d7a0a99a4598d041e6991c0dbed9a411e11a23',0,'2024-10-04 15:48:15'),('7094d4710c843155d8a2d57b03c8be26169e5c884bbd9825cc097b5fa524df5ed37867792c0ee513','bb5fa26b03cc187d9fccd2769fe9cdc4aeaf9d90cd1341cd709140629a6b60c5d80b4e9e867c522e',0,'2024-10-05 17:18:47'),('70a4e1b15ef8f99706137d3ffb08d7d7362933b43bceb625554ddc6bfe24957bcca49f503a3724d3','4709fd03e14bd18c39db1ed522e47b21da69a4b4e0ea7f169832d044a1a9023782c58e0ff81528ea',0,'2024-07-11 09:31:03'),('70b124eb1877d91f630069d9d7263eb3dd0ff406cf079ea1bf49dcd2bd0ea0bc61de7f3918963bab','719d364020ed9dfc22afffa1eafad762a4d942d905f515f26548640626f16f397f8e9f830ef36603',0,'2024-06-25 08:02:56'),('70b8a93346175010220f399ae0a3b2b92981f7d7250d274cdd1f89894138f2a5a0d30ca9ab3abce3','7cadbee2e11cc4b479294773a0084d328b92b54d6e0c22f0b395760fd62cd68205cd0d65ed4ed91c',0,'2024-10-06 11:07:42'),('70c69426c97df08975e31cae2922bf0fac4c6a5856f5b22469df0fe135e0fe7cdca7306ec5d8ac35','c731e3228c0a1d7a7abac44b3cdb3dd994c3b455ee6785b010cfcd634888ad33516b57c81ba886a7',0,'2024-02-23 20:42:56'),('70daa212f9641c405919a582b707908be6cd9dd81cfd845926654bb7d2cd8e23e7886463b33070cd','726f3956882229f92a4bbea04a10dbbf607c40de3d1f6dab160c79b1699b63faf31f0a56389f9487',0,'2024-03-28 19:04:25'),('70dc1941fbbf59f91543ff6d8054455d1c8721f37f597a3e214675c3fe70395bc87b265651090ecf','2d45e283bd9e43038788b330505f82fcfffd7edbe2f90200d0cca56a8f05ee69c5c600c73b03ca3e',0,'2024-02-20 17:53:04'),('71007618825e1d7584f17614d0fa31dc94a4956d4ea1ddf1038c9d64e1b288db302b8764c67b8007','ec1cfd1a8e9bbe8f40efa3738e383c0bd97051539199d6d88995f288219f471619fa0beba2c3beed',0,'2024-05-20 16:06:33'),('711b7fdb93cd50449dbaf692fa68cf3c6f7176b5bb8f45545301a5e35fa1625aa0d8b9ca27b69fce','fde2a9a17f16dffb88585cbd8767d80d1faa1612c61a7bb20b9cf5b9cd47e0f60bc41c346d0db9b7',0,'2024-09-09 16:47:19'),('711dac00388fb6d1a233df2ba1e9019a37d126db59227707a0eaaeead7913ae0039161654a4e2cbb','c964493bad67f2fa72413c2116e04d08a949d5b40335d7ed5453489ff64282b480f1788a37cd15f7',0,'2024-09-17 23:18:01'),('71214ce023fd499ada4336ce7099b29b983138af8d4c0084a743ca905fccbc29a2fb547544a5ca89','f0b0a6dfd93470aaab455c195068e42bab7539e44d37a33e3fdc04ae12bc038308b450d078d52bf7',0,'2024-10-06 23:05:23'),('712fa6c1545546bc3637ffef5c8ade148547fb91eb9e91e8b476696fcd300b84327dba7195c6c5d1','8530ef980b567ef0d5194e5b7b85666e0b5e3ba1c877e18a89ba151f2fec5630932b31c012942b77',0,'2024-07-05 19:31:33'),('7133ea0d526818d469bfd8ab22729e377e23963cb6995a6f56caee7f82ea76f0cb0bc24fb4e95ec9','70757ada1ad861856e2da1160984b76788cad09e5465292e9126b091eafbc8be7ddfeda84b3805dd',0,'2024-01-31 08:09:32'),('715dbf0898b3cb68f460dcfef8b3db3da6859d22043814e1959eee1174ed004bf8cc68eb621bcb79','92fab5f079dc0784e25d48bc9cbabc2c6e8436dcd06f258db5141c2322da88ae4c5412fa0cce1228',0,'2024-08-07 19:57:03'),('7165c1385b377f717c7c00bc4a5ee275627974b0b25eba40fe8278a64d7a1258719d2c26f97f4c06','5db71d10d0bc151d0f4cfc4889f977fef5ebd56ae246bda2182686e4ce5bf2e9c6fde4ff1212d38c',0,'2024-02-16 18:30:39'),('716a4ea269d8521e66749d5a2898dfbaeed529defb5273740d11667b911b3053b25a93b0f879cd75','f1cb67fb9c1e79c81698a3d3c0bcee35296dd1a62e4f3c60baad6a9804121009b12e8968d2775491',0,'2024-05-09 18:20:23'),('716b3e264ca5d07666958a81cfcc17be6a66653eed9d8add20f8b2092eb73aa0d2190c59a154ce94','36c28f411f5cf1bb2374304f86d5e2d664a68e22f86f063db58306e89847735c644bef63c82b09a6',0,'2024-04-22 19:10:02'),('716c7db801f8546a370bd71cf5f0f88fb1c56864b8492bb97e0ff48e6f21b2b0f1c380e983a623ec','be5da5712b750a75e2ed3526107a67b56bc042715a3337d896c7031de79399fbb7042cac589cd466',0,'2024-08-20 20:03:17'),('71710e8ebb3575b5ab6cd08c3f21eb6e431b85809b597075a08dc49ebc253b95d5760363f17f2a9b','e1d1de9ff1e6e0071c5d4b96a0407d19fdec07ed50c2dfd8a918d464a8e6a609a9079df652d84d87',0,'2024-08-27 12:48:26'),('71812f381063af0f1680fd31968f04b1d49e0908c690d78ffec736f0630937a3a0a026a5784b3fa4','46ba4be1454b18797172e93e9d7a672221d5f199fd934c51a5d4607a813c5a8315ee8052950b0384',0,'2024-01-30 14:13:42'),('71af52d0cf0a74993dedc7f7f0f2a1f055746a544da3689b5976e4f3c0b2cfb048b61f88a4203939','c503967217b38e4b841e8417f6b9239e823012d28a5098e351fa78de8e9b264b2f39b0382921c07c',0,'2024-02-21 17:52:05'),('71b769092d7732725d56754028202b025b6ed1f6342d5423bbe3f0a2b15208186b7254092f6e7baf','e0cebf5afe66ba041c0ad1713f5e55594c13d56a3e41d8c9d072e57cfc8f559431deb49eea6e8658',0,'2024-02-28 10:04:53'),('71be563510b2738674c4f7daca13a921f3cd62791c8e3b7c2f5e4c25af53af3c001bc6c5bc11fe83','45a879696c4998cf547966adaf86df20d09570b811ef015e18760f79a11b2e2809f57e38a3d66962',0,'2024-02-02 14:36:42'),('71be9597c7d5efc8065d780cd2810e9b2d39e80ca463eeae474e59c16fa4584e6fddaabc21475a28','381aa04cdc07ecee5072282cad21fb7f363a61cd27d98c22e436b07c9a2fe1971beecb6731b55c37',0,'2024-07-06 20:46:20'),('71c25ed8ef150f9be3a74401985ea56e800993423fe10f49a8e5d02ff248c2ff1900906b1fd9d585','ecde2efd69767f3ae14bf5816c03ffa4f1cdc51404faf9143b2d4a96bd36bd82138920c5a005a8b8',0,'2024-10-01 18:43:04'),('71de06fe1398791dec51c7441610e87abb8fc265eaa77d1317180e1e42f071dfd69a0edd9c13982f','6dd3df64adc0f255f7ec8f0cc4e92d3156d7c457ccb0eedbeb7b5df35e3bfda9c22a28155233d2e7',0,'2024-05-15 15:15:49'),('71e135a9ee2a8e245ea21dd4e59ae6057a325da05f5226eae041e367632d7c937e221e26d8b20913','9620a6eab40f0d6d36210bbc20b14272bb46206cca6c41b786bea3183fb4c4056f040681608ab2dc',0,'2024-07-30 16:59:13'),('71ff44925e288249a9deb175ce273b03fdb9f24bee1887f908f235b8595abb337eda03a14c164ef2','dee2cf80829339f8e7ba7d3475e7b2bcb6934381418eea7b2e68270b29caba615d9bdd82e2176554',0,'2024-01-25 10:46:23'),('72037794032d7704603721848c25b3d8fb6a47ee002e4a2fb889768d7f0e80110ccec24ecc4da0a1','f69b32dc4a9333e24a6b7083f7d1cc998828966003203150721646ba6834544b048da31feaed6e49',0,'2024-05-16 20:19:25'),('7211238bd72ed6608c45f6cd60f57fa6885cb8139d17950ce064d13b50f9ad05a8805e3c9163973b','f587fe66c433b5fd7a5135b79d0f3ec61e606c71c5f6d9f9e7d8095abe689fc8f5b2493e1a6a4edf',0,'2024-07-16 10:57:59'),('721ee91b360dda8f059fa5cc392584ca054c3ef1a7d153a567a5bbc8af501eee831c428505c43327','3f0845c09f6ff52de34d683e48b4bf26998ce5fe56928451ed96584b288bdbe2b59adbeab7f57761',0,'2024-08-24 23:05:45'),('72281ed21cea8d063441a8ab501ee6d6c5719c13b5528f56a5cbe1f4c91bdb13f2ed387e9d392f7a','7f15397d5365eab060701941f2bdc244b06b37a7a00d5e7e5beab3a4d5a03bdce2c9a796b2ef8f66',0,'2024-07-02 15:13:20'),('722c6218eb99f07f6b56bc2916a2fb9cdeae7378575cb6a5e9d58079b68e35d34294651faa09086d','1bb1bb5276df16139c30e171c66f5e1131cd9867ebb2aebeb5a46d790902bcf51e45f46ee85e01bc',0,'2024-02-28 14:37:03'),('72308e09872cf2b6af327f126ac82fad58e2b96d27c7e0064877a570b13a36fe4ac3b51ccfab09bc','870efca2189c375f640449ac74650d445433b408c23a707bbc86516b4540d0a2bef24e1d634413ed',0,'2024-03-26 13:05:27'),('7231fba1bc76409d6ee3fcd9b150fc8444aa22f62124f46af284094f0178c048f6a80cfe24f50e8e','82649802c506f0e6b0115f0fa32c09fa440aa9c001c7def143de9bf01189513f26265bfc7fd488ea',0,'2024-05-27 21:51:30'),('723e1e3eb33b7e8ce50a4a0372b984a4f7f522b98fdde68a1fa0df2c96743b347b0f4faf46dc13d7','b477372c6aecb643e612b7e3cbc9e8dac740f8ebdbdde79180d8973d8eedc2a0871fde30e139688b',0,'2024-08-09 14:39:51'),('725b19d61f626f176007d9a88b146a088f5c16c1356119f0d785afd578d8ac6e2ec664a70be52c15','49cb214a59bdabd969c672ba2d9a6441a803d151e4ca94ba0d44a960e80af7d2ffad6ef128021712',0,'2024-07-26 06:07:09'),('72695831666beba98af341f1f1d3b817892f754a5e1f3753de2837bd90a65f3891c9ce79d5357f8f','dac8289de4e71c67f6315c6c6bfbfe8006e27bc8dfe76d2180eb3537f3438ad4c09f2d91d0a25d71',0,'2024-01-28 14:21:30'),('72740af07322dece41edf35efb821a686de1dfdf1f844088ce28042177b856cf64929352ede98228','c3f5ea5710496e79e4703b76ac3b50767d3ba6176e3e86a9157ae91b85c165f87bcd3644cbf297ab',0,'2024-01-31 10:57:54'),('727666606a43bd2e03bedf760a741bbdc0eb05048591c92d1fe68801005b8f1f43427de5efb5b1c3','67d605c7ebd090024660b6aff5458747c2e664391757888b1637b1a68e6f53d01fa8432b43c7aea1',0,'2024-04-20 20:12:29'),('727a1f1fb8b3cf9f40595168c2b901d7094c8cb51edafa0bd959b712efe40bec943daf55bca325de','eb2a41d53458a08ac77400df783f4df579fd125a53a18d1b829fcbf73e2b69555e0d9629152c1bde',0,'2024-10-02 16:05:03'),('728094fb336d179fc2c5d47424d91964e2b3b7076a4b8f382e3b88e5bbeff79577946f5580751524','b3e8c33d67df993fddc82644f78337028743fe9785d78d0db55e59440a877d25040d840af3658c4d',0,'2024-10-06 17:34:28'),('72910c315a6922077a64858675055d9f5007101c1b812cd62c16d4733f13acb9814f2a715a666056','4bfd9977e874e8addbadc177c52ce564102fcd12207d42889a8ed685d92a9f69b263b0a6df623255',0,'2024-06-30 09:50:23'),('7295d469ef060b5b640dfad9d60b7e3a3562f4735b0e524326112257f54a5c62dd90f51d1a09cc9c','69da5e1f002b32cff5afc18118264356fa89604f60a5b1454df589e5af08b6b6fe16a1c56a7fb082',0,'2024-08-15 18:43:34'),('72a75b6dd89c5530c05bd7ea75d7027140f796f8777c3feba94776d669ab6ff8af661cea0dff468e','37472f33bb32afe18de756b34e25cc74ffaced32ef172d7e2a8a914a49639ec162b139011da3a663',0,'2024-08-06 14:56:30'),('72ac70f149447454fc7c1599717b34dc4e6d1349af5d85c34fcf8565cb3e4b0149093b709e9e5e48','a0a6c69944d635e0143eb8520b88e0d23cc65e361ea8f485e01e4682d1116713b50123808eecf419',0,'2024-09-20 10:44:01'),('72d0741a6546dd42227cf4c197d282ee34977e291fac373398d311a4587c11587260fdcd26b86b80','910adec86e87e30e8c7996cc0b8461171ff68e485cb2b4b18f35c5db6cc552debf157c9fb0d97cc7',0,'2024-07-26 14:51:13'),('72da2b4323fcfe124848eca5d161f04d71c57e7d9698fea2f8fd7233a45d783760ae878629c57541','ebf7daae97a544f8f5f5ac9040719be54b81434789b58905bc6a6fc970a61a032ce5a9c0374d1393',0,'2024-01-25 20:46:53'),('72e90de3e875bd5cfaea1e95f7c150401206bbd45e35a1ac92f91a72bc80917610d7eb2abe50fcbc','986b492f20eade4e993e8f72fa7bc785cf9295516cbab7fcb333c1aa457a2a0e902e6404bdbc6c64',0,'2024-09-03 15:12:01'),('7302a91d21f78f2a304306478c94649eb4b282c62a7bb356914da727c0a2c1e4fb7550e242c32ac0','b40fec1c7f9d6585c5b7ed69ec1d299d02f1e98f39d19f97d39611268bf5c30829931b6e27710440',0,'2024-08-11 11:32:11'),('7304bbd6c8571694fbb3e001bb0d79da044619e4d4f9053c3eb070c573e22107ae1fdb03fa30bd82','84658133ded203b494b0c7afbed2c2eafe2411bba3f121c7c3d1ed3ce0d253b2003080ba4c764115',0,'2024-04-12 17:34:37'),('7304d02abf57f9aa54b4cbafa29f5f7f16d1ad92b1e4014b5e186dabf84aa769655d5245f055f527','a0330f03630b0a9581f62ea8bbcb222b15daead652b951393345b7717f347b4543aa55e398341561',0,'2024-08-23 21:37:55'),('73106c44fc2cbe74995858dd6f493a23d283f2ad2f2d076f17b2a12f6e4d9eca2c220e7b31806701','d076a192f8d1cacd5f66f5f5331d8138f25c8057e27a336d5d2e0507dd5fbe9852800e9a60d1081d',0,'2024-01-25 07:33:54'),('73249725a85f63739d28eb9beac98b82a80863d0c0d8850cc715f6b20566c80bd074634a0675e96b','c449b447f683f1bc96c119f4c0add4d9293696a704e180744a8095ce5fd88fd5f080ad18ee3e70ba',0,'2024-04-23 12:15:24'),('732c4536599ec8381b0c98cc18cfc6376db7dc08a286374074a4e26a4a2ec968a8d1cd2630b766e2','ebbcb02f1a7805d5d444a731eb8c0dabdf6fbbda6f1e16c8bc5e1cbb28898715f14f60fa16695206',0,'2024-04-18 12:34:56'),('7330abd7b6a952ca1d1804e25805615724939220ac38dd6aa53399a705245be0ed2e2c3d9df938a8','ca597b242ba63991f9d37a9c3dbda5b3e94820a86b415a54df0cd8a2f0872fa01a8dd17e3b2fa790',0,'2024-01-25 18:25:01'),('7337978529a1e011295751335aad8cf9c80421113e7ab1a8715af2d7ebcc06531fd381f4dfb00fd2','052811b7588a56afc45e0debf31591c85a88fd1729247948739fa4b96e17595c8f5b82ca32aff2ac',0,'2024-02-26 10:15:10'),('7342e5ee15a3f66bb74b91b049dc0df778f00f81ae170d38917b2a44d5e1bba4b25f16c57771011d','5fe0cfa5eb47d227b28530e658b7568c4da38723417f933b007cc9d69e782816b52c0fcdbbb3771d',0,'2024-01-25 10:59:52'),('734b07c891fc90924ce9f77f243ece9e5f226d241b91ab1625781f963b18f04fcd7a196420cb3e4a','67e009a5664edb35995e719f6fd286c28cc6104662429a9d321c73d260c2ebe7f17cfc667257d630',0,'2024-09-26 11:58:12'),('736a6ef406a317cf11cd33990b1f5c027d18781b8cf56645e751d1b264644edbb311f80fd137347c','7b5843f5d9cce04d67eb92b4c8b787c85f48105c08b33fb6e60c6dd68f305562efb2a2ce11d0090b',0,'2024-03-04 14:14:24'),('7374a694e0b26bf1868e7416952ca9280bcdff293fd9e8cbd059754b3741fdff1228e3c21f113d81','0aa89a0cc2dcc80af55760a8acce703e74586c9ec3d561e3508b59e833d057cfe68c25fb8daef0fb',0,'2024-05-26 22:00:13'),('737a89ff831a86f44b18fe19a61638fe124360ef15aa89195daa66cdcbcecedd9415962cd7460e2c','0fda013d74d195571c54beea0d65b7349fc9aaee7aeb00cc49bd450bb9b1059756bcc93b48aba8f6',0,'2024-01-27 13:10:15'),('73a4bcbc7887c4e0344082a41bbe7e047ce5fdc9094f182ea5dcfdc39999d05b7193997552d5e5fb','a9b7e69c379cc41efe18ac6a258cdfc6759919b06fd1a592b5a21464a4417ba800c089cc50561c47',0,'2024-10-04 18:40:51'),('73b1aee7ed173e710f61640eef9483afc07acce29189225ccc4058b21839b1f8a3bc038e313561f5','a4f831b81e9533d0c68152959944fb965a52520927e2ce8d4d32c53bba051f300b0fc765e52f877d',0,'2024-10-04 13:21:57'),('73bb0c9a2d0556337d15f70e30a97db0d9f6c2694ced41f05ad5680842eb47214db206b1cdc43fcb','84d35a88a7bbc470e790cfc655e344d94233226b1071fe03ad12f74ae6e5e6c8b56a3f6b53efc0b2',0,'2024-06-15 22:07:30'),('73d805db8b3c0975ccf7479252e2bd3770b2d9b0c3dcbfc7fb35ccba2ea00b6afad9f20ce59cb9a8','116bd56a9cde02337283fcdf93c51eeb6530bad2f20618a7c09be4222bebc6f18c2a2784d25ec088',0,'2024-09-30 12:11:52'),('73da4dc31ef8e472df6b0d32a5779b0b2160389007568d61a00f66133037db5eceb41c2b1b556dbd','285a29da0047df17592b5264022fd76e923fbbcc92b3175c451a54075444fcb69a109fbd51243d9b',0,'2024-06-28 23:03:19'),('73dc50ff521f5aa1eb9e57ae47cee9fac517e280596547e3b70260b90685ede69e32acd3f89f2ca0','48c71fb058afb08756dcc5d175cd2373ade235d04df15531f95e5c85773379d462f89740f24b4650',0,'2024-05-22 13:05:25'),('73df1f19db7eaa0f6f87d9079dea2768aa6e82abed53129cd89cb98cd94a8b4fae878aeaf62d707e','76160a7f61ec2f13d08c7cd87d56b43049e5f40dd10578db583169df954c35dd46ad02223fad7197',0,'2024-07-02 15:19:50'),('73ebf3a748266d75a388f187e75ba6d64bdd06aa9a6e50d9bff0bf34c0d8f096935d9b3dfd5f23a8','a9000a327aa9d76783822daa65efd9f541996a1e2b1226ab21dc29b537f49f111c7bc3975a9b4d0f',0,'2024-02-03 11:08:28'),('73f97b02fd200a5a8aa88c88f998705ecd9683b0d24b500e45d003852844a0abc786237d1b81a912','7b33399ac1a3d22ff0fe7059cd7aeec62ef995a3b2ffbe7616a7fe7cda72e7fdc1996cd1fc42282a',0,'2024-06-02 11:13:50'),('74006ef955c11b7ca51ac9a25981f3d9de79e92eb65383fa570d833db672a3ed88cab396ed37f651','dbd398ee17dcc9c5106d5a19565afc77e10fee74b2137dc6084a4f99390e4af227254c6224417cdd',0,'2024-07-17 16:53:02'),('74064b815fab57fcddf3bc624fee9633ef6e87a3be4df90ddff3da3e3f7e8253750743d7e4c15791','49664a036b2c10979242efffa54610d26ef595d56f361cba51faff4779326a1f85982b17e094ce84',0,'2024-04-22 10:37:14'),('741c44bf09a1261994deeb78f7cfa0b6fd88b2129d7d7b9142ec33b450a57dfb835563d37c1f547e','d81e43cabd109651aaa0b9b46eea6715178d654e339db35bdc796cf70cc39bec2c7fbcd6dce18422',0,'2024-03-28 10:03:42'),('74285afb6ddc3346381133d660ab4b3096dafb4f1031260b245ebb4f2aaa0a19cfd4eef5af107d85','ee9bf259d579a3a6e37f61f33e70eca1cf83d25c05b62c983201dd46552d44f98b09cfb833cbd64f',0,'2024-05-08 14:04:08'),('74296e036ed828638f22a8d8f0cfeba903b63f7f11816d1e6c510407622a4a269a61d6305b90db72','c4e28f1eea9e166bcd107498e9fed1360d8cec17e8a114ad4b9140eb987161b861b11a6fba03bfc4',0,'2024-06-26 17:26:37'),('7430be00933608278cfe4d17a9e0bde11d37da803fca33392468254e6af83c0c8cd61aab999f85d3','b32e31472ce030af766565d0611eab652cbaed3d7e027301020b9f14f9a1fbd1a84767d6b2a03720',0,'2024-08-17 21:45:04'),('743378251900f02c742b2df930afc327dd1d2d56d65ee28dc0d6c61d2049ead698c47846c09f16ed','ff9b6ee6851a28176dc445e05071ea61c674edaf939306e3d61e62464f66fd7ce770b9b9db2fbce5',0,'2024-05-02 13:07:52'),('743d0e785f1a0e0eded0c56d5fc61eac940ddb614ab2c0a7bf62d540b69f1b27ad1ae6697ceda24a','89888d57bae98e57e2c743ae6f4904fb9ebc13f3a0a9581d672b11e6eeb4c2a759e9f413e345bb40',0,'2024-03-10 23:25:25'),('7440d27ba8fe84ea30b7fec2f55ce14ee47873c6b5240694f6cb9f25e23992782434f92d7815a9fa','f65453c5cc856b1f27cd2abe0989d9e544421a873c8e939aaa7b311b5537f3f28a1f9696ab2c945c',0,'2024-09-18 21:24:27'),('74434706a08104d2d4c747b0463ffb0ecab0ff13b015845d5e6f53aca49a0a4740902bebc5d3dfe7','8710abf7dd3b49963f356bfe019b47d5d13d753f6bf0f8c84c4dd8c5e69063b9513a2d0902c8c6b4',0,'2024-03-24 12:20:54'),('74446818c452e36bde0df399d2c56add10859532c750adef1578fe1f8e0689140a0044536dc9573c','a6baa5a684bff757a0ec6e60f1bee3f36405bccf90f9225fa5e5d8dcb1135dbc57f5736f722b7790',0,'2024-02-25 19:37:18'),('7458774c81c69a1285850a221e11f48854b0b50a8fd7f9adb6cb0b104378a4e134d3e7ec3471bc73','b02ff4ca21a9c3aba940c6a787680c13bbab96bcc3506c2e4db18bc13eeb1dc6c425387cd3b0b44e',0,'2024-06-12 19:26:22'),('74588a5b11722fd042ee85285911e8b2ee8f462f916a9897aa9c0b53adfe31311003aad025a159d2','6c6d80a34925969508811aba3ba57fde8872e065c622abbca3ec09f507364b1a606c462d4b7066f9',0,'2024-01-25 05:12:53'),('746554e50aa5cf12bcbf5e68f7c10efe98c7d2916ec90ca624d4b6dd49acb7e99f686bbf264f4bf2','aede1ae5b64cb4498c785346235133715262435dad0cf5bd16dfff6a74c7b4617601f5114fdf458a',0,'2024-08-14 14:41:12'),('7475edd1e201441294fbc0d4942c9f0280eb062d14dfb60bd27211cb3b4c46bf145b45a8206cd06f','4939b9a180d49a3e976fc54386310754fbeaa26078e9859c7133a2d7b2d84825733621a95b47ca83',0,'2024-07-24 00:55:32'),('747c81f6e54fc660271849468b2347b9044ef97810f63e5e7facbd02b2a8f69303d607e0574c2c20','50f817faf161414aaa954cc083e1b15a5c6c99bfd26a71cbf99e6553730eefccf8a49da5cb796822',0,'2024-06-17 19:45:36'),('749da5193471b139645637786d8c15b0e7fa2d94a8cd187696f64152291992ffc6805b04b145b3b7','8d801b7b970c715ef241473b21339950e2b24a6ef104e240f407d84ae9457a7a01b144278d834c72',0,'2024-02-22 11:58:51'),('74a1972d77f458bb7284cc1ab21e8c2345d9786ff3605855af60ee0e3992235ef5ddc9036fd77233','64a6020e43c3c1568ccdc2343a53cfe07721405fccb6b839fc06c7debd74ec558014b64afb9d757f',0,'2024-01-25 13:02:18'),('74a8b69b04a01058aab7ee65b343ed4347d816d32512f5986c0c1cfbaadf4fd0e9ecdacd132db884','1d73cc2ca78f8cd2ca79fb424ed109a9598fa6ee6a00854bceee04f8ed2cea23b80fd8d4d44be70d',0,'2024-09-25 17:11:15'),('74b5f40d77b63b15bf454acd8c553c0ea3b22dad5c1b1d2f683d61133c75a05fe36ab18693d06e1b','ecb2b171306ea89cae75b986ad63ea15571eba06c7a43a17b94976ab3462a9540c83d80b7c169d97',0,'2024-07-27 07:29:44'),('74c4465f38d3216ef78fc54bbe17cf0fa3caa342f5681fe276dcd9aa75a261c4cc868f9e839c1f88','52df4af33bb786974a78179284b97aecf0a551aeb9235cf724b3827cae70e6c4721a0f2196476b64',0,'2024-05-11 22:37:19'),('74cd11d51bb698b05e1706302d948570f4ac94f1f47d175668e04f2e0c078cdc6e03013f05a8e4be','b7e8541e2988bcad03edf4f0bbdef0da2a2f4efcabe55c6391e674493c367d5bde9d5bd609989b0b',0,'2024-05-16 22:32:51'),('74d790bb28cb79edf6a2eb00d5d24e3a5c60e9d7ba3bb392a214e5f2ee7eb61bc1f0a69826f1e240','c259c95937cc344a74791bd7b5678ed5e71e9e58af65985204be160eacea40aacfba287a73e32fd3',0,'2024-04-12 16:07:58'),('74e5112aab20f242a2606107ea5b2c826f90a023875171a509147826fb3efa83d54d371e4a4535e2','9c97009d7509add89c22ea907a2feab66b0cdc88234a44818e6c46b7a0bce6bd39048dcf1b990b59',0,'2024-09-04 22:44:13'),('74e7c286252014874f8fdc91a711d4589318e64ea36ce95bc4c044b7deac56354ef9467e1b432474','3ee53bc5a9df9ea83e06a36623a4d2fb2a4b2c035e40e9546e9dc7ba7347f753bc4e4e5cedbe3764',0,'2024-01-29 08:42:46'),('74e9e62b2a7ec64d1546bb07460232946119a36beabba97b505f46df1ce9b89aa1083740e4cbb10e','b03343555f0c395e7a0495c464c3b086910f4d0a44ec5ff2021cefa7d3f84dbd1b50cd54345f2b20',0,'2024-05-16 18:22:37'),('75022956624096f60d56c8c1ac9191ee7f591626313c2f9abfa8bb9da7b4d847ee02af386744e2f3','007bc49dfc0537238eadeb64fbb14733b2888e22a43610a5283a8afb717da98552e50b021d05554e',0,'2024-02-19 18:14:11'),('7527cb7a9d06b0f62edc3e952759c044315f83a4d5849b180ca6803bb3024f9994b8666be97ad5a3','c177de3db655ed5ee681ddfac2896d16335bfb192d079a403e3530dfa50dd483c80454b3c5bacf00',0,'2024-02-18 18:09:46'),('7530d70ba4906a2fa55f8b5453b0e86b65379a4adf239cc28d9967a8081ac1fb9f9b5fae24d88785','dac4d7ae8641ab93cc78f7fb6b5793bfdcbdfdad6db1976d9af011a5c685751dbf79c7dff5ffd07c',0,'2024-02-20 17:50:21'),('753651b87e62afdd4c95fda33dcaa91e63a85de905987ff0abbb2c847fe36c593ca3ee6e44c360e4','95deccf2733d792e69e4e5dd63fe3d22d302fad9013488a9762536b69d8f7184fd0e78abd1e30dbe',0,'2024-07-31 17:57:51'),('753ea4d019d18d4eab95e990f628a6fa1ea1b816789319107143455d579f289f2b5d36a5a76018e4','35c16644ead14b218b013ceb11d2abaca5b764be9e3d240254c628d0c204b017ff89e84881a93580',0,'2024-01-25 15:38:09'),('755369495cfd03e733f8fc6eb6f057d572d8cce4977dc4b5317e4aab2529abc0bdbfd2b20aae5646','b042790177c98cdd63133247eed1c8720a458043505447b7d5b78f70988ca6613f567aadde8565d1',0,'2024-07-07 10:52:59'),('75579711f7b5d1b3d614dcf1b9bc82e5fa7b7d5a71f9ff9677122d33b58368d313cae1798d4753f8','d907ec3900d0fcecd1544d813589e1be3e2d0557ab5e2cf59fca0298949fbcaa9c6f41c5109d2182',0,'2024-07-12 05:21:30'),('756d7fbf991f9b25146594e8954d4867fe1f1e0b49ae19a1de05ee1f9298458dfda5d851b85990a8','95b06b41fd24c531723590352a8594a79a880f47005d54cdaf85f5155e1324b8221eadd0569aef1b',0,'2024-01-29 00:20:58'),('756f4a82e55667d7042b0bc198fcf9f3d25763badf5724715bda4d7818bf4a046015ea910238a708','6aa6a14adb4864aab150c395a772dcdd345634748f3c990f515022153ff6fb64090d2c23ca8d7b63',0,'2024-06-01 21:26:39'),('757af3787d2cfd45405e5e557f92abeb0604abb4eccb90fc7c1fc49e2d10a7bc4787a58cfb89a0df','6864e1bc181cefec86ed9df4ce6906b7f43d5510adb808db1bc4702d8d84db9e55fb93e03eb916ca',0,'2024-05-16 10:06:38'),('7583e0e3127b91d6085ff9d080341879007a37217d0c190c28223e0250882f9fef68c99ab82fb100','76c4d97634ce4abea8da6c0868afc336a6d190e442c72499260673293e6740175e1d1ed8b678d6dc',0,'2024-02-24 18:24:35'),('75965f378f8c445846954ac10898f35d7a3796e0c50cb1bfe1ac6440251187ee8f546976f7258de4','fdfd45840baa3f245110ee897524878305ff89834e724118fe0c9a4dc66571496ecb4b3f92ed16a4',0,'2024-09-19 14:50:14'),('75b4018f99be3f430a4f1ce419c97166b9593d30bc0617ee651f60f42c7b2fdb889a48023576945f','619bc2607bfaf1d44da9ddf0deac3f46425d5ff21baa4ad51068016a31617e8f7097994484e61a7b',0,'2024-01-26 17:45:33'),('75c03fcff5767f4a42fa9ca9fbba76927480809488cbdd84dfbaf5816bc5c7e9062d2b77cacfa971','da61234e71ca383dbdbb0921e3448596a22da19dab45b128b49ca9b52ec3512aaf941dab07653bb7',0,'2024-06-19 14:31:16'),('75c6921842f8d57d878dc711594293a1786c0825d2f566c22a1272a225b7502727cc8d2baeafa403','b72ddc0d304ea61298aaf61b65048b05b9cfe14af00fd6ea30affd3225c57b5cbae86dcd631f83be',0,'2024-09-13 17:49:42'),('75d4d73bc0efb475239c485232535dc5b4c32b96b928cb1e1be9b360e7cab1116547eef3ac0c9aa4','bee80e46e1dcad3004fdd5a69866cfecf6cbd40516989d5ae4de5be936ff0f15ac4f770e5b85c355',0,'2024-02-24 09:39:56'),('75e42d231937d03550edd69c598883e7351613f1d641f85e07402bca1c233362dc0ca491f9083204','fceb3000f5d04514ca172e957635faef7d3f4bfde74c2fa13d100caecc22ac9fa4e00c16cd53955f',0,'2024-04-13 23:41:50'),('7604f1e83c56b52ed8df091cea336ccea9d1262c940561e2d6693ba83f5c0d4ac958353ed92c51a6','e4b2b77255b6e7352d6fa6f1734b04e7d598faa92e298317ec0fd9b8fe01866c80c5e36e9f6f5892',0,'2024-04-18 12:20:56'),('7618bd3b28b5eca13886713e6be676cc7053c02aab1c7e9a080278117c5e24ca6687b62f128bb15a','74e0c4b47b8f7d76e982db3b5ae3b00fa435f4dd7df176dc3376f6c831c313b1c060838fac73bea3',0,'2024-04-22 15:55:06'),('761e1a9ba701fd1f0310e6c34138cf012f8d87d73969f51d7b405cead7028986524c905bdc952664','ec9f656ed766fdd3c509460d96f6cd16e345a6d4f6ee363bee0eb8d075ec9417528a26c8730a6927',0,'2024-08-30 10:11:43'),('7639acfca0e692cb6b1510a2d661e593eb86ea8b68bfa6571f8f6f90a3d98515224413f1bd3590de','da64440d984557c889778ef0ef038cb8afa7e89bf3071a543e07e1213578ca18c9d3cb6e3b28e3e0',0,'2024-02-20 10:38:26'),('764b49fe6f8049aa26bd8e29e085ce1c9a78f940f4c2826ec64dbc57d6991ebdf9ad60b57ad599ef','9967a925ad85d7469f20516b3ad5dd1da1a08513cdd3a7d07bc908bd6eda8414bd51bea90ebacc1a',0,'2024-02-22 18:14:11'),('76574047ef44871804d9e7a128f8fb4b6e1a0e8f17d33cc4df037c5267039874f13b180dd8669c9f','2b3ced69c689668787f9a748e3009440d9829ea87382129d0217e70407b9e0c2bb64acebad112d67',0,'2024-10-02 14:12:03'),('7660411c1e1c2c03d054d3b18109d166133f9309f78f10b584e0a87a3c3950d5acc36b04bdb29648','09de14a50423c9f9b27d68caeb70df9ad890b0277470b9702278abf78272c160d4693fffa4ad54f0',0,'2024-06-30 09:30:24'),('76885916af7435ec8c735e22e7d750f371b9ae1a86e2a83c0241aeafd5eb7a8c93c352869194c2e4','cb2bbaae929003c9973835db271000e9ccaf44d1db6a1de16ca2a3c838678622d45f43c6975c12d1',0,'2024-02-29 21:04:05'),('76983875295e65ab3139125acdca1dd68f60b09777c09d3e41344319163d88057a97b24f79bdd750','5e43bc749723dc74e7e9a53f702f6a00a573d39b328259c70dcf556653649e46ba83a1513b492313',0,'2024-07-07 13:35:40'),('76a49d040caf1c5cd836afbd2c7de5cbfed4920068d99d1ef9b1d81614ede73f53bca49ace6d515b','1aa2691c5c1e490311c8c0cbc73e61d460c5f95a1cea3ff1dfc7b498de98a42546d051c51de1c36d',0,'2024-08-07 21:56:28'),('76f396f205c39c5f622a981c76bed3d8b7cfb8bed5fda15bcb406cfcbe5d833e85535e7ae7fb289d','bffb5b4459a49e9299901d0bd64fba7f877e3bd9ab4499cfd95dcb752e2ce8aa4266d98e9ca97e3a',0,'2024-01-25 22:12:32'),('76f55cac62b12c1199edf0e8cc002b7d3f464e3d797897a70a8a4ea1e2fff099b899d68eddeb40fb','1fdabfeae81ab8a3a89cc367793616e58010e25bbf2af12ebae4a331e5a8d7772ec49900ca28bb75',0,'2024-02-21 20:08:40'),('77065a6be6ea5ccb01fbbd3001c91d148854b79e10ed898e4ee102d9e0e4989fc5e3bc89e9cd1151','7b2d7658c07803d58aeeea82aee2f74c991f4df0243504b04fe41d419468bfe0b9c29d7a7022d73a',0,'2024-07-10 11:28:10'),('77124154ba6745adafd387164c941fe5e9d5d1a6548b59d6ed8577b46d225c48638e0235f5c04533','40204d3b7347d1ec5b523323566650856e87923c6e491356a8d7758ffb22e80f61f20eb0274590e8',0,'2024-06-23 17:32:58'),('77241ee9eaa2ce28d581ab0e9ee9e140d68f57bf7a621fdf21ac6447ff43566fda3957e55714ad99','4e3a1c2cc57f8501147610e1e41326577ec3a3344284a3847a0c986fdbfeb53ac480203a7600fa31',0,'2024-06-18 18:35:15'),('7732eec257f039eb5f2f54399e2c0a4c408efd4d81e1f533e36e20ee4dcba93cbe7ce9a69daf6b67','ce13330bbf622073a35b1a4cf7c8954f6c909aadb9afe68302a117e260806d09785b78625f015ea3',0,'2024-08-14 23:12:20'),('773c5254105d186abc4931b16b600b2a8ff21668973a0f9fa060e9df391070b452ab05aafc689a15','164dba70b031628bbc6d4a8406167fdc68ce0311227e215acf1a08d35de2aaab60b0bf2a1dd7b30e',0,'2024-09-23 11:49:06'),('77408aa0f2060f311d83a1a4dee2118541a16aa9965a3dcdd9658fafe2c336bb315e9ebd5bfd371d','4fec3c1264241625ef20051a93e7b735933132ec79cd3ee98f9e5fc40564c51e9b938f65eeb00689',0,'2024-01-25 04:33:14'),('77483c81191fd599798b70f6d1094403ddea637a3090ce1e0666915770b3852656cc6f4d2900cac8','025f4438d0557e5e5e083fad771431abf97b8b33fa37df2c159bc9d2f060d488438d86eff96d5253',0,'2024-09-03 15:12:52'),('774c81fbcafd9dcba37f0964a2acfb00f0d32dcad92373c2425558d8dab764eccacedd95a90a820a','e64b79c38ce29377696a734d568760a6e8772d997e2167d9a0ab0a78002ddfe2b4212e872ec3185d',0,'2024-10-05 22:04:49'),('775a2e11abf8e1bc768d231c01d949d392bdb2db3da26ede78d09f174e974d3ae7d25a7ecc41a8fd','a225fd6ee16c1a5d2073f659a0ad2c3a138bb489cdb1a7837bd4ad3d52782308685c1ad3885cd0fe',0,'2024-02-12 13:00:18'),('7763c48bb1c8428d85cd7d918b5efd120503fc3d7e3c0524c2815469832593b99af138598666ef38','ac43bcb798e8b41bcff925da3956899beb8d1e09680801ab2656fa6340157488dba24c7dff16d994',0,'2024-03-09 18:12:04'),('7774bd8b8e1cce956651d8d793b143e77e48fb80c338c0a2ffc4dac7c0515d401c95744746e37420','2807b7ac572b9d91b071515f33eff820590604455399d836e30cb72f08e06ff0bb2c22aeabcfe754',0,'2024-07-13 15:01:19'),('777c291ecb92a283d59921d84cc829bc9f1d10566d7717149aa7fa743216dfe7810dd74478b9f1de','a8abd1a53f58143c71cb348ffe91402fe7aaf7d75b0b3cb6e3ba76757a4ec72640906f4b1054e191',0,'2024-01-25 09:43:23'),('777e9fa76920d8b0698519f87f38e3b09f84f7cf7274c4f4f5eb8a67214786f8b24b9cd444cb346c','0aabcaadb8a68595a877d4172a09a9a71e41f9c1d4e2db8c031ccf874cd9d52c6ed015691e06beb1',0,'2024-10-04 16:55:13'),('7782a2c893c2138b64552ab2cc8ae18dc6eb7ba108a6b0ae637b95b6e94c0f3dc1c7a67d44118e40','81988c11a8f684349339378bc1cae6859dc2a9b59e011e797a8308733e0076568e888a23d8138c80',0,'2024-02-18 11:21:50'),('7782f4be416a5ec52566ef2f3d2b9cb9805ded85f042825a893c893b880f04211b1ae1fd21fdea4b','6a716494fae1316caf1c33dfa7f850d320c2bf1df0a220d1c1964308d7445b3992b2315aa4756b74',0,'2024-02-06 20:35:11'),('778e8d68e9006cdfbc615ba0bc715ea666a8afed609b0e44b456efc523d62b10f15a8042897ef4a7','c356c2c74b75838ab1fd410ca9c5bea8fc0b6e1c061079846c2431c3c0157c0439027762d2802539',0,'2024-03-17 09:55:12'),('779347ae82cd5ce51836ef738d01f58dc26a3d38f3558bb27af4d4fb4f4a4eb311df8a2be72a404c','17053dfd180bd2c01b4115049f04433ba0ff3350f9203226ed11bb01b966a77495f0333bb95e26ca',0,'2024-07-23 21:22:26'),('779f14fe7ccdeadc91034009b9d3751a084c1416b13eddbe73b5a5be68742927c5549c02b5731081','9b514dcd4374ce4ae4e4b9b79fa0be94e9a55e67b7b9dd5c63c8f1a31f4efaacb3be2b8597b02345',0,'2024-01-25 10:14:47'),('77a560825cfd3b544eb6d1fc08d80790138fac378cbac09f8e6efef17454191235ed60f47a6fe2d6','b27bd8d68cfa6cf1791ea58a994e69403220cd01966380cd7ec0d28f067cd3d6c4d934dea91ff6da',0,'2024-09-10 17:52:01'),('77a91c44310512d271a36e4ac47b10d07cd86bed76fbf3c7cf21dd729dcca8b3c682c4ece1351f03','033a789b6d31a2f9828e5db4e13a523278ccaa0e96368be09abe76af16a63e3d6526c3b0549af53e',0,'2024-06-17 12:47:49'),('77ab14fd7df83b346b42db1c0b5712a64165e1ea3950f1f83fae49da865d1e69b4b26b97ee30a923','fb580de331d6bee7d432e3b7a75830445b5a5cfa52757ca23431504400f77cbb4e37ddbcf2d4e476',0,'2024-02-07 13:12:54'),('77b0848388aa037314337f5e9ce14a8ff099a015c5a529eff36caaa34c4fcea9d37484d10ce3e93c','1d5c38a7c4ccd47cc38008a27a74cff8946d6b3538dd78cbf24171bb74462e3c23e4f30ba14ad7e7',0,'2024-10-03 14:19:38'),('77bcb83ddc959374d057883d91daa00a85fc1b684dcedf652db26221bd2c098412995bc85b5684a8','b99b5e326f6e06acc7429dfda616d7a68b7f232920e4669efa58610149a644e3d02db5257f77700a',0,'2024-09-14 21:14:03'),('77fbab9365d694898a9d84f1e9b5348d5abed4590beffe1f0e31359c62ccdd6935d2da920fff4082','95d67f676a3128c7a3a26f7c2424baddd7b637b244fb3600ab93f7417dd2c3f51c80c2a658abff51',0,'2024-08-12 09:00:04'),('77ff49d85b9b9c816f74d837d33ec1691fbe29f1a5738b48e613afbf7240ec878e4c2bf21bea467c','168d6977e8e331b9034da1f24243feeb8a4552da44f350e227dc678e5bc3fcc1a8e36d529cdc5a23',0,'2024-07-31 09:31:20'),('78099f97724b30bca64e5d192d9dafc0faeda3eebd4c4416f0284c0df722589568b39dfe02807ccd','3349a68d5a1457e44dd303b1375c0d4cec3f706a3c4c21487972e30a19f22ec783bc7f0013cec3f7',0,'2024-08-17 07:28:01'),('782a0c04963295c9bb9d46ce33d725cb682707c1c16183295a6ac9c9e484ae8bd26b1e94050c8fe2','8c985a5734cde9af48306348afe8961f4b6e50ee94cd9cf46490a1acc175f3559feecff8f1732100',0,'2024-07-06 09:02:10'),('782a4ad16213cab2a61c1f31152f0cffb5cd5178044234c1be6ce0a5e20e195dc895b0df92905b58','fcf2f0a4552a565c30e10b506afe9f4c3dbfc1e065cc54eccc07f2e5c492b5f62eb05224e3bd122f',0,'2024-01-28 10:43:48'),('782ea226bd8142f66cecbd6bf1df779f0d7da5681c1e7bcae4399396c8fc97149894212222494d6a','ef8a42571b0cfa1d5401184a57039576e1ae3e0ca2c917d9be38570321a73f0787e0d3a27e31a07a',0,'2024-07-27 18:38:11'),('783532b9296da5d113757e0ad4afbc727fb49a1cf930fbcb9dcf2bf095475aed26f8b334ff23a6a4','09848ccecf422f610639bf84bb9eac3516f98704cc89f17067ba8636cbdd3f57ba242ffbf5fdcb32',0,'2024-09-26 11:42:16'),('783bdb96d5ffa2cc48773274796f5bad060f3cd97f19e5336c000f0e0529aee762f16650a9423307','c49c6848633df8a250d27b007b5073dd35500a0137c41b8df767da5fe3f46af7a4a1dff2a1970c75',0,'2024-09-18 14:24:27'),('783f181ae96a944bfe34086e6332728fd1255d5b0742974eb3f7bf53d6cf867af71d5a936fffdf19','2db5459e3215c708976a8f342de12a0f54254591ab50bb1a0ca08a1e7114f483a3eacc3b9d2aac84',0,'2024-06-21 14:37:30'),('7855a0f12e3a69b104b30dbd68e898ea8bfd654e500734fe64398e4eb19f770cc3d22b3660961a0b','e8d70ef0d850b307b76c563a55151c4cbdf98526cd67df493cd4903516bb4ab8d4a975e3d224672e',0,'2024-09-20 17:53:18'),('7856e99926ad0f1f2e3f445ef650eedf372bcd8a407503b135f7392cf9b144c9754cf73fe2592cb0','0225f84207850a7bd383e8411b914afc1f1a6439f69d2c5cf45504de4aa6840c63c7a58272a51478',0,'2024-07-24 19:03:52'),('78620c5d9a65cf75d8848e3b4feb9bbe6645ab8fc3489d9dd58a95ee16bdedcf58fed424bc90af47','51363edc441de5e0c823f10aa77120d57854deaddb4e53d04521cbfeac4faa6bea7533a4f41812c4',0,'2024-02-27 14:25:07'),('7864d02368036be9487fd848379f9aa5a65e7ccf00cd9630c3a5160e65d21e703c82b7e89389d805','ebad8a166bb43aad2e20b6a755255612b602eb28dc4399e75f8c2ec9ed7d2efa65b8fb25a07adf3f',0,'2024-04-10 13:56:08'),('7867421315ee3de58a03de84f2ed3b36da302dfd12922382b8912a36c4816435ef90a5c84a03dfa9','0e8ebae7735820021c547d5b02e0a93ea80fb7e36edaef533f0aa125a77d39198a982d03285af152',0,'2024-02-03 18:09:33'),('787079b92ed8b4c2c142d6800e5da245e5a0eb6d0be1245234fe62f6774a2d00b4a7b21ffd2e72e6','0de2dd667ae8db2eec320ab8d6a1482ea6e9535cecbea5bf813ada947f6a577bc0aaf7cf3be41a41',0,'2024-06-19 10:25:32'),('788b083f47081e45d35ec2c132bfb1344112577d06db13048926d4d7e59ec2f4fa2cd77277f46c44','794c8f20ae691c5a1b99da824cc19bfb76b2f97b4cf8a0ef6fa04f8029674614a91b05ce92353c54',0,'2024-01-25 13:21:06'),('7898681d0ca444b31dd7f63db23283cbe82ecd28fe3d8848f58c50097f7a88c317891393f1739caf','84e335abd17f314646ae93d346b0ba2155cf10c2eb88b79cdc77f3b50b988cb134569041627493e7',0,'2024-03-16 13:42:00'),('7898a605f554fa57353019cd7666f46f7f0a9d9ff3af4e20e69812f58a158dbcd7524447335cc243','23fdeccd177effdb9eedf32496827bbd7687abe3c126da07148c27095592e514a64b43d216e4b9b4',0,'2024-01-31 08:31:46'),('789e174114952d069d9d0b69e5f1623c03b10fdf44c0dd7a47dd864989cb7a1107b6dbc15fac943c','d19bd2ee1cc49acea148286a1b32576e7dbe68c04f3d293cc5d0b8f8405eb8fd9b5b3e0a5572d6a8',0,'2024-06-16 22:27:25'),('78ae686f976d9c1554be3e6eee175e7d9daea5249cd1f12c31da35297523b65f9fc476ee31771310','3368536c1b0381caaa560595272161c1536987303639bc15dcd155e56ca2ea89cad016edaac2103e',0,'2024-09-24 12:37:22'),('78c990979ec96b6794e439cc4698f9b5ffc4c9881accc0548d0896f353594f1ee9235ab27fc9b9c6','2c28e8c167a86ca83931fdfa1a6a083f1c18e331ab84e344b1ab7d043d6b47a052524fc42d5f1189',0,'2024-09-22 18:30:34'),('78cd772cf57e6be03dbf4f429c3b81bfca06c04f9dfe0a31af3dd7a766e585d2c83b287b0e2239df','d7a91eb10a2b05109e5d117a1b34a4e485853619578495a19f1eaeff0098777e71b3f2ec1fa6b518',0,'2024-01-25 08:03:41'),('78e4f5e7f3b4d14abdfb5cf192d12c3f0b6bf73b3d933685eeab4e46c14ae2eaf707777316d2a8e9','f5e092df6ab1750073dd57a6452918d50bed11aa1a0d61284a37f99e40f736a2f28c9590d1f9854d',0,'2024-02-24 21:12:07'),('78fb881487dba979431bcd0c47ec1a4e8c384980569eba9f7047640512efcbfb7b9d3c083459fa78','b4dd95b3adc80315009b18d722f8ffe4ed074295bf849c0c63855b5f91caa87a012b0d1fa1e3588f',0,'2024-09-04 15:08:44'),('790883841e667d6ad4deb41a6bd842b9c692079d47ab7eceed2c82b7f779cf9102c31933e80b9c25','afaa6ea911fbbfbb905d1a6cffb8087e8574f8170f8ee4df75ebefdee94b222255faf0bbae3aca34',0,'2024-06-11 14:52:26'),('79190aac5589c4befdc970cf54a09d17857b2250d5ea8cb45c31ea999f55ae494cf91518b010a973','33bd6a19dab5045388479cb8c62785685f8a2be708bddc389e5dc6657d1c1f30c184ef09e28af68d',0,'2024-09-16 09:36:16'),('791af903b604f9b6e20802cd01c597f95921eada6239a5c0d869e69a4eafb149d46ad2e5d695d31f','9f558422764eac3d6a163c4fe0c8e75d6fb82d6c30a5f881ec2aec1678048419e7771349c4f372f4',0,'2024-04-22 14:49:00'),('7921df3961eb64e1538d251579061112cc599ea2f9be5767c89f1cdc792e1fa761e95855d52c0890','de50e651aa5ab6de0cf76402e79c82f71f8c6eb25c3b5a6b0a58de3679f86f3c6083e200dd34f229',0,'2024-06-22 11:54:11'),('7932c45ae760cbf1385907d3c39b3aae3fbe90fb257192815e0ce3f9fd14f24a38877d95c8804390','0c388bfda570d9e298403f93ab68fa80e78c29af658c0b17bcf27b5cc5cba07d44c76f1997401c52',0,'2024-07-14 08:49:05'),('7939dadcfcab9142caebbca867abf06ad0f33887fc0155418e7229b36216ac05b27c5091b40921db','8126a924cf22b4a73fe621d51663d3a979e5f172eaf7fa3c29b8645ce6c55709e9cf00159b021eab',0,'2024-10-03 13:06:44'),('793ce4bd053bc211d00f1075c1707e83163725e37bd02afdcc199b4d12cde2bfa57cce1c9f6e7837','10e092d82dc32f518ffc40f777858b73e61d4adfe27fc5aa55b0bc3537455cdcfffd783644a40f92',0,'2024-07-27 19:03:01'),('796e8c50998dfdd5afaf40bd4021588d6656c0ceb94c342faf9c98695f8ce05f5902b16cc2cc20a0','794dcf8d16d989b7236ef6727aca51cde5c2d013d69ca7132aaf6d90826eef836e7d28cbfbb2ff7f',0,'2024-07-30 16:53:54'),('799106436fd47d8d7930aa442fb2d719269c45fdb993269d57e3270c1e1ad9447d09b739b04344e9','3b6805b2954e08cc0368657d32ab1a838f6f390c925fd45343b11b8ba69ed064ef99b375bcdb8266',0,'2024-05-11 11:08:02'),('79b4a78d1dbc2deeb66b900132e8996e209d3123b4d54b2c5cd6be1ab20181845b909ff3689d3a9d','2e8393efd45a0152f16941c540e65639edcc48b325d9665f9e9b41325ace638e07bcacd4a2afebf9',0,'2024-07-04 23:24:47'),('79b878ea2fbc98caa99ba3fd5b65ed6ce1baa740e8837dfd0423d87eb5247f5dbde25a55125023b4','ae3b8697bd42f8e9f50b723dfc49a6c6ead8c391b17aea78eb5d31e10b4df9d58ff6796110d52c0a',0,'2024-04-21 08:28:36'),('79bc803a55e3d00c3932dc85213ccf5c5d2c42dd71f0703443e9d093d6dcb8de67649f69f8a878d2','791b61ee1fa99c24e6ccfabd2f75f15e889fb89863b943bb4f67300d55d17cb2f4318d7e3e60ccf8',0,'2024-07-30 12:20:13'),('79d4cefbf00303041291e942b3f6e844eada0564b4cfaeb4e578d31fa575b9b01dec0ae3acc67f76','8b136b1a480d0019d205d1ad6724f5fef499d3940aec3a20969448f94621faf881c7158b58b70892',0,'2024-07-04 17:56:51'),('79d8a11576761bc902227f23c8fc27926205e60ae03486b7dc7b4c109f83f551b87d630329620e83','e30c1d2b2f4dd154a84f5b31e588855982bd460bb18be13b9598727f6ea5b2de6d550f80c9ea2710',0,'2024-09-28 21:58:06'),('79e055fd183b32ba4085ac7d3ccb9bcfd1043bfb864d45d646b50f1b4f773c63bb0a12da76812b5a','3dfc947135fc0d0635f24013d96d8aea29afae2f5ccd5ad9c5ccce792cf6ce57aae7f80f7d1a6bb6',0,'2024-03-26 22:58:45'),('79e4381f9444edf09f7ea709a1108fdb1b26f8afc567b8ae9283a3c880daab7e1403dd98769a402d','3170d9710f2d1de9cdeb112ff49678ca38ff14197799f0c35d784c0b14442cbe4fbfd84c9815be9c',0,'2024-01-29 17:19:58'),('79f2664c0a4238605d6b6f8731952d6c7994a1000f2835822f57f7a301ac4377405cf0954d69ba14','86187c97b227cc24f0174277c48d5d0262008eb06ff7927742e6bb99fbb74558077c101f76bbefb9',0,'2024-05-16 18:59:59'),('79f65a83473a70145c9a34578d0fdbdf3c64d6b354f17aa350f3fc147c293348b93d9dbd81ab9bb2','16ac98b5628a89a7ccb0182e127d764c1f3f01a80b4739a3ac434bda22f1f9343942da555d4f0118',0,'2024-08-14 23:18:50'),('79f8d2a63c3f10122427104b2513b4f3cd9eb42038d8a3e9b04ce84f802e5ae02da0e8c23444a4ad','986fe2a421469e3d331870b31573caae4a6ffc7863c3fc233ed1c2b294708cf7dfceee93770c91ba',0,'2024-04-20 02:49:41'),('7a111578aaddeaec5002fb7eab6baa71399b3ee082eb89c1e007ff1e2af8b074820f32640c9612f1','df673609d7c3a2b6f2fcee0bab4f6c89571f7462232b985451a3b3fff26e07d4d04fa5307098ca9a',0,'2024-01-27 22:28:53'),('7a150b337e10100ee06cd33445ef3dae945e87b7819ee903e96b31eb840fd0197ca0773380686928','25329e20e15a1699f9b18fda93b238c0c8e286e8a0adb926f87420f8f2dc1d0b5623e33665807aa7',0,'2024-05-08 16:06:55'),('7a2df50f9046525c4fffd79c8da6f7af098666e8ac8da3f21f3c5296cde3c3fec26b542e2510977a','9dabfee23e99a30d89fb31392a3dd52855cdea8e1af85b1b0c54ba7f2829c96049d649bff1ad036f',0,'2024-07-12 14:12:31'),('7a3a09cdc92d8a68053c12be18fbcf53a5e4187063718f5f6b36b8dfc721c4ac11b962bacdf8cd83','3d44f84bb00f6ee838a83d74f21066a7cd257323e602ba0b24b45b4f1ff372bda59b968b7ee9bea4',0,'2024-06-11 19:04:53'),('7a3ea4c7eeda63757417ba1471453226903ff9f71a13db4fb17d28ec32640fba32280a4f1645dec0','b5f584e83dc11956883bff6670f8d04e438a9b2479e42f02e58601b3f76cba24076e590349828394',0,'2024-07-10 15:11:08'),('7a42401c034d67781965e4829a457f919bf660e5794cefdca51c821935063514e8a682e35933ad26','29bf50c2becaa3b818d1df604ff354e61b83e1003b7df648a0ec2665129f0428fa1847e69a1b5ac5',0,'2024-04-20 23:54:15'),('7a4ec1bca67fc50b3a28157fec8849dd5adc4014f795a80c34fe4bcc138d5953746f719fd1fc13f4','a3a819d510982104db44b33089f61907cc25a180db9fa81e67c2771eee91b125ce2d24dd87a3a8a5',0,'2024-04-25 16:32:08'),('7a51c506b99d57ede02195e973d54538ab51ef76b1d784609520f12799860e6c424054d5d8b87d06','1e8937ad0af55294fe1cc10c3da5e348274e2699a37da2b7acc735567f9b7746069dec9d1a618407',0,'2024-06-16 10:02:11'),('7a5ffcffce1793bc0db591c567ef6ab57578b705ae8110f5621eb4b5ad11e3bea15b32812bf2a69a','7972e55aeafbadda33dbf04230212be8d964369ee41798998d5d24bb7ce10325fff8cb654f467fcc',0,'2024-02-16 09:38:36'),('7a8f67fe3bfb7f637bcdf6c9ad795c2e8c8965585053e22f4844cac0801b528175c6d27563542c2f','c34393d374897f2f050f0d1fd18e4a0da8d508ddef5684894a1bd5b87d0936f15821e1c1f6d08b2d',0,'2024-07-14 17:16:03'),('7a9b174d623778f3d10ad4cfe28f7d8aa832f4a03d28fa1819d49af58e5aa31d2809da86625c00ae','841b2ac8cb176f3cc7531f69e95c9d7b4853ba347451bd2fd71755edd85f5b568da068287c2cbf65',0,'2024-09-25 10:48:09'),('7aaa145cf2d83545e0520cacc552d23286a041ad68d01ab46c57f8e04e3b199272696dbdf60a9659','04ece7514f247a0eb9e61f4b644bc9c6f5e1a39da134d2b72490140eb862c6479a0e9747fc439c0b',0,'2024-05-16 22:50:54'),('7aae26f239e01ef237d8f902c234edfee71019e55b31a300cc194172b4c07b99f5c2ea02eb2f6e13','7da08576ec3829f9d3d4d759236f5b4eeed6280159a7c5b43078405d33aea3c5431f73dc45372be5',0,'2024-02-21 13:40:11'),('7ab4c32c73fee85af937a1461acc00bc3133ea3add88044ab336f66b86d115667976431529b319dc','065a6a27d6fded9ecd21f122d580f64920cdbb53a78d12e12de15c089ea732fe056b15d5adc76373',0,'2024-09-24 07:21:48'),('7acdccb0ea45714adecb4c66158857cc94a2d08cf94f6b57a0650896e5cf32483869ef638a9740d8','72c16dced352f0dddadd97ba77d507394cc4e3921711bee07b8f1abddca7dc0150cf8a882122545b',0,'2024-06-17 21:31:33'),('7ae20fdbd8c79665134160efec6db955d8fde931897923c8ad7a16637ff4d5dd2f9128a9f58c7dfb','55e72573de26c742a080f75604b36544b802837bb864ef13634297a22688c5d4c08b445a2fa1789c',0,'2024-02-21 17:18:12'),('7ae63930ab4f38601f01987219f992cf69a4ebeec7d5ee350cc4d18512f4b299a8f90499a764067a','385e780ab7f7fd7aa6e9ceee369d1343a630d27901f6cf01ed28bc2b82d1b12ac57afee62a9d6889',0,'2024-05-16 16:02:39'),('7ae8a3bca6be90644a48af358851584bd72072ce9df5034fd7f4ce8b7430189da22257413f1efd3c','ba3971fa5bc0ee79b39e93f8de81ab18fa2ce3e97f19dba18ea194627226a6f5435a9f8ab923eecd',0,'2024-02-20 12:33:40'),('7b01817afbd81a900f26dea6399e071564d071354c8dcb7880b1715dcd575bcfee3f28db5701d390','e1952e83f5a6c4691b30701557344c7d09e35c27132daafa68164ccd7c5e8afddbcd3e3501aa6f76',0,'2024-07-30 11:05:17'),('7b0e8e62b0493cfc186dee380112b3466ecac44cf092f172883df383f8f48ad75ee4d68abcfebb35','dfe73c09e6b7e06b79be317612015a281b80c58d0efcb68bafe5dd2a65329472a7e372a2fdd51089',0,'2024-03-28 17:58:00'),('7b0ebb5ce1d5abbdb3bd17d2bcaf91d74d68e4e97487cf08286014ef8e923ab6f2a1500705d294f1','cab7ff4da3903311bb145d5eedd50674379b9e73c3688e91bbdbf41930711aa295e4ee533d8c3502',0,'2024-09-11 15:30:57'),('7b1b7b188fdfa2d9f083fe3be05c91ec72e03fcce623736167806ba0fc062631fef70f204d6811d8','3f65aec846439596f0d11a3019374990bee2a0a6f113cb8705a5460ee6b028e4ba5e7b0d2ba4d5ce',0,'2024-05-03 18:56:19'),('7b3c8e63e2feabe7593c092fdeccb9297f233176c847aada22cb6e7ff5e531548dfcb5998dbf3940','a39da6a71891f037abbde1296ad0f580635ac72f7638b2c5693b94e826dab3a44bfd3de9ca252570',0,'2024-03-28 17:53:23'),('7b3eb8392777a96312491e3ef156e2f1bc6e320033f50626ed2d78245657069e001e7352cbff28d1','f287e2108b9b05b7332c5e5ca52d812c550b04864d9cb302997f055d1cb6caf6312f0f592897087e',0,'2024-08-21 12:32:38'),('7b5a7253697f4fd7d43a34672cf68a6ae180e06a1e3dbf47df030dd0118121c6cd300fb90f2afbef','3a44a63786693e397f15b23506a19f02cec51630f0e6de688c4bc0e330b1aad4f20277a3ab09108b',0,'2024-07-08 04:48:08'),('7b5aab72eb9b262166177a9e6ca4a8e333cf56d40421a24421c622e63f1c0b9bd84af97f6c1b490e','4985b131cd494177400c6d534b8655fe2138e74f8d84537f203b4d946c466a510c22e0fa4fb21329',0,'2024-02-17 10:11:56'),('7b5aece37a15f1c0eb8c125a890f12e55853b4b45f96dfdd467156c70558bc37d1b194f2f9a89de1','5e88326acfce2d710423e49dc0d93278c9193ff12976ea78e92b87c07456ae9d171c9b0474ea85b4',0,'2024-07-11 11:49:54'),('7b5b404c41b6fe69486aeeb2c5f865b3ae64e1a17f79c0b37483c563acfe4ff5b2e4ca3eb7517691','cade333b842eab984d6198ff62fb59105500b64d36f2eaaaf4a6ed4271c70b8cc9932650c920ce46',0,'2024-01-25 08:44:36'),('7b5f00a80353199aa44f54ecdefafd1c40e6fe3c12596f2064312de789c6f332fd8a54901a4897e7','486740acaf48b1e9627412d287d4cc78923d13c5a5548225a05d321654f37c5bfb2514a57c27d9bd',0,'2024-04-24 17:05:46'),('7b6c158230d5a9c51ba1e09adf5615039ffa395dcc4fb4c2344834aa874b9a7aa566b9f51a74e5ed','4cc3f2d161a595d96cea5ef8278bc7fa527f293a6f43547d60f479ef8511ef8fb2df65a53f98542f',0,'2024-02-02 20:11:09'),('7b81a18a97837564677abbf184a3d3d43fae9ca3148dc879e1dbee9b50574fab917f1bdcee183cf5','c9c59a8044d6f087adc336fcff3dd4c06b1b6091e318bc0a0e6f0be45cac720ede73d780bce6f962',0,'2024-10-05 23:15:04'),('7b81c51e7bebaca035419e4510c1487217d1ed99e91cda109116dbd59d4e2d71077df2479abc5cde','4d8cd2152ccecd1d58bcd7c7e9f22db73de5127f7dc400f8e95c8eb168fba785ba223c6615fb690f',0,'2024-05-08 10:47:29'),('7b863a7353840a96e973bb7848fc893b4b62af53a08d7da9a3347bfc6e93de0ec3239ff978c1ec20','88031bd6f0c3a56c2aeee04e2f6b7fcd87e17dbc8ffd3f4822cde66dcce203d1bd16a3836a9dd5c8',0,'2024-02-06 14:19:49'),('7ba74ed48cdf422cf2eb0eb9f34e2309bffafde8e5d3aa78ec6051ead5b62e8e49cdb3fb76afedea','2ae8ae5e2f55b3546d5921e0d9419bd1785ab9d74578e7c64dcd54848498d5d05153dc06e406d1f9',0,'2024-10-04 19:49:54'),('7bd3230d3de8cf236306969e3ff5f079120c2068189bca1c1b0af4c841631636d55c93cec98a0beb','68d46466448331812f981fafd72d86916f75356364ddced8dbc2097457034feb8c6d0475cabbf8c3',0,'2024-09-03 19:46:56'),('7be54fea2b8bf31721e08bd1143b2aac443f68d319cd68072fc69930680e5983a407c4bb38276265','2833020185420fdef09452a69a1a93dc0a306297de5f813cf47ec72bb538237810d0f6232ca73ee0',0,'2024-06-26 21:10:39'),('7bed09643151e7cfe3fd1cd3fdc59e8ac854f9c2f50cc499be5e8043c3d6761b8201a6fc78bf342b','f97085c12d2ed8b42d5a5e5a9afff06b3e8e403930ced37e17da13f7aeaccecfa1493a56f19279b6',0,'2024-01-25 07:13:59'),('7bf972bf1ce60dd253011b0b422b4412f2783fd3d57071d1b49a9b88f8a335de7dddde1bdf95f6a3','1d36ae80ef1d687ff839eead7d2a067f45cad45ad8ab4010c17f6821d1149bbd2d45b7470f9de8e4',0,'2024-03-11 20:44:24'),('7bfac2fa031c4a356ec8c5cc56822c5ea41e44633f2bce9ccbf289ea2588cfbe483f54c07c66aae9','2a1da3e88118a2930a64040cb919b0b45c6b38393ecc09dac7fde9210e8ecbdf7a1d962fcfec2aab',0,'2024-01-27 10:40:04'),('7c08c81283ed234174038c26df3f45ba526369c7016fb28178ad6e1773b3a7d489942b3664b9864d','b0800fd8fb857f13e176fe1b2b886b7deea12b0087c0f8ca55cda3a8d60c30b7ef02d794e61888d8',0,'2024-05-22 14:27:02'),('7c0e1275e6dbe00ebe411963e5bc3ce955ce3d9c736877d242f466bc88c6fe40d8ad6e6c6808a7d7','06ae375efe85a025fda273c0e002826af9528c0b1980145d38b360eecc1bbb22048d5a37edfb7cd6',0,'2024-04-06 02:30:42'),('7c1d7cbbf4954b5ec2cae03c81cebe7b6a9bfb24ba4e0bf0b47555a68e10e84382a086f79d006cea','5de68d2c02d44781c2dfb718326867332397ea613818e324650be18ab7b80f039ec7b27fcdee1907',0,'2024-04-29 05:40:37'),('7c234f21e43b8e243491c5f963c3ca802277d88daaa71239626226cc415f5fdfade2ddad0ba2b46f','01e93cecf95b73b49a2f49a53b77422bd5905a7784c7a1141649aabb7fdb84f14752695fc31566a8',0,'2024-02-20 15:05:29'),('7c49612d18b735abf10c9ca5a3dbb738bd3f6e580a3a07f2a4d9ec3ff9fefa0f86c6d9c02e220b1d','9f86c7c8c0b7879cc14fd2e08e9a21b68d5298961bf4d820bade01f9cbeef01088cb8d0349c453d9',0,'2024-03-26 10:08:03'),('7c4cf721c6438db2debba53c90776151452f85dc4b22bc9ef849e0590b50d24d8decd896cc32b3ce','809166426adbb826a178372c710d68fd796232a2ef6f329825650bf64e3cc5d2a950cf9b890abce1',0,'2024-02-21 21:38:52'),('7c7bcef69cd2471b0afdd10371dbcfef12d0188f19442faf5ab36e9d073561e456740c945090f712','c54bc920a5a24e62a2ea844c311b3945638dd45594cf03bc3d70c6801c02b7572db79f9603ace247',0,'2024-10-04 14:10:05'),('7c834ddb0dd098f488604fb291678b28a70c6584e3bf64c3966bd5db03d2b9ff4a7632774c357920','f04d0f441936dd8523e9d33b7bf38725e230bbd8bbb280a4aad54dda7f2436087672d0040aafdfa5',0,'2024-02-11 11:55:28'),('7c8c97705b7c29ab2001fd3523759dddcbd1d37cf677e1cef4c929d2b12b241583fde7a922518a7f','ff43b9b28f94792fe32c61658bcc6d6a8f4768cbe07e252b148f9909bdf4f19c58570c19de0d4dc9',0,'2024-06-30 08:08:59'),('7c8dc847c0677de4471b04eef62a8e77c399f5106a8785f83c486050e4dee4a6e03c52a7f15af7c6','55bbc04c18626e13729872ca773a9cb54e499474b2761337bd2aa8f4a451274481d7c4501356a775',0,'2024-06-04 18:37:18'),('7cbf48d12791eef104af1d1d99ae2e943bacce1dbe0b40999dcd7aa425611beed5a4d4953ca07d66','337c78de12453008d7583d0c72eaf8c727da3700e976fd78fbee348a7ebca5e2498630a8bf231519',0,'2024-01-25 10:12:57'),('7cd4055f60036683640fe1a445350579546ff92156e5ab2475cd3382f4d892147ce08cf0d4d0cefb','c21c45b2df66aef1b9c4ea012a94ce53b693d258f64576b064e0a4b5e7841844a10fc6dfdab5362d',0,'2024-09-12 00:32:27'),('7d06894821b1c0a0ee98ad93faee48be2217c5d96f71583c5c2a2967526a01e81a7909c5b2f29d59','0a52eaa95346206d05c820b73982ffc4c6b5c9b1d60d0def809707cff57188c70f4673f516f3dce1',0,'2024-06-29 11:32:39'),('7d3c11e6b2dccb76428bd20c86785a817665e63c9aa140fc8417476fc40338375fc19962184cc275','f99b44d27bbbfa0c9d5422917f3b27f4aa325ef856f0bb28985fba61322e0b73507632e57dfeb9fc',0,'2024-09-14 19:09:38'),('7d464a0aa039a3ab7f68ac0274fa41b4f0e4df0c2d52df5e8256b92c926a6be3fa6922502e4040fc','cf62c18888cfdaef165f8694bce640b5e9f56e0d17ead70a49df5512c304e2a3efde8fedeef6311e',0,'2024-04-04 11:25:51'),('7d47af45dd127bed1bbe070436be5dd26af9ab1bf9fe411d758b1a05208d8329d6dd742243a408fb','bf5a47ec61df93ed6d6c4c24e32c75326c6edd6147db1f216e2c205f88db425762c69a00fbb5b278',0,'2024-02-13 15:05:02'),('7d56ceb3867b9fa9c616249347f55773a641cc5274f599a859f6d05a8cd836ca826cd2ea3547b48d','46b9e7288c9802c150fa984b171d705c94f613ef266cac3fb92dfe869a399a34f702188c2b809cd8',0,'2024-03-16 14:15:16'),('7d609a188b66100782b3b89059f8283f28d13cc62fe17aa006eeb6b0f8b6cdaecf5137c1add94c99','8320d5f96e647f8479bb70470e7c11aa59535e6df9272ceb3c0f8b5bf0651477f100923e4f5812f4',0,'2024-04-02 18:15:37'),('7d64edaf8cf23b92682e158ca43d43277e4d206758905a6f878aba0cc064a9da1ac3046f648187bf','c889f3ab4cfac4d4bad65b1137acc8987ff321fc4a05585239b6420fc84f7073aa8df1b2159a3720',0,'2024-07-26 22:21:52'),('7d678ee75427189d356d0209da0141fec87e512f46c6f9054731c01f5674bca961e3568cdc5d84b4','34eb929d21b011ae6554c571f8cb264c2e38976eab4416cf795db578577f05376f8484543b7de859',0,'2024-04-14 21:16:25'),('7d776c82f40c8859dc8ac02eb36069a2d2c217c15c3c4b6f059b54161ceb45057e6505875968b1f5','a89b03425f643b525f58f9bb700af4d30df50c69876e8a241639b5e27fd023e8dcd75c851d97dd3f',0,'2024-04-25 11:35:26'),('7d88e9de4f3effa7481d5ccb75dd85c8c19bff7b20e3fb5c0abf0959b511dae3319b29ac1a47267d','4e8d588308fab80a33a5e9285c1e21b97cc3bef6bae78621ff2e7e286a8667008c5fbf155181fcd1',0,'2024-09-26 12:21:44'),('7d955b9c09438a39bcb2e2259f99780e6350a6b62ad2a3f83fa5a74b700c40c0bcd6db0586e50f00','30c25d10b23e6efbae5833797c2fae8b58f4f4e60e9182b2b26ac497952ef96e1e43a9d3e96545a4',0,'2024-10-06 14:13:06'),('7da2dc375e22a6e7f20bfb13d5aa57594a33d598d93b92bc1e0bb427dca6945c1dd5af3379cd5c31','64d4cf885f08829b83b51aa5896a2daa04dc2fb9e5c0f00f9ac85a8745790fb41974ef233aeb0e1a',0,'2024-07-29 16:15:12'),('7da84064618a0f8d6356c816891e58aa91ddbd4765ebae93c165778f3be84c66849a039a6ae8b330','637385b7780325f51d297bd45606ed1356c7f3c6ee3af5ff5d4028d6c55b54606cbb0f2d1ceafefb',0,'2024-01-25 13:26:56'),('7daea2fc5a096c0c0be82a161dd8184520591cc9526aee4fbb3a4de319961c34503f8a0f183612dd','a859b21d36730a817d5064830815ab67c719503926183433ad9de314b820fec72ebbdab5c895a781',0,'2024-03-05 18:26:09'),('7dafd47b4e40c86c655b5fe27b44ca18484fd5fdff7ae8bafefb812275828219e5c9424a5dcfd6a4','1fc8c6065ca7ace6fea9a974437317ad258a08a2d927b7571ada079449e6a014dad59126ca3c8e95',0,'2024-04-12 19:50:54'),('7db28d48859f0e75c84c648116dcae9fc5b19a1d521f47eacad09441049d51d7f3afb5ed58c4346d','41fbe209f1d2f06d4c1c650339eff080b6de0a8d09441d62a1066077c9e286e2db54d99fb8141a5f',0,'2024-02-29 18:58:24'),('7db2bed29ce67872363ca9ce4d8997a8ff672e6e8cb39610ba90f66d167d1119ade12edf1d851c71','8b1449a2ee9efe957d5054f35b3f165fbb5cc3e19041720c3ebcc76396b381ba2b383e1168ff926f',0,'2024-04-20 19:27:44'),('7dc3fdbbef881515129a35fb3e5603418c363388bab19bb7f8e4e8a9d54a432a5056f98cd49e96e3','2398202304e49ef61ba0de66c86c51d0025590a4cae6e69c8c955419bc42b7eae87b5c97ddeae0b9',0,'2024-03-01 12:52:50'),('7dd6ad50ec6bb8a23baa6ee39424ca5fa90878ead83868658e4648f8ef0ef110cf029b175829293b','fa6b0c495f4734b6d9fbb0a80e80d5e598effa4022a9a6ad79f163231161f3da1e53e65495a947e6',0,'2024-03-15 16:16:43'),('7e070966c84fdc6e451bd082bc22bae300b5572fedbd78f7c92709c74e94a6806e8714d012f86d56','9b360a204035a05ccec8f7d004c4ec4fe81b91f4747850e2c7279fe37a712dd93be4bacb7bf81a8a',0,'2024-10-03 08:41:01'),('7e07d4be9c6ab1e71bd7bd4a8608d1181f51757efe3b038fbce0dae780f3fb6010c935d4270edb22','7f75300bdd88fee861ba3e6b8599a7dc1296009d14faeadd7e0025d6c539dede70a571c86a2a19dd',0,'2024-07-12 22:45:24'),('7e0ae09660b32dab6b58920c0890a919e499e00783888a3497175547d38f0eb6a05781e2c81f7af8','052ec8c8f77ce1bff915fafc0650f37b27734789e21cf1ddee6ee6afb1a02e4b15d95f24f629a6f8',0,'2024-01-31 12:01:48'),('7e79741c55cf603ad77425ec0d47c5fdae19a144e63c7cb3abecf4a1e470ed3a73c3af0cdd70fa09','586fcef22d9db021f3f049ae58add680031ccf1987390df0f67e4061e5f16124b1fca18fa5160be1',0,'2024-06-11 13:55:55'),('7e8467b8c7b2c0ad5666d9e7bc03a3792c9c889de5dcab86e60ef78ca51e8261f26772438c12984b','745a7d5f83c57a27fc3c709b1620b2580e155405f49a87999409c95e8240c722308db6c234c363a8',0,'2024-06-08 16:25:00'),('7e9f7617f3962005d436139b2a2c0312e1cd0549c1966bea8ac202dfad49fc59dd967a451a6331fc','cf88e3ae2b5eb67be4ded8997a87a32244b32a032b7d87906120ba02c36fbf7461ebd298a9b30f84',0,'2024-06-11 18:07:08'),('7ea283e96dfb0d12c505a7e857fbeafff9192cfc0bdcfe918833cf9abc67a5882182f11e462d243a','e46668f64086af173a84d0f06e466effb3dab3422c841d5ff26d308ae2833a90475d6d9c1aa50293',0,'2024-07-02 10:58:14'),('7ea5390a3b7372e0cac89a62f9939682843ee49df12e709f68e3e9dfd987c681a2181b653d7bba47','f1c7d8805099de4a834daea2de016e4b54ef679dfd81297ab76d6c5199783e6c432b68bef9f66063',0,'2024-08-31 15:34:13'),('7eaff990ca07c08375cfabbc07270e92343e2c907fa19ea673e0a8ce8b638a76e10706f41b5c1af7','154c1c3ab5d3e9570643cf57fd130f015b7a7efbc3ac1b6bccf7f7d045b3e444f031b7989a07dcd6',0,'2024-01-25 20:49:24'),('7ed00d8f067ac18a2618a7fd9b1813a8b2775f909895abe1850c9f4cae8255556dbdc3557191c6e9','c315bb93d10ea80ab49897b1e3c5da4849064205abbd6a991de123f00b6dcdde21e2ff8b6f061b16',0,'2024-06-13 17:25:28'),('7ed69e59408fe5a63832e67a753abfaa42bb964c9d5e6fdc7108fa6c212fdef49102aca2db230f37','f1ef30dc0119d560dd8aa697f39c58e81016b9b67f0c30e29b3621450531b16049f7bbe8a16f6655',0,'2024-04-10 14:35:21'),('7ed7a033b07dfed9c8a3bab9d9874b9a5cca940dc1f753c6e707c1cb03f3626635cd22e3088b9e44','9a106940b8f0836cc904f0d1ec74f6498d05712b80b8a680cd595525f38bf18b47d68a849a750126',0,'2024-01-25 05:41:05'),('7edca50601ca199abaa47d175fa856bb1cabe32e336b111f63623d294bc2c5325cb0414e62f32abb','3248ad50877561fbd93447642359dc5adc685707db77b720827326a90070be4a58d1ce076471f0d5',0,'2024-08-26 10:34:43'),('7efa2f88881e868de767cb8524c3760f593096695bded8a05644157bc4e1df500033ecf536079402','f78bf15729362b291519cef42563f2b76148652c81b7dc8f669bda39b1e9e31688e6cdb0a7055c5d',0,'2024-08-25 15:45:15'),('7f211f90066e2e88f21213033a283181705012560bc847e84afde4a29bec7a0adead5020914b4d21','707af4492674f010d68187c2fd7767291f0fc346f5438a35fe31659735ef05c645c51fa20a483898',0,'2024-10-02 19:19:54'),('7f2533ecc4c6fe30e379428ba62948ba817e5aaa3cd337b48e23ab8ab08dcb26516bf382f3476763','b93e3b0550041c243809d800af94d05f6101f1f8a34639157b862858089a975be23388c6f1692243',0,'2024-07-31 20:51:34'),('7f34fc7c20cfdb7f16a6e9e30eb4ad69421279aecf915b099b6294f42e0c3c408dcf59e96aa32a99','7f9a60b56d49f755b8c0e533f9ffa6094eb7dc15debc7bdc191452708863dc52543094e6f59b4ec5',0,'2024-07-26 14:04:31'),('7f409a4791e78ffbb596bb89e26171231e8f567d1af8babaf4cfbf84d92a4eb0089f5dd70cdbdfdc','a26e5e5183decac1c1e4c8ff6e0fc09ee972dd98e54d00276ffe2fa993d7ccd05dca63727a9ad33a',0,'2024-08-07 20:51:24'),('7f4fcd6e7956f3a7b376a089f4dc2174715eab5d391da73466d7148783fae42421b4fc8569aba040','9b9674a769827ffd40052b552be8fc28ab47899321d94d383ae89b2265d0faeb9cba414246f7ec6f',0,'2024-06-14 14:27:10'),('7f54f518ac7a40a08b96c3b69e2cabf0fd59ff8764395c832043250b2027cf507095d96cae828600','745cccd5a6e7985a973287d2be9d8f23a511c4b3ce70fe8557c28c0d0d10d3e3f7a75bcd53b2de63',0,'2024-07-17 19:07:07'),('7f55cf506f2bd2a74e36fb451065cf7d1d230b45a7176b7914eb3885932cebcc3c573fdba56f1712','16c2a1980df602d570e64355beb69bef414d218c719e193c72665af7c4b195d728feff1ea78285b5',0,'2024-05-05 09:19:03'),('7f73f5d2ea80d4dbde158e7d2afbe995c299c2677234159001d533b8e40421df2bef21091c2214af','445f5db3d5b9e76acd2e16c5cb3cdcde1a4ba7bf306225e06223d0944edb3591a29dc4396ce27a69',0,'2024-02-22 14:51:24'),('7f778a34df6491d1c9527911bd7b01f16ada0b95be03ebeca0ae62d6699638b9c0eb409c6862b84c','b4ab95904c1e0ba7afeb24d8e5c29faf9d5513a423cce01624a2d13d1d0f6eac0ac6f8ed2116d419',0,'2024-04-28 22:15:20'),('7f8ec8a13701e4a43a784e239113a02d3a0b6c581293be363b31041f109ef36b918fd3529398a45c','bf5f5619d317128aa22bf32ac0190bbf4fdcae0da26b246978379803ebc1ab8a310d1ea1963eba58',0,'2024-09-15 09:58:53'),('7f90efad61e34a59c720ff71ed08ce11041338d2488552a504ce9ee901e4edd39b6853e933149b82','a6aed2df5d93a7a600fd10e729fad2e4e125891bc0410c52be614dfeba1f9cdccc884754957fe1ff',0,'2024-06-22 18:05:34'),('7f96e8dfb26ae7a2a32f8d66cfbfc817b70777a9535aeeddd11e4e49504acbfefca68173824449ec','d8623a8a7ef2b34bffc73ee082748a122148124dfe27f36239f52068ea460fc7775218b3e70ae763',0,'2024-09-07 11:25:00'),('7fbaf3f983603e450b151e6ccf431f1d0d7a2fa69503857463a5b701a141efa2d8aa3bd9142c2ab5','ab939676f510792bb08b8f8257e30c302e616042c5842cfef22fc4a834e9ec09a9c849f81f710d90',0,'2024-02-01 21:54:42'),('7fbb260351e4000afac6151ce0327861f1b1940850963c15c518f766ade3f513a1c185f10061b18b','15eff136761701bd076620d443e707bcbb5d46817c991710688ac2528dd9670f1f6a3df98a14303a',0,'2024-07-20 11:24:03'),('7fbf6618c7bc7739f048667431e5ec9c211d100aa87dedff6b06615b5b4b4732779530d1239b7236','e4e83ebb51a9ac3199a2336d71b1a3e8c7c385be48b936248249807841c06b050f2b80d3ad2436bb',0,'2024-01-29 22:17:45'),('7fc0f9016966962aea5d81065d9f5a282b8b01bea612b76f509ef30971c579a79d21b6163b9dfa77','da7d425c1b323fb6ef5bd64034535676c73ad505743a0a429947211cfb937b2dc715bae143c65737',0,'2024-03-22 08:31:30'),('7fc2687723ad0f716bf4e1943a709b3576fbadcd54b001c55bca688135b8335499fdfead6bd8709a','e1bf1dbea455785ca058ecbd2d4780fe5b4ae0c840c294e9dfcf16c167c5af33ed5272936eb8424e',0,'2024-05-25 21:14:25'),('7fcb5d39272af0cadfd0d07330c057091bbc5b889146845e6d2c3fddc3a8f48aef0f19dfe118eb3f','2ae259b2e19e84f8901957cd69e6e1b137155758b18e8650428eba213ab855ff433ae9510e07fd56',0,'2024-02-02 23:01:23'),('7fe03a3255d3a3362087b7d70a1045b3bb52bff53dc7ab341d0a68560302aeb500958789ce18aa0e','f30dc0950bf2b17830490745fa073ab05adae1953795e78cdc03904d3b887d9aa49a6b0f1cddc8b4',0,'2024-01-25 14:18:06'),('7fe67777497a40b79657f59904d0288f51db8fb41f2557faa5f2368fc991bc9caf89c391c07faef4','df2fbc2ff8e790dc5d4d278a3704cf4705e09101cbe2e3c518d94614b3d0c4188a647c57d7fd1006',0,'2024-06-14 17:10:39'),('7fe93c524500d8a3f9d7365d448ae9cd4d441e46eff1de46888d6b20fac64667785cff1f027404ab','cd22e98d71924ad292877d7043fe6f5f1ca3c965fafcc706a35088ebe32d924635d48d948ea9e950',0,'2024-02-14 18:50:16'),('800356a903bce19827f6ba37aca3d3de6d83981b0127284651c9917ab40eb645e9acde3b1b9c700c','53c8604a4cd1d2dfb9a2d89e4b7aa2e99a271e2f253f1ed93d4b1772254ab3e6dc4a1c10c81906a7',0,'2024-06-16 09:51:50'),('8004fbee26608ca078522b0c35ec02304d3645d34a2e669f3560258bd650eb57ce43469cc6cbbc94','3fb5cfcc4050bc359c263d2b5945149bef4f6b6735d838b005fd084ee994f0041fbd7f45053a49c6',0,'2024-02-08 09:55:50'),('801d859bfc73320bd28bdeca493fe6c2abd38bfb6447437bfe0b01064dbffa2c5114a761c27dcfaa','1f9cfe863fbb35882802d348d0325be1eb473f98f7e3488e1a6c10185c6251049372d71f9b2b1c04',0,'2024-01-25 21:26:11'),('801e64937214b755a20a63fa4b16777f80d1552fd08723e5038473659b774ca933050e1b3d2a37af','db202dd8b11a4f3063e697a3fce90b2a80a4961b9fb537f3621fa69a7b310a4e0e3bc89707efaa7e',0,'2024-09-08 18:13:24'),('80277120e35aa55e5019266e219d14ffdc441c9b05cd4c4bd4b971e9464c6c2042ef7a8fb0fc7e1e','3c062352807941aca38917c1d9933bbd0f0ed272a69d02ac53b28b90c16b0feb791d37e05de27b8f',0,'2024-04-11 00:55:45'),('8046f5f02138d4f2c2d839a451ff0f7f6e55c3b140d647db0703f130ebf4bd04f0f7d8df6e561fd5','de1c1dd80f6657c4b39ee8d8a0158bab85085ddb956b5a58f96ba0b9f18285b5d000b434b963c3a4',0,'2024-02-01 21:25:42'),('804d395855997ad804856eaeda6f76a97fb215569e102ec46eff7afe1a0657b672676bbeb271c872','9064f1df41d8c075b25d1ec5660263e7c96c0439cf133b36712fca5f60f2d747fe9988b86a512b04',0,'2024-02-27 16:07:06'),('805705f5d9ddb20366ac59ac1b01a61a277448669b0f0cd4b85c03e0528a73795953b49f36c9a3f4','074ba8684fdd67917d119a63537601b3afe995eb1907e08b1c48fd84ca66de42153a8acdb0303650',0,'2024-06-28 06:46:36'),('806cfee9c3bffae0ac121bc5ef0f27ccc0538833c8378ad3750eb40cf06da350a3d9ad6e2282ac19','d4833577ccaa862218260f43371a999157c2f7a0916b2a96f7980c586e58044156f5622342c8bbf0',0,'2024-01-26 08:40:29'),('8073ce9be93241372539364c54efdecc271e008865e5d814ae40f768043c3590f641b818ea91c654','679fefe543cc963bf8323b1573a2e4e8cd1425a11ed1f58ef41d8247e163c8b05bed9d08173f19e0',0,'2024-09-30 13:49:49'),('807a3296d024240d8f15da0dde28561e9756662883736be1df627460d831fe01092d913fda64c3ee','a9a7b836f7e574454c252ed29e9dcd51f00ca75781164c49f4d0a5cba064cbb3bc4b278b140c7695',0,'2024-03-12 20:10:42'),('807ddd859280065aa873594713178b5a94737a0b7be995a2dffb4549fe72f35bf276c9bcc9e7dabe','522daf24d0b7ccd8d0ffc6584a6f34efdc68cfe940f0790506c1b9698f93c533ad2d3bb6e7573c2f',0,'2024-04-09 14:55:57'),('80a052228bc1bc115e9d5b517a88203ece5fc6be34229a8a8cebd2119aa5a17aa66ed53715752c69','42b9ee1764cce725439d5619080d3dc784768b12fa0271e4ec7f89e7616f668735fb1a2ed2ef9086',0,'2024-06-07 18:26:20'),('80bb22616d2ed8857638e6d206c09e991f4a4f8e50c69c482074264ee8cb76f6f640cdcca7d99cd8','89a1d3e08d18ecca79aa3e57dc206cd3457b1b8a4fedca233f70a9324dad7fb3f2c567aa10607901',0,'2024-06-14 09:45:38'),('80c22885a867bca01194312ed23521c832ac710473d28d4c71e195c134458a53200b85b39f52d770','2b450136c1d39cb4ba94cc0918a5e4d6a758469ef2ee9284b572b89089b847614072f07685d80266',0,'2024-08-01 09:12:23'),('80c4c929a9df7d9b60770bf5a3ce11e9d341002bb4a920c542f15cbd2e43d5beaaa1e4d740498ee4','9ea2a48d14d7b6df6ed48c973b26b222137d5fb34183d2ddcc82c554e402f6aa9c3d206868985308',0,'2024-03-13 21:58:14'),('80d55cdcb22b58a752ab4cd0c745e38c229ddc1489c236cd4c80f407faad736bdea3379f1df30bd0','94e8b71e8e68afe84478a6444bc45559b844e6986e8d8d2e80f6e79007687d95a26798e243241aa4',0,'2024-09-27 12:11:24'),('80fedf3e33a032db3e194eaf8b0f33e81859c8703ff56a2fd41c581e6a90f3f0f647db99ed07e7ea','71ced92d36116f0e98439a49be8c0da5b32b935fd0d498e7589574e2429d610863e30a485f04fc89',0,'2024-03-02 20:08:40'),('810de881540e4fd36863fc694cab09aa53c4e92daefa1e8c87d4369078a4a4af51e30af595381505','54ba356f2d64d83cceb883bf4a89fcc20520a6f8d4bfcb9a4614ad958e7725ebc259355ae04924ee',0,'2024-04-22 09:40:21'),('8118f1601fe330f03e5619ccb18b6ab98e2604a7874ad87c61d9a83345b601bc99063f3401dcab3b','cf26387619b7c28e8052385bd030dbe9c6f5a34f60c327704f9e3eb2ee1552210612476086c8069c',0,'2024-07-13 14:18:19'),('812242ff5a35376ed6e6e582aa1e42847e3e699186e292a614c3a6160b60275e58af12ee37ca5000','4114ed6b28761e772c55924aee882096f95ddd5b2f15cd5792e5eff464f5d986a3caf4acf5b5b31b',0,'2024-09-17 08:46:14'),('8126471bd37442eaefe392dd12fc187b7942acd45845f9408ca2e0e8a5fac1fb613b8af772bd0dcd','1f84e7dac454b972149d840f371ac97a7de7855d5723d6f718ce0348597f50a6cd34e1e9f6d31424',0,'2024-05-08 10:35:08'),('8133bd889216200222a6a5d8f4b43cef59834e24784afec98b3b44e3a6f6d62bd4b81824b9269f92','2154ff52be2d5233f1dfa22d7a19e5a7e2820703d022ac8a6dd7a2159260a932e1e1a3f63ffa5001',0,'2024-04-21 22:48:55'),('813a3c39b12598d37803e3516c2eb94563c246a2be86b5f047b542a4e3ad3dc970a83df353937e00','001019fbc55c7175caf748d38e736fa8b18f862c34c47e6844c351bfbd1364804883d56ceafff549',0,'2024-03-31 14:11:50'),('814c606586b79e18552ac95fa7c59bc6409258949fe0425b5df4009a4c0287f16582a6e19c5d3ea4','59ede56817dc9a62cf123602ca42bb78a473131816ccfc08190abf30527ab74ae916c2293dee7484',0,'2024-02-20 19:37:19'),('816616a8599338a60794a76f47c7984a7224062cc309c98e3fad3aa94b7e3b78e8897349518d0ebb','f5b09a0a7a821b0abae4180ac065461fdddce55b30896875bc2311ec88cd30612099c5f85618bfc4',0,'2024-01-31 08:16:42'),('81779309ee17314e01a4225cf65e0da8e603249198533da4e255c06c955d6190dfe289c731dbe9b2','fa50e854df708ff28b00bec0209f3eb44cfd4f3267b26936175c6929b6e5c08a0e02ef8f16b586cc',0,'2024-02-03 14:33:42'),('81795459a0a9f86328a0883c71031a175c5563089ab596afa788cc64b757273a9b851227a2135e15','559dc3fa44e4d45d10934ac218d1026c5843bb52552b62ecdf56de9d5b129c1ce6726a68d26e6790',0,'2024-03-05 14:48:10'),('81837de898661bb8421a3caaffcab0dcee69fa5d6c56e6f194e4d3d3840b51b037996aceb8c1bac4','42171b043d58eae56f31c723d5ef1ecef3fa21f13fa658b2f7272d9e44608be689c56c110ed4b767',0,'2024-05-19 21:18:11'),('8186e3a72f163f6d54d314208ccf810221d9591f2b38f20f0dc3b5abb7c88c4cd47c967e84674da7','eef74ce9f43aaae73f8c120db4065cb74a32c32f5e8ace70d79089450948f5aa56747d430b4523ce',0,'2024-05-29 06:11:01'),('81975cc2de33a867c646c889e7d1623cda3e34792348faefe86dc84be74dfcd2c57a509308d92e95','06c8c38df9491ef4278d556a33b3f85d2a44224f0865e62a26e163876d891b71da17eb8ee2be3e0d',0,'2024-04-12 18:57:13'),('81a4a70f662b5c837f061c01dc7001ea4fc797ccc1318cfb60f8e376013383f5ea916ec8071bd881','81b606dc4b3ca8a9b9500f5f31d6da47044e3a24aff35f9d10b17890619dbd83a53b8aa9c23fcbfb',0,'2024-01-25 09:31:15'),('81aab1128669f078dddea068c71544c9a02dd9891d60e7564f9d36271ff1e13c4c32d8f93fbcceb3','bcda59ae9b39878d31a7bae17c640a2057bfb56eeb32b84a01e3d83174cb0ba628be3232b96a9a3c',0,'2024-02-20 21:28:53'),('81b7cf4d82b6454c5899eff3a0f243f8466bcb1096051a1344c703b845eb26e45785912566de108d','03b2b7b0c679e12885c0cc3c932eb0de8d4c783d8cbdf1663f0546c2202e7fa6c035d63da11cc129',0,'2024-09-04 13:54:16'),('821f02d1aeab0924306b4e1a82734e64cf0309c556148ffd173ff06c2da530798d0337f4366dbad2','0d413284282ad1672a7f8c07edbecdef2bec7683ef25ad01a3232955322b2d433933d714065239ac',0,'2024-01-26 14:30:52'),('82487cb752adc09f73be5d434aacec7c7da3cb3d596b464afb10c873ac9e5f433dfb02aa9d48c573','f7bfb2592496f0b0a210260f554ad84cb7b2a90449b72a4026e596286aaf28d4a3ed66fc3b003dab',0,'2024-02-20 21:58:33'),('82709776d3ba868138f742295b2f0331dcc03bbb15d0da85a5dd476a559e6c0710fb6f04577d6aa1','50d2cf89ddc0eb24e73b5cc2399ca9de5840e169b90c82977472926c7def0477390daf30cefeac30',0,'2024-02-10 18:30:48'),('8270e9efd6adef7641877e126e05b2a168c820a45bb48595b08306dbcad4845a596ca97ab34f2473','9b4d2400f8d68d535a5af9c34a6774cd0279064e0258fbf50ed7262e11ec67360d5d4deedde0026d',0,'2024-06-29 17:31:05'),('82763245dc0cb65519bcf4ca90a293b3322ebbb8798e798f54495c94b030cbd1d261134eda10c419','0b35c4fe72a6a6503de08be2a456c3ec6a1ad2bb6c8d5304af72260811c9996b012dbfd27dca295d',0,'2024-07-11 20:35:54'),('827faf92a76f983b9507f3b8090904c2defbb674c843c07fdf239e8b637edc5c4201432a6921e954','b2069f5927ffee1625ab6d5cf8eca6ed4abd95d6563a242f9b7ceb0ed35a596148c507fac2edfcba',0,'2024-09-14 19:45:03'),('829050e1aeaf6cc47043ecfbbcc7636c1fa9beb5e329e64a6f48dbc0ead8eeafe47634ece4b01395','e26f614ef9411ff34a9d8f8b57c5580ef19d20cbbd0eff1daf427532bad3ca46661ddd242c809a7b',0,'2024-06-13 17:24:41'),('8291105d1dcf1b9446e6d9670624063424cc463276942c7426eca11f54be9ceba9fbbcab35cdcb21','04ec8c6a01aa49621f2b95d31dc2b3e12552cc5b5c409f2a278d67f77d798da195be7333620d7e14',0,'2024-08-08 17:27:10'),('82977b5602eb2976813be38283b14d8a3da7b0e1208ccd2814917022917be41985d63fb6634b76cc','ed43726f69da8fa16315149ec5c8d75ae68f56e61515249f66b158229dfdb16eaac3b8c07e1ee182',0,'2024-01-31 22:55:57'),('82a4435e1ba124706aa746bbd354e9d9ea76e0436fac68452e29e72a19d76777a9592e0e139761d9','a57f123bbabb079d4a98c96f90a3153692af96c042603676c79cb3105eaba6f842db9262deff0516',0,'2024-02-25 23:24:45'),('82ac1780a5f78b5adf0378ac67c6cbbe5b32f6547827823661524f48886dc9ab2c6045463906c1b8','cf6c907728c58233c1e4023cbe4cd3684ddd1a10262b4fb235ad8a599f52eca4988582500f400f8e',0,'2024-01-25 08:43:36'),('82cc42fa573d4348db89b85081e52aedb63fdfae6b1924be8735d3508d7af4449eaf1a004ff37057','1888e707c38351e7427ccf44c6a6333aecbd8148ceabeebb4e8ece41d0d47ec12011dd876dd02272',0,'2024-05-21 22:44:02'),('82ecd51a5740337daba8106bd906d17eefd89b81b46d580aaf4ea7b724e03df1a10ec579f6a03295','9708631b519654fcd54d521bb0519ee45d6a99ff799abab330b3c77f463d908a4bbe81d5010cfa61',0,'2024-01-25 09:06:03'),('830a6a195965f89cfc4b2a4e0a7a79ff5541e49b778adcfa7d58c1cc11715056b506271051b4cd9d','b273665caea45f36d8e89c03ab9fb13026117b1922ed09fb6d90f8e42921f586b88b17e4e4bc2495',0,'2024-02-20 09:58:19'),('832d531543a83fbf24f9a1ad8b72c4c5b722a06e9b71707c730d75e568e55b5276c03d1cdad2634f','948cf9c5bc4e1e7e2a993c0b31fb66f0d0c5acf34f52f59e1a5e80b904a09418fbf9da63b2bdaeb9',0,'2024-02-22 19:45:31'),('833ab85be41132b72ac0c0b847d0bf7861ad0cad8b2e2e69a23c2160edf93cf17214caef93c5b153','00e4e5cdead07284970b53a93f76e81eaac92519df3b1ef343a69047c5fa97599277ab08fba7020f',0,'2024-09-03 15:14:14'),('834ca0609af931dae97831f800c366d6d982c36ba4e1de60c23178277cc7abe87604ebb462aa84bd','d02c20275d0b617ba0aff18a320366592db1d074deecc5d17e6fa784faae8800c9beff638e0b5483',0,'2024-01-25 22:05:22'),('8366e8f3e5bbe49fdf21de12a3a6150e723017d0449bcc0ef05a18de46dd4fd0fed6f6cabd7dfef8','cf0b5fa01dd92f41f1097dd32237c16d6ac45bf4d9c367c5ba61173232a392dad74876354744e025',0,'2024-06-12 10:07:04'),('8367a70b0fe0109c96563129e07fa8a6df9406b7373abab440bc54775286a18414b60fc4ff230356','5361102262942ddc20966f7a9274c20bdd13d61ca945171b4dae95ed876c5c2975696cbfad3d25a6',0,'2024-10-07 17:26:57'),('836b9389edcf5ad48809d5724cc2ecf844ca3a76bd9f9df25f9e99ac3740f05f6e9939e6ea2bb49f','3104801de0dcc12db0f99cde4895113616f90f69b707a884c09378e68efa5290e4c9edb87982b60e',0,'2024-01-30 18:20:04'),('8376a766fae9eb72d56af4141ce1b52316d3f2fb3f911723bc37b3231bc372000ca6f5597a6cfe09','9a1eda5534d9eb901b0244e70c3cb31400386fe1ed651ab870d0928c6e880fa42fa9fd509c7269db',0,'2024-01-25 15:06:38'),('839879202b78de786d182bb234d0f3714c276dd7d74d2ebe6292033a5bbdbaa77601f16cb0306c09','93f981ca685ca3ecf9289292f783ff3f253f99dfe4550794aa7d232a37f4f9876abfa35216a06bf9',0,'2024-03-08 07:28:06'),('83bc8537670759fd7986ff79aa5cad6c00f5f44b5ed86f661ffc0fb98f878504b8916c3f411403a2','1d59115a1900628cca80d03a5f8e5010afcfdee1c7ccc04b564a7b69a79966668bec877fc10de3df',0,'2024-08-31 17:43:08'),('83c432aeb727423191a8f2bf8e5d99d447d659ddc3e169d0dd3e0e584b16f0a98a8324f97fa62848','cc67d896020ce63e488c18db2a09fd2167f026184665558f7a8f37bba2c81cb10cc4c37c515c405b',0,'2024-02-26 13:52:53'),('83e2fb5c942abd46a1946d3a76a68cf83fa07d0bae210739a3d6522d1434f4f8c5f7960392028765','8b824365c7f1338df116ca4d38c84021800c5f44de0c9349e2fc974a448ae9e09ef294d4180b686c',0,'2024-07-06 21:06:02'),('83f296f13b088fbaffe3b72f308e2b9d9a46744ec512d72389a18fc94be74bae9e5a902e9a461577','56923c68acb85eb155f673380d2e27b5915662e8c7fcda183eb31b17e1bc4cb1dd7b0b2155c6acce',0,'2024-01-28 15:02:08'),('83f75e6280ec75fb4ff60bc39b25f15abe8cfa5a31d923743fd2977a4103c3ecf34ec21ef9ca2129','050d93035eb3a3e51b06478dd148387805160f952c8bb45e9888c5b5a51dfe8e82313c265da309f1',0,'2024-09-13 13:55:47'),('8400f3b720b123d8c59a0e6b53e90ac166deccb2e14ac16894b9f25d2e82eae00ab452f09bc35680','59c133359ee56c1060934aad71967a121d82bdbda87e24898aead12de94f05f1695471053d308380',0,'2024-02-02 20:11:53'),('8402854a59a2baa87e24acf48111e7c0aef2658010593524c5f0144f950ac93c0f06610ea78cf568','1c8ec5fc540fe6d8876a75db38070afdfc545c1b1494f46e70520717c0b67d3f947f2e2984b75fb3',0,'2024-02-15 17:30:33'),('8403d7ef091a0e6dc73dff3c5319de6a8bd54bbe907fa0866da8c78fd28cefe03657f51db2c8ed47','5a525d6b98f6470bf1a88eb2604be8913433fc89f511e73e9fe7261558f69323595c87a8af17b6a4',0,'2024-02-24 06:51:09'),('840ba8319f016d59ef9a52201eebfd24936d8697af307fac0ee0d09c76f8c68a9bb295218d95616f','0cf43133d5e44b039930641d787a091e350f8a67b4de4fc856fca7a855bfdac4faacedc9e30510db',0,'2024-04-18 17:56:50'),('8410a0c91f0a60ec6fa63790f99f5c90ed922b33218dc98185520d789c9a79116c04960ecdd5c7dc','19985271e171f01f49d17e2220b285e04457287d25e729d5ec0efe5d68dae33fcd8d5db13be9be91',0,'2024-10-05 20:31:46'),('843cb7ac401f8fa08db64665c47c7e193cefbe34791af87d0b0f92ba2d9b0e4e822f43c9e32ba7bb','5903554feb028492dee9aea5408f1f727c235c3e3c141fec53a3e8d6608548b35b82fee1058e59e7',0,'2024-06-11 19:03:45'),('84492ad15a82359bdd7ce98931e05d04812d27a55bbfacc434c1caf10e8a0719da96b0aa463e1f25','1e9198a125ba7d0037f9d1dba31cbb6cdfa66a20e3dd6e6cc34435e6e989db995e7acd0f779efa82',0,'2024-01-25 13:48:11'),('8451547d3140b7dce1dd8d100a9aea80fbd49a6f82431f97ff7bda483ff8783ae186da7de5403674','1a98a12b7689054cc535213f192744d6da7e7efa753f4a302023634456e4a58fec65e2f37d105184',0,'2024-09-13 13:21:30'),('84658fe12af576eb2faab1d07d8d346a665ab8490b04e5406a284f226d938c717dd01905ca0befe8','831c552c16b5886a9003733b2c2f12066228c8ab948b94ce7d75db556a2b28eb045333dab3e7a0d0',0,'2024-04-22 12:22:21'),('846c31b4060a1b5a3ca43d5d2b1e93b6097cd445200e887395496df292cef773c49e59d186b7edbb','db103d2067780ec495696849e8efdf692158cafdbb17f2a9663797f512e0a782ef2fe2883a82c2a7',0,'2024-07-13 12:07:45'),('84793795113ba9fc23ad36e9a1426ac566d4af6991061ec50260d7e6e0333ff9e0c57e15e6f5985f','636c009e521443a02b0c7d88c4b84475895365a726a4a1ff756fe4ddefedf1239cbd7d4fa5e8dab7',0,'2024-08-05 11:52:48'),('847fca885322fff2f878de7eb4ac9fc89b8a3d40da65c19ec1c5990bbe58d4c88255be442c21ca75','905f35c3461890a7c284279b7ef0214171d2e4482ff9b3dd6b19269a931eae4fb5cf16261883d7bc',0,'2024-06-16 17:28:26'),('848f1b4901f581c10aaab77ed5319766b0f49cceee841faf312d47f07bdaecc1bddc3bd761222c69','d000241fb3d8fa38d9130a2a5a89c3b81f0137ce645efd6d0e4e57f9abfc441e32dd06b054145953',0,'2024-04-09 00:36:45'),('84967b54ea02da1d7a86204c66836dad072a9b72aeb65f07c7bf5b834069d262d8cd506dfc46c5c1','259031bfca9ec5a3398190a025e9ab8b25462468fb3268c4626cb74b2fd10822bf01a5c14e3bdae6',0,'2024-07-13 21:46:10'),('849a5a194cedfe9a6717246cc6e02842d7cd753b37195d6372919d02e828733707940a36017e9927','62d0f6692fec7622d75eddad911db8e8a62d4a4aa3ee5443bd13fb3a5da46032526d7480e2a4c1b6',0,'2024-01-25 09:10:59'),('84a1c009559dc395ef0c50b73692c06c2e016b2018cd8507154b623fffc4a00a3f63ded61c30d130','3301a5c51e095f0f50733ccf321fed58776f1870cd7184a58310850561a808bc2e03007ce4cddc32',0,'2024-09-25 18:28:40'),('84af2180c8421172c1de680022092093c3dff769a817788a19ecdf20916d864d51c2c19943405583','281075770857ba0e5928da4204c1d18da10d547bc8e1a7f02fa065db3e6f774468a9167d4ca3346c',0,'2024-07-25 10:52:08'),('84be8473da6ee50dbdda68bcd866678a41b071dd05836fb72f626044fcb0d45cfe2332341af95128','27121b992368e24aeb2c5929fbe58e2e38e2200e783c74c185dd14fe58caa004f2077ab1f806a401',0,'2024-03-05 14:41:25'),('84c80f0eb7ff8c4f420e724b368380b97a568db5e07e018b7da7723b9818188cfb8b6912159020fe','e2e23da9547843fcc8f8a76d57b2d8b2be3816fd8556de66375910477cadf6887d5b1ac8d662baeb',0,'2024-01-25 14:42:01'),('84d59e40623c6a9c7e3e7049f44d6f3170d839548f52e9d486c3ed2baac9c4189f7954979066dce9','3570399e82629e8be95b0a0702ee8c1466ee5a38a230ba66e6f09628365f8d107ece7ef6021e3459',0,'2024-10-02 09:45:13'),('84da04358793319d0e9d9b8afbc714a740177c381ded09786df58248b7e87f326f85eeb411c68fb5','47568302222340a906bbffed3d358b0335220e8b9ad624cc9a68af5c40148d7f6e7b870629c13301',0,'2024-07-11 14:51:51'),('84f05dc6b0c8b72d05dea1fc061b3a3b1a7e95e429af830471ddc1e524e9acba581fa3a05e434a1b','7fc491a378cc6da550f9c4f4111feca96788a8782fcfae6a9ac44961046e3f049b80a9b479eef4aa',0,'2024-05-08 18:18:04'),('84f52af40ca44dc85ccd359794fc1c0871c8f59dbfa28ec6585466c5e6e9d7920537439efd3c9e68','c346240c659929bdfd52f6d0e87a917cfe44056ed1292f8853d6dc626f17ead7d1b5877b6bf0a438',0,'2024-02-02 13:02:25'),('84f9c2adf3fa9efb08290f980b92839ae98e3c74d122ca107e0739b5038d8040f7f08824af68edbc','c127ae5a3e9cd46d5a08e701bdf427f9e6041991c6d1afcd5aa845d66742caec1f31a48a3617c441',0,'2024-01-25 13:17:22'),('84fda0d32a4595a52e1c4ba854cffa0b430dc8d5c8dea009b47d24612c4c3ce6b4c5b188e6500ff3','f079dcc2988eb9fd1b9be07cee98deed601609cfa40162f8b2780ad7de1444cabcd8244b19a193ed',0,'2024-01-25 20:52:10'),('8511ccb793fc03dd3d6c0a84b910ce5d5dc61b22c7a4781003e088764de42ce080e8114cf774a757','eef5f655be6e346bdc91c566a96d67ad0bdcee88e9075e4fabe5b4a377f9de89e2dc1c768b13fe9e',0,'2024-09-18 09:54:16'),('85156c974c9ffc62614f954c2a1abddddea48da16bc65346c6e48f308c7595f4db444d4fbb100288','f68aa6b078b92e3589f7aca7e51996784ad679b9b522f6a0ee95b0011d50959d18d5cec54259d684',0,'2024-02-06 22:25:28'),('851a424ae8368ed0e4941e50a024bfcea994f9c68d6aa15817fddab77c12a8b3032bac46cff75049','404aeb990e12427487fb3225c361802dd9244ca09a8fc1831ec8f5219d484d5a596c57a1ba1036af',0,'2024-02-02 10:04:34'),('85201446c9816699f174059a3e1b34b3e1a7e915e82a7fab303a78896ec64b897830ccf82a8b57af','b94880587abcef01d3e31e2c5089c081a306273bc791432dba49df5dc4c09016fee4927b85bedf3a',0,'2024-09-23 19:25:37'),('8534075178303424884cdff62309c5fc42ca31ad42b19a407782fff0f7bd9813b8819cbd1ed32486','c66a6c9c0557b38402737fa89aaae888ffd9dc421267eaea34405f03c7f5b81112731541af439f6f',0,'2024-07-23 19:59:55'),('853cbbfcf3725373c90f653675b123bd4fc9155d15dd325db59b6e612c1d7ea32b625596f39d16d2','df88621d11922cc5f91e41b23693fc93bd10cd5961b3b7a089c0eeff7c8e43f0ffaea580483275e2',0,'2024-01-26 11:39:14'),('855469bbe3b77faa595ef8bed7bdd40eefe4f90beae88a888a95908f7ebe567bcb5b9ad136d7cb6b','237293eccc934ebfaa2bfaf30150fac9a0ea58f6d0de5387d5608c59c3d859eea646a4f59ff839ac',0,'2024-05-07 22:49:59'),('85647c0ccf3893d4bf7ba04bd0de67725b2ddc7c4cabff373bc8b1ed5fb49fe18bebe38589b02e27','3abfea7541773899615cf3201f9ed551d96e83cf36838fc55286c82029c8f0f7afc14ceef102cb2f',0,'2024-03-01 16:45:51'),('856e80a612e0504a9d591b351cdd21e2262c26ba4b4c3e3e7434049c53b1ca44b62729001d5a916f','8009d2dd0047ce82eec0997986a0bc032f3760783f5309af6ca3fd18656da0569d85378ea65c429f',0,'2024-09-30 18:00:43'),('857593a2727d2b9b3063f157c21538f2e706cc57b2a1b6591f3ee2da84ebf317fa65dd42cb6e8f82','898c718caf04b9b8aa25f1d032e0aa8bb9d4524a007feb7af78f0155ce0514c538920f1970a185fc',0,'2024-03-28 13:36:15'),('85a15bfb9e589e94949879438691eab8d0820f63b5e0d5fae4f5555aa80f1abe9830f46b1965f0bd','5e610e55a06c496909d04f50d615dca82b1b15dfd9cf331ca925616306f7222354bfa2a24e328a99',0,'2024-07-12 18:25:33'),('85c544d9831041f5b93449a116c5b320024fe5bc5a83751a1d594643f39faae931b423c63d9a055e','3c2b83a9b3a97ec03d24c40eabbc167663a064e75ec38ce3e59d6d00f6efa59002d50189c46bbc35',0,'2024-02-20 11:22:51'),('860d49764626e1f0c3b7f0dd942c42c0595f097eb619519b1df470900295f5bda683c8bdf821f068','28f2272f6c9cbe14c6b830e519ab5a975fde49243fce67fef1e5059b0ff409df548090ff3a69a41c',0,'2024-01-29 15:09:19'),('86373298ede62aa1b63f09ad23a4be8b2d92c43650010ccfc7b25ee15b911d0e95125dd293f87567','8afde5bcc4ee90496159e219cf389ae0cbfa7eacb7fe15e020f301fb471852a785bfb907e449fa3b',0,'2024-07-05 20:51:24'),('864c43bca486de755ede6e6b13c4d40cf180aa24ea319eacdced65b51ea36de516ddfb4ef6c61d47','3bb63d0e422e829c73b9663108ca907099ff293764cd31112f0082af63600c57e3c5f8b13d536651',0,'2024-02-29 08:56:22'),('86751d3700c6e59c9cf224d3a4595f2d26d88312ab5efe7fadd3f8c5722abfa49e9f71f9d6e8e3d4','8215653379c685337928d7db2245a607126e7f1680b618308fcf8f2a96e594a7082250559152ba49',0,'2024-08-24 18:14:10'),('86b6fef54110b0db0822d4639dbb68d831bbf3b7077a77d6db4cb5b9bffb7ddd24b4ac9c7336e7ba','1450d280e959e09afec30e04f2837992c902d2b3e023ce27e1aae03ec713a0d3c23467b77b2483eb',0,'2024-03-06 18:38:20'),('86d552225734f7ceced9066c716a04e2f242595c2c71ff09e259bec79ca528a1a382de1593f36ef9','d05ee7765b88951482eefdb2d4fc4a04e4493deaf296b8efc36eb10ec01908dec60f68b80094cff1',0,'2024-05-10 19:43:27'),('86d96ccb82e3e347ec8ccb6dd7cc96b00658f7fb45ed29882a7765f977933f54f726f44a3cde946c','46f39fce7a28de0d67b2ebe38daa40d6ca30099d61b4c9c0875ab43c110f0900dcc937ef56223c3e',0,'2024-05-08 16:27:09'),('86fd6ef4e54f8e02736be7db5b5fd829ff1dc80bbc635f8ceea25aea85f5b77aefc51aa27748e3aa','145a25b70fec186f811d27d60471ac9ed6a3d01b1c98e83a4b843a5711bf560b3e78dc6514392e68',0,'2024-03-06 18:05:44'),('870188a9ad9a82ac88527ffca08987fd0df0aa672b2afb3a4909c06d8075080207066af1f39db93b','f46342bce69615787c4552aa7f48d6afe1931c1741c83b175fd59aad5d3f9be6ae57b9b0a19b00de',0,'2024-07-21 05:12:23'),('8703f57f87bfe792023f1339e3f524545c494c7f4b7577d7d5bc18f07c79db435f50ede2dce38bfc','52f03a71db19e62abdb953a63d7ac9ae6d42d7b11d6307962d557d5e0e3efa9049f0f5c4ddc0f90c',0,'2024-04-01 22:08:19'),('8703fac70a15d1b45e06659e75cc04d230f7d39902ec8ecddd42040268983e7df1eb883aa68b5ace','bc9084afec4940282f17a9daa5248e3a151bac453716ff869ec776ab605c1b504cbd3cac97379c61',0,'2024-04-21 21:24:43'),('871abc39218e6c4712c04039fd239c99e6a870f003317c68c8b3c3c7f94db185aca24cd94294d2b0','8bcd5f19346395f4b82968a536f0f27fbaf6d8ee4241bf4776fccabae9772b817220a0b5a6e0b68e',0,'2024-06-15 16:24:22'),('871ceefe5644c05ba31713f716936c5f19f77ffdf56301765ec6ba0f7ffb4c352c9d17be22ecc0aa','807f9779eaa756c5a4deb7ba0d5b6517193a249fa38e4c3d6c3ca68f16b7abc85851a5a9d8484ca8',0,'2024-03-08 17:20:36'),('8722fdea8da99bfd3126eeada3dbfd66faa26112332354d4c730c5be5987c072e02c32ffdcc547e8','c5684ae4a1fb48c61b31c0b89b4fe5975f5d489762c1178d61e72868f79a4696ec7fcae8c3cdf4ea',0,'2024-06-19 11:31:07'),('8726e5c98568d6957d3c66525c36258a2c0088c7e619833bca919224c04328d5fdb659b3436d6142','f5a2bfc042cef4b0aec4d07f929d5ca095b2c2adba702d1a2710c8aa8abb3a646d1bbe10d4620ab5',0,'2024-02-14 10:57:53'),('8729d1ee15543f5dfe676e3a010ab194f009ab75157807ad69bfca276b7faf63b2ea3b9dddfc3066','49a8e9e572084b07f719b618aa6aa863edb7a57d3eb839f6454034f409936a3da701d87540e84b6e',0,'2024-03-24 11:43:27'),('874c6c65f6b96caf3494577597f611400710ad5136003c0478985f91a719cabe8336f9157855b388','82ad69f6a3128a11c5ecd2aba09e387f88e1ef46b5702120a90127322795c7493720f895ba37f1d9',0,'2024-03-11 20:32:02'),('8757c71fecb3fa3186c4c4baf5ded53f1acb58073bef9b763457eb5011ac31008f29d174c6a8f59b','b12bc257440765d40eed8975df4706eba0f89140c0fbb5089cc536bfdb8344be378372361474b9a4',0,'2024-01-26 09:30:52'),('875e3fb78d6e3252c013666f40ea6721cc3282dddae705fc7fcfca6bab06b1947b9e88d9ee50f6ec','e5c006884b5e80848874a59d3553091b2aeaf9b0b9dd4498dca911f7f2983848c655011270fc354c',0,'2024-06-20 23:27:47'),('8761e1a4efdbe148c8218a4f99af90bba8599d15cf282c8b28394e8f4c23d3aa3b16c1d9bd14635d','00b89c85030dc247d67f3f31373601f7d3b4afb5b592a57836a83c4569ea520eb8c0b9ced24ebcdc',0,'2024-07-11 12:37:01'),('8768bf6ae0b656469e5dbfa92b962dd14871b150142fcfb7bb5e2d32a08ca9fcba10450e459dc80e','aa0e45ef03ea0d71e8b5d35404f2a20b46d945bca93a4bc8821a35f9aa5e95ab13bc9868a4b18b99',0,'2024-04-07 11:06:07'),('876d947e661c569753c718df75ca3fe01146e8e96b666544b52f96d7342e90db625729ce79f53cc5','ed429402cdbe12967789ad731d9b94495c74d20ba044cbb697a53211db7c4a3ad56a19169a4398ea',0,'2024-07-06 08:32:06'),('877beb6cfbef1c686d352b49b5d4cced6bb91295a77188a77ca37d948f308d738ed6f726c9ce860a','629e2115e6a1efaa0d525dbe03b135a14cdd2fe11d07cd95c387ea7f985792da61746b326f594ed1',0,'2024-01-25 08:40:17'),('878f62686efdb6394c3df1247c639eddc636cd315982437336e44a3536a6eee05293373fa68d9e43','ff26d50aca6111f04a9842ef1fe942d2120f7ffdccee13017f48331f404f12ea085022281769bcb0',0,'2024-01-31 08:45:28'),('8798c4e83a0df28ae8b82cf1827a76daaaccc75a3ec46c2bf1f1dd70a6b4fcde9032a53698bbddbb','d36671e3646e64d1711c88f54ac1b3b1822b989c570fd4303d6aefe8196ad7024667a1f48cb710cc',0,'2024-01-28 12:49:57'),('87998271ebfaa7dbd1cb265276c85b29c99ae11c5844491ccbb64c756a143751f1613ddd52f4f9f0','1c4db7ef3d1125a0ba838dbb7218d0b0c35fb09a66a4ab27d3e35f8f7a2036bb47cfcb5b4e5aa4ad',0,'2024-08-09 15:09:12'),('879cf77e69873cc2e14432aa6a990f82ca290b72bc797589614d820a29b756a4b9bbf842b070a598','32959e1168eaa166b15d10dd552d2101852ab0d7aa24797a5fba3eb859bd9a65347f23bc2e0fba2f',0,'2024-10-04 16:06:17'),('87b670c8f675b91cd5214b52d255b8ace3be1d149d134b0bf5ba032e8b56a9c8fce904cf6dd05923','74566b162b85026f11bacccb7f4899607e03658a16a5a4d991c98de2b319d0d854e62b11b60f2c5f',0,'2024-03-28 19:20:28'),('87c718a6e2e79fb3bbf37b0e2eead7312c8a2ece13f4f04b8092507a7366862cf10c4deac60995d8','714a70c72c3ca3e38e64d7653654ad17b3637b78d73bc851d56cdeaf1817d8cb634a70cd629a3e50',0,'2024-01-25 13:17:07'),('87eba81f6d86104417312e2af274c5544b8f03f2eb3075f39000d66241e6760117a476b565b745aa','1274cabd931f69116f9fbce9bb28cd10de2e50d53b581f5ebc29a74434234bf8842990a065e6d235',0,'2024-09-08 14:57:38'),('87f3abb126f8a0b9c787942675fa09143ec7071e5c22d946b12c91038a24d5a0520e68a84a4e7c3a','5caf8b92a039d955369662af5e20b44a5bcc2aebb569e8813f7d1812e2a961ac438e9b16b3d256fb',0,'2024-04-03 16:06:57'),('880235930604766d19f6567daeae9b7d1686116c514cf6a66afccbdc08a9f23c04ff9936e72d840f','3a9d8555a9e4e939d6224a06e8f6aa3bf3f4588fec87a16e67601b3399e794f658d87cb52bb202f0',0,'2024-07-27 14:15:17'),('88153e746fea0bbf1c799dfa8987aecc713f0d3511bb4ead4fa2fa8f8888093f450e1da4dfdbbae3','40abaeaf74b0ce561d284aa35b2532d8470d96d6ae109ccdae0d2708fcd5adbf45e5f2f847cfd3da',0,'2024-07-02 13:50:05'),('8821a2650548414f0b8453665f4c948cb4bfeb2b36fb22221450bec2f95e2ef9487d4ddeb006e8a2','b9dcf0e28543327cdd977227ed4d48c5cb4b08aaf4f572fbac76ac3a8df5b45adc8adf4d3da0b212',0,'2024-02-15 18:23:24'),('883b9428a226654ea87b93402fe300c21d1087a68fa3c7ca37e76bfef444046f4a0936b50ea3fc6f','dfc1c62348827264fc1f797eff51f731071f5f8597c853a90d21195cf79bd7e33b4b4ba5454aea28',0,'2024-05-10 09:11:08'),('883be551e2697975f8957e2726d4fd8619ee38dc7d8aa84b81b785a78c283b74f86ed6fa1ed5577f','eb9031a3a724a1a4ca2e8485d59d59c4ff47f5fa23cd84430f9934141b5f83927fdf41e9eeddb1aa',0,'2024-09-05 10:39:02'),('88551a8ba9c7faf9ecd7cc7b46fcba6fa6080cb5bce862f4aaf078c5c9ae80f8bd66ab24a8d9ed14','0e5378943a509750a543c052e525c584b63788f1fc637a2161d20b60a37c542259358496c5b97795',0,'2024-04-22 12:21:28'),('8859d0fe65c2ac293c9fc74872c7b814f0a87c32b13090e0c2273e2e93d3156ec4dc0acc6f038793','369a8ec7820b934013f044ebdcabc0a85848e4313fbde6a88bee766319ba69565dc1747966ac2e6c',0,'2024-03-19 16:54:35'),('8881545b08ddb450108af751dc9895619ffe62b31c50e9253b64b0f9116dfcb375a5469b34d94b69','b8d8e1bda1fac8c151e46874809c8a93262fda5af118abfb2270249ff4d377481b0b44387c309476',0,'2024-07-01 18:16:23'),('889db547ea9719802ddaa3ddb2d25f9b66bcca0e74abfb6e95c30c185051cfff39325dee1fa041d4','2769b3cd4f6eebf1bed16011ed2c5b7b5cc6b8dc1a082c5a4ca8c4a0421280e0ca93de77e8e08a0a',0,'2024-03-29 00:38:40'),('889df212b7bc66e4213dc0e9a0322db069a59f563037b79cc4a47336b540a0532b2a63d20178f198','4755139458bbe85cf0880c36880c0d1e3cb137b161cbe0425700b7be16ec3108ed5d92a66bf44562',0,'2024-01-27 16:03:34'),('88b9f42cb868c1b7aa2798365e61fc3981d0470cd49aed853327df34c6f1e937b0dd65a4660fba7f','fa749f523c5fa511dc828c71854dee0e0883c6b1f1b4d5464510aef0b96aa4945fe9d25003e6cbcd',0,'2024-09-11 16:04:00'),('88ea915f899830d9a94784e867bfa8d74b5e15ceb362b4c8793aac040db45d7c0c232e3647ef2381','cb8ad8495a460b4937aacc6d44892713d25ac8c4b125a02f61606215cd49cccd3c7f7a267ebb374c',0,'2024-01-27 21:38:05'),('8905422da37bec4d7d750954d83a6ef1ac4fba88e3ad1757a8d0155aa1329ba16cf6fbcf9556b811','8ded86106da689de00e71160f102c3d18520400d36244e71afe9fb07d1adcd7bbe3bfc3d0aec6289',0,'2024-05-03 16:54:33'),('890c0ce138316c161d0886549cc7bbad6d3b81d5659157f0d3c2264da106d4f60b29ed15adb74008','032a552f4061ae3ceeb0b609d970214e5704f3a7d542b5119e8ec461d8a1a87f5659726dd183793a',0,'2024-02-20 11:13:21'),('890f3c1737b9df4b98a6e233082e66ebb64ff1344d6a70cfe64f6f7e5bdda6c9e9517cd523e9f9e7','2ca738ea76103e16bb9898966eaba99a40cae9343a8802eb47194a9fc1052c2cd8c76486127560ac',0,'2024-04-29 12:16:11'),('89316b96f7b22a81206941eaa575765575e79fe260c608c44f7dd544cc645a052331bb9c91ec139d','08a98752c2212767ee47ad6cc83e1f641109f12aae8f14ce0b58bb71f07b88a87e103426bde7016a',0,'2024-09-19 12:52:22'),('8935999bbd6dac8a293b1d91c267fb3b39d03b7b8ce4ca2fadec27dc10945722301ebfb353968b74','26fc2c5c1533ba008a1c91ce8710ad7b2fe242566dc3a0e079cce2e39bd6aa570fa4d1aff7447097',0,'2024-01-25 08:43:35'),('89442e7e93e90f296d14f63c23e63ea049ae0eaaa4f0aae6fa424e1c880d2903063aa6fdf7e8b9c1','6cc852db0bb26d970a364c68a65283404c302d7b8aa8956414ee4168a1f636980898fbb109564dc9',0,'2024-03-22 19:17:08'),('8946af64e5505f2b70dc1d4bcabb0a69b21d208cdac0569ac8cf7f302508029f38ba179105d93440','48fd1896de448caf706fb2266a476cb95be0dbda4b50fd4c3f4b32e5aae4d6cc6f354468add1a1fc',0,'2024-02-15 18:05:44'),('895ec421b60f309fe004fbfa4666dd69465e81a1e24df6b22dac2d767df7faf80ffc0b98bb153228','dfaa6e3c34a7ccc37902ddf17ce6460dd69b6f020e6501aa9a4782cb254e915ea0d681c338562043',0,'2024-07-09 12:55:57'),('8960a95e5ccc2473cef0d157df3eb74233bca565e40a9bd04e87f3c2581a4e20b5c09ecf7923a1df','317b77af7c35f4b6e353a30af3147f595ac2ec3840165a4c25ff5c20921071c6e37f655a59dfb76d',0,'2024-01-25 00:00:22'),('897c632d711bf2b751dfcff8f2d115c9952e03275d02fd3aa1e9d1efa0c5e9913981369840686ad6','ba9ae678a6aa9fb74251678ecb206c3e5de92d422b89f9d5a03f9f09f476b7eded18e4100c37f315',0,'2024-10-05 22:32:27'),('897c9a5d74a0ff4aa96bca1889b98b5a29690752dcf725a858f50dca12c2acfacad9232edd0568fb','5bb232d7353422a5545679e96f0de392003f63ae6a78fa9364c1d9db0700851a4063bbc24870aad7',0,'2024-06-08 11:09:10'),('898337b6c9fb9f179f409f516ad61c7bb226a3097757262e9643f0d5164802d1e9b3764aec5ee40d','f309ac5d5f8b7c60a4f692462ea2b9eed890c8e8a007e8f2e1ce9b1c92cff4f7499c27040c1a7ba2',0,'2024-03-28 20:08:54'),('8983c093d067fd7c9a177eb19fde420f06c3ffb8855ed01f4e4d36018870b6cace51ab4ff44eac84','b4674fdf3a95f44ba09da572339670bdf3481cea7480806e7d984304518a8626bded00da9d8c2077',0,'2024-05-14 15:43:35'),('898d8678bcbbf79c66117663b6e05bce435dd549eaa22698f30e3836dfc16165f7ee2a2d2c407fdd','b93f02aaca4d4bfe0e6bd4416918c327da89091498932130cbbe2f00e5a2648188487aacae997ce1',0,'2024-04-26 16:21:43'),('89a3996c10313520d87d30dd4f022254d3bfe8dc534ebd465d5fd81051b0c553416fec4408ee1590','55add1c1c599fa604821bdbd40760b58bd0525b1cff93e86623bd69736d71ed31ce8495f33abd9be',0,'2024-07-06 22:25:09'),('89a75ea8cba4df2866b14fe2e675c3d985a4cc37eba491f3ff194be43c6bcc79fc6503c769235c44','2625cda051f1d1bf83138c06ff34782f47d2ef19076e220d9d272b6fc280a7e0bad6d51e5cd0dd73',0,'2024-09-03 23:16:09'),('89bc5f9bec9066100a1636e6611eed0b5ade13fcf610bce83a541646909e8c9d2e69b5dcf28f972b','a52c37ec0d7f808c4e4f6c0852286108305674fe441db11f1595ad6aecd1a2b46cb84bc16747b91c',0,'2024-10-03 05:22:00'),('89c3172a92f645bb8993fda5849c6e1ce04cf33e7e5daea4fb5fa4cc28f8060a01b335f65d423a09','fdf65e6fe4a3820ff9b00a62070ba597e6ad37689cff7213c440b053afdbb06eda440d6fac6a0229',0,'2024-08-18 11:30:44'),('89da341aef909301180a942b31ff4c6967f62f16db11e9f042fa8c54817079d1e829285cbbb1cf04','5eb5d4717ef064c1638a931289e3fa90a71f7a5bb6b5ad7f2e4a5a9bd934e2b93fa59fbe9050656c',0,'2024-02-23 21:06:08'),('89daeb424fd3638fb84fe78f4db848d074cd7306855c7a2ec648118383063fd39e30cf7f6a9d5a96','882581ff15d4f1ee0a7f3f4814b2f36c92fc9300a86e54f09d4892b8e5a8c5bbfa4b5d93d88c9d61',0,'2024-02-25 21:58:38'),('89f9fc5d7fc89b4c723ca1e3fbb91fcb1e811bde5b942d6d1f0f98bf3728e53541bbd54a200728c9','06a46c888af111d81b95243b72f669056637b5def94aa036a15c15309c2478da28dd93565b5f8142',0,'2024-03-31 22:28:19'),('89ff25b6bd77e8d7162024550977594885e419462449f1843a7b632f8d343ed0b07e8fb9de25dd22','0bb8e65cf14c41216f3d1f194fdcc6592beef6ba76adcdfa56107271dc10688329f48985d6e0983b',0,'2024-09-24 11:44:34'),('89ff6b267d71dd3779c1439275377bc5ab904e3c116ea9fcfbdcd0529a176ac9921b12dbec5ee45c','737381c56f99602349d36e8a237a3a285106bb9e3f22e1df1e74f9d3662f08c934f769368e5f7878',0,'2024-02-04 20:13:33'),('8a09f536b4cc0debfca3cb476ba8f4ed8589d6cc76dbd970584bd67bf003369bfe54d27cfa45ff0b','a3e217933f358e0b1a2efadb86d3c30cf0d34ff0b9f1b67820ba31fadbcaf8d34b8cfc1c4d992f4e',0,'2024-06-29 17:59:13'),('8a0e3c088f03a245dc0f11388dbc25258c0f93e6ff4b618de383a34024a21383a8672ee2972dd64c','1baa8115144031db177413fb1828419a5be1c62d75c53de38f5e3bebb02927023abf605d00c4ca11',0,'2024-01-25 14:08:39'),('8a418788bd5c7437b87894a2f7564de5d50b5ca70e1746e8d586b1a6cc33c7e504a35e7aaee699d2','13f0837c6867cb1b35bc1af83660d954abc6bab30fb8ab7e0210374d6fec4854f2c3dced01fedc65',0,'2024-10-04 20:49:56'),('8a501c275dd8347f66aea92df0cb436ebcfa24c81cd4f3b7989d62cf34ecabbc692a3ee7d68ff989','adfcf11435e161d97e04e2299cf7048d9a9c0647360f860e646b20eead3196a03a39ee2d52b84fa9',0,'2024-05-02 23:27:09'),('8a51d136e145476ce258d2104402ddd49530ecb5380d5157c62dc55ee4d2882f7a39a700e65214ad','9cdab1a47c918fd51bb0aa7c860fad9a9db1eff1463116b99e217e42b7db8ceeecadb6c7c6a29012',0,'2024-06-02 16:40:18'),('8a62e7ad32eb95f9d808f800adc62fb54b7f6e44c29a46780e9d11de486339ebfb7baaef7e075abd','6be6fdf00f1db07fa4f13914ec111578c0eed39ff6afe52c7bd9595d759a27f08fc899270e1f403a',0,'2024-07-22 21:08:31'),('8a7526e8957474a4095731197cdb98708c8fdd643960fdf62cdf9eb3fa8731ba92788111066b3f05','b0e9eb7439657a982af78be14e0fc8d9be8cf889b1d792a7e92fd4328d68cb436515cd021a078ca5',0,'2024-07-25 07:59:31'),('8a7d9cc9aca61ff646de2ec1eef558aa368ab2c6d952e7538ea9b25fff0e53e3a02bed0705ca1a91','7c28eafad322bd52b8c7d28fe28e47458b90386ab50256031bce3d75d5bfb48232fb04398e127b0f',0,'2024-04-09 00:37:11'),('8a8f74ab61dbec4046773e44ee8a738c1dad40e9135903704329930b97e7d54caffc9abe4564d2c3','6ffe05d44ba5c4c91ccb90d0b019e0f674f66625e79c58d24fe042ee3c74688899680366a8588aa1',0,'2024-07-28 14:37:15'),('8a958b11e33f6b284fcdcd6769e84fa01efc63aa78587bbc12872f17a2879a415bd3a69097e48f91','2746b88c22c57ac0a9b88f7d6838bf13c8212874cd797a215d6a31428475329e49e25517796978b3',0,'2024-04-23 14:33:53'),('8a98ab6a095f5b31d2e267c6e47e7ef58177c958e97702df20b42d03f67ba3a107bba23699dd6e34','b5d490be88b5b0cb3a7b5c177b59fcd118cfb0b2f81614316c19e0d0527b7c633700d85dca0c2e11',0,'2024-09-25 03:37:18'),('8a98abbab490604fcbc5b1a4cf491a7ff6a9b74e975b91971817522d900c5ad4b6639c9cf6c5c963','0888a21e16bc9ba230ece59d0f162b5ffba2d7310167c2369896c148cb6b3a398292423ef1223d9d',0,'2024-01-25 08:03:53'),('8abf9bc5cd893859157dc8d6aaaaf2910b84e6df8d65e569d276ed82796d11b92f9f061711539642','91e3a27655815b46584d1e0cf9fcc61010e9793e0d1a4a13f08faab583a19d2bbf7c01af94027a46',0,'2024-03-26 13:22:06'),('8ac341ffbf0f1458adeed62c5e4f879bccc0ead936f8e01fcaf321aff39724f8328873f40e75e8ec','a856eb3e4f7d5fab71b8ff52b5df4a1d6a4249566a3cc08b473263312d1bb3183c641001e289d68d',0,'2024-02-05 14:04:19'),('8ac8f4c1360032fe712f960c732e7b2f2a81e2a08e0a9837567efffb001064530f9a94c43d66d6de','f6c52244c78227df36d8f47bbeb8a5f3a996cc6a941dbb5222f0ee9b15badedcfc444a7ff5ac21df',0,'2024-02-18 12:40:57'),('8af130fc19482c6606bc5324e94410a4ce1932ae3d088ccb8beab5179f4dc7d5d005ef3a4319a77e','aa6634095f74ca3b6903a6a935cc3dc2fa4de56de908b6488874015600ded79690d6017b5640276f',0,'2024-03-23 18:54:27'),('8af7d1804a395165f0df59165fa5aa046f572521646350ac22ab501fe0ca842d18a3565a45c86e4d','d5442936c2d083abcd46d8d0807d552e7ff09b3565160e3274a96763fef6bdf3f03ac5c03b45e4a2',0,'2024-02-05 13:56:02'),('8b00037803e8ea3b01f09e3f79f983557d9e03ce46b88cdca25d90031aa2933f7d660fa6cd5f1f91','abcac4faf2bed2054897ccbc6a6f6fd4365ccc1df44b80bb8662bc3101565290778801c49de7be3f',0,'2024-06-28 07:54:54'),('8b0532aea40d5a8eeb688fe4f672351a8ba04ee212205a312a12e10034fce7e1a993add90f3f5f0a','355181e7011704936cafccf4b30ed109111c42fbd1edce36201408f0847c5eae45459a0986ef25fd',0,'2024-07-09 13:26:31'),('8b092ea62430c1800288bd7243b05b1caef36f89d615f6a4c8c110d5a31ceb7afd38c9991ebf72b0','a3e01bf8057ea3c261086af093a8825dd4208daae9c4286ae925d1fc97897ea702b5fc48fe0753b3',0,'2024-03-02 19:57:11'),('8b1f9f5f1e5ca41c1ebffa9535bdb82bb42221cc4eb8361ded27eef5ea0519320e32c51294d8e66d','abeb1087be5b76f055c3be3306f01c1a7bff9cd980556868b4e22ee2ef7596864c45ec9009a2d936',0,'2024-08-03 19:59:57'),('8b48ace2fa5a814fcaff451e156ee522f7df315fa1e4da29b9121f727742b3347621d21f68f3d0cc','0929021291f3631e0e3d768777d604fa1123ea95144d4dfaf2e482be26d28081655b74eff6078172',0,'2024-01-25 12:58:17'),('8b4ba1b535324f3533f5b8f1b14faf5d8c5b74d0320b2b48fd87380535315fde3714d48cb6123096','319241a4b73062cd485ceb832c3400394a3bbc56d42f4adb8278bba99d28cc6cf864252fe5ed1c8e',0,'2024-04-22 03:41:06'),('8b4ba7629de303b641868ddd1988c26fb5a186cc736593bea582fee45fe7f8cf9c6bbc85bf55abed','af65c2c8e88f9f784e79940b410d078429e35ab185a330c3c108a4d940022f375864351f718f0466',0,'2024-07-17 21:16:13'),('8b522c0ad0d98e717d16117aa3e50da70635b03c91204048c47fc7fa029ac21f1f8222648dbc7a99','ac05597353a54b7bfcb2fd1539a1ca6839b8653c4fd9a58aff21b51ac93b5c4f10b19111417495a1',0,'2024-10-02 15:33:58'),('8b54c5f6e6f60cb952c5c60c8f2046c65d541bb9259a06b2b032c16124fe3741c0e1e71ded65dc0c','aa5b7e3a7f283def0e0578d4f97157e1c67974b09b34a0946fb634d1eff1b2dd078d5643c756661e',0,'2024-03-22 14:29:38'),('8b6155475509cef512989d2bb1a43ed6c3c6d283fdf840d3e7d612de96695b6461088e49934aa3c6','3d64bc19fe7a30154342565206c7ed9282c0f534051eb5e443ba2a6d6ff8dcac76fbf6120bf053fe',0,'2024-09-21 15:17:26'),('8b65292db62b15d1abe771cd2c95d96a83fa38d5ff592e7dba8640caaec7ef1e2d3d282868a8b7bd','c474f6e1fbd7d1c5c49b8bd1ade9051ab0d34b9fde7ffa3ee4bc256749cc61d0065fd419bd041a3f',0,'2024-05-22 21:36:21'),('8b824446be10f84616cfa64616c78d63509ec966966bb895ddd5c4e999191c1e6024a73702a9e5e2','248cebff9180a644c9f229ba00bf2800648b77a4aa70ac9c657634dfba5bbef316aef55bcdaf506f',0,'2024-02-17 08:10:23'),('8bc0bb98baf739cb2bdcd908d8e846221f49700544b3d6660cc3ea54def0f4e56ede47d3d9d3dad2','afcd0d15d9a6d56d17925a2f8944801c22c40c1e3b91242e1fad4d0f9da3107ea5e4f20fd0f35cfa',0,'2024-07-12 06:54:57'),('8bd985fe1fe90896f58081d1e27e790214416421dd7e73f84671530aeb5e0dee962a5bac3c3daa82','f13f169209390b563c18f261b75e29a12746dc1521972fe40cb0c5c779468f0ef9ac6fc09811e896',0,'2024-01-25 12:25:02'),('8bd9d8b97ca7218b541d0978ea5b002ed500906993e8c5efa4c89f6cc002a0a9a075634aec17fdcc','8dbe31e490b8d1251aa65e909ea6a5daf295de42fb8bdcf57ce37c45a0335eed9f6b213cbd154ee9',0,'2024-03-28 12:38:45'),('8be23d4f82d62c77aec241ba97a0edde0a197b278af01fb3fb44554eeee60e5d1575abda113b3ea9','e62d2d801506c0c128e3b52f030472235d96e34676f84b4655bb6c35755b3a919cbeaf31c84d1239',0,'2024-01-25 14:08:05'),('8bea62f0bcbddaba067cfbb384e174615672bf58d57fdefa6e3a93471a2f399c21ff626624463e9a','20b6c82065f7d7cebe33c8ffe60781cf28b08e39f4bb7140dc9233979668a83d539bc7768096ff64',0,'2024-08-31 08:22:55'),('8bfee8334e325fd8d0fa38d26e4050f68f7ca01873100c65738b37fa87f83d713b4111cd78c9424f','81287024f6fd812a0799b970b8a02cd5208e58bc9a78220ec6b603c67ab964e03fc3a933021d4834',0,'2024-01-30 02:08:34'),('8c005f043acd33a24d8856120700c38198be2210424971b58118f22d772b9bcca201b53477358a13','7dac3a8b4b7a32acbf598b8324473328b4afd428c715ab09748f555491d660d26948b226f2a9143d',0,'2024-07-14 19:56:20'),('8c1584dca045fc27eb6969b82ab583edc26f13defc5ab860494f49f957dbdb94a408338225b0ec84','3ba30a57d56ead34ef06bae4a5bbf0f39c5a07a801a9470335649750f150396431618bc2705c818d',0,'2024-03-05 07:42:57'),('8c1b959e6c1be52ff1c723732b70bcac8875840f8e487a12dd4be841b6136950640c472d2faf6565','6dd773ccbad3866f8471ad5d7cf5fd2241879ecd9f07e7b22dc68ce5b6f674b96fad1a29c6c2d7fc',0,'2024-03-08 17:02:39'),('8c1ed34000fcd0ade5ce465583fd79bd0d3eaa2b6257ca9c4e66a96fb94965979e7eed28a2c1df1b','175765d222bc53d436bfd4a003b8a210e28f619ff23bf413f5bd625d29d9dd0caaf430ea34c01133',0,'2024-07-16 10:58:28'),('8c37dbd846004c757792bde9b1bf5795ceb733adaad047abc69ea0a403db5552ace0fce7bab882bd','489fdfcae8236c2d8d5b43dd1e623f0c7fe4576ebcce9a7059195e7b32ff3cda8f0e0214c3b7852a',0,'2024-10-06 16:26:42'),('8c6153c005f2536139b00bbc8c281a92f34406a7d25e5f00344c551fc4fc62ff610e29bc333345ed','1aa0acd80bef9aa0714874585d49b8296a3be2d2690d7f6c7d57452a380f26520d5f47c43089494a',0,'2024-09-12 13:36:56'),('8c85d5b97a245dd3e8b1f951cae1e6c1688692dc337a34a714002e5a87b6f1aba3d1358c93e51ff7','880ba5c6d4a612112847b7edb69535e41c0ca6be436028df6b045f8d7166cca1e4db7acceeb86fdd',0,'2024-05-29 17:10:40'),('8c8984ff4b9b2ab2932f2b955582e61e3d59229c9e19300ecbaea4c4018c52568b0925bfad98cdbf','7c69d7400eea403e124d2dd69ad8495415e7a7251a98fe6b381bc79de7caf949fc330cb9582b5e99',0,'2024-02-22 19:12:36'),('8c9d91602a43c6b7b101a74c4d369b0ce13d2179fab7f0bf103da79ef42cab71cad12653dd7569c9','e59365a57d8286d4a681b59286b0c046fe94b4667aaab1fad7e04aeb2530db366919532905cc5a53',0,'2024-01-26 00:19:59'),('8cd1b10dab90fa498218b32b49d0b5e614155bf0c917ed42236dd9b8e5eaa3f8b84e197434ed82bb','09e3f72976760a0c7826efc788787d00ef7020da688b22494469fd17bda18e88cf11d6e4e44251f2',0,'2024-03-25 00:03:27'),('8cd5fd5d12cc069796e0f0f375861568de6af28e0806678060b4ff37530553cd4c6702a7b0ae1c71','5950f9b6cc2ea6efd95d393b409ee4d2b6c6731448a382d6a043ed268b9519a143933c0b208cf398',0,'2024-02-13 15:04:29'),('8ce7715d266cdd80f13f746635af89718d596592e7dce91e9f4f078dca9ef5c0a35890d75bf10343','0706488f166dd6b712d011ec6df5e89ff79eea1149b23ad88acccae31defff3946b8b1f60fdf30fd',0,'2024-06-07 17:49:29'),('8ceaa8ae46f2d8c24cfaf4d0bf47ff0936ea85c54a9dd25c716350fcbbb68ae6952202916130b7ae','a4d54c238688fd7d1d2ed94d336ea6dd3f2a350f0d6a9f7fbc2d88c67a90017bfa4d54f567927e76',0,'2024-02-02 16:30:06'),('8cf7677109e6ec5b564a815b1847be795f3bff2a6c0cd81abdf577f6a0d2d118422098660e37bbc9','c2ecf776bb5f2ce08be02bf8d271f9ffc886ab00b4046f797a8c5189d26c8379febc41af618284cc',0,'2024-03-17 16:57:17'),('8d07b20492faf784da5feb913c43c07d491edd7c92ff2180f742f3b7821fd4f74f67b4414dcabddd','6f46757781126d87387e8fd1bb31052626491945342c7d5d8717b203a9903e6a3fe3694ab3d59be6',0,'2024-02-06 07:23:21'),('8d1ea0370b660417d91e915e64ebf0335f5fcd3e33e4540d098076de4ee0724df55ee0d33bb96851','92582f86e030dc4305014a654e8f8195a8d435c11a14a647b0850701d0fafffdd6f9274d8f9e65f3',0,'2024-05-25 11:35:30'),('8d269d78ff1e50a608632b1c6c08edff7bccc6b6e1587cc918ca86fd791e162fdb372ff8559afb4c','b2c205a6998bccfb0881757f18901839e4aa3fb180a1fcb0af6de8d3dc03cc438c52350f5ff42fc0',0,'2024-05-03 19:54:59'),('8d45349bfb336c0b8ae8ba94fd01c9c5fe41cc29cf4ca173f7272f611304697cd759bf33129cad76','91bcb7dc37f3ebf75cdb0f1dee11b3ce56dd738b974f56882633d8c7c4835dd62d45130b33b10b1f',0,'2024-06-11 10:02:09'),('8d53ef21aeef7053bf236e0f0da9d82d7da88b5e2cfbff93bf724f52798ddffabba774054f30068b','4d3957d98de31c0cfbb77c19f42abb1c86e645543aec858b2815fc3eba75420d7382f3b8ebfdb88f',0,'2024-01-25 07:11:25'),('8d6d940d973f472ada55a25bbf1dc61ee8f357fa1d3a87a2d4de25c7bb5b897610fa67bbfb240aa0','7478f5caae211ebfbd05d8a7aa72cbaf0d9977a850031c38a2594e201925b4b8a8ed046f26044b1c',0,'2024-02-20 09:59:08'),('8d6e92c6f9833410a9d099933e97086748371e190297b0ee695fbb0e94c0287855044f235eb86b26','4aea637787e2f1eba7ddce59d39ad65bc34fa569555939050c8d2322a83f8c11f31efb0d64f70e36',0,'2024-01-25 16:33:01'),('8d756c7e8a2e1bbaf348b524bfaf1e39acfd29c419f663c364ff89d827593498e5036a72281e16ed','519e31497040bb3374992fa2786bea8c0e6fd1e90c812ff500f7aca1b3a43542c7727df8492e7f14',0,'2024-05-03 18:51:50'),('8d7ed810bbec4d8f13e0bb8eca38093aca3aaa2b1644a9187a52ae1134c87e356be31e7d327ebba7','6a1b3cfb9dcf9d721a6850255c41b2eb4ca3293e840827394f2390fbe1761e0b10c2be95d4c178db',0,'2024-08-15 13:19:41'),('8d80b64920f423603848da5a1dd894d726a6826a7a7d0c1eadf6edf1385087b952c1db992d826fa5','dbb946d45236ec8eb441660002f413f1db8b56e3ea9e2e061646527b914d6f3a1a8dabd6bfaf504e',0,'2024-01-26 16:22:40'),('8d82b0c5d04c03da0561a890dd63bee5cdbec3b8ea673118a318efb6abc2ac247a1867fe8bf66c8e','db366628794ba339120b6f38043c156d7c05358c1ea9b2b9157bd10b7f3fe2ef3c7fd5f5c717614f',0,'2024-09-12 12:25:38'),('8d89043ecd757022ff4f923c15f5ba30bab08c96857562ee4fe9de589194cc6907e0e5b3309d8759','48acaac2ea2a43d709a279c98983f59579768a3dff5efdd501ed764464e0065b6c33c42ac39ee8f4',0,'2024-03-27 15:09:02'),('8d9677225faf9f9f7375c2c2638b227a55a88188c3b8af7643fe44ddb4461c0f770319f0f13d09c4','a9906c96ec3814403e16bb8c1a4de5e79b7d936745fadeab22ae2d7e55be221dd9cbe273bfaf5dfc',0,'2024-09-15 15:15:52'),('8da4c9a090fc85b4f16d5a52b1cba49efba0357215a0183b16604a645c1a773b4a60f71d5737a436','2875f442477f4807119c8c250488d8f0df66b34250ca952606a2978d5b1f85dae136a1083ef4a942',0,'2024-05-15 15:04:07'),('8dc2eb6aa6e28d9d3ad4cd0f24f0eaa71a9e945abfba66d135951056fa8af828c6aaa9d7a79b2a92','bc470fb6c9cb9ab8f3db1f9b89db27a37d73c5c3563c9d8903fa9c19d038b570fe9c31b89e52ee0b',0,'2024-10-02 22:12:24'),('8dca2b4351cb08bade2b1d038e218ce26a8f2cac2e98b5311eb704681e93384b129e21315d0c602b','d550a4bca35831136b915f2947428279f17330e72265cee3f8f42609a4162fa08fc9879f5dbe1f34',0,'2024-02-10 13:03:48'),('8ddbcd91133eaf5d3ff5f8133d04a95436c9bde584112370a7ca287425d3ab707f61609d710f6f56','7032b4495301c5f67cf7dd663e3167419c13a495cf6132d687eb6f9bd3aef17ff3b5cda204a32cb0',0,'2024-04-20 12:35:57'),('8deaa1036fc725432ce6acf0be0051806046b3f764804e9d9353083fded66c67eeabe133c70d0de0','e45efb1f64cbb0bb3ac6887256d517968669cf76dfb75f6f6d92ea401591632942ca1206495fd49d',0,'2024-10-03 19:15:42'),('8dee4781c063849866c872bbc38e9e4fbfe2a16a65df11a5cc8c581f883540581b231d5ef08ce90e','ae59369dbc8f31615c842f86b9aa8f8d35b64e106f06124f479c953f1ef4cd5b21123bd76e539685',0,'2024-06-27 08:07:22'),('8df3eb85c208a7e7fb083a700ad221453d3f2d68b0ac6d0e4ec20f1ace4228681655a58a7c8a9e12','72aaa003ae8938475001ffe9f7333fbc6b147844228a204e0380bd49e8a709afa9e5a059dd66b872',0,'2024-01-25 11:54:38'),('8df979525ff18cb90c56c568168a362eb32c6ccc0026917194852c7ef45e1bc7d0dd15029eb029a3','430ca7951b5608034e70933a3a55e8caf44a9a59a5187853a8d3fc39e6288a9b8382e054ee048637',0,'2024-04-20 20:15:03'),('8e0a14763bd9f8f9ac038c8802c5c1685cc761d4690144d4aface17fbc3352db51d7c993427661ed','5389aa3e4a859b31966221d746128d0ba2af0d6652d29786bdedf900eb6b11db7ee0288b1e5fbd54',0,'2024-04-22 11:13:59'),('8e1907330ac18a496b0019afe78b6fa9143d63d47a6986e3fa4a509ebcd032a105b3a092640e24b3','57748855e6d682d706e52fc61f8c819b83fecd086e8f16cd3fb0004c403a425e200c8971d4104e61',0,'2024-04-04 10:26:33'),('8e2753774b483eca4b55dad627321461c6031fa90917d826cbbcc4e395ce8ec667d73a4ee29d2083','107e616d542fb62ce6dd920beb4bc1b39dad2d9bf1f8fe3e5d72f2e66ce70b9b327d6abddd3ce587',0,'2024-07-20 20:41:24'),('8e2c621861c0007206cce08fb0bdeea2d6c7621cb0ab886499b4a5a68017187a57ac590db32fa89f','ee3625adbbd95bd4d408b5e9786fb1b4539614fee1360f2ceb8b0807dcd2e7a382705c987a9bf94b',0,'2024-01-25 14:08:03'),('8e3ffc8875a4faa2d9252ba784bc271a7aa1c99469d309551939460b28ab856b47dfd40651f805d8','572415f3af36f7ad5f19375be39bf8467f977c3fb7246b4a5884b6bf7707e88f1c1cdff8b3df1c9a',0,'2024-06-13 10:04:32'),('8e441fd0169a2606852e79517c0f9ae36dec070847abc6629e80a895cd666836df7a7fc068950816','d3eb520800a0a6a4349d648f56c03b847aadc364c6e48068eaa5d07e808ddbb8c2f56cbc53734955',0,'2024-06-20 16:51:40'),('8e4ca3ca9f12a7921d3232e1c0eba93d2b0da09b7ce2a355104bc0b04e05f2da80dcc7fefc799265','d71b2c8589a103bc484b5e873a4d1d4b47a1a77b30eab71cea711316e8db526ab18fc6494241ace5',0,'2024-09-29 16:00:15'),('8e4d3006f0601130fb7f66263ba58e7ceb3e4b9b87dd26b59207edf6a6f86d1ee707a0ec57d46c8a','e607c4c0413ebd74c7bca2323d003fd783a51663a29b72bfd4b11e2b7052d6905c4b87525f054851',0,'2024-03-08 18:24:57'),('8e57a429f1bc176f48ef95f88b217b87766f904c91ed00431caf02cd8e9ffe01427262699d680ea5','784cff6287ba4fd54002611de1028e6ec93f6635a125c35f75cd5903722e55153e18fa85312629f1',0,'2024-10-08 07:44:54'),('8e5afa9fc0d1b26a2c723d12447c9011cc7147618747903896ec09428f0c3531872c509dce28225a','e490b447eb513566aacaeadbbca0e577beabb1ba479a7656d373756362709d7866ad8616f065c2ca',0,'2024-02-23 19:57:21'),('8e6314d79920c3f833500b99fc3a7ea553000c9b9e3c983f8bf6934da1fe8e5e80b2f184f72a2573','fbb7bf4c46e9099937ce70573eb00d7f5015796b407ac078522a12c9747c256b563a660e6f27494d',0,'2024-02-03 21:38:50'),('8e65db6a74745b98737e5d922cb9010af83ef7535ac22f509472a94be687133bf6a6a1cdfe90851f','14493c18e7ee36d2da9a293a66578188ca477c25708a86d9c30ce7147ef8b421c9d088a563813af8',0,'2024-04-21 08:58:48'),('8e748f33111cf27237b527bccb1fc89ab44d5f9e966e8a96fd4921b1f1d765bdc1bb80d3c9b057dd','261b1091231dc2aa4ddcf59121fafda40bdfc214e7fd74f9b8b9b9b252b5dbcf0bc0cb58af24c21b',0,'2024-07-22 10:44:42'),('8e7ebf9376d62a6427043f391d69d4d7428f8f79c2d078574129e8e6e31559fa6a0a0a5a7037fc82','b941da4d6506509e02d8917453cd7467dbb5af1cc454821491e5d8f8f1974ecd4031125feac5b1dd',0,'2024-02-23 18:09:21'),('8e8b31e4f1d97a79db0edee2cdbb9fa5ff71938ceaeb0b3d1087cd8495965bcd715fc67449f67c7b','b361de2b6ad47013d7618789b669c3b65f541a11be1fda2da368c78057212f1712a5f992440d398f',0,'2024-07-25 16:10:59'),('8e8c1369108fce82ab92de3b8441ae492d00449e675e1e425e24270e7a6cb9e560120fc14b09f8c2','90631180349604ec29f4ea2d6d0166581ced03149543d77ce1e2456d359e0c27a841d706f9d67968',0,'2024-06-15 13:17:55'),('8e95b5770ae40bd7dfbccbc2041787271ed2d1e459d29e25f9e9916fe0b3583efb8e7332fd9f46fc','da0419617ceee6c955bfaec827e08e48cb2c8b85151e0b5eaa26f8fcfd1edc5b22708616bb8fb04a',0,'2024-06-01 11:45:35'),('8e9623b8e65e08c32a5c359f1719313d7ff1fde79a690f67c3fe50369f6be52715dca578f83d5d8c','4159ee19bc60e93e95735454a52c029ddf807936ba590991b28ae7f29b543fe9e673f19279214b9a',0,'2024-01-26 08:30:31'),('8e9703a039bcd4d6e6725c86cfd3de2e7650c58f94c5237b26e99313191edf8d144070967ec834b9','2a41c1ec0216dd271d10ad3d6f3c8a1cb758191f180a7217222781a4c3b719a4c22483af230a040f',0,'2024-02-23 20:46:46'),('8ea80445ca4f5a0e511c6cbb789977f81b2ab43eed1f40eec069655944127a7324d7fcfcbcf80d60','c7f8d18fd46a6a924c69499d46a0d3e6b80f640d5198c0a3ec86e60c9cdfab56dcbc34edeeeaa5fe',0,'2024-02-24 08:49:38'),('8eafbf3aaae14d2bb7e396acfcd7da1da79fde5b2b0ddae88ad1d3d992d8a348844dc8eba9306390','722e2ec8d9d2cc3d78e61e21f9ed1942145fa2c06655f8c6b6da6a6040dffe1f52163888561c40be',0,'2024-07-13 18:19:08'),('8ef54c432b41058bc6282d0f0bc31e0557e6a1be573ad40b68eb620c443e8e55129173441ad16f3c','ec708711f2ad4fcf93260bb93926054cf94f79b1e451688f21db130442647b1dd7d4f3619c8f3bb8',0,'2024-05-11 07:23:22'),('8f0911b3207c3d92a1add452919ada0717677da4989538e4951ebb94d55786cfb9d47d14497b9dd0','6ff8c371a7d520b035d155e255505979d5ce457d87e77b92db4f91ac41ce399a60475ae59674d3bf',0,'2024-02-24 15:04:11'),('8f1e77e239e36c31773873fc7e31297971b54049ad64546b1dfba1bd7de906264e9d43b0d9944ded','7ebca283dc4933b75c06b6bfbd10303934ca98a89ba59d6de9a2c7d01bfef7f2086aa53a6b4610ff',0,'2024-02-05 01:06:34'),('8f5294becf4bb13de01889f2df3aa9fe3fe16e572f7fb3ba91d66fb76efde156d7d6d5580eeecdf6','afcc1695ba7cb4d82cf18208ba327981370370a4cdeca95a7ed099d02e3ac344cb39f841d96c1fb2',0,'2024-01-25 16:34:10'),('8f5cb5e7953a0b99f599ab5c7a917a159bd3362838d971425bc875fb20b6e92afb3834bae34489aa','fafeb7a338fff42379d880dde218973229a17acd8cb625b7f2be0b875b9eafbdf66332b168cda0c5',0,'2024-01-28 18:10:35'),('8f62f89e5fdcff9c479afda872966b853e96ed2242c4fbe8ae013def33ed89f4d8b2c75f3fb7452f','391a7546a9c382f192afd0f20772f46981a1c27add14065ea45ed90db88e694a973def05c63d0631',0,'2024-08-03 00:35:34'),('8f6572dce346857443533f4d7d554953e4cec9d618467454ba1d2c36eef045c8191a7c5337bdc1df','f42d1b598a1abc5bf092d23fb6b1bd07ae0272aa3c20b52bd3b1bd0bf454c7ce57f393d66803b1f3',0,'2024-04-05 08:38:58'),('8f6637402354f3eb83cb45370174c8183eb33017dec329c1d87e52aeec0da3cd3d88449731309aaf','30bfeeca0de4c609f702c2838fd0de75ac11727dcbe73fc323fa2ce1ac8add1698c96da29ed2ae30',0,'2024-06-13 22:24:05'),('8f6999b608c1afb1281461a154d49aa1e1e593cc53a9b6293b16ddd2e58dd2ce1c6a31c76e342dbc','dd6d523096459f89fd03f5cf6c7bc04de5a1744682a5492997ebc4ea6967f41f756fe67591400157',0,'2024-03-12 12:33:17'),('8f8cf9206de907ae8142d9d66364f4e5fedcd561e32d77b0a8eaaaaad0db283ff1bdd4eb0afc65e5','39f36f9c6502ea13a46c62227d9b0b9563904a68c74678fdf5ffe14f0bd1ced2356479cd53ce79f4',0,'2024-09-25 08:04:02'),('8f9c6ecfcb108e3ba1d28567e3805843e150c49a351f2c1365a4b46aa365b264ba05898cc32f10d7','143690d62ba2752e734d1419d3a18f006d6bf5b15ea6d88f89dc5c996dce5430234432fce695f8dc',0,'2024-08-18 13:35:29'),('8fccf0e25178e7f2bfae6ffc692cf70ad745da9dee310d79e1791f08e8790b5a955ce496086e9f07','9a7467836572f1752b9fb1f63a3f408027c680cf9cc60b387800052e6f530167971b87daae6d6443',0,'2024-07-31 11:13:00'),('8fe1d73135dc0bef0c1ab54428b8d6945d8efb07d45637c618245d3ba20ce5ef6780d6e2ac99ed77','6c6435943a8db5ef4e1f9cb4e07b93aef3901f2cc9ffe79b54c24908d747d4a8ca8d668900cd2cad',0,'2024-07-06 21:42:53'),('902df68c3ee66a05d3c7fc7f23212f66fc139f39562d12cc9bcf96119f92747a2c316f4dbeaf16ee','b9565cb636a8a014b8e9f2148252b4a58acac440be55ccd811b6814c47d2f008b14e205b53f27cb8',0,'2024-02-19 10:19:06'),('90430f6354487e911ab3707d09c7cb584334e8a939d59fe4c16f4df302885517b9b9fc5c68636957','90f464b265ec1c9cc183c1bcc7a7aea97e447224f8ad13855aa64b413397b39cd6592a6bdf8c02de',0,'2024-09-23 08:45:18'),('90469f6178d0ba99ef594f57b776dd6fae645b402dd302cd41bfd48f7b18f6d63c8c7be3ed20a3ae','370a03f81d08192cfaa578a2813f6b14bc69710c1998b49d14dff92a13714b9ed01493cf085bb6cf',0,'2024-02-20 17:49:30'),('90929f150558e92ae595cc5c5e3240c4586f45956a07050e3cfab922891cb57255dfd8a84a4c6b9e','62c1f3c6d63c59ad0011e86f4ab9e9d7983045146ea148c573004f08b418c1d2f110aa33523388ea',0,'2024-08-26 17:37:14'),('90caf54d3557dd3ccfe64132281db83ff9e756aed285ac87ebd406c1de7c937a725f56981e2ebfb1','be148c1a69e3ada03eb7f659e37e1cac1f41c968e51b50c361258002e12127197d5fea2d9ea25c79',0,'2024-01-25 07:59:33'),('90d01e3ccf63a679d982a284e9c306effd2d7a2fbba04e2f285fa73d74bac97c70eca2fa3612eb17','e96628798706c155c67922034abd422a0603b5effe49c5a8c4205d49a5168933b1a294f0ad4d5920',0,'2024-05-14 09:13:50'),('90dad651944c1b0e60403ea527441824dda253cae1a1875083c627e7c6175504cdf3f0a9badaeab3','2b21f6bde0fd1067e1c49e49a5dc2e5a2ec55acf7ab26720dfac412774de4ce78e56607f2ada1698',0,'2024-02-24 17:49:33'),('90f95e18762d6f20a572fe61d36cf2e13bb786bbbc1218a06538d9179e5c084542458087f54017c6','07353c724f50bc19cc77d61b77cbca4182e7d1faab2e07ddfaeb51f3f232ce553e7d4e67652eb894',0,'2024-09-26 12:00:29'),('910d8d05e31508a4c40a3d7514fe12a1f1b09d718204f041ee4bee0530cb97cef9d413df54095e19','a53bf90ba6c61ffd55478d53a452c43bdafcce4c3f291fb8ac5c6c7fd40b2a15f2ff2523d65a0d7a',0,'2024-08-02 15:03:52'),('911b52871fdbb3d20191db6622ca29ab4def0b0d1a9b1a46d489ce4ef1d2b6e39e017b0973dfda03','8f5a88742b8c83369c28fa853998ce274452673699f07f1ae644ca945310cda0be4c19edbdba01cd',0,'2024-10-05 13:32:35'),('911ed37c5dce0eac2527a60a440d60ed1f496da6d7fd9e6521136f03434ea6d9b15afca92c647fce','09d3821c0d14f22de4072e8f60a23eb22777ac49a885b43dfa6d18b38cad353b4e7760cc10c557a6',0,'2024-05-04 01:27:09'),('91345fdb6a639df543af4333ba95f5dc619382305f1c6c210f3279ecfb3cff64cb65dc9bdd5820f5','b9a82abc53609350a8e3716c35c7a153669c118d3b9f3d6cea97cfa8eb928332937f172eb9b9595a',0,'2024-07-02 11:18:28'),('913a64382a530d11bf078c9dfc56c4f716c7b96357c1e5f2e05f98df4a71b11230a1e81f86189375','c819174d82cebc06f27ac104380d7da5cbb0f6c1db9ee83956ea2c725301bbf0dbd3514703178e92',0,'2024-07-27 14:08:25'),('913e7e17b73c875e2a17d07c8c5ccf229e973a31e14598b59fc055748d220c10249e6b394f523e4e','c787df3e47e0b8bbc1d9e5db0da67d4a6e43a5ad0856e8e75ba3c9a1a4b08924c4963439c6370d7e',0,'2024-01-25 19:47:47'),('9140b29d1cba0ed472b8f212023198235942453436e00148c3f9170774f64ee9449ffc1c631c7bca','811b5e8bd98da8c8448ec0183b670c1c8ad22c214731e3cc52a43eb9b781842e09b4d914d78c97be',0,'2024-06-27 13:02:59'),('914d441d1bbb3d42f706a659ca41acbc84306a7826d533a6ea40e21f96cbba2cda602df827bc5d02','01236a13eea170969e58cdb1e54479203ea67973a308cf65041b1908b885377bed707c487ce96936',0,'2024-08-28 23:18:13'),('914ec69c3de62c4f64d513a599a087b1f584ead444f29fce567c645c9a52c42de0b8b23c91d4b047','b8ba823ad83f666f4e07cddf895902b5d5d211f62a7f2d19de880ada59261ee0e9c364f788aecaf2',0,'2024-09-26 20:17:37'),('916aa34e92c569a6f1327544eac4304ed371a6016832c7a1c3aa90104eeafef25a2d61a565e375de','e7433d0e7b7a6d2052b5511e6574a44191034a03ef0c530d054c9116684d4717917170d74027a0f0',0,'2024-04-10 19:30:08'),('918129a00c0d9a604d4ea13555ae4969cb231ac9b934cc3fa0042614fdfc4fcaf252340477a5d133','59696f2d728d193d5e3d8cbceb1997747422f52f7bedfe9a78849a17fb8ae376494533503c069f22',0,'2024-03-18 13:23:53'),('91ac246b538e067cb1c5e16160880ffe838cfef51b33d197ff1d7c59566180c61966a462d12e5602','eb49034fc1d0adb2530561a1abd249843f12c13d6130cda2f1008d704ffbdbb00a030cd439736801',0,'2024-07-09 10:06:03'),('91b3782653b2d49351881feb7cce52df73e2d9926240689a2152270e4e07ddcd9f929164775142f3','1748bacc9fe594184525de5bb58389f1be30f8d6d50ecdaa8fb80e996fc8319cbe6305de279b3a8e',0,'2024-04-28 22:16:36'),('91c3684b49970b6cd86b1fa2589e6af24e974f34e7a9f552ffc0dd0166a2ba4e5860774c72a008cf','e1771a0ead39fd958fe95cfc742ed2e4ad9ef2ebf9fdd03ad083cdaa333f05e5cf105ff2fd89203e',0,'2024-05-27 12:16:39'),('91cc72eb24c26df3c5652e14c9a2c3e114c148534a60e4ab8d2cf1a41d940400bc3e7c8780cafc1c','b5882da9a233ca9e5d9445e6f927a8de8d40424e258c43782e70acea3a6b714ea6a271421562e48d',0,'2024-02-22 19:45:12'),('91ce7d7cb676accd70307fd5367cc7c7dc72a74777f1e61ea02bbf70ed8abdb8d7a2f5823bb5462c','eca2bb3c87bb6e7511d063b0f6e109692b3ccb44e08de58315bcad5cdd6256ba3ef7cce1224193a6',0,'2024-02-22 10:20:36'),('91d4ad98dbb62d2a2173adfdfe7973762e6d7d18997d1f967b22f286fc0008e9c563ad99ad17b03c','a83298a54f0400d91dd0cbe9bdc22f453596b6c7fc8a3052a211b791fa02270f15a03c8c5737281b',0,'2024-02-12 16:35:53'),('91d59cc17aa6ce73aee7de3fd04ead2e4a4ac9e092d4e85e2df334720ea7bac32ec5797daf1e35cb','43a77a7e244abbed0984d789f157d1a0821f19e1080dfff966d03173f4346a93cf2579fcf33263fb',0,'2024-04-28 09:44:48'),('91ee275b1d2d0a84340c22af26f237fd0b51382878783c08ccda853877c917684485200044b13069','f627fb5062069b76183fee2e45ef197407c679c5eb4ad6958756bf10f8b85ddbadb0bcb3b7a76ccc',0,'2024-02-08 12:33:19'),('92150e6a133b23c6e57083297ac5cd748531164fca98defe74eecfbae2796c2b1d8b12dacd1a59cb','adc7e3729e7b5afa35fe99d25d9cbf4a349aaa8c70e394776e489a43c548d5faf60bd4cce50ea317',0,'2024-04-14 08:26:59'),('924068c6eb7dbc25969f3d11fa684199cf973867bc71a2496b7fbc69df92267fa23b7d07cc7ddeb9','55ae03cb3867c943fffb37e26c6fe4b6240aa39ade8e22ff4aed2244bb067cbfda3a1631260482b0',0,'2024-04-25 17:13:59'),('9252d3def03a35e18c02dceefb0db9cbefe9809ed275428aa9fead3a2832db71ae1714b50b4f5208','1374e89fb9bfadba4cb71b3aebb6fa90407447a28f636b5c024b5861ca522094eab43c7a5bc2e51e',0,'2024-06-16 19:50:03'),('925650e626437a32ab77417b9b70be6bc7604d4c3c78c8b88e2eb67512e6559126af807562b9b6a9','8a58fc1f9d820efc4ca671281febea7fc18f9b1d49726c39f25d85f3dec7afe71e559ead072c2757',0,'2024-09-03 20:57:57'),('92623ba1deb9068fee52a96edcfaa5c83537bbf8878d558413cfce3c11243f3179f684ea6752bfd3','b0b428bca6748057bcad752cc55802364ec2a1532b75c2adb431cdded81118af6e1b54b72bc52d81',0,'2024-03-02 22:31:35'),('92896958d46f2e1c88536ccb8b098a78c4a871bc2e2cf9b141825a87b9babeb79aec309f985da141','ae60461f4b60eb0ebf4ed2769b16b44427e052e318bb13350d84be6b51a3420b840cef1e62b1f4ce',0,'2024-10-04 15:53:41'),('928f3eadc3cb509da0ccec658ee6539ef561d75c7d211046a34914ea2cbe2eeedd72d535f57f760d','eadd683903b8a8898a285a4eed77aa3593771fc9a2debcba5af6ad2df5ef1ea78f2afbb859f99575',0,'2024-01-26 19:29:51'),('92a4a62bbeb5adf601788c589f2e4fdc168e749b59c1b089c84127e1fb889e80d0f0901b59c6cc33','cff353338dcb08a19a904cc4ee4b38e586e94e76d53ec16d1089299379f1299e239c1e9ac16945d7',0,'2024-05-03 18:50:34'),('92a98564ab854fa690ad56e20cf1893b7223fdb3a99e30d34ba959333a86cc9a440e8df29d92e4ab','5f031987de6326b5fc904574561167839882bd39180ad31cb6ad831cb234fd96d1fcd697baf41066',0,'2024-04-18 12:47:24'),('92b8e2c90282f0b7398d1c12fbd5cfade52b98b12b715dcfd9bba62dbf6ded3314dd4d94e6f21056','81bdfd224d31c303aeb458613993e5b5ceccf7169bf70fbc4dca023640412453ddcbb1db564b80e4',0,'2024-01-26 14:51:28'),('92cd8efa9d30d2fbbddf7bc7ba36239a1cfa69b5206d4538e7c3d89682a2747caf32d82289f0ee46','1664ce0c581f1f8dffc021924c57e0cea38fea97e79328ae20a916060bbe86f3740157d303e1c992',0,'2024-09-26 22:03:19'),('92d8f4e716a59f90c3ce1bca56c02b50f98ac4c78b13a6c494fc71e1334eb64ee25ba820bbacbcd2','f72a99d2f41d585bf175ad2c8239bdebef6aef6e5bb3db9b50e6663b2f8ed916317c6298bb28e575',0,'2024-06-13 17:14:57'),('92da81f6446a702bd83bfb388a8956a843904dda7177ab24ea5588c43f8374aae083fc5634730a1f','c6199f26253b4ed9528992fe9564d0ce11434b5b576c400d54f20303347603b004421f04733e4caf',0,'2024-04-14 08:25:23'),('92ebb824afdbeee29011043faa0de03c61e3cdf4e3fef9d6a5caf1b80e1742027c4a960894314d57','df11fece701c3101617f2dafb2593535fad701192de862ab014933400a3eefcec61a5d92d45ede66',0,'2024-04-12 18:55:04'),('92f38d1ff90ef5b1bd5b0c9ce75c7450af5ab88c905e09754cf221f6385a3c04975df7c2262b9a4f','37ea3298727eec7f3f0ef55043a2f895787234730a1de9398af71e2d72a11bdc822a96bb3f7a4328',0,'2024-06-10 11:14:24'),('930c98d96cbc63b9d96dadd0a6090ccbbb4604f22dbb2c445b4a331083ef5e6f6193bbe0add9d94c','8cfdc93a749778681e7454d4406d545004a8bde056cece0b8fa21d45f96ccc1533df8261db63d3ae',0,'2024-07-07 08:53:27'),('93262d4f080ce421b8a7f903d4338bcfb9aa03a0b8e8dc803250b898e0c989ebc12ce114621e2f47','e42e5ad14e7c1ad8b560bc47076290026b49d769aafc5cce58944841c02d4a72c7e6d0de2a8c1d3a',0,'2024-07-09 18:02:02'),('932bc06bcedaf664f0b14278bdd16b2247cb18f8a20c9cdb43c9ac55a5f368d02b7a4234ed7a65b3','1e60fc8e76440304375a8aaeb76303874be1a8da7a5ee438866e08fda04221510d928b7cccacb999',0,'2024-01-26 20:31:50'),('932bd37c66e5ba76b82eb4afd84173a76f7899f3416523149bcff51cbc5bbde49a870c3e50025bdf','55a81d1b2e4fa64c39186b599bb9fa2ee99a900364bbfcc5056908aecb240bcaf4c305b287de2a3a',0,'2024-07-24 12:39:46'),('932f74d9a2846181aa70f29cbcca869e1548d925ef3955a2e9fdf302bb2e98ed08ee1d80bce11662','938c1162d40141368f87beb9ae4d9fc9b460327f1e64a586384557c76a1870890b5eec4fe087b649',0,'2024-07-27 17:49:24'),('933d6b6f4897f65a9198a8bba4508e0c9572eaad93826af363bdcf520186a479b0f02d9462371836','4f4a3a47b298c5b0b83aa0cb0fb90075456e1a5a4dd451014c85a3e19329a81323814f96e67bec1b',0,'2024-08-02 17:22:29'),('93473bbbb18d2e52339f909bad4c9b9c539af682a8aa3370937560aaed269bcb909a0edb00da73f6','22a504e004ffc331c5cb586985ccc1ff32d086973b8baa2c22c0fdb7c622c802ef090f406e762014',0,'2024-04-30 11:48:14'),('934ad788a090dcf998c46ae6d00b6a3c53134b63cc72bfebcebc5cfb0b7cb8ceaef23707bf92d9f1','330a773cb5a43679abdfcec90fdd66c0aa4308a14a48f2df951cc9c7e92492530f08b19af628523b',0,'2024-09-20 11:52:29'),('935cdc401fc5b13ae22aa913b66935a04763c18f98b31a07f29c0378a8235dc92a8b1b0cd21fcb7a','ae864711d75b3b751ac5ab017cb24ad174c3aa3770f11b0255517b9480f2985ee7b819a0793ec5ba',0,'2024-03-09 18:00:50'),('93a49ab9ef78a865470579e5e57fb18d53cb5c5ceed1100ad051aa815beeb9647ec0b20bb4ec05a2','cc171178df853bd11bb59745764dc129ed63fe868d55c6e6a7272d0243428be795fad4312cae7a46',0,'2024-06-08 08:52:53'),('93aeb84b94be0206461f3183e549f344679778c870b331098a9f62dd3f74cd20c16f497570bb9433','39dbe4c4265f188bc21cec7c217fff24248a6ec4837fcbf796930c3dc45d1e972c22e222cab682de',0,'2024-08-05 09:24:27'),('93b116ab31bdd5518c8376be0a3f9f9581328acf7f12279059adab0628bbea24aaad9ee9091e4989','9ef59e42414e72a75cc8eb8e890e0396d9c60d578bae1673d7e399547c4f1724742dd3bf6b6f024f',0,'2024-02-02 09:08:50'),('93b11773a8eee17072b11f2ed293bd29b256354de42d61d088735c64b13094f060b86b03c815cda8','ce39c473f9c8af146b503e7581f67f27a7adeb7f876af8beda28ff399196cc978d34ac28e9d518cf',0,'2024-03-29 14:31:06'),('93cbd3bedbaa951edfe818e37d6f73ea3b783a6435c25b3b4b9c00573580282523a13cb41084a616','74079827d6b558bea231f4816c772008b2fbd2b3dd5a710dd2a73cac6d60d78233148a29095e9f15',0,'2024-09-14 19:08:52'),('93e62d4db75828fe1649b78b6bbe87f28b578c7953e0cc1bcaaf3653c8ba9370146e7dc6b1fd5725','0f645e4ef33d87e7df0680f1e355525d8300ed6015537eb7153fd405af4e5aa525fb13a048602f2d',0,'2024-05-08 16:37:46'),('93e902605e71b74d0306012f2538f4d9f9a9e8f2b7c4ca7882931d6247f41be51fd55bfde9423b93','c7e397d2bcfbe1c0f6578a062b0b8489b7b389b7f6046b73b6744958b8aa4991e5fb46dbd7b7e528',0,'2024-04-10 13:55:53'),('93f67c00d4487528ba007d39599fe31fa5cc514506289bdbc1f1c47b1ded81fbb4f91c00a9eae678','7d961ac6b9849d47292f7271eebd5daae38c22f34c2fd2346933b3549540bcd1c5859069316ca7e5',0,'2024-01-28 08:01:39'),('9431c904365259fd8daa8be03197ff76fac001d6e9a649b7a6001b3822a2956f26f224293894bd34','acc98f1a012e8dd038de41474858482dfbc2300566680bcc204dfca3a3b9caa5aef6484b1e177769',0,'2024-05-11 16:00:29'),('944a472d4971ce3038064c19b47a5245e7e9ade00e0a10423f3e015c4d94d3073b8d0adfa780e6c7','4d87c0d62c3bec9f3015c27b2af707b6801d85739d8f4a70fb1ec7606f142991d61c866eed77eb5d',0,'2024-05-14 17:50:57'),('94688478dc7501dcb6df59012a7643ac05b19f99b665e091d194b17901a03c5d1f3ce46f490de38b','8659a4fc146c5795c9b4c8ef039688d849c6c7085f4b39033cee3113e31f2bda8a0781ab8487394c',0,'2024-03-04 14:37:54'),('946e152e17cdf206384c0cb0012b67be52900ca1497c2e0984dd4a183f35154f558ebb03ef275b58','1661c52a7de13972af23ccc7274e55c239d60256b686fa6eed5d06bd28b71225c21df287445d82ad',0,'2024-10-03 12:48:09'),('947f6fc072ae3954a6a64b08a8574d0b3acf9b667c2c86efd6d7ecbd49dc749c0116e4e45dd54a02','0829a3b17f502e6f3fe06522d1b5dcb4874f8beef816f4ed9b08bf00da252b59ec07287ebf3927c8',0,'2024-08-09 01:12:48'),('94865ff5685003f04de70f6ddece314b3cf5f39ee064938bc220676a7168b8bfc1d4510b9262d28b','c6d301258aa9d924e2443c63736304e7146a5bc772aad18087199d81e9a7c0cea2795df464210f1e',0,'2024-01-25 13:38:47'),('948a0019de66d1e4c8c1c81ee8dec8237d0cf537a1140cbb462bea66b55347aa74109e5b8dcfb1ac','2dd18eb2b08dc971972c10edfaf9c0f19d142d72bb38ce8fa41bf9f8439d93203ec250006c712060',0,'2024-07-13 09:44:57'),('94937455cab8a45dd7a1876c7c9d59c97a21f713bff25596d5b139496d506abecab2c2aecc89a72a','4080b852adaabe215b5e77000d80a10d050c1e238400943c445462c6c1b25ce44a89cbe42e67f694',0,'2024-01-25 09:09:25'),('949d40079aaa5fa31cdd392e40101fa51de210be74e325ea1a99ee8f5c31452909217639ba7c9e6d','07567daf605e8b619ada70bb760cff4b129e32c6339d4739519c392b60131de89672b631d9602149',0,'2024-02-21 09:21:54'),('94a657df7ded7a92f96d871b4d6f7e74fff4dd10c3fd9b79625e0cc0fcdc89e58fb0e966dd0da889','9a912f91937b237e22899107df738a74ecb4a42f5a0bda1e5d42b43d620589fba8f605495b658c8e',0,'2024-04-30 16:20:31'),('94aecbe33b6449b79637ade1048c50128760b871a4355ccaa0ca0a9d8a095132b2eb84a4a3c017ea','c6c239eb4adfb12167a7c4a9949a464cad8f943f1933f17750c60ec466e187e8e10ad06623267c54',0,'2024-07-15 14:53:31'),('94b0c50cedd1258f48ddc4009b494e8b93a07cdef36339773d0271fb9c96a932a1665e3b55015183','8e6bcbe5d7eaa47001c84e0ce8d7e5c2cd017c4c214b5dfe180edeadcbd013f47dda8f0602bded1b',0,'2024-07-28 22:07:18'),('94b7de70422274b24bb6453f5b290701387eb8c01aaa3ca050d49c7ca74d22869ec4616fac27193d','c9c5bf0dae3e7b494b2c4973c5a88c77cef4940f110a87a35160484824ce77559b7976914c362ad0',0,'2024-02-06 09:09:12'),('94be5af48fb0969fd7e0e5361bcb03bf8e50d84423ffac781a66df6e91dbbd9172533b49039ae636','f8bcab36ee9c44be010a604fd62247dfc09c6022a705b44a2d2488fbde280c31f43f5f1ba9574e57',0,'2024-02-26 09:52:05'),('94c43b230d7863a203728c45c113154513a92bc254453a928b202b4f1af0b3c35593651adc81d79e','3fca2b69455c3122895d39425ad59577eb9cb3418d868c8648ca9e7e5f2761d483c31271cb2ac8fb',0,'2024-04-27 18:58:44'),('94f136cab9ac39c3099aca3b1129b8bff922d257e60e889b29d6d543677112f694c5daa48f30eba4','f39d5ba26d46fcb531b6004f0d1375736d0340834d2826bc4061ea2e83385b7e61b1fe8bbd9ad29d',0,'2024-07-06 21:02:48'),('950a871b35262adeb296d7cda57c942ba2136e35915533ee711cd72836d081216cb284b913638465','5ec5d126fe253d76d516e8f4dec3ae9e5900f9e67507dd12bc096806eed1ac816c35431f1f1e3687',0,'2024-03-11 01:48:49'),('951f00b7ca3f2729ed3652724e95945a3a2f258411d3a96155371d0721c14743bc9884467d0fecec','1b3a361fa63d786db9ef739124338855366b48e5691845e0713ee12e37d39d481038aea1c2a4a34b',0,'2024-07-11 21:40:44'),('9529f94643a0d59fe843a773450bc3a53f25a1851482c7c1d8f0123d4b88fdd6ca6981b580485bc1','bd5a1cd998fc7f34c3ea57c32124496ef1819d7bd9e7a2ccd4637940b44c36825caae27a707a0bac',0,'2024-04-08 09:49:28'),('952c2227b974b89c05c8587c9d16c7100064eb895ead008b92f644bb7f6ac31e5651882c473e462e','541267d0c5275f30f057eb9b2a3f8c73d638386a6838450669b1150ceae50277a5686c1d85eab5ee',0,'2024-03-30 18:25:30'),('954940100906d04cdfc484c1775f870ff3cb352ccbb2e57777dc57bcb0e6ca014f78c2678ae6c67e','204c08ee561a595dc5ce658b32a85d4a47640d93eb13222f922449e129a543661eb393492ab2ddde',0,'2024-05-07 22:47:56'),('95592f11defc5f11a51fcbcd72941f964bf73bb0cb0186658fc59bc25352fa6f9a77c8903aaab87b','8a751ddd95920b61aa11da5b7707bd73ccf538287dce1c119ce2468e978e37ace4fc2df431c4c3e2',0,'2024-02-10 10:08:44'),('95771bfd43c4aaa7a3703d893ca07a83825473dbb58d4a30dd5458a6f752a5d9e1b1052d1e23e0d1','3eceb8b399504981929c0ff652451df8879054a65b865e636a37eb52e9800146267e12fb39a7c5d2',0,'2024-09-09 22:43:19'),('959515ab3567bffbd1e18820d36433691855b12712606ef5ba63d752f54d046990f02b13aed40168','e103711cc882791beabc7912d666bed205d3d07720bf324c34ab0542b671213aba3c929a5bfcc21f',0,'2024-02-22 14:16:04'),('9595f17efb478c7f63bfb110f7374d85f0968eb12d449d86c2dcac9c0e9167bad39fb0ae6d14d86b','fddca3001f15ca9b9f8ea9415b2972b06588a1f0dc474126b66f6db33f24026bb73bd16dc832b619',0,'2024-09-15 18:09:01'),('95a33fdb43d31da4526c09118d9d561031a6d376fd6bd2e5f63ec81038617036339f2392253d415d','46db1bd45c6528ceaee1ba7b4a5c256344e10dfa5bf74c649dbfe88c43d227c28fa9d1ec4bda3713',0,'2024-10-08 09:23:39'),('95c95ce6645e60d23609da5a548da0a01e4ea7629c4dbf43975fba49829ce9d3e94a41b495e66231','89c5288ad74a22560a537d9608be6cf5c1a36621cebeaee06d95f31b8313abd4db7a635da11c455e',0,'2024-02-23 15:13:06'),('95cba6e0a5b63f61dbd8c37c4a390021cf210ffbd726e9d3cc1fcc144384d32340f64417d6e34212','75ec5169706b8281c20d398c683ae109d2b94670ad460d56971c639e8c6a8b31cfad6c0f4a40f713',0,'2024-02-16 12:00:45'),('95ccc3235671197a7cb57519692044134d445be84b1304aa9d843a00ce2a449eadb87aec3589afb3','bf4c8019c1a42320a8a42bdebcf42bd46e54bc5d1038dae9ec147f7624677f80329b283de826e647',0,'2024-10-04 14:12:53'),('95cd67b2487aec49cc1f228c87ee80cee6f8ca011271e77e37ee96b45173585c2665d3de135077ed','117f2809c452abee892221f699e829f42329d03b08958624a12caf3f0893eda19c86f1141e1ce4b1',0,'2024-06-24 15:06:30'),('95d726adaaebd1a9642f6ad09d0b4952874ff05982ac17278576b30aa2564952f83fbae7502988ca','bac187ea56ac9d49a4c3a28e1a3779181baac6ae68b38ec5e7b45570a10031030900db18e76346e0',0,'2024-06-26 20:48:41'),('95e9d4a801cecaa3b5388763260b5dc4b0f8d40fdfb8300dc552b78da4851262589fc63d8fe883f0','1a07b026e35143d261a831cc2cf7bc7aabaa8d9b4771fe256fc2235347852eaa00505b0caf2dfb2d',0,'2024-02-22 10:40:51'),('95eaffdfde5e7bbb9600c18c7ec5446fe056eaebe9a62cb611b2aebff06b4abf2024b650ca2b1d05','7f0501e5e532ea06637dee02e0aae62766a78bb7b9c53aa9c87af24f8e5d7e10bb2d152dd9fbed0b',0,'2024-09-27 20:07:15'),('960b63dd0fe3cabd97c84602daf469807634aec51b844fa597b099db064621a63d84da93ec8d0178','6529a56ca515390ce906be18ef4fd69976eeffbf30465455c061177fe34385fc6542785e080c3d52',0,'2024-09-08 22:49:35'),('961a3d40ba83872b7546c4a74bbcff61a397cfcf0b51d7f03e58751b30f99440059489839b80f3d5','2738064ffdd4c6413e4560425845805fdb294ff38e7a19603eef056f8c564684f984d5b54442c2fc',0,'2024-09-05 16:56:57'),('961bf6fb7bc7a2ffa5d26f649a1ee1e626b47ae23731610ded312cc32c5e5909e6e739ea62ea29af','dfe756c628ce94a2e273a2bf500c5f1e7edd1632b47c2691c7e6e0b3ad04bbe2e422ed01b589c956',0,'2024-07-08 11:15:26'),('961c40d1f6852713ec99943f7c4121065cfd43e5617e0f88da89e853e107d77c91d843863a69b08f','2c921f166ddd6254ebf375368e36b13541d572097073a59ec58e06352b8ee6cbe07e0ded1c686f85',0,'2024-03-02 11:19:53'),('9629fd0bfb2f334269d9b6afedb627f44864ced20ffaae3a9758f3b60292365ceb716e7e3465d2cb','dfd98ec27f380be22c0fda5b46ee9d39cedee0801175953dedf0d17c6f6be704d8711c3e403739bb',0,'2024-10-06 22:05:41'),('962f974c6c43166603daaa95211e97d00513afc09e9300629b78283021918d6d6cc04977841afeaf','3b91ffd71569c27574b2ec70f6301c43672afaea48baafdd54dc30ef6413e5882679424e1b8e993f',0,'2024-05-23 17:45:34'),('963451eafd429b23da12f9186630ac82808f28ab6bc8d45de09aa7e3eae18dcbed0cf19e192d40a3','948544abba718990dc2b3dba43c4d422f2c11e96e2c3cfe798b3e05257e09ee035344625f71835b5',0,'2024-09-04 09:59:32'),('9634e83a443aba0309e5beb093fce500f928156ec4ba3c36cedc0c70f1dca5d338d4731c9440273b','98ffd3ba8c5940b688486f3736458766117a0789060b776af421e3da153c3e251f35600e126c81e2',0,'2024-07-25 17:20:27'),('9637cf4cd78be81ce7d4241dd26099e2b93a20e9dbbfdf46f70d4c9e9d144bd66afc051c4ba91fcf','1884a6130951d608069e098fd52a010ea6bd716395ea93974c243b54e8cc68d65189a39bc86b7168',0,'2024-08-25 10:08:52'),('964220d8e5838f0f389f89876da842ed44466c268637655857b32bb4f836181fcae2b13d1b2a1db5','7456e7ed902a1c507d30d362f6806a25cc0b285a945246c3bd54ec59eba404413f608858e58ebaf8',0,'2024-07-03 11:02:26'),('9642964ab748edcdf1a10f26cc06c3170882f7e11d58d84bc4dc183781e820a1de9ed5a605a9952a','e5eb0995eafac9df788c3e3372e608c92c1350d5e40943e9faa73a7d856de1cac070a9c411a044a7',0,'2024-03-02 07:00:18'),('9648c6616edf4f798a47763f2839ae70cd8915e62ad14b1e0a1d24fd71c7fab8e3dd2032ad651173','349757ec579f1531e7cc3e6455081d8122d4da8c8b009fe99d9ca1db73541e35ccc70896f7c5da55',0,'2024-05-08 21:31:14'),('965819c08bf28fd93e78e3345f013d3ee5b88e510100beb25489585e243f849c25fa3ed30c76f3b1','d6f8a4839ff5a19af1cf2761359432a4648111043c9ac73a88427ba5161c89fd11fad70cb725364a',0,'2024-09-09 21:52:27'),('966562fca278a948adf4f9d2217f7dbc43211a009c9f621b4d55f7eff8c156fe728844ddc3117d29','db6cc8fcc00486b7702405ea3874d48888f4cf6c658b2cea2c0ba675d9ec5f2e64171232ef324704',0,'2024-08-10 22:24:42'),('9669c3f94988e8ed8c99033a029fc1800e531485ff5b04823e5d5f84f09ce9ecb1e4b79c4439f8db','6630a000545db7b6ef0886650b7b3161b26273bac84befd14f0bdcce873b8dab5f3a12b3e6d769fd',0,'2024-03-18 21:39:09'),('968328200ceb44d99d1a1a89f4a66c2cb7c4c9f8cdcbc32ab7f3952333508e0267028d352bf1fb67','b3bba903abc3ab00e0430d9c037d5a42800bee5dbf92174bcc2668fe07b5e5e7556c3f1a49bf8a43',0,'2024-07-18 22:53:09'),('968daedf5e89cbea7c35104f72151f3f47d396c4570ce42a1dec0d296056df1345cb428d69305ec0','a068a7c204f791f4f63a3f5ae4dcf85a07e059882f3437eb5975cb1d8ff1fef6dca64a70524676df',0,'2024-05-24 13:39:47'),('968fbd875bd6c0c8acbdef807ed1edf69cb10a1aa72e3baca29e5468ba92e37674e5b27202667fc3','9a671ba30cc0b5036dda74454995b0431f47ab04eea638cf58e39feba71fa6afcc1a3eec284a55bb',0,'2024-08-23 21:39:13'),('969335805c2990acea0d134d892b5f622dc1da64f483342ac032d4293409bcb25fab094c12b2ed5d','a906ad0bcb5daee682863ac4e70bb95096a2e5a2ca9cabeb40f2ec3b0f4df6956bf1217d0a7b52b5',0,'2024-07-01 17:44:38'),('96d3a3509e6566fbe315344730bc31fe8b85755d7bd62ad7c791635ec298ae2282e17ad72ebe04a7','fd1b91f37a563599ed1753234ce02040c9a97ba2813391ca7f826a0cf669623fe078f1f5374e25c3',0,'2024-08-14 13:25:57'),('96e158733b1f9252205535b5aaaf3628a7697ba2684943ee194fcda25e3c404aec90fde6f108a848','6048a10105276d71052c51174b4751f82c8f8c2451229f77d2e9993042b483967fb6c5606e86ff1c',0,'2024-09-14 13:19:29'),('96e299a1d17a2abd2802acb9b049f2d823d5b76af86df9ffa33dda0c557946cd0c301b497f021abe','669ccba46cd5134f293b61be193dc4e1690e9b9706dec8fd1ad24fa4ab333d137f07c3d6f791f5cb',0,'2024-01-25 13:12:34'),('96eaa4071c77ba67b3d3eb869d34590f067efec42d0cf6319db202af5270c7968dc86aaa76deea98','ebde4c4791e78e28145c5f8bd5ec8d2232d24dcde30bf82eb159c913dc553efe7f9534dcaaaa9541',0,'2024-09-30 10:22:15'),('96fad0f329eceb03d9cd49602fcd68ecb13ce5b15bbc02788b519060995d85a5297dc7c79a4aedce','05b5c73d193138e0ec61f9bfdb98a15c7cb1726cf8028a580e4c46384fcb14601f839e382313c1dd',0,'2024-01-25 12:18:56'),('97088969e273b6a2aad3eb09c1e07e3fb165b81111b2eb7dcbcd3f45e3c4f75794da242cf246ed3d','493b0fe5d83140690c84645431e55122067aea9c6a138f1a0d1029130d3c32ac4640af9c838b1641',0,'2024-05-08 15:55:20'),('970abdafd3ad841f575e395fa737320906eaed7fef7781aa72714ef3b28e66505c49c302b50659ee','0db31967e64d7c86410a09e18052d5c09f3f86b4098bc7ccd86ad73734696a88892a1091f8a612a8',0,'2024-09-08 18:21:57'),('971d06811c25fa2ddc3f5234a8fc0c416b6f738e79f29d5b216a14bc3934f467601246fb898e1e1b','3f628f5c3eebe5a0fd879595202864af0a21092df8ac83d47cb7edb7c0a21af97460d58c2c4c07c9',0,'2024-05-02 12:17:30'),('971d8b9d1002a0492e120349c46cb88c54849ffe1fac85499a78abbe0745671a8d1d0ab64d173df0','c203559e27ac739d22e2afcba0b19ea45f4810d0e0d6eda6e3f1187c397fd3b22fbdb3cd58582476',0,'2024-05-24 19:31:36'),('9734443b920aa70f02b717cb896b339b38bacee7f702e17a8917d663ab5a879acbf81281deb4e57e','a6667e2805c19f8ed8f9aa15908e30a8388e69babfd53a5e28b6a979939a8474b3c22cec73907200',0,'2024-01-29 16:12:02'),('9735da712867bf04ef857924d66e25e84ddc22c27825acaad584415f36081d1434b856f6bd3dd961','4aa0fc770fb4bc948ff6e2cfe32e68191e8bde0be56b688ce4d0f182781667772412066c14ab97e4',0,'2024-02-21 08:17:54'),('9740b90d2b3a5f5c813a138d612e81187e54e14c4035354329dafcbb08f776dbad952323c5afbc34','1cadb6c72c998649bdc3dcc701dede5d36fa9b80235f3d10a224ab9b080abc55bc2212ebe3e1f7ad',0,'2024-09-29 05:41:18'),('9774f246ace1377e728dd713f907a465c4de2cd1974c5073bbc83485ad5b28768b143904800344e7','ccbef9503269d6f0f84ac7f811ce119c12754e672402b5767fd4fc3363298aef5821a8d0896fca1a',0,'2024-06-25 18:32:20'),('97a4cbc456b258c0d920a8ff50cc4d4ed203c0b6783d2fdf0be95384eca4655ec8f111851e2ccea7','f84f698dbd51c653a5653a54dfc65a5a07cb204958d8a2e6812dc06ad743f630d0c422c0c02b4f2c',0,'2024-09-02 19:57:05'),('97a67a6fd43d0812bfc83de60ef7a21b1aebf8227fcd65f4b879f6c7b0d44bbfd50fb11555ff9b4c','695c0bcc6256f2d55ee4919d54a2c526726ab2f2ca52fb55ddfddd699ff74cbc320fb26a0fb7dc74',0,'2024-05-15 17:53:34'),('97b567c031e95aa2d13383ab42fb95382cd2c773a7cd888669f3cecf1549daaae6075205417d41a4','b626fad62d4b75bd22f80575211e9306a9abf8e6d8cefbfdfc41b39ba96e0c65804e02a9312423d5',0,'2024-06-01 15:02:40'),('97b7b34645be6df5157a018c59a9f6f045a636397ee2c8f16e76cfe162c103d8741f0925bc4a12d3','a3d8e8429af9b5bbed0e3abcff0df7ede2c390503a7529893619faaba48f3f9be8f42e06ed42072b',0,'2024-01-26 15:04:25'),('97c2405b448eb0c54b164866acfa5e6a0980265fc0567a4177815ad0ba37e59857cf2b2b89cd16d0','8520b024eacd03e90b2d8967e391f26d68d65fadbef8c9a65c9473fe3b29eabccfc70c2f11987c49',0,'2024-02-22 19:17:41'),('97cb025700f3e797259452b4c6fedf5393d9f2da4dd416967747b6f9c733774cae91d78c5203f704','bc534a6aca21c4595c0966cf405107c1440f033a5f320cf6dd3780ead1b5b45dc89ade8829f3494c',0,'2024-01-31 14:09:58'),('97ddb58ad50dd44b5cbad662373f762ff2019527242ac9a751691af4ea7a39b4a869e68f192236ce','200abf4402334a119e35f5eddf57abc6b10e1d4fd774ab34e25f06cea6ace0b8a05112678f7317e2',0,'2024-07-02 23:39:11'),('97e088deabfa91717a98b4b48f5c8ac487d137ee62af9f55aac1621671960c306e3ee287cc9006c8','864b7cfbb2aa95ee7092dfa7c94e97f4ff224193c5f7f6b3b89e98d7f3d5a84e203058c67c648667',0,'2024-08-26 16:04:12'),('97f62cc72649a779f304a8353ed5be0cd258394e711e75331a8add4b9f64c9c42f9ab00e6d9a355d','e3b97bf857ab4290a61fcf646a37e2a01d75181bcd192714d93ad02a294f56876013e4843f285fc7',0,'2024-03-28 10:03:29'),('97fd0550d85ccc68257e9da084c5be3849a8232eb90b4c9e239bf6ebb22b61a774a6c241e5073442','a578f7195e4352fb9565ee432c215d5451c456a5309e7b66f5c265d6eb16f47287d70d0c6e00a2a2',0,'2024-06-21 14:28:31'),('9809ec06006727bd5b0ec804738c61fb70bc8d51fb659f2df13588fddb3096c5dede06ab8e68b10b','30d4b851ccbb463454138fb50329cedab213af5dab1e1e8cb3f09940190e6d076ae59c0963813b87',0,'2024-09-26 21:42:57'),('98126a3bae7d3f42a880ddee435eeb001cdad1fe18357d28f0110c5dd8a3d2ca00262d85a1718708','2eb5e8b189a52136db0a26983ad125e39338227b1bb978c96e71d140e16c625b9ef33d3b98699f05',0,'2024-07-04 11:52:37'),('9822114844c69a6eb8ea5f3b73d837fdd706b9acebd5172681bce01ad80e210f52c98d2919022df5','7c5eb7cf1246b066d6775a0c637b0d17a371845d1b633311f729e544a2c270e321e4016038590001',0,'2024-04-26 16:05:15'),('9824b879f084ea58e78436685a7ac23de6b487ac906ca303b4b4b762619304222b602a19d4b0a010','c1320b7f16b6197b6a196e181b8731a94414a922daf78d92cc49ef3eea259996689de8ebd6887a0d',0,'2024-09-26 13:56:39'),('982550d2b17d9581dd8112cea4ebba5273cbc5cd5c6a3a63744db23db9e7d81c82fb5c97d9c3f4ad','cef64f530f801ef133e9ca1bab47db95f12e5ba5eb08e1eb54c65754b4dcff75e865bfc6d1b7fd0b',0,'2024-02-21 19:23:09'),('983338fb01d57043636b84dac6408ce6abcfb33ef0b3bbccee7406f9303bf55591dcd4438d23890d','25e37d730b98a4bea9d2cc13e56918d93187c53af38522492737997954b40a290d62cb151b88b547',0,'2024-01-25 11:09:52'),('984408f2b0b8bce076c731df85bd1edbb2cbb56c3ea96dda8cd55eaac6fe3f264c836f22b1d65c8e','4e1ce1d21dac792cb41a831a4f5f78df6822d7b715fba4c54f28140816171e45b32ca1688426379b',0,'2024-04-22 16:47:22'),('9864d4c2c39c85c22b49084fe962f0b6488824598574d4f6d8705b47f91c88cd792d0486fad7c17d','f67be7335762d2d8839044fecd97c0fd4c5717b20da5c848b49b947eafd4d35b948917aae4259e7f',0,'2024-07-12 15:59:03'),('989636ba5fb82619d5fae9dfeee3a15b935c0545995ab40ac2cb00de607d941269bb5e56236e71eb','18aaf74650be7696a12048a7a172332733129a7f9dda622b6f69420e2568b815738b8a42ccc43dd7',0,'2024-10-04 18:39:03'),('98974e99a22e0a3b1443005db00f15583db94edba93dfc89f3b3a93825806ffd74e2b3185715ac40','33689154c741d58606da8cb348c131010981bf44637535bbc626b357ad3485643b2025fb705f11e8',0,'2024-04-22 13:27:03'),('989b9687566a75f6148f61747e96bb9b3be777bfdaadf6de41692627fe3e7f1b77ebc18f85152e87','c0b2cf79e418812bdd0c91848637513ef425c1c1849dcb427fbf3c5d3b5f2d15e0db485e05382198',0,'2024-01-27 10:34:50'),('98af6b950274f44e1c8242c66caf57d2d66a837ba9eab3d5e0c3767f86efb3fcbcfb0630181124ac','3d5f08ed2e364b3f62cfd4fa91b1a5c55a17f9c47c093b77fb0490a8ab1f4210afd629276d215c75',0,'2024-07-31 16:16:47'),('98bb08915e74cd9690fd098a32e1966599d1eff8ee58c90b3e6d078057a2c2a7b965bef84fd53e61','8bbd9034cc24b19fadbce687b29f36ae0584a0ef03a7e521614b5a1ad864339eb83e41ee25004799',0,'2024-05-03 19:34:55'),('98f195d24133cbce43ec830415a32e971e33768ee6d00d24ec908acacb327056c696081f0cae8d6a','e415058071a84c9a0b293710330b6c7bd275eb8ae912c1b1f40666ba529ae12d31aa0efd0078bd48',0,'2024-07-12 20:55:46'),('9906192c63a1d530f58a75f9e7c6a078aed4a6f3b80035deffbef188a5f90b1ba2dc8274c8d4e611','b6b8ef18d516934bf5ee7c5bc0f5ce6e2a4c4ddc3b71dafd997bc480591f07de587663b44aefcc52',0,'2024-05-31 14:05:24'),('991979b97c542cdd50397f2fc8694e073f4ecdd0374f8452d40dcc278b800b8d19ed45f0548ffed1','577f21276920cd483f386e07cd1a17878264d60eb967d405e37db49dbc99f32dfd29fc97dc39d9fc',0,'2024-04-03 12:14:41'),('99446625c66d4bbf54c4258ca5bdfec5e4c95fedc55278d239636f08cb065d8dc66fe712133bdd90','85af92e614d91854aea7b8e262220d3ff2e0f835503504e22f8746905b4eca963d1b41c8c55680e8',0,'2024-03-07 14:36:26'),('99527d9d71a9cc1878bc8b9de859604985a0b7d117c31c6da235b56341e0446445e77b83a4eb79f8','586b3f9d8c72e9577e3324fcea5bc74d739dfe838916f5861cc979a7d06deeaa62a9961c94a52e02',0,'2024-04-20 06:42:38'),('9971ad5feccbd4bcdbabf8317976753a441ae02be89a34f8fd4e11654601b367314a9c81c0e5c51e','d6c0bb693e8d7479b30907d1e7703e4e29c3f137d7fc0c814ee7a6f3b09be5ba63514775c399d46c',0,'2024-09-11 20:40:46'),('99965426d0835411d63f628c3130f236cad1bbcc42f6808b6c4d6914ff6145fc51eec01941783a10','bf018a8193aa9f359381716e874c48d803c16264317281af214c847b82e5f167ab22f89a7d2bc217',0,'2024-09-25 21:15:08'),('99a179205d4f2d13cb09efcdd0560a9fcf89a3fbc1af3fcfb21290a54057123f37a78ffe223fd6ba','cc2c9693ecb97ea099d4f8274eee483c0e43467fc70dd804252f6fced1b4930e72f076e201d86616',0,'2024-06-29 11:32:33'),('99a4cb5961a247c367fc4ed49843803a7b952ee0e2290f650da405f5f2bb6c739c0ae3ffab1708c1','88844513cf4d31f6ed3e92983c57c8e78060cf45febd1acea34b3f18e49c4c12b94c6259d78597d2',0,'2024-07-05 15:45:50'),('99b9665cfeceb6682db12840e4ea81bef1c6b8203c4461a5dd1ed5bde139e2a84a5b707654a9c7c8','aaa6bd301e6d59acc93750ca032fda4feea2f34787d95b8957028770d4b48242243fb869caf7a64e',0,'2024-10-05 09:50:21'),('99c4ea2fb2b21012c56b06049d86b0d45fc5ff49af7ad4bc1262fea669dbd46eb649607e5d22647a','1fb2e0b6a4d5ee1ce605d4d5600198bfc9b17d5f15bf4a342038d12eb95b5f6547036adeedea6cc7',0,'2024-03-05 11:35:34'),('99d21563ca46159c54dc1cdee51315d8bb8ba32fdc1ac0d3fde0d6db11954032c454acfaab0a2ea4','c984cd9781cad3a79da09aff61f6cbef1910a2b8bde369bce313c0eddc8588f489143da0cd128cf2',0,'2024-10-03 00:12:57'),('99d5f6186caecc0bd6b00d452c51d8ea00628f936805f81178cdd29e3e7bcd4b17959bc0905b8fde','f2fa09f39f06ec02bb86ace9fd7a69df72d248dd9c0c23e87bcf4c06ea58553e8f0e00f632439947',0,'2024-04-14 16:47:33'),('99e5bcf5dd245739bc8e3f37d1ef566d45a5ad753f24eeaad9882f772338345d08ace091423aaaeb','f89e5934f140656886705def524e4fb6d1cf7514216b63f643e36400856a67cc47a09bda83293a4d',0,'2024-01-25 12:06:54'),('99e61016cce6902b04e6d5a635fac3dccd67ae91a165bda9f1e9112465401f8ead720c8e5c86a4e6','6f8f6eda4ea049e88652154a016d1a2307b404e1c0926fd789c767267b56111cf62c21e441ac4d2d',0,'2024-02-11 13:10:11'),('99f3c432159d500502d3c2d0727b536510edcd12b0453061ac6790122b37373173d2461b820868d7','1c89e79cc88349718dfa262c167b0ddb966976623ef7c802d058cda7ce429f31510f3b7b0a8887a2',0,'2024-04-18 16:03:51'),('99ff4c1f539a6303a980752556c5c25c642311495a62b4e63b92ed0eda1c97055d12c6488806253d','7a2f91d1d2cc7a81901907f4d34774e0464a1788d2ad4560a02635453903debd09b067a326ea2374',0,'2024-10-02 12:22:06'),('9a0bacfdd05d6bb8fedcd7ff7a488b5d6fd66900ad48a4927e7f8d031509032528d1923c6ee27f72','b1f9b93a4d4fed0d0db307632e9733d7001ac30ca579ff6c8e94a8101eb02abf3baef6bd5aace29b',0,'2024-09-03 15:12:26'),('9a10d990565be148e14f3971c9347a0f507e6a28ddb3fd8379382dc1410bba7fdf009b925c2b2362','6c4dbaf75628124a312832c04871588251f934f130ebfde20c15f4ce02ab363db1e2feff9a0ee56d',0,'2024-01-26 13:54:37'),('9a24c33a6d2beddeaef5450a12b69f4263ab8d087bd0e31aff5d462c1db0da8bd724fc1d5a6f79b1','5186acbd34739b1267b843a2d85552e3ee1891faae12c4cbc6a1cf9ed9f995e7e7ce7d0f40ddf1ec',0,'2024-09-11 16:20:04'),('9a2eece7bc0aff5a2158b22515cf06e60eb3d7aa685837f0b8e96da1d445a915ce77bb1c1dadce38','9d146f871df082d1e08dea40ce724e889f6e2f16523c1ca292c538abf2ece4b191064c521cf671f3',0,'2024-01-28 13:42:48'),('9a318be054c559fa742be774ad7b5be23a263d03a5dd93e4a19f948e419114976358af535bc6b648','b1f5e39089f486956da2e01f917ab352f7b61571b385b02bc8929191fc323a6471b010d66191dd1b',0,'2024-08-16 17:39:44'),('9a31e4edbac2c252b4a9810821668d0994044d75988eb36d60a8e43fb4f6b9ca89d2846ec4adf95d','5f26d2816d1abc205d3601b389e10ec090ae38228addec287bad4c57f587b8d902c938d848d26fa6',0,'2024-05-31 20:14:26'),('9a3b844c663974c5d8e8d063ba177a6c2a39776623e997783a7d893aa56d9b224778cd934e370598','17136b523fc9aea3dbdcb5ad7cbabeb7bf891b7e7b8524fd696a1aaa81380033a2880f6b4fe35ee6',0,'2024-02-18 09:04:12'),('9a460e9e97ee6e1269c5c96475f903ed7fdca9b180c78baf6073e440ed50e8035b066eeff3edeac3','a1a7f0b005832cc305f191f270536f7d066b0d2c65e92adbd8b9348a31a1a88d47ee843cc356ee6a',0,'2024-07-04 20:33:28'),('9a690f5f1aa9ad2e35dc82a2eddff9a8e7a599e8b17bea2b92f5a609757e89c1092101bc9cbf57bd','be0090e74b0450b2c5d7111f2dc60e61c4d77f2bad441b09807bd51467b868e553f0e38a167e8766',0,'2024-06-28 07:56:28'),('9a74a106af1d270fdc0f9e4ac528148a46c311b869ddd6325f771ac364eac765f80c5827aa65de52','a7f86909ca8ab8044ab82f681a8c835186c11644961b05a723ecd3080d1d67b7d2abb13d51c9d0f0',0,'2024-08-08 17:18:20'),('9a80766f5894dda62954a83999832bf4f9c3b0c4ccec2c45f2610f51ed6223449b4bc5f556ca95a4','8c78a36a01bd46df0936546bd5720b6593981ef2b6a422852b62008a8963d875bd2c8b2093ae9bd5',0,'2024-09-15 09:51:58'),('9a8237eb1c417f1b9901d181ace0d33ee49c9d36d64950bd87e7ceb2f8224b26e4d0730c808823e8','1df5d0048a13216db5ceb702357b3f8ba4512fcd531339f40a36cabedfbf76b5e51d4a10b7ee0dd0',0,'2024-01-26 13:03:12'),('9a8a4d7a28d62de8e7369c8f1f8501ad3ee240a906b8cad8f2532a428716ac5674c22dc805a7c37d','e8ecf444874d83bb73096479a4b599162271268a4de5b9ecd924c44dc5d2a6b129569071c5e53ecf',0,'2024-02-05 16:56:41'),('9aae7b9f2c83ee063bad8df107c4c157e5d44f4d78864af8f76dceb33a863126a5f8903fdbb85274','14fec6b28ee50ca522cf982b4603f96be584d972fbfa129ca4a189883294db0ebbc668f75863b468',0,'2024-05-14 10:38:42'),('9aba538da4b170fb5bd07c549846a24a2abd4de39b5cf7be1f0ea9895f25a073cab7188ec14808e9','4b7d58af9e89720d62cd2f4b0d270dba72e6c1fed65d4a0070f09d23f45ccced94e4f89902013c38',0,'2024-08-21 12:27:59'),('9ad4474b36ed6ad9b104b64a31acd0c416303f074d167a592cea831b708d10e0fdc364c2643b43b8','1fd1101e5e370b9280ba1eecd9a4fa974fbd0ef016cbc1648269f4f3fb31bc40c75c5ffc16464774',0,'2024-07-23 15:56:48'),('9ad7dfa76ad460bc6e6f4e22ae75e07c36ffb4dc039ccab231fb58999d4c952ca5fff4f80701a0b2','a8b974f301c76a98aeab7ed13dce85354508f4295a1b2a579f1721301714314ce68d3511c42d5eb4',0,'2024-10-05 20:57:03'),('9aea55043389806d3aa27ab47df6a0a2510472e4cea9e130ef66d5534bd0a6cc3ff6d695cce316d5','5b1722f701e824928c5717db8c677189ded5c730522848a54c13046fe0cd6f261aa191634d8c4dd0',0,'2024-02-03 12:42:35'),('9b01b0164990f4a42d71f64c0d42517c0f018af2e7623173f5b00ccd88dd3ff7f8c65cb734c75262','1a1bd3bd93c7506f849e99a425570dc1035cef7a09ff071e972c31b27611ec885141f3b71ebea246',0,'2024-07-29 15:01:42'),('9b039ed2452ae4633ac919a7ffb9f86fa27958bfd1831b777218d500cbb14c4d82c00fe2b3eca757','c2190b3213e4a7ccc7a7a64f0f15455ce7d8769acb8eb1d4e2dee2f49cc26653dc50fca0ae0328f9',0,'2024-01-26 11:36:33'),('9b09f8697d005e8e3de528e362316454f6e9da02929725cbf36023b9c97fbefe8f4607d621beff03','d2cc9ec9977f69340bbb442e3c2c47c95500a57d115a85e3d6cb67d02c300ee19984dbaaefbf5ecc',0,'2024-08-04 13:46:03'),('9b0fb05dd175f439407653843610ee047a33851ed288e3c58c373749ed022465483471b77fcf776a','e59e016d0fc2ef2c0538618fd8393c254f0e3497ba4d211558148f4302b350e5d756a19ffae406a5',0,'2024-07-31 11:46:20'),('9b1b56415e84e1193d9d6dcd2e7d0b8322f143a10ac0b8975ac7b6312200017fa5e6190c1d5f1d60','68a5d538dfd1943bf5bf09290d278f0e78a04fee642d99e4452657eb575688a6e0530c27b3e6bf78',0,'2024-05-14 18:37:04'),('9b3dfd685ee0711d6e568bdf33e257cf106a9072e231bb54303a46bb9851fa6309162d5bebbe1a58','17ad30ea3ca9d8b37f492f1bc2fb8884945da449cbd514537c6f5793b6f0b2bf89fa4f60a7c77730',0,'2024-08-31 17:31:59'),('9b473e20b5a56de308d4eb7e1f7012a1499f60d5ea80de837cd7a272c5d1f941aac93ae4ac17b5e8','769eecfd20165a901e2393ef34aa82ada0aa48d408f51eed26248fbe568134531755ce5681337fd5',0,'2024-06-02 12:29:40'),('9b4e69f2312e20d30ba7a33a3e736df81958451f546d195e604ea5fb1eafef4f73d8e98755818327','2323c0461bce29bc89c281e403685ed9e1e869cd2855c1269f74044e6ac0f36f447cf806683ab4fe',0,'2024-01-26 11:38:12'),('9b69f78644295a67337e7f548e7c3b1c46196ae037283ff88d0b0b294685eac9d3593da271aa936f','109a5e1d4f450671761c19b15aa9fa567c593e312486b3f09706715b3660ffc03ab0075c251afbd2',0,'2024-01-24 23:44:30'),('9b6b190720f5abb3934a02572306d7867f75a38e2f9daa98d20b13775d01da585246d593fbe7f6f2','faaf53f0b570ecfc504ba3c7f677a764b20592c1c78729f182bdd39f01aa7b848bb01fb61cdc6b9f',0,'2024-07-30 17:29:13'),('9b75da371d738bb3a09dc6f0bbb1ac421d56f23dc046c29ede3805e6849087b11826dd9616688d9e','11d3e2ca31b1e3b1de3694d73e466d47abaa101481a46e009389ad22c10d9ddc4e7c5c2b1d7c13dc',0,'2024-05-18 15:07:56'),('9b89066494d0241ff8aecfea532596882843d5adb3488c5f0d8b998169c2a5aeeecfdd592cb89277','88bad50fab7ed290d142bd81edbc8ca9abdcc3be302f63fe5ceb3bfcb780653cb164be0f8ca2d255',0,'2024-04-16 14:15:18'),('9b8a8320f9f506fcb205d0dbe72de9cba803f4fd677e73eb66a70f1c27dd06f9c2870a617b194ca3','3502bc84b3d2de424e82ae7095c14d26690993ec0365928a26025263912570e315d3717bb9c316f5',0,'2024-06-05 13:54:36'),('9b9d690e8eb4cc3fb7e67998af1adce19533a5bb2a7db6039daa8a5fa97b45aacb36a78ff0ed1b89','dda48039340cbd7399c2a5ef6e358bfcb8171d06605ba48d5fdbdbb06fc12c83210fb424fcdb3451',0,'2024-01-27 09:43:27'),('9bb209ab1a5e63afa4123271007c480a3fc579cf68fd102f7d1875f754b401a5a4c5ab5e08a2f90f','18bb78d2a72bca34b1f4596ce498c9c8cfedd14e4eabec8edbf86198cf5a94743524589c844a99f3',0,'2024-02-17 10:05:05'),('9bbe0ada9809151ec527f0d7cd13e9f8f58484aede1ab3ef7c9866055776a68fa96a14e1bffa43a7','9895db7208d775a858ca14674e6b9beee0fe100c51a503b31a0e9b1d981952422591f183803ab4d8',0,'2024-06-18 19:28:58'),('9bc27528a090d943719df52ef44031ec1a6d41fcfcbfbc8bd4a12d29690e7c8ac321eca47e3258ba','97906e067bab42489a4e596ff3882a8e7000660764eba89d94c1e79f4db60852841293dcc1e80be8',0,'2024-10-06 15:25:37'),('9bc47cb03ac5861d78efeb95826ff8b79ce74baf815be63a901e7b8e5c356dda7b46ff079bba3d0b','9d7507636a40dcbe1633ecebe3399c3d4973bd93a091634c1bb2ba5847a4df822362577a5ef20400',0,'2024-04-27 18:16:25'),('9bd368140ed1b9dc27c1d56c92f13ed23bfd4e175438be7ecfa5b4e43a8401f34dbf2396c8794a11','a71c4c4e62300d74afed2a476a4dc8e112e960ab3e143b1fe69a95a99ab319664455ffe3afd48382',0,'2024-04-17 17:52:14'),('9be305890d3ad37320dd2ee34940034f6c38e3c633f2e12b13b8014ea27bcbf599d4289e770d0772','c15e08bf5c1109d348853629a2b6680725a9a5012a2cad0f6a137599ed803686fc2d274620e92246',0,'2024-10-03 10:50:28'),('9bfb094495071168bef82c258acba83c521cc7f422ea50428927dc7aa30c32d8a0964e68162d4c68','9d1aae383786177a80060122ec927cc6b04c2bbcdb464dc54aad1f2ab9f68388041b23b18e6d7a19',0,'2024-09-25 20:17:35'),('9c03010d763e0fa58cc9ea2d670e8caf8233ae9a38b870c7ec4554e8e2409651fc4b3487f778612e','25054496cd2f4e8dfd3bd440db8778b3e09e9ca57cfc702c4fc3335188e22d073cc2488b8b1936db',0,'2024-10-06 20:34:22'),('9c1db002727affb2c66be95f853d07d28561a40b1b5ead5993ba819c1811aa326292a820e67ae88a','2988b5a6f384b8f3b33211a1116f6834243cf710b080ec614a99b2fb432a53ce50578ae25fc283b8',0,'2024-01-25 09:41:06'),('9c23973b0029ade6cf92d931878030215fbb37f248b1bda766092124e0f21ad1ae65e2cd129ccd84','da8a034d6e1be47eaa03244baabbcd14148b7e6a185bbca18001b9d477e3b6b3a6e550fd692b4212',0,'2024-06-08 15:09:43'),('9c25eb8898c8582ec678a5c9de9c53ea767debf6eba87fcc5e0aa21856967fb49fc078502a720b72','5472f09ed13d825ff7e3bbd6c38bd5e54b378906fd4521ec9d6c1f7fcc617a8164561a35baedc360',0,'2024-02-20 17:32:03'),('9c27413f3699eb7d0029bae2c08d9b33aa55b45233c9e400d15cbf1e1b475fdee062bc64c22efaed','4e33becb2ec765a8c23f527fc605a56bdd6e8287a608805471cb594314bd7dcb6e6e76d55b5c2347',0,'2024-09-01 17:45:24'),('9c312c38c1f9a0d019edddfd9a09588cb132f92c41f5f732599a2490dec621930718c93bc2b11d55','3996603919cbc78900b9a38d6145ffe55ffaa234cfd865eda6a8e788971f44d51bda647396818cbb',0,'2024-07-16 11:04:14'),('9c421ec1854edccf09adb78a0c94ece02df82b3ace887f5527ccd8b202d62b02ccc603b82f78472d','846dc560aafd03c02a311c802f7ae2400d90d0d84bb03c9a25ba66de693e96492b01f0fcd5ce55d6',0,'2024-01-26 10:27:52'),('9c502d81978c4224b649f709cc48f6558553271a287d3185d891bbb8d17033db2fc117624fbab546','68c0c85befa76bb3ebd62456c706094e27d0d700bdbb5ad058705132d647445b4fd626ba1789f021',0,'2024-01-25 13:30:57'),('9c5418a63eab948bb5f213e43f8134875cf6716ab945060e7403a4b95c6ad7c6968114d59570718b','b061c2d4f608d1ca7a3c779782ae3fb2652d8d4510b4dfe11142c10b864195416e6b614d17199a6e',0,'2024-07-21 18:24:12'),('9c554c2a1bd954c55540696baec62dbc66e7dc1a155834554677fe50be6ed7450af5fad8ff64870e','322bda1369540a7c28a331c716c574cb7d8877e2fe21bbcb117a03532c47cfee4340ffcbc45d3e85',0,'2024-01-28 19:34:19'),('9c62c1631d547eafa2f4b127c6fbd2f030a6629cd110abee66e7272986c784cc54274ec2d5a41e48','08a0c9ab0a26e9f0efeac3aed0817d208097cdc2022664725f9bd56270b33ceb23fee0d16d936ed0',0,'2024-04-02 15:40:59'),('9c65c19d6f3e3801da01ae618b8356eed9442cfbe3243fc5b6b8e6350aa75fc5525a460aed485356','21120023fe5d33bb0ca2e0b1ee5306055bf6fa9b742911918f0316f9dce51670c55e9f25697f874d',0,'2024-01-25 09:15:36'),('9c65e365b88fcb89981cd1641e3988cf034a73a07c299e28349d1149bcba09b101260bdaeb64969a','fa853b761da4f036b45c3fd10e25b2ffdc008dda4f05b8045df3d9099a68960c17908a1af8d1775b',0,'2024-07-02 17:31:11'),('9c6972acc8acf8e72ae29b13dd50c6aecf6789c73977868710564be50fd5f515b49c356d24adec20','665a994605fd07828e502d8d555ec6d4f2301e53826e6296f91195d1691fffbc5d5cecea4b39ff5e',0,'2024-09-21 22:53:48'),('9c79406f019c562462566ee766ec4113e98825c86839b438cae600e8c940f3be92094807e9f8a55b','a8100a19731a84b3b434dd928ce76f01e9418debba256d7e01d04cd6d8a30e91376737962b116143',0,'2024-09-26 06:48:50'),('9c840f2af213452bdee515bed13b0011e0767cca3087ef096a1eedd3d3a44aade8d093835b2bdd74','92af59dcc774948d69cb02390f059c7145512b7de834bb1929d4e000b17cbf723c71fd813cb8f3ed',0,'2024-02-21 15:57:35'),('9c962946623850f13b647a004f65ae1b2ef1f5d2e305c4184f1ca954f72739188031868af0c8694d','b70a74a5d9b870bb76fa531133e5412de64728cd1db877385fce9903cbfef32ef3fa72699cdce9e4',0,'2024-02-06 20:43:34'),('9cadb365ed2e3da0e441ba35576fc71b5f7a3be2e23d398eb649ceef0567894d781dff90928ec49a','b82b1aec0bb85cbfaa1451316517bf95bf1cc7dfc1ba0542dbbab8bd7277dc3919565e4467027cf7',0,'2024-06-16 16:38:44'),('9cf6aa21ad8b3c037a73f8ac4c11e0a62e4032aae3ff14e3e5993eb6c42b0a45f48cfcbfa8d5e583','eb9b70449a319e390dc420f000ff3268fb4eae1b9390e5bbfc66ca3a08b1b12c3681b88bf2d4b502',0,'2024-07-30 11:00:59'),('9d004207f44532ab54d9f31ea36a9103dac941b6e23c619880d5b0559774548bad11b94371562891','da72788cc2a81d813dd37686e1259e081f3342730d2012d4dc266d6b75a017c4e6396a80c30be998',0,'2024-03-23 13:58:13'),('9d00836734d99f3a5b374af69f9f72a61cbdc7988640f0209b7e7a44a7130ab0696dcb0f9f7fca0f','22a81e9cdb63238d4353dfe2becd9ca4df569f5ec15837966dd2cb2190dd776cbd05bae20420de56',0,'2024-06-27 23:55:44'),('9d17dc1c4d2a30c60d4bf9dde026bb9d1ec4a76dcb61c6dfd9815b48f4ef420836ffaa44c07ff53f','04bf224ee51326262cbcf04cd5a0ce247ade06c7b30175f6d6adf397a1fc0b12320bb372fbf3e889',0,'2024-02-02 12:08:57'),('9d3d535249eb2cfac0eb0533a61989a822fc3bfdfeab222d4245cc9558325598d88c33ef6fc67d3c','93b37d7d6951cc90d8c5d185bcd5c2be1fb9b0c10321529d2140a8554785177fbfd1802e7eacd3bd',0,'2024-05-02 09:23:23'),('9d3d6665d8e69d4b5e3837e1d225e51deb04eff5838afa9cfddc65d4399a4b3ac7f600a909452108','055d34fbde521c9519fab60b9f057df2af2ee6cda3d4f43c60e24753e9c7879c52b1b96bbed467f5',0,'2024-05-14 16:32:34'),('9d44e4de9d193a6a3ba2d5adb9d0ca6e876812e083cb58edd2737fde8ee8e59f7c85901068a451cf','ea7d3181b2571cfbaaa06eaa74b645ce24a4451552731df8c192159820598c7b80ec3c3fdfd0de33',0,'2024-01-25 21:25:10'),('9d5903324c3370565b4cc0b8b1a0e4942a0ede1b5619237032a1ebea5c71c159712a4f160931a0cc','b856bcaecf78ebdff38740e0c31bd219e1ef2699b327543323d9df2f0a5cc3794b067dfee69bb426',0,'2024-02-20 21:11:42'),('9d696db4d30f713a6c73ff9a5eee13a23146c16dda14eae3297d4ab1f45fbe1b97ecbdeca9b8cf76','8da3c2cfa165107dd2e1ee5f5d67a6abacb37b95f5733bdb2895e5dde2a3ae6f05d1004a186124ac',0,'2024-08-24 08:09:50'),('9d7ac8900d3be53f942e5cf40065ee887a5b0d8bb5f6c7a1c40c57d58f5dc34006e7eb096b614339','c5224576b419c77d020bb047414e9695097f92f48a454041b46cb10d1f702c2333f22bab74b118f9',0,'2024-07-23 16:01:00'),('9d7ead0b3845b1995a4d47c44f2ac518cc2eced577c101ba8ba456dcda3b69ad900d11c43107326e','175b26e50f6de60a6bc6309e2f51b2b54a0b9efab433ee2498ff27023685d5ae519db62464f37a5e',0,'2024-09-22 13:58:10'),('9d8d2ab2ca4af27b59cecfb9ed6e59bd0f5e333d421d1ea127a6b348cf0a2d6ddb28194aa3cdc676','a4b23c01f735a2f735691240474fdeff9e22b292b884425b64a628f5dfe4170a9e6e1455b4eb0155',0,'2024-08-21 14:40:53'),('9dc1ed88763059d7454b12af621220dd2eebc7164704f1a06796231d872e69841e746d024c34df58','4b4f106fa054061f050963f68878dcd9372f7c0fe09e8ee10d7c8400b55d528ab7809b3a7fc439b8',0,'2024-02-19 16:10:52'),('9e0ab5152e0a69726bdb7186c4a22cc577004d3a9f68a2c0e4606f08db36c9cb9f143026a382453f','03fb6daea4cf28dbd92c4f7af02a635900cc393ce1234fd7bd36bc8e5aa337fd32ace66ff64c0cd6',0,'2024-10-05 18:39:20'),('9e10ebaeb02eadf6c3b05d10021cca707fd666e770ba527997f8ab80c76a0be50de0a3c30c1c67ab','bbc09c2c2694515c25eb17eaad577466b0a02c3522a6ff03ec0538f28c1719445ad8495422b9e5a7',0,'2024-09-15 18:08:10'),('9e2ce9327b14601407a438aab6dee00190838dcace1037aa936e3e009046a452897a4a91e8028941','6fdcfb76e39c09884f85ac3ba35ca627072c49137f2a17e037b820ec5bb2a88f3cc271af08ed468b',0,'2024-05-07 19:18:45'),('9e2f697d9a908bf6272da03e7676a3437426aaeee24b9688c38ddebd51101cd55c4bdfe7287b5b9c','889826a226d3c0986fa3b14e11ce851a1a063c6cfbb8546217e068377bc2d47e7b79c9bd5e26257d',0,'2024-03-12 08:39:58'),('9e439bbb1ad41860b14b0eff1b850292f2f38208ef9e528b58446d8848186c0683e553ba6fb98058','170e683773f3f25dc55d88cab12ae256f51d0b73d37b24ead9020a26124fd06ee5f35c62a5af3fbb',0,'2024-02-29 10:25:43'),('9e4ef26b4809d6e34ec6f1306d47cfd2c6be780a130c004e592e8e47fe643600e931697ae613c4be','50ef6b8a1d41de4b43b81323e6ebfd0f9967b714f294298772fa4f9c1143d60fa4fab7649b975e90',0,'2024-02-25 17:03:49'),('9e5ed3e3dcce74965b4e9f971a7bb2cf204f1c2b606c54c1261da3f1a1bc44002c047b2ae8286309','96b5ff2589c50bc4050929d76a83025b9f42b823c36bcc94a7b5a7fb5d49c71826cdae6e7257ddd4',0,'2024-05-01 10:11:09'),('9e61a26de7bb498a543d3bb50944bf72e6d95626dfdc63b16cb2fefd068b1f780ee53006a6b59459','4c8c969786ffffac12f28c8f1edc0fe8a63cda0dea3732dd78e94774f30ed7e5f0f90c4484642e85',0,'2024-07-11 21:42:39'),('9e659b54d932c9625e5785c55f1e3e8f40a67d0f6573a1b047cb0b48ff1117105f01f7f4a0ee2d29','5afe183018cc841e682bc06dee4569feb89c20917843936ec6758f11716109b7e22f259943156c81',0,'2024-10-06 14:04:17'),('9e82710c10ffb2097711870495c33ab91acfcf5a71c0d6baa22dd8864dcf144495a8f3696bd9e118','6372802b3af050dd4b2ac463fdf9e52da40f6785fb3155185e9a65d53bb38e6fb2d5e20f6ca3a188',0,'2024-05-08 14:12:45'),('9e8b708967496c9cc47ae0114f12bf97e6a778136a58d204b4249ff2bb2eb46ad0119442cf1a5556','9b645b7bd06f0f686603c4fe7aeb56ced15772c97b6a2a906828e1d8bb06bc2a296bdf0d34117295',0,'2024-10-02 17:48:45'),('9e9296eaba736b5e045ae89dbe234592082f2d17e7d18acb3ad6f31631bde06497c10025def71d91','1fd383f0bb496c398428a0f3dae8903cf20775f9015c3f13efe31879ed1791b7033d501305185f6d',0,'2024-09-03 16:28:58'),('9e95faad6d57ee6d4b71d256502a52f49cde97a0bae8ecd49f83500d6f6c25333971e7c2b52b5ec1','7e51d7b7f6ab39b158b35f0bb6d5810e1a561d3e2b61473e25d90f8d820601073ce55c41137e1bae',0,'2024-02-17 21:42:54'),('9ea05939a4335e6e590ed7df5763116adcc001182f7644ea2c5bba0afb9895929bebd8c4524ec0c7','5fe639b06203709621b9c2cd421951502e76636cfa01231a8076252ef35ff148536ce49ed73078c3',0,'2024-02-25 17:05:00'),('9ea73b7402dfe284de5ff9931abf98c9cd4210483097df4f28d94fd5acaacf425376d55bdb18172d','0a37143c6fca9df436099ef6a5a6c40019201afdecc236574f386545ea78da8bbdeeeced211709fc',0,'2024-02-24 20:39:38'),('9ea8ea852eec85c579c08c3916047f925c3f593f9d1f43d882f33748e34578d35c7ac3fd943552c1','64fb5b1094a675c379b1d742e21116f8b1244786267d7f31c485cf3387cf3a660d0369d1fd4a8d89',0,'2024-10-02 22:07:05'),('9eaf0e72e19c90c4c1193acec653b220837f8a08349d7b61c9550b8a4ae6dbdd51eb08b4cf03dd41','078da3a8abb1601d5f66a0e66cd0090e92dd3f7c4713db52a270232f376ca0d022ea3c0501cca060',0,'2024-09-22 13:19:07'),('9eb1a01018d4ee04505d7c59ad4e3378c6007a9f9cf12de3333ca44910fe9d26b3567fbd658ec045','c30e6f02630e98eb93053de6a409da2ef0bea6718ebe4122a223fdb188f70486ecb3b1c8f2481051',0,'2024-04-07 22:14:04'),('9ec0547d3c5100ec75564cf815c6e0cb4b97d851c13ff355670993613fc48bfa35757b2ec31b64ee','38deb847805b232e113ba789f46a209ec1e204f8c37f6a490fd935bcb11d8a464c6bfeb5b95969eb',0,'2024-10-03 19:16:47'),('9ec62524b251fde961c89e46cfdb80ee9bd56431bc55992c983ab47ce07a2740581afa7163ff5959','1f9792a839577469b00f7117a06f2e83fd08a4535b7b4abb0b16cd16340184d5af7efa1e5b0ec2a2',0,'2024-05-08 20:24:22'),('9edd5e83cff49631484298d09a55ec454a13ae77209de7ef99207158839e3a64eff3fa816b5c198a','13019a7b37ff1a4998f49627e986b79e9fce24876ef7c3e226b95a016c5628aed12bde47670d759b',0,'2024-09-19 15:58:05'),('9ee107bfdf1ad79d1577a9cfb6836bf68d3147a3308cb0ec005e68335d6bf1617eec147911876d0a','b0f638b2a8fd1a2781bb8747a7bb28ad8909f91eb537b382041248c7ee6e1efcda187bd374ec16b4',0,'2024-08-24 14:04:23'),('9ef70bb16931c9824c4aa182fff5d4efa3972096dd95abefde1f0da0d1ba3ad0b0eb261e8919be73','dc6c9fa0ff34e1fb7a98a3b6df052fb21e8607890ddb4db9d5b1b8335acae3b6d6b9cfb16a035d1c',0,'2024-02-29 22:57:02'),('9efbe97a31ef36f09e116b0df6ed3e38fa62dafb3fcd4fbf420bb86abb61b61d52ae70e636bde92a','932d6125684ca32c9061eda27d0b73f9ef09021148336ba2df214b0b0ad6acce2e5e3e63936bd366',0,'2024-01-28 22:44:37'),('9efd857b2e80b1643f0b075aadb5d02437c1ebb899f0beece170956bf5191ec304526e68b7044f7e','fbf9e2909b2e535fdb3ab7dc1df0eb9af2f0c57845ef1da5be3a52042416c990ea503c4330662120',0,'2024-04-09 00:36:17'),('9f0670705c4559baff7ddb5cdbcfb14047d7b0e857c73495e828e4174abdf6e909344e8dba8a5517','5fb08858ca12081164db402a1a97022a4e9e7f40feac1dec1428dcf97bb2114ae46a49f79ac2adc0',0,'2024-09-16 15:43:21'),('9f14459382816727028de57473fb3b1ec6202d90743db7fe8c9bbf0d98f8d1bc957ba2d8b6cd27e8','562de01b71823ca4056e3e8771f5344cdfa58c490822ac11a70dec69866e64506d83fe5b9f1a7466',0,'2024-08-10 18:03:43'),('9f169055cfc83ade4ad7d1bb334438ac4cb8c2561ce690ea736f65b310f0e55fc2e8dfbd9edaf03f','099b1065a94593cc59b3099dda2585bd931a0b15cc5430c35ecdf037a1f83b1ea9a63bb6497f6080',0,'2024-09-03 14:24:08'),('9f1a9dbf5ac65a9b42c771292fb124bf653e89fa6f82975d8226b840db5df8cae5f2a42ab0ad7197','e629424a706d5230beb4143997ff19f343614a26df8fc25df698e03f9e0653e13c7a8b4b04cdffe1',0,'2024-07-28 02:39:52'),('9f2b4671efd3dfea27ccaf1d7002f62602d720208c7ffe2886269674f1bfafaa574a7501f8538747','1d93abf51c1dc97114fbfd64b6c34409dddf7b39b24cc1f4b26db17294346b79741de282211e5f93',0,'2024-04-11 17:49:47'),('9f47f124fb11317559ff76ab676f73bf104d2c696953226d1754616f7612c1692c2bc8735dd68dcf','54359dddbd5ed3480a387d2213f370a3a236afaac7b502319abd7f453c9d5588c6b342bf86de0d0f',0,'2024-07-27 12:18:21'),('9f50beb5ef7f58e8f665fc4017f3e28226e2dff8adf25ed76587721b947d327b91a19b19d1a6d10f','feaff6fa445f3b8313caa949d85e5738835d8e814aa2928f300e7737d8297418e267744aabb5231e',0,'2024-02-18 15:26:26'),('9f54f9ded480d5b5ff79634edba87165bd1cbd2804bc62f939cc7b50bab349e349518f764590ff44','c5769e71da4e1de345a1b5b33eac8fbd52d3d3d354349ef3edadf26b3ddb625a6bd04f364b3b8332',0,'2024-03-16 18:02:12'),('9f606336097a3db8871589ed6284b0cc6cd11ebe25f558b279e10fa273e7cceb2de22118f4aade58','b16ac6fdbcfca8b4ee4a0840f7c153f597f818122bad257002f78294827ba1a0c8f3e76c5f6fc650',0,'2024-02-22 17:58:29'),('9f6cf7db285c85eae2aa39aa8a5c6490bc451d5b6fa510f02992b0cfac98391d87418fdeb96b6cb5','b53155d60036b7f293092b3d177b3a1e534148166f0a2c31f43f9bc11eea26b75f26bad3a970e3d1',0,'2024-05-19 08:55:19'),('9f7644aff61d0d830d354b06b2c527916d22006ce78601ebf213789a65fd4370ed4e42d6de8d6b6f','db91e75acd325b10be8c3041e4420ef514437a3ac8bd5b07c2d5cb9eb17145465d3fcb5adccf9ca4',0,'2024-03-30 17:59:11'),('9fac3cde3674b6a47ba321e7c27868ac7995963773ab2e5f5598175461186834b4230a333f87bbbc','d92a515c8d2ce894ff9467a62a9fc86ac05b7db2e4ec0927697193758b9df9e4e4d49e269ca7fc16',0,'2024-10-03 19:11:47'),('9fbdcf70395fc8078d7e8359966f173e4d60f94756ca16e070f8903de14f5ec4451acb88d0f89a61','954fd1c222a11663a1477dac3a2bd2fdac3075af74904e8f194cc9f9398d2427d6991b2f34333ca4',0,'2024-02-14 17:15:39'),('9fc1d59003d1da8922fb7f93bdc7bdf57590a781db33d5ee23eb7cf4c08f137075d23ee1eb477cbb','a223a83144a1a257038feb68fe3c3dccbb3981aef8d22186f32f97da6fad1d515d15c6b6263b2ae8',0,'2024-04-15 20:45:31'),('9fc412924a8567c1c75da46af2f5b103475a8cface05fb9076af53363737c26399ee15ba6262c429','09cc957cf6062c16ce88bf167e52c9ea7f8bd20b83ec8a9cdbf6f347a442c636e4569cdbba83bdb7',0,'2024-09-22 17:58:42'),('9fe2fff5cb38f950359cb0071ae4eb38a8e884db96e4764f1a7d5ac67102ec907221721bdccac846','0b4700ef56d6c378c782d7569053673f0ad020a9ffcdaee13b2ea7e6cb498d7c4e8a6be2489ac11d',0,'2024-10-01 03:27:48'),('9ffda990b21a3414e265f4b478d7fc31ac8932005e71bc60d1ad816a2abccc04fc4c13e7f4b21df6','ff09316003d7e7da8a77c97acb657216bcc9a30a81622a84a31835ee156e49ea9a32f4af168e3c36',0,'2024-10-07 13:08:41'),('9fff02d1c16d0294df298949ca7a29c15716913142c07ef25685d2efd51d975093057cccb6f72463','9c633b00b64d8184f6b54d7775d77517471c8c682c692e116c35349964f302bdae50754c86dfa595',0,'2024-01-28 16:06:01'),('a010b6186ed4c5ecc57545148198192e71c643f5cbcc401cff87b793239906709271cd9e07ecc82f','8d1085d97b2cb4245603e3f3325093ae4bd05f78134bcf420ee2b2588f7c6c2c6628d14e79a00cc6',0,'2024-04-13 22:45:24'),('a07fcc9bbcadf1feac7cd366dedf717f4b32cba0419079bcb03d8fe5c4b7d081bee987107fa86b50','55737a44f037963c235081034bb1c4efc31b9aa196afbbb1fe2680257701c30c1c61897444447472',0,'2024-04-26 00:30:34'),('a090addceafe150da07811e35f2458271909d7b47a6d4b278a42476ed452ad775cfcb04cc6bfc796','2346184fd1d4bf8588064468fb985b83617ffa66e159ee0b537d82a7da3cbaa354fef831d47d1470',0,'2024-02-24 18:50:46'),('a09b038ef6b2e63e6ad1c8e1613206bf6a86e7d74b38b74a825338efbba138c2dec2d4444160f02e','8e6a0787f3a15457a0af1a0a23f0080d4cea9341947d7c5f801ed4e61e591b5c00d263775150c54d',0,'2024-05-16 16:01:25'),('a0a92c0eca3f36e438c6e7acc127f2434647cd4fc418c6418fd4155967949dc38f78bbd6d6f69239','46ec87e2d5c47f36269ff8ce0969bb038818485321579ea91bf54000a6e02e64a41d0e4b27da03ab',0,'2024-01-25 15:40:58'),('a0dbaa67442e80c952a3127b9a8773b07d40c31338a0610a7a39b3ead7109ff0ce8f0ac044eada6d','b63cf56c3d47bfe6efb9108054bee4e751e8060e6dd8ffaa3b64f2680e7e463453524354d68908dd',0,'2024-05-24 08:54:15'),('a0df7106878fad5970decd232ffd5f26f994dc39ee90425647db8e75d9e9ee4fc9c13a4a78b8467b','6f649635fe446697d0f1168157cc364e6ecf0c0e24eb01c8d4e44ec0c3a63a1398abab67b5a9f102',0,'2024-09-09 05:05:55'),('a0e4bd2d50b78f458352a9f28261052327a422eeb9ebe13527bb0a017bf16a9d50781ad73e5f2f55','a6cbd236ea2c6d9ff8303a829ee1ed27bceae68a9682512f2dcf73939417877308844b7d1fcaa07e',0,'2024-10-06 18:59:02'),('a0e4f6170b24eae68ff90985260256bb259ba616158dbe213be3a4c89e2c0bd551b743ed7e61de7e','25bdc73ba5f3d1243201b65b61375b0f6dba89dfa286013b03a45d4ff8d65db6ca65f4a6ba8325cf',0,'2024-05-30 13:34:35'),('a0ebbce899e5bcd604d64fa42c2e58683fccf1e47a26a0c0be28541c2d0b44a38a58aa9442d47d4a','88f7f1250185dd117eb85801c25f6086bb97f91c9c50289316081c18366b52817cba8b66f24a8c85',0,'2024-01-26 13:01:35'),('a1078c71fd26136df9bf2a106940aaf61533bc86f89ccadf38b63df171ea0ad761335ca3123d9583','07e987eddf2539f33491ab5c3a06f814ce7ef4ae2bf6e88adc1a7e4da27e2a91ac8ea8f28cb01d42',0,'2024-06-28 20:29:41'),('a108c0780cc982c1991fbd75fb58c9bb2cba80d46b38517419c5fad2acae04af4869c70fedb74d2e','89760ef9096f6f48612c6d21f74191cb4dd51ff12edf3c23bef2be8011c8ce763b656e479fb10fad',0,'2024-03-28 13:26:54'),('a10e971bceaa33a0233677a021af4ee5c362292cbd0458974e435dded387b513249ca4fc47c330a7','c5d998fd2b9b9f041a55aaf3c52829fc01d567046998edca0e1a9408efc68fc76dd7c8315cddcb66',0,'2024-01-27 20:52:50'),('a116126809331d6d78c2c901045bab63c459aafc2edc3d0cc9f2e3635e4fa53759421b594c04ed98','4c7acc2046cfe1f8366d407c407643cf967933d95de7cd0b94f4842642f6891fed858cdaf1fc23a0',0,'2024-06-13 12:28:13'),('a122f0b8257e7bd7c15dbe01dabda888f9df75e75ccbebbeeb82ceb34fd2b928deb28a14daa1c190','aa22efe913dcec64aace0a4007f78bfd7eed07bdc6b5b2a3f74c647402338ec2772477c167405ff6',0,'2024-01-25 15:59:57'),('a13db77153a62d64544e60bfefad8fc89aedfed185b4f5bd2ba2278ca8dcdaf23dc7ca5d6d7c9676','b736a81aa09de37a2e84e08da2918501512ae2689d945248b7d75207c2e6735d3a5d27ab19be3dbf',0,'2024-01-27 09:58:17'),('a14c971912d1fdc9b9b6a4687ff0d037cc1541909be063b6bc553997001ed35f7fe9ff0fbb8ad41a','a4600f8ef51e2673ceb736ccb282016a8ac8e605117135848e4080a96c566bfaf46af86ef208f83d',0,'2024-04-29 15:57:47'),('a168d548e8767681be45b634a15e79ea1a97c8ef02dab0c3e1596b24187f59805dfc7188b04ea4d3','ce3c106e93d64d646757d1a4e8166b7bd4b91421ddbc3720f033237bc72eccb9b7acdb775447e9f2',0,'2024-05-29 11:30:17'),('a1753687c86a61369ffc0b664f34a10320dd68634c72a741ed270a8861e6a6a335799568927e21ed','ba98a9bb4fbadd3c97a05d745c97a722ea30c3c7af42740d1a73b1ecf90144cb671a147982c32d16',0,'2024-08-27 21:04:21'),('a1814a90b0cfe2656fd4f6f88d8944827431c28c6911b176fa93c12461c462e7cfe56fc9322d33cf','56c142055e743de8ca45907879c8f270cb196e4609e5124bf3fa4565a60ee6caeee2b19170b7ef3f',0,'2024-07-06 12:02:49'),('a19a889ad4fa50a5336c923fb07ed47f0a3b56634c80feefe675b37d51ea591563b577fe90509dbf','a25dbce1ea13a34d1ba24dfa28e82b5b39ee83c35ccb5c741d951747ed6da808e5b3ce275328f526',0,'2024-04-26 18:07:52'),('a1c1429470deacc6ea90d9d608cd2cbe7e1f6f3c73079edc35835ba0f708083b38984178c3cfa34e','54ae3e472bedf1633c05f2314042b206bdb46c9c3b7e98bb6232b9ffa673f8cd64c8359029c70a80',0,'2024-02-24 17:35:10'),('a1d4f3c6c18dd56cbab116fd0d848d561c90b4a79adc2a49c8b1b7b22cc755ae113a7ea3c2254cb4','a30bba08435b3828c06b434af35f995e9e3956f1758536400a1428178bd350bdc68135991223efba',0,'2024-02-03 10:16:19'),('a1d97ce4cb709899d16e811ac1a1b0d27ae2e6b7f5d2418d3d80c25b33cdb2795cc3d9df6dd123f1','6849d10f1b9288f9a994f966821f317f5a4c92cfbd238ba4f10e8267677ba137e4728c22b2752c13',0,'2024-01-26 09:31:28'),('a1e583e0b11e908f36dd7eee794f5fb10e740ac1111d53da3e08588673acba2ec96ae012fe82eee1','0c723138a7a8830d64464b260a2c3d3616314189d57cedae2dbd8f34fa4d8dc4a573cffde173f6e0',0,'2024-07-16 17:05:29'),('a1ee60b29e4c0f71d569ea0db6371195b60f820abbf4a04ca396393264467588d358ecd8273891e8','53ba076a3db4d4ef3e49415410c31c522edaf6c369a6fca054405a12c0d62e881f90860e14ff2295',0,'2024-01-25 15:27:12'),('a20f5ea9b1b90125d30d0661e269b85b01bd4bb5195e40a1bc01e008b844eea81ece58f97fb6fd7f','e3cbcca8e65795458f6f96d5963465339f3253868f1668e0a253b6ae51633960661d56263234177e',0,'2024-08-23 09:36:56'),('a21777cad8401798be7bee5fd4cc63674b750b80d0763dda34dcfe303b7b3dc7b4aea57550a9b4b6','1757aef253c298e3243d0b2a85b517e301f4a7d7215d34dc88a23c7b67603bcf33ee032236308fb5',0,'2024-02-14 08:07:33'),('a21e563d878ebc946a81fba35feb20c0aa613332cc4a1adbf8568b935bd824dc422d26bf71deea2d','a0084c8094b8f0e531d0810a8f7adbcf98b649c2d70b1be22c8594306eb53c5788c52575488996b5',0,'2024-07-30 16:09:33'),('a22df0eb3908f8f2a55b2960ad6ebd2d7fd0d20dbfb47daa5841913aef7866ba7a1bffe44ac945bb','bffceed63145d071559f09ce41bed019149ffa5548c0f18c5d9caa9fcef2cfb4a1b665c813eb5c98',0,'2024-01-31 07:20:27'),('a257b374111113e6833801acb11924732efc4086184f39f7347e1eb2c00d632aa49017fc6e0af598','302ec6f00b51187e529f78c52c95bab3dcd1c38baec3fc269e8994e145a955f3ab0168c5ae1ad425',0,'2024-01-28 16:51:35'),('a265978b8406f64b1ff872c409aeab7c3f1206a1e14c44b810bcd750acb1d114d98e7b2328ff474c','2235de9c672aeb262270070509f6139b57aebd4ea2e623dbe2eb070445ccf0dbb54abe9a3a9a5787',0,'2024-07-30 18:11:53'),('a29ba684115d565c9aa75fcea04731a15aed13066d524fd33d473b6b25559ae44f8f4e697ab1d614','78be5999d8a9c444532e296420b39479ce47a82614cede7d1a785cb95f67907d2c52d249c35449b2',0,'2024-03-28 17:08:44'),('a2a5522790d33f021569839ad43cc0a618dd320a043618c05adfe67a4e0d1ade5a25d86c8773d0f9','6d9a54ef937fb5f97824dc915cf87d874211aeae9d07043ffe4e5119813f27e424d001fe86c0f476',0,'2024-06-12 15:13:55'),('a2b1b65b1afb20e6d54c01bab300f1d3e9052af9e04785acf630550e26b2917fa0bb6c6d2beb1a71','b19bc2d3413e16885437ddae88bfe7e461684a7cd2f22d5487c8bba472aea56153b4bafe15c2de77',0,'2024-05-03 19:05:31'),('a2b3400d2e0c2d4fe6dedda3a9b6c6c6aaddafab3e589a30dac94fd1a7f669bfe6814445adc257fe','677fa68208db58168c037cde5c9c46adf0068cd1ffbcea330bc477a972230d38f86219322ae4accc',0,'2024-04-30 11:45:52'),('a2c0129440e0972c3c526130b1342b7ffba9ceb2e3dfddcc78b23e29f8d90beecbd9fdb5b7f8fdc9','54a802371061c5b3f9719393b32380f3bc64678bc55659d4ad0b0ca1fc5ab7f325f94a95d6e5ded0',0,'2024-01-25 08:44:27'),('a2d15e9e654b574c1dde239902232e5dfc9e29ea14851901b05b9f56f5467e00cef4bde4b9c56ffc','1ee78abb8899a41ededa2f16e7c33936d3a0b6bbbebbbccb434c9fd3d368fcd827c85021fb9175a7',0,'2024-01-26 07:15:42'),('a2f2efde8fb290c55ae9331272acb4020a9c319394766d161c5114bb872bd561428bbc74ce316fac','96012bbc810d4e90447b184d1f4c6e9c493c3fe5d911780ebdbfbb3152a04054c3f0b8737aeeee85',0,'2024-02-27 11:22:19'),('a2fd0a54ffc9ca08ab7a0c7b849f3361db23501dc3db4ad4c2017b729a45ec686eef2b51e50b7a28','7fa4be07c38ea379f6b38acc5bc53d7a9904db2e9f371cc80cb9a5ce63abf6ec3aba8e661c141b08',0,'2024-07-30 12:21:44'),('a3117f0120f2eeeb17db1c4c59c9930b70592a776769b5ab0b41f73639d58f2a2b7c96c937b8a63f','58f4352d22163b49ff53923d4158e13881e077f84d6de5062d2e97a549814704aacb309c5fb835f8',0,'2024-01-25 00:19:58'),('a331a68188544efb279e2899f5c19ea2261f439b8cd657d59b232fec3cb7f9f8ae9b54d5492f8b13','d35b21f32a4a3824435b19e82f95b1a73db9e9d4abd3ccfb8720d5b8bff4bc76e9cedc45855caf40',0,'2024-01-25 17:55:16'),('a36240b4e53c1d6ed32993cbc7a4abbdd5ef4dd4454cea331e2c0adc63c5ba98c36f33d9712baaa0','041e30da9f8ff1a4fb6e095dfbdfbb5e042a36f7bc93eaabb59047b24a0a459dd0a584ec3026d5c0',0,'2024-08-02 20:51:08'),('a374322ecba5e239275440bb82c0da31b6fd367c3e82c6e14473baff0b140d87169ccd722f06d3ee','8c6d8e03d5b75b183172d1bc17b55dfce3fe1e128f05a1e14a065507d20cdbf4d91b1504076e029b',0,'2024-06-07 14:42:21'),('a3a984594fa4814c1e6c4fc34d5539e7c6cd251fa6c4eaf5cbbc33e5c7b0c194b23947ac1f068311','7960f7913743688bdf6dc14fc44c1857a883dcfc229d99be5ea2f16757a2723de6ce3b9891e33475',0,'2024-03-11 14:15:20'),('a3b36fd6e1cf76f9d73398efe41e78857f055f65fbdaa407b2fa22428d6a8724c8c2cb8a3248e084','ee6db3483a93502d71aa5f04c61e0304e9ee4372847eb5333fb41611dee2e57b140a6452c3f839df',0,'2024-08-04 17:17:48'),('a3b5d97237f37462fb5addba1d00c64cd2a0ae8bad6782888eb9e232d06f1ee97cb4dca3c91841c1','fb689588e5584d074f0953531a9273d4bccfc098539c356984f22f327227b812a4ec4dff96b33ef7',0,'2024-09-12 12:24:26'),('a3b6b51d7cfc11a3db1a60e0cd1f499c79d608597d56cf148e4707320088e04f37b26fbfd82e6123','270118af675b79916b782406d99467ba29975d85752577fe2d66a8e9d008ae97227ae4f88cbc8d4b',0,'2024-02-05 15:56:41'),('a3c32013ee9d2492d5c332b3134cafc8483fe7db04ddcd07e1ec84e61d5adc9ac07e065dc3ddf688','c1b5293667533424081e41dc10ba9057efe112f1bf26aaf0e2bd81681c93fb24fe39f743e031b5d5',0,'2024-04-30 08:20:28'),('a3d00f0d82f8142d43033f4dd4272aeffcd9fc8e5c6a5e38e01c941440f3d49d16861b8799eb0602','db2bb41b7d5c442518df3d15750372e4139145d9ab0c34708a62386def5a4197febd19db82d0deda',0,'2024-04-19 17:43:45'),('a3d44255f68fe5ea59c80f678c923bef9b09282821caacf3c72893817a43086e994c06a892a8c4d7','8fc956ecaccde057d55afd3bf44a4d341f2ee12851170de08c4db5cdafc7db3da4c13206a60c6ae0',0,'2024-09-22 08:05:18'),('a3de0930cb480be18e17e7948732316038abe91ea0a483db939c8b25bfb9dc9b9980f424e5073ce8','107ae666890db44f31d8691d15213c345360964f40b06472c12f68e7b63cf0ce8232d83dfe2034c2',0,'2024-09-12 11:37:52'),('a3e4bf88668979c332785b910768222b0d8e6fe1b476a6f3d8e9fe8b00f7c45f12b4beac80fc8a3b','fcda696340076e4144340a0add1e55383255b407db873e12fe5d493fc7f375856997d682943d7242',0,'2024-02-14 15:44:46'),('a3f973a8ec66637cbfe86d6799c3bdaa4e85d72bdc134c2b7f97ec67bf081fea0d7e0756914353f0','2a3bf23bf78c52d78efe36a8d1c611c65f4c3aee9359f4f29868644a27ca374c0a60afb3373c110f',0,'2024-01-27 18:37:41'),('a3fabbee9b1d252fca04d3bfc35529cba7ed3b37758d8b114e46378950b92bc7c3409b2638ca06ac','a25aef260646f4c2723d7faa0956f83933c0b3b41d50cca15cf410dbf178f0200eeeb733e2493f57',0,'2024-08-25 15:47:52'),('a3fb5224ba89367ef033428adbfb136bda6786e4d5b4bdb41c6b9f432576f24f579fc2e99997e919','ce49ab9b27ce7d93c4b5fee18abffa1c2bcc350b28307997e9f5eec3f11d41feb8f2402b3cdb18e5',0,'2024-06-06 14:27:46'),('a416b5c9068215a2fc204feca8b1aa913a64afc209e9ada907a861a47df2eea736e0ea6845d926dc','520f5437a0bfacd1005081497f3a180e7cc6203e4af08bc0065efa7445b1d116d2bfd4c68e221966',0,'2024-02-02 12:00:27'),('a416c186989c44740c094c4f478c18edb2cd2bd2b0662443e7818789aea3863596feb3041bfb750a','8bacd4db89e79d4b8ac99d050ae209f50001ed3693dd026af49cba22cb2c5e0e793c98c84389d7cb',0,'2024-02-12 15:20:21'),('a416e30da58047d22e421feb9ccbb040dc96d514d2777f9de5d9f1e9fa28b68866b7caaca76e1337','ec5656e9b168f74494787160b286cde5c420acad8662d11ff5761b56cade7cac73a768e0c2dccec0',0,'2024-09-21 20:48:15'),('a4368ae3b80366a91230738d1fcfe765c98dfd209aae60e80947645e8a77ae8e3dc420c3d4754ece','62eb0aee43696a9f587ceabe14470893640d10ff11a2f900e59147d6c7c5cb7063e686a024f432de',0,'2024-01-30 09:29:50'),('a43983aeea11c85d85c1197d14c5d6738cb83ce9370688800f798fda11b6e211edd3aa8e052c7849','c9c0cd798aa135aa9b7288cdb9ca1460726c5028b2b4615d044602b7d274574952c37d4abe876743',0,'2024-02-01 15:28:00'),('a487d16a99ed2022a758154da7f3aa74927dd886998a7d3271fbd06c4431228f6acdd6d28d150397','412dfd3e8709da6c5d91bbf66c6aa14b8431dbb52929fe15ea4f47f9a2a7734c25d16e024841814c',0,'2024-02-02 14:37:26'),('a49b0e6a412a27fe4bd5d53b48dc3f9e38e5058491cc6d6fb2ade7181ec5d2f236cb953bfaef1aed','e313516788f8d6370e89a8c4e938c9f3c127c64261ce40584f7efefed2cbe16ee303df5b8a5ba01e',0,'2024-02-20 13:59:23'),('a4a31f1cafaa4f4f6672e1d2b134e89a579c6150cb1187ebe7adf514d51e13a0ac6f019e2f1f32ee','2661ebc50f307301a1e58c68f1eb97f58bf08bfe9bef06aeaaadf20baae593aa09f5d936a1bfe38f',0,'2024-05-16 17:04:25'),('a4b5dbb4389e0bc940f1bafb62a609f9f2653b545050510df27bc687eb426fb8b32e38e3c01023bd','079ec4710280c21024952cd237dce3ab1ac6844e7f5076431851011d32467acdb6ade72d2e11d2dc',0,'2024-09-27 23:25:57'),('a4c52484196758a7aee62d7eeeaa970c49adfd24bb59bc560cdd82b7b4834c671b04e0fa534d759d','207685ba09a29b680f5048c6502509aad1b8e10be45c5d30a9f42e2e4350583b8c9bea6b6601c7c4',0,'2024-09-21 11:04:47'),('a4dbf259f8149d61457ccb2ae3db4fe05d4c0895481f07ae813fd9c7944413154addc707b9243183','2eb4382d16c715d16c804b2f3beda41ede85872e50e4092d111869ca07f4fdf2f7e8f1efcd55a183',0,'2024-02-28 13:04:50'),('a4e52a4cab3811d443fec54732b408c17272180b43fd461c11224624852a355ee6f2288e33ae80e1','12bcdbf4b9f6d1a06393046de95ce01905414ba5aa709cc6a84951215c221715218d1fc91d8f04ae',0,'2024-07-14 19:19:58'),('a4e95f6f1bf476ab7a124af5392567c71c798831324d3504366d7faa44042950dbcca6b5f156b6ba','27288a5d691a1421ab0b7a0f0e6b299846c4cf53ae1077926700b51ef8d1e5e6c7f94ed8f74454ff',0,'2024-04-09 17:28:21'),('a4ea4203bb6f808d296cce197bf591f2d28762cdf9754e57a931e8f2d7d09a58982324c6a0c0bb55','1fb4471a947d9857982b44302b3dfaa5bdbde30ae3e38e61354a8c381ffdc6ce2a3a09eba35bfac5',0,'2024-06-07 16:21:32'),('a4ecd372036815e21bfe030a594cdf9e345b680b7522b6da5908b4ebfeac7c99b3a345668848c314','27b5a2f59ec80ed26d556a1de2285ab6829ebb568cfa74d346fdefeed8ac49674c6ce1fadc45ac45',0,'2024-08-08 16:01:45'),('a4fab889164919cc39e5f78bb924a7225b4d4522bb43a748491fc6ecfcbcd83830149c99491fadda','fc49f2bad8e4602cdabd13ae1de8988e8cc83d0c28fa13cbee12d01af3a7929cced27e12f4572095',0,'2024-02-03 17:02:11'),('a4ff6c6e971f38c8accdcfa32fa880aea6df20f81a6a3fca52b952e673b54a765157c3cba8abeda7','7a2375888deb79255f1e9d12c673109e750b887ba7ccdddf76a3210c80126f543adeaf79508ab6df',0,'2024-09-24 16:45:21'),('a502f122259b6a69e30592d655d413839cec5b9c452c0cbd56497b0b0b94ddaf01815c20b40b70b4','6e4549eac1861f134b7cae1f6d192f4f6e7a56e90a1c9807a275a321241d3342ae2e5b018f58bdf0',0,'2024-07-04 17:15:22'),('a50ae667c779b49beb2887fac91fe4c7cc71806401f1f8c8053b2f4c2fc04cf70b4f297ec5f2cc75','94351eb0ba679afcefc20a873946a6b18d2a1761e7a3ee34531dcc2a29ec4688b668fb7235876af0',0,'2024-01-25 02:14:25'),('a512d23d2efcb0f791b3a51d88a5057a6456f5f5e6ac165e1cbb2eafd492077bafba06d45a62c329','947cf87f74d7d4ee86cff1717bdcfa2d13ff0c4da89a2c1f1cdc45f4d787f2104dabaae57b4f29fb',0,'2024-09-13 18:30:16'),('a51d04703339c8cb29e71ba6f3857aa0f731b2e972da4e18ac24a87d46b41db6f9ad1961640c016b','5469d6e1ad2c2807ff3e623db20fa38cf190975dad26186445d0948477ff18fd2a1cccf54b8a40c9',0,'2024-01-25 18:31:08'),('a52c0210fe43cc49722c3f2ba5592cb6d9a3eae66dde7738071cdadf61eb296401f6792bea260ceb','109064f04ef8bb1be1b77b0d1d5c86fd814c4fe2c74385c3c3c52d55873c4d7d17849608e79d6bb2',0,'2024-05-16 15:09:16'),('a52e144dbe31cbc09293f1a0ac85bc5f555f8325c26771e1339230ffad7cbf90379a8bb18eb4cc2b','2d4d93a1fdc6b5e6c12030ba99a9ad0c472076a7afa2201b6722e3ffe0f4bd5d2f6ed6409f1d5be6',0,'2024-08-27 23:54:20'),('a54ad0a16939e6ef54a04236cf5023d877654f8a8813dca40e5f2962cb7ba2b687ed403593e2d81c','832fd1578bce226b63657b6e3c7fbdc0bef0158f3c1c31b57fdf30c6b5b89d909628de5e5c392cc2',0,'2024-09-03 11:14:51'),('a5578679dd7f7909b50a279cbc9dfb719722df9dd7fd8a8b13a3bbf723882c6669cda3d7860f237e','4630631497e8735b514fad9f51afa50f7e90f7d5ad0e115233d356a9c395b3711036da9bb24c4307',0,'2024-09-26 09:43:37'),('a55ad7fab19cdad9600b7275f8eeb213be55359d05a8cba769c368e4c3968764445d6b5cd0ed560c','9ca004c8df32b70884c3f4a300fcc35823e2f68e716c92176b8f8229a40d9ce311739c43ec8472dd',0,'2024-03-31 07:54:19'),('a56963c63c478c92919d73e58e5ed52aa470969928c450af95c12f70eab41e6ae0e96c7546ec078b','06ad5958b44c47e0474512d6317e2e1bb8792e4abdb26f25e38c1cae43c472018e39d9658ebfec5b',0,'2024-01-25 14:46:53'),('a57cad90cc54de6edf306ae66b38bcb44f0f1a402323767e0d512bb97716bcc3b07bac0e9529aebc','b90ae5a57f28a9340b697e2b2aea425976ab2658a084ad7d66c125d23e7d38549a12d80bb2d0882d',0,'2024-03-04 14:49:02'),('a58236b210fe591a1f20cd3a84a0a743d73841fb640540675cfbb2b81c527c7715204fbdeee78bc4','9e23cdf9f5830082f6624e36e7dc83519174839b4679c2004125069b9acc44c47d839b9988445949',0,'2024-02-15 13:17:22'),('a589c53314976f13d3a68f186ce00b4b9b4bafddaf113399a4419a7e61f94126fb4c7cb9d521332f','fffaf041e0aaad11c136275ecba40d0c44965fa2834efbb62329d7c96f03c4183e308c2aef8d4703',0,'2024-03-26 12:08:40'),('a58bb4c72df28002892d7dce23264de67cfdb8ec66be8b9e12997340dbf308907bd0ef2cca8ba6a3','4c0fcae4fc7221b12b9e259e9f1943c2bf3919b855207c1d491dd6d2e2e9aff8b8ee6e37465662d4',0,'2024-07-27 12:03:46'),('a59677f33b4f9d12780b605af0ebaff76236ac448238e736bda38450b55bdba39f8ab429fc4afa7b','55a833cb3f9defa5583f09790e065dcda2724a48b6dd53b169806f5860e2e19e52e90a92c288631b',0,'2024-01-25 08:31:55'),('a5a50cfce44286a05ab3e00f8242e687b5d02729a7f42c571d1065576dc786d554343336bea13fd9','ce9f8d115acd0b79ab4fee74a2f21df5c37a7dd5d96e1047925e4d1369b06ae32f00da5087887049',0,'2024-07-16 14:14:55'),('a5a607a4e5ad3a15e4a5e1e3ce6ace832891d60af551c2a0782de3a72dab40fdeb59d59bcd2280f9','104e24e224bdc37a6b07965913ad82c41ed84e81180b9040bcb350e9e4f2eb0bbbe49c649f7733ab',0,'2024-09-28 22:57:23'),('a5b4870f22be8be0992f09f16ec1983f322e10e06363f5b28ecd6ccac2e111ea2a763918b0528ede','68d577cd7d0e48bccd626809142be8d1687531ef8a45f1c59476813673a3aeb17f7914a91d2c484e',0,'2024-02-21 17:08:17'),('a5c14bfc07938c6fea212e8c32babbcfc5f5a527040cb56edad614b06e4e81d7c7aeeccf265bac65','a7666b9e48ce6a1fc6a5c62f3cd6cf0ab563adbf9e3e413ddd33d87dbd64f53dd24a62fc680a48a9',0,'2024-06-25 19:34:58'),('a5fa514b9c1de1ee47671cad043ec825fa82892e8dba9ca8979973638901dd907c687838f2c5a1f6','35121ad343e69923c9fa6526f596e49bc3697e310e53dacb4bef4c7722807cadac72d9c42ef0fa67',0,'2024-02-16 07:24:24'),('a5fdfecfac7df80254215a1b2fd2f9a0f33029c9ca790df2288f2bfbd148ce22cb86cf36bc033542','d8d893ed1c9f442c617c7f986886f1e7d4bb50fb401c353a408d932315fd89da08f9e0ba107f4de6',0,'2024-06-30 10:35:29'),('a5ff60633a6356568a3e459a38f9bc59ef090ee2cf5d852526e0bcc861d22223e67795e1627ccfe6','72fc3b022679db60b9cdedeeff655ceaac1bcc188b68eb226b4ab80eff53aac9d5a291138148e9b4',0,'2024-04-10 15:52:19'),('a60cf5a7b6a5c58191194be2d3ea3c884fddfd7b373f55853bbcc7a279fab5ccdb4d72a321c6a1d7','d9621aee565bf9127fc7ffbbb65b8f803ca5fd052c9136224ff24d7eafa8d646861ead046c251e04',0,'2024-06-03 18:25:08'),('a60de72fe874326b65b807d20d5c3f0b6bc0e0cd65b4d53d46caa904d53124e7f7837109bb8fcbef','4f467d8ed02ab475720fdb95fe332eb7ec24f2202bf37f9f28d9932195ecbf81fd8b5b7baea57bb7',0,'2024-04-28 20:04:35'),('a6147a9fafbba7cb49b62bc3e3fabe4ecc244b4ae2a2fd32fc33f44ece83167bd6ac7b46b511190d','45f9333ecec77602012a00803cda297c95bb8ebb8437106e3296f5876329a3142bf18e448dc181ad',0,'2024-01-31 19:40:22'),('a61523f6b0ddccb1abc1e5bf08acb9aca7fd7c2194daf9af2043917508a9317bce05747ba7b3d6a4','6328b8c8547cd18c8e3d6a5ea134f971946d69382e7c111fad8c374fd70ffc392ac6a0bda121fba1',0,'2024-08-02 22:21:50'),('a615e7e81c47fb16e736229e513aa068cb7ee200a0b51d6671433eeb65f6e765968e9dadcd480ca3','0264f4e50097460a934c61fad792cd1995f8ff05fb716cadfbb5f2fd359b70b41049cbbe8b1eeee7',0,'2024-03-02 13:21:55'),('a63ac2c30c40e1958ef0c83a5d55d7af20d774bed17825b2bc862e6c14676e51a2241f1d3d0a17d6','1383b1daaf1652ad85dec8fc3872f5a342ea00da28f675df7bfef276aeb37be6e5424cd35cd4d8e8',0,'2024-02-29 09:29:23'),('a6557452219476759c13371e83cee043e22c4c01f86bd0dfad54f3bb07ad44432d3b8b4c315c2429','43357ce2ded127de8c109373ea66a3bf7dae1a7af85f2fc384b825ad211622aa0983275da6b04c96',0,'2024-07-15 19:24:05'),('a66d4f8b5aeba05e74931dd0f85eace625d322ccd8fe479a832b350a526fc89ee6b097d108e47e47','4aa234839c2c9d11344e7645a43d842b0e354edf540148c654cec3f466262c3356d9e51655f964b3',0,'2024-09-13 19:06:48'),('a6728fcb4678ab19d6b40b52cc78756b0bd4230d5337f5eaf91c0ae0e4ac45a16e6700db0179f91c','8d330382380c44b9808bf9e02e999d44fc0d2289391fb57baabc37dc148962e74e3e9eeb4b37f6ba',0,'2024-04-22 08:19:55'),('a69f0e48a546b13340ad1c1a58e94d067caeba32adce1d65f3ec6bf8bdbd636508e866d8d31ecd23','fb67632b63126df83bd412e3fa4772aede58e0e43180c5deaf610ae1bea7aba68eff3cdbab3f7fae',0,'2024-03-24 23:39:03'),('a6a44ff1edc73f3452f9a38a004c8160d166b24d824df4946cb2c65b32dd648060514ea07da8c44f','fa74d8f27e791042b3dfc4f5f803a5469038cfab690998f0259d7487ac51dcfe89728ceb6764f29b',0,'2024-05-22 20:00:57'),('a6afe022c4dfb359d43e32a09c3d2bbe0575600d043681f126af5d8f40af315b7202bfb2f090fe82','40b39c77cda98612a9547c6d8b904c05edd477ac6caa8d1f96588c7b159f57ed198d0906d858731d',0,'2024-08-01 20:40:27'),('a6c160e927b23d21ab978999a01ad483b5e95e9af635f9809bd1fb39591860dfc41d0b43da45e0a7','3124774a4b7f2744db8dd791f8f8c0f892889b2c0babdc756ca19c8bee1571c0ce6dfdfdaf0d33d8',0,'2024-02-05 20:27:00'),('a6c4c11166e7cd61bfdd7fe4ea6e4fbf821c3bcb3b8fed12c4f92962ba93574025280f0d3974a355','6ba78632994d4ddbe3ab2317dde48951cfc702f2971c10e0b221cb59d6dbbfd73ebd6724a6fef904',0,'2024-08-07 16:45:12'),('a6d3bd1cf63a7b4b2ecb23835a834352c77136e91226db40cd0329b083f6fd46e16839b8437980ca','a93a4a465bc4af009d6064bcb478eae0e0b508c333c80657dea886afee18c047c57086b0a0c7efdb',0,'2024-02-25 14:08:29'),('a7064ac91f4a50a17c5dd0a769d3b9ab8d88b5d929f962bb9c3911b990b34b64638189111944e8dc','e9e65e0c971cbd2afe902e91de3ae77d27503d1ba8ac8689fbf26a270d2795c4b4352db8230b9262',0,'2024-01-25 08:31:39'),('a7077a6757f2eaccb0d145fbff9bdf349d7ce661b2fa6f24f4d3150048d800a43ff1fe8822b13d69','a3e2eecfec660908db7db0349431dac158ef6fd4f835f751d9dda4b2a7885682eb126b320f24acbe',0,'2024-01-25 02:18:05'),('a71696c280b86520811b52b988cc3a6ad16383952eafa11e301bf005785f88fe1b417dc65c04b064','459e0011d318056097bd2a8bebf6cf5180c3ede3094eab7425ddc195ee91906c76ed5ee01b563dc0',0,'2024-04-30 06:25:43'),('a71ca0e4afe8cbdb65bbfbd856975bdef247361ee0063e785bd6051631855cf73d2e7697c99d7a2c','613e860c502673942d74d07528a9e059b379ba7182c6478d1ef28fab17826e9843915018287825a5',0,'2024-10-05 21:14:09'),('a71cc5865ace21ce6627014ed4d4d5d7a9cd0e992b53a193368dfc8dfda7b43149771eacaed4af9e','45b07d8d2e0b5e4ae879e1ce305e8c32e84633c1ac6d8fdf66353241d888dbc4c9af075c87e1cc01',0,'2024-07-26 00:25:26'),('a737e329c422a8b2e1d7fd226ee51a47dc8523dacad451c4c17ef6bf83e14f391489ad57949ecaf5','ee506653f7609e8da8fbdaad1cd91be76132c7ac72ffbbf6bd7a0033179af157e83b78087ecfa868',0,'2024-01-26 12:59:52'),('a73b65d7f0361340495e0cabfffb32273e405a1168ac4cab4a29b78ed5e568940917a9f8100ced52','72d24d261f06dd2657ce4b8fed70cb770f75aa65c04b03c1de037c82009d0cb98a5af749dec1103d',0,'2024-08-03 16:21:51'),('a774eb523b7875d831cd8c5b8401a851ccf1cba5d16508594c73a7819493f75c0f602e60082173f8','1d6b51ac79654bec205107d2ca2dcdf0d865fa9ed5a660189161611e640cb0d6158ec81df24a6dc7',0,'2024-03-03 05:40:47'),('a7945ac93aae5eb8d3c7e5bed1a258d12153583e7fd8b5d84a8cde7d38ace9eefae474f999574da1','bb9aca058fac6bcb65f6f0ac294ce176b6f3e65fe17daf6f15408236cbb6aa1c64c1d68758ce9af9',0,'2024-01-30 14:26:23'),('a79a7c7acf227963ebca1fac28765522159827f33fb2230068c90a142f5c8aea6fed99811daa413b','05801207ad5a6f80abb95e4e6f5c3ec2b5838f05e24b74d5e076465ae2816dea522dce0f9d99fc29',0,'2024-09-14 13:16:21'),('a7a829b67909ab771d3cada28097a8e76ecf7205faace5a32257eef8d0dbe6127a4ef36d72271458','0c9fbc19d10e1a39b781e85ee58291badab014547f359bd6babae32fe18c9ba9aee544c903acae85',0,'2024-10-05 16:38:30'),('a7bb300276120296fa1c6edd4608763781cf23b4904f5a2faddf02cea3bdabb2e455e59359af92a5','4c533fc030e69fcdfe84b5b45f05a6d3097b71894a0262b2d1b238e2cd5df4d901763dec712b0170',0,'2024-06-15 17:42:50'),('a7bcb6762c98367065633dd3b26a6c5793ce1693896bfc1a528f304758228f3205b1f235e4a8e509','0492ec3a89fbcb66b16eb5f2055e0fac67679496c227b329309a330e073127a2c56529db02b06066',0,'2024-03-17 12:41:18'),('a7c84cab8bdbac835cf27bea75cf6a59a2685ed8ea46c77f28ac1363b8c7ecf291db9ea9381e3a97','33a98c7d9c9e8def82165091ed93b743eba565690384ad547103e85968ed5d9bcd3d5a3b9bf2934d',0,'2024-06-21 20:08:41'),('a7ce560e65def1e196eb375f82db6a9753244f69b4866d0d94b948bc2ba7c08fead9a77ef31a7cc7','cca1a69ff5b850d1e59fe45521fb7aab0a82a22346d8dd24b83dbf2ebd6d6b71a23773fd14c85122',0,'2024-09-28 23:11:10'),('a8061a444f333a5ed7115114160a69733d628df6d379b4fc11bed98f2b54c1b9b243607b85bba883','d463bdc02ecd91ee60496f68e017a51393455c3683f8d5a44ea14b2dae4d3e925616a27af2a3a5b2',0,'2024-07-10 09:13:04'),('a8226ee98d8c67173fb1ba4dd59a3ba74e4b9f873ccf28385d0833a5e6e7b327777639bd551c7257','e35aa5c78a300a165ef95a47edfe27fbf7cc0aae6551d236bc1654488b0d61a4dbe5fe382d88947a',0,'2024-03-27 15:08:21'),('a82b5b5698c9d73debfff2369c6489ac0859a8d32939918b07bd2f8b8cf2df51c83e8ac3a2737fda','6328360e21a17c28349d169b26f8466aec19144c936eb3503d8a3c7642753bf93bd5b48b181c409f',0,'2024-05-01 22:25:35'),('a839547a5bb25ab556708bfba3e1f458d8c26a6bfdfb483c886ccacf86a3d9bfa3de070119cf22df','58327b89a996108ec21e213a803c0bc1e59cca27a312f22b865ec5cb4c645635b4e6768f45c467c4',0,'2024-05-16 16:03:25'),('a882128ecbe0c7f78fc14d6d23db31ba7811c66c44444cd184de1f53e123d8281df8fa139b683223','ed799f350c0c8071cbb0c331bcbcc11bf606043c040b0446f6d9b33ad5198f929b60136943f90ef8',0,'2024-03-31 20:39:33'),('a887497239f4e5df6b8131ee3e30cd2031b3bc55a0b4a5b5823b685f6fa76aef759e749d1be305d3','ae928af3cf71352e532ebc22298c7b2f866a0618fea3b15771bb2799da2c1fa28304538446a3355a',0,'2024-07-31 15:01:20'),('a89386a148e3faa2408f517494ac183659159614f636a5c8c728500f06e40868d31dcf8ae1e186bd','64458d0a20cf0f84ca246295bb01d26b9bcecfec486eb316830dd6379a0c5886b554719c8381c35e',0,'2024-04-26 20:32:29'),('a8990f028aacec1d85b39aee2b5a844b2f27478fc56efdd6444af97197826b9399dc36c468cde412','6b6af60ed447d864dd5bccc62447940891c2c0964eef1c76406077df15201d49334c2238c85ba0d8',0,'2024-04-08 10:11:27'),('a89e692e33e2d169828b322a639a8acd18e986bb8d044cfa7eaa6979ccdd4f22ae65cdd689026e1f','0449f227be31b1edaea494a085bbdf40ad7c4a0641f51457c138c0f630c74945cebec65b6f813dc5',0,'2024-01-28 07:20:25'),('a8a2266e2687ca68c0e74bf606feb3d561938368890867f271b10d2d318ff6144b9f03d904c2e35e','9db0dbe9ef5f7c35bb9386e96476d8cc0deb49e3abccca41986df157bc19de7d9a605fc647f869e4',0,'2024-09-04 18:01:19'),('a8ae09916602073d822ae03257a839aea248ec8d55a6a3c94ab02ba3264b8bdde11355bb30ec47f5','70577a4fcdea0d55b040c422ac8d30b7fcd8c55213b9841d9fc6569ff94860a7bc6406f1fb17a055',0,'2024-08-24 10:42:25'),('a8bcac111e9502dbb180319d7dd7cc53a40db4a0b3210e10d626e22e7a36be7dfbd27f3ff5b20155','35af819ea0156b1ce3bcc8b043eea5a76e60901108fa5ef4f6cde01809e6434c1654c39d498ca318',0,'2024-05-15 15:38:21'),('a8c681c9df41bb99de7f9c2e10bc0ba08d5dc3d554dfb7f11dbf77367cbe3aabe3858def836b4a2b','79f2d9a4a2d4056456dbc141f33bf1e65041b39be048958b508007f8195d1da86841e5822ccb9b09',0,'2024-02-24 21:01:39'),('a8cb79002f39e6947814f1b1bad524fcc85f6ef2fd39bf25585f778666e6b6bd341ffaf8a6b91fd8','979e5e0a6e8c8e37bf95599ffc1170b092c335aabe529f9bd4967b67bdde2db02e6f9a9e2797d2c4',0,'2024-06-05 17:11:29'),('a8cdeee9beface2ab963748401999c095589380b176ec629dea3bdc63ed3db9b96a2a69034987a53','c910a64a7121ff6cc75f5dc88813bcf816a9517b050b079b99fcee5c3dc4adfb9f5c9ad56e7b2084',0,'2024-08-01 17:56:44'),('a8ce6312cd4c869306c277d23696f5faddbd0df8f7f388ce7d6a7b525a0beb7d5e4f3d47aca791ab','5185e9a27f08729f384c596077aec61e1c855a8aa27db02297ab9922dad0da3d113229a60580f829',0,'2024-09-10 21:08:26'),('a8ed7435c354659e8defcec90637ebfa56d1746c8701038aab544a89e25fec8e918b3619996d029a','d45576bcd00e43d47d936b8106500be62378e6fc558d00f2d5a9fd7e7cfcff12dce1f720926c1412',0,'2024-07-24 19:05:15'),('a8fd83a567add3090dc0e2e46eb73da236b9db0e24e7d4fed3b7ab89e0170a02d510acf7c166c6d9','1d54b753097473a419afdbf685e10cd663252c08ac6d86705373181b7d0801625c165179ba211073',0,'2024-06-24 20:29:34'),('a911d8fb31c29fbe3bbb15716c122d181d17ddd3249905661d86177dd0f35c089c3741b454129073','309dfec22dc7d89c87000c713db5d9350abf582e5258127fd0a853f0497cb2e70a4e4a6ead58e8b3',0,'2024-05-27 20:47:11'),('a91f09b4bc9d342f46848989f9a10dfc4b39b2fdaf7f87804aebe6eaafea5abb1383e1c450ed2b11','7f398e09727e6c156331ca2bd8ea438b85b7b4a666f322736aa7b158f54846e01c592629d3419288',0,'2024-07-09 20:26:19'),('a9261cabcc5c18acfa27a971dcb44f04c71e8c1370e674cfd83397430e97f1342007754578e10aff','1be696d3694c321f5014d374f687e1ed647339e3d06fd7439f73dc926be7ce831b476a470831fa96',0,'2024-03-12 01:17:03'),('a9378c667742fa0e3167ed12149bebb4975459dfb164081e79dc28058c344c5fed287ff1d7d31c41','0882de6f5a71e66fd78dc26daaa0f4d043574bdba51021bc03a8b37bf28bc633483cde03b2ab0767',0,'2024-05-05 20:23:05'),('a93b9ebc4630ca497932ba0f1eae3ce808d0abd3016afae94125216a62995ddb96c4b82b8b2c67bc','c635daa0acaf1c7b54f531635b0768a9fe322944a384935ed68fa6d24b7614c0f895d44bf073cb27',0,'2024-04-07 17:24:13'),('a93c27320e74b1e18a8b89fd02b014943d23191b6b117d2c8e359dd121f9fc0d2291a2d630dc66a0','80dfec6c764db95df0d647305ae5bcdb23a93985a7a12f5c3f32fc4dfd1f287928bbe9a7165d4924',0,'2024-07-20 20:43:14'),('a947c72b2a620d62605a51d49e05be7b526c50e0109d7cca26b22f29adfb2b6272e9d4aba983146d','1fc2d7c9c81fe537637bbf008b72784d876dd421b639d7db8c69703c93f4987facd02042240c627f',0,'2024-06-23 21:36:47'),('a9493e756f7bdefe2c8ea47a230d0364c048147c751c8a64819424f477e737aeb8bd16993288cedb','9f3a0beecb1b1ad4d8a6327bc1af494db6e9a844cca78bfbc4b87a0b1635400c554789adb33d7652',0,'2024-02-03 11:11:46'),('a94ef74b2af7c2a625d3cc4317a1e9c00039a94d3b94928686277215341d8a42a2690f5cbbffe415','f7d93fa35fee3c858486811a6768cb263655429ec42efd06bb84d2cc5c9a6966b1a921d7619302ef',0,'2024-04-04 13:21:30'),('a967e3e3ef8ad4d4c2ca9da07bd588b6dd23e4786eed29d706fd3eb230df407b841020fa17be7ea8','82beea8823bb2aa01c256e10f20412b2d5d205e83dff1f05d20e7f6d4eb1cd44b32a62d75d71a6a9',0,'2024-09-05 12:32:24'),('a96885d1b8ffd6a2de3c8513104c865f3d4c25fe2a607996c3fc050991fc8de474f9177227c50d6a','2ae486f33323649cb4abe42c77f5a9cbcb5151113213d3e5a6f6f9c34d8f6f5c33d310f276283abc',0,'2024-01-25 09:10:24'),('a9721de4e36c83c17b932ec2e0da4e6cc8eeea2b1a63c3a1f773b0fd39b990b65ef0a4213f183dd9','732e0d1f6d92460e8f8a2bd654109d782e6f3662015c33be6dc4fcbd41ce4d8a635076612571d0aa',0,'2024-09-07 22:36:42'),('a97705e37eb0418d59122c0ecef2cb225e43d2e7067025012e8f42da3dc3ec18eea62285ae4ed76a','2529738c0e65b3e863175b07003ab128f8a720cc6dd180ade87201fb9e534ae903ab12ed2685fc3f',0,'2024-09-24 12:12:43'),('a97764edd07767cacf6bcaf4cc810cfaeab4e89b5d13f9ba0179237eafac443297103678936fa758','a79a679675c9a70ea1e1253aae96bb51253a9f6a729ad1cf966b2e64a092c9a6a4eb234a94a674b9',0,'2024-01-26 10:18:32'),('a9843bf2547668a63a88d28c44855f8fe86154d7a85ea562802deb5f09586ef13011fb16b108f647','6e1508dc8feeab8a40c43e58ffd4575473d6f92e5c58385847eb415f0768a3f904bee0ea7448f981',0,'2024-03-11 15:01:56'),('a98947293c41534acf61bebe899c2a19495ec1a57027b289bdc01cdad2f0bdf3566284e9d2607a2c','1634fffb0d5249664fdef78af5d1c84867c7587803c4d5118c43864c7a74f3355d5ea29f1d1ceb66',0,'2024-08-28 18:46:40'),('a9a21adce7da57b84b172faa0ba5170eb5d185fbe55514f77066b6ed2577f50d9492b8e68ec13450','83aeb1e3493cf3d0be90a9fe8763c6aa72fe9e2db135dcb977f7487d72a9af1705f9c92c425da92a',0,'2024-07-13 15:05:41'),('a9a953cbcadb100286204675ca7726ea80950afe72f935b8418d9e7f9847ee5d6a819dafd3b1aabb','93062b8bd12c6e88f8341d63fa885e116258752002f8a491130bdecb8e3bcbac23dae4067f869c56',0,'2024-09-28 19:54:24'),('a9aed2df475219a759b0d939ba228ec1d86efbcdcfd8b4625af37af82e72827425ea134a904ccbbb','dbaa1a21a63a026c1d249a98b52bcf2aece88e46a7f3a003b82e970925236fb7abd217ca346d4f05',0,'2024-06-18 12:16:03'),('a9e08aad76627afbdb762fb41716f6d95be1b6e6a8861475eafa07e07723da2e61258b79b53b21c6','c9a3eef5e6b5f2fe1151d994292c9a2347f335781dde1a8edd3e8632eb293c0ab42ec3e73a603c77',0,'2024-09-04 10:43:59'),('a9ee345b4e4cbcf1f13ab4fec35ffe3befa8c0b0f7837ba892516ed3aef53975639175493913b9c0','8f1f874d1e883741556ea51e513353400a7e331739c6278cd5c4bc71db57fd325d0aa452a2d7a7da',0,'2024-01-24 23:56:23'),('aa090aa757ee0fc02c76bb2b6895a6ac8cea9f945e3c34ccccab423e951fce33e3d6efd129e582b7','2daba03204b80a4b48b50a5989121c431c8259068f99cda813c853ad7847c3af0591b2d841d9ff97',0,'2024-01-25 10:03:50'),('aa1697c06bc567bf283bb43200a55d5f29518563fe63b7e6c1cb0c358ecd2197d5b203790fef1cc7','90e6b09186317bbad447e82dc2d367b47b0b4290e53caa8e982b007b5f296852e5cf26e90049ffc2',0,'2024-07-01 17:28:23'),('aa1923eb16d42aaf6c78c93800f8d2ae1f97d2816555ea25fe9d88a7d406188ea7f2ba10006e40c0','9df874bb3177178783804f2e859f072c3dacb402763cea1778ba395f79d5dbb9c0bf971a9586e047',0,'2024-07-13 12:57:30'),('aa2dae747c3772aef2e17d22562703316bb04b928c03f2aa90d9328d4aa94a5321654a8578d45458','3fbe6c9ba0753ec3cdca41e2b13576f558b15ec2e33a6e2a19dc19396ba2fa71b72b4839584d1db4',0,'2024-03-12 15:53:56'),('aa37530e86a23f3c2c73770ae0eddc6a6a0f378ef19b61e6097a686727bd52c6c6696b42ae90b7c7','856899c6308429b4d542fa1c1cd2b89a9233a9c9534b2481a6991db6bc49f77c1a2ee778b83185fe',0,'2024-05-13 14:11:17'),('aa4f1c99ae6eb5702ccc35edae0c5d3c355c2bf3ccd62a3512de5d1d7bdded3bab1d7b21ff17eee1','8cbd4adc5e450a8f9d69a7130c3affd5299218cc6bd468d0a1830ea665478950857d5234d06c8069',0,'2024-01-25 19:51:56'),('aa58bd65fb251af1f053ba28dd78946a324983712cc97aa6b50ddef29b0b5547a59685010e03d0df','14c3dca7d0fab9413ec3f567894d288ce0accc382f572146c0dbca0f1af6eb087b1da05401607d3c',0,'2024-06-18 22:13:17'),('aa5d674c770016a3011e1c43b94621bd5ca29dbd2369462e6a163353ec8b778d6a6814a70b996853','b7a04e334679487fd8d9ef3e873fcf60362790eaca47ab5b92851cbfdb5859a198fed2af0bfd6fa2',0,'2024-03-24 08:18:12'),('aa95d7dd0aa218d5b4d1fb940350900600b3cb56329082cb5ff4caddb0881f59484909e57a84f25e','559da8ac25a2c6ce7c0aee4f75c0a533ba10a45d15bb25c1a748ae4afafa2fc068fc760366cc8b08',0,'2024-07-23 21:06:54'),('aa9e07fa72961a80447b6af327c1cb3dcc68cf8ef53dd43bb086dc2ccb03bd74f1ca0c4eb6ace0f8','c73c9cb72e4721317bb873028633b917c32f5315a7b017ff12cd4801cb7c416dd94196ef1fa0f60b',0,'2024-03-12 13:12:22'),('aa9e6f3dc16dfff0435ae33d4e67738bab6c1ccb24f11d1c50625dd69e8cc0f8ef8000ba829951c6','81262f14c51c5c79314ab65cad43e0d75b05e5383a909272e49df5187f04ebcc034ea84724a37285',0,'2024-07-03 09:51:46'),('aabb8bcccc7c8383d4ab91f8cdb4a8d066c241a4a36a060b52e63e34281c0f3421f41ceb28273961','f94ded53ba610a37303ffa6769022d774b32f0c4b693e0ad04c434c5d82d54152ea6f62a28acb178',0,'2024-05-08 14:26:42'),('aac6e657d03e1b048bda84ffa9dcafa744345f94209c4734e1dc4d69d7a3ad28bcd151ee4d09f0dc','a99f3f4698032af110efd697f5b2bb465fe39447740338071bbc837d830a8ad41142067ff7094a4d',0,'2024-07-17 19:09:01'),('aad86073095a8da392b2482ca41883bc48f8421d713f603ea63e28bcf2bd05c39c0fbe28cff504bd','d31fcd6f2a1a8b5b6e6365f2629b4c8180c8255acf39c590c0cdb41a24b4615b90f5a549d81196b2',0,'2024-03-29 23:48:27'),('ab007770d54c6d80ab60720c16deb81a0dac043742d5dcab14a7fda7a4fa25fbf08c2f1b9873ab53','5a69f3ea5b7a76f0ecac9466afdfcb7113f6a29bb817bd8ec3a86b43efc6261793aaefe8a3a1a767',0,'2024-04-22 10:46:02'),('ab063ed36df6d364a06ed78102031ff23391b588b207da594456a979c023b2651934b338c1350247','2b6e7f3ede74896522a076f7d21706e8b6a73584b1b4e61c3d0980794e6f47c26f4e7abd0eb7e654',0,'2024-07-01 10:32:18'),('ab0903edee46ea8035d6a5bda0de81c2a74c97ec54cb2cc5e4700f322caacade3ec18acd6c42c793','4b937b2a067601eabd79672c759029655360de4f7ff6d70c7f1b66abb1d9e415b38b59ff5eb83cfe',0,'2024-09-11 16:36:02'),('ab0d04e5003dac3d9caa41f62725d52dbfbc9011460ec4c8614cf20c655724d05e35168d2afd383c','ad2f394818a9552d41b616ab581dcf1204e5d6de0207314b560861ce377f8f8ea343260702027353',0,'2024-09-08 17:04:01'),('ab1ccc77ce4ea749502787940fb16990bb7e23f57167f650efa5c7b2c3f3ec20afcd39248bc4b1db','0aa3f19d7dca759871173f25922f5cc39dd1c27220e70c44b9e4f9d657f2bfc13182998fba7fe7e9',0,'2024-06-05 16:52:06'),('ab3a2a010e8284802f0b0933913c0397f761b814cfeef8fbf1119c870adb2ed0ec8c4de2373e375b','4996d35f316b5f51ffccf64b28dd97194136442adaa01231703caf792875ccbaf17cf4a6c29c5ca7',0,'2024-09-05 23:47:47'),('ab47aadd69715c3d18a8089b422a58803f5c45e63d675dd4f2e7c3a0c852fe65e5fde61f45d0321e','e5e04f4f00df0053e9971b4d05d2ecf7880684eadec28c6b068a2fa02275f855843a5ea3513fad59',0,'2024-04-28 14:19:55'),('ab5a6637aa549a66e8def722032644b1a998d2546c4d343c139dbc429acdd42bce601cc8a4cee25f','ce31cbeb3cdb06bdf9222c856f2f3955bdc801a6e768cc67ec50057dbe054293eeefe1b37deb85b7',0,'2024-01-29 10:17:21'),('ab65c7abbceefacc187388ae1ec58d442e4121152920e49d25e934b7672b7d45b1b41564aa579b77','4f9aff57c9d113762c2acb1c83f5af27bcaa78ad91df995e961d80ae692f3801fc1ded0d70f36330',0,'2024-01-27 07:59:39'),('ab6e34ef21374efe65c43ee75aaa97d3fb5d792e0796dffcd5dd3936b76be77efc582b91183fd8cc','09b54eac1c5392eed106e4dffc4ded247116cc617ee1ec1982ecf61cd481a0a01070b8e341558cd5',0,'2024-10-01 10:33:35'),('ab71d681661db7905a41ce04e24ab58c16cde61307d881f2ca9bdf6fa9620ee050b0bcd41b416312','ff11009ac50ceb55102f2da187a7771eda343626aba0326ca1ff0a559b32a8aae74c8c6a3336116b',0,'2024-08-16 21:34:26'),('ab7db6d40bc09734d10d2feb9019a1b1bf31aadb3248f7e5b394264bbdf8eabbfb213294a72773c6','ed86a1ab951745a9bdce635bb275000455cbafef08a96a61f573b7fa23bbf7058feaef0304506161',0,'2024-08-27 23:22:44'),('ab8f1c5aecee125f730247941d073cc40417f6df9d8014fcd9e952db41f697475283aa72baa8fc48','ff4941a3316e7104e304175de495991d1f60a378bbfec7b0893a92588e6aba3247cc723ab3740f5d',0,'2024-01-27 08:01:16'),('aba6fbe712196bc3a7e748552796b9f481c97aff6a117ae79132b60da4660cf28952738411c13818','aefd53df7b82a8274eb5c9b8db4fcb20d42f834d66f9fe4d83978408e3865af1d39ea299840356da',0,'2024-10-02 22:41:08'),('abb0cbce7d22d86d42e2ea7ba6f741b03d567b31df62bae3afc8ca80c38b543bb6f8618e73d40311','94d42a690fd88da5b059576c29a16e9cf2d5f08e1beb211ca6ce010ba4e4cb2bfb887ad4deac40f1',0,'2024-09-08 17:39:11'),('abfe12de6fc9db112662836ee2405a91899addae2e66ae6ffa034e0d20592cee8dd962227584ea7c','975ba4afb3ad37d776f75e61edd3c986c5e796a0fcbc68e4331e763ac6d3fcd3c68d4e6f9e82b903',0,'2024-02-26 04:04:27'),('ac0867776de9f7cac73e7eb174bffe34dd98a5dd41e45efb2cc6567874ece206a8416546ca4765b6','a02d8a653027633d65f97be5b7a4d308a98a16da0b5c19efb392bb00e34cce2a94f6bbb86928f680',0,'2024-01-27 08:19:39'),('ac12aeef08d917d83c131989226049815f797ed8a290f281d44d76c04402e341ba6881eef272746f','76641c83a9c19a760552ece5a524f1f622cc3ec033a10c578a3834fcb0c1de78736b222bc670e5e7',0,'2024-02-29 05:52:11'),('ac17e92a05c4bd6d2deded20721dcb7ddff9c4633e9a5960476a9e707134653ef00f6f0d54f1c0e8','2a481799c88f869ba04e9fcffe719f98469dfe9d69e27fd6d9f2cf48d2325c16d220b515f0afda71',0,'2024-01-31 16:16:22'),('ac1fe526adddcfa7564e781d9a52022fb5fe46426da4913717cbbf94aefc3c61c5a0458269754db1','b4e2ad252a663453b957e98facaf44ae3762738f57fe16475932410eb17c059fa798519f1876b4fe',0,'2024-06-26 20:41:57'),('ac2ac7ee725c2c4cde432ed4933a1b2d1e36f13295df7b1a332e748e83727887d3de44467a5206ff','5d85f355b1521bab72beb7435fe049f78c09bee42ab11b46ff444e830791d4dd0a1e4970687bc23e',0,'2024-02-14 11:58:39'),('ac3874dd3f6ee8e0c7b7460575593d8ad89bb55c9911dddd5ce51f41d227e941bb485101bddfdfe8','f1c6707b54113e3d53849e62e3d5bb4afcbf615b097463a400ee43680d2cb2e1b7ac67fd6f799cad',0,'2024-07-04 18:13:13'),('ac3aa4c3da56fda90fb1364b80e711f61264deb8ac4d6a1a2519fa1be288519fc11cfc3e701a2282','9abcb2be98a78346606c7a2be371b712440651acd96bf9297d755acdf089b93ba7323ecbeb70b807',0,'2024-01-27 18:36:32'),('ac3e23fa708033aa312235e3c4b148a65509c06170d9a6c11f7d24c88044514c17640afbcc911fe6','0ade8440afea1e7933d125584ca0068652801e4138528d940945148a518e0e10589dd697370531ad',0,'2024-01-27 19:51:14'),('ac76132411ecc42e598c1177047b4a6ac25c1349fabce774b1d1147b3f4ff0539e4348f5537ea411','41e8a748bbb1e30148dd6269b56288abdd2859840d74fe6a737feddda99ecc3ea765e3ca666d5b3b',0,'2024-06-27 11:27:54'),('ac8add1b322aa87f5e75fddabf9b3a421162f370092e3bc0a3cbc4344ce8426afcf71c72364c0764','f2f4ad1a07cfd4e917ff807f3d8a9142377f472572979a1196d128efa249bf614ca8da862ea174f4',0,'2024-01-25 11:26:59'),('ac9568b402c3444aa0a252e89f26247e602d6204ba29a6403cb99199c1f7708f825dc2ecda8ad690','150a703d9cbc3083f3ece706af3bc9d185ee07ea913e7cf1a6282abd3a5a53507031db92d0531df0',0,'2024-09-28 14:18:49'),('acae34c883a0259c41344945d64119807c92f702b033c97c0a292321c18787db35c12390ac4c2ca0','ec046015c53b97be3611ec7f987490f46a73cfb67594291606a8104c26805314bdd3b69555fa4d22',0,'2024-03-17 15:16:37'),('acc171d36dbdbcb856f642f6d308c448bfa887dbe7ad1cb2d72edca99807ee41a14e98eb9e8c6e1c','56b5873e4b6138aa2966c6180339a0e4719f1764381d64584055f34a923172f585567e0b71995a08',0,'2024-10-06 20:36:03'),('acca6bc0c99a2fc1e85e2a80c3e785a37092c0836ed0c56025970e4a5cf7d8c4111ac9c9f444806f','242b5a20d51b084fca3ab7e0ee4875d397c92ac44620c10eed4f72e7396379f13292b3b9ff8caae2',0,'2024-04-03 06:01:17'),('accd0e8893928697d773086e2af55022825e7c02e78b2d3d16422a35a6921e74348f43bff9e424c9','640ce3b187efc6b28b554c58d7c086076ad34513e92059c91c21c803be2dc9a2790f25148c0d2093',0,'2024-07-06 20:06:16'),('acd78249b8a97b1bc1b5abb34cabb6b46917dc2fdf6dddf5cffa65ffe48544e8f8d973e546291454','24b120261a2bb478b16d48d66e6ae7cb1b911ebfce35d957c30f1f3fbdfe2a135eb80362f2d90326',0,'2024-10-04 16:21:46'),('acebc50e2f3c18d9c362c6a93952ad9f9dbc3b3487f4a7a235c81c2c87822073ab8cad93077a69e5','563889b7dda19e7d15273a96210495da18771258d14f8832ea53b3e0575ffee777c58237015bad9f',0,'2024-02-24 09:09:53'),('ad04b251e1087481cc16f1d4d51eb572b24f1ff04538cdbb0cea39131f7c891db8852e37587e9e40','903a7ad0db06bcd989a4711e2b1d18bb3028dc087c5f908954052f6577808b639de1f56e8fdb2d9e',0,'2024-09-05 22:39:51'),('ad067b5081707bf167ed3ef887fd63b03ab0e38c53e2a146b3441fff4c2c26b6a9f4b29f1164ab99','9baf914f80d6680b312617d9de5ad242046cb6bd653c019999e68ec1c703f53a677c7b8d17a44075',0,'2024-05-03 19:41:27'),('ad17a958549a96df30377c87ca3c308bf79aac84d20125516863004c57cc4b692315c195757f81d3','66dfa3585fcd3c8569861091190a4664031b4cf9326320a1cc4c27c26be80622bb191ac429f8ac7d',0,'2024-08-21 20:59:17'),('ad439c089c001f149fb177c6954beca15c5738efcc5e9ca75616e41eb53a01cce1349b0886401812','036035b3a329715e967fd99f5953de6411571f22bb4adcad495bfc692ff159b4783fd2b011aae7f2',0,'2024-02-24 20:42:55'),('ad56acf7fae26dcbb95f322809535b4856513f2a39883798648045ba8a281b87c1dab812fdbb530c','d445190daeeac0cf005034b9b9bb7f71bdcc5246cb7dfc962b8df5fad7ba04a653fff660d78e1cbc',0,'2024-07-12 18:57:30'),('ad6b4cd23a0835f1826971d94949166ff152095e26d26425d85c2fbbc5c02942f4aea1a97ac15692','1355eb2f4f520aa74ca4f0fda784b814ce14f8ec41fc9dc4357458e5e11935ef97841f64e4a64ca5',0,'2024-09-24 16:43:47'),('ad8a55ca6fbfb8eb98a1a7b5215b89ae14d1d909082dcf04fcbfade1bd6d8d316b17be8b05a6a37c','a486cf4dd4696a0af602a976eebfcd35a56ebb063811866f681afc3dccbdee01acde1d3f185d84ae',0,'2024-01-25 10:38:21'),('ada47b2dd0c891003f5cac53bd3f6d5d6810cb30bd295c1ce27161d8d01962b33988a652351d2a7f','1f864bb2a69ff339f73c4ec5021aac580d2af27540ac2902f65f28acd3cbe5ec485b070eb9b317f0',0,'2024-04-24 15:18:06'),('adadf57c71c51564d60bc413c58996d3193640c26c812e7d8c8fc07a962ed7a313aca4f8cd59b0a1','58118350df645e3cb729ba35186fbcc6504bf844443aee14ee14845cc011661ab3cbe188b8b764ad',0,'2024-08-09 13:38:14'),('adb1fe48440b1007560cb9ab5d2d2e7d5f6714e4fd919f94287f3663b69e255d6466b552bb2160fa','fe5f22e51b7ece8d91f9b9d44f7edd4614fc22ee4ae83e55d75f6ccbd89d1c626f6a34f220a1e35d',0,'2024-04-13 08:47:25'),('add103b6c31af8b94d210946b76348f495b70c509986a78954d6bd4457ec076b4b8e49433533a2b0','245d12e4245680663a7eaf2611ef34c84c530cf15a8f32cb039cc4278a96886e641e4a3e9f488a54',0,'2024-04-18 15:56:40'),('adf8b6b87d6a80685a2cd646f32004e87fd86268e8aaa2b0c69c08e3c85e5c02b6d27b65efeb5d46','73c5809e62b24d06bc141380fae2355f28241df6c0a16b90cc7b3d6b4ac5dbe9890b028402e389aa',0,'2024-02-06 09:41:12'),('adfb62084733ebad36797de9f646a85de9698926861c3be05d27fbe7369c4efd781b074e27d7e7d4','8ef8c3dc1249d25416d1ce7fb19e2f5bdc7fc0b4d7ef31f2b6297873fcfd295c957f605eeacca116',0,'2024-05-23 08:49:06'),('ae017ea30c8d811ce2d97e64b5d4559164dedb5efdc8444348cdb56faaf712b258389c63cfb5590e','816ed760bb9637c6486387f8015290b5afc3ad5fee0a32863d477dc49ef8be86d52e3ce4265783e3',0,'2024-03-13 20:51:12'),('ae142d5f763f94dedb9caf05e0c3c9a453fde974bf14d2d3b47cbc3296885b5dbabb7a97c0d4934e','3247a215add9071fd455ebf43818866f70d64a5b391d01159dbff1481f1b92bf1a99d1cacbac9cf9',0,'2024-01-26 14:14:21'),('ae1e9c6ef9fab83b3c7f90e1b29c7e7bd8f3af6ecd18991ee8008700345fb3bf281d79852645a18a','42a5a21fa737d0faffa77739ce6788843c88ca12fbe0104c831d9d0289c4bd0077d962708c64038f',0,'2024-02-16 08:24:17'),('ae1fe1c6ca7e3cdd485c5104fd4b7e3854fe5a757376368403ea191481dbe79514c0238ad56b3a32','577ff1c66c2e7f9e10eeac7d17fa82ad37aa33f8327e49d0436dc867c0756eb4656d27359fe244e6',0,'2024-09-23 15:37:06'),('ae2af5310614e761f367eebb26f34bf8a756aea40d878d2736910efc99f31c2a44a99916d617056e','23b82422e1b0b6d97001ded583d487167802371f42305c266ea99528884c72146934985527033e55',0,'2024-03-25 00:02:05'),('ae2eaf3eb083ac68f3c93edd49bca293508f6e9c286afe8210926d797e5e9cfa550afe490869645b','b35b363c7ef76ccf5dea58ca8d9f6a471a1f4b263496914168d151c871258c408b154437e9255bc6',0,'2024-10-08 10:16:30'),('ae42f24a4397a5ae9a3b230a46d1ea90b02a22fe636c11b99f6cbda877ad41ded98d1cc200da0ecc','ba9a1c55dd0e9a0dded49da9443861333ff73edc3c4dd90d06201a183cf3ddb20d5b04b15d9befe3',0,'2024-08-14 23:17:57'),('ae4e676c4a4231b58a318d47327b6413c5c987175151c47019a76c0122301647e10480470f29cbdf','d38750a67003f65048aea5040a094c34545bfda74eac21df092401b397fede31895f208fae1f8220',0,'2024-06-09 16:08:00'),('ae513bd0815acbcca78908d55844194f2ab551c4c8ac4d0a3cbe475a38f769cb59cb1b3c982b4d08','78d0f9bf93b1816d98da34554425ad9c77982043ffcf7e5cc4f109f6651a674224d8c29d2de891eb',0,'2024-03-29 17:02:24'),('ae5254ff23f4b2bda4312758b745b49d00985b3da9b30a02100e7ddb1074caac31e041b93394da7a','e7d8b831686cbdb3a8eee120ab0b10efaa4f5f26e97912a63850e1ed244aab1d267a0b5361c06666',0,'2024-07-15 17:56:41'),('ae62b4500f93237cd54e3cc9c8cfad27bc021fa53eed6deecbe03d8b19dcfd76364307398001e2e9','f3aaf62a198dbd47162136779185ca7a02264074dd360dcb71424bb1d59be72fab6cc85b4b6361f7',0,'2024-03-02 09:15:09'),('ae687d91121d98d8889628fd26cf74456d4db38b6c5bb13d95a4fda0f90f8642821d6c7ed05c372f','e0c87ad0164157033b9f6abecd81501d0fd7ace7efe32d4ece58428084d85e7d31ca4f0c0a30b00f',0,'2024-03-20 07:25:57'),('ae6aa55d65576921e489b6139da079e4a5b07726b8d22d4f80e2a278b074f73220eebe6b3c18abb4','bdc874be2e5f426abbd70aa8a283136623f4421b9416bfb61125ef2c6d33e16e084d0ed51e67c7c2',0,'2024-10-03 18:47:42'),('ae7062245e10f0580ab942b739b69265a1990ad2998af19e39c1067c7b3ebb5d0cc113b5ac823fe3','0ed1b7545512adcc9160378f6260b5c89e31822ea2e6f2389bf2fecf0153c3c88177bb569d9e3a53',0,'2024-09-19 14:10:33'),('ae7172ee22a839ef499a3780404088465b09b7cc19ddd750c3fc004c238df444289238499057b3de','2cf0d31d39f8cea1efd0c49f09c745663025a647ebd44d9c10223ad02a837c2d81cd1e509a82b14b',0,'2024-05-04 18:41:42'),('ae825b5fd53b5292939ba87abba5957b3902bba634f619460093c2abd232c3538001be746f4b9811','786521b709528c7dfc996a6b12bf43199d8d960a51f2df6472d36eb5838a5ceb8b9c5d125df14813',0,'2024-04-11 03:03:46'),('ae831904d4518308379304186f7b60b475c81ac377f9c9bddb45c25e8355ab9e33780d7dc092d8b4','7e7b94bd206bbe2812ec601885c75f593e3d0be00b5df7358f2fadcee1bc17cc1bef78ee5c0907fe',0,'2024-09-28 21:06:57'),('ae85cddfa33d53b04c3ce98d36c52691780884a8e2b641701cf7f85436c4bd0444944caf236810b7','4de23c6cb1158e6f1fac7960d0066d6b90de569d57cad438dde6f9788840828c1a257975c6096f38',0,'2024-06-03 18:45:21'),('ae88396b8db667cdd8132798c4c692435bb08b26f4172dddae498738c1e2ed51a1765b8121d6f8f0','c82e0b2bfa074fed907b1f87bdc52d25de49d4bed8f5cec70be812ca6a73b8ea67d5b2882a507168',0,'2024-03-21 23:26:06'),('ae8b63ed0025c0ef90014e5514799f90279d3a828c8c8a3e24138b603dfc0697543e0257dcdbdbe7','9974795eed1936f19ce1b343ed0185c610114550029b47f98340294065c42e4e55e52401987f5100',0,'2024-04-28 21:12:33'),('ae8cc00a5924f957614162bb2bb44a610c948ddd3d845cca18c41d8ec9a378a427bfd8b378b18684','9763195c8fa43f1daf09efe714482c102dc38e0b9b7e6edaba84b4b61fd99c298f2ff48c4c4926a5',0,'2024-02-14 08:43:12'),('ae9d588e0f9f703f569abcd92990081bfb313d2c93585a47d15c484a7b345b7a7f8818c4957f5204','e1ce0ac4f2e772c5b6c6768f5b392b97760ea30c3784fe4e9248e43ce3122b59fccb9807aa125f2a',0,'2024-06-25 05:02:22'),('aeb86fee545b74e992b5eb07801cec9fe7da514ea83f79d7c724bfda83fdd7d7680a0e2bd23fbe24','dbe2e6c73c41f7fe1a4e9c0f7671e79747985bc5a231a7394e75963e5b3a3061ba6f442fce5fbc7d',0,'2024-08-13 16:50:39'),('aef28dc35986feeb55129383d4b31860551bab40957bf76bb72371887aa3e6f1f71e2c7bb97d3658','13b671b30723a272070938c02991a0e4f42d2abbc918641e8ab4aa1c050a5e6bfb1feefac4d138cc',0,'2024-02-29 14:10:07'),('aef99b6adda908816b0e7838630c367ab905c717cdf412c55f85bce1ab092ff4bca5d4b0a56245d3','fa49adc69d17aabc153f41e4f55e12441aaecd09278403e181046bba0717f0b3d548704ea0822879',0,'2024-01-28 19:29:50'),('af00d403df07bd33140b5a8a096fa67de0ec9c63c01a628e4e2e436de58ac225145c5fe0339bf6df','78c4aced90515a42063aa11fc0fc713e3203af1ea771db85f1800ad7f1e9416bc72fbe06c7f7f39a',0,'2024-08-03 13:35:43'),('af08667d0a97f4e7fccc4f6d912a5bf242b54ce05761786d18ac9d82c3a90a4fb3c54d20463c3b65','cbe80a0225a920e77b9c404e1ca7fb7e54ba98c6b3ca6fa89de3908324c00a69a4ebf771181e549f',0,'2024-09-10 12:39:21'),('af225f2210e075eb3dcad91779471c9376897b8b5d9cca740148d020e4fe7544e36ac5b05989c07a','5550e2b12771ae07fa5352fa03636bed063c99fd0944fca4626801373c47d5428018ac91bf1b5de3',0,'2024-09-05 12:22:38'),('af2783075a33c728a44d7cc2478b7a6334606e49ba33ec6ec84233a2405888827925722483197668','8262bc92b76d4c15dce67b1f849577755861fc0a78ac651f72b944c72108743d5ec1868424b6a62f',0,'2024-02-20 19:50:52'),('af328ce2735603a7b5b0f39026702fc2f206561905c6b451d5f3b5d783fac375514164c735231c8f','1c2a22e3a37cd06000b46555c73554954654477073cd4d104be9f8ec9126d8e275986ed0190963e9',0,'2024-06-07 19:39:54'),('af36d46269c68da36e2de18b96cc149a0b8b0068aa52dc11e20fd80a7e6bb046c4295dddb3210dbf','73337565dcb0c2ebf27384e585808c9c124890bd3ee485b8cbf5264108ce6fe07d26d014c79d96cc',0,'2024-07-31 07:06:35'),('af63f38385516a8a68acf49f87b8d69d9f31992949a3e4bdc19899632f64cdfa7fd32267e497f1c8','d431d57bacab8c861eaaf55b515daa7119e4c74be2cbc0e7534fa715cddf4e2bc65dc739c048ffd3',0,'2024-09-30 11:26:06'),('af7f0a83da6637efc1ea3ee55638c38a087ccc5a452d7833c2c041549cdcf21cb1f25971945bf452','c9fd245de43bc813cdadc54ae78f924b6420f059e171fdfc7284b825d5b40201c3918b9d1b9665c8',0,'2024-06-19 18:02:25'),('af80a6ceb8591f796bbb5684aa82105e77491ed7af9cc6794e0dc16a42271bb4006d8f0a80878601','ce636184089d6c59027d9b147b56356ee3a346fa5fa1ce6f9d6a22f9d29919ca53b3dab3c697e3a9',0,'2024-05-15 15:40:25'),('af82fb525b84b4b58b9289d7c5b18b512db1e7390b7e6601627c118adf8e7392538df934c9415cb2','1c2f330f6693f6b1d7835077b4b8cf9da5f86ba0752bbbef84e13b1224c47901dc8bd84302e13901',0,'2024-09-08 14:09:27'),('af91d9fc5b78293a4cfc9d7f9e34f5265ed8d7471ffc4014b4abeb6aae7228e46d5ff295d3ad8305','d25322a9df472ef1779b7e52ed0952ebc534122b32bb1024e57b45c85a88b5af1fd4410bf4f23d04',0,'2024-02-23 21:17:02'),('afb4e7f5cf85c6a4ba80507eafcfe6de3c07f3444e0378b69147da9e65f0516a4b5213c4350491ec','daa901e7876034a1eba78aa1ad30de8ba1e85b498c2accf7f42f426bb418fbe92a9ce1f6b2258078',0,'2024-09-23 13:40:50'),('afba3eb25679a8bc50a656e01d1e19a049858b23ff2b76ff5b11893a3f1c0c30fc091a4ac3cdedcb','d6e764e8be7334c6dbbc1dd231b91f8429f9b7a6e1147e9462a7454c15b3db24954420a69025c70b',0,'2024-02-18 16:31:46'),('afc111507471489d3ab3594b7a7ed0e41d7843f52eae88083041f2dd34912fd451f65c4d7e2c6b3f','97911193d80d2770276622a5df160958d90af0ccd9b5b88431b47022babee43dd7ca95ef82e156b1',0,'2024-08-23 15:47:15'),('afc147f90bd957fbdc54e535963e00aa71dee446b41d0c0f0a035fe3bf5670160450a347dbf7d938','9348dd5dabdb59942a0ce256fe2033904a8aee87880e1d1303b11692f453c0a9c59051465a926b90',0,'2024-05-31 14:06:26'),('afcce585f061642916f70619ddd61645dc54e306609769d33e6dd0e6664d4ce73578d1a30bb59a3e','127ec94d78326eed1a61b1354f8fa3f58e941c021eb61da703e173b2a29bf1e73782db2fa2cd9214',0,'2024-07-08 18:14:31'),('afd2c3ec47a05adf4dffb528b82ebb1d0ab90dbfe4d73ef2713fe08e991fa067b11e072e5117d203','207b7269b82ed59be804976f17d7757f11c937c0c59674e2d76dd238afe7447228259960b597bf7d',0,'2024-01-27 13:39:03'),('afe2d16fc3042bfb550c80598844a6ce1b29f227ffdd7ac2d831fbe3a0a882c57f303cde64098172','d9342526abb0a6568747a98e1ee184de0d578ef6c2f6b44cbcf53b2d570aa4f37da27a5ec8662626',0,'2024-06-03 15:40:09'),('afe32631793c952b86a4b2bbb598fca6cf3faeb7b82d70552dec209dcc3a27f56b667143e28e03ee','917e800286a44956709c262f8fdc997fbfd8426716612431ed74612656c12f2b23f40549a68f471c',0,'2024-08-29 20:34:30'),('aff924ea0c97c7e93542484e6001e8ac34494166c75cf1a1cee12e1f10351e832ee42f7285c6bc02','df17f2175b750c87e544a3637e744e67a1e09d132aba63ade196f5cacd6514c3f808da74ceae8c5a',0,'2024-09-13 15:52:50'),('b06a3df81944b9ebd84e59600eaae2a979aa4921e2c6787b32fd6171ea175273c267174a29b81b3e','6d2849903ee0f3f0f3e7fc3d35038e57a0ee5f67a10f3539df1e12e39961d0cb9b2ee88e395bf63f',0,'2024-05-08 14:18:27'),('b0745696e736fd46168ead445ad6cfa8094cfdd91a8bd0ca66da7d8154de520d43c60e73fd4919ec','a5a9c28c66c0297b1af349cc64094c760e72cec1b4f6b2bbea3ea4132fcf4771e2c63426d99c2abe',0,'2024-03-20 11:12:38'),('b07636d4977d23ac8cb77977cf5202c0f5843ec3fb3f4cd5f726f34a0d94dfcb9bf12ae3098014a0','108648acb4ded67a374af4b7625c7e17517df7a0a61ea2c65a4cf271ead24f4f61977d08a4decfa4',0,'2024-03-21 17:44:58'),('b0c4bac19f4e71fa53722cdf88400dff4b87717bcccd2544b6a81c652f5a7834b792be570c72a22c','032ce115afdaec1fa83cb485922680cbf4e5aea9fceb84e3dddf58d5e5ff0b1a9bae30f26d4da02f',0,'2024-02-15 10:29:02'),('b0dc22a386f31a8f7fe74a0622541bb33fb4c86d1a4ebed37930eb28a423e618f382a4b8076173ae','ad30244a410c9a43342fe9f0977bbc4e822d38d4499341f8d9d24bc2c4f9a5363fa97b1d261279c4',0,'2024-04-25 08:26:49'),('b0e9a397970f364bddb60c8f6e0907f7775027e5af507e35b56f27fccb95e2517293d07dca102972','ffcdfa61aaf7fbc62fea8637533c2e82eb60233288b27940d05dd62e336de0122a33b31ef5df245c',0,'2024-08-27 13:10:02'),('b10a854d31081d1cd72fa646e4de346456a39933a2dda1e6e5576c1bdecfb4dbf4723307e599017c','18ac0d73244d7e8fc882935428553c3eef679d384df3f847adb43980f6c7867a273a5813464d4ded',0,'2024-04-12 19:49:18'),('b116b6ef62f830c8f3ad1fd3069bef3b9767905fc8453789f084d14df975a3bf09ec59b2c17566ff','8d9d9e2351ea543289848bdd43fa5400086fee9983afd71b5d6e9bd00cf5d7edc0d384bdcab28824',0,'2024-06-25 15:52:08'),('b11adf5648a6f08bf5348f1d0a6349ba83f4a02284cbc66ef276cb40895a53709513d8855f63cba0','b6b75100d4f591b67b15d7bf086fc72bbff0ae9e4eeb0a357b7dcc70311c5f6ae9d1f33c095c22e0',0,'2024-03-27 22:15:06'),('b12c06cbd6af59a7fad757857ff936718a724d7ab8319d3ae73eda876924665423171c2a5db1cd33','71e1114bb1aaec0d7a6ccff10ea1a79dad331ab34621b8c9310531457a22e0909ab04ad5629fdc90',0,'2024-09-01 23:08:38'),('b1411bbb3fc49d70ddad713155c1a5b4baf73d96713314ba1f133df81de445585a07f630e81ca375','aff667799b25c1f19cb22e89c76ab8aef78c9d79c01aa785f5c1b213d54e997356b7aab11bdc1b7c',0,'2024-06-08 09:48:51'),('b14173cfde63afed18cdfdd5ff99dac22a1aec0670a9f6ab238f713eab02abad1039a13ab4c71c76','3893fe8e2d4deb14264ab92581e49edb0b8af5c639a5adc2f5d2bdeaa957acaeb65a63a348dcef6a',0,'2024-09-17 14:50:13'),('b155b1d69716f1c7db3315e00bb22f56f85ab5c94bb94950624bb2e3f3fc1aaaf6e1934ed63ca3d2','f19337a1fba0561d1c7305eebe2099399fdf24aeb92094097df48bab786a70f04ff164d72a055e42',0,'2024-09-04 16:23:03'),('b169b5b77b3d45a4bfe4003cd37ba7a26834cd0a14284144b4d4b11e9dcbf7bd22f060d091674f15','c8aa57049aea373ba89f8db828e1f1bd6ca02f885a04f3f8b75741bcc88cebfb3ce4b0177000806c',0,'2024-01-25 13:16:29'),('b18ff09c5d9f4f8b76c56714a5a68079f3de48ab2e1a668177e11cd260a56a936eed549c0b1fc757','45c0f6df16e715f1465d577f0b6307354f471c4ac590735b235d87867859515fe0e00507bc6e1d57',0,'2024-06-28 17:02:50'),('b1a49167bdd633ef1d295d6f271fa5f164bc2c8d34fa4aa2eb02b2a8f31a15af02ba9582abcdb79a','7402887922c3774169b3767873bbc2ce73f2d0df105650a438fa94fc16ef95bc5c7b187ccb0740e1',0,'2024-09-18 16:32:54'),('b1adccf6d333000c6c405831517a209b49f2404461ee60e42478e976ab1eff8e4df82bd4119f61f8','eddecad9d9dd31ecf9ece954e3c23848cdea56065517e0c763ba9f725c5d39f2441309851b891868',0,'2024-02-28 15:30:30'),('b1c68088b12e7a83481ce66e92d989aa7143f2ec7f6fc41b311a749b475f6903d0b469fa62ec7da2','66593bf03b531b1055e353f4360b8078f28f7e0a8b0be4bb9c1078dda822a9d4cb5118ca4effa940',0,'2024-04-06 12:04:21'),('b1cebc8a2b43329b6e2b8cf741c541cd9d2c5c2fae9c948a2e9c20b1e1a16bc94473268b29864713','73b00bef9414fe019ffb7912ddd2b5a8d03cb5542d419f642bb3452226ea8408372e36fe73ce7e90',0,'2024-07-20 17:27:12'),('b1d92a8407f55e5bb860c578911fc0fa209f97930cb7e8c645239b524801fc1db63d94684915af45','afd94ec964a8016d2004b31471927856f516890aedf13832263d861d756f1f7492a4629c4adcae80',0,'2024-02-05 09:49:14'),('b21fc0f06f427c89fbfc75d85e8b228db6aa7a0b952ea77e3ad63a9d38b0df6a4f5d55db9355334c','38bc1f1059fa09532edeb2c64801008566bee06a9ba09df6bc4f1bef8e476abee0f794500edf87e3',0,'2024-02-28 13:30:47'),('b2236c79597497852c470c141b0c85345ba45d967ee0bcc00b1f75d87bcdd06982ab6bb8bcdea92e','cf6c2f75636a4f396a8545afe3faca7dc4a069998d21c4d14849bc5400e4bce7f314ca9a38100cef',0,'2024-07-10 14:48:39'),('b233995668cf0f4f1fbb784f6c9b0499577c6e3010b6c069d67de89912fa525505fe8a8481007415','177a98614a4890008dfb88441c8202433e101afe06ccd5ba731c15229b346c1a30082717519d51ff',0,'2024-01-26 19:14:53'),('b2378d599986e9bd47b4fdcb1426a2e9ee77b81d3e224436622e0f493dcae107be60fba27d02fb82','96c5f0d20827f15d431c42b1c92b69ed3864e2378a595b25b15357864325a05f951c21245b4ec5d6',0,'2024-04-17 17:31:51'),('b24070d869e99b34c10c557f3286233f79df1c5da2849eaf473d0dc6398918bd23d3e0b23f9aff8f','d2c5e3dcfd8fc525426a3c94451e2c6d6f734f4b6ed2fe408a00dad0b6c2fc5fd394b6211b779221',0,'2024-01-25 13:02:54'),('b25b5fec2d820e5904c26f9277f7572488150bfe24437771085d1eb35910dabf870f5c19b3bea54e','70028be9ddba30356b065dffc1630eb2a28fd8a2276dd3b42e86a430140490b241112fcef6003f23',0,'2024-07-04 20:21:30'),('b2826c830b26f2a31a5177c89679f8aeea63f261bf250c0c5737e605f6da1589daa7382fbc10c6e9','46ed10e8765270bf08306fb96307d06c19605ac9b4aa67cb6cfb7a19aedcf44ebf4226165a16d12b',0,'2024-09-30 19:40:11'),('b287ded3f0dfb681729772bf6012c1bd6d38fe167e8bbc2f2122168524edffab2e2522f13adde298','8fc94a5d3aa9268f28fce6e75dea85763f8c6e57a5ddc568bfa62b7d04b7474d1177d8ae0e0ad84a',0,'2024-06-29 16:36:19'),('b29ea6eb5a235ec802338dae988d73c9cffe7c58454c1f33534d950c3eb2a5c3c62c89a121147f61','37a0eae4959ca385f8c4facdd30f3c2ee267ea3d44710ae94d01b2338cb23e1809543c91669b9098',0,'2024-06-20 17:32:22'),('b29fbaef2411a4077e3fb8f3af8aba5f30d01c09e5d69a4274c8c0bbcc75496da7d2823663f02ec1','f37422fa98ff9c182e2484fdbf44ab1e6ea5bea4e9ef6639a8b03dfb343e32d53f03f8825ff7bfab',0,'2024-09-28 15:42:07'),('b2b84fb40d292546f6056febd33508706168d2308ab06d43d26a97ca927eefab12d6e322c3c661cd','d2c24829dd92b0d71f6c29e5c1a67738ae3565a06d2fdab30dd4c72d6e242b116ca0dac07b94490b',0,'2024-03-11 13:42:19'),('b2ba9d429940da95fccfb2015c866df56e0ac986bb43439e1fc77e148eaad81e746ec0b8886339b7','d98d7a1ce1c63f7e399b7a5aa45a84c6bc8fff123384c9a169711d1fb9b1a7adb6cb34f0b635e65e',0,'2024-01-28 10:34:14'),('b2bc3e639db8f8cb1bf15991f1c63eb0c84a99b4f3934123d712953cee85dd905225d911baff4b1c','7c8317a3fdd97a3e48e57fd12647bc3ada305ffdbe365cbfe84953303bc1c0d2fc54dc2e7fda9a1d',0,'2024-03-13 14:08:10'),('b2be626d870c44fab2096748f2fcb004246a80497649a72ed6a29eb990a6eaf22518af8d1fb5e63c','0a5e8608eae9d0ceda8508930568e4b941fa3ed8732ecb6b9253e801f6fe09c4b771da4ef6da13be',0,'2024-09-28 12:11:07'),('b2f88ffbb11eaf8a46cbfa23baffba2817e20ec8f72f4255e09bd1839e4e5ea63f072872f3aa9097','eb94cd55325fcf62be0dcdde3def32c97abc432ffad7d7bf45c7a7b62fd1c44a3ee0d51659987217',0,'2024-10-04 16:07:56'),('b2fdb156cc88367e6e91b968c7ddc0b13f082f5ee57296f6d8f4c299af4dcd76a769ce88af652cce','9e580a2d9c4df3f59072f18b82cf6a17c10bcbb008114f9d87ad6e448fbfb71deccb949c0dd1a2e1',0,'2024-02-03 18:06:50'),('b30d8493b4752d172d6efde6741628798d97a9d643c09cd20c10aa5a299b1a5e85e88cd2004dca81','4ee85748d6d69492d29b2f9371098b4011989d23caa4e1ddadc95c1c0d2f18007927f343427d558c',0,'2024-02-20 20:27:12'),('b30de16cf735e69e1cb60bacd1747a69622ec21579afc1016b70a3b4f585af23dea73f1b624401dc','67fb6271ab54b62fac233f8905f7aab6485ab8a1c4274039d7f2832ef0d29e3817407b9f78dad64c',0,'2024-07-30 13:24:39'),('b329fb34c937b2736222e52ef3cc9054eb5efb8af47bb9cfa0e616da41a28f22a5ede202969b8422','5c2624a28106fe919266c8a77137c81bb4365b49e3581602026309336e89d62a536db3cfe81c12e8',0,'2024-01-25 10:11:49'),('b331d9b45199bc61692d785abfac33bb1a65d98e281c18e9e839ae044bbdb06574270023fd504fbb','4f32b8740e04c0287436c91230cb79dc8b9217ba3600565c0c88ed4bd7ede5890378f2c3e77f55a7',0,'2024-01-25 19:04:26'),('b33a546f6f70dbfff252dee719748926930d2ec9eb25eac005a366eab15cdf63b593234ecf813772','81ad7143ed36d8414366b4ce8b335a52e57401c6147dd0456a6b5777446e917f1185566880447418',0,'2024-03-29 12:06:59'),('b33c5c076a6561b8cbe273be1de65ef89b101a6a367374841f683e38b01f172650de0a42aa331ae2','97f8c53a7777ed10c3d2f9720fc737fc1ef4b7db5dd0f353933fd6c2aaca383e36a0b293afe5a4d8',0,'2024-05-18 23:42:12'),('b33ca93d0db1a1cb3c48b00a5c8e5e5f43ec22c0fd699b6ca6bff0f179453cff178c49bda874c18b','14a1a1a68720ace29a878bd0ce4834a715f4fa7f55d4817ca0d098ac3a265566668e8a45b6496846',0,'2024-08-28 19:06:23'),('b33d7f62d52c52613aeb099f50b13af0ace42adec3ca3c2998b140dcad9bc9ea3cc0973b4ebd72ad','492631282b1efad48bfaf941ab495ddafe0e17262ee09b059db87fd2af1d935539012a30a647ff6d',0,'2024-09-09 08:31:06'),('b34d1bad4ad89ddb29bb7f4183b355db6b78d32e23b57c66c38ee4db24e21042805f2c6cfaf865ec','9713490eae2bbe39539da9f78da934e36eb5ef23935b8207d120a4386edc0b896dfc7417703fb4b6',0,'2024-02-22 15:32:03'),('b34e6c3b8d484241d936de186fd0d0918f56bcf6e99d1916d96ae086700f21032a8a2005f7103e5e','e04153f438cdf50bff6057c0ff247fdbb5302f230c330add46c6aa64d884b174c5766882d1a1cebc',0,'2024-08-09 16:53:10'),('b35625f267a99d83214c007fa0b97bdc469e08e53b760ae9a418828c279d031186b263d4822c829e','efa9b1946e2acb43537c0d889ca4943e7905e1f881386f72c7b525e7585bdccd59338ba106d9e8e1',0,'2024-04-27 15:51:44'),('b35e44c5b45a1db6220203d49504432ee932656f74b7ef5a0679e4c082c8252e952a9bad38fc3ff4','8454e6cb4bd68f4bfd05185949b6c20c5a5d4a7518da067fa2f44c6bc81076018d79e2ff3ec73810',0,'2024-06-13 17:09:38'),('b370b1187e811ba71c10876830871aa35a840609af7ada4fd2bf5eaefab25e94bab7ff84ef17e7cc','3e9a81c7a54e4c44993f496f4a8219553c6bafb1a4937712ade96e7132cc30ade4354bd7cd1f6665',0,'2024-10-06 16:48:46'),('b377253c319a31895564db0f8e505e2ddd2b9cdc4e5a6d86f37a97a689203c4e88343fd92c15ff71','9e58d60e94d7512caa4a4b76b595107bef161336b7e65ac83c83a41b3bed16d6b44bb9ac19171e6a',0,'2024-06-05 20:31:15'),('b37887f3e69423ef19613712b0d93e97361a524a3d2f5efbd4e0a99305ba96688a1a4877e12f2c96','48b42706bf0a820e7b1c843186876d336567cf13113cf7b63ca0bdf80ec9f0c78afbaacb918209f7',0,'2024-03-09 15:30:28'),('b384208947e9fa5e7f4d72bb9a7efd825723acb09ca510d0e6830fb9b3f5ceacf447be91f746d8b0','6c7fb99e113a7e356ea73d003e356bb1427599db8b7121fcac2ad1170612edb623156ae1160072e8',0,'2024-03-15 14:41:43'),('b391b5f6ea601ba4deb5d334ee0ef219b192ec6591cd0e64bb8461b3343b24f9ada34fd544ab90c7','6f9e2825df810009e945c61679747c22672b302a7dfd7e42274e745d77d8b885c577172d5c1c34e0',0,'2024-06-28 15:13:17'),('b3933c4d298843bb7ae126128b529296e8c4322112d94a2d7f8dba48cf4185e27c35b643003b9178','09b9bdbc789e3e911c1c6b84bb8f4df3ac3ec8dbd5f8f3b0c340937ea995385c914688f8b68785c6',0,'2024-09-14 20:00:46'),('b3a0fb2e83de64ca2272d3d816ee33b8bcdfcb145d645798b2063a9defde2d667f3fc46631e1171c','44df242e1ef292b3bf08a5e46855e703b560795a4811e1c25e7d31a5c46e8dc83f7453f19e2542c3',0,'2024-03-28 15:46:49'),('b3a1e71932e005c24851da1b6e150c5d74fef75c871bee91779486b101bcb57a544b58c1027cb671','af933946a407883dcf895a872f098d58866087344ceff78728f19fc86fc54fae05b79ca3e36334f7',0,'2024-01-25 20:23:26'),('b3a3a980574dbd2133f57b953baf9b23a6926cf21ac566e7edccb060b4b5c6edf9e99530196d5b2f','f124d7e468faccd8cf208a958788ca1d60a19860a7d31ca9564d8fb3980009688ca9e131011e631a',0,'2024-01-25 22:09:40'),('b3c10b8e841a890349a24f3d971bcb7249c7aa0a08d8c98bb05f01868f322fc58a25f42723e0cd07','76533f2c898ed646920652995190d3fceea649b1b6d0893d0375ac990c7257eb14c94ed6ecd5b0b1',0,'2024-05-16 14:24:54'),('b3d55c4452fc330675220cbb0ede126147d7880adfea8707af5b8861b9be9ace79e51988192337e9','04f585aba535e4e8f0141dc44aecd00da47aab92872efa7d20f18c723f3a80643446e6e38fbb548e',0,'2024-07-06 10:46:34'),('b3f5add11ea4605639e7955cfc95782f8c9329c075cdb7dfd46985e6956f8049aa6026dbfa7128aa','19230cff7df394bee71530b37314a2d884839c2e61300a18981a5d088d3853d5f41c80cdfa004d3a',0,'2024-09-20 15:42:24'),('b40256a6abf411d39c154c03816256e29b036cd20e31bd30c16b3e98b468f40dcafef6b5ebdb7e1e','daac3444b135f8eef35a3a1bf6a9b96da78e26e071d50c112c93197547366458fce55880207947e4',0,'2024-06-27 14:23:13'),('b40de867d6c53d8841410ccb5ab629fdc9b3dcd88e1db596e3a2f96d7dba7e43fbf04bc937e30894','e0c67778af7f59a134812ede40952ba99a710a955e02faa59ce40e8c9909086b9aa484a2c35d7c0c',0,'2024-08-20 23:46:52'),('b41799e3cbc0064ef99692fb432cc861dd5b3cc9eb07ff8a16e6cb6054d19c36e41d60faf65976ac','6cb2f22def3535de51146d7a5a942969f0201c224aa6edc4695a13b98d253cc28e1b15067a5d7306',0,'2024-08-16 20:48:37'),('b4552094822a0b2e2206b136413a955f9536da5c7946c2c4c234ebc6743cab0b286fb19074a502a3','298a272dd25fcfc859f313803d423ff6d5b78da9d6ad3ecc52323fea25ff8516db1a9b57864d9799',0,'2024-02-13 08:13:36'),('b45c022e1ef767d41c1139f0053f426ae433980b7529dc0301b42b86fc388dbe9658318247f498e6','ad4a9a8af1c6624d269819f54b7016ce1bf8d3328f2d497f485cd6a8df4b2a96e739bd98c972a9d3',0,'2024-09-19 22:16:24'),('b48305ecbf811d64e6e2ec1288c3a0197d7c5f90322fedca890f5189bcaea496aecf0835d1eab89e','3a0ab070369b7cc319003025b05e4e97595ff27d75a5033b978ee5b89a70ca4bea14b23a0bb559a5',0,'2024-03-28 20:01:13'),('b487d94b0a6c88659115871a2c98dc388689589de6b45dfe090f8a7f55d38d185b4f2f836933c3f8','6cb21aa6a2c8128acf8c4240602e73eb22aaf5cd2d0cb709eeb122495704bdf1d9a975cfd910f465',0,'2024-01-25 10:42:40'),('b4997fc1720638d9c28894ea891ca63b1c249eb0aa31dc7a09894e7f070c24ab9e3a7ec9db5432c8','2f1aaa74f6e947359bdbb52bb17eb0cdc40a63780255cb344e2b2ecf43c5b92831094bf2481916e9',0,'2024-06-05 19:38:58'),('b4a2b8f8c56eebd04a6d565a1335ae88276a6523f195930f4266646fae78fe81c5384b852029c25b','cf3c061169f94830af038f2c8ac8443c2b7f8808bb1d099b7aedfa1b18b15fa22af07a71eb0f927b',0,'2024-03-15 09:21:35'),('b4c11e90c1bd902c4d0a444e1e8be453d74756a66e51e7f23cfbd3a6eb3d2f2325f926047dbf4809','1764072c7a3cc11cfc4f1b188de5e3fb2456a54a5188d547e3c3599d83acf7f9c1625e4130cb907d',0,'2024-06-04 14:43:40'),('b4c1ecf23920565652778cbd6fb8ac0152da8b0d5c6e4264ac7b068f055c6512344f2a0b3634d776','5363d1747716df11af35632d8c2ff0c04bfe5168bbe8495f45da556d4e21b7d47770ed9f33e0e1d1',0,'2024-08-26 10:33:40'),('b4d11d08d79a83dabb626f244e7db63872a8d142fd8f928d90dfc09f1cdb7292fff1293be27595ef','2bbbfa6af1ba16b1736bfffc453c68d9b323cfb79d949e9877af57d8edd703bc084e046a826742f4',0,'2024-09-11 17:16:35'),('b4e48bcd97fd334cd1186af0e20de62587629b5bee8b4bb7bd1bb022954613fe66d59522607a9fef','faee282e5fe7457cea9053b8d4609555099877543c828347e61323731ff4cf81039f8b6e4cfc38f4',0,'2024-01-25 13:26:29'),('b4e50f61659b6836482ce0f8fbe4ae395f5fae8d0c045c36fedf93b362a94984b1c16d97615e592b','f7b597625d7cc146cbb1c19406ca6bba42518bd1635bbbd631aeb1a0e11ecc63faf37a1f9701b560',0,'2024-03-26 23:45:41'),('b4ebd46ac410cb99ac7f8e5aa924c7e5af8651637bafbcd9ff8908b0e4590c2098994a5c2c380d8a','346f093659718cc0d86c9f580b2d06d63713efdfc62ad0ac28d07ccf8978c061737d48c147ab55e9',0,'2024-02-05 00:29:50'),('b4ee42c682017b6dbefeb34ba8ad7f73b213392ac811fa6d884bfb635a2948f2667b8be8e2aeede4','dcfa52be0134846412353c24909bffdc12405aaf1d92fb8671fd590b85ce70a219b39918d81d1d8e',0,'2024-05-15 06:43:59'),('b4f2968aac2594527d253fb110de408368e99532283f85a0a6f39e85cbc7f916bf48cde4c0c70e91','1b223cadf725bbb6a6dd5fca8f2c3602f06d08b6682b2860c5d8f90a5594e694de4f7f5d60857913',0,'2024-06-08 16:55:35'),('b4f4d8bfece39ae9968cb52499023a7d8b9f88e686d7a16a6a106182692538a06a185dc18c2c818f','f3eb8ab823ba517db14128ebdec704fbb0cc8867c5d12197254322a7a309501dfd1710a5a5bcd4a9',0,'2024-05-15 12:32:28'),('b5075d7ae44dc12be2856539ebfe21ab3304b3bb9b8c07fa42816de8d88ed2f690255f5a6a636123','a212eecdc11d843403695627dfea24b48a924ad165eaba78ac5bb48f22bfbd496ce9af5c23069273',0,'2024-09-28 14:48:27'),('b519ba8692190b5b02567aaaedb2ef6ac34785decb9143ee01e281fe33e496b571768701025b6b4c','a3b7249dbb17bcbb6db81c789aa684aaacc33fe8106fe8d9954f0ae681379ebfec9be0e72d4b9751',0,'2024-02-01 09:31:04'),('b51b2b266cdba295c4e947f57455ac8b27c87762768e9f6bb30aae9abc18b36c7270f12e5557bf45','4a95fa47fa1498a386b8a60fd581299b0df56ef1141c5b28bbf6ae42fa2260126e2266d92b66df94',0,'2024-08-16 09:30:45'),('b51e6d20b46f687f3d5a3b2d01da1a6e5531a3135b8c6f84b3394b662b975957f8fa803608d682a0','bcb4070786d1a358cbb01f2dfcb8aa188b2ba01159c1c9cd193fb5bc7111cd5d2a5d1e97d10ab8ef',0,'2024-01-26 18:03:09'),('b5326155f76d93b71594b6f424a38782120c17631cf064df1d66a126453b5ebeea42e0522fdb9566','3d9bce4ccb576f252888b8f7fa76e08766de89e4c598a5369174cb3f78956500f748ffe2dc9df223',0,'2024-05-08 17:07:26'),('b542f049998da5a41634f8c87d9cb420e86d6bc805efbaa55a99f3567ab0800d5b903110c4e32ad0','1d4a61e0e98e5181ebf21760012b8b5f7b1e33b908c1eb42bf5777a61b1ac5bb202b34bc365999ce',0,'2024-05-27 21:24:29'),('b545a774e21278435eb5a4132935787b0829c1b3f56ebb9227dab55258ab371c816db1de29a877ab','78065697da85a4f186bbd57eaf4e015d339a9073a3d3a7baa7b26e808acd482d2226e895a0915f75',0,'2024-01-25 12:33:21'),('b55d1378d2425855caa25cf829f7e6c3a5a50e1a184a44615bcfdb9213319a731ea012f6f522ce69','f8ebd6491965bba65a7be4e18f33258f3739ad764a702b28160132ed135c11643138bb378cd75598',0,'2024-10-01 07:21:08'),('b561c5c811023a737fae9bb09dab7640cf12b4f5620bc0b61230d53c9f09a0474f3c8e9ac78c7dc5','ef65ee69a47ed5f4752e1b13776fa9d0ce18a530cda3f2c0d01972ca61c102cae1aa5c0bacd99189',0,'2024-04-13 05:37:48'),('b576d25a5d2f58dfe9600dad3f009f8a35e03c8b1964ac8739cb8a9d340f00184a8febf7be3934ae','d738365f89e5a3f1fd3e8e19e45e6155365a43a99f1fd4c192da687cbe558b8862f846e8071b0cf7',0,'2024-02-24 14:17:53'),('b57d236ed16f8249dd833743f0d75b37a703c6ab8eee2c90aac081d9ddfebb66bc8e1c7c77f385c5','b19783b60afb7a56edf2992f6fd00cea92725c1c5cb34f04a4225e4694be7cac5094a920b922e1e3',0,'2024-07-21 08:27:36'),('b5822e63cff6ab4d4ed21fb7ce418a57f54f38c034dc124cde0eee1cca7ea76774994ce770f11363','0f6581bfff7b361647653e86ce4507a11b8bf402ca62e8d27d1204cdef0032ecda2d0fc9eb380dc4',0,'2024-05-31 04:01:16'),('b588a8bfcf81a080cd6783810c3eb17e332ad0262db68c1b0f6cb20a17a56eedb7508888c2ddde02','5305e136ac80c0da2d8051d1e49be04868311e5ea669c4e68f0f40d0a2770ec2445751444d3d4d43',0,'2024-05-28 09:15:04'),('b59ee4ddaae2bc88d84dd795071eadd4a63e9e417f89829db9b0f2636cebab53717c14273ef3a678','4ce70ecb28f9766f159beeb1acd674a60e1a431dc80648b1098eafe5a133fb94835206a8e4e50d2d',0,'2024-04-20 14:47:19'),('b5b5d45448b2aca47294ea67353b70ca81053f9b38a90f10bf9abf9d5d530f00c9391bd3e07423e6','45e1aed850d612b12cc9836b1e076fdf221e98e57268c24daa4bbd3049e781284527590a4dcd384c',0,'2024-02-27 20:52:31'),('b5ba9dfb24d9053b80bbd127d823f1b2b286f6daf321296feaecb9007a35f06b8f7a79a38600f895','2923bc0446b9f275ed2867a1a354ebb4af9b1372dda1aaee9dbb0de8608d21fd79ce3fa6634ee9c1',0,'2024-01-31 11:17:31'),('b5de1888862a0fb5dd02827af309dc6e283fdda754bffaf21f9f8b433690da88ab26323fada24c28','c026ee48f73f81b16883530d9391507b324970251a108ec0f85724446ed2c7129b362076edcb1edf',0,'2024-05-12 13:50:13'),('b5f15e975aa81e3087a84476af5c6cf50947230f1008a5a1ade07ccca1ce27627c61db6f2e213477','a01633f6dfbeaa289778c8a0d32acc0e391b539ff5329c9e6114bb5d0fc581924654f26b3a28a9c6',0,'2024-02-09 06:00:43'),('b5f37deb01b8d55fa04a4560e8b83c96adbc1606be6a3c3e27d79118ffe721e76044db5c080d9de1','4f6632d3fde9dcdd028a36ee830e3877c2d728dd0838999b7603c4d989cf6cf0f9dfc9fea4e76dd9',0,'2024-02-06 07:57:32'),('b5f59655d7a5f7af361405ffe63ab5e76c95cbd2b034a6ab02a31f355f07601379e067bb945f281b','5f229ef8151838883f687bdac8d52f362284b9d51f619ec1fef64249dd427a7dc518d032da0a7f11',0,'2024-08-02 12:04:23'),('b60ec0e71f9183364d5456ff106a4deba55cf7fded3295754c5bd74088b337d0a69d9f19fc05c122','2318f601edecc3bed5a47f9158ac4ec60196e00dee3c7867488c7e4dab0ea3952da980170d4b3044',0,'2024-01-28 14:18:11'),('b611ed6c04aab47b382ec974f9567e04216cde6d3dc5a991d182200fbc3bafb0e6f4727068679fa9','12931697ab155fc1ced11cffad03943b3879b528acb37cad5bea024b7db36ec31232050db1e6aad0',0,'2024-04-23 11:16:44'),('b63bb4281474d19bedfc36bc941e86ec554db2f80429d70f683d4d0037e848b68efd4b1092cdf131','eca26fa38cd10eb155b114ee800823a13092cd057bbab608a0d89d8f19f59bc67766c94a87f61194',0,'2024-01-27 10:19:03'),('b6490fffe34c196404a12904ef5360dec49924c56584f4fe47770d21b32101507d50c1847ba53670','f6819712e8f08822977b471c9034e887a7f677df8c0bf8174ad231d7e59c3a5dfb217c49916b8ebf',0,'2024-01-24 23:55:50'),('b651defca228bb7a9f3f7800ad950b1ec34cc32acf537b32254221b4dec4076d57216d55b86b5eaa','2d92e77422c0750189e82570bcb1ff8301c9470d008c1735ab2bc370632bb0572f7bf04e93b119dc',0,'2024-09-06 10:12:06'),('b655ae0238fc96f746ca54c650b5b19e1b8fb8474df2c89510eb117154fb82ce39ce935398a76ae2','9cc26ff301bd692f95265fb02c0502d903513eec57df09cfc1f8b6e769367d596d2e9427b58b7524',0,'2024-07-13 15:01:58'),('b66d43f1a7c3fd177ee49f7e34a932d0f5cb7073e284d449b44a028f5a07969c7deb7ff5fa829968','38cd573637532db5e8dc5d43b393e7d09f9166b8b17a6e7f00bb941243e7312533e47acf194bf09e',0,'2024-01-25 16:21:30'),('b675ba9a06b7e602eaee7a773666a747bd8645a41aee54d940cffbbdbd27ad9f585ccdf6f36a3b24','fdfdb3bd2b0ba864a3e63e973056fc52b57d05385711aeeec9cfb42aa47e42e27a3bf916f423d744',0,'2024-02-25 22:15:25'),('b67b416fc1a6cf182f3ab4b8bcd9203502c751ced95bd09d73ed9d908127ab5fbb2b149c37eb4661','35b7ee109eacd102797616a5c1ea03770c1d0be98acc445c47a9a51cf73e88000e1ad1e254181e3f',0,'2024-06-06 14:50:35'),('b6897a2c9a396cdc2915e6b3734edda0746df306c18f4ecd461651624c4171c624ec9590f3649acd','f34a5494f1c034d163b93fa9fef87de5820488aedceee6b30bef396a34257be07af6464f25634c6d',0,'2024-03-24 12:21:41'),('b6a8da7d822d071d8ba6903ea5d4bc85fc8819ae58c62160e3d291e12bc3c266f3c5c3dcd682cd39','d0c74eeeb4e23001f61fc3c1319f292bc0cd79205cfdc3f918eb5320fdc4c55298481fcb0f23af80',0,'2024-02-01 08:41:12'),('b6ba0343c1117de187557255e45f1c7f141270f5f638e818879ad7d5e66b441242214bc8c0fb7287','51bcd3cd97a30ec2a452ff34be69853fd3c325a8c761d167dd89e0aa72e197e898ceb85a7c12b6ba',0,'2024-02-01 20:05:38'),('b6cbd9fefb96326e67be4f272b94035083adb655d3b994f7054fa67ca414a38e8bf887218df1acf6','3457d481731ef029a8ca480e8dd4848eeafca3e6627310936f3550b636f1bb190cfdbe05b11d3496',0,'2024-09-22 20:52:53'),('b6d40b362b071fae55ce5c1b084049ba7d33c6029cfb5e4f4e5066a7347de0b1caa535c710d5a511','490e2f5e88ea03e7617afd8b3681710192a55cec2e19d3b87bcae56d9873755086dae9e3da5e6f52',0,'2024-02-07 16:02:04'),('b6e4e8324c66173516e98528553e42c841494786450617fcfe31e2c172526f57849fbe4df2f0d0db','e149bb943a9ab0f55539bb1aefbb4dfdf3ce41118972a181d9c4abb78f29a4679286076629f67836',0,'2024-04-28 19:21:58'),('b6ed0943902d2c6eec2260fffe3dcdc89c738b6db9044d07244ce6574f1d0287c64394cf4eecdd59','537c54eb7f969ef186edfa966d93863dc165325c3341802ddb9d9d88ed7c1c9602bfd562ce700904',0,'2024-01-31 19:02:22'),('b711a9f5cb7cc175b14f7b7ee7f5a863445069951376febcaef778f0ad276940ae41f60ee3beb890','29d9b445b595b1ac58a91465165df459c4a529d2211d0ca4f2669a7d5689fe806f55bc2e407594bd',0,'2024-01-25 09:39:32'),('b71334fa79b63aca4e583ff6a66dd1297b2dbd6e3c05e93c033cf77f8ce8ffd0aec1c521ed932d58','640dba9ab103340d06ad5460bf56c564b9190e818d88ba863806a232134b1a6302114f22efbd9b23',0,'2024-09-07 15:44:37'),('b716f155d61ba28be56672a89f88d08e7e8ed0ca9adc380f080a5fbf2bb87d69496887e5c49bb525','7dcef707bb78bcacfecc8b4c1befb80c8274b55e19d43acbeed5008f21189e295e6edf2431e3b5de',0,'2024-09-30 21:25:08'),('b736d8cca78664a764bfd615e1d50b21afea0364fd15771429a9e02ee44582b53b5854e3b7a98dc5','5b930db3ecb568f1b3647dcbc8f8fdead6d2491af84225cfa780dce27f920cfb22210461438170b4',0,'2024-03-23 21:46:04'),('b73ae183ef72051a33f65fda8371818a291c74e47cdcfac46d6cdfb116462ab13b1ace20d242ea19','8e5866437aeb8510583d01c7d4e64cf6256568c4ea7794994928bfd5d92fcb0238ce11c3eea8a3c4',0,'2024-08-14 23:19:39'),('b753ca0ebf5febf2863623327d98cad20583a581fa7bd45a4447227f893d0765874dbf3f8f97c3c5','e3a613a54bfd02f413d73891317c23dfddb9325979c45e27593a6d785c4b9be40478b5e84a66f927',0,'2024-08-05 05:28:36'),('b75c4205c482a4e8026076b3efead69baca6bcff8bc1b273a09fca769daa1178ca8cac2c9f90774b','49d041f5f539271f3544bb34f6c7465f4788ac7be3e00e33c53d20b46e01501b56ff11393e49dc75',0,'2024-03-04 13:21:47'),('b78cac30b466f1b3824f3d4df2c9ccf98df2c13857280965fa4b7cd19c4b329b9bfcf7bdb88abea6','fc86af520bcbc26dce87d99e3de445843efa44c7a3bcdbddf61579bd6057af1a34581ee09203d948',0,'2024-05-23 16:47:38'),('b78d8140b8d9bdfca68c91baca41c53adcb935329c755da8fb2047865d84fed58fedb1221ee7f0d0','22a1a6932024b11fd3c0f2889e79a9ded7ec9987f9df071ec621737a6375acb253c9f25a35f1401d',0,'2024-09-13 20:09:48'),('b78e56b36e4b1ea6ef7188b6e7fe3f68d13849773b41cdb3d321774899bd474ac4e1ccb364fa98a5','29d60fa06bbc894f5647066dbd8b31d349e2c04ced4d3fcd3c1f18ebaed552e1943d305c46d18b1b',0,'2024-06-16 16:25:57'),('b7b652a3152fe73575942c09de1a49d581ab9650f180a2383bf0d7094bb0d628cf68a2479a4b5690','3a5c91b83d825e06314e1c75957dfd617492cdf23a87fe91fc13dd6e4e4d6e4a5a7fc40cc1f6b910',0,'2024-09-08 08:49:53'),('b7bc2c412200c31764e1364f9bb04880752a0d2d56e59a8544364c00afd4e69191057dfedfe195c9','8bf793ec5a30f41807a8199bdb21ba86c09edde3b1a296cb4c84d45c2381b23477b2bed5a9b9b9d2',0,'2024-09-03 14:08:13'),('b7bc9f252e06191eecab6d5c71b954e607500205f20c40fc9ddf06599124e9718e1d5721bd21ac1c','dc58c6c3bdf0b9c2daf30516ef9e40b05a3dc9b436244dde71a1338a0a53bd1071fd339e7f9ac4ed',0,'2024-03-29 12:54:18'),('b7cd926206915ff88b2a51336c6c03bcafb5c7c7f3dc695cd8af5dc8d09a294e4eacfe031d9586ef','150e8eac29d9a30247f36087ab44c7bbfa2a78f7d69743b1d21603f0784defa008b6c4b20da28768',0,'2024-07-09 13:42:23'),('b7ced87c9677efc984ffe176d2642904210b13916751b30a6608848f25cc483412b33b613c2e6f36','ebc2f70e7dd710edd52eba3c6def6b62f15e7206a7c9cc702ed0683c67fc160185c143617e0f0e71',0,'2024-06-17 19:46:53'),('b7cf33371e48a833609a990dc6881756792696daabf559bfabd5492b8eb6d320c0a06426ae57db4f','3dfa08d3c4e9f04537fb7af71555964ff6673c01b8bf745b7fa1642341856957a0141af9f88917b7',0,'2024-01-24 23:51:15'),('b7d880859c222bcbaa9b2803dbfa4b00a8ad12c23a80d74cade11dc0bf98cfcb6af21e8321e087cb','18ca10f51897b04ace0e90d3d97f989410b36e47cf9c8653b2ca0e434f20ea3c54c5d44e350d8168',0,'2024-02-27 20:28:14'),('b7dd510b4a280206c3a6db8da23a05ef8f6f3857ae4f896998db73dc01f3b9a95746475b5be92e5f','63ddb7641ce7f9563ef7b6b79d7b937d07e537604f1a27934f30fcedcb90a66706fb4fdda2423ec0',0,'2024-05-07 07:42:48'),('b7fb3a2f9d99c83c5a9356e8553d2117b4bea7893e1bfff2c25791ff845e3aed85613ae5fdb90616','e679445a69c6321e8b72108f82c36171d81e3456b62e4911a8bc9f0d969c3b9fd360b2f8cdb7fd7c',0,'2024-09-09 10:03:16'),('b7ff1055cd575e8c9eccd9879cbe2139c641eacafc0970d0c73a399cce1ea4a188534ff1688164ac','9d1ba263875d04724a35a7728575ffce0d56fe44e9fb15047b8b96b1382cd16ad675853a454db82b',0,'2024-03-16 12:16:56'),('b808a72007373907cc19fd1aab27f410bb81596a5fd86010556d3ae5940f2817a50c8dd90c23f060','3520ce6b61490e2c7c83be3f33927911a4bc5aa5d2f26cbdab96c1d49923686ddf7909c453529f81',0,'2024-02-02 14:25:37'),('b82192d3cae2ff1f99a8024542572675cf815c565fd3925575e305b807fb4688c9e50b005256eedb','def092ed4d94b0aa2b989610d2045c0260a0728a417348be30f1ab11697a2dee33aec0768aa6b531',0,'2024-04-15 18:55:02'),('b82e1b6f9477541d7263edfdca8800f149f0a8ecd23f8310ee4d13daa16cadd0a883705a62d24e31','5c15d3d5d00328782eaca839f3d797fe5f307bb21a7a236493d3a795e60251c5eaf2177fbdb37237',0,'2024-04-18 11:55:08'),('b847a7b489d61a8a334aba2842d6a1848cc61b14b2a2d8a65648f189f7830ab6d94bee519d49d20e','960fe2bfc8d6d2f8ec1c3032e16508470a86ba8bed44ec51fe155654cccc0deaaed390a6c0a73bc6',0,'2024-08-07 07:09:02'),('b84c58a61e4c5a7d7044d22585f9af6445787c4a02012c9c55e6889e074a4d5d8046d57b2caca102','cc2cce2993f909f0f8a1aaf74adeb2e44d9193a593363d8ac36b7a56516acadc2b2c97b57768baae',0,'2024-09-10 01:13:14'),('b84f962cde98e50a2d3e6e8f096d36404f449ab06920af280eb49d4eed4aa0c5a975bab3777a3412','a5c5fa5bf13aa410c7f9e481e1a47fec37ea174f0c7db39e920ff1f46f1122bc8faf6c6aa2a4cbeb',0,'2024-01-30 18:49:48'),('b855e4b6b8643834e1f3ee6b0ede0ea64400c5d9c46b85a84471a104110d70b9b8ba8430c96e154a','933ccde1cef8b84d9d72a2c56ceb6952fce443bcb2a84c36efb091363c8b2fc2fa9123e7dbb84c35',0,'2024-09-03 10:56:34'),('b85f550fbb985cb0574d93f6131760f0895fbfe2a782cc02e25224fd5d8e74b1d96243f3e67dae61','782573206b7090af5a1f48135ef1c23b304c1839c0b01fd9191738e4f73f6b84364466c667f8752b',0,'2024-07-07 10:31:00'),('b865d6eb0733a86b866e8c7da5a45aa382a5874b7208a61ef5583ba759d51207187a08869fa86250','f8aee20aba5b4c497545b5d2e0fea2bd487ae7d1057de80860db80193d45909dc74d4578cfa9e1e0',0,'2024-01-28 16:17:45'),('b867e2adb48b47957c71972a852250089b67b538a23e56ec6b0424852c9c0fa12e2ff6bc13a6fbb5','c1cfe9d471fec65276070e99af09e40606da3e2636709c1880c06d07871f655adf09e2ca7f54133d',0,'2024-09-14 12:51:52'),('b86a435b1a5bcb8c4875941dd5404ee9fb8d7e89a32fcba27992315ab98fd42307ef234a0f11e589','93539ff820fcc0932ae03fb096db83f3f8252cad377e4d61163522388a78cfb6af5120f882c6bf60',0,'2024-01-27 13:23:34'),('b86aa7a67b568df46addf1c5b1af48eab31b5a0bb4758d1d15ceaf6728d8116925ce00c4ff382c1c','6a3f0541424ab4b34edf0975a68e18ae9f70e496e679f46d853d97c56196c698617d9fbdbe78b6f4',0,'2024-03-29 19:05:55'),('b8903470dc6f6da05350cdd9e4d313f424d0fd7b2e3229b34d6c594214f08e859790639e1e327a06','70e647454e47d513d6d38dc5768a4bd934b18a8e65e1913c9e2653895693c183287aa92571d2c147',0,'2024-09-05 21:06:56'),('b894d06a2d224d6b153618f1c6dfdab5bb352614e01e7cf4ae4a1125ac5580a21c72843ef16e384f','4c05982fb4e9bd3aea58b30318ad154725b81db2f4179239a0776022615d7456a4e747e48810580a',0,'2024-06-20 10:51:35'),('b89e90e9effd7b83ee4aeeb5450943d82cca2612fc6151f45efef58b4f39b77299ee15fb29033758','9f3088ae690a764df8882e9f85c9473a15800d7e65177efada3e05e5bd677bbdda36e4b300500327',0,'2024-08-09 15:05:27'),('b8bb4e3761b37cd7b0863f003d0d077dada8ed7245ad37f64ab31fa1fc05d246a3f126433d9bf421','6348b814acb90ed6616381cfb12ec36caa0126f1e1931430ea8a85d19313c5fab8833fb1ff5f083a',0,'2024-03-01 19:00:15'),('b8bc27e3358b6efa8ab1660430bc509fa97f1082682839792ab42737d54a2746259a2c98e19320c4','d559083edd3ee0ebef990a5db8c27ca0a287110b42507df1f5ad46f8a88fcae9a8649a0cc6ac8b63',0,'2024-08-02 10:32:34'),('b8c75897cc7038903b02037f95723a110c5d271e807f498baa6b38a3789ad766fdc9d4a721c7d045','12189dd5ac5507e26e39201e00ff0303d185f9d7d3bef10c6d0c4dd66ec2549cc9f14addeec2194f',0,'2024-05-21 10:31:30'),('b8d61c3770a84dc65581c0823af025fa144a03ca0693b2fe289c52d5d679cc70109885bb12cb129f','93af0ee94d7f3294a86ac6ae4ec298730e56d37df0316d8b3518648c7ccd08c6285d1c7e67bab123',0,'2024-01-25 08:29:48'),('b8e894667b50c5179d85de18182034ff7213f296c4f86d90c84160f59b0f2de95ac7c338dfe44d2f','ac3335cf3243cc8d7f7b06c2164b04cd7b6e7defd51ef7a2183c638c0fa4c0b56fa7dd23f0cf2870',0,'2024-06-28 17:47:33'),('b8f3cbc0efebfe510a9b737e829120be5c658aa5733c2ec8bd35519d12a9a5b4e67d56c9579a9716','608cef84afe77041b2c316706c64c7185cf6922ffd8d2478fb4f0b138764c06bc459c4450b675134',0,'2024-01-25 13:57:35'),('b90603b667e7c7b48e978c7ba3b522110afc1a5ebe66304d27de166b3bf37180f1c2136d4b773d0d','3a902b085de0bd3dfce96ac20249b053cf48a3334c6458d17c0b559ece2afeb8866bf332279bfa70',0,'2024-02-14 21:14:18'),('b9126afab8b98ff7eccc962cb6d5a724f6d536e9d94203e7f46df5c9ce6455096e5ca1f9b69580fa','e8c3867f57fae5b8283a0072bd2362c2d948567f0ef6f773af4658e17d7c33a8723439f1f5eb2d5c',0,'2024-01-28 13:26:54'),('b91298996d447866162b4efe4bd41f9ce7dc645e174ef4ce74cc89e30781ed224011703c7f194c58','a25ec4d7ca1b775828512fdbdfd19bd47420718a9f5efd4b216ab147bc9f721a955fe7f026aeed15',0,'2024-07-11 07:51:55'),('b91ba7fe8eb26562f157e0e8ad080af07d0d8cd3f1c8092c7304c6c69b40e0cb35c9af26273e6d70','aaf9bc13888bb587a2d4182a8daaf7ee0a621f4c2f2b7fe4af068dfc01c09712649c465558091121',0,'2024-06-23 23:21:58'),('b920d298d30bcd0ed571a8276607e37694e14fa0aa410b8f986532a33e7601326cdb3524b69cd97c','736fede8ed0ce1b59c9874400d74860dbbaf9fd2a9ffeea1ed15f51cd5f9c1074946721e23cfe26b',0,'2024-02-18 10:18:37'),('b9324e17b8382ea6b1d227b952974cb8200132a170d4eeb8f1e28107886d2dfe9dc54c861292c68d','0fd476b7af3b4273cab7461ba7487a5027c4dd1491a461978a45658984358bcaaa773fb5a96e5e2b',0,'2024-06-16 20:26:27'),('b93b9856be4b11c5994c73b0c3ff33bacf7104c4551b5bb16d5d715c0d8e71da87c097153af1890b','d949be1c1aa58dad18c2cae43dda8dec06c97b0896cc5cf2c4dd730dc91c71d7c98738659818c311',0,'2024-08-23 06:31:53'),('b95a091c563b50d11727cd48d767e20889a9e2ffe029da8762a1ff4e77ea2f61f4814428eb591e9b','47495579bf5101c1aa6500301672f5c5a60c7b88732b84107f38f6455bdc544b63a89bbc44c2cb4e',0,'2024-02-18 09:03:41'),('b98a3a9fb8934fcdf27f6c50b31360ab62454547c57fb7c73c466e0828fcc2de7f2b36afbf39c0c2','48680c11971c85702368ec46f952193379b7a923dbd477e22d7029fc3142b5859d844bb1d2d3eef4',0,'2024-08-12 12:20:10'),('b99105e2426d8573a6d5e03487176e9619783f8e3cd1aa47eb8004cbf9fae9706ff2b28aa09e967e','af0f696096468cace53a5c043f81222b4ad5a87ad3af5a843cdf81f760e379458cc63fd29a58c01f',0,'2024-08-09 16:16:49'),('b9b48de16f6fca2ec19c7b824eb6febf8c1bfc553915310d3b4d226109cc4bcea93027c3d514ddd8','c16b29055aba0cc909836bfe52a759395d4601dfd4e1780ec370b2164b8fda3a401441e70e81a388',0,'2024-02-18 11:19:36'),('b9b9f7a05198bfe32a3db76866be7f0c348c6f633c989fc4f87c97b0db0d02c3fa109e36889d794c','7c2921e9599f36d8cfb67de9ebca08845ce42518e6d11842417d083e3429cc96c33f7ce4958a529d',0,'2024-03-04 09:12:18'),('b9bc445db312c1474c1b347e54c013622d7754bcb45d6613e7d5322ed1f2f6816783efc342e01e2a','9015de97ad301719a01ce9a7e98cb17e8e38b39f9bce994172b8d695b8f52b961a5125a626c33848',0,'2024-10-03 21:34:52'),('b9c395122f0387cdda01b0a0ae438a092bf06946688dca1130a5c43d55666bd1137b77969600e31f','69a1c2f1fdabce3ed759409b4982b507e727b4fb758ca88efa07cb5ea9d68f0ee99ad32ec6363396',0,'2024-02-28 09:38:38'),('b9f05c76f4191d83dd45ea9c3cfda060fa2fbfff5942a4bbca12454bb2f295b2e55c29f8d2939d2e','8f4d35267cc1063e0c0603e619540ecdf631d3271b45b03819a2190a3a3415e95985598689e5bdee',0,'2024-05-16 22:34:08'),('b9f138a9b4eca6097a3aa83809f6a050d877c41d9de02c767dbc0056210e2411b7b0f87ab871d1ce','0165228601e170729e8674a5ff13948c954796c4e4480f05307210df50fa1049a75aa0e13b34bcf3',0,'2024-06-12 19:39:17'),('b9f8ae2381103aa1c72114c60617a48d03222ad7ad22a45bab321e223cae3a1914725ec360cf74da','cc268f822efc60af09f413e80e38227e7454869423c52a6e7af828b47d03ca467c647eef43ebd82d',0,'2024-06-06 07:25:08'),('ba163034aecb772b62a23ffc4484d9261a43987fb8a2a1cac318c4511535765397812770a307292f','75eb03a7004c89b410eb28941e6433cacd8e16c3f7ce298cf48ffbec052fb58d7d2a62b39c71e0f8',0,'2024-02-02 16:28:23'),('ba19cd3c8d75f866ad44dddd82a197fce6cb2b799d93f689317eeaa04b371f20efec28ca8c0ceb37','e2fe62f1dea6948e53ca38a5b3301920831ddd0eebc48978902f886799087256d07ccafeb31019c8',0,'2024-08-01 14:11:05'),('ba1cbad3e85cd2df75215dc878cc590a2cf990010a8b2a85d40a676fa34067ac22d8b4511fa9a1b6','34f4be7a0751c601be933a989a3794c7c61463b82246174784a4ee2ce97e66948cc547824303bf0b',0,'2024-02-10 20:09:16'),('ba30ad181ab7e05deea213ce834d9f6cb5c1c87c6859e0270bffd7eb75aeb1a9571c35a586bf27c4','4050b2b0ca6ed8d1a1cd2f0a7f6f739b1812c274edaf839a86c29a0fa58a3237af41f92b0fc10d93',0,'2024-04-28 11:03:38'),('ba403379f943af7853b41651a573e97ba6386bc008a92f10329c73bcb499290bdf3a6bacc97d72c9','466f4c381d4e06ec7e12cb82d290d30595c99566708c6a5d6f4c00f758e5d739452da31aeacd3cfc',0,'2024-09-09 16:11:50'),('ba73e542fb1810c0953a6332006927930dfb79e4f252fb4073bb34b2acdc5ebd9d08b8b002322cf5','2d7a05bb56f692ca7363ff65ae527ef67375c39e8b671c5c5393f2456d79dcb80bdd6ea5669e3502',0,'2024-06-16 16:18:30'),('ba861876b8dddfacf64f7349fb6b77d3607aa2bcfd34c312b7b5c9d586a291670efccc8fdcccd50b','86f4256f45faea6983e7af0633b52af67687bd7b6d74fea0cc3ca3fbcae01ddda1e945182be93bbb',0,'2024-08-25 06:53:30'),('ba9197fea5919b76c4764f62cc94ba8ce40bcc7181bf2cd906ffe3cc150583a70d9db0a08ab2cac9','b675da8217adc6e7a32ec8d4ffb253fdd33a64de86502fd0a5dbc2b5682bce8f2d5cc27209788fe2',0,'2024-08-01 08:58:36'),('ba9bea0a307ae449d48649f00f3c23cac7e3ab7e60a170fd1e3acdc0f6dc371e8a63b705bae87b01','1b3b36a22039a88f3c99c7e3c549e6da583c3dc28f2cb72846f8821b8726034307df22e0c1d74eb4',0,'2024-04-13 12:04:42'),('ba9fbeab96940bfcf9cda3be9148fb63f2061e4975b98083e68fed9d181c78f1262854f9116b2474','adb95a573d054ff7732c0eebfe16daecef66e81232d9d10ba07678aca6260508888ca750ef29d67b',0,'2024-06-30 16:57:55'),('bab34b4032b1ddbf4b5ff877fc0bc19933304ad031ccf717e91b53d21bf1be9722aa65822528d7d6','49889f144b4e07cb55f12ee83d9d26aec6ad25134accf5f531bc4f0596c55692bc3c159252d0b526',0,'2024-04-26 13:52:15'),('bac00f0e57b6234a2db69b4a2c0889dbe0af17ac5f45d47a526044a43ad3427539822c929c87e306','795096dd60d22560688529250fd9fb6c17264970dc1563df597029b9e5b57a8e2b911a775fb4a544',0,'2024-10-01 10:54:46'),('bac7b9fda600023c3f71301219b8afdb7e7bbd6fe12ca970c7bcf980e8bdb369182afe247cc2f05e','92c5dbca7a10686d74b371845e3edb925337c7ccae391ed8b4a365751359b8c73677a0a6e6773d7a',0,'2024-02-16 17:04:22'),('bad6b387e025db5d19874507e3f66451d308a1c92dc25309a5de96191e9b50a8f62abf29a7459331','6c380cb99c834ab6959d797f3e268704785215964746d51c97ad5c879a2e02b351e705405ab1ee43',0,'2024-06-28 09:17:11'),('bafc829c6593f699d87e02de9d062435c165dca6595cf56c95278e43f0c0ec858d554f64a9a3a798','6aebc5fb2e60a330d8bc0500cce8637c71015bf92c91779f13934408384a3b8a0501304bb0ab230c',0,'2024-09-14 19:41:33'),('bb0d074b7f690d20735c64e99a402111f8ea02b06507569b13ba42216b8101a4e854017c4d1ae2a5','785cd30099f87cc43cd9e87aabf19bbee54ddb794b6634e71f4c3c0f56b595479f2da4e2b965d68e',0,'2024-02-13 10:52:01'),('bb277ed4a1aec884e07d181e20bcf64b8368cfd4d4cc18c75d840bc80784149e5e5de21d27dce055','0a80a276b8d2907d3314fc649610c731207075a9b5360ce5b798c25faeefeb5cf94a1cca9d883ce4',0,'2024-10-08 09:39:08'),('bb2d5d0a90521e955b2fa2958de05832b158429a527e054a2251f6d46dbab9cbacb1dcb67470a8d7','225154756ff2ee801b9bdde693f98d4967695105b0f5b2b084a17ee948f8c9fbc2fb97d59a55d0ab',0,'2024-02-26 11:31:25'),('bb3afd988ab3e70af4c851ce3974ad9fcc7e66303505137a76cd4cef3a05ac7d240160f75a7fa6dc','fc347ff96ac10d676cc4f5a5e13859406ea105781ee200bd0912810f71060300996897ecc0a5ef35',0,'2024-02-22 11:59:41'),('bb57e1946f6a90d47a3b80e2c3bb9928d939fbe3acb5ea638f5c470db50e33f5845240c3b1cee3b3','32f68937bdd7a8296a6fe55b7bc175d40a4024dc6887098f3dd1b7ef71e44674167da617c499e013',0,'2024-05-08 17:43:31'),('bb5ecc0e63b439f7d47d544f20d53514ae32860afbd87c37b817645c756e6d7d9881aa2443a71af9','4f57d7ef9626961b912eb240a83c01e341fc67f1c0d284c009fa5a88b274f6d0b45b246c07479292',0,'2024-06-16 18:23:24'),('bb63e84b2f45ca6e85d174831ff9a5a342d36f7e04284e7ab48c6571065d578981b718cb6d88e290','34e8acc5bbe05d1630aec447b2201f8ab2911fbfc660a5beca1679c1962540bbb508a6f1eb972823',0,'2024-01-25 08:46:15'),('bb914c3692b767988d720f5819b681c678aef6f98e8de060b91c0f9346eb329333b88c9be468df8d','1402f53a3cf9c9856ae442992c1ebc7403301407d22a5f873cc05f42b4128a0c1ce01af2415fa357',0,'2024-04-18 20:35:17'),('bb9e620e228be0f54e5069048d47992b80949f71c7ad046efff1849ac7f1a5f7c8a64b0324d7dfb3','33d631034b089e4f3b44f1df3bfc8b72224e242b179b5f0f2433fbf6db1868e744f4e965398a0e6d',0,'2024-08-06 15:08:02'),('bbb0c65aa4355bc56d434d3786561604acba6d349cff4661d3469f618117e58fbe5f5fdf51ee8d04','f60595f3db3c21aeb1ea6e7d124bab9c7c43c8c5d3ee4f2cda7b03152062562ab907dd9294f79a28',0,'2024-02-07 22:11:36'),('bbc9669c335e4fd8189981f0c90d5440b253d8ffe92774bde93db76384f82a11eae710b3e996e928','f3fbafc3e131511e92ff1b0e7fcb3fa8439968e1ad9dae2afde969d1e483dfd22a8ee2c9330e8811',0,'2024-10-01 03:26:51'),('bbdfa3faf6e83e6fccf486756e42ef0d36d3d8dcbee3f5a84ae09e5d79914f777bd6ed29fd5e6799','9b1ba86a120eaf7a987c50a47ee8cb67a4b612277da56671bdc5d17387436db4ccbd0bbe1357a340',0,'2024-03-21 10:20:29'),('bbeb0b8a902437ffb502c8f05922d4cd831b2c4dc51d59f7c376a0d4147a93aad1e9bf23850a1a2f','7b710f921a38d1233723968a44b1c86fd5975d6098e46a62be3b57b8266a696b04b7d79d4bb9c56c',0,'2024-08-22 16:26:11'),('bc153d71e71e3fc62aa69a987b0862d5c15ef1a35be4ed479985eae719f2dcce28ba188fcf498cc3','d5e3080b20b7842ea3f9eab5019555bbf67f0fd22bea1af71e18a7b359bf6dde2bf88e3063168e94',0,'2024-07-09 09:42:11'),('bc3773e0d1bbda24e98284d5bfc712b5e7dbb5f56b13ec21bd11afdeb8d665bd99e34913c8b084c1','0eabff45421305815953d061eed9f955e18fa451cfba972ba9e4d15cf78b17cd288234b95b625a27',0,'2024-03-04 09:13:15'),('bc385395f25fa9520bffa4eb9aed6600538d1bc469017fc186d5c39c7bca87d6656ca91dac87c9d0','452c6993409a1177dd659c8d3a741fd3382f8d04099bbe669a10a39a5847bbf515ad01a940eb6ef2',0,'2024-10-05 08:21:56'),('bc70131723b0ef5b6b5684de371764cba7e965d92a042c46bac389a4ee567fb04b4409511d064a5b','b41b03ff9d200bcefc0a287f0475ce12aff58edf3aee65bd9808d11ffa89090a6fd17ab655a2fe23',0,'2024-03-05 09:45:46'),('bc7b2e8c1db49a40e3205cc71263cb6e075edd33b5e508080fc4fa424b11f564438441a8c01dbfd5','f9004cdf3e0040b12f10c7544af10cb20148045655e251d233f0efe88dd9e241e4ca52d941c9fafd',0,'2024-05-15 14:33:01'),('bc862fe6a229d866dff6d7c43418f49d5afccfe6fda0132b4e2a1a66cab53881f6cf063b07c8b24c','e93792ff584065ef9611a33e357d0965b0401d0faa69c8fb819f09b76f84846ad538df49904243d3',0,'2024-07-05 12:19:09'),('bc86f42a45e2778e332e93f12a1dfd814c745e56a55b749c5e7c9c91e2a59856a0968d328c626805','e89b840d6a0d48c686c40a1492a218aa427c77782006250e31f0f8f8f72e1351f7ecb5c5d0cd0888',0,'2024-07-13 12:05:23'),('bc97dc1283a5a0b1e97ff080c8a44907d3135b4702f4cc76dc4ea3755a190a2b156ab46ba2c257bf','1f07e6fe0db0f5179a3cacb70c68fb7226872d1f1e50f985bb02bda6356370f5a5d1f89cf8b2bb8f',0,'2024-04-26 20:29:31'),('bc9c29f6383708970d1039920d2b54324aaea37aff255a284c1a8f15489534692a4b88e88f14039a','0a27a9b5e0a245eba268b7cd819c705b9ff7fd05b4e3ab148c9a238bb16d544f8a5d83a9c6f22d32',0,'2024-06-28 15:36:30'),('bca0e1b4c3c154b63ceb28133118335157cde9b9ce689d26860d6bb3edf8a94beef2aad7c9a09dfb','e63757e8a65e5037fcb4ac5f021db19e5bc2f7b3609d54fc3098274d92a228eb2952d3042f216105',0,'2024-05-15 15:48:08'),('bcad828b1a7eeda3b9f9ebc06dd1db67c19882bdd5473f25e38e9eecec7fb31b0eda21ef2a2924cf','984f58a9d93098dab9c93da6b25261d14bbcf986d54ee448359461605be8bb855352831a457104cb',0,'2024-05-09 18:11:50'),('bcbc2f7154049fb1355cbff02274495e0fa085bc6b37bd7a70ef821a213d369abf9d1039095ae5c7','8a4cf0222059b9881b28447ec5fe984bb95ca0bf77e1005c2cfda5a7c5e6752bf42d5d0736ed1e6e',0,'2024-03-20 16:15:58'),('bcbcfa636339ad29a278e118253ea598304109db0f035a08e5a4ba83ddc004f1ada90535320acc61','00263169648fb77785d92345a61504153aadd142d12db0129d93cbec44d2a9ac8d249d7389a0c804',0,'2024-07-20 16:42:34'),('bcbdbbc03d33295c7d91de5b0506be02db5748073e4abaa0d233596a20a6085044ef42b33366f914','8885f886800cf796112fa3f1377b0e022bb60de62f91057b691fd8ea68594d02e9be3a28119527c5',0,'2024-06-15 21:55:27'),('bcc490c4b7d6accfa6468f16a6a0bd8da2f778c045025207e1cae7dfc04b350b10e99526c136faf3','79fd5f382e8ed4787f94087e1cf088e3bbe4ed0a9d63212b8d5572307bb31f5cc814008929fb4599',0,'2024-03-12 10:40:26'),('bcf69cfdec5efb4918dac168d737399f708c78bf216590508e963f05ea47ee7a2f39ef3a09bd2e33','012fae97dcd5ec40f625386585ae86a7ee87c2694423535e1d5bb618e83ddc11f14add78b7540960',0,'2024-08-14 11:51:21'),('bd09c534027c53cf6ad195936713f4d90526c93d33044e6b96e4d63787e8c90f51de19ed254db885','c39ce72f8a85927864543f728cdb1069a486331325ccab4941b3efdfd9b94e578fcf93f85447d4f9',0,'2024-02-12 22:35:46'),('bd130763055d1eace1c65b34bd5dca388e2a310b8f56902f05ad0441fc72c7510601a411ef4a60cc','99b9ab99395e071a9187ab7a6c75d25fa4d5e7517f6660a6cd8b2000ab28ee2ec7d6ae529cfcdb40',0,'2024-03-02 22:33:30'),('bd17ea3f9023f7ec2a640c409e1ae30617527bf648875810263bb7bdf6beb794bb9a7e5d3b1a0bfb','21faf9e59ebc09178d8f98fc75bd031b0157c10d60fe3635be204b1d3db0521761593516e1b68f2c',0,'2024-07-28 18:12:12'),('bd1c82c132ff529a64abbd86899b942300515ac4308e93529a7c9152d26f123cb2bf61fb865766d0','9993f5ffd83eccea5efc69d5415df301c3451537f9d919b0daef6fc738c11c2144a9cbaabd6479b8',0,'2024-07-16 14:16:39'),('bd223c2c86bb7c93a85e6716f8e44e784982f090b1b3396f4f3800b6be8b097d317d871efce3eb09','7305bdb441a6882237feb19032b606386e1fc329f9498bebf087e29938691c6cbc654a3a14e0929d',0,'2024-08-02 22:30:20'),('bd228bd532d223968a8c965167eb8032b5fcf7fa17e6f1e69c04608cb4f77cb3623507bab2411166','851aebebf625e748ae218ff1ca05737e155371bc9ff837fb487ef0ff80e41f774a49780511e2f41f',0,'2024-02-22 15:37:36'),('bd427ceb640405f255f5633ecd9840762019a453bf1636c5cb06f231de4df3044e64a321b1fd20a2','bb3fc6101822f2d868b830289d5bad39ad1b0cca0ff41950cf2bcc1cce200353929eb76329f06134',0,'2024-06-26 15:10:50'),('bd42a9656eb12b56fba5aad3b97c4f3ebc02aa67d14577f3e16a4a31772910a875d081b439389c64','000544baf7080ff9a2290f2a9377398dee36e074ed0f85773ddc4e93fb7076d9b3aaef53c86cc210',0,'2024-07-04 21:39:54'),('bd485fb9e3032d122296d0babcf07aa2e4abfdb043aeade69d6b43e8aac15a1b120c011936808242','23ad05584e67b4870eff41916054a91a8414a04fc9962855391d29294b7ee9d0d145f96b0bdb5ff6',0,'2024-04-06 11:57:02'),('bd5ee9702b2ef5583fc6959ab46f431d0fd6c57498487042bf67c10ef0b644f407934435c53b5182','aa2716440cd1b8eb94a2851ea173c21716adbee27afd69eefff9b2324ba961f06ecee6e32a891d02',0,'2024-10-02 06:48:00'),('bd683a685e53a6aae4ac9e34ad395d79a84d0d69a1788f66a68ec45574d554b3ac52c1be97a60c50','a9129a8eda1f84de7b141e8c17a5a291a53b4ca61222ec934c34462e7a9c4cd361a4903ef7f32534',0,'2024-02-06 15:32:43'),('bd6d1a1acd86f4a3491478fae26bd4e47a5cf9c420066388f94248452b2fe83302f68ff8f7108d01','e19190829793450a504b21da9dc0d34001b7d41c4980c862d642fbd6ca1438ad76895ced9a20a893',0,'2024-09-13 14:36:23'),('bd719fa3453db97871ce482c8e2189ff4230f77dd4ffa9fa8fc4b265f4ec9488b2754dfa79d50554','32a9dc198bdb5e129a0d20bfd725adfd1ac1231a2968bd940ab33487e8146ad2771144e9a8f32725',0,'2024-06-08 22:27:24'),('bd755cb48731d8dd66758f42afcad88704468b14213d978b191fb47dff59dacfa48717fa280552ed','5cc0596c758d75bf14adbcd05a8f9bbb9e4e44a4b08353df7f656b7d2a7f0d7f789cc46b98b918fe',0,'2024-10-07 07:17:03'),('bd812d28f5bb7566a44dfb516a161df2fee66c731ace495c24271bfef3e67d3de95dfbbd421b3ca6','c3d0c7c6e4d5df262cac43b0243ac93114a102efdce899a0ee30f2c6b3c440a7b51e9a3e9ada1d00',0,'2024-06-21 16:38:39'),('bd8943cbce98ddd8a2c8153d6bd2a3d6f83aa31556bde64779c033c73a243e8eb6fa533bde465dc2','7578bfbfe6154179adb8286612819f92455769ccac31dafad5ca748d164a106f57786983d45ecc62',0,'2024-06-08 18:38:28'),('bd8b00e10d2d91737b6044bb0a6f508145eccc32950679e8f633636aa38332a44866d4bc5630c255','fa6a14d0670a7e26237184bf0da83ec054d0005a629954d6ef6f90eafd1931e7e7db20d3e7c96e5c',0,'2024-09-25 12:34:52'),('bd8ec2fb04990b5648079ecc18a5b3f7988d4b5ebc878529aada17bb3e2bc06229cdd9ad370e9cda','894bccc5c2a7f604ad9ec487513f462fc4b9a3796d1db764504398e889b33543a95685077562fcf8',0,'2024-01-28 15:23:40'),('bd8ff09fd5d11aed864687a9a2e2db97d5c361d133002adf7d96350cd4f2469395066c829887df6f','178bc78d2eb465a71f9cc462ac318de57e3c361ba656856c79266a802ba6fa33ef674cbf5a80af8b',0,'2024-10-04 18:30:58'),('bd980fcd96798bb38986b7e405319cd29029f3d68934840f14e1c4230eb0e1c84b8696cec9003967','c72afa3972a20de0e4443da24fffb810f7e2edfd7cc2ad1adff3390d7f9ad2260de1ab0397132470',0,'2024-02-20 20:59:28'),('bda03e38dbaed67a601316dec70ddc41f65d2929ea61fb58930e3fd06108cdd59825d5b4c475ef9d','b262176a5b79735b9b04480d46be8ebf09d06692088570ac00a7177314759f3cdf8a6b95c6029a02',0,'2024-02-28 02:06:34'),('bdb7252fd1d7a7867e1e9f5bb55a605de066f3a7c7dc6be15e1af0aa42c7a3f56455702d2796862e','e7958fbd9d8251f1eb09a63e6da8d778c8635075aa903df97147119768af74b45b55b7d7bdd9fde6',0,'2024-09-18 15:25:58'),('bdbdd9941dbf6c52637c971d532def8e5c4af8d43bc2ec44e67428a2d6d7ad2779ee2578f5f275b0','0c9e934a5dc9be3f23b097e7766f4ce7108c558e86b94f348f758ab040979d5e1579f44d52027a4f',0,'2024-05-02 21:47:59'),('bdbebdb58134615bc62f7ae13decc5b4af506ee6f252444e0eebd493652bc94f418940e2454165df','a8532094074de4e1c888094276c32c0ac3907f0588dccfcf7d7b2ee28ed1894555421181de692a0a',0,'2024-05-09 18:00:49'),('bdd4a922b2525d1857985ca304d09b507b9495e8157fba88d04aca587b86fc5a4d4d58d02eff64db','cde7ac6087a6b68f0f1ca644273a912d9f7578995642851fd1d3878d5c0f09318a8b21c7871baff6',0,'2024-03-03 16:42:44'),('bddfcf71442ecea8f14583d010de6dc70ceb83a2d7f3a4d53c85d4aa0a3176af17f22590a9aef30f','7eef5eea2e4f6662ea34a10fd81916bdd9cd38b54619bb2d8a9fa1088d01ecd530bd3a334807b8e1',0,'2024-03-28 10:10:36'),('bde60d349c579cc7956fc01ad518e232db61ec773ef7f0337b8b2cb87c21e976e0a68fba5b9091bd','1cb5ca2702cd465e2e0581044551171c0d5507c35bcd3f7ae5c47f5a649400e203e28b5b647bc98d',0,'2024-07-10 19:28:32'),('be00cda842d25a9f5dc0b58a8f19e9205206b640e38831a6f9c3fad527ab96b7e8477a80d48ae0f7','f52df5aeb0dcbd13213c03534f41beb2f7aed511a3f80a4964f8dd63c9a7956a5cfe3928137d72c6',0,'2024-09-30 20:23:25'),('be14e36f7df97b376dd50b0e3e32747d565cc54cf0a8d8b3e501a2e919c16d9246fa09fbf3ccc8c8','d37eb065b1d9f9e8ddeb56e6ca2e6ee568f10c603298eb36afe01be3afe34883bd5bd63cebff7571',0,'2024-04-12 15:18:30'),('be1796823b973b24dc2820e623602978f16e1c83f64276586d1bf353e9175fb951802394eb558112','65546f9504cc372481300cac07494b1b82aecb66840c36d3562e62ff395148f8a1a2e5d410bc431f',0,'2024-01-25 09:52:47'),('be1d03ca34c2b7f1e7a1818bfd2515712e2d8e28f024e8ba95fa19f18a6ae94569882309d33e396f','a1eaf349ffab8ef27038818ea49d79ec0ba06fd2653938e3d920649d939c1e85bff637c1c51bf9c5',0,'2024-01-29 15:19:58'),('be2e0c5e227b583362e5d3a959279bcc96826e67dcffa9e6cf8003a9ef37d4afd9153fe06a666ce4','a40564931ee8e57c12b5623bbed8e1168b1da8a9f56c87da149b2bc5119e89b606e1e91dfffb81f6',0,'2024-10-03 07:36:27'),('be3e1fc95425c54937e9459c91179f1f8d746d13ebe4e7f67c10b0b23986c83fd86c4474355a770c','08d0599bba4ce6e53ee733c83114b946f8ed5b8b5a3dcc99ba4d172f971f7dce3a129ac5df2440b8',0,'2024-05-15 12:31:29'),('be473359e090ce37201489ffd8fe2ebe0f523d0ff6faa2e053961a1044cf7b3f238f97795952d2cb','575b79a51a92c02edb3496205ea50704485182f4472650ee43f8fb1a90c4981aa5cdc20d3b9885ef',0,'2024-06-13 10:07:10'),('be4d5c0485574a905726e679f149f39940ccd0b1b4e34e5c685ff25df3ab93c8f6243e3841273759','0f8578690cabf3e642d0a63be117ec3f6f1b3805c002b5e88d76fef1bed7bfc81929c5b344a0e72d',0,'2024-02-16 10:46:03'),('be580f6f99b78f34b08df02be80ac7938f22e419625ab4c5fe83ef2038d7aecc46bcf505c14a31db','1cb317f5bf01b0f0a2a1d77957c83c62fa2b3c706065678fac2d475f1b1bdb85dfb4aac75a9d9b96',0,'2024-02-11 10:23:27'),('be60ef4fe13caa2144fbbfa086c1b7608645a57e33ddb6bf5562dcd2bf55c37add0db3c196df8337','93cf628cee10f558aa71099fac0a22785169ea185108262c81293bf0d2f748744928ef5305c6f1f0',0,'2024-04-28 14:20:17'),('be64c99acea69fd9e4f129284de256414fdf1d5ed940a8073e7a0efab1ae789c6e7361ac9a8872b7','470149ace1e0a8a8bc7495ef3eff449b12672b884590566ef87bb022e9c3060664038b5cc1ef5f40',0,'2024-02-25 22:59:23'),('be6c9895c184c9a3fcec56fb5080970bc6854586a662100555013c5994c194ebefc591b25c765f61','098353566d93b457333cd67eb6d6de8cbf4ece5cde6fb5abc0146967919e02a2d3202974584c30a4',0,'2024-09-01 17:47:38'),('be7018b4d8a93bbf9be7a07590151f1ac307314438da5df13c7e7c9ee134a42d3c4bf2482f1ba4f6','eed3b1a2ba69866dc59e9d3d73415aa61d907e4971df034d69a87fa3fb08008412344642f197d160',0,'2024-04-14 08:07:04'),('be81ff68e3f126dd6d0bf2de696d091d9691a75fe728c596068e3e2557c662dd8a36b5ceac4e4613','696a4114cfcc624af14caf1b2ff698996fb5a52689a61a6bb2eebf28b93640b68b029ec1715216d9',0,'2024-08-17 17:39:46'),('be978f9e80bd43a98a67a0c0dffb549c69dd8e1a372e0a4e6ed6d1d5ff6969fdc82ba6c3e5571dff','29f97c2d7a4d78665050ea4ce405c66a92450aef4ad43685f9fe0dc019382bd86ef88495afcf41c2',0,'2024-10-02 13:43:53'),('bea3711a5883d623c7cb00ee53d48bf6e2ee94dd569cac51e885f22afdaa5a8e7d788c04aa85e9f8','a0be431ae75b0df806e1445d1a2f32ab9b8ee6fdc6ac0d893150c23f6a53e1769428de00947ee2af',0,'2024-09-16 13:41:01'),('bea4403c31dd10f316d85c8d42acb8b8d24c2886844c85f749133d1caa35ef00d12ae6a8df0acbd0','797b455365f2612df7a36f540e998d9a42dfe0d494a02aa729dc35665067324ee8142650a94c8fde',0,'2024-09-13 18:43:28'),('bea4cd7862d57204ad1bccdd7837cb03f5f7be08b81932ef2c1144882e2d377fc208bbf64f11ab67','6b1f0278bff6fe4985014270b52a27c329ce883d9f437929cddcc83ad54bb0891e507d026c06ec35',0,'2024-02-03 08:20:34'),('bec682ff5391f6d6db0d4c918ab9e48efe0c4c4447a270748eb78a15593c58e93df3212b43ae9c84','a5cdaaa656ac4f50ecfc890d3b3df74d961c2c4bc2f5f073332ea70062cc913064582ae896e62206',0,'2024-01-25 14:46:19'),('becda6128f8373013fb3613775844af783c8aa1cc982010477df9c5d673ba9c2b2ec63bb27add79e','64b62519c6305c1a7e052a643a9f1623331f20043fa513d7cb486c5cf58fe7d1a2427f679f3a7240',0,'2024-09-27 22:50:26'),('bece85ba24b537cbd9f5daed7300a3b0ebdc4014be9d13fe089e3ccc836bdcd0a099a1ca28ed26c8','c2310e37971f48366ac16a42ef9163b746180644957ba959383332125ed52a589ade2a3ca56cc0cc',0,'2024-07-05 12:35:17'),('bed00e56e87b8e455d78756d625d61c909dcc9f3c97d28d3c214911dd6e4062b94ca9097286356bd','d28838b6af1f48de9c81f33750fae17c42e8c465a550bc828d738ab9354a7d35786bbe855c07f373',0,'2024-05-09 13:55:05'),('beda65258715453394f28d17d218b5245cbb7516f9deb1baa50fbf29bcc4c49bfb2437d1226f37db','269dd8fcba69f7f89013b812fb658d9ff3fc06897a54e4c6e58e4b666105eae0e43c19b2d5b5e1ae',0,'2024-05-03 18:40:02'),('bedf6d80a93a9d1378bd18c151e5b8fbde150802bc0bfd9bb90f54b47ff7ad05bca37775c8ab9deb','8859cee3300fac064ad8665e25ec5267bf69aae06ef41dcfef1b3cffade7dfcb608fafb8bc86b8f9',0,'2024-06-06 17:41:52'),('bee00692b62db889c2470999a7ffd1379e6ad480b5dfa5c56066f1e4948a9992a96a7722326d84ba','643b748f3195ba11de7c99e1da1dbbedebbbcb7bf3cb2c623a77d5411def31cc0480d32e8aa07db0',0,'2024-05-17 19:14:19'),('befe13918426f173d0776e8645b62bd4d161df79c9c1a2de4db5b1e5fc6df069f4d910de344f1b12','3789c83cf01e68eb84aa233ef464667a895167f483101b394d2a00530398b537b0950aa83d42434f',0,'2024-02-16 13:25:31'),('bf02d2a1e64421ad6983be69308c1cabaec72a134566806566e828c5a4346e6526a7d0be434c13b6','fcb4654c8cb0744b655afc4dcf13a6b803b469884a981d8b42cce74ad1a07f47b94fb4043746f9d3',0,'2024-10-02 12:27:47'),('bf037cff5a4f52b6d3e507bee5a8466715c05a4412e7f0d678da53a6188659d2ce63ccfcc1e8f2fe','58511295947d8f28a974227c4b3c551ef95e6184c6493ae7b9446a2170cbb6671810e2c6d8d45359',0,'2024-09-29 16:01:44'),('bf05a51bd4117ecf7f32e5b746d666be8951b477f4757ce46152b02b72ef167839760bcac18a2d6b','0e5d22c5264791e690c50a59e491ab271e71c49a16cece54f6d12f2a4eb89353e4d80718c0c8e2b7',0,'2024-07-10 10:41:58'),('bf175b6fddb2771da7c6fac97fbb1233fa9b72e65066af1927c2194c6eafec481ac7af3a30b1b417','29e8051fd45c09c653d60bdd0997df6627854fef9052bf778fd3af356d80589796587fef546a5572',0,'2024-01-25 13:19:39'),('bf38aa4080ed500dc4197857cbdb2e4d19722e1837c33dbb00ae6c38b584d1bbf3e5565cf51983a2','9df6528e41cc80e04e657f6f59c2e7537392744f80e706328666b3e023db809d00c107a269ee0621',0,'2024-07-04 16:06:51'),('bf3938553ffb73951644bedae20b3f2640b8ffcc9a81eac31fbb108f7112d8c006dd3f3a2869d01b','a8760801178b4d23f83732059d52856bba27271487af2f5ecfdacf4a45c6a579a4863210e7604179',0,'2024-04-17 17:51:40'),('bf47505e5e0c38dc4edf3593e33227a9a2c21aa66777e1c4dc304ecbba87e1384166e873eece7d96','f1476e8b73e17068dd3383189f094ce0c7ac7e4e97d9e5be3cd04aa39254726a1a61d4ea3b7aa4c3',0,'2024-05-08 10:45:28'),('bf66ac555fc66f65ef12511e7be17dfa87813da4211c48ad9d352541a288d6320479e6ad989a4c0e','47aa7510fbf4d3b42cc4528987b1af320a2b20d38443e71514f15e40e313498327a9ef68d188fb0c',0,'2024-10-03 14:29:05'),('bf6e8a62337ddedf13741cb7a625134a7d8f4d1498e765ccaa224b8259ca208db2f46fb68dd5fd17','c57457a0119ab07edd477856f3924465452c0cd3e583966e11aa8d61c6e1e5c9bf8a020df9dc96d3',0,'2024-09-14 16:00:39'),('bf7927e8db10dda9cf89191be31cbda367b6c63104a117ec65d2eccbbd8f3c4e49249232ccfff415','36e8ec2576ee1a52bda33bf8756b579da553024b4070bff8977e1e193e2111e49468da9f65c2f183',0,'2024-05-14 17:20:11'),('bf8e7662e47c73bf3fcc8cf61a6da5d67c397c38333e2898b9786ea7f322dd173256dc5b999f9c6e','2c3939d1f5c89e4dc1776b08ac6f8c7a3f33aff3d6196c47d2df56a426fc0b1eeecb93ed03a88d91',0,'2024-08-07 23:07:00'),('bf902c389594d694e72cad2c0270ff397f484e7d8380a1c38c61277ee2bd26d2186e53d86e1a8589','92a54e5cda59deea80a4102039cf12db52d8eec310e22b035d790a7832f96bffc467cfe5f1a8ca02',0,'2024-05-11 22:32:27'),('bfd346ae993838b00808d363012446ba9d05dd2bbce1ee64e909dc127e2bc04891a17fd649e4509e','14e286125aa8aaa8379e954f704215d6d50c4d7456a45cd873f58a8e6bfc99fbebe63aa96843e640',0,'2024-01-25 14:55:02'),('bfdc3c87fb051fdbd031561d9879fb822b14483c6d20cd5dda60a2bf5f516ef28a1aa9161a005890','016a926e94e3b03bf09afe0c2b49d06547dea3f6f7efdeac1734217bc28d547a6fe8b15beaf4db5b',0,'2024-05-22 20:01:04'),('bfe3561b33db3447b003720867ed06954f8593ec96a0ff497aae84adcd875ecd39bac0cdbc86758d','3ba3894b954e4141d4fcf3912e13cbe6166a58eff7d057889be9381f19c35e48b9eafbaf489b61c5',0,'2024-09-04 17:59:50'),('bff6a42fe4f41e8dfefb8742ea8c1fe0d920eb3c0fe8b88b6a1a739f23d015033ccdd579d18a78e1','292426f3713580530cc88d3ade3abb59d4c1e83fae268e5e5d47c4ad1f217d05b5f7e342140038ba',0,'2024-07-13 14:23:54'),('c006e4ec15d38c350a594575623103ccd987275c27fb60cd647b52efb4c7379d847911809328fa38','cdb95b10d2bf53f8a6a5aa45e628e2ed8ac1d879ab0ce781700da1409f3351bc02a85ab86ac399b9',0,'2024-03-04 20:47:09'),('c0441bbcb917fc443f415e2efc94db0e64d71eb8fcd0d715135fcd0f5dfd335f09042d8b546ad5fb','38fef4ae416e33e09c1236321885ef453ce376ee5701120252e215b0b2506cc009dd78dc53475c01',0,'2024-09-26 08:51:19'),('c0572c902744386d2edbaa5a2eb52df93ba392fbfc66edb517563d4a5245832b8907f47279c20a4d','04d35bf0fa2af7a3c7c4e770afe161d5fedc16fe0d69cf880d149bb49c9f1a01e1ecc414d5f129ea',0,'2024-02-16 08:03:25'),('c059b34c57ab8151e3cac74ee58325236c2ec5194e33a08dbf60d993ad30dfc04c13591b7d3fe414','cb09cffc101c3c08558ca031a3b97b0854a2e115519fc2d60703eede72f3507401ebc0d9303f3789',0,'2024-01-25 10:31:56'),('c064137834d5508dba7b7683d8ec7db217968206b7815913710fa485de73205cd88a37d45f5c985e','b25c55df75458a82ee27eb3606aaf16f10dcd63cfdb2e9cce79b6697dba84b952952362350704255',0,'2024-01-27 14:23:55'),('c06a1c767fda4cc8c736c179bdc882fcb0888519ebf7ea38d18db3ea7cb151708edea3eba2aefe36','ca3f075409d6579a4d13a96432c874a4d2996b0116044a4d5b5cbec6225fa2386853a2e34f468380',0,'2024-05-04 17:56:19'),('c090d56c43b29f180bc2cf04cab456c673edace3dcc190c7fb646908c8fba73e46f9a409afc28633','6edd26c31a3933a635b757f987e1fbcde6c600cd8b31a4e090036dc67492c6919b6104c4bc4cd718',0,'2024-04-21 16:27:59'),('c0b7ce9089ec2ecd728037e0b32e41b1b5ccdecd7f1943ef5be2ea9482ab6284808ce91455c09ba1','f64409fc7896aaed79b2511ba67b32d41530a40a98a565839c17201a26825f98e707c80c27bf36fc',0,'2024-08-23 20:48:59'),('c0fa1edc4211280136664a9bf9b3ead4c12257c072c6f7f9b57be6338f2c3633a3ec83ca008b2318','6128a240f7d524329fe04680d28519a63b7fad96c0214a0fede56bd995874d1077bdde69e4f85215',0,'2024-10-05 16:58:07'),('c1084bed3ada22fa620c6d9392f6011b6f0f44ad68da17b1009b94efa149f3e8796afc066ab25b83','f6b8554481dcdaafabefce72f571b851553df18d005ab3552d91cc658692d37b50e71fbbd5f7af86',0,'2024-09-03 12:23:21'),('c1158472f91eba299a05871e1a5d7670da12ab0a703507ed294be70dcf4e3d737ba8d3289d7efa15','1780350dde0bd887fc8fe8a111cecdd65956fc034688038d33c6ff5432ca99a8f3a4a20039e13327',0,'2024-03-26 15:48:20'),('c1198912c1e24bf0e59e3cdcf05eafebe56f28713b23178c8664f643b1128ead078151f51a507a08','bcc4c2fabaf085924bfe934dba9d80b41ad91d43060b191c24184af07c1ed683e8494325ebb39455',0,'2024-01-25 17:22:38'),('c11f5419d278030acabc75623d0436a68cc6224be218bbed0725aeb55b4467794cf204acea84669d','9b048f72e1921cd62b35b9149324a689d3b984309da536bcb99ac6269d6edb120475a02a4becf0ed',0,'2024-09-19 21:44:20'),('c139f26b5a15213b7e65cf3fb06c82e9dc3de280e7194cf96af00e114afd59cd55b069c1960b01b9','4e5bcd09398cb7761f06c3a5b3ceaca89f50358b021b22b79b0fa4b0ca2c0654a859182e746cbf3f',0,'2024-02-13 20:48:41'),('c169e518a724aa54f9f194ccd5fffd3063644054ac2bbefad3ab74b40f8aadf8cc4e2a8858d178d8','2ffc9f67d361fa8f79b0f6ec957c4b33725fd7bfdcfd7bcf3eb11126f314bddd35dd837c4b5fb065',0,'2024-06-10 20:33:44'),('c1758244f79a39067c00b205695d52a2bd18b5608b4c095bd766f617d98bd4bbf328f562ed5fabbc','d9ef763cae5676035c233b6b6e4c163eddff6346fffbd316c1c62f070464a76360d0766285451179',0,'2024-04-10 19:54:38'),('c1af73e150d69ab0d3556138869fc7320b8123bee2a6942724ef151f7ef4669a559e44d96438efab','ac3a2c32bc92ee60b1d529a7a6b7edae7806d459776ca7d744bec0aa32a252c857921c883cbf6b22',0,'2024-01-28 19:07:37'),('c1cc76cb266d4a814bbb662771021082190763b1f115c1e77db2e2e19be149d7d88b1c39a5ea7182','f5379cbcf623d32ccfbf45d5f402ed4404567085261ae7c939059ffca4325a72471a41558113a39f',0,'2024-07-12 07:50:44'),('c205b735f6f12446282ce33924ae973ef5d066e7fadd82d9dd9a869f0e45537efdea3e067f2d197e','f69573d62536ae7c25f87569f0447fbf100e4bc98ae0d4841eb9c3b52814ace9016d6688cf9b0460',0,'2024-05-03 13:33:11'),('c218dcddf96c9a0baa3c71ad88a68068e99ad4a60df148c66f7d80a8daf6164c81977beea8ac4348','ac1040086ef2ed89a651e6ecf7a7cb4a9f40fac54ca408b61bcf60772ef41b0b9caef74d0a6e6968',0,'2024-09-26 20:06:21'),('c22d669e058286770acd7a13ec66fbaf0813041f9462d8a5e64a60621d13d13627163981f4244783','c5bb46a0501faf5505cf077f58e8b8778b17b375531ddde5e440b51c5456f4b6e46777f037fede51',0,'2024-01-27 08:34:40'),('c232a3efad4d0e0b7f962bdd308db7cb1fd17c9a5ae7d3f253eadeb969e543bb7e2e7368b6ce33fe','4c6aaee8737c86803c5f1def6b8530fce7883e528835a522e4d4777bfe0c6ea75d456d3384294102',0,'2024-04-19 13:21:01'),('c239058a5c19e7c71ba17189c61d5c7ada495dea16404d5db54921f0fc3a3a63fbe95c37e6e077a5','ea727b91a27d6adf049dddceb8c5cd8069ec1048f7e15c2cbbb70f5accb403c7bb0977e0448bcf0a',0,'2024-06-14 16:58:14'),('c2406edaeed1ac3956621f3b4fb8a7c62f5cf3db8b316ef9eb330730b04be3083a21a2ee287bff45','bc78c8f05ec3138575e79e76d70736bc43f754a6bae35256b32c8b8e4b02332d1962037995ca97c5',0,'2024-04-19 21:06:34'),('c24213be41a1eed25668862bd66e622a985df3db39e6b3aad1f921444bf0e5ef2eff53d5ce88b9f3','29ea7feed16799051c860666046eaad30623a11e1327c7d578d9d10b506d095e33a48090eddc9600',0,'2024-08-06 18:41:07'),('c24f42db8c1954cd42e013623a913f712400f8be5c45f43d1a411a0e2fb4622a8cb39fa708e0ec7c','2d30c545272ee4016fda479b6b644d303e893569d16e994df780888d635d838586a02b892c7a72f4',0,'2024-04-26 14:23:41'),('c255f1901ef2abc89282323ce5b5383049c49e69530ad1e649c10d2e7195cca72ceb2ad698b72087','689453983152ddbd09171fda8c6095991399d17ca5bc6dd4808fe1626b2e1a09902b10cac3239c59',0,'2024-06-14 15:04:32'),('c2561d4ff19fe68d5338a5cf2abd2e4769f1ecffd1c44d784b67e0600d19c53d0b8da117284bef46','5275f4972cdf3ccdd71609f15bb5cce745acce41e4fb1900ec9bfa9145b25c040136162e5f0aabda',0,'2024-10-08 12:09:13'),('c257f8cc77dd01bc9e935a635d41f85e9ae506bf133bc8b5f25674815e14361d2b37e4dc0322076b','4f9e432ff65f10a74f4c41b2810790266160a57f8dcffb9f8cbc9389b2c47e359fb1ff3f24b7ad6e',0,'2024-02-12 12:14:37'),('c259ea3ee01da55fcd54222a5b9630b68e9328902a520d4edcc4d15b11079fe18310051b9632c63b','599e442c9f7d570290c733515cc0b979dcc5b87bade45aa194942f8070ea7f79cad83f7ae119d433',0,'2024-09-22 16:23:54'),('c2678bb24e5a53bb7df8bd05dc61fd54c55962a68fe2a024af411ee784c410c37cf7e231369c2705','225336b5bffac7fbbe361d7bc7a08b526a7fbfc5ecd83303f8137d7e6514b18edba85d2ca06b8ace',0,'2024-07-12 18:28:30'),('c2678ea7104af9d765d7ac9c47ed14d63d1a683a6366396aeda142e444b8f8849e72d82db77df7db','cfb3b4cd751f542c448d5c45204cb2a674f5b4df21323414b495123d4728857377881948a91c4f7a',0,'2024-10-06 10:49:05'),('c267d5c3511d247276046164498610985a63754433c9441c9c482c1aa6dc172bfcaeb8db19fe5858','06463001a13962953bdc624b4fa1261e1c635f804d3c8fae37e8350e505b0f786fe0da79b7cbbfb8',0,'2024-02-13 18:26:14'),('c267e01854e8e0e88ce112175ba7b390d43b9a71b15639698fd6c321267cdc6dd605b2052b38614a','76396d51b95040de150331316d12e69179f0cdc7ca78e9b611dcc0f064c934ee1bc179459d43db5c',0,'2024-09-26 04:51:56'),('c26e593acc96d0ed35ac0bb33a8fc13a9896c821b6aff2829c40f90ea32b4657b254bd410cf1be45','77ee9489ff395cfd9c18204b66085eeb1baf7e6162dbdc66aa230bc9dddc8c350b5ee5693bd87b90',0,'2024-09-23 10:28:27'),('c272f193d2079ad01f95dda0a377edf14dadb2679f02de09f57e96a3b6142924c32665d1526981b5','641cf14fb28c77e5fb7c8658d268533b3377059dea1998aecf595b4831de06a1305ae791368ce8e6',0,'2024-02-22 17:40:46'),('c294c3dee4a622befb62b84ffe09afa1ebe111afcedc84ef6d853258a8fa1af369a626f45d5172ad','e0ddf6b5127759b904fcb235c30b4b2d0c52bd8541319fcd2800a234600e75aeb5636bffe4fc630d',0,'2024-01-25 15:30:26'),('c29b734392bc4b4204588d29ed6d87633f41e0d0a988f377560d70609819e6775cf5cc9e536a74b4','6e3c66bde78320c63076f8807ec09572233c4b615e6f21ad3e2d2083d4c210ad9ed37975dbe340a2',0,'2024-02-20 10:40:01'),('c29c3d977fd65ea17a89d06342dafce6433e6d8e790208b91ce3b0dd507fb6b5bb80ecac33314e6f','a399680db128bb44a47802bb6c8f02bcbd45c743f6751b8c28b4a645718cb2425e01dbc4a3c73118',0,'2024-08-27 22:19:30'),('c2a902be91506aacaae3abf14cc0c0e6e5a7845739930ad51ee42fa0246fc65847ba3765d4612f4b','7bc17489023166d82bfcfd89f9dc92d477dc36488025c19ed1233b2c79078ac0d3e66ce5cdd9ee88',0,'2024-03-08 06:32:03'),('c2b27e4039e0dd453adf2d191f2000d24f3f9947b9b2ccedb955df21f1fa0b4aefd4b96557430076','26a42b5bf52a3383c089239e800b20eeb00b2f4c78f303b057538e741960abfcbb7ab375d608ea1a',0,'2024-04-10 16:39:19'),('c2bc89646e573a78f25b28e3e8fa5f9ed66b04e66c2adbb4621f3b988858ca06e5df244e12c36add','8832315b263064fb92e668912f70dded13607675b4a51e7a61519fdb7a8e549b2b88109b7ce69beb',0,'2024-10-04 15:47:55'),('c2cc1ce001cc29cfd975bb76a7bb8c4015dacce349e597fe04ce0114c24041a53b42faf0d429bb25','8c5c8cf1605b4ce5a23f4bc81d1dba170f671f9fd478bebe67f759500b46d034fc96548ed3dac9f3',0,'2024-02-27 19:11:23'),('c2d8afbe3a057a9c3315cec9c704c17666786bbd4a88a1d9ed256fa00865f45a030651c1ae803d93','76aacea4bd55f4ed4d966411ffb355368b1f25f06ea2706980251771f784ae89d6599b9f7cf99f2a',0,'2024-03-01 09:00:58'),('c2de0f832d0d4c155a23a0ff0c4917dac02bc4df015dc79b1ab22433717e4ff3fcf3cfdfdf4437c3','8bdbb62b3b1d7a0953bc47e8dc56178b201120289753c23132e50497925d0dbac40e79e44f044e1f',0,'2024-10-05 19:43:55'),('c2dea18a2f0ba2d2242e8887ff011c1efa18a77ccb72c682334faec11d93cb7782a649bec45e6788','6379967a680d3d885941214a29983cf24fc764c3e19313a60a92ccf3cfd83b5e21a216d223aa0182',0,'2024-01-25 12:39:49'),('c2e27ab23f371af05520c59ef31a23fbb3c42c9b53bb50f5803f2358dc3f81cc38d813e358164e52','d88d688a65ba24071cf37d18d62099e89eb4e08cf0ef214f40a9caa947502488058ff92901030a5e',0,'2024-01-24 23:44:32'),('c3009a44ccc0aa9d9dd3d64dc4830d91f5a88747581143f925118fb09676cac1634b203f200470b6','652129ad796b947eeed65aea1a660a9b454c2c4d86d81e9cf01241cf6d88e1737b382ca7a40f36c1',0,'2024-07-02 15:13:06'),('c30e66402bd2b718743ad7417e77a47694da197d3c99d46b03e10d7fe466ec7fb81c6442304202d9','b28d056b522b5de7b37dd15d08ffc11188b1b0a7e2c411d295a557469dd3766634f7d5e53f5c9677',0,'2024-08-22 18:14:03'),('c32b5b833e2fbafbed42a952f7213f5a3d851e4cec665e3940f07356e67ff4df15916cc189ea933b','a1c8edb91141c7dd724f198afeff0649ba7840e6db56443cdfe8872701e86c230b6211c23024adbd',0,'2024-06-23 12:33:29'),('c332fed559031bca4c1fa43a919f5febd63bf59cfb4cbdd18e108434d186946b223943bbb5c10edf','51c6dcb4ae7791155736185096286d5e7fb4b7ae9e5d89676e984c208d3547301579fd1808e54168',0,'2024-10-04 15:47:21'),('c33b5f942f45475a1484bca487c29ec21704143b9cbce33f03dd7b15b90e9bb13f60a0b9d930ea89','8bb418492116b38613f57187e692c8272e09166dfb9680c8e93ef16b741d3c193f5114514cfa8dfa',0,'2024-01-24 23:41:07'),('c343cf8535dc25d25914cbfe06ff016fad307ff4e5cade600e61a459f294ddbcdc78aa9b772c81e6','ff0c213418ea7f91fd8356f93a2834d769cdd268483bffbe81bde46c22b7be038e5bbcf6eb12722a',0,'2024-04-20 10:41:00'),('c34ac58ba1e7da9aebbfdc8514df3ada876099e75ac65b916226d97c15acf314ee661273199963cf','aaa349a5d259502dd94e6c74965e852060d105fd98eb8272d8bbe5c975b46edec5879e3d76c39ad6',0,'2024-06-19 16:01:15'),('c34bd5425840855d2e5d71e0421d23aca1996563810bec48b15309d08b827d8427c079ac268952f8','3f679a2352bdc224cedd0548acdbf9ac5c2493182c48db76c61444d1939846d1cf7187e4bdaa41f2',0,'2024-01-30 19:39:37'),('c3501efe95209b2a6f9c83293edc501bed47e013fb433e68d195903a8c254c3b2846972cb158a4a8','76da622ea4f2efc9ffea8a13e5681f5eff5b4c026fd8d886e2399c6a877345c09d877d974dcff734',0,'2024-07-29 16:18:39'),('c36fb0735ce5edac906bbbf59b7c9100592166332d9fc254483d8b4c8b60a0717710f27372a73e18','9a69e73f6ba26fa3232561ac2f54e99d6c5a1733b45936848437ed630d93936c460ab0d36705b3ad',0,'2024-02-08 15:04:30'),('c375b98e4fa80b94145fa3950f2bb623f23f295da40b81f7ceb24d534a2226b9ab3c34de0e86262b','0170e71bdaa0b98943d78c53daf419827c532cc3ce9b9098cce42030a7b74c0b3a744a51382e5cd7',0,'2024-01-25 12:32:11'),('c37d52d49a90e7c33f9bf853beb01d9a0240f8e2ca33286b75203508589fa9eaf10ee15ee58e3dce','1f61527d38237df912e4160b34486370db15d4105fe2257deb59d942aaac1d9fc1c6726e26caf9d9',0,'2024-01-25 14:43:53'),('c384ac33e5c12532907b09375b0a7139836b85a9a6049b56f70c9302a10a46456fe98ad0a8436b7b','e3401a89bf423fe26172b543345060e8293d39d956f8c3fa9ff563bd484d366d2dd43d8f144e55af',0,'2024-10-02 11:18:38'),('c3a98693af447e5036f7af80edb6a650d977d685fa05fc71a40d4a6caf377b38b5ac7d69ce6d4f15','50e35a334d6bfde41267305150f477d0c440b9677f4678983ea378851b006ca5aef01d54318f1beb',0,'2024-04-08 09:48:04'),('c3b1db854c0be56706148c3bd7009b63817f0d56e956eaff30b0a4d0386902cf08dd97947d687272','94de9c7e9db0624fdf404f05fc64d00bae0225e753c609b3473f0c3bfde062bbe25e85cbce00798c',0,'2024-04-16 16:03:46'),('c3b4dbfa0163b6beb88fa295c99aa8dcd30612275ccf1a340b521afa316f7fdd50ea9e564b058920','e76c004e7ae84ea5f1ce5d11ffc5bdc0ff19afd63556556b7b80e786d676d1268eb2cfc24c8ecc30',0,'2024-02-19 10:17:05'),('c3bc6fe5152e004e5be3160d8ece666a69712022575fe4fd82c4dc7963a33fff261676c9099b722d','11c76f2856e18885d284500342009b9eab0446c26bc354c4cd92f6be10005c948011786dcde0003a',0,'2024-10-06 16:25:40'),('c3d5622270677f1776e5f4996a47b6816123efdb1ce7a5d88929567da62c78675b225e7dc656a8d6','cd4b8ca164c313dbd2ab668b1abfdfc15da306c1a4daa594238e00b4c541da331eda0e0332a6f31a',0,'2024-05-01 22:34:31'),('c3e371b0346858da1276792dea2819b6c00bc7cbbbf869f613f718b6144a37bb0591073198d0cb5f','393eedf127b6a9aa15019b372a2eecf2333069f224b27fd98c93c898a67b56559be40624aa865ea5',0,'2024-09-17 08:54:07'),('c3e4fc91fd4deed0451123eadd218f877a46c8d811a6a892e3a7835303f3dee37c6c5fd7f16c2669','e625a1225d7249122dad3631e1b3d74db811dc43069a12b4c5ca2cb9ddfd1ccb7beada87c8245d54',0,'2024-02-27 17:10:58'),('c3f49bc9a1b9b8c301e107ab32dcad0c70cc0b4e8a6691614b418a741c90cd17e9cc0b0d15051fc8','8745fc62b5e454ce8844f8ed25bfd816650af70b7e045ac29851bd36fd1722bf34be87dfeb53edf6',0,'2024-05-17 21:35:39'),('c434660d23b6211f0ee017fafd72b99419096a2bd473cb58520b41131b9705a7b58515f06679f333','6252b0fcd68f0cd44e6b7ca2bd62c66543d17c2496302cd5de1b954d535af8c263cbf219508594d6',0,'2024-04-07 07:49:45'),('c4408e3ec9de0721fb953de9d6f1ee04dfa7eb3df66f8e1db6f2d5fc3db5921b9b4c52573eaf3b42','3fc40f33181103d47b13ee71f57d32c8c74a43b2485f8dd8949fdc25f3662158ceaafa7cd20a49c3',0,'2024-07-05 19:00:34'),('c44bd15d7e5308590e6272a6150d587a18e53d4f78c3165600b3d39c8aed000eee9f77f976c615b3','0ee5c68a7d385619637a536d506a2a8a60d07337d2892481db773dd3131394ac1da6d45b28c73b9a',0,'2024-01-25 17:23:53'),('c451f58b3289326818a9a777bc87039bf0146c6506bb2fec18edf4df1ba96e3c83b225d6fe3d09c3','1638c81224eb48704662562a2a1bfc51f495257d85bb5e949a60168bc80cbd2eb5d5a5df74232cc9',0,'2024-01-25 08:58:03'),('c45d7859039c66f9ad252703d249a983686e93dee264bb7072a5075f4682139dbe496b9184ceada8','083d7b6c01cd346c314b7c57cd1acfe05a97ee8fdd5c51440fde1dde71a4a698e68d8a36cdcf0524',0,'2024-05-16 17:36:52'),('c45f27aeacbdb3199f8e18483954885e41a54f1bc540df5908d11c31f512d2da2c9ad8261d00567a','b5a0bb46f33979c4533fed0c2e01f142d0b5134f39e333f2823e1730da3b89b72af4a6fb61d09f8c',0,'2024-06-16 21:13:54'),('c4618dcd0aeb310bf980b1db636ffcf147bfd7e3f095085d69242bd9a299014e51ff4d62cb9813a7','f60175a496559234e318b5f88fd26cde8a58101e757379cd2497fc9eeb0ca61be8e74d90387c5cdf',0,'2024-06-14 16:58:51'),('c475487145b27f29274e51db95a27644c20fde80521a9f963ee6170cdca256c7ad79ca862101a39e','533044ec6f8b3119e568708d2d30a61af206d7116a858865c8b736288438e6d0ca0eac0c29bb1e92',0,'2024-04-16 18:52:57'),('c48511d5634e4d40bd36b5b4d102b187ff00d4962e766cd5db945ead425e8a4c0131c95ae4ab0691','bd6a7df9ce85f6d8e85c12142c20d37f2127ef371590030b09740ee3e09246966b552fef3a42e23d',0,'2024-09-10 16:59:08'),('c4a6aa5510cd8e0719013e17fde479c416d5c60269643ae46bcef9b3a0a529ebde94054f8c29c3ca','96265f41cb4dc3a182a388112509221fe40b3c9ce2ad43759bf84219d07380dc9b41de57e14e6d6f',0,'2024-04-16 16:05:26'),('c4aa1349ba276294c53f10d896c251ed6d46a8431b2d78940630aa8a99c2c2458b4aec4d778353b4','cbf9cdda64199c93a07736526c212ace664d4fcf64604cd7f91d8fda338875c63f8bded8a1babd95',0,'2024-01-25 13:19:07'),('c4b56f1769de6594e7e6e0fe64ddbcc3f55c97d340aa036637e67e2c0b717bd2d5d436a373716ed4','5572e18658f1dca60505259a8ed584bc769d19a517e61f2c0d151677f12d8ac80e09e22a31dbab49',0,'2024-03-28 17:09:09'),('c4d93e353264097adecb1713981e4c63d688543d72624175044027396b6c892d1de8ad478302eee4','e51481fda32fa15352f79cafe7283b0d8d69728dff577b7b10a0897049d23454a9429b693b9e91a6',0,'2024-03-28 19:05:26'),('c4e9bd2ef129f2875efd5f73a3cbdc63ce6807c6286efc6be2859b8679b4570a983b6a5b88357746','465ade5d949a43cb232ede08d1b732d0654f0d49cc958b128cfb0058468fe84300813386a8b7ef96',0,'2024-02-16 09:01:58'),('c4ea8e58b3580dfbedb7db2b23c7a36002160f03a22b77e9c884e9d52fbd29eb61597c6e53ca58f3','dae4be33f39fc6ff208a39c76598f2b6072e4e933d84ecbdfb853cdfaca569613d1aadcbf2724dc3',0,'2024-02-20 22:53:26'),('c4f685369371a18245021c9b3382ab985582e92ff0eb51bf0bc5ff6fe8f065213ed0cebd47f7607e','d4a093aba2d8be521878bcdde1f9c181602a821a5077bfd6fdd5cb7e1d9809c7a059e8eff923500b',0,'2024-04-28 09:10:53'),('c50014afcb9dfbf8dbab7a182a6d13ebdd7ca638bc1e4f38ecb487a3339795bcf784c7f324ebbbb1','1d981ecb1e0f8a2ac2f1327bb5ac8980dc7e5b086c4021f48e41518d9a0f508b5513a87f5a6dff62',0,'2024-01-27 21:01:23'),('c5049dd43ac2461ca9d2c342762508aa231fb91e87154b7c45e8cb94483c2b7ab2d35ba78a12c722','920e9003156094eac1801b5f0101bff19c25b280f4bdaf10d9b2d722e73f8a006a6d72ac2f303f11',0,'2024-10-04 17:00:57'),('c5072add2499898cb88c180c096d943192c6e7841cb8c10d3c394a7cafd9d26ed6e7280d1aad168d','5ef114c61134a202c7ce61bd04e775d123828927782fd49b466da7d27007089c696c5f7405f7c9a0',0,'2024-01-29 13:15:47'),('c52689c04e00e6d471c0650849ff321cefc9e090acdec01ebe3140f97f37c193624ef7e10ce51a96','d75b9c79d4b0b565b756fc87877cc97b426468c9bc43191b0e8babc664a9285ae9a2dd7a3c18682c',0,'2024-07-04 19:39:13'),('c5373226478daa719c05accf153c30892396722d5544dfd54951efca6d80474f20692072d52304f7','0136eceed8077076873aca1b98bef2c52d48e694f8f5fa7e6f39f5c92bdefe2a7531df148a6ee620',0,'2024-06-04 14:18:49'),('c53ce8aa3ca4be35e3de67b685c0b38a633dba0afcf7091e7f30d1b35a68b40bc956612e2a5828bb','620ff9f8d29ebc3e29dcf5a43cbe5f9bf3c19efff6092143b4d686ad9e86a93626c471cbf305bc84',0,'2024-05-24 06:40:50'),('c5464bd2ed84ee1c719b99220542e4806aa3a383972b4d97102734542402c657d8943b97a3979253','e0072fe8f8ad42a25a72a610fbf04932c189dfd687a080ad6c4240701c389bcc425b03ac835fcdbb',0,'2024-10-04 09:31:45'),('c5490b36341af3befc0b26e20b48e890731f24dd94e4b5b11f9faa7cb956015cefebe915c64ca72c','afac2299d95171c5a2e46c5806c7e7a744aecb34dfcabe5992b1389461ebf546c83ff44ef59c638d',0,'2024-06-03 20:55:02'),('c5679be6442016957528dbf71c44fbe246daa3b3e29c19fec3955b945452dd38e4bf0e369d50e4cb','16403bcda9f5f1ef2dff25fb0876c38da5bbeb035164685e6fd0ab406c3f8b4b32d716322497a880',0,'2024-09-24 10:06:31'),('c5703571afa3ab5319df3b116faec446f0a1fd9b0dd8041f903c1ed3da0812257b9d3a96ba9c6c56','16e0d1c62f2059fc0509dc80a5c4ba6dd3d282a35f567196a4934a70bbb6fabf1192505e3f8deb3a',0,'2024-08-19 10:34:59'),('c57186aa6cad9bba000ce8ce69b7e56e795be373ccdaadc6eb612ac9c8691bb56dfe0897437e975a','6f4414b96144961877450634b52281b3afb777cf61064892d7ba5ad91982179349d6666e3bf54152',0,'2024-09-10 21:07:17'),('c58be0bf3f1a29712858e56e09cfa987872b9c870c58550cc26949974adc7c719e53f277164db566','f4ff327b687994f98c91b772fa22f2d7626b70db307de1234d9aa6bd9c8a7cf1f7f183aabaab7812',0,'2024-02-23 17:27:04'),('c58ed3280db03ec1c9d1f05a901fe5fff3230b11a93cdd7947a84831bf06ff51d8844c1890068951','0b2a2f9a10cd494b68fb8ef65e1d05aa03023d2e49303cc8d538db7892951745cda828534eb8333b',0,'2024-01-25 09:31:23'),('c58f7b6cee5f52ee0e152906f1283e0fd12018de808f866858ef5a501d647c24e13bddcf2d11f4b6','dcd2125aa684e037ac93469294b6b5a3a8657404ddd17befe48afd8e31201564694496117e3e5689',0,'2024-05-07 20:29:12'),('c5a7ac381230ed0bf32f1a75613be527854495c967f92b91c433ea0c8ca2dec9cd94e93d70178f3b','f9cc5d0c126d60ff8434bcac033805d0b07dca8b5e2e091d6d3c4b32bb609443a6279df6d3f144d7',0,'2024-03-10 23:17:15'),('c5c3956382b8859867bdc7a31422e0995169664c37b9c5d77b4faac5c2e8abd8ac4cd1118b25e8e7','e3dc69bb431e600ca19ddfe3de2d9ae79f67d19d366f903d5b830525086c375d752c53d322292d68',0,'2024-02-25 09:59:46'),('c5c73c82db682397dd0e98a57668fbebf3d501529d94a96f4292654935944c8eca130c1de3bade6b','878ef7fe5a37ba83658355fef8f897ee59e3a5087481b02b14cf3c645e5c165e52a046faaec8c2a8',0,'2024-01-27 10:45:46'),('c5e0b9f1cfcea908ae7a66d76cd5bac8453f7d1d4cb5eea84d93a0123a3eff6f16ccbacb77520ff1','e4ce9c4515751440fd1dab512854b1cbb6c1e9bae2b97dc8142b58847398b2ae9d849e3cd18fcc6a',0,'2024-01-26 21:15:48'),('c5f739996de433de380dda456c1b81dce704d4639030a0fffa045d739ca3ec44280e020873e1ec20','dd417ea5f39aac262bc8f65a1cbbf8b870abd56eedcc4cd0706bb627a044fd3c8308754ba574f0f5',0,'2024-03-16 19:29:48'),('c607b1415c18a09f7d3da81edafb4d5a3f0cb24863234ab9f2deef997f9c63df9fc3f09a928b81aa','9ab18bf0f0ea956e951913d696d01d8a5c9653e44b0a434c3fb12f4cf5dae1fcd24fe35cfadc1828',0,'2024-08-29 18:51:12'),('c61a3b8a3e71f9c2310bbd8c6b59a3efabf5468072c555476bf8cc1d7056a79d5503cd6f96f35f0b','ddd75b963bd79829ef6bbeea6625026f4d187aa1a376f3d6bc3a7c857012731547816c39c34ebf10',0,'2024-05-24 15:09:12'),('c628adca1445553286abc41bbb186a58ec359f0eeffc3442a08673a828d2df93df14b42ea3359835','575bda0c18dfa1cafc22ed6614a76cce47bacf39261779213c1392075fcd511b2b26f0762ab310b8',0,'2024-07-03 23:01:52'),('c646ff956248d6a55e08f2b8a11086afeebbbda688d7a0a63b8844a1b357eee1c2e17fa43475dc25','a5190cb6cc24cc036e3ff76d2fa5b45e547b688078ada604bff7cb12acf279319c0c74e563bf8dbf',0,'2024-08-08 15:40:10'),('c64ae3412b6e217cbeb18176dd6292b744dea8f466b792d094d493d35b3cd46c93ea27c0e1c63f1f','6ecc7c87706cd9d7af94b7409351290a65ebb4ace2b090e81b976b7630634f8229f7c45501c3292e',0,'2024-06-22 10:56:50'),('c64ed8bc1d240cb9ac9fef10d29e84975180b0be44f521a0c2c25583edd55d0325bcca0e44075fff','90d79cba4f787f7067e65700a5a3b4005b02e2bf04abc9e262cfac6eefc0a3b99dfacd8a4f07592b',0,'2024-03-12 10:38:58'),('c65ef643dc3e75a6b1d1d9bbc0b227a5232b5244870cef3f50aa1af67c247e6ebb7edbf985f6a818','4ffaaad6ed53c44165a139cbbf8c67af7ae24bc3f7fdfc7919fd52eea549a72a0b1968072373a2f6',0,'2024-02-26 18:44:46'),('c661bf9fa32217d991cf2e99441ea38c1c1da3636bc0c8b9bfa0d4db7c1046dc803ed7ae8f93d09e','94cd0ba25dd9dc44c0f2ff2f6a43128196b0681218035fbf31001fb1aea301e7d9fddbf472565255',0,'2024-02-09 07:43:45'),('c667d52d8262ea57d353152847be5b0d60d7f0a4461996761b998fbf6a698209eeb071d6a6152166','1a20969bc9da76f5385d5f431c48bb37a8477dbbcbcfda10751247908205915a2b53d4b69232924f',0,'2024-01-27 10:32:44'),('c66e0c13885dc908c9aa0064ebcd17a38df323fdc45aee5ff6b4ef4f64b7bbf96d0aafae863305b1','709c796c20fac0ef4f65f5409a864e1abc2ccfc611aea8f3155b55275bce6b71a1cd03260fa38030',0,'2024-10-04 12:57:31'),('c67b2af610622ba17e83bdd6ac839ec509e56ceec2e8b7d1bd8878a8daff3df672c983c62502668e','b58600febccb559ab3f497eee1a31aad288b21975468e845b932b37daa67cc5ccace57b40069a165',0,'2024-04-19 21:18:40'),('c6818d0e8e42ffc8be22168adab6e3fa780d83921352bb9efe3e87bbce3fbb1d7471540fd874006c','45c84d36951e3414f323a90fefaf70bdee747cf9c720d6f1600ab7c858d745963f9b577cb7d4e64f',0,'2024-02-16 21:52:35'),('c68bb6d6351d246766cffa4317c3f317b28c6803408d175225573e5db675a033e4fade7924c76a09','6fcda6d033d6d09a6dd42b0067cd3c9c05a21da44941da0eaed1c6abff0a11e2fdb21ffc656ec28c',0,'2024-03-08 16:15:57'),('c69c2842e4045a10778cdf4fac000d4bd038cdcaf153b0e7b515b40878bee62f5afd75c0ba97deb3','6ad3ada259ae13925cd5eb56f55667e92b25eb9bdde66eabf45d470834ffd7e5afe5d0a60c42acfa',0,'2024-02-06 09:42:48'),('c6a8903ab71895f61053f607eac2c7d32398de8d86060b48c6d128b3a9709686ba00292d46542a6d','ba249d51de5315d42bafbe4b9e09f5b7efb7a0036b63942e16726dc301fbb73a65e0fe427d40efb6',0,'2024-09-10 13:51:51'),('c6d493f86c506bbd6a6e3b6730824e6520130278b71f2ab77d02c07ab30496ebad5e472448f1214d','83d7129bfb490f1b9c1507f980807904533b0a8b50957e8de0f2013dcdab97fdb7a7bcc2e2c80a72',0,'2024-04-12 15:47:04'),('c6dd524c97f51df702d6fd86cd455d0e80ecabeb72b8a1541f3166f05b4c1c1904f270e66a6caa1d','6718fedb81f7977ac6ba0976dbca28b910deff76cdf5330090d9c87595747b4964fe96df75e73dfc',0,'2024-07-06 20:05:39'),('c6f5930ab2456163f4785fd4c6fd39d43a99f4c0dc79028a7011fc0c307800cb4ca9c507b393c383','6b4591a363606d0c716767b1189bf9d134a23ea1a5254163765b75e15505f30894eeb58133d7c907',0,'2024-09-17 07:36:09'),('c7109488a0087a2269a24e6bafc06689a78daa168f2bfbeec7c3451baf204738082042e233077dcb','41d0c3664b1d0bc772a83a1a37b32d719a07959e3100d0931a0d04787ce4cdd9476af3e389618ae8',0,'2024-02-18 08:36:31'),('c715023e5c4f807541ac13b071ed7416179c5aa0340e175b9c7c6d08fed8561582ab56044b2db98c','bbcb9828d0d8a2696258f02bd597cd68abf02a71471c99bd1f59a11ef238d65bf24b04c25934735e',0,'2024-01-25 13:01:48'),('c72535a7157fabeea11c4de1343308e6b80d37339e94c05376930e7ba5b6133b7bb0a0786324323c','3c3e28f50eda8078d37e872451be9f263b6fd0cdc947c7cc837c5bbce70cbd19f3119ccc1ab7317c',0,'2024-06-15 22:21:39'),('c72f1c14f137f667ae09bd3ebe90f99940b6da06db132ec47436cb0245254aaf0dee67972d641bad','ad20428b8ac62f123be56841a09f244ca29d63897e4b8c138a3a4d4eea3dfa7dc80dee966033ce05',0,'2024-08-07 10:56:23'),('c7309d61d3d69ece8104b8da9e6c5283c28583e49ece195a972e8cf59441916840d09fec0b286d57','2224711390eb577da0d53be28c4d632315f9ae31757d1c3959fa57e99fde57854afcee27e00653e1',0,'2024-09-17 11:55:00'),('c7379eb2219aa49a0aa4ed820df0b9814b3ab1aa8c80a5cec33a896a710a214921c74d428035c249','73322ed00833c8fe3ad031aa410bd6afddcc3a43ddd33f3d249caae47fea70cd8294497afe1bf3df',0,'2024-05-17 21:25:05'),('c74894f0f00efbaf66f1ab1738dd9c8892927e88c9ff63a473f1de55aee413afeea9709add1c5172','a679db3be4b38abfcf36c19b7dcb4507fe92feaf0a28fe8e79ce0245a74272fdb4ad22f23581f9dd',0,'2024-09-13 08:19:58'),('c74b52b394ba27d90ea1adc60ada6888d1f73a47b238b91f226cbbd86f8860ad5b38e636802bd6bf','e8ab4a045da8a0d8c9fa3ed30db9e04af294cad0f539ae49f9e0a55b5453d05eb7a0358baad0be8e',0,'2024-03-11 21:01:48'),('c760588fa750fd8e3a7679128a78464540bd0743bb5393177395518c797c4abd9f63142065144d17','0a0b0f77d9f35c531dda40b4fa890dd869158bd6212e9a2e0ca0458830e43589d71a063cb0d1df6c',0,'2024-06-22 10:13:11'),('c77ad68cc78ecf6fb1c208a9bba67a1e36b4811ae27333259354721b071016cf4ebde6d5c7c9794f','b493caa05de9526ddb9281e48a8b713e0b8b2b6bd243d12ac8fb0e5a184c40be3919a7839541d387',0,'2024-02-22 16:31:36'),('c7929d45e800a06cc7a550a962bcb5f6406f5cc1f1144f6218aee5af54acf57258a70dedc3f28e37','a60b537cbd99d55a3799d872c174e4d530a7390c41e6437844e918a0fc3ed736967f30578b8c89c6',0,'2024-04-14 16:32:48'),('c79c2092c55c967998a8860a670557137e5abc3b95158a2e2845b6e7d36d7069a99f05c8ef556bf6','c6867bdd1f9b442907b4b864b462a1aa1eb2983b592f9071b62ebb4a834046069de3f163cacb75af',0,'2024-07-23 15:46:49'),('c7ad9d659c3bc1da4232a44013441d9b6ca5b5631e3b5490ad0977bdc74e726e742a7b685d1469d5','73b759694752802d089da95aee7a7b968c2acbf8229cb1da36df2af5df80d87f00031a0a83cfae18',0,'2024-05-07 19:10:18'),('c7cb3a4e5396b7b5a8751a5881ee21dde723d53ff62383622e06e291067483bfe16962c2ae414b88','3e05d63635eb9cda3f86d6b034301994e83bd8efeea0f2adee1c075d6eab733c679f71229e9c3ad5',0,'2024-07-05 17:30:16'),('c7e06fdc73eb047cfc2f66e4ad56e3e4a0468c4448297b3b12f6b0b3b47ddf4e0881b954b1f54a65','823f712cf494e1171875bce3fdba1f60d5b47f6c6bb6628d52e4424530a8a645f6e2c683e88b1f76',0,'2024-06-30 12:32:41'),('c7ed10a31f4cbb8a0881f324c103a333518fe5e823ddafca1b2e7b7a2b8a6e6e8411e38915e6d6f7','5e2e824c30a2f0af93b2ae97c40ca480e12ffdf28b90ab0518fc04a084ec4e8b610b91a7df5e1d9b',0,'2024-04-01 22:39:57'),('c7ef1e2581c1bf80ed49fe7092f538ea5df25c9d84e99946cf8e5dd87ad53b5838e7a399a30ef95d','d763e68edf66a4092c56197034577f800e77c6daa3ccf296c69e5f72e08b5f59137a0adffabcb814',0,'2024-09-11 17:27:11'),('c813c291bdea65fa98af02817fa98c0751c4e9622130988cff7659d3e77289ece482ba740b1e317a','492c1d7776ce271b4f0b3ab5eda5509f11dd8984fa44ba43ef6d51ab0a3d6bc0e5109bd46b7e56ec',0,'2024-04-07 17:19:10'),('c81471260f19cc59e5fcb9c6e6d55b10205b22baae9dd5a0dd84b9082c7849a7739e2b505db8d210','3a00f6ca38f91f55cdf7863a6f8ee84f2f46ab2ae7f3bc05ce7be21427b30b51830caee33924dab1',0,'2024-08-21 08:52:56'),('c819d12d5ccb5433be73908a0c031256908dfdb9cc44c2efd75037aff85aeff656c223057368b76c','f226cf44cb2ccc0bc400665fd361275f0167cb14f2d374b21564a6e6bb17ee2ad651bbc25122fdc0',0,'2024-08-21 14:37:03'),('c81b058f9d3f88e8063d255a54c5e103ce81a6c17c94e4ff113246fbfd2f3062cb5bd4c4a8ec481d','c183fe0ab460431edaa820e5430e34a83abd1eb9928364e888feaa6ae1d98cc472d9386746568447',0,'2024-06-16 18:52:03'),('c846feba54fb1297fa12e9aa074250b1d38adbfa46f432b310b6d29578bf511a0462e5666e6dc3d7','5a260ac44fc85b0b3ee2e9c1f2e0c45a42250879eb72948298a059def0b5c7a2b9150c0c5ed21386',0,'2024-01-31 10:27:55'),('c84a115e890aa9de831a4d8285acd17c8ae88d68d8bb802e1204502cc5c8afcc56a7f370eef191bf','862c5933cda6254d90ab56a17b53b9bdee839bce099aa9f4816d95951d224e7b41babe864c200f09',0,'2024-03-12 20:11:27'),('c84f5344d43426b6c8b4ec8549e0381cc2bdf6adddd70161f0f90142bdf23f9c8885b1dac808f75f','c2d308313bf077e1edee43d3cf20aeeccc4feb64d13c23ded4471a9e5f90fc7ec6e94a66b165c86a',0,'2024-09-03 12:28:55'),('c852ffbbba159b4a02b9108bc50a6b7f4374598a2b66c42ac9fcda30267f7244e1b1f85b63fbab26','d3bc096b97fef043af6742899217bf19f8ceb761e8f76eb340a77ec9f4dd32f84b9718902bf00521',0,'2024-09-23 19:46:06'),('c8772768d5d61c8e45c5a5944313a62a33cc808f4ad787d09f31259976069f50e16a1819934909a4','c6e0bfb8609337752dddeaedc7f290a8b386f3cc041be1e85e31b9deaba68cd2a869385b622c4d8c',0,'2024-10-04 23:25:14'),('c88e4467197f304840593ec6e734e6230e37c4405c0ac76b160111578f2d279d1d33b9b250b2fd79','71aca21ec359fb8467b928de8b8d97c18bb882fc120e01166c0dd1f51111fb4adf3f3fb50d56f6bb',0,'2024-10-03 13:14:27'),('c8ac72f875c5aa4a506245ff3daaaf1e0afbf5e6ad5d6ac6f0e87a2f1db00f7edf2500cf2cef2122','18533fe3d80e40a926453f1d73f3122445a8d77d7677f3eba5df6d6a24a14e73d5a898b5b7dea1e3',0,'2024-01-25 18:04:31'),('c8b01839075c218c92dfcd9305770b39dec9b129efafe3337749a071e9b8d8161df7796867b7d82b','b1ecd2ecd74997495fa4c3c45cb6d037d133bf31219529dcaa18b4bdb23e9e07a2a247a9755e5f37',0,'2024-09-20 23:09:13'),('c8b351a5593071d98f781a6ef806e1549cdfda3971f3bb07cb5b8f58504daa79835c77de6c4f433b','bb21f7a114a6989a34fc7d92fe46098c0e8cc4d66d836e929117fd950349c41fe8b176431eb0d122',0,'2024-08-07 09:45:41'),('c8b94cd3168b0824d0cade5bce0af3b8156a8d59a287b7d7640e9a0672466a29da0acba9c0748f0b','e7ef7af288cb8009d95679d55981865e6c0450886f7ef19ae3c47818c27a9fbe6576ac4994deeb12',0,'2024-09-27 16:06:01'),('c8bcde9ffd76b8de2fa23036b7fc28e9e645a97265c024bb2a820fe875669d7b06b4330c7bac7f82','3ce8a921976d2d4da697334fb663f79ead0adc4f9e405d5f85e3178b14a937051d1f67bf1d65d58b',0,'2024-04-05 22:33:24'),('c8bef1e748c7f48965c007e1ee2ecb5a9fc5f28a59e711a768b139853a8037f39c01dce1dfe509ba','213d07366ce0f4179785bfd1143e98ee3be90b749fecaf6fbcc030397c53516dc735a3839d6a96e8',0,'2024-04-24 14:16:33'),('c8ce1a0261f58cc0f1bc46095627169bd0081566bec0effb95159b54c73130f7db1a7136fc44ee2e','b7a48b855b904b70551b4eea07051ae65e71b738879d8b460c10ec55b5d5c1f616a3524a2fd58d90',0,'2024-03-20 20:18:28'),('c8d304a7686b91e4bf49b0ec4d805109ec8aac73eb49ca50abefe99705bd2bca81ff1dbad87af38b','f03d0298f83327e1baa333aae55ba9ad272cab638f7427e6c097aae7c9dabd1940a3e44c4b1b60b0',0,'2024-06-22 11:49:02'),('c8dfa55c20111d10d4b7f2be182d5aec449c8f84a87403025afeee1b95ff3d9501f0cd5382a848c8','5371bdf4b3d2696b2b1681747dd730b3d3bf478c3c91f879aa75d4739e1b72e00c53c5f245212e6d',0,'2024-02-15 11:36:53'),('c8f595fed0946dfec9b9344f177e141f8ebd06d47f4b912dea0cbdfdd366225827d3a891f6d7a84e','0420dd2b07cc9126da475650c102aa25c0efeaf21ef9d8f311f3f5b2fb89ef12d3e51734c4cb0bec',0,'2024-02-23 17:28:54'),('c90ad996cbdb3823fb5fee12cb94774551cabbc9e9c04650a375174824dd264c6e92506e50aa564d','4cf7016438932be519664f6419a5de986239641661b335d0abd61fcc99270bb43a7cfa4ef4cf50b8',0,'2024-07-06 20:03:10'),('c91a0e2b409128e99c16e41f9b825dcae0c2e98b9fc28e5fb43380398211ed04e15c5a0bb82eafb3','796e2780108e16c7caab48126fd07d38486bcc06a34176c07b696332c7d617f93280310dcbb4b052',0,'2024-01-25 15:39:32'),('c91d2dd98ab71a8ea33b77e782a1942c5303e34d3a28decfc881e54c03f5e5703057e4c5ce940d9a','4d8a5ed90e4be9c9fc3027ae949f2e33562cabf19dff89939d3263b9bdeb5d11efc152fc8331dfaf',0,'2024-09-23 16:49:06'),('c91e3fc1fb9c986751ce4816b4e9bcab52973b0c82f495c2fb6d1256f5ea652a2e6ca0961bf1fa29','e7c71e1470b9a8c8b678b189f51b3a2716ef288c9c32c2e032d8846de72d45066be8533c10686a03',0,'2024-02-01 12:43:51'),('c92a6812f1409d644d9a8872c4d8ccf80635f1b30109316bb96dcc18b8b6795cf847ad166df32529','e9b7b0a25b8f5900ee045331aad2d535c361833bd3a82e092ea14caef3d38ce5baeec20c59230412',0,'2024-04-29 08:09:00'),('c94d3c0823e2c252a3b72ed77a663d768c5b94b10dec50b97eb422a978f8d8519ceb86b6f68cf87d','1790b1c55695f6c823023f9757ede41586bf7f84413a02a57de21f66bb11e5e2dd9e8cbfd4584660',0,'2024-02-13 20:18:37'),('c953038d2891ee9f2c702f022df9eca66aedad4f4efdef120eb672e9c10032c8279bdd1609721fb7','fe99d5dcb6ed2ab4135e1cc1a4751501f6d6f8d924ec33c48788f1aac6aa8ddafb08e5e111636c09',0,'2024-02-23 14:04:05'),('c9583901942d168c0fe5e76bf28d1fc79db78226d87062fafa694bc9e2f5d2f764dec7e00dbcfc3c','24a9568ffbc4c6368d5a709f3c45eeea11b71b8ddce8f14d5c7f8a91cd4251239fc16a71fd583b45',0,'2024-09-11 09:43:13'),('c969bc7dce58a7bdd379de02488a0fd20d662c7c357b0b007b095da661a6921f92692dfc76964b96','be1b418c1937a0ddf3d96ca26845a76e0015fcf72ac64d43d8de8d46a6824b3ef4b29fb578ea7b64',0,'2024-04-29 12:05:19'),('c972c86806d298407373f4668847b59a420a2075ef7b87a5962aea11bbfc680ed7837a1c81c4e68a','52285bf20e154b023118761ecfef994d17920e3d78a00ee40d6a494acd3a00481f9fb977bd237b80',0,'2024-03-11 13:30:06'),('c98bab00da8c7270c845c120db83b414ee06438ef0d5fac7b9a3090d2b649b5bf65b9bbe2cf6c456','cd70fd77f590c7048822f476a36fe7f64b7e92f18ad2afc632c224a062fca16321c5e32df40faf45',0,'2024-04-18 17:56:49'),('c9960e050df5bd83d9c83e5c89ed22d550976cb1957a97e8253dd2d9db828a17663e5758b44b826b','3870c296bcdb2fa75ffb6c8b437657a7157ce3b2b2c48cf05265f81c050c4c3fe7ee05c2643b18fd',0,'2024-07-10 15:27:42'),('c9a7e94a75e107cc9ab20e85f9ae1acbbe72c2d31faa9b5808c7d686f9f4d774ae7caa7b50400117','f9bcf3c02120367f35857a169f59bf3823fbef574d6f9cb7cac6fcc4779f528eb55350b1e86cb583',0,'2024-06-03 09:48:35'),('c9b5a31e1dc940f13b32da1d7b8ed0a5362dfe780c7cb40cd6b3176461339514464ff6a3c4650806','5a984f63266b61c8c644ddf7aad1fb9add717c6ce4600ff007a175d3134514cefaa87a16a5952668',0,'2024-02-01 13:43:16'),('c9b9323a214165006bae81ded925086d4d3662f80ec2041dd3e17289b5c3f46c688f24e40d79df05','7a99c29f3becfc29ffc3eac4c6cd077931abfce9d34b619e961da07f8528c7d9428e6795f9c22923',0,'2024-10-04 08:32:59'),('c9cb347f8b2fe7d3609fcf21fec88f423fc92e8b1200c89afac2f479d17c2f1a6b55466b65f82bef','c76761aa2577ac267a176a2de95efc86d8a68016ab3cc70589c1f7b6cacb5a9c974f89a40c44dbaa',0,'2024-01-25 06:08:31'),('c9ce5a99b2585f9a0768e54a0397e354c12143380af5fdd5bd2bcb744c8b80aeef217a087703ceb9','2cab9b3f4f6d7316aecbaf9b7fa2a96b95cb77bdcb24fccb8bf38eef111c48951c5bad206fda2d54',0,'2024-03-21 08:58:17'),('c9d10117218a39af273551e59886c77f4ebcfb9caef05857a28702e41cda6a0fb7caa021cbfd87c8','5f3bf3d8ab715c6f53763ca713228d306e2ad6813c376359d860fd0ba37df0c6d02ce8cfa8687d90',0,'2024-05-09 09:26:51'),('c9d3f50005e3f6c39b7c11ccbb045e5c97b652b48ae52032d6c0ffb622049f99de9dde0806530d8e','b492ce5272e6652b4a3fe087e2c6eb47396af608d5c226925844b1db1b840440ef000e58db36f201',0,'2024-07-30 11:10:07'),('c9dde78af91edd0c24662ffa80f54e97f9a5846402dff2d0e770eff0403afbfe62264f6ecbf405b5','b056890c33787f90be50ff3a450bd8167fa8414d7dd7ef44fbc5303ea49a23249b318a05244b49d1',0,'2024-04-18 17:18:26'),('c9fa807c18b4e7a60afc3851c2324ab1eff894a49b36cbc64e029127272b547e46a9b09513661e34','71950b72950c792a3446f7a8ab49a3e6580465c82b20464a3acc42cb00ea21915e2365758632b0ce',0,'2024-09-04 17:47:49'),('ca0e809cfffa68a634cc7734e095d3b9018bc6fcc2d15a3fc78eed0352fb91f10cf615e8252ecdb7','c42a03347372f697ae6273e2c897ce4e8f7aa7f300ccb2cda7f16fba5e8a6b5484ac06755dc4b00f',0,'2024-06-13 16:55:04'),('ca14fb5c51c21fd2d81839eab57091983f297db81386556d1f98574f3ef15cf172bae9e6364e674e','5ea3475f2e265db252ff7792c9b2dbd604233530f96f2b044f908eaa5d0b46b480a09ca0ad2abbaf',0,'2024-05-09 22:32:14'),('ca1923b179ace938cf7c0385b908e1d41bc8960d92db13f0d88c9abef5ed9bf911ec1467c2d90783','9cc63b79968461654b8f463bce51c727446072a64767ae73b8894625fc8d9687f21268c1ce2f5173',0,'2024-09-08 07:26:08'),('ca376db2c285b2240db8f4bea7c2c287e6d1abbbdae20577d495f0865ec6e389cfa3e13ca7a1d2a6','10ee5e7b321ca9eca664ae30524e6a627b23a207686aa871284ceb18bde7ee997d9a6ec6d98ed3a2',0,'2024-03-27 22:17:17'),('ca37847d0af37f4384e6f9721170e13d47be553b0da44138afa185b413da9a16c40cebf63ca5ca76','440ab9577038be2647fe29a06e0b54ae8da722766698b82ad7befb422b9149130c92764da862e51d',0,'2024-10-06 16:49:14'),('ca41c94fa5dda2ccd0c41603eff12fb98c6f309936e15a63824bcfccb2a440bfd7adbb6df135a788','de5784c9d8af477657792a93394d3b4d2c5cbd08871d20ac7678a64ba8c325bb085b902146753ef9',0,'2024-07-25 09:38:56'),('ca4e441193309502e9f0f79c752e2cf639c6268c73f07fa97885bc764fb94162fd552b6f9782cc50','e52e60f569527172c4c5190e145b8be561abe02fb7832f530b1eacbafc17600650d7485533c96ed9',0,'2024-07-14 08:40:30'),('ca5048e29966daaed97614a5fc61fcbad8f2b0add49d2ad09daae902a86a6cf1151bf24a3867fab3','9f083878c92c1a43717a66257411ad71a33054e35695e57a48a5f2f4f7acf65e35c46495da44e249',0,'2024-05-04 10:57:43'),('ca6d97415f7860c0ca1e46fd76ca9e547f153a23f14793e60aec93ac1d337a976e6597c4bf2cb907','ce5ef07380714abe2168e334b251c9fe6bb0ef51e7c6546587534f3d4137e729c472a6f686275959',0,'2024-07-09 10:07:21'),('ca7efbed14988053113a3f6652e035ad92e82679b5a72fdfd65416fbe8bf04d2fc37aab45c0c582d','e4e0e4ca927b3ba6aab59073559524d2d06b49d886ddd88afa7ffd2d2d90db7ac6a348566b8e0357',0,'2024-02-07 11:16:26'),('ca8420ca0cbf31ab70dbccddf07ecf86d6bfce6bd7c3ca1f28ed378edbe1ebd207e223ddcbd87457','63c42c99343c74581cefe5b1a25743dcb4fe6d41ed0bb0bbb994cc96cdfa3617c63b59c769fbf12b',0,'2024-09-07 15:28:58'),('ca887622eae273c8908821ca379c9d0476fd103f32706ba61e1aa7f32706c2accbe365b3c72bbbeb','cc75add2c7dbce0b72b77a3b3a564da427a7eb45b7c9a8110d8ffafca5153406a8f6f9687ff9a20e',0,'2024-10-02 20:45:53'),('ca8dd1ba4eddab70671ba6838c1f5d2c9f69d7f795b902e8a9e4e736554cb20188fa278755b9bcc3','cad3afff8f549969af59636099fe507f532b21b726785bece11b92ffffbbeec8b5383aa9d6ada753',0,'2024-01-25 14:19:48'),('cac41a0e67b31ec58196b4889530185bde4586abcdce3ac7b13f2698079d8a8cfe3d8c5de6d68e82','3b38184c1a22976f32d235ecdfa4568fed5bc742573b6c3852e34fd683ed837b02f2753e1c66f128',0,'2024-02-08 11:04:07'),('cae34e75fde064849542c04085b7d3580caa9a6b5ef97e35731e97a8705e7f769df466e39de391c5','7ac650426a2bb232a107c8464e5b4ee24af7c959e47412a276ae24914f082fe3bd629a88c91d4780',0,'2024-07-04 20:19:58'),('caf827d1c652d6bc5c006d7c108ecddff5c8c8d8b61e652c670e7ed8b84861f8edb837d66f37c3ab','674abc760b7e05c8e05a09815fca170e6bed41e2df3fbb720288dcd883cb6ce8c592dce583a726cc',0,'2024-08-18 11:29:34'),('cb21b5be34edbd6aff4053864568c9a44926a71cd84c458117c5e35595c637aa995b020fb0a2ebf4','ed5d75f36b219594ee01cdaaed38174375af55c32c4203be2bf0377fb2f2566538acf3c25d05d5e1',0,'2024-01-25 07:21:52'),('cb309c6a3c3fad166295a7ca1eed3c4920235e5d4b157ac18ef492ee6d63c80ea19d71ae352e6338','65876fe5dde26c302778aac37696289b08630981f763916a4f69a8def304c868c69f01df576a0a81',0,'2024-02-22 20:26:17'),('cb317ff715dda7862f3e66ee0593593a566b98984f27e946333d7300c8d676bb5d0f4880f8e5d62d','55c4c6fc8a97627e9ddced7e75ae73af88960fa2da4c096b95059a0b49d24c90f0c74120603cd789',0,'2024-02-23 13:14:21'),('cb39e85bac97590a3d2b5ea4e6c07a8c4079a3a6e5fa93c831e702ba8abbbb0f63fdaee465d55f69','8787a0080eb2e39805498f42591ae4ca840749b5352d83c91763f9c385b9258b12f3a73eb8f49121',0,'2024-10-06 05:45:03'),('cb3c479f9fd05b690326164a3cc82c99e1e3929f23ceac29ae8638162864ccbc93a3b3c1949e92ad','775fd52c005a440ebcd30c8875663f444a35468724e009d46915e0469fd14f4ea0b5d2e62a46cb3b',0,'2024-09-22 11:21:38'),('cb50bc80f74cb1036d3b22a47cfef3d323ca8a9230b0a5e3aeaa96912c28a92360bad6d7d7d669ab','7450b6325b4b0be9f07af684d6473135ddf2ba2d1d5eeec3cb411a64998b57cfbe43d4dd0edf5b39',0,'2024-03-29 14:30:16'),('cb66d9c0a56d4af4714f7b26d9f98660542ecb066c0106e40baf5ef4146d8bfc8203cf0e037cc0ae','6d890f7baf72aefafb9c585e38e538431b9e87cd06487cd2307fa70bc4565752be11647201ceda6c',0,'2024-09-23 12:47:01'),('cb77a5a939d2956f2f98f3b4c858cc88d7e8aa42353074a7546236a1daa53a1855c35e771f56598e','9abbe403eda57eddc7ed424b25bc17e059ce9d41dfdc4a7224f5240da7954b05bf784b5e49e219ff',0,'2024-01-31 10:11:34'),('cb99882530ac40213e2e663691122e6a26605d886cf52bc54f3938eeb3fa59af5c82458dc6128573','6e2437f3bb8b4a77e539432c838ed9064176fe0fd33c994a8743610f78865fe9d117db1864e96519',0,'2024-08-28 16:58:52'),('cbccd6bccee2678dedf8f3e58634b63391768a2339f0c936aeeb36de9c55f2e95b1a2323c255af3b','2b30bee634dc0be85ec73a6a6d4c7a0b79b2fd108f79d4e0bc00afbc3378dbfaab462d037d7426c3',0,'2024-06-16 16:37:25'),('cbea0f2a4d3480a3514ef8cb8d62e55efb221914e9f3f838656107b21005a59eba2af2e92481848a','434943327f57c580f9e3722385c34bc00f97224ddb37a63136af32ad963962ccd84ec86040c61d4f',0,'2024-01-25 02:16:55'),('cbf0f4612d5af6cba4d6871c49d7b1d4cb7e23a873ec074893c3ce605dcf8d3ec4b5a1f40345e0c2','16c59f58a6c37855d2f8c264fc15bfc7a039e3fd02e5d58945919ba0c622ef5aa9228036e22a52e8',0,'2024-03-02 11:23:01'),('cbfeb773400d57a91ebd2714f0ad9c7679a61a8a971599672ad8313611ab467a5289d058c38aec59','985bb19e7f35453c1e9398bec3f88260788b6dd6c123700aa1327ba43dfb87a8f2e04f9423f90fde',0,'2024-03-06 10:33:30'),('cc04a8428b18cd61b14f04f6b847b77fb941f64e890e913b1b170279f8dfa9c52ece6f08c1472f4d','5ce2893218555f32352702314a18e165c3b8a6ba31aac34282def0dae2ca3022115f96d62ef56443',0,'2024-02-16 19:10:08'),('cc0f666baf64dc2e01390a421f5be95a98d430c4ef81142e39ae0f8752e8567c115b16168a8f3e76','eb9c2c3ca5f3e6bfef4cd289252fa8ee59e9f0b711415ba930d68802916fe13a0483b089e5b05389',0,'2024-07-31 16:58:18'),('cc1dc0f7d3fb700578cf92d3bb5439f58ae93fd3aec3601f3d9402a5451c6ee3d358064380b04ef2','8d7d1c76f9ab956e89be37feb43a85922651571e1c2c05c064536cd603eb4a53b324edd23ac77a0d',0,'2024-05-03 19:42:45'),('cc27f94038f6795a30ecfb3f0fe4068f6058caf0ddd026145087bc66bfbcef0eb794e138b259d5a8','eb4c8d74bfd85019674a95ec95cbceb53a5e2109fd2ee77bea9425aaa7163623a648c524d82a0a82',0,'2024-04-19 01:10:19'),('cc4db21dde270ca930eef4e7a347d73d0da5aa4e551adb1e66edfe1639b9b4e0546972588a04d43d','c91214c5347956ead370a010fe8870f7d8211a5fa8a5ac930b1694f2f013fc0198106de5819b3567',0,'2024-03-05 15:52:50'),('cc73cffd493f559840904bfa08b9b8cdd2ad3d0ea23c01b27e5b2d02968bcf3a2c4a7b33f8b05175','0646e2b949f4b1b5056f50ff3f0e05ce9768ca82f51cf48424d5e919d48179d7004535376ef322e6',0,'2024-04-30 23:55:28'),('cc7c43cd54ffe38b2879450f558786b7c92fca5d2c54858c78ba52840fe7ca736cf8013a48f0f6a0','1e84cfa41d01af316e73758bfe1a445808dbd5386c82d5d53f64b277e1df22709054bbdf1208748a',0,'2024-09-17 14:47:54'),('cc8c5c2aea58acf81117efb39b8b491c138b9b07147fff61d7741f7f1017bb6de35f68121841b79e','70390a8ce43dbc42e9c200985fe4d363ae0673e4e7948a62f291744b31ff53f31c09e1f222741202',0,'2024-02-23 16:45:23'),('cc8f17d788daf4c5403729169ce316c1127e115afdddb757e7af874efd0442d21f92d25fb26bebaa','7f46ba950d451122157809b9341aa1650bde45a080199430952a09cd16113d65ef7f878ce0d47539',0,'2024-09-05 05:04:09'),('cc8fa71cc67f0da87899089a34cf04ac35a86e2ce8aa0827ed34829ec99c2df6d36af82a71a46483','b60bb3a7477cfbd972e1dead1de2e514e60d45dd7183ce6d246db3298c32d46baa6e74d2a9e8a7b3',0,'2024-02-21 15:59:34'),('ccad5d1df9fd6032436e6e6f58b8eeeb571f5c45bb52b0e4d1b7559f8fc142f72b8ed67d283cd10c','2e809092047d8477fc8029912fb0ab88901003b5139c9e6a51102bc7c9d283ca3d2987a83bdb36be',0,'2024-01-25 12:17:41'),('ccb2438bce4ce488d9568cbd0fbdc9f427da0054b0f77cc242db99b56c9bbb461b3289a749af29d5','6206207521786fbe85dab92eceef08af65c4e273e0939935ec6922060353ed846c0c3130365b7d06',0,'2024-04-17 13:51:45'),('ccb674bdf8db96c1de9090bc18d140b4ce587fa79630b858eb07e08c4aa0135e7001eb7fbcaf6705','105ad7756a29047e2501e2b228f6262aa78817258d640891d5b301c0d8f0b7da402a79e6bbc9acda',0,'2024-07-09 11:55:32'),('ccbad9f8d11b5e0800807d6b6c18cef06bf9f726f5b4b649530a515c510c941bffe995b37f77e142','ec1c7e37e5a6ff1466f1ae74e64af5bbd8df551de0c7d7267e159e468445383c7aa42b329ac3cd77',0,'2024-02-07 16:04:05'),('ccbe13a75f4b9d09f44e47f6ca62f0871ce7faf88227a1f8fdb9af744a807a880726485ae140f1fa','a9a5d9095ec88db9b159902afab1ae26d12b9d2ab2c43b2679b303e07e6c16ccb82e83052f7871e0',0,'2024-05-03 19:52:00'),('cccbbc5924a68ae1ab1feb88179447238122c1087aca9913fb0b433f80ad79df174c43ab0846a857','12c13e655c45e46628ec6f16b99e3b11e946b7fcd23a8c6f744b37ef420a869d3bf1a4553c774f19',0,'2024-07-05 18:58:15'),('ccd7e39c67393705f2ed5a172bd08d1a80b8477542420fb851fd39b1d73178c3cdb97a8f79b1f86a','8a5a3a1f55f98b32d169130ae3ac178d2355e3bd1862c3e9295612a2ccc21a1669b42309b465dc05',0,'2024-08-16 16:56:20'),('ccda9cdf59b282fcae470c8c9479d690434ad79a55e78f7cc95e79355bd0c5eb6e321dd72c0a5baf','36a16a9bab7de475e0bb2ef4420bbdc2a1cca34c4755e986eba94ef8a440589a65f7f8a6d7d06492',0,'2024-10-07 19:04:11'),('ccdb143b4e290862d84850e510ac6796f0d89923a5f563e86ea923590b441a85508f823446e2c7d5','964d5229a0c74f8f29c08dc45e701c457b71026b3b6a09f8c6ce62b8c68048f4e44170a17e24ede2',0,'2024-08-16 17:37:17'),('ccf73f758ebdf4b5900e666c69ec9f211a6dfaf0b6299955d1869e5d60db08495772911ba60e9920','de6d551389f2d8ada4bc5d0468c50ebe93284fcaef4067918483a1526516669591d1cd04375b561e',0,'2024-03-11 19:32:50'),('cd232a217a696a4990330a4cd1731191a32506720ff72862f20aeaddb236fc9e01e7f659100d1f61','4ef72d3aea00d6405cde9b771b1d6ccfac0de0bd96372b1ce5208bafcd8aa6abcd87a349ef5db9d4',0,'2024-04-07 17:21:17'),('cd25a68763db44196ee503ef0d00eff0ae12a612fd5c892deb0a8878948d04113ceb79aabc0131e9','926c04d683c52edbd5779382c3fa5453b1184274339593fd760ea2529c764306855fa57570c186b2',0,'2024-01-25 14:30:26'),('cd2729eeae7b17fc6bde97340c4f55bf4b2efa6ce51bbafd6a714603ea25e3058aa055fa11d58d2c','cf6e54436f37dfffb38a8543cc9e0bbd382571db33519327539a8ad91e0730d16161dea14bd446f0',0,'2024-04-19 21:53:40'),('cd3571d7dd248d4d2048e24dde92c5e740e77a2ece4fd578ab365102e05fca2c71225ba9cdb5923a','ed9d35c2f50938c220d48ca1d1a14fb568408a0c3b4b2931197b52f5183832b04d2bbb67095f4d58',0,'2024-06-15 11:15:27'),('cd6cdffea7c0291e1a1af77ab76ec058f44362b5fccb1c7ef762e94d74ddb2632a4fa03e0e76d828','15ceb43ce0c9104ba9fb02a73a18aa6a719a7ffa140e5b7b51800bd41dc04daf07f96df6c84e03c5',0,'2024-07-11 21:18:21'),('cd734ad528298a2bc4a234166ac64b8387b0115bd485a72b237a652dbd710cb76fe237b991b83a8d','9a658eac31013653a3697258dd87009c67e19acc2cede972cff27c36863733fb1524a934a99c1769',0,'2024-02-23 09:25:03'),('cd7358635b77db4b2c42abd949b81b6273cc45b01880f10e4d30815c3d5bacf338193fed80a654fc','cf2fefd3d62d46d1a0a1e26a8c82198004259a2374e1679a568cde34ec9af3dc58cb6d4f9ec9fca0',0,'2024-07-31 19:34:42'),('cd91b72799908cb88886c2f333d595c74ef80164e51801b5dce6bdbc84b3ef9842369898983d49a2','b75fc4f6b7c0134b8fbffeb186fc4d1a81c21d34efadedf5fed94683ca1b901519807238265ba433',0,'2024-04-24 16:26:53'),('cd996dd6510590b70fa362b61bce63d380ee704f3d0fa7c133b61a185c4e93da7301033f9d6e2e63','7b3fd8f3719fb9bf8c1cee7db151bb03e61fdb171971122ee7cfd3914246a755b8891563ac9d093f',0,'2024-04-22 16:29:36'),('cd9bf2f4d7e7827138887b5652ee78f07b4b856b9c8f5f64ca38e1522ebd0e11d69e7c8cedc3b0a9','d011dda06ed5ea93fff04e08c02a805bb466c4bb750f424f602d720d20547c5f338b41eaf339b10d',0,'2024-04-09 19:55:01'),('cd9db41db11a75ae6e439a1aa3683dfcd7a6930ee2e25945ba6f08426efce61fc7d493890b5d965f','0068fe13c4f369de91d8b420fd27b3f5eedc79d1b9fef023f8bad1984c3582308d2e1de37e927c8b',0,'2024-01-31 08:27:21'),('cd9ee28f5acc9b9644dbb137d1ddf2a692e0f4a233468d5eb9eff92284a63617deb3d0a252e34975','22ea3c4e9b1d3243bc21a643a99897b240d01b823c6e97a865e9ad525f5f1bd775251808105f3ed9',0,'2024-09-18 19:54:48'),('cdd7bab9a841e8992500b19e5dad6e093d14e69d0a744161b25e27794e3fc0c254b78d923fbbc007','d2d30d116c76d44e9dbc7fa468085151c037a286202d69b7292be89a9b45c5863ec0f9db179074a2',0,'2024-01-30 11:47:20'),('ce0ca42bc2ebd64611b395c4bde6f07b70e07257f8a4e00c3f76e30b9a3842923f3002bd5b674157','bc71010979bcc20ef31cc9a6eb6b6a571bd53e53ace95291a03082eed5b193143c948a1ef6c60d66',0,'2024-01-25 11:21:51'),('ce0fc9c4a35dab2d3dee3965d4fefabcfc45927037d754e5af343f271007ed6828a304e674d06b1c','2b52ee38e096cc121f54b45d778b9de633cd82d43e4bd59e4267d8bf6bf33ec09e3e2bdcb356faea',0,'2024-06-12 16:30:12'),('ce1433f70d817dd420b61fae6eb006dfbe8dbd7b8544731cc1b48c59f5ca4a332369cd5f10498f90','f087c2492704212af5f5f1b8b0f09237b67654a167d98a9140c39f5fcf999fc420e977e292abcbf1',0,'2024-01-27 09:15:27'),('ce1d693092307a4b06beee958bc948d263345c58f167fe5af08d336e7861a809bc4dd311735fbede','39c7b69f641c58bc5846d200ed3421ae59aaae7f660f0987284cf6ee66ed0012307ac26365226c59',0,'2024-08-31 18:01:58'),('ce34754566ab7f3d5aebfb3ea01615d5b43883986272616a5ed24c433431373e054d24b2f0f6e2e8','fd0f3e780ffbe43f75fdb0489b1ced086c5b4c3218c62ab970356b000156382621f0e48d4f90d50d',0,'2024-09-18 16:36:42'),('ce349ac02caaa4b51f47cb403014457198b3abbb2e0797221575a2c14d7db70723f47d1d361ec512','c4ba869a95a616d803496b873140ca8b8a77e23c112caab6e7c3fc38ac9e5f46b8300c8fb866e955',0,'2024-05-17 05:02:47'),('ce373619e87b806738780452e97cfca36e16e819ecddd4e895d87fe5d63d5d8e28f537af62b40ec5','30c5ce6c21aea14cdb1f9896017cc5eb6f1643e2fb0db91a2c9335dd119e188945d8eec993664ae2',0,'2024-06-23 17:08:44'),('ce37efa9bb3cd787c9e511aed77ee2b6b41f27466a92e07ec022bebe77b86d1d55e80298bd1fa4a0','d591fd9ecfa71fc2bf26068e3ef32a54e71e67be4a12cb19ec2cd8bdc5995863b1440c3747546d7c',0,'2024-01-28 14:19:41'),('ce3deba3f53f742d26e18145a6a9534dc7b46a9e0880b4638563752eaf2215a8fe9b5b4ba3376d5f','d178a28a99f54c69ea4a5ac813f60c4222ed5ac70af0d6ad0c73dd2bdc6d280dd5a32d52c8c1a5a9',0,'2024-01-25 16:16:51'),('ce50dac927dd95cd1186f55fe3ee56a883b0feb5d3372682ffd64041a6ce5f6e3ebac72a67041234','11a3ccef98d20cf3b25dc3b43a35a44a4648a71dd9068d9d93935bf220d5ad6a1072d3f0cbb032b3',0,'2024-09-19 12:44:12'),('ce5237ca69329dda30c55cf25b3d7cdc31c730ba972b7ca1307f0e7208fee15eecc07667bf13c9e8','c12f568b18aef97784272a4454bbb001d4c937a609fec67a07b286d2e8e69c9f904e10c6f0cc3ec8',0,'2024-02-14 16:44:02'),('ce5fb0e4b9e665506a5e7f656df1912a3d3a7ee74767f89facc283763f4719334ab46da06f1b7f51','95016a68776f58545ea7d685dce1a638bc27db119262b4071979dd6bcf6a38658f30c3b8e66bbc4f',0,'2024-08-28 19:41:54'),('ce61a38fac022f222f735d52e08987186f82f16ccb45419421f1a6494b53a7f53db528a5dacb7278','ae3808fc2a4ebad810a4ca891044699364087c89b09a79e2ef6d916fd252e3f6cefd7b1fd48768fc',0,'2024-07-30 07:18:28'),('ce6f32c49643fb1d1e9a29e73b51c8bc102c2ed7d5333deb4488f2c1e1251059c6447ee073f39306','68e8a95bf04663045676a0c170a379b01944d7f7797274ffe1b8a95cf73e0277a055d23233e8a7b0',0,'2024-02-18 11:01:19'),('ce90cd051eb53c1da471e725d0d55f54c347d195110ae0ecaa62403ac03643cf4148987f85f56d0d','5f8c1141820a9e5243241fc35be59a239327219686dec4df6ca6c53a4217443683e49e7666fe7315',0,'2024-09-14 21:15:01'),('ce9b3e8026a67e1446e6aacf5a90e10b29fd00e8d72d53f4e1dfcb58f980d5f81fd78c30a00f0915','6df78a43317b9604297c690383466b13f7cc26d8c1e4b3dce8e6560efdffe21b4fe224e0003f3743',0,'2024-01-25 13:43:44'),('ce9e4f4315f824c4e146a9f7a16edcc737fe4d756dd36cb9ecdca27a7abb3d1e2958590ad61cb2bb','5d26238dafba55b77e235c92fd2371fb3c4f06670b924a94e7a78734fdddc48bb9afb30975e79f26',0,'2024-08-24 11:42:49'),('ceac6f93a8ab520c5da947a3d018c0279501cac81106d4202e9c5b8feffddffe19543f70099ad8d2','168a4a304629dbe609f85769c571ed5bd75637decb4b425cc6ff125adeeb5fe72d95e2093d286a48',0,'2024-01-28 16:08:02'),('cebfec32b69dc8efcbf6e185f40eb946e53daf54e9216270d53b40aca197052322b46b4a51fac398','ee15b66ef613014b8fef054b571db52833f77895afb35119cd388c13d42531ab040551990475f462',0,'2024-01-28 10:26:26'),('cedbb7ca472f1a9a7832b8655d1f4fcfa54fe4acb1ad3259d9ff22b96d40952205448365a2cfaaad','c0db8e10c55b4b2376122b03596464344de61dc8c312678736288c29a1d483f7f3f4fe9ccf6e68a4',0,'2024-09-27 14:31:23'),('cedd07ab77c0f416ab4cc6c3dc677e1d4cf6d59ef0bb546b9881eecaf31fadbf7e0bcaa640760d06','2c48d1f138f4aa9df551dbf3f9f40880c0208a941a06942ebd54a308b7a87cd7987bc404f3695d24',0,'2024-07-17 14:31:16'),('ceeeb75ac47cbb5326dde46d351b1fb71edaa2baa6db5ba5bbec23bc8ad4aac3a758c925d5eec08c','8a12dfa13593da966e35f2d97242cbc1101a2e1a3a815c29d62bfd082f900b6684a23c0ecd4d9d34',0,'2024-03-02 16:56:41'),('cef19e79bef2efbd7f8abfca69f5324d01bd0d46378324c9401f0efbe518c39f3b1c6303da7d414d','5172f574bafe4db83bcf30576bc61a4d4e6a44539ec9f0c403b21388408481f48437474cc908f4cd',0,'2024-03-13 13:42:51'),('cf1d357892e5dd125317820bd1b7c5134f01f3492c0e91b522ad0ce6700ed9373b62702bbf059c81','e4edf71d446fbba8132fc28ad00d8ccb058aa6c55a74ad594949dd9d2bbba9e016efb4f15f28c95c',0,'2024-07-05 08:42:53'),('cf3a0afea685b1e0d55a9696a464b30cc3ce3002890b88124fcad236260deeb0386eacbb5c7987c9','29e370bef6d12a210e5f1fb440504a8a16573126dc252d03e49f4d7b5eacbf76957cd4648fe822d2',0,'2024-05-09 14:58:32'),('cf44f7fb960559aa24dda9121dbaf7cbe251de657fd26489719e1c47cd35502d077e0fe8a28cda17','5c830beadb6795313c79d0f722ee1266ab03cb5a4fc81f483115ef9ae55d91f3509d11d160ae8a5f',0,'2024-02-15 14:28:54'),('cf464fe65d800a5e6f73a3c01d88242a5a1014c97c475d1ce470f6c21184293ef728107fa1257622','ac807d15a2be7667a2ba253c0c0557a41bcbef65580677c5b624885f1e951a717110a8358dc32d8f',0,'2024-05-23 11:35:37'),('cf51d74249b8e66c317183e876e0e9e4daff932cb442ea6ffedfd49994519b3485fb7c327758fb8e','bb7824a6aebe4551efa196e447ed23ef79f9be660d77e07997d41295c28ba00f1c3734224db03309',0,'2024-01-25 02:30:05'),('cf660d0285d508b7be57c92d638259acc496a01ae2279aa802dbdc91a9fa2f79ec65572b8036f605','18df754b92dd2e2bc2fa5804c7b4b566962b7d69d20435e7cbfafaf9a9ca3a4c85bb4e89077bcd68',0,'2024-04-16 19:28:53'),('cf83f0a1bd8200ae8131a5d1ddd1c15cafcb58553625e33dce2144004f35ba3b73951ce2731a9e43','14da62071411224e3ef80a89b54e25f7f85905ccdd06cd70833079f27cea26f90a91961abc6e3894',0,'2024-03-11 14:12:30'),('cf90011edcd59c03399488818aa62ea4a2f06aa902bda996914dc09d89bc06fc1e159f138946b7ac','04e772518ee53c7a789f1fca14b9dbdbd3e97e4c3496c56ab384d604f234a07431caa81387c77123',0,'2024-02-20 19:31:07'),('cf96fb435fc1fa9a901717a35558389f4da3d725b9cbe8be0188b236e0c0ba5e4d3a4602edd01a2d','f022962468b7b6a32f92a8d2ac2f4135b1c6fd15a0a06040b293ee67a932cf1a6e2591b4b73a5871',0,'2024-01-25 22:39:19'),('cf9afb53c8ab5b02d6eb24408f1e02c4c8df56a55d0ab012cfdbdc4f990f42e0fe400a763835db5f','a90c8c4d54d452fd9025a650377426e7e95e1da1198b641977be51becc640ebc90d3d0bb27e651a3',0,'2024-07-30 16:51:02'),('cfab07dbdf061e69c2ffc83f9080aabfb82a83d7518cf21e06ca0abbf34463651e8cf8bf3dd6002c','ab68294b77f1cb539c2dcae0946a961637b347ab90bc603548aec32a499447203348648598e68e56',0,'2024-04-13 11:36:35'),('cfc10a169d4e564de2fdb2a5d01accffb02b04d18034a4bf708f6fca42e3a4c305b2b6dce18cc0ef','ee01660aa90dda1ba3ab78b9033b4535b3a0c360f14227ba166c7bb16e94b62a94961f74927339f9',0,'2024-08-20 10:45:26'),('cfc241acdf22f74ef51ef42a0a2e56a862d6922685c05b38a9049e8220e576e71f90156aa9c58840','efed9e60581ffb232b6a5fa99f7b3ff49e02a46df234e52c989931b4662197575dfb97c8415aa6b9',0,'2024-04-22 22:35:48'),('cfc6c4b9fa9c9819af5f8173669aee583870d35ff19f272e3df0568e81adea6beaa8ac8e1ebf0152','7ebc2c4e85494221a66874bd96bddabb92b3d86de66a020341f47bfb4f4ca11582d96a49f7edd140',0,'2024-01-25 19:39:06'),('cfddd06a19466ab021159835f1f83b60f8b39168ca00432b6319a31fa338717c37aadda87ac27df3','1accf982b736f5126d30a1a01c9f590aa311f1452f33bd1fcc173cee6c1e9722af8e78074a23bbef',0,'2024-05-22 20:15:02'),('cffa3600fa52c8c6e60f8e327287895301507ccff7cbe2e65fb7543f463bc3dce34cf5559aff7f4b','22402418eba8baaf401c9881f75749b0ce82e91f2362caa73adc64b1a13a82a353ee7577fd2fdd6b',0,'2024-09-22 12:47:37'),('d00f612f13f30b8a26059946f6399825823448f12ad5810862ab32210dda66b1ee52977566d8d79e','41d9372659eb899d1498cd76c3df7caddb77d4c9dea489023f66fd71842053b951eb930da229784e',0,'2024-08-08 15:02:35'),('d016b412117bd29556fb2d36cfef4363bc274ac6edc1fc9edb26629f686f8fcec5be08f273a41e55','68b29d0e4a59c8293e43f9b8bda16deb125621dc5e9fc98238feade6a0e2578ab88b219400532422',0,'2024-01-25 14:30:53'),('d02d80cf825fa544418c32577e454bd9c6f6f7b10dba263493b68cd4f3cb9b7431bbb1bd2d7362f6','5e71e7a0061dbb1f87168f314caa7c9662dbedb5862444544dd9fb69e3b2cbb9fe8f9ec66dc90944',0,'2024-07-23 15:21:03'),('d02f694493974514cb81a6bec0978fee3b4a7de25cfab89c81337adbaa43a8354b335a04f67a5c15','844cac4bd6c31a350a70a60fcebdf1efec8bd00c0233204e26a14e77dc817a47b49e3e3238042c60',0,'2024-09-04 13:53:44'),('d03f0dc1e04847e19a7e310550c5a7c88eccc94bb7f283dd6d6fd6622ea79b6d6e4e8e000341297b','3d6415e4f45d019f9df259d70a68ceb4fdb4e82ac2baa436aed6ccfcd0a252aea61154a47d3c6b09',0,'2024-03-10 23:27:07'),('d062d296ff1b7a48ab5c76f4efa03b9f519e381896ce054c07b61619584f0f78c34911d01d740811','f51e7ba07a6a4312c143d9622f91eeb2a6f2386a7f3ab471fea0dfe3fd4557274de0971adc1614f8',0,'2024-04-24 15:17:05'),('d065760bef502016e70755fffcfb621cf158492cdf02139dea363120ab15bd78bf890362fb0dbeee','98fd04eb18881a885067c12b5e299a70226f1e94661e6bbcd4a4c2d7f58731f52411a7f30411cf52',0,'2024-09-20 13:17:47'),('d06b3f92b7f518f5efce058bc80dd9832e3e3d5719fe03ce5787772b8b56eb282463e1858fb47eb5','6eaea93c79bb298ef848defe9125e62cc033ebf86346a652ceb17fefc2fe3469f24548f68e86c78f',0,'2024-07-07 14:35:33'),('d08aaf31345eae50a91b03e9745e498de1cc795b27141df7050cb47233201119e742f46ec1f49a42','da6e49782ee1e9b6b9bfab0ea3c41f8b3731748213512e8d3b6349378de61b8e0b7052e28285559a',0,'2024-01-25 07:23:08'),('d08b1779c7b80822e5f4210c8ee18fde163a011012fa059dbc9690a32e9a2142168e646da98f8b0e','e77e5fef7c1e2353c9428aaede679da1def90605bd989be4ee04aea95b8d0ef5ecd9db3f44a5e962',0,'2024-06-12 16:24:27'),('d08f2e6a62ceec10cb38356916f1413b20623fd1800ee6c2c4d8f25ab3e5dfc49eb7d3c31f44f3c7','fa21705739bdc174f0f0f0e9556d9f0f386790b2c6f81830ab7b96685113edb1360ab9957047fa5a',0,'2024-01-30 18:09:51'),('d099d7011c097af0c9f34cdbe2f39011a3f6ef0d5a1fe7de61fffe9ff131df625066d88548245298','a015ddc8a7233749c909003432043f35498c48a1ba9d6220a5f5762b01bba6fb513a16e1af994810',0,'2024-06-18 19:40:06'),('d0a521a5ec1732febbc2b89ddd930deeb2801c7ac8b00a76e9f01072c84283df0a10f3a743655890','2a2d299e8f6f9a7a661411f4cb0d1b17043498935842e0c6f4567a1974bcaaefe55c3e993c8294f5',0,'2024-05-08 17:15:43'),('d0b9cdd4cb830a7788fb60af0070aff13041833fa4493b1de36debfb53d0e6a5fe8a469fb54711db','d75325a08a37a6e1512d44433abb7bd2eff36cac5979219396c1bae705eb07bdd2387b096ebedde9',0,'2024-08-30 10:29:30'),('d0bbe98ac4dfccfaaa6f03f6c54cced33dbdb11f36fb055d82deee735622e0781bce1d70e9facb7e','6fce02b7a9477546ec779357afed3a5ec1e4a1f8b398a963c6cf8435c9ab4b4f6f4bdcad77e6a1c9',0,'2024-09-25 12:01:46'),('d0e327021ba0022b1935a8380a2164d806be17ab03c962122a662f2d71d576b06b64ad47f4fb1316','0495afe3594e6f018cd63cf026139782f29223f239330268bcbf9df7337383f444efc11e85002aee',0,'2024-07-06 11:10:16'),('d0fa50c53839a0fe1863b61079791323851e62632b3212f37b789ba3dd36b2aea8713864078cad2b','9b9f56e515dcd772d3061f843e9acdb8f16b307c725a6ef71d3b8030a40fd50c5fbbb69a0299d843',0,'2024-07-06 20:41:52'),('d11db55fa615f594985194c19bf42a3b0a0feebcff94b5d6d38de4e9636f9b730afab0354494fd07','c723cd2cb80e122fc557d2eb7161b8342ac084526d835a88df8489738dcfe175526d0431c67f72d3',0,'2024-08-13 21:56:58'),('d11e64bb9b080a5bbc76fce541cbeb5bc1994dd24528e19003956c2c26c7026045cff4525a998116','0e8cd437fc6d35075a7e6b566f08a41c0aafb2e57b87faad0dc5d8901599770fb4381f6b8f1d3e60',0,'2024-07-15 14:51:26'),('d11f9a388dac8d8cbb2d4437aac0492ca0f302f91a89732f669fdcb147f2a0e5cffe961ccd730917','77956ea41e22cf224eeb1a5e8ea4ce7d866b350a02d43d32f2775c75d4dd6221319afbd088b336b0',0,'2024-04-18 17:10:05'),('d13145aa40f801e77da72f2fc51cbe38d9ef4a9969630e2c29e5cb1d2f1d83769040f77985fec900','7c541a46d73c1f7c05179a0a737c4445a4ddb51f234ad5e15d42924064527d014d810ac3ac16f76d',0,'2024-09-28 20:34:37'),('d1315814109082000368b9aeed11b91d785cca38f09e7e8990bd29b159c89b11eed30f9cb56e6f94','d129495fa5100218fa92c3ac708141571dd1a6a1c0f216ff9ca9547927a31ef2d10e37e5dd16f921',0,'2024-05-23 20:30:14'),('d13247a39cfd8076299c5178edea790a50e2aff252595f1e45d8eb6919e3cf0a5801175efa2dd21f','c38ab8a3f993fa7c775f31de7e7de8a4445841f38f1913108e67401db7cbb4cb151fcda1ff29ea8e',0,'2024-05-31 11:31:48'),('d1468956e7779d1d21235bffd6ba7715f92d18d101f18c9c501ad2b09904fdad42795ed837f50a50','05f392d5dd8533416938aa7d90106b43725843302165cbe8682f281231ed10be454ff1c2428eca25',0,'2024-03-04 20:46:01'),('d14b053b67b4542399c541b3f17044baf5531948a4ed89afce4d4b6523e319c76281e85e1986aa60','0cb28830e581415d310382ff27db121835ccfe07f67dd60857c1d546fbde7cd37f01ce75c4baa7e1',0,'2024-02-08 23:38:10'),('d14d19b7dd5b569c8d29a004bfa8d9afaefbdd9a492ec93dae95036e57b4125cd5f94903421b8e20','08b9aa8e45f41e17409f300a5cc3acf3213e1c13849d819e1b799351bcdfe5b660fe827340e2b82e',0,'2024-03-31 08:46:04'),('d14f368f3d97fe8f91307f2e5c91548de2dfccda32b22acdbc84f972d2e81666d56caba9caee19fb','71e965c391244aa3cc6cc88b48b28a7b07cddee392771f6c10aed2b6e7289ae9ae7766b0be640c54',0,'2024-01-25 08:56:57'),('d15cede6824b29f879965220def2a1c912bfc9df4890af9371e21d30259ded1f6c7e10db1d52c462','de704df4a168e4f942798fe6ab7a8b320a9b7c9ce7d1115e67a0cee0073dc4b6cac3d4db88bf0d1b',0,'2024-05-13 14:16:18'),('d15fb55e9d1abe60a9f00744a711c7a055e992e48e76877765a3e90cba07f25381175ce769af9f40','5ea21086801303cd30dff69f392cf34f3cef047ca86d36698fe0a12f056cfa8173af9a5cd388c395',0,'2024-06-28 17:06:50'),('d162a61f348ac1435d3ae3f89bd2df66c66d012aa9e6130a257399b3dbf4b698709e0b5a99d63b37','fadaa062557c744adc03e0edc13860e61dd37049eff0bcc98306153367be307de95d656a2e1df2a4',0,'2024-03-28 18:02:35'),('d1764e39f2aff97102a80b6fe1af7492bd781628fc0d3460624e8c6acd0ea0b540fb7c3fe13ec7e2','0bdbf78ceae89078ec6fd36577907e3e4c07b00cf2b17fa8a384b5a77c5ff81dbc6989237c8f6456',0,'2024-07-30 12:20:02'),('d18a43b3c49fb884fa09089c9a28a6f6dfe853d70eaa26cff05ae38d6e1b98a02796d184b73162b4','0a232e7db80199bbae7c6b805ebd3fda7ea9967a750c9ec1c61820a22531d420dc13163d2e233b68',0,'2024-04-26 19:32:10'),('d1a86d602f0dced457ca1066a7c0759a779a2dfb7be47837d5b353389b0f10d90e62dde302414f18','8c26d197acefe0759ebad68a7f0accb6bea43051925e80b61bb08808c93807b05b6b16995963b5b6',0,'2024-01-25 09:31:56'),('d1ab9843df744f2dc6c4b03da43bed13f3edc04f47c6b0c4e9ab531bab814d5d713b5595f5f42f7c','73241e4cee4b792b361abb5b3e1a3e08e6b2ed5ef542c48c87daa158f65c406a96b3c19dac203029',0,'2024-05-03 09:38:37'),('d1bca5efb31ca8f35553e5a7ddfe47100b2f9c3c3e232259d15204c35750b15c513bcb81a350db8e','a16f7ae6cc476e330bb77ba859266292517e57f7c77536eb416e3f9c6d44e8cb7c7a75bc59582697',0,'2024-09-08 17:24:29'),('d1e54716c96ff93a244bff6876a145a8261fedd9b9aabc15b44aa3303205e538a7830880e33375b3','b9782ccee6f1d1016efa8b29e30f4f7c758305ed05ec87605a19b67ef35e3108f4cae9c694ade0ee',0,'2024-09-06 05:40:25'),('d1e9b0cacbf6483f4d1372fb533e78e040875169659dc4864d1e960aa1a5dcdd5771ab9ee8713bc2','d09842f261ea019f6d5ad9914272d9344d10cc2e4f4157b4fd622cfb2c16b52be65f0f21bb829fda',0,'2024-06-04 07:54:26'),('d2132955851a29c8d70f0326af941a42d948dabe706751d53dc7741c652135c3f6c205952a509920','783bc89e92d972b63fc9cf04029b5c08dd72b619f38f241672cbc39bae50063551f60fafc1033751',0,'2024-05-22 21:37:20'),('d227f0a8127b1fbe0b5425ddd5b266c44235b4ecf4f45bcaa6ad5eefcb8d2fd2d6231497b656220b','7c028eb6a1635f7c5f528fe28792ae6a3824a6a616878fef6193005c6c6f05eff3ff16fb5fe9b5f2',0,'2024-01-26 15:08:47'),('d22b0d6483a44c14a4f39c19bcbe5775f1c07dcfa5fde0b0a441399152595d8ecb8b5fd2e5800ee6','975eaa384e94a10935eae751adc7500669dd732e392d446d5738b87eb0e72a3dc651ffdd50104725',0,'2024-02-26 13:58:20'),('d238466a1ed5c85bff38084b55adf3703636bdcbd62275b9055c8bbfa64cd226d14022008a50003c','3861af78b4b0ba6ff25cc826504b10c4ffcd7d3e8dcf816eeb050e53d4fb43bfc7004f7f2b914208',0,'2024-07-13 16:23:05'),('d23e03e22e1eef82bd8c42798e8a30166f0b68ef1ede5e4d1a83144409f9135fbae130947299c6b7','dcd01c39ec77755d984fdde4c423ad9d01384a992bc971336ea5f6b603952cacbad52739984427a2',0,'2024-01-25 15:16:36'),('d24cfb675700ac84630f5aa9b3f5900af1ae2758f626c396331e74c878e61ea1e609c9a78cb17a48','9fdd7ee42b4a783ed32b8c0590fc620ce1ea58fc41a85053b0f62ae729588084e1274c1a9abb6900',0,'2024-06-29 14:17:33'),('d266b5a7d8889f89cf173e947b10dd86d766170dd066be0336dc291a7aa10ca22d5c831fbbf4d789','276ab48c89f1b3d5d41acba5b142f97cd21aaa645fefa82c29e53f1f456689d18c6e86f7124dd6e3',0,'2024-05-31 12:59:10'),('d26c4db3d3ca8a16cc269e496dd6875e4a9babd67ccf9703db02d31b8a13d4f5321812d750bd8f43','336e5e69e8ca41075a4eeb59a3e9fd1e70077142e12cd7f8a82d28652e297e2ae469040941a71961',0,'2024-07-10 14:35:08'),('d2912a9c29ec1dd57803064b23388aed284ba2ad4ce56dc0a58472e61460036459cbeb409062d7f4','9dda91a300d80db0248668563d3e8bb73c2569c307e5ec2827ab7877ed233856052760447b86d8ad',0,'2024-01-25 20:09:24'),('d291e09b83464e8dd9ce79615ca3520ab574da4ddc15f62e915e83c4674e2b1167fa68978346eac0','685876c57507a5c7ce0f061118c1a5c8d86fccb5947169650436aafd7371bad697882e7687988681',0,'2024-04-25 06:16:39'),('d2967719da0876d7a357fdd87d41458b0d3929a955101d59fe51a2255bec78a1c366aa003e62d788','fdbc39b6e5519b45ff913e8a6152615e5c64cf4883759180a9e1b21cf18254f168007726e833a0f6',0,'2024-10-06 16:25:01'),('d2a79a925e7adbbc6dc6b1d47a44f88e157c0693e159e633ac2a36a13df4858bedba7ba43de5bc13','3936db91dea8b6d9b7734e62c6c67f5209e819982bdbccef45f0e65f0e9b6cf24172bf4c996d128e',0,'2024-09-19 17:02:16'),('d2aaab016ceeb5da158b0d2865c9bb192d311b20093412f643f97567a9a51c46c1b7e218a8ca57b3','51ae3788327d75b2cca2a49a5e579bde262a1398cbba7635de09fae6e7e7a78c0e1ed4305105e520',0,'2024-04-12 15:19:01'),('d2ae2617b34ffb0920b5d93c0420464e2fdc2ca87d0cbf121de780b3296c66fb7ca52c83bd442cc2','a2f5840a9c5ce3d26a57a9508f3331b7d22f9854768b521963314174cd3cd0a307cdadf6036434bd',0,'2024-09-03 16:08:45'),('d2b35fa91990523b94a30a460e5084d48b86eb92f7a86691f26e1d3d86b2df16a950a746134cbccf','f24a31104a7c0602c699f6a7a2f2adbba260be1dff1412d381b1ec8ba1523f941bcd8bf66adfee85',0,'2024-05-20 17:39:01'),('d2dfac016e94e6aa50de28dcb69d7cdc870e52fbc90864d2c684cd0ece6a15098f69394d6bbd4320','fc0d2bdbbf321b5ca48c25b79d0ca9036b7ac308610baee1ff8e4458a958d181bf06b66b8e84d670',0,'2024-08-01 14:35:47'),('d2f5782fe55be33552c98dead5b5c60b5d9ded5da7d651281169e1240b440d5109bdf3a09662550e','c1c65e07bf0fae1d74ad4a4fa4fb1c0f5bbbd6d7f93c3cd5070ec5b0ad947c79216ec250f6e3eb07',0,'2024-07-07 07:46:30'),('d2fda1879ee3c781c00f33bb55e795ae72e63a2787c91cbb0041351e7ba1e452ff39152e7bbe34a1','b41a9c45b6c9eb52766dfab18e65a8cbc0796821ade48761d4c48ee67699f303bf599e575671a49e',0,'2024-04-04 18:28:51'),('d2fe2486d36a9dc4f4e959a82619086bbac4b30c40d0556930f1fbf454953e11004cbe2b3d4c786c','d58f7e0cb3061d70312a75e8d1bd83dc5c4565a24408dc322bf951d2018894ba335066c35611c290',0,'2024-06-13 16:14:45'),('d309145f3569442f12f4cd63839dd9f3c2638afea8b70c0d0ba4d8adb3c7ddc130f862c991bc3627','f657fccf5da94cc9777d9d1e8a4fa9836da920e4364485bf437a230c1d5eba2f19b50332b2066395',0,'2024-05-24 10:59:54'),('d32daadc7c89fa96696d4dcc5241bb7cd528ce8db6f1215cf498f803b44d17ffc7dd9ed388d9fbb2','fc018e633ea2b0a40a08425609ec8ddfca78c0cec502a0e1e79c796471525d6b9af5187dae057b83',0,'2024-09-21 18:55:35'),('d32ef87270a1c1ac1d2b6ea670ad964f7858d420e140f3233087c193ce51941b5bae8bb16c008993','14d3d9671907d91fddb8679ed38a5a2e7334cc5305f01573a556fd6d7b1456597faac0ff8296bd1e',0,'2024-02-09 16:26:21'),('d333e32b1f6814c7476fd592704bc22d0fd96654a83d05ced7dab94940e7f6753d9fb50000f83f73','fcd1eb9a8ecf555ee92252b5b737639ff88f40961858f15d1a90e22bacf8fc6f6f8791c6a0658cad',0,'2024-07-06 08:46:53'),('d33a8c40c42b2f460646f5162487df9100151d530d92a8f599ebaf620a2c890f5aa92ce2a67f0ed5','a03c043e62cf013fe279529079b94ecdc3a0f1daac3c190f7f67f311debbd367fe27151673fa8047',0,'2024-07-07 16:48:10'),('d34cb80ab12db82d37b0a324270667b985d5671e08faefa599d633bb7a9cc2e1363f3ab2a060cb06','bf51e3c2363ac497d3d402b15f9ab0c696a563fa63796c24ead2d4dd60956ae73ab39e1f10445f23',0,'2024-02-22 16:59:52'),('d35795f2f35120fe383778507b9535bf446d9b2c94b1290e75469a33e33e2f9a02b0c9f0922fedef','6f199ac18862ae108871797024b1662030a7d24646307d9c6461f08475057cebf8e051146a160f76',0,'2024-08-23 09:22:53'),('d358f06e5db9b069f6e985983ff3dc43a78c9cbb2acd7c614c600f9fa1372bed3c743b91f7fc14fa','6d0cdadaeb51d20a5f349b5c8b36a50503483af3ee154955c94e33e7048624043a580e11f5a59fc0',0,'2024-07-31 14:51:33'),('d359d9e69c7038b08d3454de2d836840e800aed3e1dbd92730784ea36f5ead5606487938bcd54a76','7bea7eab6fa04cfd1c8a80d719f13264f98ef2dfc433f7c2e09c9a827a3146ace001a1ac58053306',0,'2024-09-05 09:39:36'),('d35a76580be292138f55d395af5b030c93370cd4de86aab9fb13898c20ec21e47727649281028dbf','ef09a189f01db12bd7b9bd4a74366f04fdc0aad797a3da3ea80122c809c0527ee8b9973c1583fde9',0,'2024-09-14 19:00:36'),('d35fe54fa8d582bf6d464dead687093eddc0128428c7ab4a8d445a99d3197c06a8f1348b0806d9a2','ec4a931f0f15de180a4f560eb06982f72968e1d955e94d51e283b45ba0d7eb4e7538371497ccab2a',0,'2024-04-24 18:29:37'),('d37ab7b890c8b83901ceca026746b8f3dd4572f8ebca88e08998302c374270df839526f5e143124a','aa6ef8526d74918753dad0c50260f9accdbbf6abf4ee6d57362b35e1bbd03ce77d829aca6345322a',0,'2024-04-17 21:11:50'),('d38f2d4814b675808d621d13dea9cfb4943d7173b133c196f5ea5d821767c4a3df50409afb2ff93a','4005630ea8383f746b4b6a8ccc997e5a8442c9c4472152a34501fcf3a68b2b2ee29852d6d8ae0708',0,'2024-06-18 11:31:25'),('d3928a83382aaecb6fba54ef4db01e335791167f5eaff70e08df1a152ca8786df5cf4c3031ea7c08','820d2c96817b7bb7d463d9190ba1850da970eeaf67aed2be54556fe90bf45d4ab470d681cdf2b421',0,'2024-09-15 06:00:33'),('d39f2e2acf73e62194da5351390b196c43fb1c40372b711bb04d4c0c10a0c3964da780f7f1924a15','8d0f43a59cd7639ce9dd92dee7a1840b33eabfc0cd758a329cb73d1acdcf5f8934c8ff4c1fe5de6c',0,'2024-04-28 21:04:31'),('d3a7020b6a5eb151d53c529811ab384ce7083221aeb5e32029b9079ca9414cbe9be56a7e8d9d323d','327335774f968ce4b74c19a11065f8d6b27b2e0d29753c01f079c329258bf2e4d398f44144566b00',0,'2024-09-18 20:51:30'),('d3a78925c4d10eb92e54848f0642d84eeb68091ac7d3c7e7fcfb5a1caf20e3bb7567c842309f1e93','a2f7a41ca071ceda8aa4f70ef7725c6741461ce01cf40c6d2f147c671100fc3d4545ccea52aaae81',0,'2024-07-21 10:53:00'),('d3b5cc0ffed435435d6e37c20eb83339ac891c695c43e652177498832a927eb3d71731370eec7878','a92277a04c2766f3bbfb4ac5b3d47ca9f04cf4aeedfdf94d7b25ed47e75585439291eeca8af830e4',0,'2024-05-08 21:07:13'),('d3b7d8aee62f5334c7a334c7be699bf6ff892cdaad5bae4892112b1e89ae976fb354856ca5764e02','3c2ac42612cd4b704e17060816407c91224a32afdb35aa13c6cfad79b870f9fbcaa3f86c2dcc3553',0,'2024-01-26 20:48:35'),('d3c93c878731058ec5d7025c6b7dd15346a3a53f90cb822af0bf95c87a8bfdd8bca1c5167fd7e869','db0ee8be274d360546a41121e208745b03c48444b1aef80476bf03eed102f5dd963037d77043e49e',0,'2024-01-30 16:30:40'),('d3dacfdc1e37d017779919eac92a306117986b0502b30024edd71e85098c28fa15dae072a1d2c5ce','13e449d825711cf50025234a10c68161f8cbde442bf6a98c3a02b4536dc289b83f7a13c1d4e78ce5',0,'2024-01-25 12:19:55'),('d3e085b0f4e3c32a6d60097b009368c15cab3d9632cc9860ebd69ca0418f3e519e0782f51d88adc1','75cba6573dbaeaac1c0ca066fae7cba1347a64291a1ce3a41504d646f4582fff0422dd080e1de2a2',0,'2024-05-16 15:46:10'),('d3edaa23a72dffef436efb3deb198e1353ba84f8dd9b27e66a57069d649858d9b1750aa5f5e49ce7','fba0111b5b762401b3586048d80401a2a22892757ab8d4a582c835983955c0cf058e400555d22ba7',0,'2024-09-01 07:06:26'),('d40d6e49f9720d257bc377f72a403bf08d6d3791ef5943b8b5e888cc55b9e0684aeec9d950c15aaa','256a626b200c5cdc20199e4a97abdb7ffb8241dc0eade789afd25034b7725dd0c902ff33c4cec0b4',0,'2024-01-25 12:05:35'),('d4321945416758e052ec51efad9f83bd714c3ccb0f6854b2bd6063de16389446a677d272cb703dce','b1d1cf01bb36faf66f265d80fe10933386d650c3100f9ef2301d1f1bb72ab51330c67e6f71dd5fc9',0,'2024-01-31 13:43:24'),('d43b48f42224ea8da232d05dbdb3978f2ee8778966bd9e1c316fe8b2352fe9378fe776970995c6e6','8520eefa1fde4e03020f99ea91a3a09ff2e4d5a79b7c1086b412f738506be6e85828fd0524af9f73',0,'2024-05-23 10:46:07'),('d440a55a8e571e572a7351e72767964c7a92262137cd28097e179d843589ea62b34720a28110f4b9','68fd16f1f0da774a6fe8b14960af6a1aaaa46baeb56dd5f2f7d8d5a8d064c70243154aa143b9788f',0,'2024-04-19 19:43:47'),('d44d39e36d7d408a2cdb07fd448566b4e1d9044844346716394fa924f4ba7eae1f61d6336fbf346b','bcb4bbb7668ce539226e8a2615cd2668da73f705d2236f597cb37a1f24afdc1cdcd70ab7de62cf32',0,'2024-03-31 14:27:29'),('d44ee5b033b68885baa1f81c57a54de4036a285d0387c4fb7983c3faaf61dff301bf44b5b52e9216','030288d834c9ec80c63a0aa03988f8135960876947e7b007b96368d13d6821d269b1c4728138927c',0,'2024-01-25 09:24:29'),('d485d90cf168e543a431c2a78d68c814c88d85ec4c7986b4033fdff2863c74f704372da4c6f9ec74','975941da4634d4e045649fd4bb78db5c5fb7e577b67df2e11af660d595e2f252513ffd099e9e68b9',0,'2024-02-22 09:20:06'),('d4b1d63acca7ec6ffa4337bc43daa0211a99eb017c42445734c613ffc79eafb451aa4b06ea89a582','774595367307031d89e7eb98221ab842a0d433b51124908183a7f2fbc0cab3fc988a9b6babcbfa8d',0,'2024-02-21 15:42:31'),('d4b977265fcf2f16afeb6082e5f769bc6b81aed820fcc0bebf992597227a8e994fc21b730ad19d85','398027800d5c9aa5403ef1282349f711d28ada34e8dbd758fd3428994830ea976bf5049a3f20b05b',0,'2024-01-25 13:52:55'),('d4ba1f66cac0dbf3e5bc5224b8a5a773feab8c8c923bd8d2872d4bcf28a1abbd25a2c518b168daad','507b3df8c0d85b41eb6b57871add3ca61477826c5fbd0a86d94a415b215348ffab41c282155f5fb3',0,'2024-09-17 21:56:57'),('d4c5ce72c2ce8150010842ef9aa79a5d3d4124fb3436be031ea4a32fdb546ed1bed16318b2d826c5','0317cca6736f1cfc9d9f5393c62c07aadf83a25bdb8ecbf67f891c8424e0379b3327a347186a4d10',0,'2024-08-15 21:07:24'),('d4cb4093ee2622c64ba8572061fff91cb15a928c8518037b01a0ba51a7f4b2c0eda7c90c2ddb93d3','8be38e47add1a62ae62dd921874c3cf839bfa18337ba97025870d0df9fc2cecc18179a3f2abbd803',0,'2024-01-28 17:16:01'),('d4d516b136adfc2669772032c5b61a18c44f6fe593ec9181240f6b2d9373848d00f6ac9ca267bf98','54dbd6f18edc8bbe09a89ea5c31a9a41b7f7201164eb00fd0c840a13fa5cb65337fc3b1f96c75c60',0,'2024-01-25 20:35:47'),('d4e17082303619171c1d4757237d36b0de9dcffd3e0aaca4290c3ef28e4e94425fd5b7b9e4287ae3','46e1f03efb9431d31f81f51ecf4daccdf8c31a5af175db9f24d5b8e0886b565e3d12a604894e3baa',0,'2024-06-23 07:31:33'),('d507d57ff107e2f88cda7d47b926eb1465ab6dc25fde4ea4cab56672c1d7a9e09422698dbf14107a','93cf82fc64d39efd05d35a13adaa53edab764e631869c418985f07c691b2cc3afa253edd32ccc8be',0,'2024-04-26 20:31:30'),('d51ed203d4eb01a90d96de45557719918dff025182bd395c13563f2ff9dbcdc6a94fb0c438abf057','67d0d1148abd503f30d12514142af48c2d37ee067a7baec211cbe9eb1f58c8ddeb12a399c39e5aad',0,'2024-06-22 23:03:05'),('d51f84427a176b1df441ded33ac3cfd7696a266b094471af4268ff620005b75127089bc0d5e0b022','feca6a07b8ebaf5ef774500bed2a71babfec836a3727dcd0fc50517b2199f1f96d3ed6ae26ab0268',0,'2024-08-22 23:48:37'),('d524db81eec6dc47ade51d752ef61e6240180b20a13276b849c77added405879426eed702cc6fb99','bf56c67890ec96fb0f1e59ed9f131d38fa9f78cea30a498401df43d6f35e770e377ab6b901f3a67d',0,'2024-01-25 20:12:27'),('d54af09ec0e05e2dd4ee4e8203f02d83a6ef51609f7e9dabd22b6ce1c1a6e16e575183274c65e7e3','81e7e19f126e0b0db7f6b2391abef69dc3bf679153a84986bdc036636d00ec28cf638e49ab81392d',0,'2024-01-25 16:18:10'),('d55c2fa1f0c73225a63ca91de0fd16da0a7eec690b041fe4a60fda03c1c1d094af1961f3b68569d5','0e602995f27610753feb1e9c70795c2e5a3977c2b2f3d3134022ed59c021bb0898c9920f79f2e744',0,'2024-09-21 15:20:11'),('d55d353e13c582e088db346a555aafb8fad27d89efe33d2b48b59a8f87032629b9a047e372f10d3a','d3fc1e85a245cb11d41e696181c9174937408d35cc8e2b6c438fe55b506a50f164d8c708dd944ffc',0,'2024-02-23 07:02:01'),('d5785ec35fb21ea602c4845647a5cac83d8a1357b16a714d45929c197c697aa75118ff19c92a3e49','f15805a4f29d00c572819808488ba895c31145d6e15b43ba4905482b52e6ca9f38beaf48aa30995c',0,'2024-10-04 16:29:59'),('d590ee33d5a7b19ee8faac99ae94bc3a645847f0f0b74b28ab59e1ec69192802972c2a75424fa6d9','9d5d12c2452383d31cab0734b9a87401dd8fd6ab73a83c27bb56601f39e37acfa16a10269226bb7a',0,'2024-01-27 11:48:32'),('d59b8ab18a9b5e4bfee4bc5197527816e04ce96d7181f2b1925817bb5f5db3c1abccf7d28709ef2d','2611ad077963b5d88be35157a4270ba5cfa3585d425048b929eb371b2ce9f208beff608e36f59e73',0,'2024-01-28 10:25:24'),('d59e1041c17fc32e7a8fdafa3be8e58e8dfa8466b66de1cee9ede2501e986350212cd9074e870610','f8126a7f3c79c2a6627b96c7978c4a6b54cbf91335418ad4d6d27bfdfcd19b1e4a2c09362c25e0af',0,'2024-09-14 13:59:03'),('d5b12259254fc95fe7e81c3114b6c6559478b869ce8e5baf81a1f07e329802dd234126b19624b7ee','155a2676b9b0fc1e0ea92f407116db092a6178b94ac201b0ed4fc3719d5f0426802516df70c04360',0,'2024-03-03 21:11:56'),('d5b57d08b9d7569fa85d789dbdcd9aa196d84b66285a9d70b984680197b6b45ac2520b4b9d404941','93e104795b3a76f67e5dbf272151a89d11aeac72ec397bd8049ec36c7ec1200fbde7bc8f4dea7a09',0,'2024-09-13 09:27:38'),('d5bce923fe62b7678f1447ae426922cd0c08e2cce8ee5158ce8033e21670c34cff1e69a4b8e661ad','bf32766c27ebeb79dfdaffaab111d52db0a314a37719dcedf623b30829b3eabaee5b1db914e69811',0,'2024-07-26 20:35:37'),('d5c7c02deba6ff661e3b443f0ac41f87120687955afb8c8e8f3805a6dbc40ff199e41166e87db235','5eb925e4ebfa5452d3d85e705db4166cf77c60b8e3e8244bc091958df62a0f88a6d7599571116aca',0,'2024-04-12 18:59:43'),('d5d3aedd8bb26ee8898932a69251e29716fd101a087bb3f2e2ccd0630c30cbd04c29d7a1197cb6f9','2d747a688c2cdd59621715a8d490f4fcdfd0b474eec9be82835a56490ff038184017d8bbf4dc2c5d',0,'2024-09-10 17:54:22'),('d5e60c41ad1c197d38828d4c29855dbf3d35bf5dd51ede3493db167a478f6ec8250cb701151f7cf1','08809bdb7d334e7941836c9cbe1d5475e497342956a8ecbc2412ec37b0bd14bff3375433f1383197',0,'2024-03-06 10:30:57'),('d5ea8a157564c2096f6f6c4125a2cf6b8026de96afa4214c97c5c00c77632835c2f08dc075fab8a2','01144ae98436f0d42b44c561e4cd16e7e190a24748ad47c6eb965933a4085e730df2087691282841',0,'2024-02-02 07:23:48'),('d5fe9e99e07561b46157880f33304a1841307389e1af0f3c1a36cba13831665f7da5d87e4a2f216a','5888c67463963ab8fa7012f0559cb240bee46aa54f05616df4a42786cc6776b97f45ebeadf629e90',0,'2024-06-14 14:35:44'),('d607c6ca2185cbaeb4fe2a3ee6684a71ee1628452189947a2a5bc2bd4e53a59c2a1c4ade0d13bf9b','1da691a82f1f2e1dca0ccd8be6bb501bb14b7133c8f28a95058f3f6fa3874b9dd732b29f2623c2ba',0,'2024-05-15 16:45:45'),('d6129b21e2b516ce7ab6392d6d6241ce23e8adcf94314f44342ab8678e7f322f92f6e402b64af6b2','a2175e6904ead90130c57662645e489124b6d4d6474578aaaca15250c7d8b8944783708fa31abe7c',0,'2024-04-11 12:39:10'),('d618e84859c163ee52ae8be657e4ef903c9ebbe6692ca50553255e42d83c1b0140f2cc71f3b55f80','96571c3aba2ac820ec388f75e21bd46ac92d15549ab538c6c0bde2ef6e5a8c21777e001ffef1c6d8',0,'2024-01-25 08:04:52'),('d61a6403396ace946bc6a0afbca16c575a6858450f3006c31bb4553c23ae3c965230689ecf397d4c','589c8bdfcca89ace18a3504977af32a6428721e1024b247b7181c8b0009ee37e58dcb27a162e1a9c',0,'2024-09-30 15:56:29'),('d626be8e17ab1b527d05722138e5bcc268e7d62a0a3e4212742602b9946d10275007a9d572d31793','34b0bf92747af64db7ff6d7db3e64fcd12f0876f331aadfe1951a6a1bcef2af365591b7ba45b6c2a',0,'2024-01-27 18:48:31'),('d63f5b885e0011a7a45c1fcc8390441993b6c70f117f40452ee9d49906ba2453b95e9438c2f43b52','ab1273eec0a57593e09972d4e12d94feb6959da3ee8382d3eedb7486342366374cb01486847b3d0b',0,'2024-02-25 19:48:49'),('d64f09c9989f11763b36ecdb2a1324ff627919ccd82c9fcdb5781a4681bc0f887435f07f8842156a','a9a16393653ebcd71c795b5aea6fd88594c34d8d4d78ea6d32da8750b804f86f0303d876a3c7328a',0,'2024-01-25 22:40:29'),('d652a0fa902a45e52a0fd8194d3d09c78be10df282f3c741c85ab92328e9c3bdd10885d1a867c75e','93bc2bb84499740a2f76351502d93c0e754e86cf4ad2525bd500f2e033bbe27d1cb5087368a8301a',0,'2024-09-16 13:07:48'),('d66124e4b491a33f13795d1455f6f0959ff80060f9a17299287ae6f8ceea245cbaff904f024a47f4','fdba7fe172667b70a7701fb32939a3fe40d35a261e708c4f6268ab92dae4a0eb487bee36e3f5cdf0',0,'2024-05-03 17:13:51'),('d66e1882ade6a5b2bf5168b1b09aebfdd445e129c197706ebf2df27b2ddf37225ed49ecc83b6bbec','2b61b0b87d6a029b792f4e04a1824bd1999b6170142fda4610b32ae605bf1849a20c2886294e3415',0,'2024-04-19 23:50:03'),('d681122d165b9d93cc14c0cf6ce237689a369e5db303d2c1cb52d050cbd6aad142a70b7dd8d532a8','06e62a9a16e52587f91d3b9f58448fb55bc32b9f8c20e62a3e7f26c77f222a2c510fe72761984533',0,'2024-06-06 08:36:53'),('d69c8a9d3c4333cf93ad213151284cc204cc3d2dad31e66cf9f58ab199426559feae2a43ce75001b','1ef28970b0f47b38adf1af5bb3cddc439c62828e88ffcaf4da2e83352ab64ee2705c5cc0a867800e',0,'2024-05-08 20:38:28'),('d6a91489ec77138723ee5fc83863f2e4c8786d4543346b7ad79a0f04166bc132178623329f042c30','4670ad98439001487994cf31f95d424d721caa5107f4f4fd02a9e506918f0970f4d263193490b3a7',0,'2024-08-06 10:06:12'),('d6c7940f1253d5e1c6de0b0a8ef17a49ddc1469aaa257e80ddfab81209d6a1b9a0d66eb53bab27fc','6a8da570af5c235d11d78a2773b867614946bb140458efa693aa4c50548e86a1b7cc8a5d6e5e350f',0,'2024-06-02 18:15:27'),('d6c8165f492bc701cb5af0dde747b630e576ebfeae047b51f6b9215d792acb86105dccdbe6a4824a','fa3eb9c497872842a95b6fa37b2d091fa15f302babdece1f9ceda0fe514e4c10fe4898f796b2d7fe',0,'2024-07-06 20:11:19'),('d6cb1f9648e141334cdce6c52bc29f8528910d653ce416080f653d35fa53bb4dbc2b629395f5daef','54e80a5bdb30f223cf9e53f63794905046c970dd9aedddf30bf55eacedd00ef2383fc149283e48d2',0,'2024-01-28 10:27:22'),('d6e76ceabf8fa654103983abafd75da92243f6ff5b648662276c0d19034254a1a1bd07c09ec34571','fbe8d1508c9b3c3c052324edbe4c1d19ecffb1b97a21b2d9431263f8580d404263c96b5f12e3503b',0,'2024-09-25 07:59:28'),('d6eb6e30d0814d2cebf9913481ad52914047b25f4bebd1ee9e16a9c2b56a693d0821499a9772c18a','a1c963ecc6a26bcb90127348d969d45528c18d588ca93969701c912c77b5c0f4c4f28959130d8594',0,'2024-03-28 20:13:50'),('d6ec53e4e0483e81ecd3d6cee10ebebeae12dff58650ec59e318971ff737bf97ae99c5fc5e8a5420','ef51cdc419b500c68dde435f7c834485f1b629e8c4f0baf0796a97b6c6575d0aa3fc9eafee03668c',0,'2024-03-12 12:29:13'),('d6f9059c5b836a6d98d5fbe5036603302f5b04e0dae6b065cc8ebf524a2a72d83f0852ce3ffa73e6','5e78c23526ea11fc2a6da15808d0860caa7c2eaba3003bf607e740dbb43e725d1dff01c07349dffe',0,'2024-05-25 15:32:42'),('d7000bef558adc4e6532882514e7704e86285c7b3416dbddca4b0f81904bd4f36c63b335cb43638d','e3a6f8e8f7243ea956e6523121dd89dab38733d17635fad9add75fa0cc0d51ddf206e68df0ec9a72',0,'2024-09-02 01:09:31'),('d702b377b4be319f0cf56deed65b871c1ba99ffcac0ac9f411daf078992704a72f1bb27c22023622','39d0bda19aac4f1e664f5173095154394e8fdd568f5b03b829715d265be7b5f17e7340066c5e6bdb',0,'2024-08-17 17:41:11'),('d7307fb1b09953720f08c43061d6453dbcb7c7d8ded210432aacb496eb4943d0c1da6e9b8d048a42','2f539ec7276b9de8dfaf57782817f64757cc87e64f4f20a7d1f34f95f726ab82cccdb309e42a9ebb',0,'2024-06-14 12:12:07'),('d73fd3d5811bbbb4d60b1ada24466559fb45319f16d59ec2bd195c049685e5a97cd371d459903e4c','ec586ec3da04395fa073c0773de9b3ebc8ed87a246e4e496b8bf8210255f0ef540398e0d9d022776',0,'2024-01-25 08:50:03'),('d743f9d281d630903e3064ad42a586f6bb153a601832b0dbcda40c3aef13c8ce38a382d9c6294cfe','2ffc32bb2042e727269843c4100b7593bacd46ea4b7b1c2867aca8b5257fd38138644beb9565685a',0,'2024-01-25 21:16:31'),('d753ee447e5b6e4d67f284dad9142074f53470bb04a25a7a53e4cee7149633311f443022fe69791a','21ffce8135ae5cbf0f9bd7713d2009a79ff1c91cdb4f090c20cd8223f9ce140449ae751dd78fdb15',0,'2024-06-06 09:03:11'),('d777ea32ecf45e1bc737125f4d628761e398cd6b0927ae64cb83165379a7bde63f1b0c19c6c8874a','7f904b0cb5a76877cced378dfb27950f5da74604af7cb00d0907871394e2c00a5f8129f3063af77d',0,'2024-02-21 17:37:25'),('d77b1b358225e950e4605d6509d185107679ff77ee4b6fa907656df68948acbe69a83575f763a795','fa14006bcd60e9bc28c845cf65714a3d6d2efa3f3abf28932701d3f0289dcedc83853d7ddcc9ce81',0,'2024-02-14 16:39:17'),('d7af4653469c25b3d9f9c736ea8700d8838c3be8d39d3899037af392d4f9271be0944a21f3abf203','d87c754b70216e8640d8bae555997d3b9fa1e63df4fc849b7697e130c958bc18bba0fe2e8024f56b',0,'2024-02-23 20:47:38'),('d7b623f716f0e86d2165859166bb6f773c061da346bad620ad5bf79c3381da00192162070f2aed9b','0342d2133b16761e9b93dea11fb5cb8758630586a5946768dc193ddfdcc4798c036c0359d0c6540f',0,'2024-04-17 10:45:05'),('d7c0cb47cf2fbc36205bab3d1a31abbfadeb0a7eda5bbdaf11eddae5a54948006c8c5d2941f9a6d6','70f109be92a6309e4a729798d563cac7af7e8dfabf22e4e7e0002137e73e49272ae63ae1c4a92149',0,'2024-02-11 08:43:52'),('d7c7678bc69aca7094b28da3864f63ccb064b8712392eef7100fd6f503dfa0056c625a57018268dd','8cc66cbd47fd63b7ad8704adb9ffc401aedd7f5ad3070950afbc31f4432cef2e77e07ffd8f98caf5',0,'2024-02-25 12:23:45'),('d7ce8765b178450eaa3f2251e59148406a523c88b7596c78b352c1c2ea36ad70005a62cba2e9024a','3ec1eb14cbe42bc40edacc2e131a96359dfea675ff2c5811a0b769bcee3288e7e9d105ce59d92189',0,'2024-09-13 20:51:16'),('d7e98eaf1d2ee1d7f2342c4d86f8e94331550d80a8a3efcc08aa9135a509c38fee29b09f373acd06','e52f791f03d54acf8d1454266353d0de8e6825aa8aa0ebc21adcb9c62b49fa58f87737f55d65ba98',0,'2024-01-26 10:42:50'),('d7feaac0b60ec7f2c004364f7c5be92beae6401a7e75a6d6f9edeab0a5bd4a5ec70fc6478af37a47','1ffa1cc0ce5e65441ae69e3a6fb0ceeba6f8d88e8845cab2ca5c59e4689eccf98e92ebb1d35fdfec',0,'2024-01-27 14:24:22'),('d808f98ac43e540d296d0ee042b0320e1da479fa7fa6d555ef7d06d74d2e3d48ec70225dfc20c03b','66bf6aa46d164cb42d2604f7b6f3a153ed133e823b2f2f6bafd5bfb21f34a3b5e389d3a06275298e',0,'2024-10-03 21:19:10'),('d80edac674a5248ad4e892ced68558fd774b359a2ff3ca120b45767ed15e8e520c7bc6cdd48944a0','a0c1c6d41b2c3a76bcdc68ab85374d747f15d35782abd148b46a3d7d08c74c06597b05c7bd5a1181',0,'2024-06-15 22:23:38'),('d81bbaec5e762d68e27add2081b868a8a83b896133dbd4e79caf2cc061172463fdedc94d7c105d4d','f78733cc92d6048db7e1e2d67b94696ee60bc3d56cb693f097e3a607d8b50f11f49ee4a7d3858037',0,'2024-02-08 14:21:19'),('d82148b05916bb9c58a9cbe9ad02def0ecc57459a0930074a337cf17536f32927bc4465d49328ca3','613e40ac333263407e85be808cb748e0cf724340340bef4b656e6a8620d073a79177ffa646a9ebea',0,'2024-02-02 13:15:41'),('d83080bb3c90d558f818a1e28ca16bf0c7200b113007d9043a76db89d03a34da356b6f2112f5b900','06dc66962a2ce13953b69c5c427cbc8a41180db5bc8887d6d3b5e429242eb8d1dd0f427b74cd0004',0,'2024-05-18 11:41:16'),('d8548d2e089927801e44b9aca6dd79a78698cedec69761afc24e83ed093360075ed5f7676e9e971c','bf609f170bcac734f43834d38bb9cf5f4b972b5a41e2245a793a935227a94c39433e117ce1d9c151',0,'2024-08-20 03:26:41'),('d86460db040e9f6a5ccd33edf5a6f06c55dc46c0d69269992cea80d05b55cedbd558b734c6ce19a3','5b5004550c9a7fa0fd82e6ff83167f585079660ba2e78fc61330d965640610099971b450f5f9c017',0,'2024-04-27 17:13:24'),('d8674ab56a54c2d01da0e80fc93e84c5d600606f48832f6865aa8180aaf21a6b4e51878b3f61cf38','b88faf8b5c80902c3c16905a18c7383fb99ecc41c7470bf1d89b943327ecc623f64b7687abea3ca1',0,'2024-02-02 09:09:01'),('d87018cda0e88c3dc43cfa2ef67e8f4314f1bd6802492c32cf4f55e5385a4b05461f7e568b53068d','5026a68b314c4d96b574d1391c95920e94d56ba95bbc95c4c000178fcb19cb5a31f8cdf1f7462a3a',0,'2024-08-17 17:21:37'),('d87dcc2dfff0703491c7784656a4c08bcd84c267a3808e14974dcea910f4996cc348f5f9eac08bba','f3e8aa9e51545dcebecece0beb0a94b4d0339b76ec212364b1edd1f270de7059f28639e4fca42c0b',0,'2024-09-13 13:37:42'),('d89333f742d6ee2fe84ece37b471918b93f1a50b0580e50af559499504b978fb936f9c71130b54d0','8addfe378de440b63c317d14c98785aa6b41a2b1a3a803482fdd455d57dafa3d5b101251aa6ec3ab',0,'2024-06-22 20:35:16'),('d898516b04e2d9299c9a2621b98cb7664264628c9188dd385cd6b75ad02594b14f0d67b98afed172','e586835b8dd44740715e6b86df08a2f28815748c5bce4bcdae48ad1d7b567a1dab5e068d5064f4b7',0,'2024-03-28 14:05:14'),('d89d7dfe2986b4ef308a69fc4e69383dec3d891036fff97b561a8ec1b863d26030340547ff2069b0','a124fd6b538a14d583acfdf4e20704c3f3675bf0a09d7d82791412a27b6e365f8c94274f65aa73c2',0,'2024-06-13 20:55:05'),('d8a98776da15c34f3665def9086d0bd54c0aeaf19ac0968223bf334d061ba65a9f1b9edebfb0150f','5f7e084ff7bae9ba89a88396e81757f3b0bce8b5d31162895030ec2ca0d9750dae336a2005dc4d62',0,'2024-02-02 18:10:43'),('d8ae37f30c1f294bd22a3bfbd2ff4b1dee8f395cb1293b9662d2f21addf54e3c67ec6dccd214a9ca','3a39b80f313e94bda9907d9d380184db064254f87ad0c42a36df2d3922fa26d078e45a27eccc6cd7',0,'2024-09-16 18:19:48'),('d8ce17b4feb4b4865ba26adc8c63396bff1d3c01db207d90f3d5e02c0ed9aec881812651054c27a3','1c007ef304e99d51158ab7e2252214dc6e381568e63721bc30169796bc21c6027c1ad8c58f581cb4',0,'2024-03-28 13:27:00'),('d8db1febc2019292615e5ee830693a958a9819d1d028deee979bc3550967cca910cc05b5903ceb27','14300ce443da267e46e25ecff070e81d262651ba17b14b72f7b23af36b0f85200782273a9f7c79fa',0,'2024-04-20 22:01:12'),('d8e53249cc0c177da164bce2b3f6b3ae26aa67845cdf15ebf4c56fd2754df6e4eba9dfb22c830818','b98c99e4e216190e7276eb6e8522a2397e384a252d7aecc92fac7cf44f7443552302e98dfa7feed6',0,'2024-05-15 14:32:17'),('d8f81f5ba3d8059c9046e64411e274d2fbf12ba187d4674541131793db9a975bf4ccb84a8846bc91','0de7281f294962dd6aa16dfb1696bc635af3f2064cce27face8a37b64bbb02137116cf0200213efb',0,'2024-05-16 15:35:48'),('d91b90bc8502d9cc15f1948809d2f2b03370e76ad6f76118012ac2152dac6fdbf9ac5f55c9e8418e','7c5499038c6998665610a2044994e7ffe60d87aa0bb43ad1362da27f0c1369d38b8c3c60e45177fc',0,'2024-08-23 15:04:04'),('d9268f3ea83549e7b406a3b8b65ff0047aa873c8a821585d7a4840c4b498ab06b9b63558d02005b2','d1db23ec8cda6f45018dae9e9f2999b8d638fb92188489809522fec062578c7d0ff84816642485bf',0,'2024-05-10 09:53:28'),('d926d3d923ff697b274b87f9623bfefa17edb2587f34c10b1dd3823e03cab028b19f992b2fd5ab79','c5356c50c58536aab191cabbd62439d09fd64c06753c58816b746c14e8bcd738274030613514dd5f',0,'2024-01-28 19:27:56'),('d92e6f2d61b5da06743d83e8c3ede92107c5cb70f8ee4bc80c63424317e1152ccacccbfd63148227','78799a7afa4be3b99cfdb65c79311eb029aa62d4b367278498e4d2c5b25c5755ac6022f87412b8ba',0,'2024-09-20 23:07:53'),('d937d62e624887aae788433c6f376215522bce96ad278ce26ea906dc7dc15edb728bfc46b1be8636','26dcf7c887317bf36598b4f450c730f8635857f99548467502d8b58dd1d8b946fc92129ce8b0b8fa',0,'2024-02-19 18:21:15'),('d939872bbd8f795232d153e6ee29726df1051e93364cf7250992dc0c29714981bc5f6941d7f5580a','ab3b76998cec73bc7376124f2c92d5ad1962beb59810bfabac8b110f385d284e3d62c6a20aa0a7fb',0,'2024-08-16 10:25:41'),('d9415fe05daec0e7eda67f0997dbee550cacd009de4ab03b134990cfd75ebc7a4b723aa2a734a8a2','310d2fb9978c1168ee1ed8b9e4892f7d7785f4f833b9bda9df85c904710d61e56289745b493610ef',0,'2024-07-08 12:34:26'),('d952d943314568a34a202a50724eb75ffa2ee0aa7999c21d0b4020a0fd4a0a3f49b6ccb8b00f590a','69a4ca0ab70c60ffbe3c9dbe5f0ba690521a671eeba88cb158039b249c8cfb4333d487a5ca938c99',0,'2024-10-02 15:32:08'),('d9552e5d1e5adfbd0283f34b611b9e02b50c79516fdce89a44def6eedb9f40792f7228ac016fa63a','17e03c18e538461a7722ced8f09fa8e1f078e6983cc3c76dbaf2aeb5ac840c51e34859637481b0fd',0,'2024-07-10 13:06:52'),('d95fd2ca8d1d22ff9657029b096b40a8296822721abba5db6f6ed879ea6ec17c27697f28a113c844','92464c0237c1022737a506225b1bf0e47498bcf2e10eb4d9f53eee6a6df68b653ab21c98f75d40af',0,'2024-02-21 11:59:22'),('d96e260bed14efd2ca03a46e7c54e1c8acdc8224436b22468b8c6e934e102bec6d759e55038418d8','f843dd14c5e4b92d95c71b64b66ef0caeadeb604f3884a8309a76905bfa1f44cf1cf551e64350ae7',0,'2024-03-02 01:23:52'),('d96f852ba4442b368a506d58bffd4745068ca1cac587527d17d6633836bcd857a80b1fee8617f0d5','56a9f2dc2ad2b370695bd7d1468cd1fb109554167708cfc30ca5b1459a1008c1a2460ad531d01317',0,'2024-01-31 12:40:49'),('d970fa514800dc47e91c7d2e3a45f6bd5bd7b7aa0173e366e4c00579e6ff14541398a5ee75e159f4','f84b3f18a27782a3a42571820dcaad91aa363c42e18a9ad75cafa35dff1a098c6862c849c6286d82',0,'2024-05-26 11:03:59'),('d97e2026a99528c1ed635f58cbb39470fe96f5383f2d9013ace8fe031aa2adfbe5c05ae9ddbc5d25','0f145fab9294418fc8399fc62a8c7917e4d228cacdc38b43aa3cbb6fa25bdad616e865da6e6e6182',0,'2024-02-24 13:30:05'),('d988eb5629d5ff88f97f5f8674c0bd2d8ae3159cb84e745e3569883897cb1989ab7b536406dd1ade','987bbb5f227d78dd1323f08b356d2a0b9516a1ebca03ce06d5af104d17dd02dfc2e98299844e8a3f',0,'2024-05-29 16:10:58'),('d99c5d28a285da3d7eb5ab8be0d49970b62144a9ee07398274913e1197f62b029f67d621dff082f4','188f23949a8d36c77e4773083727f302117b62b4468afd3d40d95d4d2e903f64580ac7d8a90918fa',0,'2024-05-02 21:46:54'),('d99dbe095093eb73a5390cbb1c6ff348d48dd2f662dac3e93340940000065ea8df09cb487842e629','85c92788cbb35d19874ffef7cc915595d2071f38c601c4c22dc181fa29da3b8d366e0a0710a579da',0,'2024-07-15 19:21:17'),('d99f28f2df9ffb2cc2236b5fdead0fe5714f5d5b8c62da087043213dcdcd742e449b70a47586515e','a980e4f8f3d84c5fd397b6424835edf02872caaac97c0c879952ac99974c2a3f3e7958d09888b381',0,'2024-08-16 08:43:06'),('d9a04adfdf621dcde95890c206420471fb2ccc3f3d38f1822ff7b15e003bbc2cf474ca1dcb72bc91','70e4caa07a2d4c54f8458c11d14fae88acbad1d3014b4f8f8af0e034383c3ac3e006b02dd7cb66b5',0,'2024-05-27 08:56:45'),('d9b3536fd6e67cdc5e9b79092e47413ec3c93442decd50a8b546608f169a4fe72132485dc9df406a','340c82424530c0d7e9223babbe81e8cc842475ff8f0e72c0c1a6a00b9e15d909f6f208f6fb7dd06d',0,'2024-07-04 18:18:21'),('d9b3ba3e07cb58fdf5f3b7a987fda809e0b626b066fb8fcf9ff6d729164093df4c7f89857a1d4b07','e939904f92402881f14524445fbe712188d4fc270664e67c41757af814af2b26f35e4d9176011d97',0,'2024-07-29 15:17:37'),('d9be364f0079aadc16f8346d283aec82e4b9fe46ad418cf4bb9558782024ffcdaf7476480fd18008','abcc2618d1b53ac7a856cbb4d46b193753485b69b1d12da28135d0a044b326eef9fc82e681b15db3',0,'2024-06-09 00:28:46'),('d9c31359611bf9744994f8a190b97c30a2d6d3e765defca3def9f583a651808d04781d5c06b08cd4','33215e3055bda5924145a6ffb45e3658813fd7bce0ec2f65838ad4933c683414f23c9e599da1915c',0,'2024-06-26 15:28:15'),('d9ed20f865096853f5e8830be79ca957b7294c7115184f1083fff2b6e19bd8534a4d7eb59d67f429','ad092b5061392653f75d50b67af147983f412bcfee302737af8badd195dbc5d2f94bfa4ebd46f839',0,'2024-01-25 12:16:27'),('d9f362c02ca9b08ebb45a2a6df09cdd42869535505981f2389b7fb8fd4518c64117202055cd26f94','6ca403fac71f9e794f29c46b68e71edb7abe32be043a3c7dc04380e7aa6bebd3f1e2720122f1cf89',0,'2024-02-03 17:01:04'),('d9fd0608242672ef5c06ce98e2646d5121315af6582e79523e58a491cdf29976b74ab7cd9d8d01fb','bc977127c71ecc270068b15e8695ab4e6eb6e1975c6dc16ba62a732e4ee13c9f983e9771222bf4b8',0,'2024-10-05 11:51:25'),('d9fee03db27b0ced6ec72c8139acbc8267ef0f52dd6c0b5245447803f3510c2e4329d5f257aa0d1c','c59506415f06a0a7532b3f765ff968391fdb0460a9d624979e8ff32efecd49f9a033684d6297c197',0,'2024-04-03 06:18:57'),('da16d0ba30603afcea609d2c11c5d6a2e54db2526572e41005a01669bc8a8b339325234c0bf51a0d','45315cee94ba9b8ab8beb1bbd174a521ba5e5c45be93db4004c800bfe335aef4f5ce14fc30896778',0,'2024-07-04 21:12:41'),('da1d9e3d5a14ad4a64791f2f8d7ab952b403c5ee40aa518a0ab9107c6c3b22d422091dce844f40ac','49f36dd350f2dea767d3d3c5aaea22bfa7771a6bba7cbdc3e5f26ff129d608844913cb1fea73d31c',0,'2024-01-25 08:14:34'),('da21737eeccf0eef87a7d91b7cc4eab78df78d8fe6c167a5ffb5016b236a7545f2743dfae1d997fc','95442801f111816b485da0d24aa383c3ea8ac3f7b30cf5a2b67ba4ab54adb73b35f118f9244f9aa0',0,'2024-10-05 22:32:24'),('da503ab98cbf49eaa66d9ede5d274ad5ec868bb1bc92cfe46c9e18b3fd209ab189d9087a8cc5cfa3','1aa81e3b1f69df97c51fe52c18c4384f32ba01efc5f350e3970b51673ca2d69e99794e96c72e2873',0,'2024-04-06 16:00:54'),('da8460c3df0e62f62f214e48a39046c0056dd541e8f140fd17d57b74fc971819037afd2b6af1e004','5b14034378b3c67858d22002c75e428876617eaa6269ac67320fe22ccb2f93d4a553e435eaac7487',0,'2024-01-27 14:15:07'),('da9524d7138602591b52f32d9ecc76ba56d2574fc0b2e73f003d6ddf03e3857e75e6e0f0378e9309','612175ab1bf85616b1e0cc7fbfb3127106d2b4f1879ea989e96267a794fa52645472c7956c2c9305',0,'2024-05-14 12:14:28'),('dabb067f750b3509b03b245f6b15d14ed9ac3ec61fc8334f97a74d3d18ce38708b25ace83ff72c19','76b415a1284008c552d66722c91bace6338b74c6cb000ab82343f75fbb06fb842b6286ee9abb7b65',0,'2024-02-18 15:56:03'),('dabf6518ceed841526e9e8e6530c13aa0eceb7bea2683b2a6b39a948e888824e5943102a8c5a3355','34092b2c587d836271583b760cae40b49cee87e32d0e3af0ee0f3ba7bddb0199572a32a35fb236e7',0,'2024-05-11 21:24:28'),('dac074aee8de5d725e7936f02f397cc9bc66f435933af0c43c0307b40285324cea3eadc4ff6de4fb','1af22fb0e8de4b95245d856be2b89a9d5554cdc1bf7265952495e671a574be45423d1378b7cf0729',0,'2024-04-28 02:04:34'),('dac93941163f87e243f77cc7c8ae01b52464744c96f4def1c4392303242638bd2903c7b38cf2d7df','0dfaabae96ff9721e2d4a293191717fab2578bb72716cb3b97a05289a2211ee8316fdcac07e8fd77',0,'2024-02-20 12:17:59'),('dadbc4b6c80cec3e1dc798a641852198609972a941032b4017f40ae61af4d3a443198873250ff989','664afaa382659b8ff37d2eac05b85872d3d6ed1c3fd82f75a9d34191ebe1fdb72ff8e82d1e75da05',0,'2024-02-07 15:53:05'),('dae45c8ca16dbedff714bd6f41534e3e6c648bcf6464d045104ae598bcc85808d49bace4e6246b48','532434678e9dab54eb729aa17d500f003a76645709277cef4b36d363038162609cebefee345df9eb',0,'2024-07-10 15:10:09'),('daf84f489e6b4a9d25238a5fe56e9245fcb7ff668b3c4084510b15e5cfb0bca18939dff29218e018','5cb753fdc33aaef50a53701ce8e5467b87801eb834523b8c4d1bf6c1a33569174b3c6efb27eaa91c',0,'2024-05-01 22:27:00'),('dafd230bc94f8886e53256ed6c7e114c448fc88f7e5ab21651ec1d40adee2e433bacbf78fddc8894','1c9cb484b306d755cd5a9bc31c646ea6483b4a8eab3f5b940f8c24df178d7dba8fbdf70c559be648',0,'2024-06-21 07:27:21'),('db054d9a00971ceb6b7f60b5f78e4d61f6054626faca7cd86d52c7c34a582b9be6d7dbef598574e3','0b7815693fe00b4f2b187e62c4699c3e58a2ad0b8f74ba15f3bbd62d13e537ec04520e37d69d9801',0,'2024-09-12 11:36:28'),('db05aed20cce8b30d0e663f8d0d334bed3d9a0334b07d79ae754dc14c1b79964fdf0441635c3863e','258a202895ecb4183ddc682f9448ff22bb40ead3ba7d58ed45b33e971f9946dfebd54dbe80d7f1ad',0,'2024-02-15 13:24:35'),('db0f9acbd526bc7ee592389caf3bcc026112e6c749b7d443c38fe096ce911d2aa4924e15a863dffe','92378098979bc6d2a100a1249d6079be6f2b125cab699256a06c38db90615d0e3246a97179a99e8d',0,'2024-07-23 22:44:21'),('db0ffec14ad43f03c746b59bd8a48dce522dfca2dca66a802270b0e6310b393be9a911f6dcf25027','c5725986c3c8b94b50a71cf32561c87f776d9b8c33dae822c517bc5118611350bbbc57f5be6d1df8',0,'2024-07-06 20:36:52'),('db10ae68013a06c1db7470048211cf17d861114d955387115f9086645cb0fc651785eb1c28a78be4','f6450e93a18974eb50685faee3dbe9397d509204b568848aa6e271cb636104d1377b95f4fbf57117',0,'2024-07-06 20:42:07'),('db1103016a459345bcb5177c23d7f46f126f9560497a2c9aa0c2e721537dd1c9f2fa5f265404d11c','bc307f1b880133fd5e5656f198a9e453ad5f0b9bafc779bf5227bd78e507e1e36d4a543b0fbecea6',0,'2024-02-21 07:23:35'),('db1185ce0c6f9ed6afde47c087398e08b6022e72e8776287e11edf55800f0ad2368e10da038a9e41','841198a1300270a3db1c6904c01035f8258137f73703227f6b995832573ad2bb8ddf886cd15c8940',0,'2024-09-02 01:11:45'),('db200c3ad593daf750e1a4003d932397764866d3fabfa4e572e45a13e7065901143b3c880e59f67e','22abafb8dc9031b43fe9adfb1a213a07bf6aee2af35191056a45ffdd31a7c30246f0bba55176631d',0,'2024-01-25 19:11:35'),('db22aa5f37a911edd54b0ce18cdce7b734d6430f8c64613dba0437bee40660672e78d736ed3804c1','c72f66d1298d81bc75f8db32101ce9abe32109c397c4f358d7fdee3253ee492da6a8295a58805577',0,'2024-06-23 16:43:09'),('db2b55350989df84de28f73024deb512593884fde0e65ea69feea77af1ec257ee154645e7ef55d19','acfe1019c1df17ba8b432739463a6e7364b82834519796b386c312ad14c06dc6df68957f00a2120b',0,'2024-05-08 17:51:31'),('db2b911d672638fb5ab3008e97ed6ed8b56f63ba5245d67dffc882f23ecfc02d5133206264f65e3e','07743fcdd30e78c0679837b2a88843669caf1adacab29bf44cc04da206df90ea9c88c76aec4996fb',0,'2024-08-20 09:13:15'),('db31a808487f236748ddda98056999cca3428c0e100a7b5fd26f40af8c13468a498a826208171964','8eb9c45d84903d1f3ff1766647afe09c75e5709532d7027bdd9540ff6da7a4303775c45590bc325c',0,'2024-07-22 18:48:07'),('db369e49374408e19ea4fe411a244e117a53b694bf8101ea259e0f9bb6ab4e388b06cbb1f91d5ddb','c26044366f172f66070c51a94e32fd22ae76f983c55ff2de80e9b35883c62f1f32347a3a5ee0d7b2',0,'2024-01-25 06:14:25'),('db4038e6a4b2e1ce70b33a067afad44834d48eb94aac5bcd30a9f1d18813d1c8a5e37cebc56d7f3b','9a4f35feab0fd809d1c92e7bd294b1e67a84c62e11236eaec59b17809636960be35a696969666244',0,'2024-09-27 16:20:00'),('db5ac12dd21fe49515d9d796c269a71219d13afac7e7224d81eab355b43b167cdc124c5863ea4fa2','188302ba1c1ed98566e26d865c4afaf90640d552fb75d0ee7d88fd959ab3e51ab32ad4b134ccedcf',0,'2024-03-22 10:03:06'),('db6d60e05f3afa2900f364c4dd144ff4cd261aa449e7050a5252b37f9be21f41f28cc2fd91bd77f2','cc51a584aeba1d42b57bd8e333a4299904aecb937765611ba692da6e6c379974cf430eeb09a5138c',0,'2024-03-24 23:36:50'),('db7540be9f6e03749dff7d47cef42080b9606f91b6276f106da0a5cfce4f4a7ecbcaadc679bc4ddc','4454a381a11ce570005b502e2a55becd9027ea5395df456873869dca9e893b3cd58617f4c859d700',0,'2024-09-08 19:34:00'),('db88bed80758ab874a316d0c2eff6fd5561fa01050a812ddd3ca1595abef509d93a1857db66fdd04','160578452c2ac1223ec5a6791e5ba4d6de514b40cb795c3eac56bec05ea0d1ac80b94a479fd56b8b',0,'2024-07-15 10:53:01'),('db9c1e45a7207c377f9b2c83afded89ba4622db14ca40f80b1d429603510df95a711e50ef9302f86','e4c2dd246d62aaee427eb13a65aa542ab9728e021dff5237a80387728cbee477b92dec33b4624bb2',0,'2024-03-06 21:44:08'),('db9da9428e042210357d61a867d3e52233c8f6b46c2075a1d8fed0f8c2dc63a9c5aaaa5b1f02d757','59256cb55bb6d1b6f09429fd887c07ddd9d887ac61e47dcd1f0b400e60a765b435fecd66070984f6',0,'2024-05-11 22:31:20'),('dba53f7d05042bac8f84e3a683890320b8909b254ef0287591eee1b2e3bc4ee5090e95e7c8b8f28c','924bdad44eda7f3e468fbc7e44df51243686d5e4d58b6d7e724e0d4c6d3b31253f1be64e141e0aaa',0,'2024-03-26 16:39:20'),('dbac55ecd3e32f98638c94380820d6fedaf9b707cc7afa7d2ae63d2eb196aa31768de31949d6550d','26767384769fe50bf16dc242d248bb7e77524e44e231af683d5de33c5258d633e752dfaa61c4773e',0,'2024-01-27 05:19:56'),('dbd89eeb21fc765dac5c37dd95795fb330333160ec0d56f1ed8aab093f30c675e4b2be03aade56a9','6e779d720844e61698bc12f7360361d4933c6c768cd3d9dd9af840e5d8d2535215be192e1e8b35bf',0,'2024-05-22 05:34:06'),('dc011e38070f42724c991cf7b1390c193650f3691bbfa05320268ba0c6073eb5ba996d4c44b52e4b','192080dd53b64f5d70213565161e1e7fe9335d25ae39ebab3d3772e4dc7bc32172485afcb7049e40',0,'2024-04-26 13:51:21'),('dc08687f1782dc5fbcd56af793aaa8fc8970da026e2c3a5b755e8ec4cd93ae9f78eaf74d9123272f','fe7d9ae7591d71297526da71b1376a21c427d3904be09241d72c2930bbe97393384f239b4bfc937f',0,'2024-03-11 20:45:45'),('dc0b419019128722928ffaba35dcaad073550dcf32edf021a5605064d9c97677106c3cafa925acfa','29eb600c6fdecf665048ce013cc704fbe56f3ba01efacee2220bc404d536588c4b5217a2d43f85fc',0,'2024-04-16 11:51:14'),('dc43e3d3b42eeb4994f7779264075f25c7ee349f8b4229f4ca14c4ffa38d04ae1dfd649f7ecfd8e7','6f9dc6ad65b2b1fa5d797d7fd39789225ddac8fdd1e544de077eb05806204bc9200174a7e8f6c347',0,'2024-08-01 14:05:38'),('dc4e5c276cdac64b661e7ca04021ca95e1b5e53c38ea3ddaa15055cabf059d1096a159e4c8275fa6','3e9c7c4cda83d7bc806ea929f0b9eb4440713f584856c1c7f781c2fb84f2d3c810efeae14740af49',0,'2024-04-26 14:16:59'),('dc56e3d6eefeacd2cdfb9aa383c9606728c8f75c245fa4cce5173aa1737ff303e3de7e2bf350f516','f35876c4e60b913e17d12fce3b90ea9aacbe8f9e91d190b64c73c0d35cb5f4e3ecac5a12fa0b2f5e',0,'2024-07-13 14:42:10'),('dc65b31d83f566fc8c169314502fa09f436e35832e8a693b840f43313c7e0fbe12706c65a53c36e6','06b5fd60bb6857a885c5c0f8e9e0cc1cba3cd81553643407ed7b86b14ef4549e0caf39cd20f5a83f',0,'2024-09-15 08:30:46'),('dc6b957d3693d32d77712f20d10410a8f1b074cbf12255d2e6b622153531b0000e3096059bd8f133','281be21c02a65b97c2cfddef27c17adc6350a644836092d630c84b6a783a636ca963943d2f06d79f',0,'2024-06-23 07:20:38'),('dc737f956ba8b17091169dd541a53d39c6b9ae429b0b28d3e1654d78189d53218266d9c255ef93b2','1b6b797855a72adb3e9542646874100b44cd9a274c6833f88bacbd7f5b9c323266504edb9a995410',0,'2024-05-11 16:24:53'),('dc76963df3e2eb859c279116123d0ed1a4cb1b6492f1d455ed94fee43649282cf611e5936b0fad5e','8f5f5e01482bb8a595f95422751baa670a1f2d95c091d9129556bd078ce10e643b11e767e56f7db4',0,'2024-07-31 18:10:17'),('dc833000337c3fa837a7895e115c4e76d31b12dd719ce22c00841fbaf78711bb0141223d20ab2945','e3af52fa73f564a6d78d6b3a88919fd6d34aca2e70ae66d80b98fe8fce14dbe2e2ae266d3a9e331c',0,'2024-09-02 10:30:51'),('dc91b4632d0702a145c7cb9215f9e41199264ad8803eeb9cbbeb61f2c7f2cb9e449c51825bd0f5d5','d8cba3ca59cab6cc7a9a0102b0500b3ba82f423a1300e22cc6f3e558003fcc9d661a3645ce9d26d0',0,'2024-01-31 11:23:48'),('dcacf4f98226078ea34113e4bf085992cb478210241eda7d247236c22b1300a5051781c3cfca5354','0cbe4ac53d1ef2d47bc69578d2eaaece50b2f5bd3a4856de28e98dde57d2e70397b54e301016ce7d',0,'2024-04-30 22:55:43'),('dcaddf50c3dc9fdf5abd0153360ea005f537d82136af43c105141ace06fc0808c94db027b9527b05','f129ea5877304aa07666c115bb5e4f2ae31762cc105ee6e78f36e0973ba2849913a5dcdaa57bf491',0,'2024-06-08 14:57:15'),('dcdce6d30fb299ee6a1f26ab404ce2406aa4d2c07898ca1252f0399cf282f507884c806d097ad06a','09c0848ee0087f057ec1070a32b832b1d0cf3412048ad561baae26cf250772070c417c08fa403879',0,'2024-03-28 15:52:14'),('dce3495632ccaa04ddc792578383706890986b98e7f4c5e73de90d0935d7172902d087993a72faf8','be2c3c5c3a4e7933b08aff8fe3e47b19684a6ec10d395c432e8ce51f87f37a2833a3cd5e89f8eee1',0,'2024-01-27 20:42:22'),('dced9643bcf50a24ef7e151ccbbbde46f293c5233fb99499884592a7fca5d31195ca248c5bc6e8e9','dcfa5f7253d9c48aec2e6a33273c90b3d3539ce74039b8c6214a13adc67d5da26022e55aa05c0880',0,'2024-01-26 09:34:12'),('dcf0f8d06c240f387b0765a160777593d6b9b661816847d8e0a981abd929fc47a3c7f65225dddb94','9a98d891a88298a6e27dd2be5cc424ed57478cddafb117c78ce73cf5e9b4b850cd589487856ce68b',0,'2024-06-07 13:55:55'),('dd022a9c004938b4cf27d7402d6720b54d02cee0214d6d7bbfb3d1add48b79548493db9752544ee3','897025bd4c0516a44388e2d5e28badfca9811b93749a30a8947794dedfb41b548babfdeff02a45e2',0,'2024-09-28 08:59:24'),('dd03c74ee64d3f3e5b4973c8c34ad702832ab7c2364f3fc30e9a7c6e3d0a009f6b1fb8a735bbeeec','d5f2aaf1a844925cfb3abc68c2f778cf2a96b55f3994e7e330962a6e6bc541054284e38cbaaef35b',0,'2024-09-05 06:05:26'),('dd19edcf032ccc6dedd4ef41f1c82d9720868ed7e21c5b183292883df33fc64991b4364a37494b73','cdb6118286588316f401c32287aac8262f5d03102d101ce782cd6968a552d1ac688125d475eca37f',0,'2024-02-17 15:19:52'),('dd1dbcf5be5f0684d5469fdeb7bdbdfc1ff9bd4d4bd385825eb748df8b89a1001f10cd172929fa2d','bc61472eddf2a37bbc67bc6fece0fa9a97a109cfadb9d6344b043059b72680a4745b3390fc48bfca',0,'2024-04-13 12:41:54'),('dd327e1228d6aee2e069c40ac724431bf87919eba61a17b0817fdd62d802db71aa5952d2d53842d3','6f12e382e6a3e9051b640686b27ff154806a0271feaebec0cf0e54c10d9b0508110c83ec89b01eda',0,'2024-02-27 16:09:30'),('dd34618c5beacea27a0d14d0358a60847985714946c2845db1af95af820cf9188d45d863937cd985','151c7391121f1d9bfeeb48bce0760ef7ada14cb2e190b23559399f136fa6aeeaff66010c7d668ff7',0,'2024-01-25 16:46:26'),('dd4c2798bcab3c63dd02f8e4b2313c7864ef19d401c3e16d78a5c9950ca99c7a439447da6814f675','1da3e8ff32bf82aaa71622c6405916759cf6c797ca307cc5675d6b1a3a8eff777d2e6d1947e930cd',0,'2024-03-30 17:20:32'),('dd51568b60ba91d58560f7235b0815b57ff8bcc1a690347e1ec61cb69fc1dcbac48fd8992a39e321','6511eef100070e7858dd725585c0ac774931dfaea2185d6c9159913eb5f45f400a448f24bf810ccb',0,'2024-01-28 10:15:40'),('dd515c5bd169517441aa3d96b10db29bd1bd02e16b69048ff1540c55f10917b88333673deed29975','b9ab5cf911295217c09b96287e8fe3f97f895fff118dd3e5370fddddcec1d12f9c8cca3aa7245001',0,'2024-05-08 21:54:40'),('dd67ce9626b7b395298d5c0069ff9c50ea852ed9dbc14be2a0d910aac229b9286c90d3368a6f6b7c','ea875aee7a6c173c8bb5a02243b039a2b34165c304851de7ca83682145e5dee5cba988d252148231',0,'2024-09-03 16:07:14'),('dd6cb8cb065d391be64d1e62744fdcd4df38c5d5ba3b5cdac48f7cb623e6f31290ebef243de8e9ed','0be73ed413d100e1083c07a87c5d1eddc75031ff07cb0be0fcb5d7efbda08cd4670a91905ff24dfc',0,'2024-06-23 07:27:40'),('dd7d75bc0954b0c53b064737ee4dbab9620b8ce1b876b63825ba25e1e21c9a06bd598c2a55193809','b93561c8f460ae0ea5e3918e50b1a42a0e34e281191061a30fef3231db2f14e0f74f76b34d547169',0,'2024-09-23 13:18:36'),('dd81374f1aca2d9f71099ed526540033f3057a414ca7c6a8fc9f782c90b08d3601aa551a50109cd7','ed64275cd48b30992f2dd2d6e7a46b2cfba415a766d2e2f4e502c2c18419f2c2248ff95ae40b7f68',0,'2024-07-27 15:04:44'),('dd9a997c7c82edfc0f44bb9d8944fffbfb56df3176cab2c40535edc63ba0d1d9ba414783d2586cdc','4b496667e0cbb2b33db7736f31ddc94d43a91a4133ec11c39d2e1c99159f6556a207de2e23640e66',0,'2024-09-22 11:55:38'),('ddc79aae6c3a90a26357f301c747269705a8592b16518547179de9a2b6df337895a4b96cf1eef4a4','86a2e2b6c509922de2794b0dcf9e61e0881ff32321e9c0b2ca28a3acbb4097ad7a3bb4dce66bbf48',0,'2024-07-24 20:40:54'),('ddd76c75ba8def148814aa60b9adb5852d6405b58e425b38814a21da4910c1fbc09ecd2481067fea','c5222f6c9e78409cce9fa677cad38394d0dde5613dd9551a5e34788b10bdab06c193d180b5afd5fb',0,'2024-06-07 13:35:19'),('ddde9d6c09608447f197371f35a816b02755522e23a25df18ae8264b75187398a677f78253b5e3a6','d9135775f85fb3890667bc6178b56596104019920d5daf6c92173ff502e775ee11c57e09892699c2',0,'2024-07-26 16:52:29'),('dde5119fd509fb436edef602e8ba2a733c1cdcc62e4425e66dbe27f9b7b1c8b4a789fe411edffb5a','a6969df39f61532e762467430ca1f249388086aa99f0f9114553731f1844cf08507351a356d3557a',0,'2024-03-29 20:10:56'),('dde70c1c3313e231e9c7c6b20d04c8f015cadc3b8cb5820d4b64a0aa4967efdf16a624d084a1c3a6','df497723bcd0e37e297bac9d75e6ab542a31c9cc5bdf966a9bbc73c0973d61c08c56eb4a1d2dd0e2',0,'2024-01-30 09:32:21'),('ddef27f13d772e2a50963ef3bc3a2b1a389a4fd9f55ad077f970beb1e02b6adcbb9d21aa1985a78b','455937fe05190fbee40cf2762ecc8efe5e88a023b7d524624f65beb2ae088617b4ee24b214fd865c',0,'2024-05-24 10:58:00'),('ddfe51409979d193c05cfb3f78279ffdde428e51c40cd9e0d3804dfea10578459f228e3d9deef97a','727f826ef1e7e41e99d9294daeab11255917e21b131ea3048db24d33e6503c463d69abc4c3e8f5d6',0,'2024-03-05 11:02:31'),('de0424352c96cab198adabc47ecaf2553681e1ab1936c3e122c299f9f75aa70a453fb090be2c10ad','5f2ba9c97c74d570568f6e5132051663b5fdc91e03ec7a37008637c6e023098e19112a75cc7dff32',0,'2024-07-05 17:39:02'),('de28a4626ef7e23fb482d36e00b6ab9ff3b6920a7eb0b7eada63d9d135aeb024432a51f86fbd6b00','e7b35ff62e25abedc929d953fde8537d5531dd66dacef0e291791cd57da173d55dc789101f7c4681',0,'2024-07-12 10:35:28'),('de312316a6b00dcd16ad9e0aa1b58e709efec14443f3b3fa05bcde0e5d11b0e550be9061836ead03','e7700bfbea4131956bcf140dd2de067354bac3a557e47535c898f4320206c3c2e532228897785700',0,'2024-08-04 21:57:25'),('de3a61fcbb4ca3ebe3a9d225a9d0e604c64c77888731fde8cb561c9e84e456c91dbc11cdb04e2a82','13b5792e35f56533258ee1bfda2a4fed55533b6c5307cbe8547f76d06a39b57c7a2e50d2f221734d',0,'2024-02-27 17:24:12'),('de6f4c38ecd13d05bb91c75efdcc19538fb0fe84e2983f5c51f89613beb122913aa070363ea9e599','31edc0a2745ba9b1c01a98c3d461141a8527afdf3a1bbc03ba59d0a99872088946eaa5f99b5d8c9c',0,'2024-02-25 11:50:06'),('de718caa19068164b54825fdaf0d98c73fe2b164520fd3074418aa9b5a3244ecaec4523ccd0e1593','5c73e78d01c36f0ecdd1daaca4866f7344ed4c13716212287fb8068d3a7dd1328b75a88d03ed5862',0,'2024-05-10 14:04:46'),('de764279aa0a445e38a6e4adac5171536d0ec18e0716d236e470e0008414c141f71c20b03974103c','10415f8aceb801cf0d7819d54428d3e0fd12ab884beefab483557ca9e867f25489a6775d0b32def4',0,'2024-09-26 19:49:40'),('de84d0efd4304aa1b9423a91d67b91cf7837f3e51b96148fd7207d571eea04371489fe2e13feca67','a649f3eea5b391e07b8cb7cb3a9baa3b75c0a1767e408c4c20171f1d05c7edf721d356dd56aecbd5',0,'2024-08-27 16:20:31'),('de86bd8a8d30f7d6f18ad2280872c2e9b1923846a16eef47c8fbae76df27bc56cb6c85a8017d23a5','dac11ec4750a2d0f2b3810debc76852bc4214a207dd1cf21a3ee7fc01cd176db191ca938e02dad44',0,'2024-03-12 01:26:03'),('de88d1e9d4a9a5b10ea72523562f30c2ec014e1e14a55492168fbd78867e9272d2a83d1ade785358','c6f095c85a5bd55ad08e0685025de039716142e3458300ebdd2dfc4545a6731f1c25e5575e6e20f3',0,'2024-06-02 11:12:32'),('dea1520138fb9abebe71981d2e0819bb836fb047253b7c2c9f011cf060ec471ca7d5ef44b80c119c','3111764f33a3cccb3fa83ba8a14b37a0afdb808c4f0e045fe725c8d9bfe5ad7de7e750c02f9d30dc',0,'2024-07-31 19:46:24'),('debf113d443c37bf4779814af7e5e336aa9655ffd7b013c20d0e2c761d67644bdea0a4644020eec1','016abb05fe466f113f3e6084c9233e88ac617600969a52c77d3e9059241f360473190bbda02b800d',0,'2024-05-22 21:46:49'),('debfd3721de37250ffb497fd831d77d311f668f8abb2543320c9dd6f6c89f1fc213feafcb561d6b3','c0c095b27a35e4dd7b1c9c228f7a4d8903c02920f023e71ac311bbda22f258beae9b82cded9ee2ca',0,'2024-09-27 19:13:40'),('dec89aef15332a2fcbda8073cd43643e9992e2231fcc5c54a060f5d94b4a6df9b6eec854357409b7','a6280600c541f14e0d767fc9755e0fd7b875f43ddc2932d1e7c674fb9cc9878ee4fd637dc1f0dbd2',0,'2024-02-13 18:09:54'),('ded16c90a7791287af8e3a988d496c203a5c07fc118056eea8728aaba2561c2d3af7a382e2611786','e13fc3dd01692ae8b58df5a77806d57475334aef008c3bd4c5194653c5c6fc07c02753cfdc9cdcb6',0,'2024-05-02 12:16:39'),('dedc820c7985cd2807a030c2f9fa0d246d03eeb4a42e8ecb55a7e2db21f99282f1ed49c8d4214ffc','483b448f305f86af4ee90108a237b614e1b41a6f5384252c6a3ed7ae5b2e0e6b1ddb569379a0ca91',0,'2024-07-25 15:00:00'),('def40c2cafb9ddd7d83645c793c74fb80fa1436eb22e52f1c2b92fb026bd905dbdb93fb35e404639','218eea59d745ff266daa3e46c99aa2f0badf169b7af9c5196f03abfc7d3f62f627c7bfab6e118931',0,'2024-02-22 15:14:18'),('defbb7d9a280bf318f437f2fd9a9f4b459e4a5b846a5924646db4e5bd01890fcefde091ac3f4d71c','6752660952cc3c85183d2d3fb54da071e07e407f7e1dcad8f0d3b52de40024094a480b05d1850f6e',0,'2024-07-08 11:26:19'),('df0023bab7b2c1f27097c4315fa8d8e9bcff4627592bc8d8cb2e2fc1116779a13d8e0b61951ea203','ddf6854afd446fcbc83fa186babe14b88f7dce7be9703591d492fa4c6e239e866799beec24c2c27f',0,'2024-01-25 14:48:17'),('df14cb162d88a4d9b92b4de0f4d3997165a5b4f5ba16138a0199f3d157dd1cfba26e45396f490fb9','c17e6c195424b97e6b7bf90fb9d6c0a88787d894a022acf9573b8fe6ed11eaecca77a396b17251a2',0,'2024-02-15 21:32:22'),('df3b5e32fc032e4d85a1f185dc1421e8b52c567f5d5ff32f6c6c0a5a377a8191ac670d93fcf201b3','59d50f0dcb7b9825ca5814d6cf405e26beed238dd299d5303890aa39ede5196d9d241b7ee1185681',0,'2024-02-24 14:41:03'),('df411a865af7369a718cbd919ee3e7a6214640b3088b22aacd1a5c26da3604e7115ef7d440acf3eb','d3da6e1a78945ea9936a935f20af11ecf0f47c7f7aaeec6e5e6ca4e08ee5766fa7f04761165f0ec4',0,'2024-09-05 22:31:33'),('df530b53d9781cd64f38e43da99bfdaf8e737913c7ef6a5b2d70890358c0e03832649794340a0fca','a2bfe3c615c343d904b0ea16e20b48983f7ede8eb9c6a37c872ffbc6f8054a7ae505456b1719e324',0,'2024-01-25 09:29:26'),('df6e9336d392beabcaeaa1e576db2c653bf69f44f38201805f060d62860ba680f014c1f40b572acb','fbaba29e31a69c8da5b9ea5ea4e492820d2df8f10e12eefcab62917bc5ddcc64cb9b33a077a8856f',0,'2024-01-25 08:38:28'),('df89bcd071311883e22749f804fad113560dfd38ed0b3be9d9b6d27101cb89024267edceae811e10','6e5c7777ab3e0046843132191cd9fad39c8a2c5c92e1141695c3bb92dbc112c6417d198b35cc9760',0,'2024-10-05 21:15:15'),('df9aca40546d95d89fac1534a2e7bc3072af8acd070628df949b81c87c881a191f99d7c67630a6ee','b595726378f93009c99daa4c558cee1053f132ab109e76c631d4a20eaa07540ad65cff1a4b37ae0e',0,'2024-01-25 00:54:29'),('dfa38ec36e9c4ae105327b34156675aeb23e9a99bda7b84fccc4aa878c18cf3968ed47a3b0d3ffb7','f922274a3ab779d388d4a390a8c60cc87a3544f555dd6f783131eaf7dd598dff66c072dd84d53601',0,'2024-06-14 17:03:02'),('dfb81cee0887a2f2099418952a16f975ea691c4f7ed8157628897d36096cffb0feb9667eb651e64f','1b17d3d3cae0aa255198ca4cc9c91fbf4ba08a7d9727bc79c0476cc4de08e9684715abb890263d46',0,'2024-02-14 12:02:03'),('dfc40f0fa8674fc54c95a1d8c9e06d745873ac2766578aabbdfb7df7fdc5d31d0d7a1fa9b149e41c','0f30d8b0c8579c1c3144f1ca844ca4817cc691993072071e95379e128e2560a8e35fa85da9504d0f',0,'2024-04-22 18:11:39'),('dfcac5b4ba4f18b9556fdda4c582927c12372297f37363495ed3bf088ac9e4d0cbb7318c6cfb21e5','5ab623670a864dfa79120c5417c6cf622f1bb973a579500965bdc645f8224afb9e8885a190d44248',0,'2024-01-26 07:57:03'),('dfd2aa6dd3c7f5b0cf1177bee2ea8e8286e70e4b93a6b2e7ea07559b732320760cf18412c542644c','ff48b02a49b8e3d2a1bfc59b4f5c81e18476b6d41fe10dcf56a7702fb307b2b7da1071b129d44f26',0,'2024-03-26 08:47:17'),('dfda7c913a6e07819021f8cf0b35cc0554a49edbed4004cc6a5a4853be037b9cf03bf55823509461','d33e55849c125adf8f548f051d9d65c39b0310275abbbc9a15734e68477c8991b2db75717f0e6d9c',0,'2024-08-25 16:00:27'),('dfe2c1080242b347a83c7739aa1cae39e27fcc6500f330dd1c58d391e224410091acf9030c28fd70','f3ab61766765be2030004502d9be4f31908e725abac50f0dbbaf2bb3b763e418637f2b516d491113',0,'2024-02-17 14:00:54'),('e005dcbbb8793ec72d98fa6592588832534c4399e12f339ecb5628e4464cb1ff0266b0a36dc2a83c','b6a0e1f573ccfe6c405050ccd374dd7abe6103739fc75864e342af0d6d22ad4125b60fe4cf3f8c0c',0,'2024-05-09 14:48:50'),('e007ec7831b60a09213402ea1b2750fc7e014667007da296ec92bbd947e88d46f96bdb1c9205e762','0e0a733ff52cab473efb5d7919c1877929ac5fdd6b64061223c970561c78663e56d3095a377c6bf2',0,'2024-01-26 11:39:38'),('e031a3835e0c4715e0a71b2d82215020abfc7fb30092c52ccc546c7bbe5df40508cd56cfc3b861c7','58f3dacebfa25e304717a16f42fb92c9fbb0bd6b7f95321ded78ffe009975f37412f04c4d4fcd6f3',0,'2024-03-30 18:05:21'),('e0355118fef9f770ad68415d0964ab0ab57ed65340540d7b4f33115f855272a1efa5f22310f9873a','fd1f970f249f0857ccdb8e1644f209310edd3ac20c7ed8d9215c66cb6fe62d70ddab9ca0f5deeb53',0,'2024-03-10 10:33:57'),('e04257dbc70e4a5fb7c618383f11febd764af2595aeef6f68a9c2a1dbea27b35b5ef471024d06bac','b5a3443aaca15acef28be1276670b081724a6e10fa82f0f2d63869206d1eba67889f9e9e712945bf',0,'2024-05-08 16:01:15'),('e054ae5cc083f2585c8a95e06c5104735f2600adb1f16858f63356b0f5182d26588ba1096f27f918','73293be87dfd6b3d692ec66bd53ecaeb9f1c046508dcac4cb49b296c74ed2c3da5eb55656a7e4755',0,'2024-06-23 01:00:57'),('e054c2865b064bb686c52232d8b2df608294bd2b4bd724556055b8233f4d31578473516e9bf8f865','e62e729add7b0bc5079a8ff2eef296ce658e0079ed7b9256bedf31fb39b473db8281926eded72a0c',0,'2024-04-22 18:13:30'),('e054ea3f9363cde4918b498bdac5bb4fad9070a31ffbafe03bb8cbb869aa6b34734e3464db147968','6ec9ed527342285d07bc586275e22f66140412e8961ace832c775f0f34e42479a10617cb43b9dce2',0,'2024-09-05 11:30:49'),('e068745b9edf8047696527c99cd6cc5157641fc4074f86ebcb5776290ab60f0797c9f2dab252f40b','078b522baa47325aa000460debf7e5194615210b0fef91a685799932d19369ef9cf6670e748ccfca',0,'2024-03-28 13:26:43'),('e06c2d1dd9dc854f2536bb4b4396f2fe1a189e34dd8b52f8343fc8dd20a145fcbebbbb10078daa31','40e55de8e8471cd4bade07c33486e7931a268aa44c5e0d5868f0405e0638006df9d77719a751a5f9',0,'2024-05-05 20:24:51'),('e073ca6f35d00989914bc4ffc5ea8b6eec2c9eadbb07df765d038f6dd985261443522381c16ab720','e5885c2fd2d2370eebc21c63c87781e9f9e923c366bbb9f50461ed2a6ea0e0ac4e6b0ed657f1743d',0,'2024-02-14 15:39:15'),('e07854847091ebb0d55f0dd21cce9c4586eedb5ca703b0fa3c7f9860c5b0f5d35b9bde13e1bfde56','b5730755f59370b4d051f0ad110122869df356a746538830f005d0e61406dd5d04a8b18285a441f8',0,'2024-02-21 18:52:07'),('e07b698717a3940d3f28d6c24191652d9284025cc70aa6fdbf9b92951b085c0c8d8c44512c578e9f','354decc94a4f359c56d2df24965387900938b9f93bc7c00925fe566094288bcc8646ead3bea69116',0,'2024-06-14 17:01:10'),('e08c90807140fc389b6b1c8c877b6623c191ac2f2fd2dcc85c86932fe88a60facca4e22b4acbd694','c29b02f0ce787850c2ced40d537bc13bf1149addb1c52059df950cfdc78c5e4be149a6bd5d29b62e',0,'2024-08-09 17:06:38'),('e09f3c551564fa3a2f07e159e2ae1adbdc09bb1ee3c1f4148ee9fefc0ee44914a048d154ef5ddf81','f71fbd97a5d1455f4bf74a086416077f776bc83b095117114f3542b2900548f3e21de967cf8fc08b',0,'2024-02-24 10:20:28'),('e0b9fd15c978440a522b6e47a58f025608a2110d9c29124f80554e25abbf7c7c01a48cc7f40799a3','7372479e999b2880b8d3b28f81067ccc097cc24de700bdb6282ab641179a476e0e146a88f15ec14d',0,'2024-02-13 15:32:47'),('e0ce7a2cd3c283c972a6d2490d8bd58bfed127d83dfcd891ae65b8aea26e6ba5a2e1c93a05a2cce5','6e9fb08c131d00a03317438d362e51fb1a2fc8fdc972f72eb8b56e1fdfed6167cf031325bafc6926',0,'2024-03-23 18:10:59'),('e0d02363d99b8a6dbf9feee5a72c4b2940964787c8708b699ca91abc70d2164a87af20cb65aab88b','29ff92aa943b26eb2b5952798e76e0769ffeb34f38f85d6fbc5bb1861e9a57dec464848acfb8fff9',0,'2024-09-17 14:46:21'),('e0d8fa59bac2ce9c966e63087d4a8a2b25469fdc00972ab495d0c2a886a14766a322c648b62aad83','1afca99f4f62c203131801b481ea8c11ba2932275d82e1c514b18b1239e7f272e1fc191413391c2f',0,'2024-01-26 11:44:58'),('e0dc7882983e080c8241a4cf2a3cecde3341cc99b0335474fdd4282b233ea63a81d47adb75d58f74','f452970dc30bd112e2c6e329fe72b5e84fc74bb3ebeeb373498cd6044970ee19cb0836644dda9190',0,'2024-02-08 09:41:41'),('e0f90e288bae77168cc13a9fd8050d89ad4f5fe8c4b8eac11d0cd5da9fd681af5ad91dfe25ac6365','d46f7ed4169eeefa25ae9fd8ddc8dfa1da19c4f9bd06b97239f158991925445701919cf863827611',0,'2024-08-16 17:05:21'),('e101296863b93566392bc4c5bd9407b03e10c258899a4e1f5ec2089b97cdc5acd540201243835849','60f92fd3bce4f8f37546ad5ad3e59d098458059c3f09b7a7cbb51ef984a48273d7df965b1bc86587',0,'2024-09-22 15:55:29'),('e117b732f72e197fce7326a9ee73011c6a0e9f026c0bd91a491f5c4f891a2d65607c1ef9d8ed90bb','6f3201a3844c4b7b8a890d32ee10bb196ed63e128f8127169b89170f68f4e71fd339e277690556ea',0,'2024-04-17 14:32:32'),('e130c08fba06238cebb8e5fd1a9081b83d0f3a2eb0cb55d9f3e5017875a46ee3b431d88de64edd60','a0a0c0aeebe6faa0b766a483c8f96ab76605b38030c7ce307948536f04575d2977f41756f75ee233',0,'2024-01-30 14:46:32'),('e1474a19a72ea30b6baa4e463437442c983a31cfe00af31d65090b47a4cfa270f51fa888b99ea7ae','8fbbae2a12bd57307ea2913a50f6b4e6dfb273a617e230bbe980d617141b6816697fa93d5448417e',0,'2024-01-29 16:25:50'),('e155cdf4c74cf73752b504b07a924eeb01cfa6a525f9735abd846cd4797eaf9069735174f7f7d807','26099021045eecc7c56cc8311129c1c1290b1a7c0d012d5008835f24dbdac888eae821f1185f7e4d',0,'2024-07-06 22:44:13'),('e15f6859f35b87c35111d24bda75fae559c6a132d4381505abea18073e2c4d7fc770dfa102ae35ca','02ddfe9742ddd18751f631ca8beb7c4c94c7a5d7d26691e3569dd397448ffa4ca13fef12d516fa67',0,'2024-08-20 01:06:52'),('e17b46fe820b0ad2cb97593490925513c6d19193a4bba965aa903884883300dc56e916b5084c4170','c1f347fe53e37446bfcf7d80ded12f893e125bdf78285520c99d1eccaf732b0d47d7b70eac2db904',0,'2024-10-04 12:41:38'),('e17fbd1a19c7bba579515c64dd0c1dae4b9e23a1461ebd94a035822c40c9a5c4ac193f0e259e9879','b5ad0ffbbfddd111f22a9b4fb6b5c8f2e808a225a5be63a38e0975434df52f02666be51e7d3caf3e',0,'2024-01-24 23:47:36'),('e19db1ae355e90434454c58c1e7a0d66ed4a528e3b0918f88dc2f82eb86f3b956c89f48593f55bec','6eff198c976762f63e9241a6122f332d3aeff573446a8dc1d170fcb47680f74987a9c196294deee4',0,'2024-03-31 12:34:12'),('e1a7d88e95b643def7e8bb64a37f0dadf0c2db11fb3cf8b62f3cba94c0d3d0c1090425c2ba62c257','9af095753e0252d4645bd1a4aedb3648bbc5d50eb91c9ce438f6bb25b41693efc7f6af8defaee189',0,'2024-07-16 12:53:17'),('e1ad7e56d0cdf0c53d5945caead06fac7618ed975d01f783b181ca5d51d64f59b5ea2b901be51382','3ce119f672b68b181bdcd7f4c0d0c7aa192a43d5683f9d13ef861c907970c5697857bddf1b8d9ea0',0,'2024-02-10 13:04:54'),('e1f3cc786df237523d4d9d891064fa118a390920d5d12f2878c120f823b4b2dbace47140a40ca8c7','82074dba924aace6a19a90b1fdf4522e30bd3dc2ff39a5a699d151934cad337283d9fa63012fefb6',0,'2024-01-29 06:42:18'),('e2099c0a05bedf715a617135340d1d76d5750615cfd423f3f9c8ff1bb9f0286cd593600be3e4d11d','3c13e92da5036964b12ba5519791c7aeeab6188b506bbf0a42a33ea38f1eabfe310e0988768a56cd',0,'2024-09-12 07:15:01'),('e214074c291a04801212156fc47a3cc41ff75403942b98095f078161cca05470c463ae158a614ee4','e9a31188056fa128427c64c06fbec179330bac85dc82fe51fc1a7467e39e10b25dbc897bbaa30906',0,'2024-06-03 15:40:57'),('e22e4114ce94ec33e9aedeb6d2fe37631ce825da9d2fff8de9abb322b680085dd49ecd50f2141024','1c5f9726f269887d5d46aede4695dd08b8008346a32fd7b12096d2ec2c04c95b3add96fa721dac4f',0,'2024-01-28 18:44:55'),('e2302c200ce605bfa2383489c00d18518446096b775157482a562129baadc82600de031369cb96ed','8d6590b7ce24072f2da0baba3e417cf011accbcd5005bc194561d75a10ee09894073291ba07352f6',0,'2024-04-03 12:01:44'),('e240ad29d08e9e8e58c28a8876bf9564c5460bd40ae6cdd0478e76fa5a545f131b2d2cb9337336ef','ccc15504219c59711761abc6ff6960c59efa7f07492dccdb9dfee6846700211445dcc605329bf8a4',0,'2024-09-14 16:30:33'),('e242c5aa24f60ce229ae705c549b92d0b6399e4de4f934fd047dd9d4e77211414c00a22e13e4147f','4719e865a47cac677d86cc955ce45e2a13a7fea675a786dedf587d988a7e8909eb6d286eb4658128',0,'2024-10-06 10:42:38'),('e247037f57884c06585519d275ee625bf0f1ce0c378f51eedd5f56864a673e67ced21efa9f0f90fa','0ae8a9445d7b2422247da975ee7f469f98e82122cc9685b7a242a681494b51f47960d37e0a4611c2',0,'2024-04-30 10:11:45'),('e29ba87f4d1715cdcd7589a42259109a4d69011426fade9fc2f6ef5cc6bb0f5854f9c262b2d38b8d','cc336b3ebb512e6cfce43a9ffb1bbb366ccb3f81f7d99e9e577fec88f6bbb2700e531e1feb495af7',0,'2024-07-20 20:41:10'),('e2a8aa33605dd79bf6aa26848456d93a0879cb78149fb22b7190946be6556cad6011d751847aba2d','8a77a8e5debfd488eacb08172fe842a849048df6ca7d2747dd014d536b8d987e3e458f7b9276b5ee',0,'2024-04-20 22:46:19'),('e2b3994fc436c4a7062edb68656e68c30071c210e1f0f7cd7018607eec364543cacfc154c7e726ec','588b86c9008a62d98f8c2ff506840aa5edf67c0b7322840a238ed1e421412fa9c21e185015982233',0,'2024-09-17 11:57:52'),('e2bf7bfea5fdf6ca6c46daf23ce066e8bd82ced97fc365c2803527fa7a8b11a27c7b484a082f00a5','b33472e044fabe90d7512947455e725568cc8727d01fe1f689992c71a75663b5189699e5e6ac7ffd',0,'2024-02-08 09:12:28'),('e2c37b97a7f28210d7d6346c8e272c4fa024092aa9cab2583e8f96446e07c8798fea497d193c840b','8b0108ad820fee153a30fb6801d4cdc2e44522d7c0feb1ac63ddf3861348b34081140e8788812f08',0,'2024-05-02 13:36:32'),('e2cda0ea181211528cfe8f77b7fa5b52a05de23d01a8940398e10c2802f6ffcc9e54d9c375e7099f','e4db07af5677e7872c02195051a7a12cfd9659ae072c5cc858a16ce13e306de9aa4b339f56bd9674',0,'2024-07-07 14:00:01'),('e2cf802c5afcc5075eab539c39a26ff5299196bc5e9e188510b121d0c96fd3bed98c6453ccf9d84f','0441f442a3c12610d176c55e59da17be1ab1c4e19772b2fc6a1dad6918d66df62c50485b2b74ec20',0,'2024-09-23 21:28:40'),('e2e0ce45ccfae0d957f7e159eaaaaba958881d3a3d7f1d292b17f1a3c5805848c52b5939231cc576','7b683dbaf434284793281511eb2fffe4f91b92347102c46e0dd069857da28b5fd513080c9868e508',0,'2024-06-10 11:37:41'),('e2fa6986d1efc6c673c400cf9f3551911e065fd6345254c39bd7c7c78fd5decf86489ffe5f087b3e','74b4ab8b102b77ae8d8c89a110a2fc1a1faef4967dbbf5a19b50263a49be98076ee861e66b2e6efc',0,'2024-09-17 16:10:16'),('e308f23949abcc0b1e3f4a54f10f70d4dc3ffdf157b05a1224609058a0c11b92ecec28c5f840188e','9af35a6ed99a7a9c6d5664e2cbb28ef88a10f00812e76fdd7918c395eb1ec14ed4db93e5e2d0d7ca',0,'2024-07-06 20:46:56'),('e311ab69d079ac98920edc0a01bd55aa0bcc586254a3c52ddf14fa3d4d816b9ecec4c1457ffbc3a1','0777b402a53aa3e6cd078af8044610fc7ca033408c2e40ab18d900d4e9eb5fa63495cd6291258f54',0,'2024-03-10 15:37:13'),('e31da62420a40ade6e98fea161198cb6ee160709d40f03b130cb80020be52209f1ec32cfb2b3319e','ef038454578deba285a598430a21f22f60918d67bad65f6e63ea80dcf60e0a405deaf5e397a1c47f',0,'2024-08-01 20:29:15'),('e343c91eb4c2c6bf5b170e50e81bccc5b0ef186c60fe536c77a356af02f3fdf17b1c2a829e3b00bc','f989e28b42e1340011401882bb101ffe7195e9d5a27b3ca3f324ed89e8cb499cd10fd2c41a1abf1e',0,'2024-01-28 10:12:48'),('e34d8ac1d8e2cde236e5972e2a640cf493f9fdafc753a85e4dd8e5a3cc1a615ee6d8fe416322f86f','40884ea7f2cf765fffcd0ef980b81d2d28f3feb99b318fccc3db14e4ed75c0a8416d5f8ac042b4aa',0,'2024-07-17 15:58:10'),('e3515b88705bac3cb732ee3b54f654cfb58e8526b368d04c9e5557a316176df8c600f896387a8c82','8f178cb96ce33a4a52d812b90982942953430e52703685a4fc46c53ec3ad00a4dad3044c363050db',0,'2024-06-19 13:58:02'),('e37e001009bc6b866b2889480f4053e24d2b201f2e100c6c18c427acfef5483b3c478f9c4e429f49','085c5e0dc7c97550c80cb0245dfb040ecb462f12a13f63517dca4da6f7c5beb121b3b7ca546384c8',0,'2024-04-28 22:07:02'),('e390cf212a7e62d32fe161e7f123824560ea63bb1995cfd97fdd76dd74b9cc8d20243678aecaf73e','307e43786db9a0b3d3e9f3f1a06e75070e22f3b097b360ecb192295b808e855ae02cf0e73d470e13',0,'2024-02-24 17:16:55'),('e3bc04105a83ab5b166ae29b242f99b33437cee3b2abf4b3209caefbfc185d7ded489d0961b6a8ec','93acf7848a84d14a6e3d1331ceebeede481f2bcee3a3585a939381bb2a038192cdc9f125a7ab0c7b',0,'2024-02-03 13:21:56'),('e3c7ea35d2cfd9ef9a7c68ce638993db1d218699a2ab2728161300dd088f5b5827aa56514a0293e8','0fd75d39bf3131b1d72332cf80e4601462680ee9221c9ab984c28c0cdedec84173d33c659ff6a27c',0,'2024-04-21 09:16:56'),('e3c81cc728c0fdbeb7c32cd64ea05c037b011a472a5dbdb816734a2b0e2b61f02c3ebfea520b7852','e59f66bb80e230221ccf716bb38d7aebc88b8a5815debd3611231f6a6074271333f4ccd272c0faea',0,'2024-02-23 13:15:41'),('e3cc7f1673d05676e22e5ec611d62894538c715b20aabfafed7df1d5a25baaa446e29282efd739e2','62f081373b37a995d1bc43991dcd61bf1094f90701d6bb1da72752a2ec5b53a4c2928eb135d329cc',0,'2024-06-03 18:03:46'),('e3e923a953cd31d0dba3b6ebb44ff2e1e68570103b052515249d7ce2d4373c0da45bed97c602a9ea','574a4f31a933e4e6bdfd1df790ad54fa23a1ff59ee419817f34aafde443bf0b3f9776d146b61f3e8',0,'2024-08-07 07:11:21'),('e3f004e7b732886ccf9127bae6f6ff8f394d1198234a397e4ab25a2c3c77eb677c54c154fb7cdbc4','20cec86628e6927b685f096cb6dd5ece6c719df2a7940a7bafbce9303dffef9b196411fccbc385b7',0,'2024-06-11 14:59:47'),('e3ffeb0e257dffeedd9fdc62905036c9f5e7c96a6c0a2796cc2c390cf4d45be63328eaaf159a97f8','79122ce6b48da0ce55e755a84cdb63d9a0c33709bb4154f30e0f35dba0421be5109767060abfd9a3',0,'2024-03-08 14:34:19'),('e40d3a23e7611cd3b4ead16474b04774467493e55629fa22e58741808032db773c0b7cac7f5300f7','202bb0135ae654d6ee28b2b21f6cd2da9bb1a128b2d6864c48127fc2a32ba962ea9ea6faef91e145',0,'2024-07-31 10:51:33'),('e412d211ccf603aeafbeb6f79f935a8257b32e66f1a3d1e80f22c679db5f2a64329b88dbe73ab433','5e730fee7e6c3d5f2aa41db182b62d85bd9f78fdafdbd4b24153122d9e187174a2bb82d359a4723a',0,'2024-05-13 14:13:04'),('e420398cb195ffaa5b9ad7d3291c74520a87f7973acd5179df97a15d5c5ac0dfdc5df0d16f60892c','f5ce5f3efc556c506126093974ec1ef5f17e26bb0badd6437f19b9e24b60ae235540fb519c156e5f',0,'2024-03-05 22:40:23'),('e42388a3fee3bedf5c9481825ee04b1eb5d3b52f717ffee85024fb52d290056e0c2df6ec6078157a','3cf1e9c1fa5e7acbc3cd5828c5e3cac0e349fefedaec139eea790d23b1c898f2a2165099c652886c',0,'2024-02-01 17:50:58'),('e434bc837f6c5f3ea44deb190ebda2e57118987626fa9f1dd633c11166e3658f7cc94586990f35e6','79665e3902882ab97e9f245a6c04f694d126f9b9c74a98b0edd412a6bb7cb3974305e059c339dd37',0,'2024-04-06 11:59:21'),('e45490e02b30a7addca564eda966c6be6003ccabb8268a81f2e2c0d0967c8bf048f43af6c40b63a9','e98d12192180245e00fbc0480a88b544cdacfcd978fbe825aa8efde35373e14317d2a6e42a6b320c',0,'2024-05-07 19:08:34'),('e45ce71dcad0593f19ed6f3d6226d36f25a15fb834ce8b7062e43f27d0f65b7517f0a955d2bfdb71','cb10c63938eb87656f45a5ccb4632ec1178e38769af6f772ef44aac20e162cb7af4ce1fe6b32a8fe',0,'2024-01-26 10:55:50'),('e45ea9822f9ad018541c3cbc7c187008fc3edc81acc473aa74920425fb460ae61943a4a041fdd8ed','94fcd2d9358e9e21315b0c99a74f7082004d6ae4dd29c2f0545f4ea815080413dd5fbcda5254d5b7',0,'2024-02-11 06:23:10'),('e46ad227e92920b3afa22a75dbd8ee21678877d3714568af104109d3269f456cd2c08e5f60c711bf','5ee7136d836e7bd1b4816924c8cc4d98f76cb18bea639d0a5cbe5cd1ba5ee4a4f36663628cf8138e',0,'2024-08-15 10:59:22'),('e473fd2355ebc91d7963091cb720a378de919e4c66bf6e2d742d6cf6714e127ab049a87296d085ac','9482126319049bedb9b244b94be3aa7cc4d3e72816ef322681cea8c3ab7750c1f6a2ace6118628c3',0,'2024-07-12 14:43:59'),('e474a9bb7b7beeb83cf7e28b1e359687c2f4de6fe0838347fc882befacfbe509817cf5e30b79a4b6','2564ad063aa9beba21407d28b2bf69bf3f3316cfd5aba5f4e5a012e223ceb9b096172e8b9588b577',0,'2024-06-07 20:49:22'),('e482725f912d5cb378fd69f218f19ae926411dea2c57d5f79e4c6bde4a797917e0584c7a1146ebc4','30509ff4a5bd143ee3876ef737c994d47efd655c4d5e73f7fdafc21627c42f987e06f1c2d7c2ffc4',0,'2024-01-26 17:58:37'),('e48a90c7efa200ee730afbe74d35a8e9905842e300edd7244152b136e523108289f7b35214523a52','5866de3577b8eb56ae43b6e10b891d4dfa7c3c2c91127c647f30b1e99d1870f7557ce1db59c77a18',0,'2024-09-13 13:18:52'),('e48f181cdd4fa8f7c26bb9f91c169913fc4ee5302d33df6e8ac1dbf5b1fff28e2b60d1becefb5867','cfe7d066e1435990b57dd8af8441c09bb9c0fa0629ac226efa4e9b6d8b6572d47579313164b6d7f2',0,'2024-07-27 22:26:20'),('e498de2b27fb26425bbb6bf1ad34bea88de61f5b2cb9077fdcbaf82ca9e9961443d6e4d7f14b600b','a591a92dafa653c305b443be80e6b43d599a8c19b7e64d4de759f1db786fe71660e49350a99e54f7',0,'2024-09-19 14:04:55'),('e4994191e788ebce17294931e1208cf8f2e12b304f68f503538490f0ddc1ef866ef90c82a55096da','2a57fa3c5ec3c26e870396d8f088cbbe8bd289c242407019bfe27fe13eadc5fe345f8e6db648387d',0,'2024-10-02 15:28:20'),('e4b7f12538de310be2ea7427c2ba0b87c214b72f794ff8a051378589af03b1bf57230762d16e8219','be8dfd86dfd9fdba34ee54f5c2320b472b6ece8e8ca7656b08c2c40e718f4944b29211ffdf688cef',0,'2024-09-30 16:25:41'),('e4c0fbb90a8223efb256cc59cbe4868c9c8b5aa2181f0a0e187f6419e7ca10c69b8a96f26c8e8401','c3e8879a7d6dc3588eec51f6f63935cdefa3ee95562d97e2f92f54cb2742e52905f063018eae6da6',0,'2024-01-25 13:19:33'),('e4c74cb6fbb735f1beaa299a0d5d197cfba8a7fabfdc0023d0b1522148da71571672897742f997ea','e94e29eaedc1697c80b7ddd9afa60eb9cac4cb7aeb79f9e608ccc147cfa2e4245b6d84fb29606fb6',0,'2024-06-20 10:20:30'),('e4d723c0512257f2ca4b77511a9ba003f85b3880ba92b3a69d07c0123491f36ba6a887cbf00d4b2a','8a638f5e324c7650e688bac017f845ae9bdeb85b424552950bee46a411e729172be2f4fa02262fbf',0,'2024-02-03 17:33:32'),('e4d8fb269d2b2bbc2108e4d05a92bcaa38cf1a30279db2c39a623a59d43a30a01619f71a967cd2c3','cbcf9876168dae68e50fb9b6b2e9e9e8b85304de99519ba5413b3248d86e4cb179e7d4d51f5e09b7',0,'2024-08-19 20:34:32'),('e51af74fc680803ed9485c02dc0c75b920b5bb855df5fed7154146c23d7433f371abacf95f53b6e4','72ec5d1815dc628ba8988e5218b0dd355ac29108275cb17407ba1f4352f41d726052a4cffd9c56ff',0,'2024-04-03 20:16:04'),('e527940c191ade650bc2de87c5e17ffa00142579fa5fd98f02444c309dfa5814275ff9f3f783008f','2d765f0fc010833f04dee403d343d54839274dc6a22c5a21d8da5a576097f5a81fca8639260534b4',0,'2024-10-07 19:01:54'),('e53303483ef14309deb36f2091e2ddbac026ad34381de309b5195b14c88097dee0ed6734bc0c4867','5f763b47cab7017ad49d8ff93088afb8363f3a2a522821b708e858b4446a07d52cc0445689e97efe',0,'2024-01-28 17:14:03'),('e534788de316adabc0c7cbc432438b82d8174d55d70ba02793de43167dbede1795cd93e35bebe11d','b44083bf0c31c3b67447981a596ae4ed5dc5c88c8f8781e364d408236c5e18c9b5f1c4850494dfb8',0,'2024-06-09 16:09:21'),('e5398d449efc1b6684bf2062946da52733f44644f51167d06420803373818d42d72e9c747c850550','21d48798f5ead58401af81e896e0d146e1df644bc74e75a15f7c4252bfad243a3fbff9a55ace2dd3',0,'2024-04-11 22:54:30'),('e553de62563f1540b4881677df1642dbb50296b37fd7d85a5cfa455c73f00fc8961a4c771c7f2bf1','86c87e21aea4a476697a09f0893bf5fe42ff22c644cb7e66a173c5a9ee245db07a7dc704da11cc6b',0,'2024-03-06 19:24:02'),('e581384fca67ee8e0428cad76cd3563152455b465c82dd4117f33f1b6022a311865a3b2f34a107a0','5784a6e207c2fbf260b4d9ed527399826fc1abdfbcb4b39c939a482fc6accc23843c32de878146d8',0,'2024-09-12 21:42:05'),('e590f6646f9f82a79c983083e175a08532ee5f4b71c39425139c09226a8fd0e68caee0561e5fcc5a','cf05d5d1875649ca95375e669eb0a98ab36d2fcf0f448ae4e506603e3dc0699686f95cb18114fe6c',0,'2024-10-01 15:04:19'),('e5967726a644e23f95d7860d07c37d95847c2188b55706dbe9234e74a349f7996b9f42633835f3b8','1f5a9f707e56f5145503a1e0ac66c24e34e93b53f42f50da28dee58ae336d3d2abf02a22c9367d68',0,'2024-10-01 22:11:11'),('e5adc0303ab487d4ad4076aa4fdb95a31550692ce79f16aab978385b94b904ddabcac9516dc6bb79','87179412729b331b5b865810db17a70ffbc57bc365743cc0ed67f92636021564582920f95e7afc37',0,'2024-01-26 07:38:06'),('e5b0141afff836b172917d8a0122f523806c3cd72996e773c1580e0ddd309294ab4edf269c5a90dc','4e532a43c98b4a88bea3a2364f37ef114c5b7f89355f24aeb7cf7bce96fad063401efd2fa2a1124d',0,'2024-09-07 18:32:15'),('e5bc624d504557c34849dd21dcfec2877af7ee7d3c3b9df46a4c9a3d21a8673c74706188b1653d2b','ba1943b1403ff20f00a4968608ba57b5525716ac707468dbf6685357be8fbb37b9bb53f474870209',0,'2024-09-23 10:38:16'),('e5c3d4effbb81815a55c913ec9e88cb67dd1225a64547566f0488ef5d3611e66e23ee7ff502cc553','62c2ffb478e2b0c7b6595674f79a62a7a25cf756014f568e5b1c3789e522471d08a2c7ca1425dda4',0,'2024-01-27 09:41:43'),('e5df7852f3172b8baacc2a928f27e5f8cbdf22dfce2c7730fb41076627432979ef9479ce98810d81','27c47035b1c61ab78290597877c84697e4e3befcf3a989f66e3c83de9b5a629c2c98fb145d3d8a8b',0,'2024-09-07 10:43:15'),('e5e9af06ff50af9c5ecad3b40d6c47f8ef7a66b448d51ba02dc69ac0ad334595893e67e907883c7e','eefce49e44b88c6c30c2d054ea21a0910918e68902319988b2803ed60c2430913e65bb72028ccc87',0,'2024-09-10 08:46:23'),('e5ecea2f62e189992b78e970bd5d2dd2f822be53ca0eb2e92c5a42bdc6db6bc672bc4ee1819937b6','9af7a677965502d30225fd92176f79e162d116524e14d05b9a88aeffda809dcb70b58e2e92972ced',0,'2024-07-02 11:07:05'),('e5f31f44608c0c712bdf364881d1a11c753ef24aa8b04f29725985cedf1e9d2134d79b31ea53fbe3','1dfa70aaaca5877c31d0d0a77504f3b99ec6d44a0d4bc78d5953ae8d3475468fcf2098bbd1e99726',0,'2024-04-22 13:01:59'),('e6017b1701e85be3d880ba08b2725bf0ebe7567ae44c2a6cfe2d691b41489a313ba6d344485b8a60','757d7e91901dc44aa7558478e4fa2409339506c41bc6342116a4926d5893480ee0aa7e7d98d27553',0,'2024-09-27 08:12:45'),('e6039b19e83c7be6acc9a72ffb75ede4f8109964cdd476bf9ee3af42527b0facc986df6ad6239232','13b7c5681324c1e5a54691b9e2976121b91a9caf11b6a7a9c5479e622571427506f20d4eb9c6fa49',0,'2024-02-02 20:12:46'),('e619cfb37e5fe41ac2da43f83c40cbb7c62204f06c8f04de2e9a96bfa72fc8bdda94b56fe48258ac','d190f210c65cf6e0b02534bcf8432aeea1eed9479a4d048cbc72714a398135aa0c2a225a39b32343',0,'2024-04-22 12:05:26'),('e61c905e0c71bf90dd01d6d084b50c37edca1a0181119c01d58b58967c44be227744c4c37d511df0','e7fff49e67ebae10694bc02a37bc76d85a9cf0bf21efa758a5581c16bb89b771383a8d60d714d63c',0,'2024-05-10 14:25:27'),('e6206c2eb2a56bcbcbe4e4218ef70943ae9bc4a67cda1f1dbc7d64d7fc0024f537603b0b86479275','024a9a0f61631d103b839c49ea8234674559fdc83122dfda827ea0a91778cded83ecdade6d28ace8',0,'2024-08-05 11:10:49'),('e632c63ed40d5e5421023d085cbccbaea7acb556e5434f5f20ce2dcac4012c9ddfa775baac34ee61','b98c78e3680f598a6532ea2386033eebd5bf8f64f913f95db8a16525422f0be37ddbedf49268e750',0,'2024-03-11 20:18:22'),('e637a5b4f99d99ee5c205eb8c69c337df529387cd4e8ce01994acb131f93eaad504c28762ffa1fb7','b089b1c65b4e1e253ace7d01e658f5b0f1c20c796ec37a058869747cff20d0cfc797df1b1a5e93d4',0,'2024-05-26 08:52:45'),('e64d14dfd2195092acdf2e12a366257d6ac412950e14c7252290fe4f07d5e0f7cfc1a4a243d4c918','bfc7d4bc33af167fd8b7d3a385b1566bf8f03a73ac6b895d937ce7df72ee6647969aaa9e4570047e',0,'2024-09-22 13:16:36'),('e659a38824a89de77d11437e6fcf03ae39affe9f98c4e9c45fbad8716a53ebac6d8a4bbdc90c52f6','da03dc7eaa84e54358f740be7634f353b2e0a54ed7b0359d906037c79ef5b7495819cfeda6cb4a34',0,'2024-08-13 20:39:31'),('e668c80e70ff8407653969da2aff830f2d97c1297f5758a1d5670b0704a167851f141c3a957b2bd7','37f3c0922c5018020db453daf36b4beb4b627429c7049b04e026f49aea4ea441942d02edd0131d30',0,'2024-06-02 17:17:46'),('e6755ca94ef15b190fb1a3c1095dbb0bdb735fe613fb0de357762f9dafc646bc1a855049e8437981','b0edf3dbc7bed1c8b437544f3fe8ea62b65627f997dd659ada4dcc96d14a85051ab93547b98ad3e7',0,'2024-06-27 22:37:21'),('e67da11731643e3c5a6469fe033aab06824f76802d53bbde41fb1a582a1c208e7db08e7a93fed65d','1d507530d1118fdfe824c49f89308edee2dd15b8c981ccc21cdf4435e9d5703dc35c7fe7dee1895b',0,'2024-08-04 17:21:25'),('e68a9aa9a26ab60460166c1860be7bdee497e307ccaed9ff38bda00b06990dc08b2a08126de71cd1','cef02bd958179365c18bc8358f06eed8737485a3ef64461f9c4476a02ce61846d1b6e233d497c6eb',0,'2024-08-08 16:02:42'),('e69ca33263786bec76bbbfac7b2ef77c60166de6393ef0394c40fd1c0c48bba8f9a3732983c3dbcd','701c7cc12c0bddd7e28a1ca94acf562770ec686bfe51f98e1a0402fe9f1464d00d981be6d54fbeb3',0,'2024-01-29 19:44:25'),('e6a087646bd0471629c04c0dea2a429a0a71eb3f97d628dc3dc0f46f7c7bde88d02aa57e724ce0e3','c22e637339447cdd7a8d0e0c8236cbe895ce86b655ead1be3ca95b991c6913e1008f65dfcb2f8440',0,'2024-08-08 22:24:36'),('e6ade1d5b14fef34284f8a98e0c1a85725e6b7c03d03f5b4627f90d58af9c39765aca8558416531c','c02313b4843d89fe82a28c1d9e94bf6fbd7007df1727135a586560a74dd694b89250e13b63ff8d47',0,'2024-06-28 11:33:31'),('e6b282e0dbfdd6fc6e3da30525dd07d0924705af0aa1d08e59fb34e48aa0af4cebdbd1ac604bbc86','4e64b836fd117c445bc31eeca79ef3b99b1c289785275186da2a15e76c06b47393dfaf746a57a066',0,'2024-05-14 08:18:17'),('e6ba2f83c04d93d48e91fd0fc16164c9db49fb8706da9593b7a1cbb3116cacf6fa09a74589446fb6','60ec1ff4aaa6b07b2826d44ff7013ba50102a009c13f81c05a9138c33646251aa6a22ea57a1d61d7',0,'2024-05-13 17:09:40'),('e6bf184bbdb5c27c261cf55894e3d9f831113eda8512cdbc31d29d19e0eb2f374f38368442f8cd24','6d8ac5445ac2fe24e3d7a55af5c0f9dfd88b6793f38e6a4436a5c4f7af7b81a5f4a2d6f4993d84d4',0,'2024-05-08 19:54:05'),('e6c54a6ef724b4acb9d36754941b968d44d6d7952d5c6456b545aa0b74cd7d13541a73d20f577200','97b3207f704620fb8b2da3a44ec9e70e09f235982f4b4e3901b2e00754e434743e3e97d0d936b811',0,'2024-10-06 04:37:44'),('e6d649fd7cf07724c1fc72b79e89e1c56eb293d4dd4dcd6b64f39b25ed57f1e3996831734b3c6473','1d2de37d4ebbf5993bb8909b1a2234583d727f1a6a21fa38d4a9d7e4d1f4ed9e6ab1e8e4417900ca',0,'2024-07-17 19:08:01'),('e70bb8cf22d41961deafa3878cbc814ad51929614a9a60abfe3ae271a0275f3c0fef7ab25a83f4f4','63279d7c78746afd63c3dea785ba7cfb62e18b8a557eb123faa448053449e89cfe5ca4dc803d4784',0,'2024-02-23 19:57:06'),('e733c31b94f0479b6ab797e34bfac95e96dc520abfa5851481f4b5c7fe3c33634249b9e6844a1c15','7c5a47492139888a6109dedbb8efe27790188947d8303b675548e8dc3279f80cd03dc7c0ee499c9a',0,'2024-08-01 06:39:00'),('e7504f3c43f39f43aa2597e982ba33e0c36f206097bfcfa46bd273d9f9c62b14541a6cb5d8f9d233','f210b81bc4e02181515e7ac170bc7debbc10094d983bbb373d5679c5f611e4a41941e8986f18e219',0,'2024-03-11 14:52:11'),('e76bcde0dff8f59d6dece1c60a3cb3f1b929ebbef9d3bc657cfe07c3def424941cb66e9214c8da71','7d2fbaedb657e2cae622a35f66fbb6afc01012e752f529b3504423722d4ca6ee7dbe4369279de35c',0,'2024-01-25 14:10:53'),('e76f171a17ab5caa5261450ba5aae095cf5e4ea3f79c1891a7130bdbe0e2028e74c3833c673ea4fc','b62a0a1ef704884004b09e6598a1355c22d1b4f4389aa398639c4549ef9819b8fb22d326d318acbe',0,'2024-07-03 21:20:47'),('e7aa43c84453b8d70654d98f17cc0d8291856fbbfb4e8d6d8331afb2a5debb99ef479a2e9c754624','a5feafe02d2a96c42ad4ce5bc4684aa1118453eb4dabac5c921d792e1b326889e5f43f0ea8cd4a50',0,'2024-06-26 21:09:20'),('e7cc4ea96b7eb78e5085de52c3c5d8271e8f6e6003a9d8a7deab289a05cc309392f7152051d69576','cb2124340cfc2d496897f46f9096a1d25cef2ddd59d0978bd6cacf7de24ad696067b8effe59404a9',0,'2024-06-16 17:09:31'),('e8150b696fa1b9a71ac1fe3394b85e4b50ec57d4fef19b54f7ac6f1b8290021c94859f44116d66e1','163255b25614dfa0ad8fff7a84cb3f5bbaf7a81693016b6e019e642f0a75bfe4e5024c37a5cf8e2d',0,'2024-01-26 10:48:20'),('e8470444ea3e1bd859c637b1e049ab5005907daff284f558815074d35c5787671c43073788a20ec8','b4de08959656db5c78ca2e0a6fa9059e15240280e12f9659eb19ba9cb0868c78897cf7686538c2f0',0,'2024-09-17 23:06:56'),('e84940565acdd3da7a65a8f59547c91b579f94099acd61b6e97701079e6112207337dd51be663c4f','bf01ab8812561f9d299a97384acf59b88a5a0858f7fc8d5e7ce302cdb4d4dfabf95b51decebaad1f',0,'2024-04-12 15:31:26'),('e84daa21b019f116fa629084cc23b3e2196b2a2124f10d2b573a5d52ca838ac1b8783d0e48693f93','88d67c75e97251af40d266d9cca48f51102cee27be00309e0bc47196976009aaf9a7772956299650',0,'2024-04-22 16:46:18'),('e85961bae3532cf6c1b3dcb125a1262976d25081072024251be6dd6ab7ebb256c73feb49c4d95485','de2c46c6cb9356487195348301014c795ea61ce697575c9829b1f79b00731edaa9b1597f048f34b7',0,'2024-08-17 14:46:33'),('e863448fe19d21bf3c60c1b88f7327cdb77e98d02b71e316582e8c3e340af985724ef58f60395208','be0ca9376c20aae34d1bdfed51d846314ad8208838fa00bb7bd0ab08e154bbf373eefa23c3260b53',0,'2024-05-14 17:07:57'),('e884e207b554c74787df40672d7c65e161a1afbef072a2d53996ddc1690d9016157e7ef1d6e01d99','70c6966eb49af86affd892d55d1416541603bf1597d2e4b031fe654689d01325d9d788bd7498122e',0,'2024-01-27 10:05:44'),('e8852da9e7cdb8496bd2055c0a83b3f5dab4d932ac4ee5eaa89ccd8b697d1e7df6c81a053c609846','7fd727ced0aa3b1cecea475503fba34b585561c036733f97ff35aa142ac65b4d70794fbad95209e3',0,'2024-01-27 17:58:01'),('e886550b2a15790572a7c1da6f81e09b7046594e3efc0c35dc60dfdbf6b5a56b58bcd32b6a153b2d','7abe60b8769a19aa7f455a1f01ee95018fe27f9bc81662a16c3607b0438853e265e84cc26b7c6dd5',0,'2024-07-24 19:18:29'),('e896e7c19f4a3ffa2369298227e90546e4f3818c0a05cff468005a62a1c97bcde8caa0ce20aa3549','0f18d1278f2cf590b606b01695051f59a2c1fe511be8c9e04a5fa436fa316199f8fe27ea387a34f7',0,'2024-08-28 16:30:46'),('e89ec27b4bb50220aba3119d1006be10e2521d11effd3b485d8c6b411b0d32973a4bfc7357418f67','54283a41cc422d2aae99841ddc9e3b812005fe3576245aff0b0f87937f183149a938dc931b9d6a67',0,'2024-10-02 08:40:44'),('e8a76ec39daf862f1c05cbc6fa8a0935fb1e5d8c94b15db66957908e6fe48c145e5feb3be5454220','1e178bb2a0365fdf765e999dfbe906b15a042609a73278f71d570f9b38a569d44a8c305a9aef1cd3',0,'2024-06-05 22:09:35'),('e8c864a3c42cea36feb244dd6fa7dd90db49008a4b85923633611df40de4a8bee6a8755e1d99f532','7380ca1519c6b218b43a5826aa7318c3d80227520cd5bf32c7c68976ea27ce825364238e25ac957c',0,'2024-07-22 01:46:54'),('e8e163d33f836c745156acd4f0e0803b5badb019f6fe46d1af576a8daa308e5b4f279a67d8327d34','68c389e5752a277e1c10255e8126d503f6c898f47532f9eb4f4d1660723875331bdb5a446c73777f',0,'2024-02-20 20:20:56'),('e91183178dbe380aeb46bcc856ce7449b3b46713a7c6e015e0e5b4cbcf3f13dfe075f7396434a30e','d1c3928f7d5c6948b85d527794c2781390af5c594352ba2647ec94308e102ac9385eefcb4cceacb2',0,'2024-04-13 17:52:37'),('e94dfbacaa803661b4abdf9ad0dac7aba9955731d5737b67387f77b0b3f286d6ab043b35b3713ed7','a53110f606d6d272cd77d24eaac0e622db224058c2bda680f0d5849b08527065707808062f6de995',0,'2024-01-25 12:59:27'),('e981eef0778e522043fa483e77e98ec03bd24ed4a32912c5726f10f1747444b60a95cfcaf7a02ac3','99a37d09fd5950ff7daae240a6bad4dee9650bd2b8658d65dc2aab8d89e6074bd5e20d0392645027',0,'2024-05-31 11:29:53'),('e988f7dce016cc4c4d320af0b2c3236691345d3fef5b63f4b9f38136604c5ac6f47e920f02c05780','7dbb703d121f7bb4f7e3009a137a5c3e23fa9738d93945ca51623bc49cfcef26bb7f1158a87a0e2b',0,'2024-07-02 23:14:16'),('e991776e33a229989ee3cac32bba2f8cc503d23b9a126f36f77b834e2f494804e4bd5ea3b2e23408','ec0d554954e2889ae93526df23b328860a2cc86e37ed70a71b524050e3bd31e8da0f67fed2900b21',0,'2024-03-17 11:26:42'),('e9a3542bb84bf8eb479dcb383162fce4b40423b487a1b844a2f698b151b88e3b1e74977ed0d9e3e6','edba5b691a32a08579bb8ca220b0b5e227cd1883335c7b8f9443a2be50b9ef6374109b7a47d01b2f',0,'2024-01-25 14:47:31'),('e9b6ba9942af4a29f54d19c6c373d1a58cff5962c7a9a8f717820a0756d1c0e3b4b22e1edc4526da','f3c0a2e4473745ab700f5ad873428c1797de2aa95dc03ce641d3f1d5d0582c7df82dcac1207578a9',0,'2024-07-04 15:24:44'),('e9d1885f0f57c855c8a179cb5708edfb294016a88746f2525c7ddc12464bc54ed884c14da8d340ef','2cb13b72a89f1f8af743c2f3e81c544ae294e575174a6450561c3bdec2363afeafacf0d50c2b07ec',0,'2024-08-18 15:04:52'),('e9db64c51d66119fbd6588a5f0ab4c7c08f40773a6586e24ba2f7a0dd50a5734d973e96d904d196d','2101be57577ed26cd02fc3b6edfc07b89e584dc210c4884c6ebda3a968d969058172b16c15eb1503',0,'2024-09-17 16:03:01'),('e9eb5a0c28688949b2537ac695a89424650ca44918cbcaf7ce587f16cc787f5a12deaf09f4575d31','1221bbf9fc7be372b394b0faeb5b31e56cba9530dfbaa429a40be96cf388322c61b2d8f147b2e56a',0,'2024-08-03 13:50:09'),('e9f90ef06088031d5e51b93451dfdf009c0e6700a9da5cde433fc3501133248c9c50f739390df008','4ed4c5e64a98f1cc30beace33655589dafb36a466a5ac00fa12ca2509ec32e0f28810329eba8e6da',0,'2024-04-04 11:12:12'),('ea1d32cd9028c2d0b8fad4b520b67a18ef73ca0c00313b68d733c7bec754e629822b01d956992364','1b7f7630e7f12e5283001c653739d0b0330901abf71604adbadc4b079e78869ee69556b3f374a014',0,'2024-08-15 20:12:31'),('ea209d68a26336366688aa257593a7e8ee311b4559a2c09435a24ac43b0e55cf4d42f48bf60cdccb','793437163c3668322c67191f17390577541b243a424a4a09b01bc29bc7a4456ae659e42dd05ac56b',0,'2024-06-07 18:25:21'),('ea2bce42a239dc0adf7035116b583764e672ee40ccc367c8e86f610bdb095dc9c6e46c5bf734d360','2939e19662049fe6e4d88a1059136c7da6e73faeb727e72b84f9f5505515c62cfca8b708a316faeb',0,'2024-01-28 16:00:30'),('ea2d6856bc1fce3f5f8b406edceb5d912779a5f5a565e48b0ff4621dad969d24a6c0ce3c0cab2bfb','5443b7b5e80d10043978b856eadead87aff2f175ce101638dc78d339acee1be40e6ee8146e193dc7',0,'2024-02-22 16:21:47'),('ea357ede345a26a9054c8342cf307e7dbc8aa66e380603f63db95ee673593fa11af9d27f2e533bfa','3140aae83a9e7b54643049d8e42507672f301eea31435ee23eb6fccbec4f9e3246c3959a5d408d49',0,'2024-09-24 16:48:35'),('ea365d75e7e9c62079a60f0e713689d3258a28b4f4c014d7c5686447c0b235588b2a6d59fd91fd5b','9823f94ff854d0e3cbc47fb320df6329529e62038316464b0ef64af1712faacbe98126a102541291',0,'2024-10-06 14:08:57'),('ea382ddbe939cdf199741fb28e3a26560bd6e3d6d428129f911ba02e27e08b98528e51e3904a8497','78327df405645d160569aa3b3f097228c718d06e8a316ec49912b4be05c9638cec0064a211f35fef',0,'2024-09-18 15:24:36'),('ea3c305a08ff1da76ca98b2ac8ccdacfc64cc7c0e17fa52ec526aa0d96eb186523282d309e0704a0','de82083c9ca5284d6e4b27a7168056a01365be816b707adc88e96400d499658beec04551160c7a86',0,'2024-08-28 11:11:03'),('ea63fb0ef13bc5d68814f719257246c64535056566d8faf3f977c099f217c4e7578bde3c7f751182','d03564eafb37cfbc0f8a9ec2abf6c160086dc99ce645f0f677f3495ed104b9b651e2a2d76bb4cefd',0,'2024-09-20 17:53:46'),('ea6c3f7c159aeacea24fb2eec088d6b94a40d48c6eaac52a0e3d7c9299f9f327121233ed3162aa70','3e0110260a5177a01ad5326b4e6d78eafda545e6569b11512261e778e5b4113fd3971a95e14a9778',0,'2024-04-18 10:35:46'),('ea71ab151bdb3ef6278d5222440ce64517168b22a0654e208a18456c7abba8efa943b4131c568c19','1dfbaa9f77c59ebfad63cbcd221c63d7cad8cc17a36b632c9236f34fc86fa0d8e5b40f40edfdffaf',0,'2024-06-12 14:08:06'),('ea786483fb0134e10199c5e3741ca6be4e0d03625c075b10e96e33a8bbacb87dd4a7df0237e2a718','71a6f3c8b0c4142a92e4cf40a83483ce9a2a69b4768ef0b2bb74c54cc6d2f8aebac1816a17f0e788',0,'2024-01-25 12:27:32'),('ea7b31d5cf40ad2e5240f5b637783b8f9dd75d01450b76e9f6d4e93a0c7117a2d7266e926f994169','5fceef47ccd5f7f25cb6a205ec77c1c161a859d8390f2f94769391785510b392685292e316879ada',0,'2024-07-03 23:04:48'),('ea90617fcbd8c1c0cfcde5d00f76afc83c42b08983fd838525c9628716bb32654fa288c48e2f76a3','63ccdd3d1dc266bd945f7aee286d0a5411cd3ccd763f551ec0cd9bc4d25065fd9b2dc4cb6b0e0c66',0,'2024-03-25 00:29:51'),('ea92e5fe7976a793f583051eae3b59af76e56289cfbd833c763d58444154a761192ba97df576cf83','d6db92239bb5975dafc4b8c8c7c81c75a96dae0778cf55bed14a19f133e8452295cbe31cdbac9471',0,'2024-02-18 16:02:43'),('ea9a21f30eabdaba10e855fa5a685d45871c7688ab37939599ea35b108582dbbfad3360de0753990','98517bf300a65c015fe0e57783b98bbd01a93b4153a6ec1767b80a7b856f128a892ba072b7dc041d',0,'2024-01-26 06:58:25'),('ea9f39c690bacd9f212643f3ae458f56b1b9d96d411290a2cc7ec6c5b7d10a8241407a05b83caf23','0a6dcb5c267c020a4f1c8ead9f4e6f80d3b4f11e8145874c17a2717e9fb9c9566195cab59af1f7f9',0,'2024-05-23 18:36:43'),('eab725dfa4db1a199afa949e6a264bf2e1fcd678278a13114f6dfe1ac42a936c7799158f8a66aa92','0a6f3881fe687acc219c1a531a730b2b7d6c7e50579e6ecd473a141fbf42e612ad06819762aa6bfd',0,'2024-03-06 07:41:55'),('eabb16e171f6902a49031d10314439b631ceb51dc1cd952a47841cf7bdaf210b3940d014aea1dcf3','934075a238a8680eee70ae2cdc88e8f1c8e32a28c9d6e6cf1a2d440e6ef436be60fd2bf78c7124ae',0,'2024-09-02 21:51:40'),('eb0a8e6cad5cc14bb8d3dd392fb1b7381a67746522f9b82267a5399811d34b735fecd236a43faba0','39d2c78aca1b0db44b2fff81362b8df43983cc865402a902a7b690c96e2353ceaca0db334f0efa0c',0,'2024-03-05 14:41:34'),('eb0d2b5f7ce368a74e5c7ecff92afff95a338bcdc96022cb86a06f5dac3a0c8e29d76abd9338e80c','b68b33900214cc46f8862dc6efe11700431929f75943197e2a29c404bf018846625779f95e691cac',0,'2024-06-23 17:03:27'),('eb19621ea7aac4a08b3ba61c23737ad38f3c8bfec64cde5f968d755d1bfa89183f5566b70cdb1eeb','6864fef91b53ca6970d987de69107ff425adf5b817dbb2d239077a0689b2c215cea7a42afb6a3ad4',0,'2024-02-15 19:50:20'),('eb3e818fc0a286f1a42acc03f66158a652118835b35776fcb08ad7708b09af3bd8e2b2684228ee0e','952100e286b5a5b30508ae73f640a5df6a080200af4666e3bc5056bd9de7b35af6fba94e3540beb7',0,'2024-01-25 12:46:56'),('eb4312bd8adb14370e125c694f41a9fded3225f052de2349d296657257a874f15db54bf12a479fa8','0c2bd36ab94018e73f9f93a716bb9ca456337962292945d69360239de0efd67a74826bb1aae2398d',0,'2024-07-23 19:13:31'),('eb4c178219d074b77d2d64631ad40e51145c8f17b5f8fc4340e68c1f56e523cab9880a0a17579e15','3633cf1a2b374f5569b63450a8a83d22ea79ad636e0f803a715a9718200d90f51f68964bced37bc9',0,'2024-09-07 18:59:53'),('eb5185adeaac89babc54b11f7f2300c1abf1ae659978785ce3e4df25b89384121e806d27262f6423','710efd1655bb1dd66cb68da94f478029d417c690d7f43c9e0c229f59ff5440155658616cba001611',0,'2024-09-29 14:01:53'),('eb5bb249bbe691211deb7bb7085825e8ae425f53300409256eb58506750570f2d6fd93260960742a','1cc8dd59cccfa580f09020f4f901dc7e53a29f4370eb3c493e55d5051cf3afd08907d8a3b3f81002',0,'2024-02-23 17:28:01'),('eb83d6a2452117f0f8acc91cefd36b11895a463fb25f7e926f88e0bee2033656e07af3c23c9c2ae3','60c40e07b3a2c470927c2b8aa0f9d6a21f2705f12b31e151f7a6f7fe136b754a0311e01d8becbfc6',0,'2024-01-26 14:49:50'),('eb8b427e3d2bedf2f38f5ba395b15a3b6ff53fdae26b7a9b7c4388dab7bedcb970288b9aba5e48f5','457241f99f7cd50fda817d0470d0b23b0f674e94e4e0b7587da8a8b6234f938ff568a4996b248646',0,'2024-01-25 12:29:10'),('eb915ddc4b2c4dba58958e8a67b1752598ae151dfcd2678b33b2f09c1b7c3ee7e1559b6a4ca66289','1c786c4818deff56207327179fcb1b88926c813c770da9e4c7140db6f969ebd785939246ef05729c',0,'2024-09-05 15:51:10'),('eb9be9f9db2fc4ad6ae0423bc9e7c9059a3a249b3b09b648eef82eddb46cf2f28836283f313bae4b','113fdf79a19f34a7e74c2e68165f28d32362cf3305dffeb8b754ec40aa06667c875567b3fce9d800',0,'2024-08-18 17:51:39'),('ebb11738715234fd189e7560d8f9d41a09693d31786debd266fb5bab9c93481e81105aeb8ebe17a6','cc56fe7ba3b0355605329fac7a7abaccaabb9c7fe9d0686c35b09181e0b5ae5d76dce0a247932575',0,'2024-03-05 18:25:29'),('ebbb06f391234fd607b71cc844f53c6e3981bbfe2b0aa576ba5b9e9e241898a0c75e7ffd3e08058f','651b97cc94ef5de20e602b636a367957b92c052ab870f108e73bded794efcd8d8c580d993b20938d',0,'2024-10-04 21:20:08'),('ebd885c7c187dcd102099a88afcfeaa22f009c4a7e590c31b3ebee5fe1244289ecfbbab46aace1ff','b9a480075a2919139353e476e3b8a258e97287fbd8b47bfe1264b25ebc5cfba2ee02cc0f181099fe',0,'2024-09-15 20:09:06'),('ebe47a6924c52cfdb83ac13fdd40e454a7a548e9c0a27e5e620cf1ef44fa513183a0ea82b3204082','b9042b48ea02d58e691b02c5bde462cfad71747548207107d63bb8012eee912fcbc63919de5fe654',0,'2024-07-16 22:01:54'),('ebe8904a5e4e59387c1cadeef32d93317913151ab535ccab220e63f4da6ec1d48aee0c1b14a5760b','43e92a8548facb6b1ad524a24d8f538cd4b16375b68d515df885dd0c833fccce5fdb2548f36575d0',0,'2024-02-23 09:48:29'),('ec0f803349f5b6bd76c8824b0aea38d31e7f0d03616e1d0ac662ee957625922f45e9a7311017e7d6','b38cbea430240b0323c444ef3c472322efc01c2e80e3f7a6a0a1cf263faebdf742f3de10e9fbde2a',0,'2024-01-25 06:12:17'),('ec221eb329c64ad431c6dc0826da5048ebdb63bc2a40feb1f3343571201eeff24923b6e532e5f57b','8ae718aa95b190ccc58d7ba68965d1e9b9f33e7f4b37fa9e3af8b4f4e9ceaae9ded229904710efe0',0,'2024-03-03 14:45:54'),('ec3a22fa606b5b782fe24bd64aaf326a70edaf6089a16b746f4d9a83cc8b0daf3a96dce4f6118cdc','1047db09684a4b338122c83dc42e42ce165143463261a3a8d490cc227f7480022c51ed3f357b543b',0,'2024-02-16 14:50:46'),('ec3ae0b0306f5061d7d2ba7960b2be1501ad5efd344c1d5bf027062752e9213d605c1a0489b0ccd6','4fdca8e6b4a31cac3562b87b353267b348798a4655754febf3073a5febefe9047fc819324535d938',0,'2024-03-28 19:51:59'),('ec5f2883ea4e468d26ab6d1f3bf55a005318da20dee8df0cf7b2570c3692ddab5fb958eb39346ba9','3dcb6820c4a03c0cd22097aa10e01a7c759ed589bcdb5d074dabcbe29d77e9ddf368c5e72beea71d',0,'2024-04-29 10:21:18'),('ec6b6026eb464876aee4b15407b02233454e64ea0bf3fd27d6a99a8d4448996c6941d2045d28c65d','15855929e8f18335e805d477b59d9147dde71b0d88ccd5ff8d51f0e051e008d827c483935be01c76',0,'2024-05-04 15:37:18'),('ec84cb47bd0380456be580f02d9236e940aee03fefe43ce7d14da062a00522cbe41c3373207095b8','48f1bbf82a5266db38d04e5e2b225594b9b34be1c08cdb6e143ab757606821ba291d7f51508f5af4',0,'2024-03-12 19:12:08'),('ec8c79f6af3725d26fb8fe7451ca0bed45a3ea2300d0c466894a2b1b8d1be5de3e1b5f46e52d0f70','b60f00fedd9a7acd5fd6e79736b1084ef5d06017a312d85635077e869e286cc74fa4e4391b50981f',0,'2024-06-19 22:49:59'),('ec8d2c8df48528353536e967fdc28c88fa8cf366cabc69fb62edd6658d1aaa37eadd8736c744b7c5','db00d8cda314db05f0ce1784b01f037a45fe8d202c375f7e24397cc50639a88ef5cc07443465b360',0,'2024-07-02 05:59:13'),('ec91caef6fef0eab780acc3fd7d43098aac12649a49338cf1a4060c78e112c7c4b52854a2f4689c5','cc8199386e720ef652a472c4e57e6d1eccb5af1cfea6359b409231068cebcbd0e3dfda3ad7d44f2c',0,'2024-10-01 10:55:09'),('ecb1bd757c58138da11a2b3f7373ca450077265285f693c5924e3deac6debf5e8605c5d231947970','ae9b2ab51966fedd93da60da1635b80d35e732593051f58b3d044ad7fa940591b3d8c411c4febedc',0,'2024-01-26 12:36:48'),('eccc9f582ba8f3332dcb1cd3038724d4aa8c7f134f3d7ed86f5708bf40b8fcc912a16b922f2a22de','bf8059841f808bb20cf9ecf03bf5af97a29295ffe6bf20c4349473c2ded7c89cbfbd934b4da5e65b',0,'2024-09-29 10:00:02'),('ed0079a44c94e8ccdf4044a8c7e26a9c86bcbfe0347030011d26303b32cdd572791de21abf8535be','c5f3b150dab0e3ab7668efbc97edcba51a8f159504d571027330dc131a0eea5978cc7c39bb8fbfb6',0,'2024-08-28 19:42:00'),('ed03b808c031eee65692b8aaa0853aac5946d07f42df858f55d7a87c1697f6494738febab6e5fcb5','dd4c0cb281ec336eedbba049951a202f3975081020a8b7d510948b16e0317ae862955ee5965d1033',0,'2024-02-04 11:11:58'),('ed167cf442d38bc75d811756ca51e0b838ca2915813e60da92caf90d2be77f03b746fd8086536b4a','2c8d01fe0cb56da708793a3bbbd80282dee44cdb32575baf58e1e55b86acab7203321efbf99a3977',0,'2024-05-11 10:44:57'),('ed285db85b68f5d2ba104a251fa94dbf1857b5a5e36c4f05c641824b2885fbafbc26d9f8ca268dec','d44a027acaf7246e516550f123822245889511254b74289300430f7adda23e5eb8755ebe2b2a6bdc',0,'2024-08-04 20:46:32'),('ed3731c32c750bd7df01fd5ddca6ba0d06cb6f16ac0f41e47ed894ad0588a83c78d1dd12aecd489f','fcf59c84f52881e75f1733930bb154d199c259b4f89a08e91d6bb8fcfd27c1aa5bb1a558022d3ff3',0,'2024-03-31 10:30:00'),('ed4ea4c8f2b6027b1d17c1f3c392fe9c601bdcd7cae3c5ada91e4b921cd64c9a3588b069dded25f1','8a91f1fb392cb8ae4b71519d02670aa1b75a231512113749b467eac37712b5c0e5824ff6d51f516e',0,'2024-03-16 19:58:11'),('ed84a9bd33b7def3033833f534b9a39bf427efc53175f528139da323d4ed82dc2337df02c9ca9f74','77c1fdd7e8cbef758caaaaf0f4155efd4244e6c7e727bd6794c58ee1ca3326c9cc85281611460617',0,'2024-01-25 14:35:47'),('ed8f88a9f822a81952f529c595316b888aba32652df3978821b328a935053749bdeafb25e33a6b68','bc47f6e210ce96c69341feff2721540211ef3a1fe38be54201f561b3aeb5505bde28e2d8c70430a0',0,'2024-04-07 11:41:47'),('eda527274cf3a7a2b9ebfab15270d26662dc841e0b0a10780110de3a7013dd2f957ee88d45f2d426','3c97e6050535a06ba1ab42966370d8bcfcc169b008d50ed0c710ced745570eec511f886b655a30fb',0,'2024-03-02 17:01:35'),('edac2fd3592d6abcbe0bedcc5b135c4c21a7e10d23cc899b794c6ac74d8919bdfd69931941f90145','0971c3e375c57e434f4c01a97327b6086d175ebc0a5580c8e1a8857809a6d18014f30743e5f7a3f7',0,'2024-10-05 21:49:12'),('edb911385979e9499ee851506ac9e516db388545a8a23c3296802ec9e7f25c0fd97712886768c090','ca951d7efc35b1ce18679f355abebef3e3281512bf291eab89f48fcb4c1f3d9fc0b48a6b782c0614',0,'2024-02-25 08:10:08'),('edc2b17ec7e781ec17714230d10ba742ef199971cef97f308c806c14d93acc34164b2376ac5382c3','feda62a4c815552566a357c84dede3544f2098f5d5dbe8ea74423293beb53a471ef2c7ca1ff53a86',0,'2024-02-19 07:28:22'),('edcf2a74f71f374f19323aff77aced0dc0c4f9fb0c6a3c38eba668664906d299e9aa43a4dca8ca23','68b9409c3852355a852b40a33d48ecc44ffdd973df5e6cba73c9840895c43b02cec7c64d470da6f5',0,'2024-03-02 09:54:17'),('eddda2ddf7f988ab9e4cd67b42484e38c84a9fb737047e1c2eb01d8b5c1175ba84dc87b7064e85c7','da2823ac2e768112719f2c30fe43be32683169d39efcf3117316432e5f39e7ba69d46a7fb236640d',0,'2024-09-28 20:57:07'),('ede1254b7418677385bedf2aa58299a1095af9eec2505090d92032edad4f98a3fc9870cdc70c44f9','76d0052c11b98e5ad74831aa7cffa6c6c2edc5ffa031c02a6b4d0b08f284839a57ddb07ff00adc02',0,'2024-01-30 11:54:57'),('edf5fcea0c95bfa1e17008eac00aca21387bf11358d2da3c2630bce11d44bc6563747e88184224d1','f837792b4518714c5b9c13d22adea19206235ce2ef1556ef735198140246270d46f7c681f48d37f8',0,'2024-01-27 12:55:12'),('ee092103beac2ff6ce044bd838cb1acd0410668fd4595e9ca2602e3541785ac452ecf863fe25d5fb','2366189123cf561a7eeae83ae476c636ef5ecc0eb017da6f5018ebe33169200c846b046a48cb99fa',0,'2024-06-24 10:10:41'),('ee17555b37c4551ee513c4fbae60d56b406146f71df4cb8c99750fca359b2ae23ee06e1602077e72','679bde022f154a65fe668b0cf9765fbe23d25eabefa8f19ffd39b4b98619e0c9831ad7e26ee35d80',0,'2024-01-28 09:18:31'),('ee2dfa00a6dc11cca960da926bf4a2fe28f464934bc3347809c2ce88b23913106ff21265dfb3149f','ab740929e187fde8a9d0c00a8421d09d13422c1c0c9d4af5425adec9911739feda19ac88a580e80b',0,'2024-10-04 07:33:36'),('ee4a34e590ce6ae2c31565eac2d8cd2ec94efae0d00e2065522d5832c01539edac359fcee6df91ce','c38b4e1c2d6483b55653ba109e24cacbf9339112f8a09f16800ea347a96549bab46affbe8f3e2566',0,'2024-08-09 01:12:55'),('ee4bdad7214b95f758f77fa6f73bf6bd7c03104422b0aa7c8a74d0a8c22e04da840e646f18fbf13e','4af7b877afaffc574be671df07f9227d4b70e688d100161d11bc75dcf1aaa461246fd2535c7e6b1d',0,'2024-02-23 19:26:54'),('ee6fcec621e57d01283f319faa767e79f330110c5a2322d722f238caa94788a8cff5dc6d5562d3f5','8681eea828cc83f3d772977c04c36594c04e58daf3baa913f8c8df026933122bcdeea598253e5269',0,'2024-07-27 09:17:40'),('ee860307192a2d4ba6e1255bb02ec689f0b03a7f0c2b7e65323e40bb2e3c3a48b891ae600b041894','349d668557e2b048b2232e254accb784164efb0ccdcd3bc83dbf97d9d8f22a3a115d66abc49f01eb',0,'2024-06-05 16:15:08'),('ee9f2893ae3ba830b01469e75dc7e2f81be2ed13a18ca74b33e797d48d1300261f2c0fd8962bf468','f948343d56ab871a90b1e81b124eb960c3c9f600c8384d39654b1a08e6100b9043e0df02ea4ecc8d',0,'2024-05-16 14:12:53'),('eebb440b1874b74439db6b1032362e8aae64447aa75ca61d0c3f26bdd7a1320823a1e661fbe051ce','05455437ab3e29311062caa4327cf886b72e94789f4bffee168dd278615d67e29fa38264145f38bb',0,'2024-06-22 21:55:26'),('eed77a0ece9e480d5ff18435b02dd71adc64ba80aa8b0ca36f843fa18a40b9c097049855f486e21a','20787c5b7fc8377dcb16c92be93226074245994c0cc4a1b56e42155f0d457be00c186d044aa5b78a',0,'2024-02-01 08:46:10'),('eedbd7d09cd694ebd4ecbbd2ccb3be239597695a97e23729be8753201550cd512feb40d14d944c72','775e728e055240726d4bafba0b7c0a029a6de255f7bbec5964883a067a7b57190cd6640f93886d35',0,'2024-07-03 12:40:25'),('eef1a093bfd1df47728ab277c7da2f16cbff59745de071c4aa3a1823007be523af95bf20f90b589a','df2f2b0ae58b08b38411337f19fb24c7ed3671ddf12d3f2f0b2bbc5d0a143cfeb32d9dcfb2b72cee',0,'2024-06-04 09:41:31'),('ef071b19d58848654fd4de8b5452372987fe90b2422ce6e3f9ccb4cea6ccda1381074f5a03cf11e9','da6ddbd18a3fcf185ff72552903314b409b38093849357f19df120314fa03521d450291738c40433',0,'2024-02-23 18:25:44'),('ef1a3e983bd3d9fd1efa75167467bbe03b79fdffe083eced7a9efa2bfaefd6a1b88cb24212209c00','c8ce15b53f68d62788ca9075d47b8b0632e045e14ddca3c4f961c3fc3ded10ea43b85dffcfb9995e',0,'2024-06-23 20:37:11'),('ef310d302de38b08b7c05a44bab0f98c166fa7d08bf9547a12eee27dc53d6833350d1ca1d35ca119','1670a24330e838938b003cfcb740920339b27a6f405feba53283f561869f5a95168b6cb83eb15088',0,'2024-07-06 15:07:26'),('ef3ce32cfa2de6120d81d12612d3baa351e9793cb5c563fe8a41dc1368667451e887164b2c20a0dc','e9b73e0bd5a42a2bacdbe3124ecbe4468e38d1a7a1b9d6e88630e34a38fff5f70bd27a703ef09231',0,'2024-02-23 23:38:36'),('ef5af4ed6b2ac1f668f026ec41061ef246f95dac7acf1662080efbc6ab1630a02e45eba782e217d5','ae20366902d5fe5e330302d53b22b4b40b8570ff1076edc848dbc3bd65be4dd55f5e7637fd1f7aaa',0,'2024-01-26 20:52:25'),('ef645ad48d6067e4f8d6859d1510b9d17bc5eeb786594eba264fe52e8f8896df6c5c76d38e34b3db','e9ef4c7a4dcd73e08daf83ca37c8b22d019e0ff7c975d4728787a73b6780f5c861080262cc07f06b',0,'2024-09-26 20:21:45'),('ef81bc8559d3fc3e50582adbb05df61b03922c7ebe5e92172cd948a9ad59eb1c306ff2c2b9686a2d','c85c91c3e1f94e22484b1df7880d3c2d770b1dcdd5f74d797e2ceef1782db5d7c48491d293de045e',0,'2024-02-18 10:41:35'),('ef824e3f2ac228121f49f3acd35c6a248dc6481119eecc427c683b2b110e65796c25a8ad754456d3','2173bcefaaf21d0d33d488f4de074bb2725d5d10e3e2db0086b9bcd714c39e631347aaa0c5eeeb09',0,'2024-02-10 12:17:02'),('ef84cf612458e6880ca1cf82669ae7a3d6c9f3e170921f34fa43dcca45a10388c8a52f13722a0c96','f3b1b4a0e3d886005ae0e0c3e0c0468b94ea0368154027a25d4bc59f35c459047d523b478ca50c34',0,'2024-07-16 12:52:21'),('ef9a42199a253d633ee71d68040321799e18d9ddfdeb0dd7ad8017e58e2df2f9a24e79dd854c1de4','8a730cf2c24ea8a779329bf907780ef346ad204ad58abbe677966e1f2b4f4a5d64dc1935ce873e5a',0,'2024-05-08 16:32:21'),('efbcdb6f1725a9b64234cb35a9a5322f2130cded0d4c23d43a2824ac51652d37726d2c74c41fd184','66fd16ca3cb566cfdd9d7114797fd0cf43be853ae9a40a83f2d9885b843c6ae96e83f292a8b58ea2',0,'2024-05-17 08:22:12'),('efbed4e349c625d7eb0820188dfcca3fdb27d32b4c491d3c731df3f1157ba47ad9ffb66c15523a6c','3a0bf3f05b4ff374dbb7b5cb73f6e1e39778df6709468837d399674ce9d4ef36ce214539492dcdaf',0,'2024-04-18 23:40:11'),('efc345ee509c50a0ab7c3b12e0c238554b7f8d63d975420ae68a61a7eecb1c545e05d20dee4cf087','dc9317505c7a4d00138c5860da340761df9c1fe590ba835d7a7c9745dc2a464ac8559bd15a98a44c',0,'2024-04-06 14:27:04'),('efc9a77066f41707f543f6eb5f1042aacb8665bbc4046b07e4a47b9621511c2936251f09cf85c3d7','03bec3c60d0b9e371240931b93c1e2d738825edf45ae031207cc70e6f85f091840d57c513eda92d9',0,'2024-09-03 15:50:11'),('efe10f50ff250c1a2f58ed05d15d75e743ab53231499db0bcce0ae4cebb573a893753814d0a55231','eb89a6e02ce9df7d33dcf570c9ba6826183dc59e19588c439f3612287ff0cdacb7b612004d9007c8',0,'2024-03-30 08:49:10'),('f0068945c16d8be4c732cdf494112e1a4c1fe09a8208a11892f11cf1d8383b8a02800adaa2433ceb','c808aba45f2cb80d4b9877e3bcd7182d491624d45bcbb5dc2ff67da9a8ede4803baf0c053a4111cd',0,'2024-08-30 17:44:41'),('f015f1a7911a8266c30448d08b92d3d4c51b7f7c753aba80e8fdb005b1987d88cdb68bd890ce19ad','d71bf67b1ba9b764792571978ab0dffa63fbc2ef27504a76411dfa2eaacb345434a55c17ac350092',0,'2024-04-07 16:48:59'),('f02ec3220dcab7c42f9e8999cf84689f6653f14c6f543121174cde448f2ff15f9538728150bf7653','9844c3e970735e266bfd7bcd1161bddb650997460834cc25caea284da53310494b8bc19a0d60e431',0,'2024-07-01 09:34:54'),('f03613cdb98a2cdd501332a5b314551c10e7097f153133ce9ce0c62eecb2e46cbd424f23a031d63d','43bb3c3d69036930f760df34b3b85aaf65a0ac46f1f99839a2c8c5d20b559adf485e7dcfbab3290b',0,'2024-10-05 23:15:23'),('f042b608f579f933299aa4206d561da1974f80c4c0ee24e5c12dbea8a59084fc800bce4c906c52c2','34fccff6312a095823ec18b5d2f8bd52110bd5451585dcc0cd8f51f737cb703cea060603ce9b887a',0,'2024-01-25 11:53:05'),('f04a4d7d5cba54ecb2c8ed27f4f184bfaf1f99bb6a799138329b5eb2e10eb58186cba7072c3076e9','8a088e59442bd27987555db3a1bac5b8036944674bfe951688ad8303b64ab5f6ae002ac7072ea4c7',0,'2024-09-26 11:18:23'),('f0503fc80162dc5a684cb07e1c65e0584f777716e2f38797fc8d627123ce52a6fe68fbabdc67ba46','4b10522a3da03aecb2144ffd251c5dfc7b891915d7185a96ddb32b6968af2931416519e07605734a',0,'2024-07-01 15:36:40'),('f058e889d487fe1b3999a0c8fede2b978adaf7547e61249556ca214a29faa7e5505d726bf2fcc58d','b4890eaf983c990ed217186584fa8e950ebd98cd3a2a9c2981465622c30fa9834015324c289bfb76',0,'2024-07-12 19:03:37'),('f07cf59b5d08e7240594e94e67b3ecfddf5f38f5301ab7f1aea0854f29d0e16097edaf5c1c4ba969','3e9f92f312b6863636571b5383a023ffbfd7d81315c3c6b649c1a55b21079c6fe3bed2af97f5d259',0,'2024-01-30 11:06:44'),('f086bae9268dd2bddf84ae7a22d914eaada6a1d5140975de18ce2f803e38dea24b396d4559cf7703','db4cdcaa88766e490badebb3e80bd4427bb0c1937026ed6a16c96e11311a7fe5d95ddfbd70eafb1d',0,'2024-09-18 14:13:23'),('f08e0af04c669e81de17769972a0e094a3c95da50432e80eaaf1a6b85510a8e7d38862c17e440016','73634b7d814501ced01f463bc9fafc724ed72bdfe9671a19aa84ac208ffae5ebd93d925cee00127e',0,'2024-08-25 12:31:03'),('f0b34224a6d9eaa8bb5615ef7d76dc458f9bb7425a5e8c8d0b5168dd2d7b958f39f04814dc89e245','30570668fd189d1e1b55884269917c841979b3fccd264ff551928bab9c328f208bd00b122ea9e68c',0,'2024-08-23 16:14:49'),('f0b817c0fa6167a4a2da6ec82edff0761003b5f57611666bdfe3a8dca867300aad4fab597214a986','36c66d07bf8a9b21fdfa7ffa0613f89e9007d6ba18e7093e55202397676ddcd7ae1970166c155efd',0,'2024-01-25 13:17:44'),('f0b8ceff5b0bc5cd8718c0f7e2c8c6ee01d5afe380786d70d7fad7700e405a1d5e0c4f7962ce73ca','3b4d1896a4c8244447d32e4c020c3f20600851c07e69ee996988447c43f9a6cd0b7cc642b552a5ad',0,'2024-04-29 12:07:15'),('f0c65b3c5bc71ccf206a44d3b7cab0f3a84ef020cb28e2ce47aa81b190945099a301c7e5b3b700c6','1a12b44c85dc5ac3be11c8205f93a7218e3276b9a608d13c5aca9b50e6e1ea0f51e0077bc013cd3e',0,'2024-09-21 08:52:55'),('f0f248fc00f57334ba5827420e86e5b3a7a1a6e662099f42a0c9257a8d9e72ae4be679ef0b4b11c1','504bfe56adafa09057d97f975f648c71afff21a90d103c2c7b96ce71666847123b7bbaef7cc1e79c',0,'2024-02-01 13:41:31'),('f0f36669a947c2aeb7dcde30bdcdf24a27073899b69db18a8742062b3461e4b891892fd3a33e3503','ae209e9b609ff9e5b5a4d0163eb428c47bde2cbab9547699c4b3051aa9d3ae54ed8f41939cedfb90',0,'2024-01-25 00:35:42'),('f0fa175c466ee46d0f7f18381079f6daa2cecbc4608df5923a65bd5438f576859b81f6f539afe6d3','a9884f040a1c4e4bd35e01568c0bd6f633564510ed143afc3102565817ba367efb1b599a3c0a2ed6',0,'2024-07-21 10:59:36'),('f1086e1964fa7a86ab107487108e818eb7c84ada27447b35a74366c449ad452ff208d7c7e6fdc1eb','3601744338ba790c75a0347e9032a6e451b59be073ebb2a34b0f8398d7ceb960331b3efd9affd18b',0,'2024-03-24 12:22:19'),('f1088784f2bf1b2e733096d2c3cb83df10a2b2d0f19fc586bfc20f8666942f065abfee3c669c0fae','fbe23b6cbd9c366a9887ca8f193a1c2c4b59947facd06bd3f7e8b8286a7ae206c861d415509b5454',0,'2024-02-27 21:44:10'),('f10f72ac1319b276f745243d4907ebbf32e6acf3204e66dac770051b72f78acdf127001fe7d62b82','324dc39b835c6d1774b11bf73f024967bf3592c68594339407d95dbad30b016baeac8d7cb674059e',0,'2024-02-27 12:56:40'),('f12690055dd791e43d2bdffda6b869c1a70904b6c6a28e3c8725d6c8289b90118c6a2cd87dab602d','618f43edad630e32e25de93e293386d355a6b6d2e0c321710d0fac2854de1e5735ce2e04cf568186',0,'2024-01-25 09:29:43'),('f126c90c8d1724c7cb5f251b1029b24e09e039f15924c9e5944f89a867a78bfe70e5ab69d7604284','9ea48b73e1c6cfe3376870b696d4b22b0cf0b41bf9566acc4afb8419e1532420a1c52dac0012864e',0,'2024-09-23 08:59:19'),('f12e4d20c7550eb6020256937e9a0f349c597505703e8dabd12c361f9aecbf839880b39bf2fb2aea','7e897e49aad078fd402d1f8dc65311d7e85385fdb577d3e0a998de3f43b5c1cac72f6e793b14dd9d',0,'2024-07-25 14:11:00'),('f13615a372b596bd0db633a2267dc3b2785423c3faa231120e3605c24188a1eac10f5adcc66ef1c5','eef2f91e73fec8d988f25141a6c76d3162bef19822debe7bc8dde68374ad9b3cba05c0d2e7384b55',0,'2024-02-03 13:23:02'),('f13711601a84388b067422fbf98e8b66af5de864bca614f70289b80987ae314535a920b60c1da0eb','645a0a0dbe5f95d8ef92c085a3bd8b45845dfe00bed5151c2c02234271a3ea3b84959e1f3532bc9e',0,'2024-03-10 12:34:39'),('f14ee730394e66d9672305387f55b4efdb1af7a06613807bdab1e0035771228b81237d9780f2612f','f74681563b4bf09e2f7c333d8656567de3d0344f2b80afda18b581381428089623e8395cce94f72a',0,'2024-07-29 08:03:12'),('f1557c6881aa81f2cd8d12af8073d966505311f79949252d2f29fe86d6bf6a9438c5a8c4faf038d9','737a6896eae5321a3768ca826ef1a79510caeffcc262727e91aec3a6cfe4609b6ebfa19a53c64a37',0,'2024-09-25 18:46:14'),('f159aacec41aae5c532aa1a8d00d58536bd04cef68858f1c80f51762b0cf3b034a8db8f45d13beb2','ac22b9920f44b541d1810ed973efd1a46c36634833c3d7013e36b70e0c8c67de2c47ecf601ed85c9',0,'2024-03-26 15:36:55'),('f173fec8a6fe84aca07075fc4d070990d560153ae332e8527c8b39bb001779f65057943827a27bd3','a46ac7cfa83de5eef4504668581641d1e5651ad6d01737dad006aefbefdcd81d2d9410d24c14594b',0,'2024-07-26 13:48:18'),('f176cc2eb163477773419377afaa994046dfb73e74fa5fcb94246c6e9fd3aeb9dcb1b9d312a25844','b9d65998aa52dc1106415a20928521c28a11e66bb979cb25db88974a9982f965d576bb30aaa296a2',0,'2024-02-08 20:38:42'),('f17d71ccc9ec270ea26c13b3b2617c8b6f505022a34260aeea94667de686553955a3d5d6c9a2d1e2','d7d1b305dfc0b2347a07f7b96665df4c1f8c61698d527aa2019ac165077176c39848e9e0570079f2',0,'2024-07-27 15:44:39'),('f18a7179ceee3adac803393d2905f8b9af80a45ea53d4e427d4970630e399dd0bed9a2ee74ea4f89','93bb53267eeb2b6ddd139c8a2b4bf117980201a76b84e8a1bcef6064d35cf8936f4ab42e1c62eee7',0,'2024-05-21 15:58:31'),('f192d07042eb8c2a95a316e27c5b14de50f79e7519a3dd6ee7d426e7591f489f32a773d9f97fe697','e8862431aefc93bce5fdb30fa106a05a04823a079cd18a89c173ca840c4b4e38586c94bc8fdf8172',0,'2024-09-02 20:17:20'),('f1979db5eecb34f8812f7d5f4a6a1f84bb33cc0f6c4c20f6a8f640b661950ab390ba2005f07341fb','a128f07cd0582a7d00bc7c4938ad5cd36fcb7623cedb4c0514c44b103c654b2d1b02f35a887b2c39',0,'2024-02-22 09:57:24'),('f1d43f64d0d685ae618e0c00bfef7b3425f786c658bd5bb3d847a3f59dcb63d13c1bfa859de083fd','63031b512848065fb64a50721f34faf812d3e1ef136dc7defc859150ceb894c10384be01f4ee5d83',0,'2024-07-07 12:24:47'),('f1dde6b352c34783c9b1b0cdf9b6485bce7b1af22d3057a60b0cef5303b81bdb545284a8508cd93c','b715f0d931a7d14f1cf240ec6034fd27a79c4cb4beb175955bf3247f42990a90d8a2e958e0718b24',0,'2024-02-25 13:19:21'),('f1ea443a73d48a69d29cdda7bfbb5b7fc73e5e68e6271aa407805a55884b26eb552d204d588073b8','feb2a92b2cc5ef7c9f4b2467454a625928e7592d717f670e367a4f9e5d2f4d4a17982d290d34538f',0,'2024-02-25 19:02:12'),('f1f0e6e7907c6d1425d81cd256f4cb04815d54a951579127694f5cf6dec8c2e1a705c5fd7ba93c2a','4d0516382c5ad03278c107f44d7276b0139ee305c9ecc675c2aacd1c04af5a78c751c949fa9881cb',0,'2024-09-01 22:39:24'),('f1f1812f85fae16a54fc95a64e02b3a772acb04019017a7c44de4d2a5e34bc7bf8b4cb35b36ac506','a0399074599d4ff73f6a2b5b8c9596bd9f433d330558d6e82e6198f247e551550bc1aa78b148b25f',0,'2024-04-16 19:30:09'),('f1f185d9248ccc9cf5b2b6065b453749bd86adf545dcf2a4fbc7d992532bcc693b1a3800fa7c3301','d143fa0141bcdbf02118cb004d7182dcb6108c84169c67b6bbf5e82629adaac2da14531c0b4f902c',0,'2024-03-28 13:31:10'),('f1fbbbece9d3f635af459837155585ec2d81e8f05c90822a0ea864a2a34e888cd95f1093573c8bb3','82faf24d9729ac6d6e575a3932f5626fc025bd976f3fa3fb078ca573baa11cb0af237d8baf98d63e',0,'2024-09-07 20:20:37'),('f1fcf216c0b01cc296c3e2aa4698d4fc3dd4216eb99d18ffa84046fb2226c438f458d1e4e012ecd2','ae3e2bcc7ddea51cca0999b71cfe3f1264a09bb1d5500153419013e793219eb72d05b84907e82295',0,'2024-09-21 10:11:18'),('f2069d8543375a454f143f6db4bd9f980ce880b7533406c895cfb1e55f8a6b130d9b8e9f91d6626a','850c0b46195290479ed456f85fdf8155f7d7b6498b8b2ae7d16fa990b1bf1517d111ef738039dbfb',0,'2024-09-17 15:48:36'),('f2127e236c9bf34c2af247379a901b2294589c3b4fde3a1fb6e6816e1b738002599c5d809adca89d','d93c8294ff7f7843a3bb8c8c0682de1d6396fa62c8c2246b921f4f90d96a21a344fdc09c73ca82aa',0,'2024-07-07 19:33:20'),('f22462fdbc6890a32cf4b729d3e44b47065ef43d99e1fde2ce52e33bb5e7f603f9af5cda506b4ef9','f35cd9f4194dcfc002012dfebbb2a03095495ed9c5fb073a54fa8eb44f363b19ce2523d6dcba0407',0,'2024-01-30 18:03:39'),('f236962e2adadb4460bfa3bf2496d2d657ecdbee265bb4cf2c553b942a9e0b1a211cac9432a39337','328026b86f7c74bfc8fdbc7d5d721a0512b68034bea8a0a67c40fdff82be22386e9b323956efc0ab',0,'2024-08-15 23:34:43'),('f249399adc65cf0eb6348801e247ea95ecc1e808700032b1b6d8edad0e3df87e6e9ac96402f25117','8e73d437c37c48b75cbf275f913bcebc94f7efcd9277e7722e45967028030ab59ecc0cb2b6ca4b5a',0,'2024-04-22 06:32:54'),('f25a9d66f043d3860041905c2fff58be77943064cbe5456e2d9aa457943b0f736c958bdff001b8a2','b15d0318d422b97e666fca61c98dcbc0e9e01c5df4344ecbea34ac72c82396984c1dba0ffdafe84c',0,'2024-08-23 06:26:52'),('f2641a416cc9eb3ba8207fa3878c92926cf7f21e43ffb26101e8b2937611df6687fb03b77cab0687','c75d6d13626dce3df0477a013f229ec19ad62a55ce04df0509c29ca887023b5f3cc02fca2d91299c',0,'2024-02-11 08:23:26'),('f26a8d53382b35776355e95280764ababf5aa5af59a13581e02b221ca46336576d2b7ad7b267fd4d','a76770a1e1d874546f0cffd6144ebde47f7d2dd59ae9bb0df78ecd46888c2ddc4444ac10e11f49b7',0,'2024-04-07 17:39:16'),('f274471ec1ed352b10bd280de91e85af95dfec2ff4ebada957a362690967323b85969f9b25ef7997','27399717910e663e7be65cbb422842efed77f29223d7e6ab043e83230cce97408aa7d63557d686e9',0,'2024-07-07 10:03:54'),('f2850d789c732be0b87f063ee95b0f4b02d16e4b2bb34eb810d3f7a3007f8b66f1b1ee8b3bb8bcf5','8d7909f61d2bd395566b302267319635926e9162a2fb35592cd64e85b2372498cb0e7e0fcc80679e',0,'2024-07-13 13:42:23'),('f28b5b104f4b7eb52fe94889d3b5755124fcaf558609bb1450a2d7bce861a88cbe48d1018c58f59c','95fe8d31d9112402f8c12163500900481e888e3c52c40ac7855f062a50b3cbc24d72c7caf063953a',0,'2024-06-05 18:35:47'),('f2a5c3c5945d114b070e24770bfbcca386a1deb3bbfad137d9e921c40bc8e414203ef4802423c628','73a2da387faa926b033851c4f2fc290831623cc84a543f5423b8b3d1f3a023c995a2d08609ca733e',0,'2024-06-18 17:59:20'),('f2a5fd32cfb1136356990d06e97c26f16677817811051880b63cda95dceb8d4e05a758f75295e343','9154d99cf775f42e2318c44a2e07eaff93a6fb0b3a2b17f7cda4137ec30d23a27c6518a88dc47dae',0,'2024-01-28 17:51:02'),('f2ace9f41fecfa9e10ecf2216ad124319872f1ed494a6bb1968802e79fbdd4a6c14cf0fdf6baf49b','b2074ea452e5cf33b6a46bcc52d97c5597f60834d20b040e1d3978dcbc5484e80619d49b6132f5d5',0,'2024-07-16 12:55:47'),('f2aef88a84bada402fdce14cc918f80c1ab837228960b35cb28eb852321693f12e077f1d29a04c52','60a0c5403803e10aa28ef847abfb4d1580c62b5506e41958fdd5cc4926e29ac08469abde7ed21550',0,'2024-01-25 10:05:06'),('f2b4722f6372523e0d1aba036a912f7825361b84b7c419615c7b408ae45c14491ed690d45f2439ba','bc0e865aeb2ba24be74e53ddf77b2b4ebda556c2b1e67166b4ddd34c82153fe2ef14f5786c121ada',0,'2024-05-10 10:04:36'),('f2c58054b84778f6df2d34eeb451329a6787d03c29400090b42fcf27217319ec9a420ba59ba3c17f','dc5a0581ed79c1f6f8ee774297a1018cea37646c0f6ef3bd13f3675598365cfaab6ccce53b52c451',0,'2024-09-20 21:05:50'),('f2cf4bef723a81ba8cfc9cf11bfa79839b56c10203b09cf4e6b5ab0bafb5671bfc40061a6a65aaa3','192bc7350367cb4a8cf0a5a82ad6a34129572809a4ec6832b8950e36451670b3bb7895fe54545d55',0,'2024-04-03 06:21:37'),('f2e23e2de759759244bb5cafe3552fff06b30ce8ce34707f5798f06b2f019384583d83f21e3c6c31','e90b2d065bfb443394a5b86562a27cabec749f8f9358b63699e18b3cd3a53aed6b00fb06052994dd',0,'2024-06-12 13:53:23'),('f2e623fe5d40c0c49865ef2d51b60bbbc14f9b003c5b9438584f4717e74a274220fda39f28534ba4','79ebd1e64173037e167a0a0c93759a08096df32fc9b3ca59aff51420925b69d8c0e762eb35e00089',0,'2024-01-25 14:23:25'),('f2f3c8a4cfe3f894fcda3b8dab89b79254a91e897cd227fa37891d8e2aba8916eb9cad6ffc35cd62','a7fe4625193077486bc96645c28bf1a455f4eda1014c823745749277c996d8730f1e7578960e622d',0,'2024-10-04 17:03:37'),('f2fdaec50e1ae9fffcfa031b59bc1e6d1d57d81d7b1c248961519a90aa4e96c8e0c847c111aea06f','e0d1ff288c92f672d98de4968967a18b1b72ecaad6e11d9e631a271ae796edabb417dffbe8af4cfd',0,'2024-09-24 10:55:26'),('f30db2550a7d17ac84f46b37c5615d332772bd9cf64ebe070b158e4803ebd8709b1f9ee817dc77ed','a95e36fe25c03192a4e119649696a297f2541632d9d96aad7a853491257ce05c01eab5db42341a25',0,'2024-05-26 08:51:08'),('f3278e6d714b7c4387555006061a080340ae1fab410ccf9c2322ca99ea8a8c3e3393ebda3b95eec0','f742c74303f0f75500d6807c9b0cd4eda459fc265aa887af510f29cf8bce7e2f14c219153b37185d',0,'2024-04-20 22:45:24'),('f361e10aecae031d6919a4f2f375bb7e34a138038ef9a49f1c6b5e457dacdcdfb00ceec82cfea50f','96a07bda7fa0017b4c64b10716c2f44283eb2234f1ebe37ee69c4005b5a7428f4d34c34dbd86bbbc',0,'2024-01-25 22:56:29'),('f397eea10ddeed77bde3cef11f29852072619c651526e4c851caecc34cff63268c297864b8a0f5e5','8f2643790e45e371648ce30b05a9bda0553c56f29455807dbed720e5bee31fcb946b3c893e0447cf',0,'2024-02-19 00:15:05'),('f39ec1c04ac9a917e53c9248fb173870b1602d7d1b7c0cdb60650e2106648216c5312fdac6bf156e','29795c7a7d3e88db4d166de42cf8a60869e7056f062bb9d4aab4ed84f24d81811146637e1082e1dd',0,'2024-09-09 10:41:43'),('f3b8e090766a1f895e7922e7b26e0ecb93c443dab802247a41b940b03dda40481cb70975bc9cab22','688c3cd9ed44cf463fcdfd65e6c36c07f2541daa26d85226ac239b1079756db4b7ab7f756e09fa78',0,'2024-08-07 19:30:02'),('f3c515cfb7f730edd459e690a98a7e2140949bb7557f4120b922a48749a4604793eb5fa8ee72dd5b','ff9daa0a00b0464615e56c9b973d7e7343677d14f63d497e0a7fa3ce715966e18832e0fdc1281eba',0,'2024-02-11 04:42:37'),('f3c66a81d777341053d53bb32ca80dc2e60ad07d1fadd1ef2277577dda48ad4e4c94e8c2439fb855','2043cb2be7ff067f1915c4625902a640b436a52b1eb4dd8cfdf2b8b9e83a129ae42c6a06c71486f3',0,'2024-03-02 02:05:03'),('f3d1f8d35874bae6ecd16b5d48dd886fba081ea9c7828877a517e0cc3ba74ef44bff7d8797b625dd','b3776992d4b02aeab405ef29542006d38ac6ed3dfe02a3321f632781c063463e83daa7ecaa7907cd',0,'2024-03-01 10:50:50'),('f3deb068a2a5bd335879f05c0994729c3df046311e657889cd0b8f0b05028ec1faabbf33e2d89897','706455f07d65df7406fd52e12935ac8a6e61bb052e59260d96d71b0644915b189d77120178e1c943',0,'2024-04-27 18:14:09'),('f3e831a003990242b3ac70f4e786dcf11417fb2b45ddcb0438d71f94a130c66af1eda7b6b4c830f4','0f11802a08d8e26bd4043784c0584166cbfc03504f8de641bf8ca20a1f42ecb6f87836b6418202dc',0,'2024-09-13 17:30:32'),('f3f0a80a47416c5e577d1cf8758b116465baafc421d0723bee1819f9128f7d2277b85c0d161597aa','fda5771f308137bfe7badc4aa5a163bb43927f3b38c3f29d991464777fc74d2c7e9d5bbcccdb9163',0,'2024-02-01 20:38:11'),('f3f206ab74eb016ce2cf19725af650231d891e470d9eb1cf9ab0a8b2e8af1987217f5a3ff93ca5fa','d956f011475c629782f09f71fb7e824f8d929a9c523d4e6d04fe492cc526f0adf9706bfebb0ac43c',0,'2024-05-05 08:08:40'),('f3f4a2fc6ca7bcada9eb10b6340412f09dc97e797e482e8306769a955523abce7e21e789456f12dc','0a90c71710f7aee0b0895a685b22ebce25bb13d7d67f5865641d26e32da46e65d4f6c94fcd6aa9bd',0,'2024-06-14 14:05:18'),('f40594b258b06acca0f9d661b0fe97af18d2d9ae41af5130ccaa538a63ef0ad2b2bf1fb8888bc79f','b05fee11c6e81d0269aa1f8148641a87399b2b82060101c91d17c72f5321ed554dd06cc8a2a7432d',0,'2024-01-25 06:11:09'),('f40cb490e8518314b284545b05b7cfd42807f0bdf5551e1c85516fa9cfe8e2237236554a4e22e35c','3ad0d881449cd7f98fa607e3aa89a326be0dfe31917ae773ee7455a99fdabc34774da26ba9627717',0,'2024-01-28 08:43:26'),('f4116143edfec5744e8f3a5a30f0231af2cf9fa652f10bc401c25d4fc5244a4fa6a503fcb9154921','1ca52176f2622244f757a48302e9f293da528c7c2699dc5596c1f92a29cc984c5cc6e581c7d7cbf5',0,'2024-01-25 09:49:19'),('f4220cc64a01e0c0a6575b0c866becd5db1232d9887b657c30c2577d09b0fda228a4011b6cce4390','ceb42b41a3b9da5f3137fe100d03a7da3c186e5086f3f29559a47204bb106eed61ffbe41d104a516',0,'2024-05-14 06:19:12'),('f4253830d5b36f34de0b0776dc072e800f6ea0e0c3684732072706142d1301e9a5ac2d7c00bac6ef','8da7fedeed2e411db93ba61404cfd722aa127049e71e3041e3f21df25fd45b4744234676f72239e1',0,'2024-03-12 09:42:05'),('f42dfe2a2d77bae1c9258e02c7e8002199396d572b8c65089f27f5029aead5ae8372191964af5032','7d9b6ccf07d4954d564ea1059421b50c9edb8892b3c84f584410578a1a28e80226e66e42dba454cc',0,'2024-01-26 12:52:32'),('f432b0e97b07ba3e8abc9f4b8e6f96fbd0327df0c146e91b11157f18291e458fdd81c6105d7c074f','5033ec6c6f10a77fc8dd23fc0977772d283e118f0fed0b72b2b232dec5b537422bf7e88e827c64f2',0,'2024-06-18 19:23:01'),('f447d70d1c9534f6c7b0e50e78c68c7aac3257c230ea5428350786b217792e32b81312e8d39b8493','9646b19c77baef152a283ddb1896ef6a51c451659055b558fdc1b79659658ab744e17fa0a7d2bbad',0,'2024-04-10 17:40:58'),('f45a2c232b3b7ed33044e88d30db45c1d6f405ab27a2d40380b5912a2fe1f54a9fc8e7a74e268f2d','6a716654ef7c23ee6c620c73811cd64f8347873ca0db5528def74e0bcf3feca946c2bce911a2a32a',0,'2024-02-24 19:51:53'),('f465cd258f4f45f52db2cd1a4c2acc2763f0758346ca8f553078a1da406e60c13b2034a2afb2e31e','c17e2c2d600328a94862abd03c1e017026d2b03aa43e447928e40eb24027a72d5ec49d6b147198b1',0,'2024-03-17 14:10:56'),('f4788b00f7df54f9c9d1bfe3afaf31638f1ffd75dd17ed7ca7831352aebad55e8918846c089e3cc9','a7b659577426ae3973e3656e1756bbe4a640e3559bba7d0a3e6572f9d63618c76a7c01fa3a0c53a5',0,'2024-04-12 12:30:14'),('f483d5f2601067d13e817d18d59a7bce2698eb1cd9a0033b519c1d7c381a92a6d98f1d07692ca92a','c7843d4d7f90a76f5241c69f38b0db0bc2901b75e8da8436d4ea06250e4e9081a33f992898930f00',0,'2024-04-10 17:38:18'),('f48c36eb218a18bfc7bfd0b31d2dadf82faa1efcac6f8dfe1810ecae55c7c8001a38bdbc6f9126d9','7a1eebadb35e4810c7fcfa34d2dc7967770f96781b0d10e5dcd099f49095f98a62845c676a0dc9cc',0,'2024-07-12 20:04:34'),('f4a2f9eb979e3cb4de68b962ddf7112ae054a4fdc1598c87e7b650fcc30fd52687e79c9b49685bb1','b961974df156290220f9a31a3c876085756d2c78f3e4cf40d5ce20ab27609332a68a1f3835511105',0,'2024-01-31 09:30:31'),('f4b20ae69d99dc6ad3199abf1e747bd788ce2d30ce3c24b06b49889d2244aaaf31d3c7b6be8a29f2','4e95da3b5e86d512e3b4fba0cc7487e057ec5df2af0bafe36be5f8e63c6a6b85b0a2922362d6b234',0,'2024-09-10 17:56:10'),('f4c2f05bfd2c2d3bc473e601748ef43079668543a73c397f46bb59edbdc93ba0b1235376a1be409e','f0e93bfcbd1d49bffab018d114b00d73928574c63404769f9f51401ade4d2a43ee6f334e263c57a9',0,'2024-01-25 13:24:27'),('f4dc09ceffa24ec082c20b0fe88a6536a8de48c6d4fd0f1a42c4e3b528585299869d804e8179f842','7d0d74196a39b031d4935650ae0aa41ac985f0175b9302377628ace1d408bde67ef94d069d0404dc',0,'2024-06-19 14:18:08'),('f4dc221a9c1b80273802336d3d39d7da3e40593e09d8c5373f4039c5c0d1601cfddefc08a176a25c','f476cb2a0249385106c4ac9eb5bbb41c1079276f15aa5b7a9c2b8080d76f2b90835ab4942fe5f695',0,'2024-05-08 15:14:58'),('f4ef85ad4b7f24a7fa13b83e5575896bab0b70706dd4745d837f468b2dc3d8f9a6748c50eb97a0e3','576ecb2195070de2c01e2dd02189694e14bd48b88cd5fcd6fc313837570d7c422d6f54faf02199ab',0,'2024-01-26 08:38:35'),('f4f293fbeea821dfef7b54ee2bdf787e3542374c53c4de03b0a47544330d9c947617c8cd096ee46b','10054a3ffb220491a3d222af2b8ccef3acbe221533fde9e4925d2ddc4bdc8056cc9c52c89257fbce',0,'2024-08-04 15:56:13'),('f4f2f9d7ff1de75de13e2ca9d3a0cdb43114af2c67461684c6d476cd6529d5814d791e1ef96b4cea','f69eb9c9e3da4969ab93ebdc261fdc08f8513298be626c860beb30d049fc8451ceba53c4cb794019',0,'2024-03-31 12:33:13'),('f4fa710a8829515a4d7d9fc19ebd119f139b896baed8d22b86d8a702117b47c991262c7632129919','14427860af4aeae21f4ded47ea8fffb65aae52543417554ca00267047a08c1ecb851b22d8fb4b44f',0,'2024-05-04 11:00:53'),('f53e7a4861e0f96861bf1365a1a8651ef3f359f6f1f181fc0af0f83403abe41458a7c28b63339915','7ed1763b17eff7b183e3ffe04f7cfdd434a829d7e19553b7e1f290e8515f6cbdaa4bfb6dd51e3484',0,'2024-08-21 12:30:06'),('f542d68b592669a6beab1fc815443053ed0489e438e0e41fb5160db8b1178be4aea236702562b708','9da8de3d2b34bd5606bc339a2cc749ef6fe8004bbf6fec733a1e39257af1c0cb7817efc102cebdc2',0,'2024-08-28 06:07:58'),('f5443b09e2ea498f5604f04099651f1be3bfea984ce6f1a1fb35b7cc8b2d80b79dc50f703fdbbd8b','26fef4916c6bb04d6cca63362fd6d3783674b5b7249457c95a776f4907d4935281544c62b62a9214',0,'2024-05-18 15:11:52'),('f552447724abdd4fa780fa47f01fdba6ee4f03b3dc8233d96ebf89f308c145fd6107e9698993e673','e68a768492ec23d1c94aa07540d2c7bc137a64352eaba23fd67b07294250ec75c999386564489cba',0,'2024-06-25 20:57:37'),('f5698b54e87d4e75b42d28188a1facae48ff6ffe5fba0c95a4f650612c390fb248a4a70eeb16f5ec','8672cca919b410b272c75e3affc64594294c5dbbbb652ea54fdb9f6ed045d30e85392d95a093fce6',0,'2024-10-05 21:50:17'),('f576f83a7f6abeb74694dedfb091be7af7c788619faf5e1e65987a8a1e946cf43d3b2bd6c39fce3f','70ae62e87a063d277035619315c3bb87a45ac904deb6e1da9a6f5b57fb2e6ab01b37f18bbee9197b',0,'2024-09-11 09:44:48'),('f57a14f913917796a8d4db4f42c0794f1c38e97f86a00ac6d8b666f0ceb28a78a77e0282694bf982','28be48782ec843427f109dcf6c8ded49bab92de53de93d6605292ca5de36a54ce78de0cd54c62b10',0,'2024-01-30 21:53:50'),('f5898c07950fc9a1f9767ccc468299b653b7050e73961bb381696de67f9f1532c1b8ef3110e61830','db49a89677b92b2e3b489943c76666c5e55df85b9925f005f376a7d4e7eb0a18984c5a26a05eb287',0,'2024-02-13 18:23:21'),('f58c36f19817a3d65789b944a796df68f700361974534d2de9ce6958021f1fe1b5d230c3ef3df700','16ce0c14917c6fe97e469023418ff7f6949812f3ccc832c4a47a18466d6d25b839df11ea3c485df5',0,'2024-02-05 13:57:45'),('f5a36e544dfe6e34825eed4cca18a4b4c30c9df8f43a03703505bb2f6df2c2771528d3080b389581','054f8721957501fc975b06492acbeb89a93d767fb98970f39e8d4ad224978517676abd6c70988d00',0,'2024-09-30 09:10:00'),('f5a6550fd64fa6a582b9492ca7f45188bf3d23ef2050e99819ad43ec3c50bd379015aa5c1c8f912f','c92b9ed385838ba7787ccffd3741060068dea0733b6ea31011e9b9f145bbab3a7d9cdd2389c8eaea',0,'2024-05-03 07:43:13'),('f5a7846429d63781b37abd05138ba6c19dce40128440068bf1eac1b498ba925546f9589cb1214bfc','bc1e0a43d090d46542c9bf8ecb4b93f77dc5e08a26d6bd3d7895deba354bccc8d70e9847409a6184',0,'2024-01-28 10:58:09'),('f5ac85d3db7454af005e08315ab3cf7b111cd6ed5dd7cef9ce00c64567244216caa0ee4d3378bf3a','b19d5922996c5db0cde8a5c81320ded07dc405185b94babbe7deddd517b83707271538b2d8b102b9',0,'2024-05-10 21:39:43'),('f5b3790297ab1832f17a2d91a79ea6a0f46ed056e5e78673b6b4e9d51aa667facf70bbfed25c92f7','6a60e92b460b03a5e2f3b677bd6493e33e57e3e63621fb18b07ef840980965a95ac03fdef7336276',0,'2024-07-12 19:30:25'),('f5cdb579a5d6280f06c47e22df9408840dbbeb7d1ad7c822bf70bc07e012ff73402a738a54f6e59a','786492ba133e3d51620f3ff8e2aef528d784538dda59e32e1e8e92c7ea62d2d6eb7ff5a14c62513c',0,'2024-01-25 06:28:09'),('f5d3f2ab594675240ad94d6b5e2f0b3390955ce2c8e46b1de7b0c81f9e67fa584ac1d6f0b4869908','5905284dd48009b90e8cece525383992df1292eada2f382b238b7bcf0a62a618e30f6969246ac291',0,'2024-01-25 09:27:37'),('f5d7df8d5a296a855c1d3c6b8868526696520570333fec43f5659bd95ddb9f78945457ee742445ce','475a20231792e3c969a97261bae82e4a10d3d2cc5d9e2989c36ab6567b02f905a52b4f9f2b323395',0,'2024-02-27 16:51:39'),('f61347c8b2b828178ff34222c83ac35b4d650fda6ee117f5dfdceb26f3e52c4fd891788d45390451','0d7108238f5f5123031a63a04eabe53ed6bd777c6b0f5eca10866bd288414fc26954e57d58323e31',0,'2024-09-22 12:20:54'),('f63f826dcd00e5bacdda9184a77985756936460c39766afa92855570186ef1f134ba066655942e53','945a6b7a7ca1f697be31196da595c666fc9c348f5e0acaa685b2cc4596caed001c29c0c60534b43f',0,'2024-02-05 11:21:02'),('f653f8ad480e2d06b52689e85ed53753d305fc53e7187574f8d189a86ed142d6a3acaeb353dbba85','fb3c7f94c451a97043ff63b5d0108afef4a3ba2d27292aeeac7d7f09c0893b94f08056eb78e60f46',0,'2024-03-07 21:17:01'),('f65672eb1a1c650b0c45c2101bee8d13662d322828b1db9eac0bc93a5c3e29bcd504a9655d7cb1a6','ccbb140e75be8ad7f8ca0bc594adea0f1ff518a4d50389cc7100f59b924eb734974aa077bb46137e',0,'2024-02-26 22:18:43'),('f676187ba88ec191b07568e5a40441bb685fd06d1d75341ed4afded2e1b298c1ff025f020850fdc8','f873de39df681833ca01742ee0c6d5aa8dc5b7185abbb7e4b3e7aa5f2dce22ff7c7fa03969125da1',0,'2024-06-22 21:15:27'),('f68f8ead3fb60a81398ce688cddb4c4b6c1b6b9563bc351fe4db6cb8dcf4e9e1d350b9fc5cc627de','ae277363973cf7c333fd26d855da9bf613047a07d6b822c6c936485e518c6549fc1a386285691175',0,'2024-07-07 19:34:26'),('f6ac9d6ccf502edd83a4e5eda9d84212ad40bd984e2795ade166e530e207a02a7520dfd8b180bf7e','1f75100f02f6a90e1a7174fa70974d50aaf260088c0881c00aeda919d7026375bf6639ac9a95199b',0,'2024-07-27 20:56:37'),('f6b4cb368db2b601be9d2c916a92a44beaf36db3d9c083cf0931fe40a807b14799eb73f2e47584d0','2dc456559294fb1fab28bac21907c2d1d5bd6e798dffca29150f2b2a34ca6551d0983434c90d30a7',0,'2024-09-29 09:49:07'),('f6bd243d3086f90ab1d0ac287ed6a501051e5d5708e5b857642a558c3199bd225b7fc2436110cbaa','2e1c163df10acadbf7b12a3f13033597d965a6ab32a6a1447dc582ec0cf6a47abb959c4171c176d0',0,'2024-08-01 17:21:19'),('f6d8008be053bb3fd356b8fa6c83e874c401e11357a2c290032cbe61dc3178fbdc2a701744626b67','85b3b6338a75d284d2654047b7e5a1dcfddacd8f446d4ab9e9156da3bfedfae9cf0fabc76a8fc098',0,'2024-06-16 16:53:34'),('f6ebd9baaaa2037939ce772297a5954be7fb56c7cc24dca3cc13980fb09dfda2499c1e0c973a2029','fd9f9930cb709779fc20bd463344e330f4f5e32d63c863ccc3a79c6cf0f240f6fc5807fcd31f7ab8',0,'2024-05-02 19:08:47'),('f6f1309764161d65b7abec7049e95ea718a87f3a8e31180572da6a2bf7b2b73e4e46fbf4d9a3bd2b','30dd038d6b7e8b47277b638644f29a0cff89fc85798c1266e8877f4e65c16a6c453934c4d76d6cf4',0,'2024-03-07 12:27:34'),('f6f33f3796dd65061da602ad1ca861d5c176d5935e3ead8ba8f23263e2ba7bd729b988277490a88f','62ad994b12a7dcd4515e9929a30b00f810a420568a90c5de4b0d23dc2bdb9ad548a9ad8ede47bb29',0,'2024-07-06 15:21:27'),('f6f4da041720fdaa25d1cb6419338dd0845df6d5f9bdb9f5b19a1d025004387532d4834c363861e1','8aa9fb9a1b8e26c581bf40af5b06b00dbd3684890361a6f8bb030e47a5b7f1f47ab11418d5da115f',0,'2024-09-24 18:57:28'),('f6fb02964a63d850c2919705961b0fd686de8de7c6a1162498beb07f645fb45c6ab1be3212f52c0d','08544bc6fb8ba9ddd95f1aea95eec51291e2fe142143a0fa064f386b387c7438752953a28f636999',0,'2024-09-30 09:44:00'),('f6fef6050e1bf671d203cda534e448eb34c43c5ff551cb10446483dcf6ebee87bd5f768624509784','2bf863060d4e8be73f1bbbd9dc87331ea8858562380d2ba4b16d66665408f93eb54b057484c7abe0',0,'2024-01-26 10:30:17'),('f7003a0a358d3086154da08d3ef9aa46c1e23b2e185d366e36308338f7bada294e0d6a8609f69db8','1d918880d593c176bace92214c5d5e1e2b20651e5da347fd4165dd58729fadc136950cce52242ce0',0,'2024-09-16 13:32:14'),('f722b613f32463fdc13e21e1bea4afc2b12b60a1e067f9ea95151c61d1fb167702035ccf491a1b1b','10418968b615ee17c206e460ccc5c4b49c6b31fbf7aea87f18ea525522542f252f1242d1adbe3103',0,'2024-02-23 17:26:34'),('f72a3e7eb36c43261cb912b1c55a0a1600357bbc5408ac8a5de1694ba9cd4cb77b34a59a44e35e2e','4e7d9184b6b86c167174ebc907a0f5c238aa1d118e447ba0cb66d6df27d7f5e99e64e49ca14de9c6',0,'2024-01-30 11:23:04'),('f74932e8f149836655aeb0deb2fb97ba8fd4115fb3262fc31381e946a3a94cfab75f9b9c993849ec','bc53bee2fa35bc60c62146cacee7648b9bc6b05db7aabd8826a949e4e2e7b9d26ed8d08fab9098d8',0,'2024-03-28 13:23:32'),('f756b23283b34620dce935c3b5b324e68fe795816ef8ac5b96b71f1176ce2f269bb555b7c78e8663','079c158939c7e0468bb78eb8644b8e8ad92c0e3ff159422c5ea90361482c91e08f5d14b33f432217',0,'2024-05-18 23:43:20'),('f758f8fc1ce07e5f37a26e26b66f0a80bf451dee77337aea9531aa5c75396519eccfb7c2ac3c584b','8bd53e2d1f58485b45b233359513e2f53ecadc32830428adea088aadff203f418efc509f616a3eb8',0,'2024-06-07 16:21:24'),('f7627362146fb9a9526396ae05d4abc41ae753c853d3929d9f6df8c13bd703349c7221bb1bdace0d','4a82dca88e6a8e201402de58a36a88f8d100a49c07ecf7c094d80536529e4c26ba06e52d9416f9e5',0,'2024-08-22 07:10:32'),('f7664bd91a8339993e0a6085c5a964c222f166004e14849e8633b3d53ddb36101a5892207c3068bb','b2f3af0d887062f51bba26fd9d27b764eafc9c7039890fe9a8bc52ac0bf8c8ed9c2c0bd8ad0e953b',0,'2024-08-30 08:09:07'),('f76754d7337a396c0b75f3432bb308905fe215f7734ed164f4582eb05f48db14083dfb73bf834c26','029dbda730384bc09c16cc34e031a9be8577e625ed8d5d2361003e81d3d39154199a9b2c715e53e9',0,'2024-03-24 05:17:13'),('f77125d2c4650ea0b148ff1bf12198e81b635966fccea8d482abeb8f585406b209ae17a37f756ef8','44bec8c0a068589de1f29640fdaed45f226cbb5d4de13ba3c61ffb621737704f541f46a06aa057c1',0,'2024-07-24 23:56:38'),('f77c9836174eb42b69943d50751ad132a3d3e304878b91e145611d5ef3a29ba7f4c4729970607b71','8db4a350de59a4e3ccfd315aac9459bed3399295f1da99ed2dfac6357f3b3f270413c58879ddc076',0,'2024-01-26 19:55:22'),('f79fe145295286eac48608e3ebe499e099ab824f7f88a4145a9837eb20ffe4a9a5269d416fa02739','70fe53c29b41c3931c951f917c81eda22d4edfdd7b52c67c2b07ee585ffebea1ff9070db251b1d14',0,'2024-02-02 10:42:13'),('f7a579c386c6ba3d1350bac57653add1302f2cde9bb033886e95222ed69e3fb9de9d5bb90d89f6b6','1688308f422982b22bc13bbf2818d8d16dc55a08016bba23b91880400583ad0d18693761cb79ddb7',0,'2024-07-08 17:31:10'),('f7b48d3704649034956bf089b77ee44487bb3f29f10b2671c7eaa02b827d88eaa8fd15234a2ecc96','a69f68700ca21405a8cb68502c0eef348f8fcc2fc6a5e07b49a696d5f5570b41a5cf547531bd4129',0,'2024-03-06 18:06:50'),('f7cfec2dcaf109af2f9dcc1f3fb3f1b11fbc08e0ed2c394bb565a1e5bff14db4cb39abba1b5b6355','ab2d313ed8bdb2d6f825187022f23a0e89e3aa07aff86a77647ed0fabb852b16e127382a5a47d7cf',0,'2024-05-11 09:22:14'),('f7e5114490b15409ece205beb02cbd433d3c3de18bba30974f4798347176f7edf11991a9312594b0','e6076f8f507b8945c35fd47150120b2a8bd0ecc09b342a5356728880cb673f9cea4e91e759bf741a',0,'2024-03-11 14:13:17'),('f7eaacb4351bb045d7ac87031cd912d206101d9946239e6ed4bd4a8a701407a408a2d3d1094b6df6','1a5f23611721f02721429c1213c78c42a6179cd850c452e97a2db78350fcc3bb1adee5ea4409a673',0,'2024-09-26 13:13:50'),('f7edf5636fed16dfb36a32a87025d400853705e59658041dd6ac8d4f29ba4995b37dbbc417dd2422','e0d670515aa4a1c4835a414d02037522576ae1dc9ea401ae0f5f932969e277ed93d0f4f60469d180',0,'2024-02-02 09:53:39'),('f7f3e8bb21cf1572121746274cfe0dbf8fb77319f860c7d8ea833ef5ab1ea594f2b712952da66c93','2a0200a99404f7320e65f3088ef7d8d0aaa52a453a2892a74adb875d14af0b2c02226373e66b4bd5',0,'2024-08-09 17:23:07'),('f7f96dc5fc4d811ffec9cae565b6bec1a555aaf505e99ac215763559694ca60f744395920952995b','38b2d16f1bc4168fa1a71d0675e3e94d50318ed1de010029c50ce7f47153600d6d8c9cbc345dd469',0,'2024-06-14 12:11:00'),('f80b269795d776e955c5594916053cf0ed42606b0cc10cc1e53ca12226cf5b00662fb139c33612eb','f1d66290b9ec71d83d0a1327064e6d1a72551c6654db9e8049fc36ed4bf6abe96b08611f0de8e116',0,'2024-01-25 18:58:39'),('f8380a92595d2916fabaaf9ae3bee3a0c040df726a04e10299a50523a57e4ef9ffb11efec295a97d','361ae591cafa26e14d7ec96fc6e3bb785e48fedb5fa15717e3ad5521d58c678f27a76b42f2c2b6e2',0,'2024-09-17 14:19:35'),('f83ebc44267e7cb4c39180bc0766487da95b4d13bb0d0f96fe2369cd00c322753e8c645d1e2077d7','da7d63b4f3ce2f42fd0f082db1ef968800968ad16267e31aa96a1f5eaf45ff8c09feadb48b68b4b0',0,'2024-02-29 17:38:18'),('f841555b7d948f7b68a0e4dd9dbfc59224c2ed419eac2646aa3a9c131d830a7a845c6f9f54a2a382','9fb763c1cb9455372d7a76fd53745fa415090d2043351cb35786055374c5713f2ea147bb4149dec3',0,'2024-07-11 12:33:52'),('f8565835754aae905d317691967d322130f80d70fb0e97e2b35f5f274a76fca4da29c92ed90e2c9f','7c56f3e42629f241883c949f1cff7ef14deb6bdd9f81b8befb166b31797474a6a2c1ef8d52f882a2',0,'2024-09-06 16:09:40'),('f8579653675115ee8913349031a0ffe47db7588b6a9647ea0fe6e6c75562e477eebe7ab57e76c044','21594825f4afc599d79fde0c2a680b0daa4eb99b4b9424016dff6c2ffd267a1ecb9ba183004585bf',0,'2024-06-29 12:31:40'),('f85ba6e4be6c88bf70b0d7f5028671dbdddef6f3ec0aa845527dc884e2e7b2bb730cad2be1beacb6','16ccf658ecf89b55eb7e94ec9510bdd32ce2a6ddb0a1fde5cde3b6974c317e6cbe89dac6aded533f',0,'2024-04-25 08:34:43'),('f86cb2b3cb8176ce45f552d95a5ba89b3ac90e6016cc5e2c6e9802b17d6674b88ff7c979be75ee13','0664905f9abfd7b4f2ce74ed18ca4abd398a2e0c261afc8683bc24052cd9325a2cfc876d580646d4',0,'2024-09-24 10:53:47'),('f8807be199d61bf7306ff42ef2926899df13782439258b2caf1f91a9650d7d422426601ec68c0d61','e7252458c3f0858539020f826cc907d8aee262f554137b65eb876ed6bd0ea477259c8a74a1f4347e',0,'2024-07-31 09:32:06'),('f88d8e80f231b3f19ac394aa80d27f0f379b513e0f461d47b61484bd8d3b27de1f3fac34e6f02cc6','f47afd1bfb006f43588758f13e1b1e3cafcf971c5442a0a08f4c8e91ac3cfb96ae835261426eb526',0,'2024-04-06 02:30:02'),('f8aa584c14df6fe1f443e11792a72a9458ff8802ea90d50372b53b4ba7e8d69887e91a3ee60e3d7a','8d4c2a9e6d66c45a2dc9559bfcff06cd8bcddc27e0607a9e085922d8e4fb70b4a4508ecb60ea35a8',0,'2024-09-17 11:59:42'),('f8b31ab273d68545b644a7cf5322653350c6e1a4fd81dfa5a8a7c53f0a602f0206a55fc4abc1ca04','2f83bd7b32f7cc765a20e2977e1fcab8964231e769d9496d80171205ffa1869d35b43bad9444506c',0,'2024-09-10 14:52:41'),('f8b41c90ca0de437a2de6630cbd3595109dfc1c749ccc5990ad8306b6a7b198426aa1835de28c42f','6c0425c372365a1e593e1ec4446d5f0bb645f497e274f2e79218374476f18c06b1de955b23557dcc',0,'2024-09-28 23:28:41'),('f8c808ca3ef73b4000be6859b31127609151c86eb137b8362a1f97362330362ff78696eebf4749c2','ad04523af04a3a4141990197413b85cbe4886ef6e396e670fae7aeffc2d6ae100474c03fbe744027',0,'2024-01-26 19:16:57'),('f8cd722d9053168ca49805ec05176f86c64ec29d84549e47725729af9c151c45a0604344b0864339','d7ea27ec26f0a7129db4efcc2b6e583424410c7287ffcf96b311b1d6de951ac952eb750efba80f0a',0,'2024-08-22 23:33:47'),('f8ce4fdbcda8dfd58e81488b7dfe7933492ced955eb6536c861240a7092fed82f61a1e60eee3e0de','fa9449ae09148a692bd05166fe4502e1047ad098abd0c01acac77d016febf569c925000663f1219c',0,'2024-01-25 16:35:47'),('f8d5a4352a86278128cfd69ff696284ad708ada165e114eb94aefc90a44d03fd949c1066ac012e9a','1007c6aaf6d29fa02eb80822e4b1d13126ee62d28426189bfc9c701e935e2a141a5792ef95fc3ed2',0,'2024-09-03 14:37:42'),('f8ef33c4c4f44fb4725cb2817952ca72e085998a96ec7a73528eb6c75296bdfaedc709558eaa4994','318522281968ddf3f65b69cb47c51f2f56d173dba48fe002245ac034c8896a0b68a9c8ce32bc9221',0,'2024-10-06 09:18:33'),('f914fdf8a00664c5afc1cddf4ac70ef297a1fd3f21db9ae418d65ab9ea8df61116688abe32f6df2e','05820739c0fcbefa6f3acda7167415c55a67ffdfa87f5b00f90482d6239dee27c44b8847c949e8f6',0,'2024-01-28 12:13:46'),('f92d1e3b0d577685aa39fe3703978253e043208db0500f976202aad21279f59eaa894ea570ad4d24','f60bda8bce85c35186e7fd613cbf82161f35a0364e397c7c91c58b31ef65fdcdd7069c11ae47def4',0,'2024-02-12 16:37:26'),('f942c606be0f7ae4753a1335c255cf06958c93fdbf28d9ed17b7863f2eba62da37b83bbd441cb130','abbc0e4ab57a7dd7c8ac3dce10cd11f12051ab5648d7cd52818e08d7da37c0d9c87df50c15b32daa',0,'2024-07-05 14:55:22'),('f95bac745bc472db08414236e40bb47a9deacfd962e25e228c14b955d199785de22659f7ced9084a','22bea4950d1d53181f09311e5c051a8bb09d6071d2b5496b615600d33b7e333eb04a9515b8659a9e',0,'2024-10-02 10:51:36'),('f977a568718a8916720d6ac62caf801f96bf4e3a48913103b45e42da73844027c1fecce3f8462de9','581f4fc0ea798f53dc29cf067c09aad41f18c3242ea730f737729921093c31c991dbd3a074bb20e2',0,'2024-04-03 10:54:32'),('f987373fa8f01bd6d5434b24b6dd05142af3a18b2bc9b28b70ca6c26b653720dd2214b415d89ab9f','75a726da8f1bbbec2a16df7582b22cc2424a0a7ee38d6c22accf46873e0cb01cab009be0a87fd09d',0,'2024-06-20 10:50:51'),('f995b918beb3d9443c0b03f5c1e5a0709f330ce1020fd8ae00b78d8671a233c31a60cbff10d53d06','403a05dddf41cc220efa5eed4a7034fd62475a7a5ae106b131f6dd28d1480e422e3fb28ceafaee16',0,'2024-01-28 16:21:52'),('f99dc7fdbe2e40ec4daa4f760e68e94590896b9589696f3fd6841fea727941b225a0630dfb1f4b8b','7cb3b88b7d45604db066ac3da3bc3c720186b5d5777d43a8f9334a0abb66c7de86f75736368a3cef',0,'2024-05-11 09:52:03'),('f9b30ddbb6c32b8c82440549f3108825259bac4b8b03e214de57b5d3461e1bcff02552605ee6713c','23d74d21bbd9344051c28deeee1bef7fec57690d42cb75166540ef0ffc7a0dcec87d39c46c41fda0',0,'2024-04-16 10:01:36'),('f9b61d7784a104e82c6f28873b86b9cfe2c6b78eea7d621014db560943a441776ba42dfb278fa83c','e8effb2c21cd625475e8d4deafa0ea8308d6a8d67451adaae4006d0fb148597036408b1ba88176ef',0,'2024-02-11 14:13:24'),('f9c131746fe99506014d557ccfc2338291b1f5e922bcb66adb66a2cdaedcf289611c4aeab199a2be','69a8eb1b0fb697cd6976ecce821d0fed4ecdc4468b02a628f0435a55233356742f17980b47e87a73',0,'2024-04-20 12:34:35'),('f9c41ed8418d08c7194c6a464f4d4ff342e128184caeb4cdb49c923008a3971679f259b43ffbfaf4','86d5871baeb98cfb54decf0ab7675b09f13f60f0c25a37c83af84437060b6d6c4fa6a7bcc98186b8',0,'2024-01-25 06:44:44'),('f9ca0b79da69ac34fbfca94a041fac788ea0da12f9185ab8b2eec9f57e9e7af0c121fe4b7dfa2689','121ba777b7498f6638a72125f9320077b8276842ea40064badf8806f93ccd2acec2e19f106e94a46',0,'2024-09-22 17:55:10'),('f9e4706cdd6c62f3ae66f5286fca85f23a4eda8212264d997630f677ba50b1be100ad608d01df22e','d7e5a0f6738b19e6661c459546c07e5234c6da64e5295ebc22c0a2f7471bfd0d90dd32415921387f',0,'2024-04-27 20:27:36'),('f9f906e520374cb51ec78c1078750dba1062bd3ad9fba22d0835abf33ce3c781bb94f902824d09c1','37597fcd868cbd211636f60ad66cb0e6085690db507f6b27b931aa14557f868d092a9c099a9cc505',0,'2024-03-01 12:56:13'),('fa070f5ebf1290f39a73f90b0947bf46cb77964ac71dc4f9cac18594fe37ec5b6774c95502dcf1a5','b3d723cfc8aa4ef6bdef29e6eff99af7ca9d00d204ae58808e020d986867888b332fa17a547fd929',0,'2024-02-07 11:33:24'),('fa102d836876413f4d815050d09acb311dad770e6c123cd73a476dde295a44f5e0165b5fb89fe7b6','f0095868687bd6dc86d218b8aabe29ee1f453ddd1baadd6ed7b977ffa31ddad0e27b85314bc25f89',0,'2024-08-13 12:23:53'),('fa22d2f929ebd65ef8d56145f2c3b38e680a3f8aa86bb6944fd04f5e133670c86c9783b918f0b719','d3e8d09c2ccb75d21890426fdf805c48d32bb8e9cd88e89ebdb2ed09f0012ad3fdebb825c8f63863',0,'2024-03-06 14:06:46'),('fa26d0c7f2246ce71b6fd43aa33a6464b376202613530ea68bf85e35ba205006656aeae7d86cd578','60bc1b469ebdf580b715e27421a4de98142ba2636e571cdb3e7c916c0a3a328bbcb52b17797f6f39',0,'2024-05-08 22:10:15'),('fa2a4a512dacf172f491e182dc0e62dca4e47d14bdc22677b65c61256bc3694f48bf6e2c7692cdbb','5e1a9da093ec3270682ca0a45d001c9216ffc620dd7f7c69811741519336153a64f0ab8419f1ab54',0,'2024-03-12 18:35:54'),('fa388b69c5e7b51d36edc8a4e48d66afb88b1a58a5abf8c6e1bb7c97740391e5091bea7fe05b5ad5','4a5dac745dc051fe0c9bd359e648f29c93fcbbbaa7f39f2c009f6aea3d8460fe2ab6c8c0220bef8a',0,'2024-06-18 12:14:49'),('fa4de38364d54360dc52aa34cb5d6ec3c3f6b0a6bdcd90a7b1b9bf9e2098b194568219f4e5b63305','3f530d460b1e96d225c81b697325dfbb5b070a33dbb01c2a159f59b318c0e1f1232df41eb9a00b2c',0,'2024-09-15 13:48:17'),('fa59ba4c8ff26877da970d99cbfcf92fb79bf68673485901f8d833f100c1886eb70ff82d468ec1e8','ab4b2cb3c0231f26f0efd5d55b9a2b50f2482872657b4551e5199b7a1b41367c6443b390094785d1',0,'2024-03-28 20:32:34'),('fa5a0f5ac5a609a83e53b513d0774667303b274d1147fe2df42db129b0c3cc99ad0c66823608b73e','bcb132a02b16d175943927a08243ce749a953186a2a2888e500eeedabffc57f5a6f9592cbad3ab81',0,'2024-03-15 12:13:21'),('fa803489102d8070565a2446755e38a1ad7a93e04bd04047727ccfaa13c45ba98e2f8b83dafcd243','6cdb76fa2795ecb450fa58476bae7952cb6fd778fd5dee9535ac9fe33648bb5a96f838b41743fbca',0,'2024-05-08 21:08:00'),('fa88fb562a71ba784953358ffa9ab9704af1a77374fb2b6570b77033d7870d4d9c3fcd263c5675b9','ce19f1f84bb2676353920dd13460a3f309c3ba4ecdeb84fd24ea2ac19611d313b4e216c5876c0c63',0,'2024-02-15 12:23:08'),('fa8f3f19afbbb887977bda73e37160841160952a9afc3ff10d98111648634ca246cfbf694f983de2','84b6fe1ed0ff0e0536a36b669c0953966853f010c14d74c820d76fda1e4f4fc9ef2933dd34a592ac',0,'2024-07-26 12:33:56'),('fab991074b613ca4a40fdfb0418fbffbbf1a653a4159fda7ac3432efbee656dccbe92d16ce302df4','ccc45f8455a1f5e5a9c0f10a39531fe3a348d106b164010ecc78ea177ccf1f0226a5841219436db4',0,'2024-05-04 17:59:02'),('fad38bcb893d6342124ac94b3e4d38c747673a70324768672228d06d04fa854cf58e1f8aac728c72','8327f39de27f9acc65e61fcca24b904e5beded5e5bfb7a08f364d6e89b7ec44a270cc655baf6eecb',0,'2024-08-29 19:28:32'),('faf0dbee08dcb9f0f63cfb9551974af695374fd0fa9be4e25c59b056b5d0ba88bb88fdbc0b2bb882','1ff9a353a8977a75932a37cedd56cf9aee90ce610c9c0893d362491afeaf754f841a48e714b5086a',0,'2024-09-23 11:29:16'),('fb09e789e83e9a48bf6e3fe613ce02db501ad65aa2b373956966e7f4c267217e1ccae8555a4fbbe1','2f01fd873fd3a01b913ce0f9e9f5951a5e64b525166da37021d04451a766b99b2636c719475729d4',0,'2024-02-22 10:40:22'),('fb1119ac5c5a7b5762d1de51c9d99108b7d49c64ab7a48e2e36b5ae6841bdb735602e07c287fe904','ec92fba0d153358e88d81dfb8b60654e44ef16f84f6d5b81d57bd3de88524804c576579278879230',0,'2024-04-30 07:43:47'),('fb213b14d81035285c09218a89e34596625bed43909642327b8f7d35313bceb059c1b809bd7f354e','696e35de2d66b920440996dfaa2fc13f99544ccb3ed021e6b40c0b862f041092094bfe89f2f3a313',0,'2024-02-07 22:36:59'),('fb272d1772086812c91018111e6da0197e1d98cfe28ccf4a6aff1a506e73d7a5e5f30dec1ee2b51d','801113aa417478d4e25d12e16f011ddfa12ba74b9229167ebc8f4523ad8b7b4469655e66b50ea033',0,'2024-10-04 10:18:34'),('fb43d3fc21f6f4d2c3bb8895a654392c3b4d52ced6c22f538d3b41b6ad6d696c55712096abdf4e37','0dcc9bd9cb0c022ac4926370a602f647fe0716ced067346a25fabb6f1023dca970e2d3b58a96a322',0,'2024-04-18 18:16:13'),('fb525781479989cbf07e29e58ada2b10eadbf3c6eb4ab2876dce7d6df49ec29c144ae39cae6f6b53','6b6c96d412549190c187564b624f14eb5806a0310a3d6b895148928408dad4d9c6daaff725c4b78e',0,'2024-09-07 18:31:46'),('fb650defda5879db4219bb5922c01b5de4df1a6cc5000887618de7ae7c204dacec007682fb09d5dd','493de2dc5de46a8ce6b4b602dfd1d83adc1bed3a6b1acb244b48345e9687e90abae6c7175f5e2af5',0,'2024-05-31 10:19:23'),('fb6a9d75fb887338ce77c7943250139ebf2e1482bea862b3fefaa9a985fc117b689caa2089bd7d9c','3da0fa8413c4cab551d3439fb5f02592b67a9e0fc15818198acd125a3a332245e1f7ba42427ac8b0',0,'2024-09-09 14:53:42'),('fb7fc1f89983313920aa2257a26a9ae1e4e19494efc60f5bbac093cdeb4ab2ff07de10f4d7b48ba5','a6c6e67d3cc4c1e490e39f714607e860d37983dcd54ca2c0e7e5eb30f2cb034a596687a59785127c',0,'2024-02-01 10:32:16'),('fb8c5e26224657434952bb89282ee3b946d0329d823472551c02aecbd8ea35f11733d0cac2663f4d','211d68c93e64fa2b249e675c5e2972e209dfd8ccb1c364252aeebbe6fab4886d2b10d19b4d93417b',0,'2024-02-07 16:03:35'),('fb9b79f5ba293fc243950538c11d96ecef41b1dcaf3c1de572bb47af6e02590dcb2d13bc22f24f71','9dc3085b24013e5540f14ef3c56a6558e8138d4f3ffadebccaddd4a45b52f184f9a7bb195ccba1df',0,'2024-05-21 17:39:42'),('fbc57d79d745eeaee69e9fca0daddfa6fbf2868bd34ca01e9a1182272c657fc566a12da54df4c5c1','6fb6686087ec38332a6a4e02c2f6c13c334a3035d7c1c126ebc2d45cc7395869e8f78389a980de36',0,'2024-10-07 13:23:09'),('fbc5dc8c9a9780ec64290179fc7a4f6cfe939ef9d503325d411dcadb03b67d4785effa4e5ae10dae','aa574a524177548fbf55b9daf77d1da8db7ce67e12b13ae31ac372a98cf8952b28715382ec27655e',0,'2024-04-18 10:37:08'),('fbcceea53691b0f4ddd3baf97c614c883d4a1291123953d04f6bd39c98b1398a8d3839d1c46fafbd','917907646296f3d841b359366bfd193cbbb2bcab34745663c4f85c80999d5e09a9fe66383a6f03f3',0,'2024-03-28 17:58:28'),('fbdc726f7f76ab7e58721e935f0ebe33aae7a57ba60924f2032f9c9fa27d5e12cec90df533876b94','9b345093374dba734ce1ab9e4a0419b22b4cfbe718fd8700189f84b41aa2edba332c4d46c0da60f7',0,'2024-02-09 17:17:18'),('fbdef3b0dc5dea21d2cf2deb021b464413eb06d66ba6839f4851652007b353b5b2d67691966a0d7c','82ebecdcd36e229dfa9a2393240d923a3a682a53ccc91ff626eca48f1890add7f4d990586d9e58e3',0,'2024-01-25 12:57:28'),('fbfa723a381811f79c3893e89ea9474ce48aedf562a02e09f36a0ecc7265b6ea9988cf9cc6585827','ca1544213e554e48f2978c9bed57a94b90118d2ec59ea08590663d755adfd27134b79876cbbd743d',0,'2024-02-18 11:17:37'),('fbfb30c63337b45a91e80c2ff4d3b4911c1bc945b5a0ed17748b6f5a9279997e839b6ab1ba192553','a884c2d03cbac8f9f530a184e83aec33d8d4b242fbfdbd59cc77d5ea9b7160562b730ca1038f1c64',0,'2024-10-03 00:14:29'),('fc02da1a7553a78992baf7219228cdb792dfe3e05eb58be8d0f24b017ab70ab1ddae282d7213f5ac','00f5308eebf27e8a1da591214b63ad04fdda22875def7f1e4f18716a9d3d1f799555922260d479a3',0,'2024-01-25 00:01:33'),('fc14b33ce67bbb5d0ccab886b954179a83b492d883c8cad6ce4b0e8995224767c760671307494e6b','8c794ab103e33f5b360d51925339fff4137e5d6ba9c6b4753efeff1a6ffcc77308b6a219dfe557a8',0,'2024-09-16 09:19:55'),('fc170b57dc39f44c52d0b5f44d7db5170dde3e8635941dbd1e2ce7faf5a20fd0a52040059716c225','52390b747858014f9aa2dc3a89707c2bed7d72873337ae67bd64261d0d7dff9146102b59fbbba602',0,'2024-09-30 13:03:22'),('fc17353af5e5711591d009e7b28829a0170affb239bd86219b644aa440af0ee58ace1ba85611714d','9c7a553a658131305d39564b556755aae36a902a495e30de50b2adb112754f029c2f89907ff24366',0,'2024-02-08 23:35:43'),('fc1bf4eaafb683b7484f701bdde0332dccb581e988d51232f51f745260e2e75ab95759e09423e2dd','c411007188086baef6e13f6d0e6961d458feaad05c5ab21036e2238d4106475107df5d19c9af8586',0,'2024-08-14 15:37:58'),('fc4156dea5b6d87f916027e0f1673a305b411f038d448700e306d835a3e058c0e52ad7ec5ba240ba','6bb89113026cecd4a5dbf43c1efe60510ab84c4dc25fba9a76887275e3412004d7ba0066ca2cd312',0,'2024-07-01 19:36:04'),('fc845cd5c825d2ac3c45631b121efd0e09639e0fd13e2872753824afba59aacb4f5ff54397a9f39f','3e72f40c6314821a2d8ab189901cc1769cb83138ae1dc72a37aed1271cbe700fdb820865f5afffb5',0,'2024-06-14 14:33:30'),('fc849aca3c14ab74b4a2108c860e1afb36b459b6eab3e5a656a40769ab87cfc04f6598c62459e9a2','8bd515f02d2ed2d21960c2185d742409a3597dfb886d9de73977cb790d260cd2d359aab5abd79a1f',0,'2024-03-24 13:31:24'),('fc87be3662cf647f5cb3674fc464cd06e02c387340ff0478561d0d889e2e1da042ebd960a7f551a5','560c2a7126c3993a14f20f5405a51ff684b6a90550bb0d1d6c28870e7dd0e3fd24a34151618ffa64',0,'2024-04-13 16:29:25'),('fc9ee06e207f82b24d3eb88aa1a230b86705844bafbb82232b6851ba9b59c956364df8ad922f340c','4b23c2591d09dfe330c04c841ee5ab15179aaedaa56321a338058dae4dc2719607f4d96630b5813e',0,'2024-09-17 23:11:53'),('fca6eb6fdad8587337965c8550767fb0c30295d86a36618cf2f7113f0380e97a464490f011434640','fe4c5acf1e2f4676cc7b0e2647ca318264013908982eb4a81aec06f06102879fabe5c6df26a3ed60',0,'2024-09-24 11:46:13'),('fcb3b775bba93fa8c3cd68763fdc3b33c840ca50e7980e5d9de51e2c0d92a3112287fe99143f56c0','58876ceefd1f555b2da6adbdc4fec2d92a0ecd5e63905a9b3d7f6cc301c971aa2adc41301ae593fb',0,'2024-06-19 11:35:09'),('fcd03660dd83ed9a64d949561ecb2dbaa181f176db7ea9faadd024405688886c0e5541c2718b7179','5f283642133b0212aece4ff5536c3a772ae8ac03969f30af0d1cc49a676a557f698906bff0fa484e',0,'2024-04-28 20:02:40'),('fcd5c3cc1e374ca8c46d7179205e27cf745238148d7c130e1a1db18ce25a526fdf7f58ac67b5877e','cce6ee61565226acb85fec6f966bba63c604fe60b6bfdabab16794e7901c3eeb08d99d2a678bdc64',0,'2024-02-02 13:58:32'),('fcdebd7d6c5e0ae90dd0a9b921de1da347a08274a3ad49cfd916c142c584f866f3bd8b0f6715a5ec','91d60ec16fedcfde39f71ae0e521ca7c68ed406ef5bbd5ce2fc0dc96c61cc8c7235e109fffae1f89',0,'2024-07-02 06:00:23'),('fcee3282839a70a7a8b040dcb2bafca36344169213e5b9924139e1215cd3392b630370816b53501d','93a15e6f5ace2d48b7d8f41e0446b037cc80270275e255451075b3bc792b94106d7c1edf5712ce9e',0,'2024-01-25 20:28:05'),('fcf6eba0b2ab7d2efc0015e1f9e5d031328374587c0f1d4c4497455afbde920212f524a5eced1fa6','13e57b284a1d7e7a00c079852e7ed627f25edd3e210271b4504cfd09f069089a33a60c16384d9c16',0,'2024-07-21 20:34:48'),('fd223346abc2bb039d048801cafa65b0e9ad9a73b0551d032fa7eb966e1b6dc6ea51e9c491960d71','908f071d4b717775fe7bd99cdaa369d87e77ba5816f525039fd79de8fa97f170a880dc7b6b8adec2',0,'2024-03-28 13:25:28'),('fd2bba0c0fde916d5fe571a9ec2210dbd61bf94fd3bdf2988ce1b98a04bb7e8e5bc784fd564e64bf','5d57b1fb590c280d37bf7becc0ce422ba82072f2c4dfe5658610ac3b0918dc038bed7536005280cc',0,'2024-04-09 00:35:47'),('fd36f01c7d01438e0eaa692cca4bf7d03e9749df993d59a8807030d1061dbf08f469d4d8f4c71952','73257f0ed9d587a0b67679a9d654499435fd97383e710e3ca656d1d25fec1b8176c25beca1a15f1e',0,'2024-04-10 14:24:51'),('fd4409df2c78018b86b2e0744fe7dbb2a851dd250030537d252de6f751962d2bda1b9264c0b0af7f','16f2d021f0fdabbd2bae0692843ff83632fd6c905c7187fe286baaa0e9fb77b4472c5f10a905a219',0,'2024-09-23 09:09:13'),('fd4e9fd07ba2697f4feb9cca707f0f124908e48af967a111dd63dc35ba46a16bc66cb519371e9829','c2b987b9d20aaa5671aa4ee1a418a8d27dd106648a2d523d57188f579a464eae24c7ca706e18e66e',0,'2024-10-06 21:11:07'),('fd66ad6f9a5df1a62654d2fa3f8b5bcc37a19f17b2b0fc7f5a4fbd0dcd0969e4a01bbec61d5bee32','748a2f503340fcc7b62d42b8705e5bddc156a5ee5c01fe539cfa82858e2e113119766ab3bf462a6f',0,'2024-05-08 19:15:17'),('fd7b3589b1f2739f917eefd9f4fd22efcf3fdd59355306dda338a8fb26c92a8598c2c6cd0271b9a4','03a910e64d8e7a9869ea4b7e907224f04060a7a3c73a09f687da710063174a0306e1f2e81f1069e4',0,'2024-09-06 21:17:32'),('fd8a88cdc1aa6eb69f2a0d33681acd602f4a5da16376aa1e490e556ca11dba20cc622ebc67a96ee8','d8cef34277d29666289ec515d929ffa0f112d8fd8b30a735eeaff5c079a75280e44cde5d5cc4c121',0,'2024-09-17 06:24:02'),('fd8af76eff2c398228ad0ccff602fe482bda4a5b62b5d9f7b424a08bd07f85c3eee226d461853bbe','9312088f7acee49e0e8e7817e1db416ac97217b233e5befb80f5fcc85874e085bfaff0d5fe354e78',0,'2024-05-11 14:09:01'),('fda58cdd5312149c3946c2eeff3b66f5e184309fcf86770bf29326875f4af584204eb85e1aa2342f','09f1226b6869c57c67fd4eaa74736c39d78e971ecf5ba71d54dbbe416a071267743107408eb4d197',0,'2024-04-28 09:11:55'),('fde74a56f382ade7969e35be4613ae51f961424cf85f0eb7a458de2e6d18e32a2c791ba709df0907','0ae3ba3998c5e37749c88d99a2104f125a9f9c83e09b5072f45c69239fbb1c78d0d871bb2d8f45e3',0,'2024-02-13 15:17:59'),('fe04c33c2068903253b05178520fe84b38016e2922bd060d344e03b88038363564dee0c6770b391e','7219ce4a823e37ed9766213a29bb0130bc920799a47608a39fde9f48b5e1a2c94f9669ea9e21048a',0,'2024-03-26 11:34:24'),('fe05a045a6b3fb56b5e3b82a9f3a3064dbfe748b203ec05f2ac905db1c32dbc8263a2ec68ed46800','b4729148c02c27b2473c73fa6e3e87bd16f2eae9aad08c8cd072355b2aedb631e14bd59939a71f86',0,'2024-07-10 13:13:20'),('fe0b8b5847ce9ca9d3494d449c83a51e9d4c758245c56422677a430869566898fc5894f9aa8df998','306d272d1bf7b13a085949eca1b21ce862bb485d0645bd0aa86ab015ec574eb7fc2e3531f63d5a80',0,'2024-02-14 21:13:53'),('fe1f31369c93cfd87b1d5ed465a8886030354a13a1bd540e40fa9a5dc8008f5e853e135591a221e8','078e63b2a105b027a883e0cd3ec59cde2ddf8627c7f2bf320345fc6c0a5f13be7cfdadb134897969',0,'2024-03-30 09:55:34'),('fe2cb1142d555c57670d6bf465cb7d04a2fd13062b1ff564d0b6c106414ebe61805af1cc1bf56d44','bfba51615fb8d111c0087eed58439c2cbe09c3c822b2820d2dbffd4d619d96744e47dcfe39bb6de4',0,'2024-02-04 14:49:01'),('fe3124799ccf12716af09730dd99f04880052f2f2ff0f8edc5a8f60a87a284d9609f724342d66584','6945dcc12e47e69f448bdecf1de1098dc1370a4b400e3bcc873b3ee5d8512850dff0bf0d213a9587',0,'2024-07-24 16:28:01'),('fe5429cb8ed325c9bede84668ae941eef4b8ffe41f6b5ca92d7da8e9ef3e49a566d8b00c6b8f60a6','c152c086028b4d8449a59fa096e33ce207be3153ca288642c6d6416b11b927027ad0d02cd80bb6e0',0,'2024-02-08 11:41:54'),('fe70e5a98c44c8344501f92ba86e739862cf80bdb1c156af3052461831d534f099f5b5678f7d746e','c29cc5015e6157cfaa10d71805f1b54291618567ef90794aad3cd07aa06222589a1765010120f63a',0,'2024-02-17 08:10:17'),('fe78b5229bc1d738f90d7e049f4ac895823e36ade6a09dc60f1fc220d4f1e5475b77d306a8389838','15786bd656aff8220ad53aaff8dff9ff2984cfd5ddd0a94ab4ddb5c834b869fa550ac07d11eb5df9',0,'2024-03-18 19:40:44'),('fe7b2130e5324090216462a293bf2d99cf62fb44d15e1c34cc9f9dd8e400ac267668bb166f7a7e77','14a4e43eb7982d93294680ab627fddc3b3349774a8a8e402331eca9868e81a7bbd0659e56ed9e427',0,'2024-09-09 00:30:34'),('fe87611d2df89ebcde74cbb2c3f97e28b49deb666c05e1a0f427c3fa2e973666433038eaec1619fc','37c12c50c778b6e5dc1192ef720dbdfd41ff0bef7089c55e84655e3e8bf942630ea273e934c56e74',0,'2024-08-25 11:17:23'),('fe891f6aabe881b6a8dd3433f89e1a1ff8134ee03e72bef3c00a6802e7201b192a32d543bf4a6c1c','37fc164283d4965ac0cab094a9449313de163d0664b08b5306ef81e99dfc4b3663a9ec4d2a5461f2',0,'2024-01-28 16:50:18'),('fe8d34b5079742a6a213f3aa1e35b67ecb58f6e4dbad2880a070c8e65ed55d269253ba408df56a7d','da7eeb25474950a56661b2938ad7296934aab2bd02f8eb1b5de7224b7ef297a34656049c98a37501',0,'2024-07-31 19:59:09'),('fe903dbd2455bc5f4364e1d547b4e6b479c551ef06c3bd624425383a72eaa188c8a2613448ed6dd0','7d150fd3d3ef27f13291f142d64a706b66eb46029d1baf1a5de0eae51016a9761f452588381c9024',0,'2024-02-27 14:21:49'),('fea2132b9b54e8dc1e1cdf691749b2c37b75b308c09dd623b900b10af12cfc0eac8bd834f2c1d008','65ff5486c375eb4c7786d7f3b94c4b7c52ecfc2735dc9095c339806d8c44b7c48523bba748c845ba',0,'2024-07-29 20:53:35'),('fea3c9e56f6c91c02801006bff03d4cdd349a596fce6fa6b692f2957725349d3b8df6dbb4c4c44b4','b6beab36c4c267f9ff14227f7ee8644fcc74d8b70bdf98a5d0dd5f7f774cc1f508d0bd815d89b0a0',0,'2024-09-25 16:08:38'),('fecbe075625278dc066fbd712cb3cd3625ed31bb086b096d0b4f8aac94ea894e87134bbc266a957f','2440cedbf867b14e788c08a4414ef535796a5fffc6d5adc76754c18ed88d33e75b3c461a9b377f5c',0,'2024-01-25 14:51:23'),('fed5fe320c2302a57afd3aebd67f438bfa500b8b54f274409cd7060f9beb1093e895a2ff9204cd77','9340150a471cd8aa259bd4e29128930c456b4a8a7c1f4b9446049884e26e24b9980151cf42dfce12',0,'2024-06-28 09:43:02'),('fedbd8fa83a3c81f7e04cd110596d0449bb2d7f643a7581988eb29bbfb954aecc1a1428880929c74','e589447151365a76e197ad80597ee298deacb169dbec8c454d406d645803e0c14b0c0e33cc37438c',0,'2024-05-02 23:28:26'),('fedc21a7dd1530729a1786c37c4293eb102c945bafb68844f975af293dbac3aabe1e6d44666110d8','a992feb109c755d9ec3c1c64cb44371a404ac4c2991c2835450e982886483ab1d437a3809fe47d62',0,'2024-07-24 21:09:06'),('fede38507538189945616f99e82ecbf9100d223f82372c25f1f50e70d59bd950689ffdb1167c0596','10a65bcd2fc9d790c4d99a7d495d50a795abf6dd567cdc2162fd9060bf6d3b17e2d37f402bd44d16',0,'2024-04-18 17:16:27'),('fef6d4b61bd72f69a49005b088fd9e1971f838e834b6dc2a9bdac0a529385e5e39a7e1013301233c','516811efb87ebeae15c8b15694c372a7b50abb49321e2b20837d023b881ca9cda6de0670013025aa',0,'2024-03-11 18:17:28'),('ff06f107dc2ee3cc02c47eef7dcc0bdc4490adf8b45101d0c2542e0da8a609f1eda51d3b345aa8ac','942f18cacd2b53c6ca2cc552ea59f8760dc1de7dab83b6c7626717e08d9fd2ef9559f0f672d32b44',0,'2024-10-06 14:40:58'),('ff0fd2c59c5a495bc7cb587a9ca4cf9f0980416187c3e0d0298d689ae4f5a75b65dc1ebb7c61b8ad','0f73dd611168350c7bbde528a0169292dd085b0ca28377aa62752043c478f43cf181a1a0b76226e5',0,'2024-03-15 05:49:25'),('ff26ab86e232927829f6a919b48167de9b8c363cdc2dc7a69b7065ad867859c85d9a824c682a672c','977a913e64903e318ea6c83d8f665cb47ae00782d8b1601320b5529ea56a247508d714458a3640f0',0,'2024-03-19 21:52:31'),('ff3714f1aea81586cb4e14b86b5592ab0a22ec93c9eeaa2964f8ab9f0406e44fa7f7ba61290efded','d2e254d880c3f44fda5294e45741332b16b787329b63d1eb3e6d54a5dbb55837f21a496eff13fede',0,'2024-06-14 15:07:18'),('ff719340157b4672cb2654936bebc6b2e7244c38c9c4577eee6500c9ed3906aaf3c0246fd1159953','65cb629999716a7d0f55f8d49f5d766f2d45559fed0a4ce4a95160a3c396040678c4f7de229142a2',0,'2024-06-20 11:37:10'),('ff777361278990f8f02e7cbae7e45fc54b64f49c10f14c826d717d990402344c995b940882642e94','133f0346e10a4785d102e3a9e476be1c2447d02c0c0872b2c0519a334eaea933040b4d9a71f623ff',0,'2024-03-27 21:51:22'),('ff82cccebf3482798fd8698cfa232f2868d76f82e20729d7bcaf9ddc37b88519d7f6b40ef9d08fd9','7e3d64ecde108ae4d0cba520fecd20b77e2b91cc75c50e6ffc3384ac9912de578ce75339c8dce532',0,'2024-03-02 15:04:18'),('ff83edd46e2d1ea5e08b07925285deffbd54f9a28dcf82f2c7f6b6f04c2b413a6e8d32671bb169a6','e4094f12e6d301c5ea4b45f8b42a3beb5a26ade3e2484015aa65e6d6a4f5b424ddf6516130d344d1',0,'2024-01-28 14:42:45'),('ff96399a65ed953f80e9925342ab92c13f693df7aabffa4d4e1048e0339aa1f0c437256502e3e797','8494a92b72be002933d08dd763929b852da0e2dff44082dc7c7ee7f28f18bc8ddf857b3f32bd9a2b',0,'2024-07-31 21:15:21'),('ffb0331284cd955a75a291767ccb8983509782334f3eadf646c3cf880b1578e21a6374b3872e9bbb','719b3c8ebe6c68be34b212a1ec235f1856e4bd40737049ead43bc65715af5da17e2777d0c5725274',0,'2024-01-25 16:29:56'),('ffc968f27a8f6a9bd90d15a203daf6f9953519a3b730ec8fd52efa63b7b398356a890c5db0720465','ffe86f3426c160af67e956b3be07d79a28f55d0e6ed58a906e7f96d9bb7e1ef68497912d38265681',0,'2024-08-12 09:17:38'),('ffd0e06734977c69fdd0edd31bea331728de2218c56aaf1b32773a20f641a1f9afdf3b873f0528f1','17a652af5308f6ec21b415cb4c3b68869208d6a00c20d393ef0bdcf962fe53593c492115d1b23b1c',0,'2024-04-22 13:14:37'),('fff123e8bcc3b172ae2bc4ad27ebec8af38581d9d97170a34aa6b78b24f6c288d7170d8295fe5c71','6c85a519252e5239040a7771b7b7f64e671c973ab8dfc1d6344d7618da96358db5d623f03adfac50',0,'2024-09-02 20:20:37'),('fff9b30720bd82123155eb2feaed54261572e3897f69a4bec1154f7faebd06799730e9e511397d11','a0e58108ed2cb9c794b491db927990e8a8daafa89855f3bd765cdf7a640e7eecff5ebaab7749e795',0,'2024-02-24 11:46:37');
/*!40000 ALTER TABLE `oauth_refresh_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `official_facebooks`
--

DROP TABLE IF EXISTS `official_facebooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `official_facebooks` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) DEFAULT NULL,
  `link` varchar(191) NOT NULL,
  `social_network_account_id` bigint(20) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `official_facebooks_social_network_account_id_foreign` (`social_network_account_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `official_facebooks`
--

LOCK TABLES `official_facebooks` WRITE;
/*!40000 ALTER TABLE `official_facebooks` DISABLE KEYS */;
INSERT INTO `official_facebooks` VALUES (1,'Envigado','EnvigadoFCoficial',NULL,1,'2022-05-27 21:25:53','2022-11-22 18:51:08');
/*!40000 ALTER TABLE `official_facebooks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `official_twitters`
--

DROP TABLE IF EXISTS `official_twitters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `official_twitters` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) DEFAULT NULL,
  `link` varchar(191) NOT NULL,
  `social_network_account_id` bigint(20) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `official_twitters_social_network_account_id_foreign` (`social_network_account_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `official_twitters`
--

LOCK TABLES `official_twitters` WRITE;
/*!40000 ALTER TABLE `official_twitters` DISABLE KEYS */;
INSERT INTO `official_twitters` VALUES (1,'Envigado','EnvigadoFC',NULL,1,'2022-05-27 21:23:34','2022-11-22 18:38:16');
/*!40000 ALTER TABLE `official_twitters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `official_youtubes`
--

DROP TABLE IF EXISTS `official_youtubes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `official_youtubes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) NOT NULL,
  `channel` varchar(191) NOT NULL,
  `videos` text DEFAULT NULL,
  `max_results` int(11) NOT NULL DEFAULT 10,
  `social_network_account_id` bigint(20) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `official_youtubes_social_network_account_id_foreign` (`social_network_account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `official_youtubes`
--

LOCK TABLES `official_youtubes` WRITE;
/*!40000 ALTER TABLE `official_youtubes` DISABLE KEYS */;
/*!40000 ALTER TABLE `official_youtubes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_frozens`
--

DROP TABLE IF EXISTS `order_frozens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_frozens` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `reason` varchar(191) NOT NULL,
  `start_date` datetime NOT NULL,
  `finish_date` datetime DEFAULT NULL,
  `minutes_frozen` int(11) DEFAULT NULL,
  `order_id` int(10) unsigned NOT NULL,
  `user_frozen_id` int(10) unsigned NOT NULL,
  `user_unfrozen_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_frozens_order_id_foreign` (`order_id`),
  KEY `order_frozens_user_frozen_id_foreign` (`user_frozen_id`),
  KEY `order_frozens_user_unfrozen_id_foreign` (`user_unfrozen_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_frozens`
--

LOCK TABLES `order_frozens` WRITE;
/*!40000 ALTER TABLE `order_frozens` DISABLE KEYS */;
/*!40000 ALTER TABLE `order_frozens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_product_attributes`
--

DROP TABLE IF EXISTS `order_product_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_product_attributes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `order_product_id` int(10) unsigned NOT NULL,
  `attribute_id` int(10) unsigned NOT NULL,
  `value` varchar(191) DEFAULT NULL,
  `price_additional` double DEFAULT NULL,
  `quantity` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_product_attributes_order_product_id_foreign` (`order_product_id`),
  KEY `order_product_attributes_attribute_id_foreign` (`attribute_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_product_attributes`
--

LOCK TABLES `order_product_attributes` WRITE;
/*!40000 ALTER TABLE `order_product_attributes` DISABLE KEYS */;
/*!40000 ALTER TABLE `order_product_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_products`
--

DROP TABLE IF EXISTS `order_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_products` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `quantity` int(11) NOT NULL,
  `price_bruto` double NOT NULL,
  `price` double NOT NULL,
  `comments` varchar(255) DEFAULT NULL,
  `flash_price` double DEFAULT NULL,
  `percentage_discount` int(11) DEFAULT NULL,
  `max_units_per_order` int(11) DEFAULT NULL,
  `available` tinyint(1) NOT NULL DEFAULT 1,
  `is_recolected` tinyint(1) NOT NULL DEFAULT 0,
  `status2x1` tinyint(1) DEFAULT NULL,
  `sucursal_not_available_id` int(10) unsigned DEFAULT NULL,
  `order_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `replace_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_products_sucursal_not_available_id_foreign` (`sucursal_not_available_id`),
  KEY `order_products_order_id_foreign` (`order_id`),
  KEY `order_products_product_id_foreign` (`product_id`),
  KEY `order_products_replace_by_foreign` (`replace_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_products`
--

LOCK TABLES `order_products` WRITE;
/*!40000 ALTER TABLE `order_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `order_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_states`
--

DROP TABLE IF EXISTS `order_states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_states` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_states`
--

LOCK TABLES `order_states` WRITE;
/*!40000 ALTER TABLE `order_states` DISABLE KEYS */;
INSERT INTO `order_states` VALUES (1,'Pendiente','2021-05-01 21:58:23','2021-05-01 21:58:23'),(2,'Aceptado','2021-05-01 21:58:23','2021-05-01 21:58:23'),(3,'Recolectado','2021-05-01 21:58:23','2021-05-01 21:58:23'),(4,'En ruta','2021-05-01 21:58:23','2021-05-01 21:58:23'),(5,'Entregado','2021-05-01 21:58:23','2021-05-01 21:58:23'),(6,'Finalizado','2021-05-01 21:58:23','2021-05-01 21:58:23'),(7,'Cancelado','2021-05-01 21:58:23','2021-05-01 21:58:23'),(8,'Congelado','2021-05-01 21:58:23','2021-05-01 21:58:23'),(9,'Devuelto','2021-05-01 21:58:23','2021-05-01 21:58:23');
/*!40000 ALTER TABLE `order_states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_types`
--

DROP TABLE IF EXISTS `order_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_types` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `code_generate` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'indica si el tipo de pedido debe generar el codigo automaticamente',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_types`
--

LOCK TABLES `order_types` WRITE;
/*!40000 ALTER TABLE `order_types` DISABLE KEYS */;
INSERT INTO `order_types` VALUES (1,'Ventas',1,0,NULL,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(2,'Convenios',0,0,NULL,'2021-05-01 21:58:24','2021-11-23 15:30:17'),(3,'Traslado',0,0,NULL,'2021-05-01 21:58:24','2021-11-23 15:30:19'),(4,'Diligencia',0,0,NULL,'2021-05-01 21:58:24','2021-11-23 15:30:21'),(5,'E-Commerce',1,1,NULL,'2021-05-01 21:58:24','2022-05-06 18:43:32');
/*!40000 ALTER TABLE `order_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `orders`
--

DROP TABLE IF EXISTS `orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(191) NOT NULL,
  `instructions` text DEFAULT NULL,
  `money` double DEFAULT NULL,
  `subtotal` double DEFAULT NULL,
  `service_charge` double NOT NULL DEFAULT 0,
  `total_price` double DEFAULT NULL,
  `cost_delivery` double DEFAULT NULL,
  `cost_real` double DEFAULT NULL,
  `order_reference` varchar(191) DEFAULT NULL,
  `discount_price` double DEFAULT NULL,
  `discount_delivery` double DEFAULT NULL,
  `discount` int(11) NOT NULL DEFAULT 0 COMMENT 'solo se utiliza en plataforma mensajeros y bikenow por %',
  `pco_quantity` int(11) DEFAULT NULL COMMENT 'Cantidad de Puntos Colombia utilizados en la compra',
  `pco_actual_value` int(11) DEFAULT NULL COMMENT 'Valor del Punto Colombia en el momento de la compra',
  `express_products` text DEFAULT NULL,
  `not_found` text DEFAULT NULL,
  `phone` varchar(191) DEFAULT NULL,
  `gw_state` varchar(191) DEFAULT NULL COMMENT 'Estados del pago en proceso por el GW.',
  `gateway_payments_id` int(10) unsigned DEFAULT NULL,
  `purchase_origin` varchar(20) NOT NULL DEFAULT 'APP' COMMENT 'Indica el origen de donde se realizo la compra, puede ser de la web o app',
  `payment_transaction_id` varchar(255) DEFAULT NULL,
  `gw_name` enum('PAYU') DEFAULT NULL,
  `gw_code_transaction` varchar(191) DEFAULT NULL,
  `creation_date` datetime DEFAULT NULL,
  `accepted_date` datetime DEFAULT NULL,
  `collected_date` datetime DEFAULT NULL,
  `deliver_date` datetime DEFAULT NULL,
  `finished_delivery_man_date` datetime DEFAULT NULL,
  `finished_client_date` datetime DEFAULT NULL,
  `finished_admin_date` datetime DEFAULT NULL,
  `payment_online` tinyint(1) DEFAULT NULL,
  `payment_attempts` int(11) NOT NULL DEFAULT 0,
  `change_delivery_man_id` int(10) unsigned DEFAULT NULL COMMENT 'donde se almacena temporalmente el id del repartidor',
  `creation_delivery_man_id` int(10) unsigned DEFAULT NULL,
  `accepted_delivery_man_id` int(10) unsigned DEFAULT NULL,
  `collected_delivery_man_id` int(10) unsigned DEFAULT NULL,
  `deliver_delivery_man_id` int(10) unsigned DEFAULT NULL,
  `admin_id` int(10) unsigned DEFAULT NULL,
  `delivery_man_id` int(10) unsigned DEFAULT NULL,
  `client_id` int(10) unsigned NOT NULL,
  `sucursal_id` int(10) unsigned DEFAULT NULL,
  `sucursal_origin_id` int(10) unsigned DEFAULT NULL,
  `order_state_id` int(10) unsigned NOT NULL,
  `payment_type_id` int(10) unsigned NOT NULL,
  `order_type_id` int(10) unsigned NOT NULL,
  `address_id` int(10) unsigned DEFAULT NULL,
  `is_change` varchar(191) DEFAULT 'Normal',
  `point_sale_id` bigint(20) unsigned DEFAULT NULL,
  `line_businesses_id` int(10) unsigned DEFAULT NULL,
  `sales_channel_id` int(10) unsigned DEFAULT NULL,
  `segmentation_id` int(10) unsigned DEFAULT NULL,
  `current_sucursal_id` int(10) unsigned DEFAULT NULL COMMENT 'se utiliza para la logica productos por sucursal y almacena la ultima sucursal seleccionada por el usuario',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `payment_comment` varchar(255) DEFAULT NULL,
  `status_notification_email_client` varchar(255) NOT NULL DEFAULT 'pending',
  PRIMARY KEY (`id`),
  UNIQUE KEY `orders_code_order_type_id_unique` (`code`,`order_type_id`),
  KEY `orders_change_delivery_man_id_foreign` (`change_delivery_man_id`),
  KEY `orders_creation_delivery_man_id_foreign` (`creation_delivery_man_id`),
  KEY `orders_accepted_delivery_man_id_foreign` (`accepted_delivery_man_id`),
  KEY `orders_collected_delivery_man_id_foreign` (`collected_delivery_man_id`),
  KEY `orders_deliver_delivery_man_id_foreign` (`deliver_delivery_man_id`),
  KEY `orders_admin_id_foreign` (`admin_id`),
  KEY `orders_delivery_man_id_foreign` (`delivery_man_id`),
  KEY `orders_client_id_foreign` (`client_id`),
  KEY `orders_sucursal_id_foreign` (`sucursal_id`),
  KEY `orders_sucursal_origin_id_foreign` (`sucursal_origin_id`),
  KEY `orders_order_state_id_foreign` (`order_state_id`),
  KEY `orders_payment_type_id_foreign` (`payment_type_id`),
  KEY `orders_order_type_id_foreign` (`order_type_id`),
  KEY `orders_address_id_foreign` (`address_id`),
  KEY `orders_line_businesses_id_foreign` (`line_businesses_id`),
  KEY `orders_sales_channel_id_foreign` (`sales_channel_id`),
  KEY `orders_segmentation_id_foreign` (`segmentation_id`),
  KEY `orders_current_sucursal_id_foreign` (`current_sucursal_id`),
  KEY `orders_point_sale_id_foreign` (`point_sale_id`),
  KEY `orders_gateway_payments_id_foreign` (`gateway_payments_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orders`
--

LOCK TABLES `orders` WRITE;
/*!40000 ALTER TABLE `orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `parameters`
--

DROP TABLE IF EXISTS `parameters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `parameters` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `cost_delivery` int(11) NOT NULL,
  `is_dia_sin_iva` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Indica si esta activa la lógica para el día sin IVA',
  `cost_delivery_by_coverage` tinyint(1) NOT NULL DEFAULT 0,
  `minimum_order_price` double NOT NULL DEFAULT 0,
  `business_start_time` time NOT NULL,
  `business_final_time` time NOT NULL,
  `holiday_start_time` time NOT NULL,
  `holiday_final_time` time NOT NULL,
  `db_city` varchar(191) NOT NULL COMMENT 'para uso notificaciones',
  `db_name` varchar(191) NOT NULL COMMENT 'para uso interno de las base de datos',
  `url_pqrs` varchar(191) DEFAULT NULL,
  `url_bi` varchar(191) DEFAULT NULL,
  `minimal_version` varchar(191) NOT NULL,
  `minimal_version_delivery` varchar(191) NOT NULL,
  `email_notification` varchar(191) DEFAULT NULL,
  `mailing_inventory` tinyint(1) DEFAULT 1 COMMENT 'Indica si se envía correo de notificación al modificar el inventario',
  `email_notification_inventory` varchar(191) DEFAULT NULL,
  `whatsapp_support` varchar(25) DEFAULT NULL,
  `deliveryMan_create_order` tinyint(1) NOT NULL DEFAULT 0,
  `deliveryMan_update_info` tinyint(1) DEFAULT 0,
  `point_coverage` tinyint(1) DEFAULT 0,
  `android_play_store` varchar(191) DEFAULT NULL,
  `ios_app_store` varchar(191) DEFAULT NULL,
  `is_production_gateway` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Indica si la pasarela de pagos esta en producción o en pruebas',
  `is_automatic_bag` tinyint(1) NOT NULL DEFAULT 0,
  `automatic_bag_text` varchar(191) DEFAULT NULL,
  `automatic_bag_value` double DEFAULT NULL,
  `is_point_sale` tinyint(1) NOT NULL DEFAULT 0,
  `days_see_ballot` int(11) DEFAULT 1 COMMENT 'Indica el numero de dias previos para ver la boleta del partido',
  `url_ticket_backgroung` text DEFAULT NULL,
  `url_ticket_sponsor` text DEFAULT NULL,
  `activate_flash_ticketing` tinyint(1) DEFAULT 0 COMMENT 'Indica si esta activa la venta de boletería flash en el app',
  `flash_ticket_icon` varchar(255) DEFAULT 'assets/img/appicon.png' COMMENT 'Url del icono en pantalla de venta de boletería flash en el app',
  `flash_stadium_image` varchar(191) DEFAULT NULL,
  `term_id` int(10) unsigned NOT NULL,
  `sucursal_products` tinyint(1) NOT NULL DEFAULT 0,
  `external_template` tinyint(1) NOT NULL DEFAULT 0,
  `discount_inventory_state_id` int(10) unsigned DEFAULT 1 COMMENT 'Indica el estado del pedido donde se realizara el descuento de las unidades del inventario',
  `name_delivery_man` text DEFAULT NULL COMMENT 'Indica el nombre a mostrar del Delivery Man',
  `order_reference_state` tinyint(1) DEFAULT 0 COMMENT 'Indica si es necesario agregar el código Pedido Referencia',
  `pco_current_value` int(11) DEFAULT NULL COMMENT 'Indica el valor actual del Punto Colombia',
  `academy_current_value` int(11) DEFAULT NULL COMMENT 'Indica el valor actual de la Academia',
  `academy_monthly_value` int(11) DEFAULT NULL COMMENT 'Indica el valor mensual de la Academia',
  `show_create_product_button` tinyint(1) DEFAULT 1 COMMENT 'Indica si es posible crear un producto de forma manual',
  `maximum_suscription_blocking_time` double DEFAULT NULL COMMENT 'Tiempo en minutos de bloqueo de silla para abonos',
  `maximum_sale_blocking_time` double DEFAULT NULL COMMENT 'Tiempo en minutos de bloqueo de silla de venta libre',
  `is_social_distancing` tinyint(1) DEFAULT 1 COMMENT 'Indica si se debe realizar distanciamiento social al realizar la compra de una silla',
  `social_distancing_number_seat_y` double DEFAULT 2 COMMENT 'Indica el numero de sillas a bloquear en el eje y de la silla comprada (arriba y abajo)',
  `social_distancing_right` tinyint(1) DEFAULT 1 COMMENT 'Indica si se bloquean sillas vecinas en la parte derecha',
  `social_distancing_left` tinyint(1) DEFAULT 1 COMMENT 'Indica si se bloquean sillas vecinas en la parte izquierda',
  `social_distancing_bottom` tinyint(1) DEFAULT 1 COMMENT 'Indica si se bloquean sillas vecinas en la parte de abajo',
  `social_distancing_top` tinyint(1) DEFAULT 1 COMMENT 'Indica si se bloquean sillas vecinas en la parte de arriba',
  `social_distancing_number_seat_x` double DEFAULT 2 COMMENT 'Indica el numero de sillas a bloquear en el eje x de la silla comprada (izquierda y derecha)',
  `maximum_number_suscription` double DEFAULT NULL COMMENT 'Numero maximo de abonos que puede comprar un usuario',
  `maximum_number_ballots` double DEFAULT NULL COMMENT 'Numero maximo de boletas que puede comprar un usuario',
  `maximum_number_locks` double DEFAULT NULL COMMENT 'Numero maximo de bloqueos que puede hacer un usuario',
  `sync_woocommerce` tinyint(1) DEFAULT 0 COMMENT 'Indica si se activa la sincronizacion de pedidos, productos, descuentos con woocommerce',
  `sync_shopify` tinyint(1) DEFAULT 0 COMMENT 'Indica si se activa la sincronizacion de pedidos, productos con shopify',
  `sales_with_internal` tinyint(1) DEFAULT 0 COMMENT 'Indica si esta activa la venta de boletas con punto de venta propio del cliente',
  `sales_with_external` tinyint(1) DEFAULT 0 COMMENT 'Indica si esta activa la venta de boletas con provedores externos',
  `presuscription` tinyint(1) DEFAULT 0 COMMENT 'Indica si esta activa la preventa de abonos',
  `web_presuscription` tinyint(1) DEFAULT 0 COMMENT 'Indica si esta activa la preventa de abonos para la web',
  `presuscription_end` datetime DEFAULT NULL COMMENT 'Indica la fecha y hora final de la preventa de abonos',
  `presuscription_msj` text DEFAULT NULL COMMENT 'Mensaje a mostrar a los usuarios que no cumplan las condicion',
  `presale` tinyint(1) DEFAULT 0 COMMENT 'Indica si esta activa la preventa de boletas',
  `presale_date_condition` datetime DEFAULT NULL COMMENT 'Fecha limite para usuarios nuevos que estaran en la preventa',
  `presale_end` datetime DEFAULT NULL COMMENT 'Indica la fecha y hora final de la preventa',
  `presale_msj` text DEFAULT NULL COMMENT 'Mensaje a mostrar a los usuarios que no cumplan las condiciones',
  `is_exclusive_subscriber_login` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Indica si esta habilitado el ingreso y registro exclusivo en el APP solo para usuarios abonados',
  `msj_exclusive_subscriber_login` varchar(191) DEFAULT NULL COMMENT 'Texto a mostrar a usuarios no habilitados a ingresar o registrarse en el APP',
  `msj_maximum_number_tickets_buy` varchar(191) DEFAULT NULL COMMENT 'Texto a mostrar para indicar máximo de boletas que puedes comprar en el APP',
  `msj_maximum_number_subscriber_tickets_buy` varchar(191) DEFAULT NULL COMMENT 'Texto a mostrar para indicar máximo de abonos que puedes comprar en el APP',
  `msj_waiting_time_for_seat_blocking` varchar(191) DEFAULT NULL COMMENT 'Texto a mostrar para indicar tiempo de espera bloqueo silla en el APP',
  `msj_add_tickets_same_type` varchar(191) DEFAULT NULL COMMENT 'Texto a mostrar para indicar agregar boletas del mismo tipo en el APP',
  `msj_buy_same_number_subscriber_tickets` varchar(191) DEFAULT NULL COMMENT 'Texto a mostrar para indicar comprar el mismo número de abonos en el APP',
  `msj_exclusivity_only_subscriber_ticket_sales` varchar(191) DEFAULT NULL COMMENT 'Texto a mostrar para indicar exclusividad solo venta de abonos en el APP',
  `msj_complete_information_subscriber_tickets` varchar(191) DEFAULT NULL COMMENT 'Texto a mostrar para indicar completar información de cada abonado en el APP',
  `msj_availability_view_tickets` varchar(191) DEFAULT NULL COMMENT 'Texto a mostrar para indicar disponibilidad ver boletas en el APP',
  `msj_inactivity_subscriber_ticket_sales` varchar(191) DEFAULT NULL COMMENT 'Texto a mostrar para indicar inactividad preventa de venta abonos por el APP',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `qty_products_dia_sin_iva` int(11) NOT NULL DEFAULT 3 COMMENT 'Indica la cantidad máxima de productos en el carrito para la lógia del dia sin iva',
  `image_url_finish_payment` varchar(191) DEFAULT NULL COMMENT 'Url de la imagen al finalizar pago',
  `hide_match` varchar(191) DEFAULT NULL COMMENT 'Oculta los partidos para rol de gana',
  `value_points_coin` varchar(191) DEFAULT NULL COMMENT 'Valor puntos coin, para conversion de monedas en APP',
  `coin_cms_identifier` varchar(191) DEFAULT NULL COMMENT 'Identificador del comercio SportsCrowd ante API leal',
  `coin_store_identifier` varchar(191) DEFAULT NULL COMMENT 'Identificador del comercio SportsCrowd ante API leal',
  `coin_branch_identifier` varchar(191) DEFAULT NULL COMMENT 'Identificador del comercio SportsCrowd ante API leal',
  `ecommerce_url` text DEFAULT NULL COMMENT 'Campo para almacenar la url del ecommerce o empresa aliada para aplicar descuentos desde el app',
  `ecommerce_image_url` text DEFAULT NULL COMMENT 'Campo para almacenar la url de la imagen de publicidad del ecommerce o empresa aliada para aplicar descuentos desde el app',
  `match_mode` tinyint(1) DEFAULT 0 COMMENT 'Indica si la plataforma esta en modo partido, donde aumenta la venta de boleteria y respaldos de tickets',
  `live_score_team_id` varchar(191) DEFAULT NULL,
  `live_score_team_name` varchar(191) DEFAULT NULL,
  `live_score_active` tinyint(1) NOT NULL DEFAULT 0,
  `flash_ticket_selling_confirmation` tinyint(1) DEFAULT 1 COMMENT 'Mostrar alertas de confirmación en venta taquilla de boletería flash',
  `optional_app_update_message` varchar(191) DEFAULT NULL,
  `optional_app_upgrade` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Activas o desactivas la actualización obligatoria de la app.',
  `optional_app_upgrade_ios` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Activas o desactivas la actualización obligatoria de la app para iOS.',
  `service_charge_enabled` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Campo para activar cobro de servicio en la plataforma',
  PRIMARY KEY (`id`),
  KEY `parameters_term_id_foreign` (`term_id`),
  KEY `parameters_discount_inventory_state_id_foreign` (`discount_inventory_state_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `parameters`
--

LOCK TABLES `parameters` WRITE;
/*!40000 ALTER TABLE `parameters` DISABLE KEYS */;
INSERT INTO `parameters` VALUES (1,7000,0,1,0,'07:00:00','20:00:00','08:00:00','17:00:00','Envigado','cali-db','tiendanaranja@envigadofc.co','https://app.powerbi.com/view?r=eyJrIjoiNjQ4NDNhMzEtNjkxMC00ZDE0LThkZjUtNDcwZmU3YWFiNTYyIiwidCI6ImY3MDg4NTZmLTQ0NzYtNDkwMi1hMjlkLWVkNDM2Yjg1YmE5YSIsImMiOjR9','2310.1.0','0.0.1','tiendanaranja@envigadofc.co',1,'tiendanaranja@envigadofc.co','573015080656',0,0,0,'com.co.aliansap.envigado','id6444893915',1,0,NULL,NULL,0,10,NULL,NULL,1,'https://b001-si.s3.us-east-2.amazonaws.com/bikenow/envigado/ticket/subscriber.png','https://b001-si.s3.us-east-2.amazonaws.com/bikenow/envigado/ticket/subscriber.png',1,0,0,1,NULL,0,NULL,0,0,1,25,25,0,2,0,0,0,0,2,10,10,10,1,0,0,0,0,0,'2022-05-06 14:42:00',NULL,0,'2022-05-06 14:42:00','2022-05-06 14:42:00',NULL,0,NULL,'Has alcanzado el número máximo de boletas que puedes comprar.','Has alcanzado el número máximo de abonos que puedes comprar.','Se ha generado un bloqueo del abono(s), que termina a las :dateblock mientras finalizas la compra, pasado este tiempo se liberará tu reserva.','Solo puedes agregar boletas tipo {{ type_ticket }} en esta transacción.','Solo puedes comprar el mismo número de abonos que adquiriste en el 2020.','Por el momento solo está habilitada la venta de abonos.','Debes indicar información de cada abonado, haz clic sobre él y diligencia la información.','Podrás ver tu boleta {{ days }} día(s) antes del partido.','Por el momento ya no se encuentra activa la preventa de abonos por el APP.','2021-05-01 21:58:23','2023-10-06 13:23:06',3,'https://s3.us-east-2.amazonaws.com/b001-si/bikenow/Logoclients/envigado.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'1641','Envigado',0,1,NULL,0,0,1);
/*!40000 ALTER TABLE `parameters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `password_resets`
--

DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `password_resets` (
  `email` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted` tinyint(1) NOT NULL DEFAULT 0,
  `token` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `password_resets`
--

LOCK TABLES `password_resets` WRITE;
/*!40000 ALTER TABLE `password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_resets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_coins`
--

DROP TABLE IF EXISTS `payment_coins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_coins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `pay_with_coins` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Campo que nos permitirá determinar si pago con monedas',
  `coins_in_money` double NOT NULL,
  `coins_used` double NOT NULL,
  `current_value_point` double NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_coins`
--

LOCK TABLES `payment_coins` WRITE;
/*!40000 ALTER TABLE `payment_coins` DISABLE KEYS */;
/*!40000 ALTER TABLE `payment_coins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_methods`
--

DROP TABLE IF EXISTS `payment_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_methods` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_methods`
--

LOCK TABLES `payment_methods` WRITE;
/*!40000 ALTER TABLE `payment_methods` DISABLE KEYS */;
INSERT INTO `payment_methods` VALUES (1,'Datáfono',1,NULL,'2023-08-26 00:36:05','2023-08-26 00:36:05'),(2,'Efectivo',1,NULL,'2023-08-26 00:36:05','2023-08-26 00:36:05'),(3,'Consignación',1,NULL,'2023-08-26 00:36:05','2023-08-26 00:36:05');
/*!40000 ALTER TABLE `payment_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_transactions`
--

DROP TABLE IF EXISTS `payment_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_transactions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `pin` varchar(191) DEFAULT NULL,
  `reference` varchar(191) DEFAULT NULL,
  `state` varchar(20) DEFAULT NULL,
  `comment` varchar(191) DEFAULT NULL,
  `payment_method_id` int(10) unsigned DEFAULT NULL,
  `gateway_transaction_id` varchar(191) DEFAULT NULL,
  `support` varchar(191) DEFAULT NULL,
  `payment_date` timestamp NULL DEFAULT NULL,
  `gateway_payments_id` int(10) unsigned DEFAULT NULL,
  `origin_class` varchar(191) DEFAULT NULL,
  `finish_payment` tinyint(1) DEFAULT NULL COMMENT 'Campo para almacenar bandera que identifique si ya ingreso al proceso de finalizar pago',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `payment_transactions_gateway_payments_id_foreign` (`gateway_payments_id`),
  KEY `payment_transactions_payment_method_id_foreign` (`payment_method_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_transactions`
--

LOCK TABLES `payment_transactions` WRITE;
/*!40000 ALTER TABLE `payment_transactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `payment_transactions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_types`
--

DROP TABLE IF EXISTS `payment_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_types` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `alias` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_types`
--

LOCK TABLES `payment_types` WRITE;
/*!40000 ALTER TABLE `payment_types` DISABLE KEYS */;
INSERT INTO `payment_types` VALUES (1,'Eféctivo','Eféctivo',0,'0000-00-00 00:00:00','2020-09-29 18:48:39','2020-09-29 18:48:39'),(2,'Débito','Débito',0,'0000-00-00 00:00:00','2020-09-29 18:48:39','2020-09-29 18:48:39'),(3,'Crédito','Crédito',0,'0000-00-00 00:00:00','2020-09-29 18:48:39','2020-09-29 18:48:39'),(4,'Pago Online','Pago Online',0,'0000-00-00 00:00:00','2020-09-29 18:48:39','2020-09-29 18:48:39'),(5,'Paga en linea','Paga en linea',1,'0000-00-00 00:00:00','2020-09-29 18:48:39','2020-09-29 18:48:39'),(6,'name','alias',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `payment_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payments_histories`
--

DROP TABLE IF EXISTS `payments_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payments_histories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(10) unsigned DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  `reference_gw` varchar(191) DEFAULT NULL,
  `reference2_gw` varchar(191) DEFAULT NULL,
  `state` varchar(191) DEFAULT NULL,
  `trazability_code` varchar(191) DEFAULT NULL,
  `response_code` varchar(191) DEFAULT NULL,
  `response_message` varchar(191) DEFAULT NULL,
  `obfuscated_number` varchar(191) NOT NULL,
  `card_type` varchar(191) NOT NULL,
  `value` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `payments_histories_order_id_foreign` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payments_histories`
--

LOCK TABLES `payments_histories` WRITE;
/*!40000 ALTER TABLE `payments_histories` DISABLE KEYS */;
/*!40000 ALTER TABLE `payments_histories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `photo_instagrams`
--

DROP TABLE IF EXISTS `photo_instagrams`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `photo_instagrams` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) DEFAULT NULL,
  `link` varchar(191) NOT NULL,
  `social_network_account_id` bigint(20) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `photo_instagrams_social_network_account_id_foreign` (`social_network_account_id`)
) ENGINE=InnoDB AUTO_INCREMENT=760 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `photo_instagrams`
--

LOCK TABLES `photo_instagrams` WRITE;
/*!40000 ALTER TABLE `photo_instagrams` DISABLE KEYS */;
INSERT INTO `photo_instagrams` VALUES (747,'3','https://www.instagram.com/reel/Cxy3PeHsvC0/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==',1,1,'2023-10-02 20:20:55','2023-10-02 20:20:55'),(751,'7','https://www.instagram.com/reel/Cx0_msUOEEL/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==',1,1,'2023-10-02 20:21:47','2023-10-02 20:21:47'),(752,'8','https://www.instagram.com/p/Cx1HSJ0JWd9/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==',1,1,'2023-10-02 20:22:04','2023-10-02 20:22:04'),(753,'9','https://www.instagram.com/p/Cx1PSnFJw13/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==',1,1,'2023-10-02 20:22:15','2023-10-02 20:22:15'),(754,'10','https://www.instagram.com/p/Cx1oO4rMx4I/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==',1,1,'2023-10-02 20:22:27','2023-10-02 20:22:27'),(755,'1','https://www.instagram.com/p/Cx_j-jOJuV-/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==',1,1,'2023-10-06 17:51:24','2023-10-06 17:51:24'),(756,'2','https://www.instagram.com/p/Cx_yR0jMl_e/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==',1,1,'2023-10-06 17:51:34','2023-10-06 17:51:34'),(757,'3','https://www.instagram.com/p/Cx_1wJhsG4B/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==',1,1,'2023-10-06 17:51:45','2023-10-06 17:51:45'),(758,'4','https://www.instagram.com/reel/CyBnCzYOltj/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==',1,1,'2023-10-06 17:51:57','2023-10-06 17:51:57'),(759,'5','https://www.instagram.com/p/CyBt1w-JunT/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==',1,1,'2023-10-06 17:52:08','2023-10-06 17:52:14');
/*!40000 ALTER TABLE `photo_instagrams` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `planning_routes`
--

DROP TABLE IF EXISTS `planning_routes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `planning_routes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `route` text NOT NULL,
  `is_finished` tinyint(1) NOT NULL DEFAULT 0,
  `home_address_id` int(10) unsigned NOT NULL,
  `delivery_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `planning_routes_home_address_id_foreign` (`home_address_id`),
  KEY `planning_routes_delivery_id_foreign` (`delivery_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `planning_routes`
--

LOCK TABLES `planning_routes` WRITE;
/*!40000 ALTER TABLE `planning_routes` DISABLE KEYS */;
/*!40000 ALTER TABLE `planning_routes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `players`
--

DROP TABLE IF EXISTS `players`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `players` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `image` varchar(255) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `number` varchar(191) NOT NULL,
  `age` varchar(191) NOT NULL,
  `country_id` int(10) unsigned DEFAULT NULL,
  `date_of_birth` date NOT NULL,
  `biography` text NOT NULL,
  `joined` varchar(191) NOT NULL,
  `date_of_debut` date DEFAULT NULL,
  `rival_team_debut` varchar(191) DEFAULT NULL,
  `retirement` varchar(191) DEFAULT NULL,
  `achievements` text DEFAULT NULL,
  `appearances` varchar(191) DEFAULT NULL,
  `goals` varchar(191) DEFAULT NULL,
  `instagram` varchar(191) DEFAULT NULL,
  `equipment_categories_id` int(10) unsigned DEFAULT NULL,
  `position_id` int(10) unsigned DEFAULT NULL,
  `inactive` tinyint(1) DEFAULT NULL,
  `honors` varchar(191) DEFAULT NULL,
  `height` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `players_equipment_categories_id_foreign` (`equipment_categories_id`),
  KEY `players_position_id_foreign` (`position_id`),
  KEY `players_country_id_foreign` (`country_id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `players`
--

LOCK TABLES `players` WRITE;
/*!40000 ALTER TABLE `players` DISABLE KEYS */;
INSERT INTO `players` VALUES (3,'3.jpg','JOAN FELIPE PARRA','31','22',1,'2000-06-10','Llegó al club desde muy temprana edad y disputó los Campeonatos Nacionales y de la Liga Antioqueña de Fútbol. Nació en El Peñol y defiende con orgullo los colores de su casa. Es un arquero de notables condiciones, con una agilidad impresionante.','2020-07-01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,4,0,'0','184','2023-01-18 19:33:13','2023-01-18 19:33:14'),(4,'4.jpg','DANIEL MELO','1','20',1,'2001-04-25','Daniel Melo nació en Barranquilla, ha realizado su proceso formativo en la Cantera de Héroes y debutó con estos colores en el año 2021. Su gran posicionamiento y su voz de mando, lo convierten en un golero para seguir.','2021-01-01','2021-01-01',NULL,NULL,NULL,NULL,NULL,'danielmeloarquero',1,4,0,'0','183','2023-01-18 19:38:24','2023-01-18 19:38:25'),(5,'5.jpg','SANTIAGO NOREÑA','5','24',1,'1998-06-11','Noreña es fruto de la Cantera de Héroes, es un central rápido, con gran visión de juego y con mucha técnica. Debutó en el 2018 y se ha ganado un lugar con cada uno de los entradores que han pasado por esta casa.','2018-01-01','2018-01-01',NULL,NULL,NULL,NULL,NULL,NULL,1,3,0,'0','182','2023-01-18 19:42:03','2023-01-18 19:42:04'),(6,'6.jpg','JHON BANGUERA','19','18',1,'2004-04-03','Con tan poca edad ya se ganó un lugar en el primer equipo. Salió de la filial de Palmira y debutó en 2022 con estos colores. Central espigado, de buen juego aéreo y férreo en la marca.','2022-01-01','2022-01-01',NULL,NULL,NULL,NULL,NULL,NULL,1,3,0,'0','192','2023-01-18 19:45:30','2023-01-18 19:45:30'),(7,'7.jpg','YEFERSON RODALLEGA','17','22',1,'2000-11-23','Rodallega es un lateral de enormes condiciones, puede jugar también como mediocampista. Es hábil en el uno contra uno y tiene despliegue y mucha personalidad. Realizó todo su proceso formativo en la Cantera de Héroes.','2021-01-01','2021-01-01',NULL,NULL,NULL,NULL,NULL,NULL,1,3,0,'0','178','2023-01-18 19:48:41','2023-01-18 19:48:41'),(9,'9.jpg','EDISON LÓPEZ','21','23',1,'1999-10-20','Edison es producto de la Cantera de Héroes. Puede ser volante o delantero, con mucha llegada al gol. Nació en Bello y realizó su proceso formativo en el Envigado Fútbol Club.','2020-01-01','2020-01-01',NULL,NULL,NULL,NULL,NULL,'edison_lopez21',1,2,0,'0','178','2023-01-18 20:00:27','2023-01-18 20:00:27'),(12,'12.jfif','PABLO ÁLVAREZ','22','20',1,'2002-10-15','Pablo ha realizado todo su proceso en el club, debutó como profesional en 2022.','2014-01-01',NULL,NULL,NULL,'Campeón Torneo Nacional Sub 20 - 2022',NULL,NULL,NULL,1,1,0,'5','178','2023-06-21 19:24:06','2023-06-21 19:31:04'),(13,'13.jfif','DANIEL ARCILA','10','21',1,'2002-05-16','Debutó ante Bucaramanga en Copa Colombia este año y tuvo una destacada actuación en el partido ante el Deportes Tolima en Ibagué por los cuadrangulares. Daniel nació en Mariquita el 16 de mayo de 2002 y arribó al Envigado Fútbol Club en el 2013, luego de una veeduría.  Ha estado en todo el proceso formativo del Naranja y fue el goleador del Torneo Nacional Sub 20 que ganó el club. Es enganche, de grandes condiciones, con gol y con una visión de juego para destacar.','2013-01-01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,2,0,'5','179','2023-06-21 19:27:16','2023-06-21 19:31:16'),(14,'14.jfif','DIEGO BETANCOURTH','27','20',1,'2003-03-13','Ha realizado todo su proceso formativo en el club. Debutó en 2021.','2013-01-01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,'5','180','2023-06-21 19:30:41','2023-06-21 19:31:35'),(15,'15.jfif','YILMAR CELEDÓN','24','23',1,'2000-01-08','Lateral y central de gran recorrido en la institución.','2013-01-01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,3,0,'5','180','2023-06-21 19:33:08','2023-06-21 19:33:08'),(16,'16.jfif','GENDRY CUERVO','15','21',1,'2001-08-21','Lateral derecho de grandes condiciones que arribó del Bogotá FC.','2023-01-01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,3,0,'1','177','2023-06-21 19:35:06','2023-06-21 19:35:07'),(17,'17.jfif','LUIS ÁNGEL DÍAZ','34','19',1,'2004-04-24','Nació en Apartadó, Antioquia el 24 de abril de 2004. Llegó al club en 2017, luego de hacer un muy buen torneo Pony Fútbol. Es atacante, puede ser extremo o punta. Es habilidoso, potente, goleador y con una gran ubicación dentro del área. Fue campeón del Torneo Nacional en 2022 y estuvo en procesos de Selección Colombia Juveniles.','2013-01-01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,'5','182','2023-06-21 19:38:01','2023-06-21 19:38:02');
/*!40000 ALTER TABLE `players` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `point_sales`
--

DROP TABLE IF EXISTS `point_sales`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `point_sales` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `address` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `point_sales`
--

LOCK TABLES `point_sales` WRITE;
/*!40000 ALTER TABLE `point_sales` DISABLE KEYS */;
INSERT INTO `point_sales` VALUES (1,'Tienda Estadio',NULL,1,'2021-05-01 21:58:26','2021-05-01 21:58:26'),(2,'Tienda Niquía',NULL,1,'2021-05-01 21:58:26','2021-05-01 21:58:26'),(3,'Tienda Viva Envigado',NULL,1,'2021-05-01 21:58:26','2021-05-01 21:58:26');
/*!40000 ALTER TABLE `point_sales` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `popup_embeds`
--

DROP TABLE IF EXISTS `popup_embeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `popup_embeds` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `msj` text DEFAULT NULL,
  `type_action_id` bigint(20) unsigned DEFAULT NULL,
  `value` varchar(191) DEFAULT NULL,
  `text_button_ok` text DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `target` varchar(255) DEFAULT 'home,app-store' COMMENT 'En cual sección de la app se va a mostrar',
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `frequency` int(11) NOT NULL DEFAULT 1,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `hide_name` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Activas o desactivas el nombre del popup',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `popup_embeds_type_action_id_foreign` (`type_action_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `popup_embeds`
--

LOCK TABLES `popup_embeds` WRITE;
/*!40000 ALTER TABLE `popup_embeds` DISABLE KEYS */;
INSERT INTO `popup_embeds` VALUES (1,'Abónate',NULL,2,'Abonos',NULL,'1.jpg','home,app-store',NULL,NULL,1,1,0,'2023-06-17 02:47:41','2023-06-17 02:47:43');
/*!40000 ALTER TABLE `popup_embeds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `popup_tags`
--

DROP TABLE IF EXISTS `popup_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `popup_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `popup_id` bigint(20) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `popup_tags_popup_id_foreign` (`popup_id`),
  KEY `popup_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `popup_tags`
--

LOCK TABLES `popup_tags` WRITE;
/*!40000 ALTER TABLE `popup_tags` DISABLE KEYS */;
INSERT INTO `popup_tags` VALUES (1,1,6,'2023-06-17 02:47:41','2023-06-17 02:47:41');
/*!40000 ALTER TABLE `popup_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `positions`
--

DROP TABLE IF EXISTS `positions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `positions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `positions`
--

LOCK TABLES `positions` WRITE;
/*!40000 ALTER TABLE `positions` DISABLE KEYS */;
INSERT INTO `positions` VALUES (1,'DELANTEROS','2022-09-02 18:56:58','2022-09-02 18:56:58'),(2,'MEDIOCAMPISTAS','2022-09-02 18:57:07','2022-09-02 18:57:07'),(3,'DEFENSAS','2022-09-02 18:57:16','2022-09-02 18:57:16'),(4,'ARQUEROS','2022-09-02 18:57:24','2022-09-02 18:57:24'),(5,'DT.','2022-11-16 12:01:26','2022-11-16 12:01:26');
/*!40000 ALTER TABLE `positions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pre_subscribers`
--

DROP TABLE IF EXISTS `pre_subscribers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pre_subscribers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `document` varchar(191) DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `seat_id` bigint(20) unsigned NOT NULL,
  `price` double DEFAULT NULL,
  `payment` tinyint(1) DEFAULT 0,
  `is_credit` tinyint(1) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `pre_subscribers_seat_id_foreign` (`seat_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pre_subscribers`
--

LOCK TABLES `pre_subscribers` WRITE;
/*!40000 ALTER TABLE `pre_subscribers` DISABLE KEYS */;
/*!40000 ALTER TABLE `pre_subscribers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_attributes`
--

DROP TABLE IF EXISTS `product_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_attributes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `sku` varchar(191) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `attribute_id` int(10) unsigned NOT NULL,
  `value` varchar(255) NOT NULL,
  `price_additional` double DEFAULT NULL,
  `available_units` double DEFAULT NULL,
  `pmi` varchar(191) NOT NULL DEFAULT '0',
  `packaging` varchar(191) NOT NULL DEFAULT '0',
  `weight` double NOT NULL DEFAULT 0,
  `pum` double DEFAULT NULL,
  `ean` varchar(191) NOT NULL DEFAULT '0',
  `width` double NOT NULL DEFAULT 0,
  `length` double NOT NULL DEFAULT 0,
  `high` double NOT NULL DEFAULT 0,
  `observation` varchar(191) NOT NULL DEFAULT '0',
  `main_position` varchar(191) NOT NULL DEFAULT '0',
  `stowage_pattern` varchar(191) NOT NULL DEFAULT '0',
  `dispatched_units` int(11) NOT NULL DEFAULT 0,
  `reference_shopify_variation_id` varchar(550) DEFAULT NULL,
  `reference_shopify_id` varchar(550) DEFAULT NULL,
  `reference_woocommerce_id` varchar(191) DEFAULT NULL,
  `reference_woocommerce_variation_id` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `product_attributes_product_id_foreign` (`product_id`),
  KEY `product_attributes_attribute_id_foreign` (`attribute_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_attributes`
--

LOCK TABLES `product_attributes` WRITE;
/*!40000 ALTER TABLE `product_attributes` DISABLE KEYS */;
/*!40000 ALTER TABLE `product_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_images`
--

DROP TABLE IF EXISTS `product_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_images` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `product_images_product_id_foreign` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_images`
--

LOCK TABLES `product_images` WRITE;
/*!40000 ALTER TABLE `product_images` DISABLE KEYS */;
/*!40000 ALTER TABLE `product_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_tags`
--

DROP TABLE IF EXISTS `product_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `special_price` double NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `product_tags_product_id_foreign` (`product_id`),
  KEY `product_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_tags`
--

LOCK TABLES `product_tags` WRITE;
/*!40000 ALTER TABLE `product_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `product_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products`
--

DROP TABLE IF EXISTS `products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `plu` varchar(191) NOT NULL,
  `bar_code` varchar(191) DEFAULT NULL,
  `price` double NOT NULL,
  `flash_price` double DEFAULT NULL,
  `percentage_discount` int(11) DEFAULT NULL,
  `available_units` int(11) DEFAULT NULL,
  `max_units_per_order` int(11) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `validate_age` tinyint(1) NOT NULL DEFAULT 0,
  `order` int(11) NOT NULL DEFAULT 9999,
  `dispatched_units` int(11) NOT NULL DEFAULT 0,
  `limit_discount` date DEFAULT NULL,
  `limit_flash_discount` date DEFAULT NULL,
  `start_discount` date DEFAULT NULL,
  `start_flash_discount` date DEFAULT NULL,
  `limit_hour_discount` time DEFAULT NULL,
  `limit_hour_flash_discount` time DEFAULT NULL,
  `brand_id` int(10) unsigned DEFAULT NULL,
  `sucursal_id` int(10) unsigned DEFAULT NULL,
  `product_link` varchar(191) DEFAULT NULL COMMENT 'Enlace del producto',
  `reference_shopify_id` varchar(550) DEFAULT NULL,
  `reference_woocommerce_product_id` varchar(191) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `max_units_per_product` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `products_brand_id_foreign` (`brand_id`),
  KEY `products_sucursal_id_foreign` (`sucursal_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products`
--

LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `radio_embeds`
--

DROP TABLE IF EXISTS `radio_embeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `radio_embeds` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) NOT NULL,
  `link` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `radio_embeds`
--

LOCK TABLES `radio_embeds` WRITE;
/*!40000 ALTER TABLE `radio_embeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `radio_embeds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `redemptions`
--

DROP TABLE IF EXISTS `redemptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `redemptions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `section_id` bigint(20) unsigned NOT NULL COMMENT 'Sección de sc estadio',
  `user_id` int(10) unsigned NOT NULL COMMENT 'Cliente que redimio el beneficio',
  `logged_user_id` int(10) unsigned NOT NULL COMMENT 'Usuario de sc estadio',
  `options` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `redemptions_section_id_foreign` (`section_id`),
  KEY `redemptions_user_id_foreign` (`user_id`),
  KEY `redemptions_logged_user_id_foreign` (`logged_user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `redemptions`
--

LOCK TABLES `redemptions` WRITE;
/*!40000 ALTER TABLE `redemptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `redemptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reports_power`
--

DROP TABLE IF EXISTS `reports_power`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reports_power` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `URL` longtext NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reports_power`
--

LOCK TABLES `reports_power` WRITE;
/*!40000 ALTER TABLE `reports_power` DISABLE KEYS */;
/*!40000 ALTER TABLE `reports_power` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rols`
--

DROP TABLE IF EXISTS `rols`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rols` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `route` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_spanish2_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rols`
--

LOCK TABLES `rols` WRITE;
/*!40000 ALTER TABLE `rols` DISABLE KEYS */;
INSERT INTO `rols` VALUES (1,'SuperAdmin',NULL,1,NULL,'2020-09-29 23:48:38','2020-09-29 23:48:38'),(2,'Admin',NULL,1,NULL,'2020-09-29 23:48:38','2023-07-19 23:44:37'),(3,'Mensajero',NULL,1,NULL,'2020-09-29 23:48:38','2020-09-29 23:48:38'),(4,'Cliente',NULL,1,NULL,'2020-09-29 23:48:38','2020-09-29 23:48:38'),(5,'Reportes',NULL,1,NULL,'2020-09-29 23:48:38','2020-09-29 23:48:38'),(6,'Técnicos',NULL,1,NULL,'2020-09-29 23:48:38','2020-09-29 23:48:38'),(7,'Gana','/tickets',1,NULL,'2020-12-09 17:53:21','2020-12-09 17:53:21'),(8,'Boletería','/tickets',1,NULL,'2020-12-15 17:28:16','2023-07-21 13:40:20'),(9,'App','/stats/matches',1,NULL,'2020-12-15 17:28:16','2020-12-15 17:28:16'),(10,'E-commerce',NULL,1,NULL,'2020-12-15 17:28:16','2023-09-19 22:02:29'),(11,'Maestro DIM',NULL,1,NULL,'2020-12-16 20:05:04','2020-12-16 20:05:04'),(12,'Tesoreria','/orders',1,NULL,'2021-01-15 01:16:09','2023-09-05 21:11:29'),(13,'Hacienda','/reports_state',1,NULL,'2021-07-24 23:07:15','2023-07-07 22:18:47'),(14,'Entrenador','/academy_attendances',1,NULL,'2021-07-24 23:07:15','2023-07-07 22:18:27'),(15,'Boletería Interna','/tickets',1,NULL,'2021-10-08 00:15:27','2023-07-07 22:18:07'),(16,'Tesorería y matrícula academia','/academy_user',1,NULL,NULL,'2023-09-05 22:25:46'),(17,'Superadmin Academias','/academy_user',1,NULL,NULL,'2023-09-05 22:15:50'),(18,'Envigado comunicaciones',NULL,1,NULL,'2023-04-26 11:50:38','2023-07-07 22:09:23'),(19,'Academias','/academy_user',1,NULL,'2023-09-05 22:23:09','2023-09-05 22:23:39');
/*!40000 ALTER TABLE `rols` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_channels`
--

DROP TABLE IF EXISTS `sales_channels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_channels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_channels`
--

LOCK TABLES `sales_channels` WRITE;
/*!40000 ALTER TABLE `sales_channels` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_channels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scrap_results`
--

DROP TABLE IF EXISTS `scrap_results`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scrap_results` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scrap_results`
--

LOCK TABLES `scrap_results` WRITE;
/*!40000 ALTER TABLE `scrap_results` DISABLE KEYS */;
/*!40000 ALTER TABLE `scrap_results` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `seasons`
--

DROP TABLE IF EXISTS `seasons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `seasons` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `start` datetime NOT NULL,
  `end` datetime NOT NULL,
  `is_suscription` tinyint(1) NOT NULL COMMENT 'Si la temporada se permite vender por abonos',
  `tournament_id` bigint(20) unsigned NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `seasons_tournament_id_foreign` (`tournament_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `seasons`
--

LOCK TABLES `seasons` WRITE;
/*!40000 ALTER TABLE `seasons` DISABLE KEYS */;
INSERT INTO `seasons` VALUES (1,'Torneo Apertura 2023','2023-01-01 15:00:00','2023-11-20 20:00:00',0,1,0,'2022-08-31 13:54:47','2023-06-06 21:51:51'),(2,'ABONOS 2023 - II','2023-06-09 09:54:00','2023-08-14 19:54:00',1,1,1,'2023-06-06 21:55:17','2023-08-15 21:18:53');
/*!40000 ALTER TABLE `seasons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `seats`
--

DROP TABLE IF EXISTS `seats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `seats` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `code` int(11) NOT NULL,
  `zone_id` bigint(20) unsigned NOT NULL,
  `letter_id` bigint(20) unsigned NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `seats_zone_id_foreign` (`zone_id`),
  KEY `seats_letter_id_foreign` (`letter_id`)
) ENGINE=InnoDB AUTO_INCREMENT=44638 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `seats`
--

LOCK TABLES `seats` WRITE;
/*!40000 ALTER TABLE `seats` DISABLE KEYS */;
INSERT INTO `seats` VALUES (1,1,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(2,2,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(3,3,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(4,4,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(5,5,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(6,6,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(7,7,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(8,8,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(9,9,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(10,10,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(11,11,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(12,12,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(13,13,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(14,14,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(15,15,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(16,16,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(17,17,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(18,18,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(19,19,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(20,20,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(21,21,6,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(22,1,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(23,2,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(24,3,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(25,4,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(26,5,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(27,6,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(28,7,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(29,8,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(30,9,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(31,10,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(32,11,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(33,12,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(34,13,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(35,14,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(36,15,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(37,16,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(38,17,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(39,18,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(40,19,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(41,20,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(42,21,6,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(43,1,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(44,2,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(45,3,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(46,4,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(47,5,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(48,6,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(49,7,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(50,8,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(51,9,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(52,10,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(53,11,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(54,12,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(55,13,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(56,14,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(57,15,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(58,16,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(59,17,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(60,18,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(61,19,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(62,20,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(63,21,6,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(64,1,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(65,2,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(66,3,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(67,4,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(68,5,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(69,6,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(70,7,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(71,8,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(72,9,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(73,10,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(74,11,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(75,12,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(76,13,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(77,14,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(78,15,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(79,16,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(80,17,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(81,18,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(82,19,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(83,20,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(84,21,6,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(85,1,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(86,2,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(87,3,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(88,4,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(89,5,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(90,6,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(91,7,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(92,8,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(93,9,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(94,10,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(95,11,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(96,12,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(97,13,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(98,14,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(99,15,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(100,16,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(101,17,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(102,18,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(103,19,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(104,20,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(105,21,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(106,22,6,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(107,1,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(108,2,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(109,3,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(110,4,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(111,5,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(112,6,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(113,7,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(114,8,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(115,9,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(116,10,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(117,11,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(118,12,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(119,13,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(120,14,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(121,15,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(122,16,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(123,17,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(124,18,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(125,19,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(126,20,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(127,21,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(128,22,6,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(129,1,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(130,2,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(131,3,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(132,4,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(133,5,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(134,6,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(135,7,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(136,8,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(137,9,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(138,10,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(139,11,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(140,12,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(141,13,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(142,14,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(143,15,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(144,16,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(145,17,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(146,18,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(147,19,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(148,20,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(149,21,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(150,22,6,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(151,1,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(152,2,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(153,3,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(154,4,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(155,5,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(156,6,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(157,7,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(158,8,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(159,9,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(160,10,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(161,11,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(162,12,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(163,13,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(164,14,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(165,15,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(166,16,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(167,17,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(168,18,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(169,19,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(170,20,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(171,21,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(172,22,6,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(173,1,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(174,2,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(175,3,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(176,4,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(177,5,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(178,6,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(179,7,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(180,8,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(181,9,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(182,10,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(183,11,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(184,12,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(185,13,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(186,14,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(187,15,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(188,16,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(189,17,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(190,18,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(191,19,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(192,20,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(193,21,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(194,22,6,9,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(195,1,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(196,2,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(197,3,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(198,4,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(199,5,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(200,6,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(201,7,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(202,8,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(203,9,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(204,10,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(205,11,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(206,12,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(207,13,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(208,14,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(209,15,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(210,16,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(211,17,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(212,18,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(213,19,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(214,20,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(215,21,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(216,22,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(217,23,6,10,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(218,1,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(219,2,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(220,3,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(221,4,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(222,5,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(223,6,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(224,7,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(225,8,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(226,9,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(227,10,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(228,11,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(229,12,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(230,13,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(231,14,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(232,15,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(233,16,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(234,17,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(235,18,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(236,19,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(237,20,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(238,21,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(239,22,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(240,23,6,11,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(241,1,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(242,2,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(243,3,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(244,4,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(245,5,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(246,6,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(247,7,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(248,8,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(249,9,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(250,10,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(251,11,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(252,12,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(253,13,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(254,14,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(255,15,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(256,16,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(257,17,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(258,18,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(259,19,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(260,20,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(261,21,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(262,22,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(263,23,6,12,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(264,1,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(265,2,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(266,3,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(267,4,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(268,5,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(269,6,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(270,7,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(271,8,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(272,9,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(273,10,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(274,11,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(275,12,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(276,13,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(277,14,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(278,15,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(279,16,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(280,17,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(281,18,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(282,19,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(283,20,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(284,21,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(285,22,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(286,23,6,13,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(287,1,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(288,2,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(289,3,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(290,4,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(291,5,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(292,6,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(293,7,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(294,8,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(295,9,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(296,10,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(297,11,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(298,12,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(299,13,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(300,14,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(301,15,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(302,16,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(303,17,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(304,18,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(305,19,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(306,20,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(307,21,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(308,22,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(309,23,6,14,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(310,1,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(311,2,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(312,3,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(313,4,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(314,5,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(315,6,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(316,7,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(317,8,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(318,9,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(319,10,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(320,11,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(321,12,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(322,13,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(323,14,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(324,15,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(325,16,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(326,17,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(327,18,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(328,19,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(329,20,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(330,21,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(331,22,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(332,23,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(333,24,6,15,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(334,1,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(335,2,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(336,3,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(337,4,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(338,5,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(339,6,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(340,7,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(341,8,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(342,9,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(343,10,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(344,11,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(345,12,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(346,13,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(347,14,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(348,15,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(349,16,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(350,17,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(351,18,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(352,19,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(353,20,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(354,21,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(355,22,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(356,23,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(357,24,6,16,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(358,1,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(359,2,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(360,3,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(361,4,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(362,5,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(363,6,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(364,7,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(365,8,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(366,9,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(367,10,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(368,11,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(369,12,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(370,13,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(371,14,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(372,15,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(373,16,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(374,17,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(375,18,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(376,19,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(377,20,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(378,21,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(379,22,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(380,23,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(381,24,6,18,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(382,1,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(383,2,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(384,3,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(385,4,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(386,5,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(387,6,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(388,7,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(389,8,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(390,9,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(391,10,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(392,11,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(393,12,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(394,13,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(395,14,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(396,15,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(397,16,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(398,17,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(399,18,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(400,19,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(401,20,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(402,21,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(403,22,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(404,23,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(405,24,6,19,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(406,1,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(407,2,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(408,3,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(409,4,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(410,5,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(411,6,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(412,7,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(413,8,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(414,9,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(415,10,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(416,11,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(417,12,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(418,13,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(419,14,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(420,15,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(421,16,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(422,17,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(423,18,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(424,19,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(425,20,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(426,21,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(427,22,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(428,23,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(429,24,6,20,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(430,1,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(431,2,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(432,3,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(433,4,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(434,5,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(435,6,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(436,7,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(437,8,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(438,9,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(439,10,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(440,11,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(441,12,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(442,13,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(443,14,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(444,15,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(445,16,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(446,17,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(447,18,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(448,19,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(449,20,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(450,21,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(451,22,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(452,23,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(453,24,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(454,25,6,21,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(455,1,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(456,2,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(457,3,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(458,4,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(459,5,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(460,6,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(461,7,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(462,8,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(463,9,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(464,10,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(465,11,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(466,12,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(467,13,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(468,14,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(469,15,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(470,16,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(471,17,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(472,18,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(473,19,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(474,20,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(475,21,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(476,22,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(477,23,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(478,24,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(479,25,6,22,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(480,1,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(481,2,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(482,3,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(483,4,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(484,5,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(485,6,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(486,7,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(487,8,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(488,9,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(489,10,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(490,11,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(491,12,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(492,13,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(493,14,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(494,15,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(495,16,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(496,17,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(497,18,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(498,19,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(499,20,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(500,21,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(501,22,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(502,23,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(503,24,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(504,25,6,23,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(505,1,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(506,2,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(507,3,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(508,4,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(509,5,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(510,6,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(511,7,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(512,8,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(513,9,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(514,10,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(515,11,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(516,12,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(517,13,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(518,14,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(519,15,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(520,16,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(521,17,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(522,18,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(523,19,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(524,20,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(525,21,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(526,22,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(527,23,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(528,24,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(529,25,6,24,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(530,1,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(531,2,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(532,3,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(533,4,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(534,5,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(535,6,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(536,7,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(537,8,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(538,9,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(539,10,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(540,11,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(541,12,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(542,13,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(543,14,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(544,15,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(545,16,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(546,17,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(547,18,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(548,19,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(549,20,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(550,21,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(551,22,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(552,23,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(553,24,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(554,25,6,25,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(555,1,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(556,2,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(557,3,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(558,4,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(559,5,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(560,6,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(561,7,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(562,8,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(563,9,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(564,10,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(565,11,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(566,12,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(567,13,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(568,14,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(569,15,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(570,16,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(571,17,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(572,18,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(573,19,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(574,20,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(575,21,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(576,22,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(577,23,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(578,24,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(579,25,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(580,26,6,26,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(581,1,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(582,2,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(583,3,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(584,4,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(585,5,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(586,6,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(587,7,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(588,8,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(589,9,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(590,10,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(591,11,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(592,12,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(593,13,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(594,14,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(595,15,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(596,16,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(597,17,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(598,18,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(599,19,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(600,20,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(601,21,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(602,22,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(603,23,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(604,24,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(605,25,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(606,26,6,27,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(607,1,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(608,2,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(609,3,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(610,4,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(611,5,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(612,6,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(613,7,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(614,8,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(615,9,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(616,10,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(617,11,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(618,12,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(619,13,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(620,14,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(621,15,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(622,16,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(623,17,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(624,18,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(625,19,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(626,20,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(627,21,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(628,22,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(629,23,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(630,24,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(631,25,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(632,26,6,54,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(633,1,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(634,2,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(635,3,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(636,4,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(637,5,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(638,6,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(639,7,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(640,8,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(641,9,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(642,10,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(643,11,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(644,12,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(645,13,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(646,14,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(647,15,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(648,16,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(649,17,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(650,18,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(651,19,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(652,20,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(653,21,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(654,22,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(655,23,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(656,24,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(657,25,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(658,26,6,81,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(659,1,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(660,2,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(661,3,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(662,4,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(663,5,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(664,6,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(665,7,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(666,8,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(667,9,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(668,10,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(669,11,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(670,12,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(671,13,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(672,14,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(673,15,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(674,16,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(675,17,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(676,18,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(677,19,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(678,20,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(679,21,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(680,22,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(681,23,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(682,24,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(683,25,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(684,26,6,108,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(685,1,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(686,2,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(687,3,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(688,4,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(689,5,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(690,6,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(691,7,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(692,8,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(693,9,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(694,10,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(695,11,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(696,12,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(697,13,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(698,14,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(699,15,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(700,16,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(701,17,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(702,18,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(703,19,6,135,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(704,1,6,162,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(705,2,6,162,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(706,3,6,162,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(707,4,6,162,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(708,5,6,162,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(709,6,6,162,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(710,7,6,162,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(711,8,6,162,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(712,9,6,162,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(713,10,6,162,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(714,11,6,162,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(715,1,6,189,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(716,2,6,189,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(717,3,6,189,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(718,22,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(719,23,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(720,24,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(721,25,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(722,26,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(723,27,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(724,28,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(725,29,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(726,30,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(727,31,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(728,32,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(729,33,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(730,34,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(731,35,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(732,36,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(733,37,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(734,38,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(735,39,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(736,40,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(737,41,7,1,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(738,22,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(739,23,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(740,24,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(741,25,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(742,26,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(743,27,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(744,28,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(745,29,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(746,30,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(747,31,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(748,32,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(749,33,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(750,34,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(751,35,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(752,36,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(753,37,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(754,38,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(755,39,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(756,40,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(757,41,7,2,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(758,22,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(759,23,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(760,24,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(761,25,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(762,26,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(763,27,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(764,28,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(765,29,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(766,30,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(767,31,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(768,32,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(769,33,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(770,34,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(771,35,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(772,36,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(773,37,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(774,38,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(775,39,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(776,40,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(777,41,7,3,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(778,22,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(779,23,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(780,24,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(781,25,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(782,26,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(783,27,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(784,28,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(785,29,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(786,30,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(787,31,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(788,32,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(789,33,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(790,34,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(791,35,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(792,36,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(793,37,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(794,38,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(795,39,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(796,40,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(797,41,7,4,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(798,23,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(799,24,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(800,25,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(801,26,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(802,27,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(803,28,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(804,29,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(805,30,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(806,31,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(807,32,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(808,33,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(809,34,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(810,35,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(811,36,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(812,37,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(813,38,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(814,39,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(815,40,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(816,41,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(817,42,7,5,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(818,23,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(819,24,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(820,25,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(821,26,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(822,27,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(823,28,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(824,29,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(825,30,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(826,31,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(827,32,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(828,33,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(829,34,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(830,35,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(831,36,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(832,37,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(833,38,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(834,39,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(835,40,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(836,41,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(837,42,7,6,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(838,23,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(839,24,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(840,25,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(841,26,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(842,27,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(843,28,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(844,29,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(845,30,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(846,31,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(847,32,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(848,33,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(849,34,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(850,35,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(851,36,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(852,37,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(853,38,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(854,39,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(855,40,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(856,41,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(857,42,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(858,43,7,7,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(859,23,7,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(860,24,7,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(861,25,7,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(862,26,7,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(863,27,7,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(864,28,7,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(865,29,7,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(866,30,7,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(867,31,7,8,1,'2022-09-02 14:23:24','2022-09-02 14:23:24'),(868,32,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(869,33,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(870,34,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(871,35,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(872,36,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(873,37,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(874,38,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(875,39,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(876,40,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(877,41,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(878,42,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(879,43,7,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(880,23,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(881,24,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(882,25,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(883,26,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(884,27,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(885,28,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(886,29,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(887,30,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(888,31,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(889,32,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(890,33,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(891,34,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(892,35,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(893,36,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(894,37,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(895,38,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(896,39,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(897,40,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(898,41,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(899,42,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(900,43,7,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(901,24,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(902,25,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(903,26,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(904,27,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(905,28,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(906,29,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(907,30,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(908,31,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(909,32,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(910,33,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(911,34,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(912,35,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(913,36,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(914,37,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(915,38,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(916,39,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(917,40,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(918,41,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(919,42,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(920,43,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(921,44,7,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(922,24,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(923,25,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(924,26,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(925,27,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(926,28,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(927,29,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(928,30,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(929,31,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(930,32,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(931,33,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(932,34,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(933,35,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(934,36,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(935,37,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(936,38,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(937,39,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(938,40,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(939,41,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(940,42,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(941,43,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(942,44,7,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(943,24,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(944,25,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(945,26,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(946,27,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(947,28,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(948,29,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(949,30,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(950,31,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(951,32,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(952,33,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(953,34,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(954,35,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(955,36,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(956,37,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(957,38,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(958,39,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(959,40,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(960,41,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(961,42,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(962,43,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(963,44,7,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(964,24,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(965,25,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(966,26,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(967,27,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(968,28,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(969,29,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(970,30,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(971,31,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(972,32,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(973,33,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(974,34,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(975,35,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(976,36,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(977,37,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(978,38,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(979,39,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(980,40,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(981,41,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(982,42,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(983,43,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(984,44,7,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(985,24,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(986,25,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(987,26,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(988,27,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(989,28,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(990,29,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(991,30,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(992,31,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(993,32,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(994,33,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(995,34,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(996,35,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(997,36,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(998,37,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(999,38,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1000,39,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1001,40,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1002,41,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1003,42,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1004,43,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1005,44,7,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1006,25,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1007,26,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1008,27,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1009,28,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1010,29,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1011,30,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1012,31,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1013,32,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1014,33,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1015,34,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1016,35,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1017,36,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1018,37,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1019,38,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1020,39,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1021,40,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1022,41,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1023,42,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1024,43,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1025,44,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1026,45,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1027,46,7,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1028,25,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1029,26,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1030,27,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1031,28,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1032,29,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1033,30,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1034,31,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1035,32,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1036,33,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1037,34,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1038,35,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1039,36,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1040,37,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1041,38,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1042,39,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1043,40,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1044,41,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1045,42,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1046,43,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1047,44,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1048,45,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1049,46,7,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1050,25,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1051,26,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1052,27,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1053,28,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1054,29,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1055,30,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1056,31,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1057,32,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1058,33,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1059,34,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1060,35,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1061,36,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1062,37,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1063,38,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1064,39,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1065,40,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1066,41,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1067,42,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1068,43,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1069,44,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1070,45,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1071,46,7,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1072,25,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1073,26,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1074,27,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1075,28,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1076,29,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1077,30,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1078,31,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1079,32,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1080,33,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1081,34,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1082,35,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1083,36,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1084,37,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1085,38,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1086,39,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1087,40,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1088,41,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1089,42,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1090,43,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1091,44,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1092,45,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1093,46,7,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1094,26,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1095,27,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1096,28,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1097,29,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1098,30,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1099,31,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1100,32,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1101,33,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1102,34,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1103,35,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1104,36,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1105,37,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1106,38,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1107,39,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1108,40,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1109,41,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1110,42,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1111,43,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1112,44,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1113,45,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1114,46,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1115,47,7,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1116,26,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1117,27,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1118,28,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1119,29,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1120,30,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1121,31,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1122,32,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1123,33,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1124,34,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1125,35,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1126,36,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1127,37,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1128,38,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1129,39,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1130,40,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1131,41,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1132,42,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1133,43,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1134,44,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1135,45,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1136,46,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1137,47,7,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1138,26,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1139,27,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1140,28,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1141,29,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1142,30,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1143,31,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1144,32,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1145,33,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1146,34,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1147,35,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1148,36,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1149,37,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1150,38,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1151,39,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1152,40,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1153,41,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1154,42,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1155,43,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1156,44,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1157,45,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1158,46,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1159,47,7,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1160,26,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1161,27,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1162,28,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1163,29,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1164,30,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1165,31,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1166,32,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1167,33,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1168,34,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1169,35,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1170,36,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1171,37,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1172,38,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1173,39,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1174,40,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1175,41,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1176,42,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1177,43,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1178,44,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1179,45,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1180,46,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1181,47,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1182,48,7,24,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1183,26,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1184,27,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1185,28,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1186,29,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1187,30,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1188,31,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1189,32,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1190,33,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1191,34,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1192,35,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1193,36,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1194,37,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1195,38,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1196,39,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1197,40,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1198,41,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1199,42,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1200,43,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1201,44,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1202,45,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1203,46,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1204,47,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1205,48,7,25,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1206,27,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1207,28,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1208,29,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1209,30,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1210,31,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1211,32,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1212,33,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1213,34,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1214,35,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1215,36,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1216,37,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1217,38,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1218,39,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1219,40,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1220,41,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1221,42,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1222,43,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1223,44,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1224,45,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1225,46,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1226,47,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1227,48,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1228,49,7,26,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1229,27,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1230,28,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1231,29,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1232,30,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1233,31,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1234,32,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1235,33,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1236,34,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1237,35,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1238,36,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1239,37,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1240,38,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1241,39,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1242,40,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1243,41,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1244,42,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1245,43,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1246,44,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1247,45,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1248,46,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1249,47,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1250,48,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1251,49,7,27,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1252,27,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1253,28,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1254,29,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1255,30,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1256,31,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1257,32,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1258,33,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1259,34,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1260,35,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1261,36,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1262,37,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1263,38,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1264,39,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1265,40,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1266,41,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1267,42,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1268,43,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1269,44,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1270,45,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1271,46,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1272,47,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1273,48,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1274,49,7,54,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1275,27,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1276,28,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1277,29,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1278,30,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1279,31,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1280,32,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1281,33,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1282,34,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1283,35,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1284,36,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1285,37,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1286,38,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1287,39,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1288,40,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1289,41,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1290,42,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1291,43,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1292,44,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1293,45,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1294,46,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1295,47,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1296,48,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1297,49,7,81,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1298,27,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1299,28,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1300,29,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1301,30,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1302,31,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1303,32,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1304,33,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1305,34,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1306,35,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1307,36,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1308,37,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1309,38,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1310,39,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1311,40,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1312,41,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1313,42,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1314,43,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1315,44,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1316,45,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1317,46,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1318,47,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1319,48,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1320,49,7,108,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1321,20,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1322,21,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1323,22,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1324,23,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1325,24,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1326,25,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1327,26,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1328,27,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1329,28,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1330,29,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1331,30,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1332,31,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1333,32,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1334,33,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1335,34,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1336,35,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1337,36,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1338,37,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1339,38,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1340,39,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1341,40,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1342,41,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1343,42,7,135,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1344,12,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1345,13,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1346,14,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1347,15,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1348,16,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1349,17,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1350,18,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1351,19,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1352,20,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1353,21,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1354,22,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1355,23,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1356,24,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1357,25,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1358,26,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1359,27,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1360,28,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1361,29,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1362,30,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1363,31,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1364,32,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1365,33,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1366,34,7,162,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1367,4,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1368,5,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1369,6,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1370,7,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1371,8,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1372,9,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1373,10,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1374,11,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1375,12,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1376,13,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1377,14,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1378,15,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1379,16,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1380,17,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1381,18,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1382,19,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1383,20,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1384,21,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1385,22,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1386,23,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1387,24,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1388,25,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1389,26,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1390,27,7,189,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1391,1,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1392,2,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1393,3,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1394,4,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1395,5,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1396,6,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1397,7,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1398,8,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1399,9,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1400,10,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1401,11,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1402,12,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1403,13,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1404,14,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1405,15,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1406,16,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1407,17,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1408,18,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1409,19,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1410,20,7,216,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1411,1,7,243,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1412,2,7,243,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1413,3,7,243,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1414,4,7,243,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1415,5,7,243,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1416,6,7,243,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1417,7,7,243,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1418,8,7,243,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1419,9,7,243,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1420,42,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1421,43,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1422,44,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1423,45,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1424,46,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1425,47,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1426,48,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1427,49,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1428,50,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1429,51,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1430,52,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1431,53,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1432,54,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1433,55,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1434,56,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1435,57,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1436,58,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1437,59,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1438,60,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1439,61,8,1,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1440,42,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1441,43,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1442,44,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1443,45,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1444,46,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1445,47,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1446,48,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1447,49,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1448,50,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1449,51,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1450,52,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1451,53,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1452,54,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1453,55,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1454,56,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1455,57,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1456,58,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1457,59,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1458,60,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1459,61,8,2,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1460,42,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1461,43,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1462,44,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1463,45,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1464,46,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1465,47,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1466,48,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1467,49,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1468,50,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1469,51,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1470,52,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1471,53,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1472,54,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1473,55,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1474,56,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1475,57,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1476,58,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1477,59,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1478,60,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1479,61,8,3,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1480,42,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1481,43,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1482,44,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1483,45,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1484,46,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1485,47,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1486,48,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1487,49,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1488,50,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1489,51,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1490,52,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1491,53,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1492,54,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1493,55,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1494,56,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1495,57,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1496,58,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1497,59,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1498,60,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1499,61,8,4,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1500,43,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1501,44,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1502,45,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1503,46,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1504,47,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1505,48,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1506,49,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1507,50,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1508,51,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1509,52,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1510,53,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1511,54,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1512,55,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1513,56,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1514,57,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1515,58,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1516,59,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1517,60,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1518,61,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1519,62,8,5,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1520,43,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1521,44,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1522,45,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1523,46,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1524,47,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1525,48,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1526,49,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1527,50,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1528,51,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1529,52,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1530,53,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1531,54,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1532,55,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1533,56,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1534,57,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1535,58,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1536,59,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1537,60,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1538,61,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1539,62,8,6,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1540,44,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1541,45,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1542,46,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1543,47,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1544,48,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1545,49,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1546,50,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1547,51,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1548,52,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1549,53,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1550,54,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1551,55,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1552,56,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1553,57,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1554,58,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1555,59,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1556,60,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1557,61,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1558,62,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1559,63,8,7,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1560,44,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1561,45,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1562,46,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1563,47,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1564,48,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1565,49,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1566,50,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1567,51,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1568,52,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1569,53,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1570,54,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1571,55,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1572,56,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1573,57,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1574,58,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1575,59,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1576,60,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1577,61,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1578,62,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1579,63,8,8,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1580,44,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1581,45,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1582,46,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1583,47,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1584,48,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1585,49,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1586,50,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1587,51,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1588,52,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1589,53,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1590,54,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1591,55,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1592,56,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1593,57,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1594,58,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1595,59,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1596,60,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1597,61,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1598,62,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1599,63,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1600,64,8,9,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1601,45,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1602,46,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1603,47,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1604,48,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1605,49,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1606,50,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1607,51,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1608,52,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1609,53,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1610,54,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1611,55,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1612,56,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1613,57,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1614,58,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1615,59,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1616,60,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1617,61,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1618,62,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1619,63,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1620,64,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1621,65,8,10,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1622,45,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1623,46,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1624,47,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1625,48,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1626,49,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1627,50,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1628,51,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1629,52,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1630,53,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1631,54,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1632,55,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1633,56,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1634,57,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1635,58,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1636,59,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1637,60,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1638,61,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1639,62,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1640,63,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1641,64,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1642,65,8,11,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1643,45,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1644,46,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1645,47,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1646,48,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1647,49,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1648,50,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1649,51,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1650,52,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1651,53,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1652,54,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1653,55,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1654,56,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1655,57,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1656,58,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1657,59,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1658,60,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1659,61,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1660,62,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1661,63,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1662,64,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1663,65,8,12,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1664,45,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1665,46,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1666,47,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1667,48,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1668,49,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1669,50,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1670,51,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1671,52,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1672,53,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1673,54,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1674,55,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1675,56,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1676,57,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1677,58,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1678,59,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1679,60,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1680,61,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1681,62,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1682,63,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1683,64,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1684,65,8,13,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1685,45,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1686,46,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1687,47,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1688,48,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1689,49,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1690,50,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1691,51,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1692,52,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1693,53,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1694,54,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1695,55,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1696,56,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1697,57,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1698,58,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1699,59,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1700,60,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1701,61,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1702,62,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1703,63,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1704,64,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1705,65,8,14,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1706,47,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1707,48,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1708,49,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1709,50,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1710,51,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1711,52,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1712,53,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1713,54,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1714,55,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1715,56,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1716,57,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1717,58,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1718,59,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1719,60,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1720,61,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1721,62,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1722,63,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1723,64,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1724,65,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1725,66,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1726,67,8,15,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1727,47,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1728,48,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1729,49,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1730,50,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1731,51,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1732,52,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1733,53,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1734,54,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1735,55,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1736,56,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1737,57,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1738,58,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1739,59,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1740,60,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1741,61,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1742,62,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1743,63,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1744,64,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1745,65,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1746,66,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1747,67,8,16,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1748,47,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1749,48,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1750,49,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1751,50,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1752,51,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1753,52,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1754,53,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1755,54,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1756,55,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1757,56,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1758,57,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1759,58,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1760,59,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1761,60,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1762,61,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1763,62,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1764,63,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1765,64,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1766,65,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1767,66,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1768,67,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1769,68,8,19,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1770,47,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1771,48,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1772,49,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1773,50,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1774,51,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1775,52,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1776,53,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1777,54,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1778,55,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1779,56,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1780,57,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1781,58,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1782,59,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1783,60,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1784,61,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1785,62,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1786,63,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1787,64,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1788,65,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1789,66,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1790,67,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1791,68,8,20,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1792,48,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1793,49,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1794,50,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1795,51,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1796,52,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1797,53,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1798,54,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1799,55,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1800,56,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1801,57,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1802,58,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1803,59,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1804,60,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1805,61,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1806,62,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1807,63,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1808,64,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1809,65,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1810,66,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1811,67,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1812,68,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1813,69,8,21,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1814,48,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1815,49,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1816,50,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1817,51,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1818,52,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1819,53,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1820,54,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1821,55,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1822,56,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1823,57,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1824,58,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1825,59,8,22,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1826,48,8,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1827,49,8,23,1,'2022-09-02 14:23:25','2022-09-02 14:23:25'),(1828,50,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1829,51,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1830,52,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1831,53,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1832,54,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1833,55,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1834,56,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1835,57,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1836,58,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1837,59,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1838,60,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1839,61,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1840,62,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1841,63,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1842,64,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1843,65,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1844,66,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1845,67,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1846,68,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1847,69,8,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1848,49,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1849,50,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1850,51,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1851,52,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1852,53,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1853,54,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1854,55,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1855,56,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1856,57,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1857,58,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1858,59,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1859,60,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1860,61,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1861,62,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1862,63,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1863,64,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1864,65,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1865,66,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1866,67,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1867,68,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1868,69,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1869,70,8,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1870,49,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1871,50,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1872,51,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1873,52,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1874,53,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1875,54,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1876,55,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1877,56,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1878,57,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1879,58,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1880,59,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1881,60,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1882,61,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1883,62,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1884,63,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1885,64,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1886,65,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1887,66,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1888,67,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1889,68,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1890,69,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1891,70,8,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1892,50,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1893,51,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1894,52,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1895,53,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1896,54,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1897,55,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1898,56,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1899,57,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1900,58,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1901,59,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1902,60,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1903,61,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1904,62,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1905,63,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1906,64,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1907,65,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1908,66,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1909,67,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1910,68,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1911,69,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1912,70,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1913,71,8,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1914,50,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1915,51,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1916,52,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1917,53,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1918,54,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1919,55,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1920,56,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1921,57,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1922,58,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1923,59,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1924,60,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1925,61,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1926,62,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1927,63,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1928,64,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1929,65,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1930,66,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1931,67,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1932,68,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1933,69,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1934,70,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1935,71,8,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1936,50,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1937,51,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1938,52,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1939,53,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1940,54,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1941,55,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1942,56,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1943,57,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1944,58,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1945,59,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1946,60,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1947,61,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1948,62,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1949,63,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1950,64,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1951,65,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1952,66,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1953,67,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1954,68,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1955,69,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1956,70,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1957,71,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1958,72,8,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1959,50,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1960,51,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1961,52,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1962,53,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1963,54,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1964,55,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1965,56,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1966,57,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1967,58,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1968,59,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1969,60,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1970,61,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1971,62,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1972,63,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1973,64,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1974,65,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1975,66,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1976,67,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1977,68,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1978,69,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1979,70,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1980,71,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1981,72,8,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1982,50,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1983,51,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1984,52,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1985,53,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1986,54,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1987,55,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1988,56,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1989,57,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1990,58,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1991,59,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1992,60,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1993,61,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1994,62,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1995,63,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1996,64,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1997,65,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1998,66,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(1999,67,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2000,68,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2001,69,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2002,70,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2003,71,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2004,72,8,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2005,43,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2006,44,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2007,45,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2008,46,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2009,47,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2010,48,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2011,49,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2012,50,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2013,51,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2014,52,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2015,53,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2016,54,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2017,55,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2018,56,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2019,57,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2020,58,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2021,59,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2022,60,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2023,61,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2024,62,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2025,63,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2026,64,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2027,65,8,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2028,35,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2029,36,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2030,37,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2031,38,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2032,39,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2033,40,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2034,41,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2035,42,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2036,43,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2037,44,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2038,45,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2039,46,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2040,47,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2041,48,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2042,49,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2043,50,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2044,51,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2045,52,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2046,53,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2047,54,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2048,55,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2049,56,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2050,57,8,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2051,28,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2052,29,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2053,30,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2054,31,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2055,32,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2056,33,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2057,34,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2058,35,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2059,36,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2060,37,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2061,38,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2062,39,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2063,40,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2064,41,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2065,42,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2066,43,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2067,44,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2068,45,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2069,46,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2070,47,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2071,48,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2072,49,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2073,50,8,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2074,21,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2075,22,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2076,23,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2077,24,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2078,25,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2079,26,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2080,27,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2081,28,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2082,29,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2083,30,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2084,31,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2085,32,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2086,33,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2087,34,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2088,35,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2089,36,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2090,37,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2091,38,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2092,39,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2093,40,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2094,41,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2095,42,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2096,43,8,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2097,10,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2098,11,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2099,12,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2100,13,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2101,14,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2102,15,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2103,16,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2104,17,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2105,18,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2106,19,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2107,20,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2108,21,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2109,22,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2110,23,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2111,24,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2112,25,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2113,26,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2114,27,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2115,28,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2116,29,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2117,30,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2118,31,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2119,32,8,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2120,1,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2121,2,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2122,3,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2123,4,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2124,5,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2125,6,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2126,7,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2127,8,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2128,9,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2129,10,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2130,11,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2131,12,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2132,13,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2133,14,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2134,15,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2135,16,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2136,17,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2137,18,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2138,19,8,270,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2139,1,8,297,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2140,2,8,297,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2141,3,8,297,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2142,4,8,297,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2143,62,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2144,63,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2145,64,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2146,65,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2147,66,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2148,67,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2149,68,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2150,69,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2151,70,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2152,71,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2153,72,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2154,73,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2155,74,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2156,75,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2157,76,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2158,77,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2159,78,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2160,79,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2161,80,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2162,81,9,1,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2163,62,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2164,63,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2165,64,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2166,65,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2167,66,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2168,67,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2169,68,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2170,69,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2171,70,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2172,71,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2173,72,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2174,73,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2175,74,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2176,75,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2177,76,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2178,77,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2179,78,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2180,79,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2181,80,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2182,81,9,2,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2183,62,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2184,63,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2185,64,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2186,65,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2187,66,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2188,67,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2189,68,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2190,69,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2191,70,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2192,71,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2193,72,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2194,73,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2195,74,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2196,75,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2197,76,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2198,77,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2199,78,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2200,79,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2201,80,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2202,81,9,3,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2203,62,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2204,63,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2205,64,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2206,65,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2207,66,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2208,67,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2209,68,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2210,69,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2211,70,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2212,71,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2213,72,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2214,73,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2215,74,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2216,75,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2217,76,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2218,77,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2219,78,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2220,79,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2221,80,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2222,81,9,4,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2223,63,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2224,64,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2225,65,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2226,66,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2227,67,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2228,68,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2229,69,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2230,70,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2231,71,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2232,72,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2233,73,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2234,74,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2235,75,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2236,76,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2237,77,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2238,78,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2239,79,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2240,80,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2241,81,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2242,82,9,5,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2243,63,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2244,64,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2245,65,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2246,66,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2247,67,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2248,68,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2249,69,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2250,70,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2251,71,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2252,72,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2253,73,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2254,74,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2255,75,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2256,76,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2257,77,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2258,78,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2259,79,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2260,80,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2261,81,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2262,82,9,6,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2263,64,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2264,65,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2265,66,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2266,67,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2267,68,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2268,69,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2269,70,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2270,71,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2271,72,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2272,73,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2273,74,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2274,75,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2275,76,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2276,77,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2277,78,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2278,79,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2279,80,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2280,81,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2281,82,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2282,83,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2283,84,9,7,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2284,64,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2285,65,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2286,66,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2287,67,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2288,68,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2289,69,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2290,70,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2291,71,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2292,72,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2293,73,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2294,74,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2295,75,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2296,76,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2297,77,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2298,78,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2299,79,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2300,80,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2301,81,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2302,82,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2303,83,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2304,84,9,8,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2305,65,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2306,66,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2307,67,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2308,68,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2309,69,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2310,70,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2311,71,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2312,72,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2313,73,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2314,74,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2315,75,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2316,76,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2317,77,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2318,78,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2319,79,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2320,80,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2321,81,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2322,82,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2323,83,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2324,84,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2325,85,9,9,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2326,66,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2327,67,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2328,68,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2329,69,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2330,70,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2331,71,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2332,72,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2333,73,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2334,74,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2335,75,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2336,76,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2337,77,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2338,78,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2339,79,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2340,80,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2341,81,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2342,82,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2343,83,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2344,84,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2345,85,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2346,86,9,10,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2347,66,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2348,67,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2349,68,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2350,69,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2351,70,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2352,71,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2353,72,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2354,73,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2355,74,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2356,75,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2357,76,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2358,77,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2359,78,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2360,79,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2361,80,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2362,81,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2363,82,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2364,83,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2365,84,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2366,85,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2367,86,9,11,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2368,66,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2369,67,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2370,68,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2371,69,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2372,70,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2373,71,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2374,72,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2375,73,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2376,74,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2377,75,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2378,76,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2379,77,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2380,78,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2381,79,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2382,80,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2383,81,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2384,82,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2385,83,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2386,84,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2387,85,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2388,86,9,12,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2389,66,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2390,67,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2391,68,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2392,69,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2393,70,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2394,71,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2395,72,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2396,73,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2397,74,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2398,75,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2399,76,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2400,77,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2401,78,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2402,79,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2403,80,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2404,81,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2405,82,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2406,83,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2407,84,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2408,85,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2409,86,9,13,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2410,66,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2411,67,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2412,68,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2413,69,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2414,70,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2415,71,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2416,72,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2417,73,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2418,74,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2419,75,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2420,76,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2421,77,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2422,78,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2423,79,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2424,80,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2425,81,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2426,82,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2427,83,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2428,84,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2429,85,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2430,86,9,14,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2431,68,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2432,69,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2433,70,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2434,71,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2435,72,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2436,73,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2437,74,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2438,75,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2439,76,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2440,77,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2441,78,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2442,79,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2443,80,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2444,81,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2445,82,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2446,83,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2447,84,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2448,85,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2449,86,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2450,87,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2451,88,9,15,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2452,68,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2453,69,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2454,70,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2455,71,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2456,72,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2457,73,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2458,74,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2459,75,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2460,76,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2461,77,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2462,78,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2463,79,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2464,80,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2465,81,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2466,82,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2467,83,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2468,84,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2469,85,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2470,86,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2471,87,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2472,88,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2473,89,9,16,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2474,69,9,19,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2475,70,9,19,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2476,71,9,19,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2477,72,9,19,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2478,73,9,19,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2479,74,9,19,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2480,75,9,19,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2481,76,9,19,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2482,69,9,20,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2483,70,9,20,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2484,71,9,20,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2485,72,9,20,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2486,73,9,20,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2487,74,9,20,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2488,75,9,20,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2489,76,9,20,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2490,70,9,21,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2491,71,9,21,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2492,72,9,21,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2493,73,9,21,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2494,74,9,21,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2495,75,9,21,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2496,76,9,21,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2497,77,9,21,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2498,78,9,21,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2499,79,9,21,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2500,70,9,22,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2501,71,9,22,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2502,72,9,22,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2503,73,9,22,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2504,74,9,22,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2505,75,9,22,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2506,76,9,22,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2507,77,9,22,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2508,78,9,22,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2509,79,9,22,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2510,70,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2511,71,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2512,72,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2513,73,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2514,74,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2515,75,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2516,76,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2517,77,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2518,78,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2519,79,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2520,80,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2521,81,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2522,82,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2523,83,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2524,84,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2525,85,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2526,86,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2527,87,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2528,88,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2529,89,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2530,90,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2531,91,9,23,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2532,71,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2533,72,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2534,73,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2535,74,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2536,75,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2537,76,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2538,77,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2539,78,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2540,79,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2541,80,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2542,81,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2543,82,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2544,83,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2545,84,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2546,85,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2547,86,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2548,87,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2549,88,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2550,89,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2551,90,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2552,91,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2553,92,9,24,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2554,71,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2555,72,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2556,73,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2557,74,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2558,75,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2559,76,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2560,77,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2561,78,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2562,79,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2563,80,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2564,81,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2565,82,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2566,83,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2567,84,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2568,85,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2569,86,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2570,87,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2571,88,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2572,89,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2573,90,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2574,91,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2575,92,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2576,93,9,25,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2577,72,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2578,73,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2579,74,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2580,75,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2581,76,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2582,77,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2583,78,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2584,79,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2585,80,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2586,81,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2587,82,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2588,83,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2589,84,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2590,85,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2591,86,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2592,87,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2593,88,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2594,89,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2595,90,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2596,91,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2597,92,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2598,93,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2599,94,9,26,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2600,72,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2601,73,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2602,74,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2603,75,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2604,76,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2605,77,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2606,78,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2607,79,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2608,80,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2609,81,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2610,82,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2611,83,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2612,84,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2613,85,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2614,86,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2615,87,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2616,88,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2617,89,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2618,90,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2619,91,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2620,92,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2621,93,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2622,94,9,27,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2623,73,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2624,74,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2625,75,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2626,76,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2627,77,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2628,78,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2629,79,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2630,80,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2631,81,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2632,82,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2633,83,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2634,84,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2635,85,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2636,86,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2637,87,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2638,88,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2639,89,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2640,90,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2641,91,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2642,92,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2643,93,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2644,94,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2645,95,9,54,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2646,73,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2647,74,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2648,75,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2649,76,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2650,77,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2651,78,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2652,79,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2653,80,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2654,81,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2655,82,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2656,83,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2657,84,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2658,85,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2659,86,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2660,87,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2661,88,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2662,89,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2663,90,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2664,91,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2665,92,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2666,93,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2667,94,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2668,95,9,81,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2669,73,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2670,74,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2671,75,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2672,76,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2673,77,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2674,78,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2675,79,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2676,80,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2677,81,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2678,82,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2679,83,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2680,84,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2681,85,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2682,86,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2683,87,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2684,88,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2685,89,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2686,90,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2687,91,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2688,92,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2689,93,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2690,94,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2691,95,9,108,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2692,66,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2693,67,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2694,68,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2695,69,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2696,70,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2697,71,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2698,72,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2699,73,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2700,74,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2701,75,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2702,76,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2703,77,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2704,78,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2705,79,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2706,80,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2707,81,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2708,82,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2709,83,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2710,84,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2711,85,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2712,86,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2713,87,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2714,88,9,135,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2715,58,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2716,59,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2717,60,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2718,61,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2719,62,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2720,63,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2721,64,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2722,65,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2723,66,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2724,67,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2725,68,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2726,69,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2727,70,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2728,71,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2729,72,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2730,73,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2731,74,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2732,75,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2733,76,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2734,77,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2735,78,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2736,79,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2737,80,9,162,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2738,51,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2739,52,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2740,53,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2741,54,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2742,55,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2743,56,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2744,57,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2745,58,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2746,59,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2747,60,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2748,61,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2749,62,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2750,63,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2751,64,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2752,65,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2753,66,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2754,67,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2755,68,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2756,69,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2757,70,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2758,71,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2759,72,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2760,73,9,189,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2761,44,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2762,45,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2763,46,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2764,47,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2765,48,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2766,49,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2767,50,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2768,51,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2769,52,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2770,53,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2771,54,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2772,55,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2773,56,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2774,57,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2775,58,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2776,59,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2777,60,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2778,61,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2779,62,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2780,63,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2781,64,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2782,65,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2783,66,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2784,67,9,216,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2785,33,9,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2786,34,9,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2787,35,9,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2788,36,9,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2789,37,9,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2790,38,9,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2791,39,9,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2792,40,9,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2793,41,9,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2794,42,9,243,1,'2022-09-02 14:23:26','2022-09-02 14:23:26'),(2795,43,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2796,44,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2797,45,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2798,46,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2799,47,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2800,48,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2801,49,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2802,50,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2803,51,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2804,52,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2805,53,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2806,54,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2807,55,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2808,56,9,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2809,20,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2810,21,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2811,22,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2812,23,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2813,24,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2814,25,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2815,26,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2816,27,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2817,28,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2818,29,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2819,30,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2820,31,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2821,32,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2822,33,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2823,34,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2824,35,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2825,36,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2826,37,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2827,38,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2828,39,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2829,40,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2830,41,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2831,42,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2832,43,9,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2833,5,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2834,6,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2835,7,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2836,8,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2837,9,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2838,10,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2839,11,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2840,12,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2841,13,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2842,14,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2843,15,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2844,16,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2845,17,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2846,18,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2847,19,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2848,20,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2849,21,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2850,22,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2851,23,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2852,24,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2853,25,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2854,26,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2855,27,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2856,28,9,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2857,1,9,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2858,2,9,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2859,3,9,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2860,82,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2861,83,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2862,84,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2863,85,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2864,86,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2865,87,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2866,88,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2867,89,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2868,90,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2869,91,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2870,92,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2871,93,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2872,94,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2873,95,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2874,96,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2875,97,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2876,98,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2877,99,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2878,100,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2879,101,10,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2880,82,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2881,83,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2882,84,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2883,85,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2884,86,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2885,87,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2886,88,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2887,89,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2888,90,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2889,91,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2890,92,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2891,93,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2892,94,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2893,95,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2894,96,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2895,97,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2896,98,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2897,99,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2898,100,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2899,101,10,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2900,82,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2901,83,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2902,84,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2903,85,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2904,86,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2905,87,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2906,88,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2907,89,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2908,90,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2909,91,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2910,92,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2911,93,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2912,94,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2913,95,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2914,96,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2915,97,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2916,98,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2917,99,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2918,100,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2919,101,10,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2920,82,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2921,83,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2922,84,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2923,85,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2924,86,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2925,87,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2926,88,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2927,89,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2928,90,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2929,91,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2930,92,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2931,93,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2932,94,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2933,95,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2934,96,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2935,97,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2936,98,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2937,99,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2938,100,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2939,101,10,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2940,83,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2941,84,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2942,85,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2943,86,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2944,87,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2945,88,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2946,89,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2947,90,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2948,91,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2949,92,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2950,93,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2951,94,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2952,95,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2953,96,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2954,97,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2955,98,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2956,99,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2957,100,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2958,101,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2959,102,10,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2960,83,10,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2961,84,10,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2962,85,10,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2963,86,10,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2964,87,10,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2965,88,10,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2966,89,10,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2967,90,10,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2968,91,10,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2969,85,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2970,86,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2971,87,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2972,88,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2973,89,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2974,90,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2975,91,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2976,92,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2977,93,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2978,94,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2979,95,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2980,96,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2981,97,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2982,98,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2983,99,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2984,100,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2985,101,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2986,102,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2987,103,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2988,104,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2989,105,10,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2990,85,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2991,86,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2992,87,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2993,88,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2994,89,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2995,90,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2996,91,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2997,92,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2998,93,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(2999,94,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3000,95,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3001,96,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3002,97,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3003,98,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3004,99,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3005,100,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3006,101,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3007,102,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3008,103,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3009,104,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3010,105,10,8,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3011,86,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3012,87,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3013,88,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3014,89,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3015,90,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3016,91,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3017,92,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3018,93,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3019,94,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3020,95,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3021,96,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3022,97,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3023,98,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3024,99,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3025,100,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3026,101,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3027,102,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3028,103,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3029,104,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3030,105,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3031,106,10,9,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3032,87,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3033,88,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3034,89,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3035,90,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3036,91,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3037,92,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3038,93,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3039,94,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3040,95,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3041,96,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3042,97,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3043,98,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3044,99,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3045,100,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3046,101,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3047,102,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3048,103,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3049,104,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3050,105,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3051,106,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3052,107,10,10,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3053,87,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3054,88,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3055,89,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3056,90,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3057,91,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3058,92,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3059,93,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3060,94,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3061,95,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3062,96,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3063,97,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3064,98,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3065,99,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3066,100,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3067,101,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3068,102,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3069,103,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3070,104,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3071,105,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3072,106,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3073,107,10,11,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3074,87,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3075,88,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3076,89,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3077,90,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3078,91,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3079,92,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3080,93,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3081,94,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3082,95,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3083,96,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3084,97,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3085,98,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3086,99,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3087,100,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3088,101,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3089,102,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3090,103,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3091,104,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3092,105,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3093,106,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3094,107,10,12,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3095,87,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3096,88,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3097,89,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3098,90,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3099,91,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3100,92,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3101,93,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3102,94,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3103,95,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3104,96,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3105,97,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3106,98,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3107,99,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3108,100,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3109,101,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3110,102,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3111,103,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3112,104,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3113,105,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3114,106,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3115,107,10,13,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3116,87,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3117,88,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3118,89,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3119,90,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3120,91,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3121,92,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3122,93,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3123,94,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3124,95,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3125,96,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3126,97,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3127,98,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3128,99,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3129,100,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3130,101,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3131,102,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3132,103,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3133,104,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3134,105,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3135,106,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3136,107,10,14,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3137,89,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3138,90,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3139,91,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3140,92,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3141,93,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3142,94,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3143,95,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3144,96,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3145,97,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3146,98,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3147,99,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3148,100,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3149,101,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3150,102,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3151,103,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3152,104,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3153,105,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3154,106,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3155,107,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3156,108,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3157,109,10,15,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3158,90,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3159,91,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3160,92,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3161,93,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3162,94,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3163,95,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3164,96,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3165,97,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3166,98,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3167,99,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3168,100,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3169,101,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3170,102,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3171,103,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3172,104,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3173,105,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3174,106,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3175,107,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3176,108,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3177,109,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3178,110,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3179,111,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3180,112,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3181,113,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3182,114,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3183,115,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3184,116,10,16,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3185,77,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3186,78,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3187,79,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3188,80,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3189,81,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3190,82,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3191,83,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3192,84,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3193,85,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3194,86,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3195,87,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3196,88,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3197,89,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3198,90,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3199,91,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3200,92,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3201,93,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3202,94,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3203,95,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3204,96,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3205,97,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3206,98,10,19,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3207,77,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3208,78,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3209,79,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3210,80,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3211,81,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3212,82,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3213,83,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3214,84,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3215,85,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3216,86,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3217,87,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3218,88,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3219,89,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3220,90,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3221,91,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3222,92,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3223,93,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3224,94,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3225,95,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3226,96,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3227,97,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3228,98,10,20,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3229,80,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3230,81,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3231,82,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3232,83,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3233,84,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3234,85,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3235,86,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3236,87,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3237,88,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3238,89,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3239,90,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3240,91,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3241,92,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3242,93,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3243,94,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3244,95,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3245,96,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3246,97,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3247,98,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3248,99,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3249,100,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3250,101,10,21,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3251,80,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3252,81,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3253,82,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3254,83,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3255,84,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3256,85,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3257,86,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3258,87,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3259,88,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3260,89,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3261,90,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3262,91,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3263,92,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3264,93,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3265,94,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3266,95,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3267,96,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3268,97,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3269,98,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3270,99,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3271,100,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3272,101,10,22,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3273,92,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3274,93,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3275,94,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3276,95,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3277,96,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3278,97,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3279,98,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3280,99,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3281,100,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3282,101,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3283,102,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3284,103,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3285,104,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3286,105,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3287,106,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3288,107,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3289,108,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3290,109,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3291,110,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3292,111,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3293,112,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3294,113,10,23,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3295,93,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3296,94,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3297,95,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3298,96,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3299,97,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3300,98,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3301,99,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3302,100,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3303,101,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3304,102,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3305,103,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3306,104,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3307,105,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3308,106,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3309,107,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3310,108,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3311,109,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3312,110,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3313,111,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3314,112,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3315,113,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3316,114,10,24,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3317,94,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3318,95,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3319,96,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3320,97,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3321,98,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3322,99,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3323,100,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3324,101,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3325,102,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3326,103,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3327,104,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3328,105,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3329,106,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3330,107,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3331,108,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3332,109,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3333,110,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3334,111,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3335,112,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3336,113,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3337,114,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3338,115,10,25,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3339,95,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3340,96,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3341,97,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3342,98,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3343,99,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3344,100,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3345,101,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3346,102,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3347,103,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3348,104,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3349,105,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3350,106,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3351,107,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3352,108,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3353,109,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3354,110,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3355,111,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3356,112,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3357,113,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3358,114,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3359,115,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3360,116,10,26,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3361,95,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3362,96,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3363,97,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3364,98,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3365,99,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3366,100,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3367,101,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3368,102,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3369,103,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3370,104,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3371,105,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3372,106,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3373,107,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3374,108,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3375,109,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3376,110,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3377,111,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3378,112,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3379,113,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3380,114,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3381,115,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3382,116,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3383,117,10,27,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3384,96,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3385,97,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3386,98,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3387,99,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3388,100,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3389,101,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3390,102,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3391,103,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3392,104,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3393,105,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3394,106,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3395,107,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3396,108,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3397,109,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3398,110,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3399,111,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3400,112,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3401,113,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3402,114,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3403,115,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3404,116,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3405,117,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3406,118,10,54,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3407,96,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3408,97,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3409,98,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3410,99,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3411,100,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3412,101,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3413,102,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3414,103,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3415,104,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3416,105,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3417,106,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3418,107,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3419,108,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3420,109,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3421,110,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3422,111,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3423,112,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3424,113,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3425,114,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3426,115,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3427,116,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3428,117,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3429,118,10,81,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3430,96,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3431,97,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3432,98,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3433,99,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3434,100,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3435,101,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3436,102,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3437,103,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3438,104,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3439,105,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3440,106,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3441,107,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3442,108,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3443,109,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3444,110,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3445,111,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3446,112,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3447,113,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3448,114,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3449,115,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3450,116,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3451,117,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3452,118,10,108,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3453,89,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3454,90,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3455,91,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3456,92,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3457,93,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3458,94,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3459,95,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3460,96,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3461,97,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3462,98,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3463,99,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3464,100,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3465,101,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3466,102,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3467,103,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3468,104,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3469,105,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3470,106,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3471,107,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3472,108,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3473,109,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3474,110,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3475,111,10,135,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3476,81,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3477,82,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3478,83,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3479,84,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3480,85,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3481,86,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3482,87,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3483,88,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3484,89,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3485,90,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3486,91,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3487,92,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3488,93,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3489,94,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3490,95,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3491,96,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3492,97,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3493,98,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3494,99,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3495,100,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3496,101,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3497,102,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3498,103,10,162,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3499,74,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3500,75,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3501,76,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3502,77,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3503,78,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3504,79,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3505,80,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3506,81,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3507,82,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3508,83,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3509,84,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3510,85,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3511,86,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3512,87,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3513,88,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3514,89,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3515,90,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3516,91,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3517,92,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3518,93,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3519,94,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3520,95,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3521,96,10,189,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3522,68,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3523,69,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3524,70,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3525,71,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3526,72,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3527,73,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3528,74,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3529,75,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3530,76,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3531,77,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3532,78,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3533,79,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3534,80,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3535,81,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3536,82,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3537,83,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3538,84,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3539,85,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3540,86,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3541,87,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3542,88,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3543,89,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3544,90,10,216,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3545,57,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3546,58,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3547,59,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3548,60,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3549,61,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3550,62,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3551,63,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3552,64,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3553,65,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3554,66,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3555,67,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3556,68,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3557,69,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3558,70,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3559,71,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3560,72,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3561,73,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3562,74,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3563,75,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3564,76,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3565,77,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3566,78,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3567,79,10,243,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3568,44,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3569,45,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3570,46,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3571,47,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3572,48,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3573,49,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3574,50,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3575,51,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3576,52,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3577,53,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3578,54,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3579,55,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3580,56,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3581,57,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3582,58,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3583,59,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3584,60,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3585,61,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3586,62,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3587,63,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3588,64,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3589,65,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3590,66,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3591,67,10,270,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3592,29,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3593,30,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3594,31,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3595,32,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3596,33,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3597,34,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3598,35,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3599,36,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3600,37,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3601,38,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3602,39,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3603,40,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3604,41,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3605,42,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3606,43,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3607,44,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3608,45,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3609,46,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3610,47,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3611,48,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3612,49,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3613,50,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3614,51,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3615,52,10,297,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3616,4,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3617,5,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3618,6,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3619,7,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3620,8,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3621,9,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3622,10,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3623,11,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3624,12,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3625,13,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3626,14,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3627,15,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3628,16,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3629,17,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3630,18,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3631,19,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3632,20,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3633,21,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3634,22,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3635,23,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3636,24,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3637,25,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3638,26,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3639,27,10,324,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3640,102,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3641,103,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3642,104,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3643,105,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3644,106,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3645,107,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3646,108,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3647,109,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3648,110,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3649,111,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3650,112,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3651,113,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3652,114,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3653,115,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3654,116,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3655,117,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3656,118,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3657,119,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3658,120,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3659,121,11,1,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3660,102,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3661,103,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3662,104,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3663,105,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3664,106,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3665,107,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3666,108,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3667,109,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3668,110,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3669,111,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3670,112,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3671,113,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3672,114,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3673,115,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3674,116,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3675,117,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3676,118,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3677,119,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3678,120,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3679,121,11,2,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3680,102,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3681,103,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3682,104,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3683,105,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3684,106,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3685,107,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3686,108,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3687,109,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3688,110,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3689,111,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3690,112,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3691,113,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3692,114,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3693,115,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3694,116,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3695,117,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3696,118,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3697,119,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3698,120,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3699,121,11,3,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3700,102,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3701,103,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3702,104,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3703,105,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3704,106,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3705,107,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3706,108,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3707,109,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3708,110,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3709,111,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3710,112,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3711,113,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3712,114,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3713,115,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3714,116,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3715,117,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3716,118,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3717,119,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3718,120,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3719,121,11,4,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3720,103,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3721,104,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3722,105,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3723,106,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3724,107,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3725,108,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3726,109,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3727,110,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3728,111,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3729,112,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3730,113,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3731,114,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3732,115,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3733,116,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3734,117,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3735,118,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3736,119,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3737,120,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3738,121,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3739,122,11,5,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3740,103,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3741,104,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3742,105,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3743,106,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3744,107,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3745,108,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3746,109,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3747,110,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3748,111,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3749,112,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3750,113,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3751,114,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3752,115,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3753,116,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3754,117,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3755,118,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3756,119,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3757,120,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3758,121,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3759,122,11,6,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3760,106,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3761,107,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3762,108,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3763,109,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3764,110,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3765,111,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3766,112,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3767,113,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3768,114,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3769,115,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3770,116,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3771,117,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3772,118,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3773,119,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3774,120,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3775,121,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3776,122,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3777,123,11,7,1,'2022-09-02 14:23:27','2022-09-02 14:23:27'),(3778,124,11,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3779,106,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3780,107,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3781,108,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3782,109,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3783,110,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3784,111,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3785,112,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3786,113,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3787,114,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3788,115,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3789,116,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3790,117,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3791,118,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3792,119,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3793,120,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3794,121,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3795,122,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3796,123,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3797,124,11,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3798,107,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3799,108,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3800,109,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3801,110,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3802,111,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3803,112,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3804,113,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3805,114,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3806,115,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3807,116,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3808,117,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3809,118,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3810,119,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3811,120,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3812,121,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3813,122,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3814,123,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3815,124,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3816,125,11,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3817,108,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3818,109,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3819,110,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3820,111,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3821,112,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3822,113,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3823,114,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3824,115,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3825,116,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3826,117,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3827,118,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3828,119,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3829,120,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3830,121,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3831,122,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3832,123,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3833,124,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3834,125,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3835,126,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3836,127,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3837,128,11,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3838,108,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3839,109,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3840,110,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3841,111,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3842,112,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3843,113,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3844,114,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3845,115,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3846,116,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3847,117,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3848,118,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3849,119,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3850,120,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3851,121,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3852,122,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3853,123,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3854,124,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3855,125,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3856,126,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3857,127,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3858,128,11,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3859,108,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3860,109,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3861,110,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3862,111,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3863,112,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3864,113,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3865,114,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3866,115,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3867,116,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3868,117,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3869,118,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3870,119,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3871,120,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3872,121,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3873,122,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3874,123,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3875,124,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3876,125,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3877,126,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3878,127,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3879,128,11,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3880,108,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3881,109,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3882,110,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3883,111,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3884,112,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3885,113,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3886,114,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3887,115,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3888,116,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3889,117,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3890,118,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3891,119,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3892,120,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3893,121,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3894,122,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3895,123,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3896,124,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3897,125,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3898,126,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3899,127,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3900,128,11,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3901,108,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3902,109,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3903,110,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3904,111,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3905,112,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3906,113,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3907,114,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3908,115,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3909,116,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3910,117,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3911,118,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3912,119,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3913,120,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3914,121,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3915,122,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3916,123,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3917,124,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3918,125,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3919,126,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3920,127,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3921,128,11,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3922,110,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3923,111,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3924,112,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3925,113,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3926,114,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3927,115,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3928,116,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3929,117,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3930,118,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3931,119,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3932,120,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3933,121,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3934,122,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3935,123,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3936,124,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3937,125,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3938,126,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3939,127,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3940,128,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3941,129,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3942,130,11,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3943,112,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3944,113,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3945,114,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3946,115,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3947,116,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3948,117,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3949,118,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3950,119,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3951,120,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3952,121,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3953,122,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3954,123,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3955,124,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3956,125,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3957,126,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3958,127,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3959,128,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3960,129,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3961,130,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3962,131,11,16,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3963,99,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3964,100,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3965,101,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3966,102,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3967,103,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3968,104,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3969,105,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3970,106,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3971,107,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3972,108,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3973,109,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3974,110,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3975,111,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3976,112,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3977,113,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3978,114,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3979,115,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3980,116,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3981,117,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3982,118,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3983,119,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3984,120,11,19,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3985,99,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3986,100,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3987,101,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3988,102,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3989,103,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3990,104,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3991,105,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3992,106,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3993,107,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3994,108,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3995,109,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3996,110,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3997,111,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3998,112,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(3999,113,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4000,114,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4001,115,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4002,116,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4003,117,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4004,118,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4005,119,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4006,120,11,20,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4007,102,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4008,103,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4009,104,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4010,105,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4011,106,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4012,107,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4013,108,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4014,109,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4015,110,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4016,111,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4017,112,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4018,113,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4019,114,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4020,115,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4021,116,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4022,117,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4023,118,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4024,119,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4025,120,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4026,121,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4027,122,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4028,123,11,21,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4029,102,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4030,103,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4031,104,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4032,105,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4033,106,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4034,107,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4035,108,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4036,109,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4037,110,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4038,111,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4039,112,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4040,113,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4041,114,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4042,115,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4043,116,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4044,117,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4045,118,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4046,119,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4047,120,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4048,121,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4049,122,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4050,123,11,22,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4051,114,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4052,115,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4053,116,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4054,117,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4055,118,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4056,119,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4057,120,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4058,121,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4059,122,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4060,123,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4061,124,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4062,125,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4063,126,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4064,127,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4065,128,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4066,129,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4067,130,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4068,131,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4069,132,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4070,133,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4071,134,11,23,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4072,115,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4073,116,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4074,117,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4075,118,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4076,119,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4077,120,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4078,121,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4079,122,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4080,123,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4081,124,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4082,125,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4083,126,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4084,127,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4085,128,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4086,129,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4087,130,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4088,131,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4089,132,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4090,133,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4091,134,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4092,135,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4093,136,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4094,137,11,24,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4095,116,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4096,117,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4097,118,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4098,119,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4099,120,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4100,121,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4101,122,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4102,123,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4103,124,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4104,125,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4105,126,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4106,127,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4107,128,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4108,129,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4109,130,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4110,131,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4111,132,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4112,133,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4113,134,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4114,135,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4115,136,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4116,137,11,25,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4117,117,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4118,118,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4119,119,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4120,120,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4121,121,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4122,122,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4123,123,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4124,124,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4125,125,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4126,126,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4127,127,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4128,128,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4129,129,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4130,130,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4131,131,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4132,132,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4133,133,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4134,134,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4135,135,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4136,136,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4137,137,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4138,138,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4139,139,11,26,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4140,118,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4141,119,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4142,120,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4143,121,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4144,122,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4145,123,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4146,124,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4147,125,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4148,126,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4149,127,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4150,128,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4151,129,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4152,130,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4153,131,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4154,132,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4155,133,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4156,134,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4157,135,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4158,136,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4159,137,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4160,138,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4161,139,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4162,140,11,27,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4163,119,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4164,120,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4165,121,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4166,122,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4167,123,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4168,124,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4169,125,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4170,126,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4171,127,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4172,128,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4173,129,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4174,130,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4175,131,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4176,132,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4177,133,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4178,134,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4179,135,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4180,136,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4181,137,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4182,138,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4183,139,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4184,140,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4185,141,11,54,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4186,119,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4187,120,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4188,121,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4189,122,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4190,123,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4191,124,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4192,125,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4193,126,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4194,127,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4195,128,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4196,129,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4197,130,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4198,131,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4199,132,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4200,133,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4201,134,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4202,135,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4203,136,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4204,137,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4205,138,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4206,139,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4207,140,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4208,141,11,81,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4209,119,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4210,120,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4211,121,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4212,122,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4213,123,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4214,124,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4215,125,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4216,126,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4217,127,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4218,128,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4219,129,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4220,130,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4221,131,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4222,132,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4223,133,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4224,134,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4225,135,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4226,136,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4227,137,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4228,138,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4229,139,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4230,140,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4231,141,11,108,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4232,112,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4233,113,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4234,114,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4235,115,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4236,116,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4237,117,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4238,118,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4239,119,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4240,120,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4241,121,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4242,122,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4243,123,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4244,124,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4245,125,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4246,126,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4247,127,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4248,128,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4249,129,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4250,130,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4251,131,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4252,132,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4253,133,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4254,134,11,135,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4255,104,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4256,105,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4257,106,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4258,107,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4259,108,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4260,109,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4261,110,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4262,111,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4263,112,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4264,113,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4265,114,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4266,115,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4267,116,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4268,117,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4269,118,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4270,119,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4271,120,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4272,121,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4273,122,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4274,123,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4275,124,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4276,125,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4277,126,11,162,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4278,97,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4279,98,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4280,99,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4281,100,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4282,101,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4283,102,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4284,103,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4285,104,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4286,105,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4287,106,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4288,107,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4289,108,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4290,109,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4291,110,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4292,111,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4293,112,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4294,113,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4295,114,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4296,115,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4297,116,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4298,117,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4299,118,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4300,119,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4301,120,11,189,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4302,91,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4303,92,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4304,93,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4305,94,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4306,95,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4307,96,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4308,97,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4309,98,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4310,99,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4311,100,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4312,101,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4313,102,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4314,103,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4315,104,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4316,105,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4317,106,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4318,107,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4319,108,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4320,109,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4321,110,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4322,111,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4323,112,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4324,113,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4325,114,11,216,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4326,80,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4327,81,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4328,82,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4329,83,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4330,84,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4331,85,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4332,86,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4333,87,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4334,88,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4335,89,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4336,90,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4337,91,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4338,92,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4339,93,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4340,94,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4341,95,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4342,96,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4343,97,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4344,98,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4345,99,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4346,100,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4347,101,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4348,102,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4349,103,11,243,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4350,68,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4351,69,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4352,70,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4353,71,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4354,72,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4355,73,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4356,74,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4357,75,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4358,76,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4359,77,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4360,78,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4361,79,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4362,80,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4363,81,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4364,82,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4365,83,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4366,84,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4367,85,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4368,86,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4369,87,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4370,88,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4371,89,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4372,90,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4373,91,11,270,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4374,53,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4375,54,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4376,55,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4377,56,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4378,57,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4379,58,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4380,59,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4381,60,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4382,61,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4383,62,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4384,63,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4385,64,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4386,65,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4387,66,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4388,67,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4389,68,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4390,69,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4391,70,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4392,71,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4393,72,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4394,73,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4395,74,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4396,75,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4397,76,11,297,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4398,28,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4399,29,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4400,30,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4401,31,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4402,32,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4403,33,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4404,34,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4405,35,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4406,36,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4407,37,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4408,38,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4409,39,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4410,40,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4411,41,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4412,42,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4413,43,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4414,44,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4415,45,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4416,46,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4417,47,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4418,48,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4419,49,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4420,50,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4421,51,11,324,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4422,1,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4423,2,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4424,3,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4425,4,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4426,5,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4427,6,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4428,7,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4429,8,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4430,9,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4431,10,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4432,11,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4433,12,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4434,13,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4435,14,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4436,15,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4437,16,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4438,17,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4439,18,11,351,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4440,122,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4441,123,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4442,124,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4443,125,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4444,126,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4445,127,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4446,128,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4447,129,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4448,130,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4449,131,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4450,132,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4451,133,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4452,134,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4453,135,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4454,136,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4455,137,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4456,138,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4457,139,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4458,140,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4459,141,12,1,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4460,122,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4461,123,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4462,124,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4463,125,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4464,126,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4465,127,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4466,128,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4467,129,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4468,130,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4469,131,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4470,132,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4471,133,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4472,134,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4473,135,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4474,136,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4475,137,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4476,138,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4477,139,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4478,140,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4479,141,12,2,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4480,122,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4481,123,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4482,124,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4483,125,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4484,126,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4485,127,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4486,128,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4487,129,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4488,130,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4489,131,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4490,132,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4491,133,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4492,134,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4493,135,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4494,136,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4495,137,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4496,138,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4497,139,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4498,140,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4499,141,12,3,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4500,122,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4501,123,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4502,124,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4503,125,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4504,126,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4505,127,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4506,128,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4507,129,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4508,130,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4509,131,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4510,132,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4511,133,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4512,134,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4513,135,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4514,136,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4515,137,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4516,138,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4517,139,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4518,140,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4519,141,12,4,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4520,123,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4521,124,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4522,125,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4523,126,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4524,127,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4525,128,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4526,129,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4527,130,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4528,131,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4529,132,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4530,133,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4531,134,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4532,135,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4533,136,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4534,137,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4535,138,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4536,139,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4537,140,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4538,141,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4539,142,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4540,143,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4541,144,12,5,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4542,123,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4543,124,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4544,125,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4545,126,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4546,127,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4547,128,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4548,129,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4549,130,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4550,131,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4551,132,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4552,133,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4553,134,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4554,135,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4555,136,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4556,137,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4557,138,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4558,139,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4559,140,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4560,141,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4561,142,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4562,143,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4563,144,12,6,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4564,125,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4565,126,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4566,127,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4567,128,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4568,129,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4569,130,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4570,131,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4571,132,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4572,133,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4573,134,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4574,135,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4575,136,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4576,137,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4577,138,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4578,139,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4579,140,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4580,141,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4581,142,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4582,143,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4583,144,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4584,145,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4585,146,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4586,147,12,7,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4587,125,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4588,126,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4589,127,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4590,128,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4591,129,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4592,130,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4593,131,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4594,132,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4595,133,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4596,134,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4597,135,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4598,136,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4599,137,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4600,138,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4601,139,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4602,140,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4603,141,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4604,142,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4605,143,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4606,144,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4607,145,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4608,146,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4609,147,12,8,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4610,126,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4611,127,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4612,128,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4613,129,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4614,130,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4615,131,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4616,132,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4617,133,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4618,134,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4619,135,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4620,136,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4621,137,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4622,138,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4623,139,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4624,140,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4625,141,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4626,142,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4627,143,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4628,144,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4629,145,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4630,146,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4631,147,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4632,148,12,9,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4633,129,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4634,130,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4635,131,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4636,132,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4637,133,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4638,134,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4639,135,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4640,136,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4641,137,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4642,138,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4643,139,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4644,140,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4645,141,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4646,142,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4647,143,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4648,144,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4649,145,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4650,146,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4651,147,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4652,148,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4653,149,12,10,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4654,129,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4655,130,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4656,131,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4657,132,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4658,133,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4659,134,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4660,135,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4661,136,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4662,137,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4663,138,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4664,139,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4665,140,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4666,141,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4667,142,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4668,143,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4669,144,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4670,145,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4671,146,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4672,147,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4673,148,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4674,149,12,11,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4675,129,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4676,130,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4677,131,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4678,132,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4679,133,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4680,134,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4681,135,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4682,136,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4683,137,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4684,138,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4685,139,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4686,140,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4687,141,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4688,142,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4689,143,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4690,144,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4691,145,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4692,146,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4693,147,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4694,148,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4695,149,12,12,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4696,129,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4697,130,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4698,131,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4699,132,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4700,133,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4701,134,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4702,135,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4703,136,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4704,137,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4705,138,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4706,139,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4707,140,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4708,141,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4709,142,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4710,143,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4711,144,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4712,145,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4713,146,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4714,147,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4715,148,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4716,149,12,13,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4717,129,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4718,130,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4719,131,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4720,132,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4721,133,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4722,134,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4723,135,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4724,136,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4725,137,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4726,138,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4727,139,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4728,140,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4729,141,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4730,142,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4731,143,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4732,144,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4733,145,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4734,146,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4735,147,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4736,148,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4737,149,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4738,150,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4739,151,12,14,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4740,131,12,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4741,132,12,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4742,133,12,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4743,134,12,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4744,135,12,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4745,136,12,15,1,'2022-09-02 14:23:28','2022-09-02 14:23:28'),(4746,137,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4747,138,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4748,139,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4749,140,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4750,141,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4751,142,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4752,143,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4753,144,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4754,145,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4755,146,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4756,147,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4757,148,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4758,149,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4759,150,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4760,151,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4761,152,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4762,153,12,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4763,132,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4764,133,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4765,134,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4766,135,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4767,136,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4768,137,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4769,138,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4770,139,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4771,140,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4772,141,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4773,142,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4774,143,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4775,144,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4776,145,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4777,146,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4778,147,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4779,148,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4780,149,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4781,150,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4782,151,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4783,152,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4784,153,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4785,154,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4786,155,12,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4787,121,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4788,122,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4789,123,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4790,124,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4791,125,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4792,126,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4793,127,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4794,128,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4795,129,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4796,130,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4797,131,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4798,132,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4799,133,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4800,134,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4801,135,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4802,136,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4803,137,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4804,138,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4805,139,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4806,140,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4807,141,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4808,142,12,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4809,121,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4810,122,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4811,123,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4812,124,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4813,125,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4814,126,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4815,127,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4816,128,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4817,129,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4818,130,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4819,131,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4820,132,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4821,133,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4822,134,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4823,135,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4824,136,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4825,137,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4826,138,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4827,139,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4828,140,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4829,141,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4830,142,12,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4831,124,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4832,125,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4833,126,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4834,127,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4835,128,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4836,129,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4837,130,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4838,131,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4839,132,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4840,133,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4841,134,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4842,135,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4843,136,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4844,137,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4845,138,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4846,139,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4847,140,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4848,141,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4849,142,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4850,143,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4851,144,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4852,145,12,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4853,124,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4854,125,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4855,126,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4856,127,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4857,128,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4858,129,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4859,130,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4860,131,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4861,132,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4862,133,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4863,134,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4864,135,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4865,136,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4866,137,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4867,138,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4868,139,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4869,140,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4870,141,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4871,142,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4872,143,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4873,144,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4874,145,12,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4875,135,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4876,136,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4877,137,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4878,138,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4879,139,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4880,140,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4881,141,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4882,142,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4883,143,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4884,144,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4885,145,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4886,146,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4887,147,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4888,148,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4889,149,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4890,150,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4891,151,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4892,152,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4893,153,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4894,154,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4895,155,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4896,156,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4897,157,12,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4898,138,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4899,139,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4900,140,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4901,141,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4902,142,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4903,143,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4904,144,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4905,145,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4906,146,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4907,147,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4908,148,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4909,149,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4910,150,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4911,151,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4912,152,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4913,153,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4914,154,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4915,155,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4916,156,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4917,157,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4918,158,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4919,159,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4920,160,12,24,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4921,138,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4922,139,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4923,140,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4924,141,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4925,142,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4926,143,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4927,144,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4928,145,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4929,146,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4930,147,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4931,148,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4932,149,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4933,150,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4934,151,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4935,152,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4936,153,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4937,154,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4938,155,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4939,156,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4940,157,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4941,158,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4942,159,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4943,160,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4944,161,12,25,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4945,140,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4946,141,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4947,142,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4948,143,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4949,144,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4950,145,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4951,146,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4952,147,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4953,148,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4954,149,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4955,150,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4956,151,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4957,152,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4958,153,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4959,154,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4960,155,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4961,156,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4962,157,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4963,158,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4964,159,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4965,160,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4966,161,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4967,162,12,26,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4968,141,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4969,142,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4970,143,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4971,144,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4972,145,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4973,146,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4974,147,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4975,148,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4976,149,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4977,150,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4978,151,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4979,152,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4980,153,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4981,154,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4982,155,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4983,156,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4984,157,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4985,158,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4986,159,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4987,160,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4988,161,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4989,162,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4990,163,12,27,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4991,142,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4992,143,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4993,144,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4994,145,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4995,146,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4996,147,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4997,148,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4998,149,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(4999,150,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5000,151,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5001,152,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5002,153,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5003,154,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5004,155,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5005,156,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5006,157,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5007,158,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5008,159,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5009,160,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5010,161,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5011,162,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5012,163,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5013,164,12,54,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5014,142,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5015,143,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5016,144,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5017,145,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5018,146,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5019,147,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5020,148,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5021,149,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5022,150,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5023,151,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5024,152,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5025,153,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5026,154,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5027,155,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5028,156,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5029,157,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5030,158,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5031,159,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5032,160,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5033,161,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5034,162,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5035,163,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5036,164,12,81,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5037,142,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5038,143,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5039,144,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5040,145,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5041,146,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5042,147,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5043,148,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5044,149,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5045,150,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5046,151,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5047,152,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5048,153,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5049,154,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5050,155,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5051,156,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5052,157,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5053,158,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5054,159,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5055,160,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5056,161,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5057,162,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5058,163,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5059,164,12,108,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5060,135,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5061,136,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5062,137,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5063,138,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5064,139,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5065,140,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5066,141,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5067,142,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5068,143,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5069,144,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5070,145,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5071,146,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5072,147,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5073,148,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5074,149,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5075,150,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5076,151,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5077,152,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5078,153,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5079,154,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5080,155,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5081,156,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5082,157,12,135,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5083,127,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5084,128,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5085,129,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5086,130,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5087,131,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5088,132,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5089,133,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5090,134,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5091,135,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5092,136,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5093,137,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5094,138,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5095,139,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5096,140,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5097,141,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5098,142,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5099,143,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5100,144,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5101,145,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5102,146,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5103,147,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5104,148,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5105,149,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5106,150,12,162,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5107,121,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5108,122,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5109,123,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5110,124,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5111,125,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5112,126,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5113,127,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5114,128,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5115,129,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5116,130,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5117,131,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5118,132,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5119,133,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5120,134,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5121,135,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5122,136,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5123,137,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5124,138,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5125,139,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5126,140,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5127,141,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5128,142,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5129,143,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5130,144,12,189,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5131,115,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5132,116,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5133,117,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5134,118,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5135,119,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5136,120,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5137,121,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5138,122,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5139,123,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5140,124,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5141,125,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5142,126,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5143,127,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5144,128,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5145,129,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5146,130,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5147,131,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5148,132,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5149,133,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5150,134,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5151,135,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5152,136,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5153,137,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5154,138,12,216,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5155,104,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5156,105,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5157,106,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5158,107,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5159,108,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5160,109,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5161,110,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5162,111,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5163,112,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5164,113,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5165,114,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5166,115,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5167,116,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5168,117,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5169,118,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5170,119,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5171,120,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5172,121,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5173,122,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5174,123,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5175,124,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5176,125,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5177,126,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5178,127,12,243,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5179,92,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5180,93,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5181,94,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5182,95,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5183,96,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5184,97,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5185,98,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5186,99,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5187,100,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5188,101,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5189,102,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5190,103,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5191,104,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5192,105,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5193,106,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5194,107,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5195,108,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5196,109,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5197,110,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5198,111,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5199,112,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5200,113,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5201,114,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5202,115,12,270,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5203,77,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5204,78,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5205,79,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5206,80,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5207,81,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5208,82,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5209,83,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5210,84,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5211,85,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5212,86,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5213,87,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5214,88,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5215,89,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5216,90,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5217,91,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5218,92,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5219,93,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5220,94,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5221,95,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5222,96,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5223,97,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5224,98,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5225,99,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5226,100,12,297,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5227,52,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5228,53,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5229,54,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5230,55,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5231,56,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5232,57,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5233,58,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5234,59,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5235,60,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5236,61,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5237,62,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5238,63,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5239,64,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5240,65,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5241,66,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5242,67,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5243,68,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5244,69,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5245,70,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5246,71,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5247,72,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5248,73,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5249,74,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5250,75,12,324,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5251,19,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5252,20,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5253,21,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5254,22,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5255,23,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5256,24,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5257,25,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5258,26,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5259,27,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5260,28,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5261,29,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5262,31,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5263,32,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5264,33,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5265,34,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5266,35,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5267,36,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5268,37,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5269,38,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5270,39,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5271,40,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5272,41,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5273,42,12,351,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5274,1,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5275,2,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5276,3,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5277,4,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5278,5,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5279,6,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5280,7,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5281,8,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5282,9,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5283,10,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5284,11,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5285,12,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5286,13,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5287,14,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5288,15,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5289,16,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5290,17,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5291,18,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5292,19,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5293,20,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5294,21,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5295,22,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5296,23,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5297,24,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5298,25,12,378,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5299,142,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5300,143,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5301,144,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5302,145,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5303,146,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5304,147,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5305,148,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5306,149,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5307,150,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5308,151,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5309,152,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5310,153,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5311,154,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5312,155,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5313,156,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5314,157,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5315,158,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5316,159,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5317,160,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5318,161,13,1,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5319,142,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5320,143,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5321,144,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5322,145,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5323,146,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5324,147,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5325,148,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5326,149,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5327,150,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5328,151,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5329,152,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5330,153,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5331,154,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5332,155,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5333,156,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5334,157,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5335,158,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5336,159,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5337,160,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5338,161,13,2,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5339,142,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5340,143,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5341,144,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5342,145,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5343,146,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5344,147,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5345,148,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5346,149,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5347,150,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5348,151,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5349,152,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5350,153,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5351,154,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5352,155,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5353,156,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5354,157,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5355,158,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5356,159,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5357,160,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5358,161,13,3,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5359,142,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5360,143,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5361,144,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5362,145,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5363,146,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5364,147,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5365,148,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5366,149,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5367,150,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5368,151,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5369,152,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5370,153,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5371,154,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5372,155,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5373,156,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5374,157,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5375,158,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5376,159,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5377,160,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5378,161,13,4,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5379,145,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5380,146,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5381,147,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5382,148,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5383,149,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5384,150,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5385,151,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5386,152,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5387,153,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5388,154,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5389,155,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5390,156,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5391,157,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5392,158,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5393,159,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5394,160,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5395,161,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5396,162,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5397,163,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5398,164,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5399,165,13,5,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5400,145,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5401,146,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5402,147,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5403,148,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5404,149,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5405,150,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5406,151,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5407,152,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5408,153,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5409,154,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5410,155,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5411,156,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5412,157,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5413,158,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5414,159,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5415,160,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5416,161,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5417,162,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5418,163,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5419,164,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5420,165,13,6,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5421,148,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5422,149,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5423,150,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5424,151,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5425,152,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5426,153,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5427,154,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5428,155,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5429,156,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5430,157,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5431,158,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5432,159,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5433,160,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5434,161,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5435,162,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5436,163,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5437,164,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5438,165,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5439,166,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5440,167,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5441,168,13,7,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5442,148,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5443,149,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5444,150,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5445,151,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5446,152,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5447,153,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5448,154,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5449,155,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5450,156,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5451,157,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5452,158,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5453,159,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5454,160,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5455,161,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5456,162,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5457,163,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5458,164,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5459,165,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5460,166,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5461,167,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5462,168,13,8,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5463,149,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5464,150,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5465,151,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5466,152,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5467,153,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5468,154,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5469,155,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5470,156,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5471,157,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5472,158,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5473,159,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5474,160,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5475,161,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5476,162,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5477,163,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5478,164,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5479,165,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5480,166,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5481,167,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5482,168,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5483,169,13,9,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5484,150,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5485,151,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5486,152,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5487,153,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5488,154,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5489,155,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5490,156,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5491,157,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5492,158,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5493,159,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5494,160,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5495,161,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5496,162,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5497,163,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5498,164,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5499,165,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5500,166,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5501,167,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5502,168,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5503,169,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5504,170,13,10,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5505,150,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5506,151,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5507,152,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5508,153,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5509,154,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5510,155,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5511,156,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5512,157,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5513,158,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5514,159,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5515,160,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5516,161,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5517,162,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5518,163,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5519,164,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5520,165,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5521,166,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5522,167,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5523,168,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5524,169,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5525,170,13,11,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5526,150,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5527,151,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5528,152,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5529,153,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5530,154,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5531,155,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5532,156,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5533,157,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5534,158,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5535,159,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5536,160,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5537,161,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5538,162,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5539,163,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5540,164,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5541,165,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5542,166,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5543,167,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5544,168,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5545,169,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5546,170,13,12,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5547,150,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5548,151,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5549,152,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5550,153,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5551,154,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5552,155,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5553,156,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5554,157,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5555,158,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5556,159,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5557,160,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5558,161,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5559,162,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5560,163,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5561,164,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5562,165,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5563,166,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5564,167,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5565,168,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5566,169,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5567,170,13,13,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5568,152,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5569,153,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5570,154,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5571,155,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5572,156,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5573,157,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5574,158,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5575,159,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5576,160,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5577,161,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5578,162,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5579,163,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5580,164,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5581,165,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5582,166,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5583,167,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5584,168,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5585,169,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5586,170,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5587,171,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5588,172,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5589,173,13,14,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5590,154,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5591,155,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5592,156,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5593,157,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5594,158,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5595,159,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5596,160,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5597,161,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5598,162,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5599,163,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5600,164,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5601,165,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5602,166,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5603,167,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5604,168,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5605,169,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5606,170,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5607,171,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5608,172,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5609,173,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5610,174,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5611,175,13,15,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5612,156,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5613,157,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5614,158,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5615,159,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5616,160,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5617,161,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5618,162,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5619,163,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5620,164,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5621,165,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5622,166,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5623,167,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5624,168,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5625,169,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5626,170,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5627,171,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5628,172,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5629,173,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5630,174,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5631,175,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5632,176,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5633,177,13,16,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5634,143,13,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5635,144,13,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5636,145,13,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5637,146,13,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5638,147,13,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5639,148,13,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5640,149,13,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5641,150,13,19,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5642,143,13,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5643,144,13,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5644,145,13,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5645,146,13,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5646,147,13,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5647,148,13,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5648,149,13,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5649,150,13,20,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5650,146,13,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5651,147,13,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5652,148,13,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5653,149,13,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5654,150,13,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5655,151,13,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5656,152,13,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5657,153,13,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5658,154,13,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5659,155,13,21,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5660,146,13,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5661,147,13,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5662,148,13,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5663,149,13,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5664,150,13,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5665,151,13,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5666,152,13,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5667,153,13,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5668,154,13,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5669,155,13,22,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5670,158,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5671,159,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5672,160,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5673,161,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5674,162,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5675,163,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5676,164,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5677,165,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5678,166,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5679,167,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5680,168,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5681,169,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5682,170,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5683,171,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5684,172,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5685,173,13,23,1,'2022-09-02 14:23:29','2022-09-02 14:23:29'),(5686,174,13,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5687,175,13,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5688,176,13,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5689,177,13,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5690,178,13,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5691,179,13,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5692,161,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5693,162,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5694,163,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5695,164,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5696,165,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5697,166,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5698,167,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5699,168,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5700,169,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5701,170,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5702,171,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5703,172,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5704,173,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5705,174,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5706,175,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5707,176,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5708,177,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5709,178,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5710,179,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5711,180,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5712,181,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5713,182,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5714,183,13,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5715,162,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5716,163,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5717,164,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5718,165,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5719,166,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5720,167,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5721,168,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5722,169,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5723,170,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5724,171,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5725,172,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5726,173,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5727,174,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5728,175,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5729,176,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5730,177,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5731,178,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5732,179,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5733,180,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5734,181,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5735,182,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5736,183,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5737,184,13,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5738,163,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5739,164,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5740,165,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5741,166,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5742,167,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5743,168,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5744,169,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5745,170,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5746,171,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5747,172,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5748,173,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5749,174,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5750,175,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5751,176,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5752,177,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5753,178,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5754,179,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5755,180,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5756,181,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5757,182,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5758,183,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5759,184,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5760,185,13,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5761,164,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5762,165,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5763,166,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5764,167,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5765,168,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5766,169,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5767,170,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5768,171,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5769,172,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5770,173,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5771,174,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5772,175,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5773,176,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5774,177,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5775,178,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5776,179,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5777,180,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5778,181,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5779,182,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5780,183,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5781,184,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5782,185,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5783,186,13,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5784,165,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5785,166,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5786,167,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5787,168,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5788,169,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5789,170,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5790,171,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5791,172,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5792,173,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5793,174,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5794,175,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5795,176,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5796,177,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5797,178,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5798,179,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5799,180,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5800,181,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5801,182,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5802,183,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5803,184,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5804,185,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5805,186,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5806,187,13,54,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5807,165,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5808,166,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5809,167,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5810,168,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5811,169,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5812,170,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5813,171,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5814,172,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5815,173,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5816,174,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5817,175,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5818,176,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5819,177,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5820,178,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5821,179,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5822,180,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5823,181,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5824,182,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5825,183,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5826,184,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5827,185,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5828,186,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5829,187,13,81,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5830,165,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5831,166,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5832,167,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5833,168,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5834,169,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5835,170,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5836,171,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5837,172,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5838,173,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5839,174,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5840,175,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5841,176,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5842,177,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5843,178,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5844,179,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5845,180,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5846,181,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5847,182,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5848,183,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5849,184,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5850,185,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5851,186,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5852,187,13,108,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5853,158,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5854,159,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5855,160,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5856,161,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5857,162,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5858,163,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5859,164,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5860,165,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5861,166,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5862,167,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5863,168,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5864,169,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5865,170,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5866,171,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5867,172,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5868,173,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5869,174,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5870,175,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5871,176,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5872,177,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5873,178,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5874,179,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5875,180,13,135,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5876,151,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5877,152,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5878,153,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5879,154,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5880,155,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5881,156,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5882,157,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5883,158,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5884,159,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5885,160,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5886,161,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5887,162,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5888,163,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5889,164,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5890,165,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5891,166,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5892,167,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5893,168,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5894,169,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5895,170,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5896,171,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5897,172,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5898,173,13,162,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5899,145,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5900,146,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5901,147,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5902,148,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5903,149,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5904,150,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5905,151,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5906,152,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5907,153,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5908,154,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5909,155,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5910,156,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5911,157,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5912,158,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5913,159,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5914,160,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5915,161,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5916,162,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5917,163,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5918,164,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5919,165,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5920,166,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5921,167,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5922,168,13,189,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5923,139,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5924,140,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5925,141,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5926,142,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5927,143,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5928,144,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5929,145,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5930,146,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5931,147,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5932,148,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5933,149,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5934,150,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5935,151,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5936,152,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5937,153,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5938,154,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5939,155,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5940,156,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5941,157,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5942,158,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5943,159,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5944,160,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5945,161,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5946,162,13,216,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5947,128,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5948,129,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5949,130,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5950,131,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5951,132,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5952,133,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5953,134,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5954,135,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5955,136,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5956,137,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5957,138,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5958,139,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5959,140,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5960,141,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5961,142,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5962,143,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5963,144,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5964,145,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5965,146,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5966,147,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5967,148,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5968,149,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5969,150,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5970,151,13,243,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5971,116,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5972,117,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5973,118,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5974,119,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5975,120,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5976,121,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5977,122,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5978,123,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5979,124,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5980,125,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5981,126,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5982,127,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5983,128,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5984,129,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5985,130,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5986,131,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5987,132,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5988,133,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5989,134,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5990,135,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5991,136,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5992,137,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5993,138,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5994,139,13,270,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5995,101,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5996,102,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5997,103,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5998,104,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(5999,105,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6000,106,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6001,107,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6002,108,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6003,109,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6004,110,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6005,111,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6006,112,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6007,113,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6008,114,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6009,115,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6010,116,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6011,117,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6012,118,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6013,119,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6014,120,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6015,121,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6016,122,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6017,123,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6018,124,13,297,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6019,76,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6020,77,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6021,78,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6022,79,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6023,80,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6024,81,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6025,82,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6026,83,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6027,84,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6028,85,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6029,86,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6030,87,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6031,88,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6032,89,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6033,90,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6034,91,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6035,92,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6036,93,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6037,94,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6038,95,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6039,96,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6040,97,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6041,98,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6042,99,13,324,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6043,43,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6044,44,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6045,45,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6046,46,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6047,47,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6048,48,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6049,49,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6050,50,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6051,51,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6052,52,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6053,53,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6054,54,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6055,55,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6056,56,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6057,57,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6058,58,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6059,59,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6060,60,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6061,61,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6062,62,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6063,63,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6064,64,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6065,65,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6066,66,13,351,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6067,26,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6068,27,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6069,28,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6070,29,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6071,30,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6072,31,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6073,32,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6074,33,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6075,34,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6076,35,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6077,36,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6078,37,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6079,38,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6080,39,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6081,40,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6082,41,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6083,42,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6084,43,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6085,44,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6086,45,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6087,46,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6088,47,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6089,48,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6090,49,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6091,50,13,378,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6092,162,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6093,163,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6094,164,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6095,165,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6096,166,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6097,167,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6098,168,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6099,169,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6100,170,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6101,171,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6102,172,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6103,173,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6104,174,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6105,175,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6106,176,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6107,177,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6108,178,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6109,179,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6110,180,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6111,181,14,1,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6112,162,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6113,163,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6114,164,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6115,165,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6116,166,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6117,167,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6118,168,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6119,169,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6120,170,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6121,171,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6122,172,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6123,173,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6124,174,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6125,175,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6126,176,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6127,177,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6128,178,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6129,179,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6130,180,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6131,181,14,2,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6132,162,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6133,163,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6134,164,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6135,165,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6136,166,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6137,167,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6138,168,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6139,169,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6140,170,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6141,171,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6142,172,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6143,173,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6144,174,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6145,175,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6146,176,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6147,177,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6148,178,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6149,179,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6150,180,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6151,181,14,3,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6152,162,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6153,163,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6154,164,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6155,165,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6156,166,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6157,167,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6158,168,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6159,169,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6160,170,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6161,171,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6162,172,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6163,173,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6164,174,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6165,175,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6166,176,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6167,177,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6168,178,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6169,179,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6170,180,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6171,181,14,4,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6172,166,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6173,167,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6174,168,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6175,169,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6176,170,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6177,171,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6178,172,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6179,173,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6180,174,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6181,175,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6182,176,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6183,177,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6184,178,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6185,179,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6186,180,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6187,181,14,5,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6188,166,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6189,167,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6190,168,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6191,169,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6192,170,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6193,171,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6194,172,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6195,173,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6196,174,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6197,175,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6198,176,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6199,177,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6200,178,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6201,179,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6202,180,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6203,181,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6204,182,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6205,183,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6206,184,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6207,185,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6208,186,14,6,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6209,169,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6210,170,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6211,171,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6212,172,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6213,173,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6214,174,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6215,175,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6216,176,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6217,177,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6218,178,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6219,179,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6220,180,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6221,181,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6222,182,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6223,183,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6224,184,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6225,185,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6226,186,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6227,187,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6228,188,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6229,189,14,7,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6230,169,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6231,170,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6232,171,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6233,172,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6234,173,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6235,174,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6236,175,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6237,176,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6238,177,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6239,178,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6240,179,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6241,180,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6242,181,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6243,182,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6244,183,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6245,184,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6246,185,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6247,186,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6248,187,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6249,188,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6250,189,14,8,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6251,170,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6252,171,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6253,172,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6254,173,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6255,174,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6256,175,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6257,176,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6258,177,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6259,178,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6260,179,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6261,180,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6262,181,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6263,182,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6264,183,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6265,184,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6266,185,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6267,186,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6268,187,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6269,188,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6270,189,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6271,190,14,9,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6272,171,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6273,172,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6274,173,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6275,174,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6276,175,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6277,176,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6278,177,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6279,178,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6280,179,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6281,180,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6282,181,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6283,182,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6284,183,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6285,184,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6286,185,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6287,186,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6288,187,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6289,188,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6290,189,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6291,190,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6292,191,14,10,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6293,171,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6294,172,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6295,173,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6296,174,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6297,175,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6298,176,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6299,177,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6300,178,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6301,179,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6302,180,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6303,181,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6304,182,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6305,183,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6306,184,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6307,185,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6308,186,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6309,187,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6310,188,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6311,189,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6312,190,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6313,191,14,11,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6314,171,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6315,172,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6316,173,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6317,174,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6318,175,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6319,176,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6320,177,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6321,178,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6322,179,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6323,180,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6324,181,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6325,182,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6326,183,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6327,184,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6328,185,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6329,186,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6330,187,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6331,188,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6332,189,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6333,190,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6334,191,14,12,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6335,171,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6336,172,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6337,173,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6338,174,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6339,175,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6340,176,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6341,177,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6342,178,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6343,179,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6344,180,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6345,181,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6346,182,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6347,183,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6348,184,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6349,185,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6350,186,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6351,187,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6352,188,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6353,189,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6354,190,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6355,191,14,13,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6356,174,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6357,175,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6358,176,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6359,177,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6360,178,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6361,179,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6362,180,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6363,181,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6364,182,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6365,183,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6366,184,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6367,185,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6368,186,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6369,187,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6370,188,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6371,189,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6372,190,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6373,191,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6374,192,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6375,193,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6376,194,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6377,195,14,14,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6378,176,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6379,177,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6380,178,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6381,179,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6382,180,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6383,181,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6384,182,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6385,183,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6386,184,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6387,185,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6388,186,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6389,187,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6390,188,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6391,189,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6392,190,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6393,191,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6394,192,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6395,193,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6396,194,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6397,195,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6398,196,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6399,197,14,15,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6400,178,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6401,179,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6402,180,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6403,181,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6404,182,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6405,183,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6406,184,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6407,185,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6408,186,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6409,187,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6410,188,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6411,189,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6412,190,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6413,191,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6414,192,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6415,193,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6416,194,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6417,195,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6418,196,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6419,197,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6420,198,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6421,199,14,16,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6422,151,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6423,152,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6424,153,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6425,154,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6426,155,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6427,156,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6428,157,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6429,158,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6430,159,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6431,160,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6432,161,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6433,162,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6434,163,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6435,164,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6436,165,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6437,166,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6438,167,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6439,168,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6440,169,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6441,170,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6442,171,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6443,172,14,19,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6444,151,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6445,152,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6446,153,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6447,154,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6448,155,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6449,156,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6450,157,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6451,158,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6452,159,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6453,160,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6454,161,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6455,162,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6456,163,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6457,164,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6458,165,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6459,166,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6460,167,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6461,168,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6462,169,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6463,170,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6464,171,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6465,172,14,20,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6466,156,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6467,157,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6468,158,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6469,159,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6470,160,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6471,161,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6472,162,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6473,163,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6474,164,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6475,165,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6476,166,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6477,167,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6478,168,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6479,169,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6480,170,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6481,171,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6482,172,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6483,173,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6484,174,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6485,175,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6486,176,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6487,177,14,21,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6488,156,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6489,157,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6490,158,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6491,159,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6492,160,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6493,161,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6494,162,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6495,163,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6496,164,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6497,165,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6498,166,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6499,167,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6500,168,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6501,169,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6502,170,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6503,171,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6504,172,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6505,173,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6506,174,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6507,175,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6508,176,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6509,177,14,22,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6510,180,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6511,181,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6512,182,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6513,183,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6514,184,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6515,185,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6516,186,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6517,187,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6518,188,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6519,189,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6520,190,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6521,191,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6522,192,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6523,193,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6524,194,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6525,195,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6526,196,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6527,197,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6528,198,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6529,199,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6530,200,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6531,201,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6532,202,14,23,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6533,184,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6534,185,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6535,186,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6536,187,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6537,188,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6538,189,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6539,190,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6540,191,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6541,192,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6542,193,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6543,194,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6544,195,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6545,196,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6546,197,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6547,198,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6548,199,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6549,200,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6550,201,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6551,202,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6552,203,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6553,204,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6554,205,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6555,206,14,24,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6556,185,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6557,186,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6558,187,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6559,188,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6560,189,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6561,190,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6562,191,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6563,192,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6564,193,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6565,194,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6566,195,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6567,196,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6568,197,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6569,198,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6570,199,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6571,200,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6572,201,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6573,202,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6574,203,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6575,204,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6576,205,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6577,206,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6578,207,14,25,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6579,186,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6580,187,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6581,188,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6582,189,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6583,190,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6584,191,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6585,192,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6586,193,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6587,194,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6588,195,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6589,196,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6590,197,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6591,198,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6592,199,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6593,200,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6594,201,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6595,202,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6596,203,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6597,204,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6598,205,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6599,206,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6600,207,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6601,208,14,26,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6602,187,14,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6603,188,14,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6604,189,14,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6605,190,14,27,1,'2022-09-02 14:23:30','2022-09-02 14:23:30'),(6606,191,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6607,192,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6608,193,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6609,194,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6610,195,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6611,196,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6612,197,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6613,198,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6614,199,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6615,200,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6616,201,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6617,202,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6618,203,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6619,204,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6620,205,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6621,206,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6622,207,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6623,208,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6624,209,14,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6625,188,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6626,189,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6627,190,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6628,191,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6629,192,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6630,193,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6631,194,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6632,195,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6633,196,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6634,197,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6635,198,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6636,199,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6637,200,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6638,201,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6639,202,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6640,203,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6641,204,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6642,205,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6643,206,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6644,207,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6645,208,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6646,209,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6647,210,14,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6648,188,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6649,189,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6650,190,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6651,191,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6652,192,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6653,193,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6654,194,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6655,195,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6656,196,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6657,197,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6658,198,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6659,199,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6660,200,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6661,201,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6662,202,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6663,203,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6664,204,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6665,205,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6666,206,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6667,207,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6668,208,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6669,209,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6670,210,14,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6671,188,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6672,189,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6673,190,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6674,191,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6675,192,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6676,193,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6677,194,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6678,195,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6679,196,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6680,197,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6681,198,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6682,199,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6683,200,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6684,201,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6685,202,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6686,203,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6687,204,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6688,205,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6689,206,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6690,207,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6691,208,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6692,209,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6693,210,14,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6694,181,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6695,182,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6696,183,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6697,184,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6698,185,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6699,186,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6700,187,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6701,188,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6702,189,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6703,190,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6704,191,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6705,192,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6706,193,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6707,194,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6708,195,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6709,196,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6710,197,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6711,198,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6712,199,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6713,200,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6714,201,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6715,202,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6716,203,14,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6717,174,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6718,175,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6719,176,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6720,177,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6721,178,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6722,179,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6723,180,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6724,181,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6725,182,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6726,183,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6727,184,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6728,185,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6729,186,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6730,187,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6731,188,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6732,189,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6733,190,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6734,191,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6735,192,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6736,193,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6737,194,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6738,195,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6739,196,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6740,197,14,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6741,169,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6742,170,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6743,171,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6744,172,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6745,173,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6746,174,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6747,175,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6748,176,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6749,177,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6750,178,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6751,179,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6752,180,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6753,181,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6754,182,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6755,183,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6756,184,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6757,185,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6758,186,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6759,187,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6760,188,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6761,189,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6762,190,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6763,191,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6764,192,14,189,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6765,163,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6766,164,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6767,165,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6768,166,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6769,167,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6770,168,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6771,169,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6772,170,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6773,171,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6774,172,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6775,173,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6776,174,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6777,175,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6778,176,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6779,177,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6780,178,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6781,179,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6782,180,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6783,181,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6784,182,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6785,183,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6786,184,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6787,185,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6788,186,14,216,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6789,152,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6790,153,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6791,154,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6792,155,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6793,156,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6794,157,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6795,158,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6796,159,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6797,160,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6798,161,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6799,162,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6800,163,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6801,164,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6802,165,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6803,166,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6804,167,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6805,168,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6806,169,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6807,170,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6808,171,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6809,172,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6810,173,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6811,174,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6812,175,14,243,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6813,140,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6814,141,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6815,142,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6816,143,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6817,144,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6818,145,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6819,146,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6820,147,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6821,148,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6822,149,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6823,150,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6824,151,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6825,152,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6826,153,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6827,154,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6828,155,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6829,156,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6830,157,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6831,158,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6832,159,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6833,160,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6834,161,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6835,162,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6836,163,14,270,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6837,125,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6838,126,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6839,127,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6840,128,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6841,129,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6842,130,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6843,131,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6844,132,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6845,133,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6846,134,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6847,135,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6848,136,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6849,137,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6850,138,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6851,139,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6852,140,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6853,141,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6854,142,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6855,143,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6856,144,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6857,145,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6858,146,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6859,147,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6860,148,14,297,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6861,100,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6862,101,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6863,102,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6864,103,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6865,104,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6866,105,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6867,106,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6868,107,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6869,108,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6870,109,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6871,110,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6872,111,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6873,112,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6874,113,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6875,114,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6876,115,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6877,116,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6878,117,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6879,118,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6880,119,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6881,120,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6882,121,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6883,122,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6884,123,14,324,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6885,67,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6886,68,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6887,69,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6888,70,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6889,71,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6890,72,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6891,73,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6892,74,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6893,75,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6894,76,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6895,77,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6896,78,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6897,79,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6898,80,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6899,81,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6900,82,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6901,83,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6902,84,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6903,85,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6904,86,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6905,87,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6906,88,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6907,89,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6908,90,14,351,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6909,51,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6910,52,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6911,53,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6912,54,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6913,55,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6914,56,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6915,57,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6916,58,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6917,59,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6918,60,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6919,61,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6920,62,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6921,63,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6922,64,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6923,65,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6924,66,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6925,67,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6926,68,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6927,69,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6928,70,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6929,71,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6930,72,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6931,73,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6932,74,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6933,75,14,378,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6934,182,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6935,183,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6936,184,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6937,185,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6938,186,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6939,187,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6940,188,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6941,189,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6942,190,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6943,191,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6944,192,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6945,193,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6946,194,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6947,195,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6948,196,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6949,197,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6950,198,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6951,199,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6952,200,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6953,201,15,1,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6954,182,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6955,183,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6956,184,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6957,185,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6958,186,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6959,187,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6960,188,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6961,189,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6962,190,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6963,191,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6964,192,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6965,193,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6966,194,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6967,195,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6968,196,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6969,197,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6970,198,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6971,199,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6972,200,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6973,201,15,2,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6974,182,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6975,183,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6976,184,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6977,185,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6978,186,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6979,187,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6980,188,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6981,189,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6982,190,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6983,191,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6984,192,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6985,193,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6986,194,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6987,195,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6988,196,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6989,197,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6990,198,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6991,199,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6992,200,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6993,201,15,3,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6994,182,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6995,183,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6996,184,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6997,185,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6998,186,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(6999,187,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7000,188,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7001,189,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7002,190,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7003,191,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7004,192,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7005,193,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7006,194,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7007,195,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7008,196,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7009,197,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7010,198,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7011,199,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7012,200,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7013,201,15,4,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7014,182,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7015,183,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7016,184,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7017,185,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7018,186,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7019,187,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7020,188,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7021,189,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7022,190,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7023,191,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7024,192,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7025,193,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7026,194,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7027,195,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7028,196,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7029,197,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7030,198,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7031,199,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7032,200,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7033,201,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7034,202,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7035,203,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7036,204,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7037,205,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7038,206,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7039,207,15,5,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7040,187,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7041,188,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7042,189,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7043,190,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7044,191,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7045,192,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7046,193,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7047,194,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7048,195,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7049,196,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7050,197,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7051,198,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7052,199,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7053,200,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7054,201,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7055,202,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7056,203,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7057,204,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7058,205,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7059,206,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7060,207,15,6,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7061,190,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7062,191,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7063,192,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7064,193,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7065,194,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7066,195,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7067,196,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7068,197,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7069,198,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7070,199,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7071,200,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7072,201,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7073,202,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7074,203,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7075,204,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7076,205,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7077,206,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7078,207,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7079,208,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7080,209,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7081,210,15,7,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7082,190,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7083,191,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7084,192,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7085,193,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7086,194,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7087,195,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7088,196,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7089,197,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7090,198,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7091,199,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7092,200,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7093,201,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7094,202,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7095,203,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7096,204,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7097,205,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7098,206,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7099,207,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7100,208,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7101,209,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7102,210,15,8,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7103,191,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7104,192,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7105,193,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7106,194,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7107,195,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7108,196,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7109,197,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7110,198,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7111,199,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7112,200,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7113,201,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7114,202,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7115,203,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7116,204,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7117,205,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7118,206,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7119,207,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7120,208,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7121,209,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7122,210,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7123,211,15,9,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7124,192,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7125,193,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7126,194,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7127,195,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7128,196,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7129,197,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7130,198,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7131,199,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7132,200,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7133,201,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7134,202,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7135,203,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7136,204,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7137,205,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7138,206,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7139,207,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7140,208,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7141,209,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7142,210,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7143,211,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7144,212,15,10,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7145,192,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7146,193,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7147,194,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7148,195,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7149,196,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7150,197,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7151,198,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7152,199,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7153,200,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7154,201,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7155,202,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7156,203,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7157,204,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7158,205,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7159,206,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7160,207,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7161,208,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7162,209,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7163,210,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7164,211,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7165,212,15,11,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7166,192,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7167,193,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7168,194,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7169,195,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7170,196,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7171,197,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7172,198,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7173,199,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7174,200,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7175,201,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7176,202,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7177,203,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7178,204,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7179,205,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7180,206,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7181,207,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7182,208,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7183,209,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7184,210,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7185,211,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7186,212,15,12,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7187,192,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7188,193,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7189,194,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7190,195,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7191,196,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7192,197,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7193,198,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7194,199,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7195,200,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7196,201,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7197,202,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7198,203,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7199,204,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7200,205,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7201,206,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7202,207,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7203,208,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7204,209,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7205,210,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7206,211,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7207,212,15,13,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7208,196,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7209,197,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7210,198,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7211,199,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7212,200,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7213,201,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7214,202,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7215,203,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7216,204,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7217,205,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7218,206,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7219,207,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7220,208,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7221,209,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7222,210,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7223,211,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7224,212,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7225,213,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7226,214,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7227,215,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7228,216,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7229,217,15,14,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7230,198,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7231,199,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7232,200,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7233,201,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7234,202,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7235,203,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7236,204,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7237,205,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7238,206,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7239,207,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7240,208,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7241,209,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7242,210,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7243,211,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7244,212,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7245,213,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7246,214,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7247,215,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7248,216,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7249,217,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7250,218,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7251,219,15,15,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7252,200,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7253,201,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7254,202,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7255,203,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7256,204,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7257,205,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7258,206,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7259,207,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7260,208,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7261,209,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7262,210,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7263,211,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7264,212,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7265,213,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7266,214,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7267,215,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7268,216,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7269,217,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7270,218,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7271,219,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7272,220,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7273,221,15,16,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7274,173,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7275,174,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7276,175,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7277,176,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7278,177,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7279,178,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7280,179,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7281,180,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7282,181,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7283,182,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7284,183,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7285,184,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7286,185,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7287,186,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7288,187,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7289,188,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7290,189,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7291,190,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7292,191,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7293,192,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7294,193,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7295,194,15,19,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7296,173,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7297,174,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7298,175,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7299,176,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7300,177,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7301,178,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7302,179,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7303,180,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7304,181,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7305,182,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7306,183,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7307,184,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7308,185,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7309,186,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7310,187,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7311,188,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7312,189,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7313,190,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7314,191,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7315,192,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7316,193,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7317,194,15,20,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7318,178,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7319,179,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7320,180,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7321,181,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7322,182,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7323,183,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7324,184,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7325,185,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7326,186,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7327,187,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7328,188,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7329,189,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7330,190,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7331,191,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7332,192,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7333,193,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7334,194,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7335,195,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7336,196,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7337,197,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7338,198,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7339,199,15,21,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7340,178,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7341,179,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7342,180,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7343,181,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7344,182,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7345,183,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7346,184,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7347,185,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7348,186,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7349,187,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7350,188,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7351,189,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7352,190,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7353,191,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7354,192,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7355,193,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7356,194,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7357,195,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7358,196,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7359,197,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7360,198,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7361,199,15,22,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7362,203,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7363,204,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7364,205,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7365,206,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7366,207,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7367,208,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7368,209,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7369,210,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7370,211,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7371,212,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7372,213,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7373,214,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7374,215,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7375,216,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7376,217,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7377,218,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7378,219,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7379,220,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7380,221,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7381,222,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7382,223,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7383,224,15,23,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7384,207,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7385,208,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7386,209,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7387,210,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7388,211,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7389,212,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7390,213,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7391,214,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7392,215,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7393,216,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7394,217,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7395,218,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7396,219,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7397,220,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7398,221,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7399,222,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7400,223,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7401,224,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7402,225,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7403,226,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7404,227,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7405,228,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7406,229,15,24,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7407,208,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7408,209,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7409,210,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7410,211,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7411,212,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7412,213,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7413,214,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7414,215,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7415,216,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7416,217,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7417,218,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7418,219,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7419,220,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7420,221,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7421,222,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7422,223,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7423,224,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7424,225,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7425,226,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7426,227,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7427,228,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7428,229,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7429,230,15,25,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7430,209,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7431,210,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7432,211,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7433,212,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7434,213,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7435,214,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7436,215,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7437,216,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7438,217,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7439,218,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7440,219,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7441,220,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7442,221,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7443,222,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7444,223,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7445,224,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7446,225,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7447,226,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7448,227,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7449,228,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7450,229,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7451,230,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7452,231,15,26,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7453,210,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7454,211,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7455,212,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7456,213,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7457,214,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7458,215,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7459,216,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7460,217,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7461,218,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7462,219,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7463,220,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7464,221,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7465,222,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7466,223,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7467,224,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7468,225,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7469,226,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7470,227,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7471,228,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7472,229,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7473,230,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7474,231,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7475,232,15,27,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7476,211,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7477,212,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7478,213,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7479,214,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7480,215,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7481,216,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7482,217,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7483,218,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7484,219,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7485,220,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7486,221,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7487,222,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7488,223,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7489,224,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7490,225,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7491,226,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7492,227,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7493,228,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7494,229,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7495,230,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7496,231,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7497,232,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7498,233,15,54,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7499,211,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7500,212,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7501,213,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7502,214,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7503,215,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7504,216,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7505,217,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7506,218,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7507,219,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7508,220,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7509,221,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7510,222,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7511,223,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7512,224,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7513,225,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7514,226,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7515,227,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7516,228,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7517,229,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7518,230,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7519,231,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7520,232,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7521,233,15,81,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7522,211,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7523,212,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7524,213,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7525,214,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7526,215,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7527,216,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7528,217,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7529,218,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7530,219,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7531,220,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7532,221,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7533,222,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7534,223,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7535,224,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7536,225,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7537,226,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7538,227,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7539,228,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7540,229,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7541,230,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7542,231,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7543,232,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7544,233,15,108,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7545,204,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7546,205,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7547,206,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7548,207,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7549,208,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7550,209,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7551,210,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7552,211,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7553,212,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7554,213,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7555,214,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7556,215,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7557,216,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7558,217,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7559,218,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7560,219,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7561,220,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7562,221,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7563,222,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7564,223,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7565,224,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7566,225,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7567,226,15,135,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7568,198,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7569,199,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7570,200,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7571,201,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7572,202,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7573,203,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7574,204,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7575,205,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7576,206,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7577,207,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7578,208,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7579,209,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7580,210,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7581,211,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7582,212,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7583,213,15,162,1,'2022-09-02 14:23:31','2022-09-02 14:23:31'),(7584,214,15,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7585,215,15,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7586,216,15,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7587,217,15,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7588,218,15,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7589,219,15,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7590,220,15,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7591,221,15,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7592,193,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7593,194,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7594,195,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7595,196,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7596,197,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7597,198,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7598,199,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7599,200,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7600,201,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7601,202,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7602,203,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7603,204,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7604,205,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7605,206,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7606,207,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7607,208,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7608,209,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7609,210,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7610,211,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7611,212,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7612,213,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7613,214,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7614,215,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7615,216,15,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7616,187,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7617,188,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7618,189,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7619,190,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7620,191,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7621,192,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7622,193,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7623,194,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7624,195,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7625,196,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7626,197,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7627,198,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7628,199,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7629,200,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7630,201,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7631,202,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7632,203,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7633,204,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7634,205,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7635,206,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7636,207,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7637,208,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7638,209,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7639,210,15,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7640,176,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7641,177,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7642,178,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7643,179,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7644,180,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7645,181,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7646,182,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7647,183,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7648,184,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7649,185,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7650,186,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7651,187,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7652,188,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7653,189,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7654,190,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7655,191,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7656,192,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7657,193,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7658,194,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7659,195,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7660,196,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7661,197,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7662,198,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7663,199,15,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7664,164,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7665,165,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7666,166,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7667,167,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7668,168,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7669,169,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7670,170,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7671,171,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7672,172,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7673,173,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7674,174,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7675,175,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7676,176,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7677,177,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7678,178,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7679,179,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7680,180,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7681,181,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7682,182,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7683,183,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7684,184,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7685,185,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7686,186,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7687,187,15,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7688,149,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7689,150,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7690,151,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7691,152,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7692,153,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7693,154,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7694,155,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7695,156,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7696,157,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7697,158,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7698,159,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7699,160,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7700,161,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7701,162,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7702,163,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7703,164,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7704,165,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7705,166,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7706,167,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7707,168,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7708,169,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7709,170,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7710,171,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7711,172,15,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7712,124,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7713,125,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7714,126,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7715,127,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7716,128,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7717,129,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7718,130,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7719,131,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7720,132,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7721,133,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7722,134,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7723,135,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7724,136,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7725,137,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7726,138,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7727,139,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7728,140,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7729,141,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7730,142,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7731,143,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7732,144,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7733,145,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7734,146,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7735,147,15,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7736,91,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7737,92,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7738,93,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7739,94,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7740,95,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7741,96,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7742,97,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7743,98,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7744,99,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7745,100,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7746,101,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7747,102,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7748,103,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7749,104,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7750,105,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7751,106,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7752,107,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7753,108,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7754,109,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7755,110,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7756,111,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7757,112,15,351,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7758,202,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7759,203,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7760,204,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7761,205,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7762,206,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7763,207,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7764,208,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7765,209,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7766,210,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7767,211,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7768,212,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7769,213,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7770,214,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7771,215,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7772,216,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7773,217,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7774,218,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7775,219,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7776,220,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7777,221,16,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7778,202,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7779,203,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7780,204,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7781,205,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7782,206,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7783,207,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7784,208,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7785,209,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7786,210,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7787,211,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7788,212,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7789,213,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7790,214,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7791,215,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7792,216,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7793,217,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7794,218,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7795,219,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7796,220,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7797,221,16,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7798,202,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7799,203,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7800,204,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7801,205,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7802,206,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7803,207,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7804,208,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7805,209,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7806,210,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7807,211,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7808,212,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7809,213,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7810,214,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7811,215,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7812,216,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7813,217,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7814,218,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7815,219,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7816,220,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7817,221,16,3,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7818,202,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7819,203,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7820,204,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7821,205,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7822,206,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7823,207,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7824,208,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7825,209,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7826,210,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7827,211,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7828,212,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7829,213,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7830,214,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7831,215,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7832,216,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7833,217,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7834,218,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7835,219,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7836,220,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7837,221,16,4,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7838,208,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7839,209,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7840,210,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7841,211,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7842,212,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7843,213,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7844,214,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7845,215,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7846,216,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7847,217,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7848,218,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7849,219,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7850,220,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7851,221,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7852,222,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7853,223,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7854,224,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7855,225,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7856,226,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7857,227,16,5,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7858,208,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7859,209,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7860,210,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7861,211,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7862,212,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7863,213,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7864,214,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7865,215,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7866,216,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7867,217,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7868,218,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7869,219,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7870,220,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7871,221,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7872,222,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7873,223,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7874,224,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7875,225,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7876,226,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7877,227,16,6,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7878,211,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7879,212,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7880,213,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7881,214,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7882,215,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7883,216,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7884,217,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7885,218,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7886,219,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7887,220,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7888,221,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7889,222,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7890,223,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7891,224,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7892,225,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7893,226,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7894,227,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7895,228,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7896,229,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7897,230,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7898,231,16,7,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7899,211,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7900,212,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7901,213,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7902,214,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7903,215,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7904,216,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7905,217,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7906,218,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7907,219,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7908,220,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7909,221,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7910,222,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7911,223,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7912,224,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7913,225,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7914,226,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7915,227,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7916,228,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7917,229,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7918,230,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7919,231,16,8,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7920,212,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7921,213,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7922,214,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7923,215,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7924,216,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7925,217,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7926,218,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7927,219,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7928,220,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7929,221,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7930,222,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7931,223,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7932,224,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7933,225,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7934,226,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7935,227,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7936,228,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7937,229,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7938,230,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7939,231,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7940,232,16,9,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7941,213,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7942,214,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7943,215,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7944,216,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7945,217,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7946,218,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7947,219,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7948,220,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7949,221,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7950,222,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7951,223,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7952,224,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7953,225,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7954,226,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7955,227,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7956,228,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7957,229,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7958,230,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7959,231,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7960,232,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7961,233,16,10,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7962,213,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7963,214,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7964,215,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7965,216,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7966,217,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7967,218,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7968,219,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7969,220,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7970,221,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7971,222,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7972,223,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7973,224,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7974,225,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7975,226,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7976,227,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7977,228,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7978,229,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7979,230,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7980,231,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7981,232,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7982,233,16,11,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7983,213,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7984,214,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7985,215,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7986,216,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7987,217,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7988,218,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7989,219,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7990,220,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7991,221,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7992,222,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7993,223,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7994,224,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7995,225,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7996,226,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7997,227,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7998,228,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(7999,229,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8000,230,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8001,231,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8002,232,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8003,233,16,12,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8004,213,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8005,214,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8006,215,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8007,216,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8008,217,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8009,218,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8010,219,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8011,220,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8012,221,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8013,222,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8014,223,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8015,224,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8016,225,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8017,226,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8018,227,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8019,228,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8020,229,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8021,230,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8022,231,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8023,232,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8024,233,16,13,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8025,218,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8026,219,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8027,220,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8028,221,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8029,222,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8030,223,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8031,224,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8032,225,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8033,226,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8034,227,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8035,228,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8036,229,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8037,230,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8038,231,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8039,232,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8040,233,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8041,234,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8042,235,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8043,236,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8044,237,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8045,238,16,14,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8046,220,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8047,221,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8048,222,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8049,223,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8050,224,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8051,225,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8052,226,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8053,227,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8054,228,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8055,229,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8056,230,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8057,231,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8058,232,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8059,233,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8060,234,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8061,235,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8062,236,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8063,237,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8064,238,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8065,239,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8066,240,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8067,241,16,15,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8068,222,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8069,223,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8070,224,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8071,225,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8072,226,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8073,227,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8074,228,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8075,229,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8076,230,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8077,231,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8078,232,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8079,233,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8080,234,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8081,235,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8082,236,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8083,237,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8084,238,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8085,239,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8086,240,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8087,241,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8088,242,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8089,243,16,16,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8090,195,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8091,196,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8092,197,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8093,198,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8094,199,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8095,200,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8096,201,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8097,202,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8098,203,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8099,204,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8100,205,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8101,206,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8102,207,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8103,208,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8104,209,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8105,210,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8106,211,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8107,212,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8108,213,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8109,214,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8110,215,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8111,216,16,19,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8112,195,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8113,196,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8114,197,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8115,198,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8116,199,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8117,200,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8118,201,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8119,202,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8120,203,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8121,204,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8122,205,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8123,206,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8124,207,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8125,208,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8126,209,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8127,210,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8128,211,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8129,212,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8130,213,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8131,214,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8132,215,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8133,216,16,20,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8134,200,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8135,201,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8136,202,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8137,203,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8138,204,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8139,205,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8140,206,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8141,207,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8142,208,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8143,209,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8144,210,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8145,211,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8146,212,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8147,213,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8148,214,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8149,215,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8150,216,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8151,217,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8152,218,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8153,219,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8154,220,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8155,221,16,21,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8156,200,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8157,201,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8158,202,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8159,203,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8160,204,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8161,205,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8162,206,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8163,207,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8164,208,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8165,209,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8166,210,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8167,211,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8168,212,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8169,213,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8170,214,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8171,215,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8172,216,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8173,217,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8174,218,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8175,219,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8176,220,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8177,221,16,22,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8178,225,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8179,226,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8180,227,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8181,228,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8182,229,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8183,230,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8184,231,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8185,232,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8186,233,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8187,234,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8188,235,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8189,236,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8190,237,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8191,238,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8192,239,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8193,240,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8194,241,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8195,242,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8196,243,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8197,244,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8198,245,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8199,246,16,23,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8200,230,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8201,231,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8202,232,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8203,233,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8204,234,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8205,235,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8206,236,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8207,237,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8208,238,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8209,239,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8210,240,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8211,241,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8212,242,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8213,243,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8214,244,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8215,245,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8216,246,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8217,247,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8218,248,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8219,249,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8220,250,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8221,251,16,24,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8222,231,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8223,232,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8224,233,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8225,234,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8226,235,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8227,236,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8228,237,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8229,238,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8230,239,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8231,240,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8232,241,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8233,242,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8234,243,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8235,244,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8236,245,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8237,246,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8238,247,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8239,248,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8240,249,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8241,250,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8242,251,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8243,252,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8244,253,16,25,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8245,232,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8246,233,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8247,234,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8248,235,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8249,236,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8250,237,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8251,238,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8252,239,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8253,240,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8254,241,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8255,242,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8256,243,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8257,244,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8258,245,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8259,246,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8260,247,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8261,248,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8262,249,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8263,250,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8264,251,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8265,252,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8266,253,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8267,254,16,26,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8268,233,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8269,234,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8270,235,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8271,236,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8272,237,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8273,238,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8274,239,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8275,240,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8276,241,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8277,242,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8278,243,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8279,244,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8280,245,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8281,246,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8282,247,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8283,248,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8284,249,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8285,250,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8286,251,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8287,252,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8288,253,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8289,254,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8290,255,16,27,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8291,234,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8292,235,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8293,236,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8294,237,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8295,238,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8296,239,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8297,240,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8298,241,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8299,242,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8300,243,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8301,244,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8302,245,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8303,246,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8304,247,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8305,248,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8306,249,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8307,250,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8308,251,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8309,252,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8310,253,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8311,254,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8312,255,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8313,256,16,54,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8314,234,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8315,235,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8316,236,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8317,237,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8318,238,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8319,239,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8320,240,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8321,241,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8322,242,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8323,243,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8324,244,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8325,245,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8326,246,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8327,247,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8328,248,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8329,249,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8330,250,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8331,251,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8332,252,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8333,253,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8334,254,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8335,255,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8336,256,16,81,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8337,234,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8338,235,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8339,236,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8340,237,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8341,238,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8342,239,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8343,240,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8344,241,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8345,242,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8346,243,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8347,244,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8348,245,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8349,246,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8350,247,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8351,248,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8352,249,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8353,250,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8354,251,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8355,252,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8356,253,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8357,254,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8358,255,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8359,256,16,108,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8360,227,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8361,228,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8362,229,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8363,230,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8364,231,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8365,232,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8366,233,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8367,234,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8368,235,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8369,236,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8370,237,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8371,238,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8372,239,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8373,240,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8374,241,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8375,242,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8376,243,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8377,244,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8378,245,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8379,246,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8380,247,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8381,248,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8382,249,16,135,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8383,222,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8384,223,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8385,224,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8386,225,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8387,226,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8388,227,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8389,228,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8390,229,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8391,230,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8392,231,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8393,232,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8394,233,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8395,234,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8396,235,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8397,236,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8398,237,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8399,238,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8400,239,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8401,240,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8402,241,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8403,242,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8404,243,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8405,244,16,162,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8406,217,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8407,218,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8408,219,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8409,220,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8410,221,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8411,222,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8412,223,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8413,224,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8414,225,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8415,226,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8416,227,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8417,228,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8418,229,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8419,230,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8420,231,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8421,232,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8422,233,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8423,234,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8424,235,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8425,236,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8426,237,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8427,238,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8428,239,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8429,240,16,189,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8430,211,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8431,212,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8432,213,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8433,214,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8434,215,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8435,216,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8436,217,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8437,218,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8438,219,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8439,220,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8440,221,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8441,222,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8442,223,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8443,224,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8444,225,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8445,226,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8446,227,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8447,228,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8448,229,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8449,230,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8450,231,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8451,232,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8452,233,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8453,234,16,216,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8454,200,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8455,201,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8456,202,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8457,203,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8458,204,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8459,205,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8460,206,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8461,207,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8462,208,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8463,209,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8464,210,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8465,211,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8466,212,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8467,213,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8468,214,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8469,215,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8470,216,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8471,217,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8472,218,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8473,219,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8474,220,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8475,221,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8476,222,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8477,223,16,243,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8478,188,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8479,189,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8480,190,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8481,191,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8482,192,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8483,193,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8484,194,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8485,195,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8486,196,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8487,197,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8488,198,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8489,199,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8490,200,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8491,201,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8492,202,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8493,203,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8494,204,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8495,205,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8496,206,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8497,207,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8498,208,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8499,209,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8500,210,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8501,211,16,270,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8502,173,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8503,174,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8504,175,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8505,176,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8506,177,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8507,178,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8508,179,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8509,180,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8510,181,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8511,182,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8512,183,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8513,184,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8514,185,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8515,186,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8516,187,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8517,188,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8518,189,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8519,190,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8520,191,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8521,192,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8522,193,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8523,194,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8524,195,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8525,196,16,297,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8526,148,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8527,149,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8528,150,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8529,151,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8530,152,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8531,153,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8532,154,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8533,155,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8534,156,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8535,157,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8536,158,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8537,159,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8538,160,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8539,161,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8540,162,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8541,163,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8542,164,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8543,165,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8544,166,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8545,167,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8546,168,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8547,169,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8548,170,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8549,171,16,324,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8550,222,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8551,223,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8552,224,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8553,225,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8554,226,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8555,227,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8556,228,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8557,229,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8558,230,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8559,231,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8560,232,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8561,233,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8562,234,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8563,235,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8564,236,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8565,237,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8566,238,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8567,239,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8568,240,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8569,241,17,1,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8570,222,17,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8571,223,17,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8572,224,17,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8573,225,17,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8574,226,17,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8575,227,17,2,1,'2022-09-02 14:23:32','2022-09-02 14:23:32'),(8576,228,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8577,229,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8578,230,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8579,231,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8580,232,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8581,233,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8582,234,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8583,235,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8584,236,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8585,237,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8586,238,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8587,239,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8588,240,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8589,241,17,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8590,222,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8591,223,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8592,224,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8593,225,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8594,226,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8595,227,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8596,228,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8597,229,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8598,230,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8599,231,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8600,232,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8601,233,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8602,234,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8603,235,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8604,236,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8605,237,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8606,238,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8607,239,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8608,240,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8609,241,17,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8610,222,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8611,223,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8612,224,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8613,225,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8614,226,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8615,227,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8616,228,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8617,229,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8618,230,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8619,231,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8620,232,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8621,233,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8622,234,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8623,235,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8624,236,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8625,237,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8626,238,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8627,239,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8628,240,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8629,241,17,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8630,228,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8631,229,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8632,230,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8633,231,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8634,232,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8635,233,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8636,234,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8637,235,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8638,236,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8639,237,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8640,238,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8641,239,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8642,240,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8643,241,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8644,242,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8645,243,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8646,244,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8647,245,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8648,246,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8649,247,17,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8650,228,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8651,229,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8652,230,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8653,231,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8654,232,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8655,233,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8656,234,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8657,235,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8658,236,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8659,237,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8660,238,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8661,239,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8662,240,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8663,241,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8664,242,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8665,243,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8666,244,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8667,245,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8668,246,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8669,247,17,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8670,232,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8671,233,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8672,234,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8673,235,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8674,236,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8675,237,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8676,238,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8677,239,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8678,240,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8679,241,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8680,242,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8681,243,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8682,244,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8683,245,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8684,246,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8685,247,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8686,248,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8687,249,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8688,250,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8689,251,17,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8690,232,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8691,233,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8692,234,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8693,235,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8694,236,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8695,237,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8696,238,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8697,239,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8698,240,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8699,241,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8700,242,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8701,243,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8702,244,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8703,245,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8704,246,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8705,247,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8706,248,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8707,249,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8708,250,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8709,251,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8710,252,17,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8711,233,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8712,234,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8713,235,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8714,236,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8715,237,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8716,238,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8717,239,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8718,240,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8719,241,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8720,242,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8721,243,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8722,244,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8723,245,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8724,246,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8725,247,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8726,248,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8727,249,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8728,250,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8729,251,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8730,252,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8731,253,17,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8732,234,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8733,235,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8734,236,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8735,237,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8736,238,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8737,239,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8738,240,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8739,241,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8740,242,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8741,243,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8742,244,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8743,245,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8744,246,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8745,247,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8746,248,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8747,249,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8748,250,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8749,251,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8750,252,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8751,253,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8752,254,17,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8753,234,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8754,235,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8755,236,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8756,237,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8757,238,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8758,239,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8759,240,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8760,241,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8761,242,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8762,243,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8763,244,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8764,245,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8765,246,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8766,247,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8767,248,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8768,249,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8769,250,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8770,251,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8771,252,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8772,253,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8773,254,17,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8774,234,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8775,235,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8776,236,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8777,237,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8778,238,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8779,239,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8780,240,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8781,241,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8782,242,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8783,243,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8784,244,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8785,245,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8786,246,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8787,247,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8788,248,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8789,249,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8790,250,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8791,251,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8792,252,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8793,253,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8794,254,17,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8795,234,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8796,235,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8797,236,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8798,237,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8799,238,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8800,239,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8801,240,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8802,241,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8803,242,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8804,243,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8805,244,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8806,245,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8807,246,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8808,247,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8809,248,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8810,249,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8811,250,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8812,251,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8813,252,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8814,253,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8815,254,17,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8816,239,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8817,240,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8818,241,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8819,242,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8820,243,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8821,244,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8822,245,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8823,246,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8824,247,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8825,248,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8826,249,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8827,250,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8828,251,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8829,252,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8830,253,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8831,254,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8832,255,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8833,256,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8834,257,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8835,258,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8836,259,17,14,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8837,242,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8838,243,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8839,244,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8840,245,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8841,246,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8842,247,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8843,248,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8844,249,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8845,250,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8846,251,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8847,252,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8848,253,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8849,254,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8850,255,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8851,256,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8852,257,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8853,258,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8854,259,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8855,260,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8856,261,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8857,262,17,15,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8858,244,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8859,245,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8860,246,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8861,247,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8862,248,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8863,249,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8864,250,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8865,251,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8866,252,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8867,253,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8868,254,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8869,255,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8870,256,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8871,257,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8872,258,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8873,259,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8874,260,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8875,261,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8876,262,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8877,263,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8878,264,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8879,265,17,16,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8880,217,17,19,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8881,218,17,19,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8882,219,17,19,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8883,220,17,19,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8884,221,17,19,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8885,222,17,19,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8886,223,17,19,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8887,224,17,19,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8888,217,17,20,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8889,218,17,20,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8890,219,17,20,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8891,220,17,20,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8892,221,17,20,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8893,222,17,20,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8894,223,17,20,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8895,224,17,20,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8896,222,17,21,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8897,223,17,21,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8898,224,17,21,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8899,225,17,21,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8900,226,17,21,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8901,227,17,21,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8902,228,17,21,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8903,229,17,21,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8904,230,17,21,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8905,231,17,21,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8906,222,17,22,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8907,223,17,22,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8908,224,17,22,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8909,225,17,22,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8910,226,17,22,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8911,227,17,22,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8912,228,17,22,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8913,229,17,22,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8914,230,17,22,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8915,231,17,22,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8916,247,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8917,248,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8918,249,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8919,250,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8920,251,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8921,252,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8922,253,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8923,254,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8924,255,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8925,256,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8926,257,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8927,258,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8928,259,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8929,260,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8930,261,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8931,262,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8932,263,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8933,264,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8934,265,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8935,266,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8936,267,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8937,268,17,23,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8938,252,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8939,253,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8940,254,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8941,255,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8942,256,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8943,257,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8944,258,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8945,259,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8946,260,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8947,261,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8948,262,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8949,263,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8950,264,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8951,265,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8952,266,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8953,267,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8954,268,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8955,269,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8956,270,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8957,271,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8958,272,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8959,273,17,24,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8960,254,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8961,255,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8962,256,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8963,257,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8964,258,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8965,259,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8966,260,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8967,261,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8968,262,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8969,263,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8970,264,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8971,265,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8972,266,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8973,267,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8974,268,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8975,269,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8976,270,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8977,271,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8978,272,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8979,273,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8980,274,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8981,275,17,25,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8982,255,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8983,256,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8984,257,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8985,258,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8986,259,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8987,260,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8988,261,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8989,262,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8990,263,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8991,264,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8992,265,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8993,266,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8994,267,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8995,268,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8996,269,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8997,270,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8998,271,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(8999,272,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9000,273,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9001,274,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9002,275,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9003,276,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9004,277,17,26,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9005,256,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9006,257,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9007,258,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9008,259,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9009,260,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9010,261,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9011,262,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9012,263,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9013,264,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9014,265,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9015,266,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9016,267,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9017,268,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9018,269,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9019,270,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9020,271,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9021,272,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9022,273,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9023,274,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9024,275,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9025,276,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9026,277,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9027,278,17,27,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9028,257,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9029,258,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9030,259,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9031,260,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9032,261,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9033,262,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9034,263,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9035,264,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9036,265,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9037,266,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9038,267,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9039,268,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9040,269,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9041,270,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9042,271,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9043,272,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9044,273,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9045,274,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9046,275,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9047,276,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9048,277,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9049,278,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9050,279,17,54,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9051,257,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9052,258,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9053,259,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9054,260,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9055,261,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9056,262,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9057,263,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9058,264,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9059,265,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9060,266,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9061,267,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9062,268,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9063,269,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9064,270,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9065,271,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9066,272,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9067,273,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9068,274,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9069,275,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9070,276,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9071,277,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9072,278,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9073,279,17,81,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9074,257,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9075,258,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9076,259,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9077,260,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9078,261,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9079,262,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9080,263,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9081,264,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9082,265,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9083,266,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9084,267,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9085,268,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9086,269,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9087,270,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9088,271,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9089,272,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9090,273,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9091,274,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9092,275,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9093,276,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9094,277,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9095,278,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9096,279,17,108,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9097,250,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9098,251,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9099,252,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9100,253,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9101,254,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9102,255,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9103,256,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9104,257,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9105,258,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9106,259,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9107,260,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9108,261,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9109,262,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9110,263,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9111,264,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9112,265,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9113,266,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9114,267,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9115,268,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9116,269,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9117,270,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9118,271,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9119,272,17,135,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9120,245,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9121,246,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9122,247,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9123,248,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9124,249,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9125,250,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9126,251,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9127,252,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9128,253,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9129,254,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9130,255,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9131,256,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9132,257,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9133,258,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9134,259,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9135,260,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9136,261,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9137,262,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9138,263,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9139,264,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9140,265,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9141,266,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9142,267,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9143,268,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9144,269,17,162,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9145,241,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9146,242,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9147,243,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9148,244,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9149,245,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9150,246,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9151,247,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9152,248,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9153,249,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9154,250,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9155,251,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9156,252,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9157,253,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9158,254,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9159,255,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9160,256,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9161,257,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9162,258,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9163,259,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9164,260,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9165,261,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9166,262,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9167,263,17,189,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9168,235,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9169,236,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9170,237,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9171,238,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9172,239,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9173,240,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9174,241,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9175,242,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9176,243,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9177,244,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9178,245,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9179,246,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9180,247,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9181,248,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9182,249,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9183,250,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9184,251,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9185,252,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9186,253,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9187,254,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9188,255,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9189,256,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9190,257,17,216,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9191,224,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9192,225,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9193,226,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9194,227,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9195,228,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9196,229,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9197,230,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9198,231,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9199,232,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9200,233,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9201,234,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9202,235,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9203,236,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9204,237,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9205,238,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9206,239,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9207,240,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9208,241,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9209,242,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9210,243,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9211,244,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9212,245,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9213,246,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9214,247,17,243,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9215,212,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9216,213,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9217,214,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9218,215,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9219,216,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9220,217,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9221,218,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9222,219,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9223,220,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9224,221,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9225,222,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9226,223,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9227,224,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9228,225,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9229,226,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9230,227,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9231,228,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9232,229,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9233,230,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9234,231,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9235,232,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9236,233,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9237,234,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9238,235,17,270,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9239,197,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9240,198,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9241,199,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9242,200,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9243,201,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9244,202,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9245,203,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9246,204,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9247,205,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9248,206,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9249,207,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9250,208,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9251,209,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9252,210,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9253,211,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9254,212,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9255,213,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9256,214,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9257,215,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9258,216,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9259,217,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9260,218,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9261,219,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9262,220,17,297,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9263,172,17,324,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9264,173,17,324,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9265,174,17,324,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9266,175,17,324,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9267,30,17,351,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9268,242,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9269,243,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9270,244,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9271,245,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9272,246,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9273,247,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9274,248,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9275,249,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9276,250,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9277,251,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9278,252,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9279,253,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9280,254,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9281,255,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9282,256,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9283,257,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9284,258,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9285,259,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9286,260,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9287,261,18,1,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9288,242,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9289,243,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9290,244,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9291,245,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9292,246,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9293,247,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9294,248,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9295,249,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9296,250,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9297,251,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9298,252,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9299,253,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9300,254,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9301,255,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9302,256,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9303,257,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9304,258,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9305,259,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9306,260,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9307,261,18,2,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9308,242,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9309,243,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9310,244,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9311,245,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9312,246,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9313,247,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9314,248,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9315,249,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9316,250,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9317,251,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9318,252,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9319,253,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9320,254,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9321,255,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9322,256,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9323,257,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9324,258,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9325,259,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9326,260,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9327,261,18,3,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9328,242,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9329,243,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9330,244,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9331,245,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9332,246,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9333,247,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9334,248,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9335,249,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9336,250,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9337,251,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9338,252,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9339,253,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9340,254,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9341,255,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9342,256,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9343,257,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9344,258,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9345,259,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9346,260,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9347,261,18,4,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9348,248,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9349,249,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9350,250,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9351,251,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9352,252,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9353,253,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9354,254,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9355,255,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9356,256,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9357,257,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9358,258,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9359,259,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9360,260,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9361,261,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9362,262,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9363,263,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9364,264,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9365,265,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9366,266,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9367,267,18,5,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9368,248,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9369,249,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9370,250,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9371,251,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9372,252,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9373,253,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9374,254,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9375,255,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9376,256,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9377,257,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9378,258,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9379,259,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9380,260,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9381,261,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9382,262,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9383,263,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9384,264,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9385,265,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9386,266,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9387,267,18,6,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9388,252,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9389,253,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9390,254,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9391,255,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9392,256,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9393,257,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9394,258,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9395,259,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9396,260,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9397,261,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9398,262,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9399,263,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9400,264,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9401,265,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9402,266,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9403,267,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9404,268,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9405,269,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9406,270,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9407,271,18,7,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9408,253,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9409,254,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9410,255,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9411,256,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9412,257,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9413,258,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9414,259,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9415,260,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9416,261,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9417,262,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9418,263,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9419,264,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9420,265,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9421,266,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9422,267,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9423,268,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9424,269,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9425,270,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9426,271,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9427,272,18,8,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9428,254,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9429,255,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9430,256,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9431,257,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9432,258,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9433,259,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9434,260,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9435,261,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9436,262,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9437,263,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9438,264,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9439,265,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9440,266,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9441,267,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9442,268,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9443,269,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9444,270,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9445,271,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9446,272,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9447,273,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9448,274,18,9,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9449,255,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9450,256,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9451,257,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9452,258,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9453,259,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9454,260,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9455,261,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9456,262,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9457,263,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9458,264,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9459,265,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9460,266,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9461,267,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9462,268,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9463,269,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9464,270,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9465,271,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9466,272,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9467,273,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9468,274,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9469,275,18,10,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9470,255,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9471,256,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9472,257,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9473,258,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9474,259,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9475,260,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9476,261,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9477,262,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9478,263,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9479,264,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9480,265,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9481,266,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9482,267,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9483,268,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9484,269,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9485,270,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9486,271,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9487,272,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9488,273,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9489,274,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9490,275,18,11,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9491,255,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9492,256,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9493,257,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9494,258,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9495,259,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9496,260,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9497,261,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9498,262,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9499,263,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9500,264,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9501,265,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9502,266,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9503,267,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9504,268,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9505,269,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9506,270,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9507,271,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9508,272,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9509,273,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9510,274,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9511,275,18,12,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9512,255,18,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9513,256,18,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9514,257,18,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9515,258,18,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9516,259,18,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9517,260,18,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9518,261,18,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9519,262,18,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9520,263,18,13,1,'2022-09-02 14:23:33','2022-09-02 14:23:33'),(9521,264,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9522,265,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9523,266,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9524,267,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9525,268,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9526,269,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9527,270,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9528,271,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9529,272,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9530,273,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9531,274,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9532,275,18,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9533,260,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9534,261,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9535,262,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9536,263,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9537,264,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9538,265,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9539,266,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9540,267,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9541,268,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9542,269,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9543,270,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9544,271,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9545,272,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9546,273,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9547,274,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9548,275,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9549,276,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9550,277,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9551,278,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9552,279,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9553,280,18,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9554,263,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9555,264,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9556,265,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9557,266,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9558,267,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9559,268,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9560,269,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9561,270,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9562,271,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9563,272,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9564,273,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9565,274,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9566,275,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9567,276,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9568,277,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9569,278,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9570,279,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9571,280,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9572,281,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9573,282,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9574,283,18,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9575,266,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9576,267,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9577,268,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9578,269,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9579,270,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9580,271,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9581,272,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9582,273,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9583,274,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9584,275,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9585,276,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9586,277,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9587,278,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9588,279,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9589,280,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9590,281,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9591,282,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9592,283,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9593,284,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9594,285,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9595,286,18,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9596,225,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9597,226,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9598,227,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9599,228,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9600,229,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9601,230,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9602,231,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9603,232,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9604,233,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9605,234,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9606,235,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9607,236,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9608,237,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9609,238,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9610,239,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9611,240,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9612,241,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9613,242,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9614,243,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9615,244,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9616,245,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9617,246,18,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9618,225,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9619,226,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9620,227,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9621,228,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9622,229,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9623,230,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9624,231,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9625,232,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9626,233,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9627,234,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9628,235,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9629,236,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9630,237,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9631,238,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9632,239,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9633,240,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9634,241,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9635,242,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9636,243,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9637,244,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9638,245,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9639,246,18,20,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9640,232,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9641,233,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9642,234,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9643,235,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9644,236,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9645,237,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9646,238,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9647,239,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9648,240,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9649,241,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9650,242,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9651,243,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9652,244,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9653,245,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9654,246,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9655,247,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9656,248,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9657,249,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9658,250,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9659,251,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9660,252,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9661,253,18,21,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9662,232,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9663,233,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9664,234,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9665,235,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9666,236,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9667,237,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9668,238,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9669,239,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9670,240,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9671,241,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9672,242,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9673,243,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9674,244,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9675,245,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9676,246,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9677,247,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9678,248,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9679,249,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9680,250,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9681,251,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9682,252,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9683,253,18,22,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9684,269,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9685,270,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9686,271,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9687,272,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9688,273,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9689,274,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9690,275,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9691,276,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9692,277,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9693,278,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9694,279,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9695,280,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9696,281,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9697,282,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9698,283,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9699,284,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9700,285,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9701,286,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9702,287,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9703,288,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9704,289,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9705,290,18,23,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9706,274,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9707,275,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9708,276,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9709,277,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9710,278,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9711,279,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9712,280,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9713,281,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9714,282,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9715,283,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9716,284,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9717,285,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9718,286,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9719,287,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9720,288,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9721,289,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9722,290,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9723,291,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9724,292,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9725,293,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9726,294,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9727,295,18,24,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9728,276,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9729,277,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9730,278,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9731,279,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9732,280,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9733,281,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9734,282,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9735,283,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9736,284,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9737,285,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9738,286,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9739,287,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9740,288,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9741,289,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9742,290,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9743,291,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9744,292,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9745,293,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9746,294,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9747,295,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9748,296,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9749,297,18,25,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9750,278,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9751,279,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9752,280,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9753,281,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9754,282,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9755,283,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9756,284,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9757,285,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9758,286,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9759,287,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9760,288,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9761,289,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9762,290,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9763,291,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9764,292,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9765,293,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9766,294,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9767,295,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9768,296,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9769,297,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9770,298,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9771,299,18,26,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9772,279,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9773,280,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9774,281,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9775,282,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9776,283,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9777,284,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9778,285,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9779,286,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9780,287,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9781,288,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9782,289,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9783,290,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9784,291,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9785,292,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9786,293,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9787,294,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9788,295,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9789,296,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9790,297,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9791,298,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9792,299,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9793,300,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9794,301,18,27,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9795,280,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9796,281,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9797,282,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9798,283,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9799,284,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9800,285,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9801,286,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9802,287,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9803,288,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9804,289,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9805,290,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9806,291,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9807,292,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9808,293,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9809,294,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9810,295,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9811,296,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9812,297,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9813,298,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9814,299,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9815,300,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9816,301,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9817,302,18,54,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9818,280,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9819,281,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9820,282,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9821,283,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9822,284,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9823,285,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9824,286,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9825,287,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9826,288,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9827,289,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9828,290,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9829,291,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9830,292,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9831,293,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9832,294,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9833,295,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9834,296,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9835,297,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9836,298,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9837,299,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9838,300,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9839,301,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9840,302,18,81,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9841,280,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9842,281,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9843,282,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9844,283,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9845,284,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9846,285,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9847,286,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9848,287,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9849,288,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9850,289,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9851,290,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9852,291,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9853,292,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9854,293,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9855,294,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9856,295,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9857,296,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9858,297,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9859,298,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9860,299,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9861,300,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9862,301,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9863,302,18,108,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9864,273,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9865,274,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9866,275,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9867,276,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9868,277,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9869,278,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9870,279,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9871,280,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9872,281,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9873,282,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9874,283,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9875,284,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9876,285,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9877,286,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9878,287,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9879,288,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9880,289,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9881,290,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9882,291,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9883,292,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9884,293,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9885,294,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9886,295,18,135,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9887,270,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9888,271,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9889,272,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9890,273,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9891,274,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9892,275,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9893,276,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9894,277,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9895,278,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9896,279,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9897,280,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9898,281,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9899,282,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9900,283,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9901,284,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9902,285,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9903,286,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9904,287,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9905,288,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9906,289,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9907,290,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9908,291,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9909,292,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9910,293,18,162,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9911,264,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9912,265,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9913,266,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9914,267,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9915,268,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9916,269,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9917,270,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9918,271,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9919,272,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9920,273,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9921,274,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9922,275,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9923,276,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9924,277,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9925,278,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9926,279,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9927,280,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9928,281,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9929,282,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9930,283,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9931,284,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9932,285,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9933,286,18,189,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9934,258,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9935,259,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9936,260,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9937,261,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9938,262,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9939,263,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9940,264,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9941,265,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9942,266,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9943,267,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9944,268,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9945,269,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9946,270,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9947,271,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9948,272,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9949,273,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9950,274,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9951,275,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9952,276,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9953,277,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9954,278,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9955,279,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9956,280,18,216,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9957,248,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9958,249,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9959,250,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9960,251,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9961,252,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9962,253,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9963,254,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9964,255,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9965,256,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9966,257,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9967,258,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9968,259,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9969,260,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9970,261,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9971,262,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9972,263,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9973,264,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9974,265,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9975,266,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9976,267,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9977,268,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9978,269,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9979,270,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9980,271,18,243,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9981,236,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9982,237,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9983,238,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9984,239,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9985,240,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9986,241,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9987,242,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9988,243,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9989,244,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9990,245,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9991,246,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9992,247,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9993,248,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9994,249,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9995,250,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9996,251,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9997,252,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9998,253,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(9999,254,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10000,255,18,270,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10001,221,18,297,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10002,222,18,297,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10003,223,18,297,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10004,224,18,297,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10005,225,18,297,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10006,262,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10007,263,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10008,264,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10009,265,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10010,266,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10011,267,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10012,268,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10013,269,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10014,270,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10015,271,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10016,272,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10017,273,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10018,274,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10019,275,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10020,276,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10021,277,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10022,278,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10023,279,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10024,280,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10025,281,19,1,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10026,262,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10027,263,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10028,264,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10029,265,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10030,266,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10031,267,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10032,268,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10033,269,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10034,270,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10035,271,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10036,272,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10037,273,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10038,274,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10039,275,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10040,276,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10041,277,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10042,278,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10043,279,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10044,280,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10045,281,19,2,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10046,262,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10047,263,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10048,264,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10049,265,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10050,266,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10051,267,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10052,268,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10053,269,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10054,270,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10055,271,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10056,272,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10057,273,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10058,274,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10059,275,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10060,276,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10061,277,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10062,278,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10063,279,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10064,280,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10065,281,19,3,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10066,262,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10067,263,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10068,264,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10069,265,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10070,266,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10071,267,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10072,268,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10073,269,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10074,270,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10075,271,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10076,272,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10077,273,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10078,274,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10079,275,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10080,276,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10081,277,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10082,278,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10083,279,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10084,280,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10085,281,19,4,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10086,268,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10087,269,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10088,270,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10089,271,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10090,272,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10091,273,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10092,274,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10093,275,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10094,276,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10095,277,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10096,278,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10097,279,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10098,280,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10099,281,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10100,282,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10101,283,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10102,284,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10103,285,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10104,286,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10105,287,19,5,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10106,268,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10107,269,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10108,270,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10109,271,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10110,272,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10111,273,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10112,274,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10113,275,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10114,276,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10115,277,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10116,278,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10117,279,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10118,280,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10119,281,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10120,282,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10121,283,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10122,284,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10123,285,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10124,286,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10125,287,19,6,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10126,272,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10127,273,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10128,274,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10129,275,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10130,276,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10131,277,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10132,278,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10133,279,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10134,280,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10135,281,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10136,282,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10137,283,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10138,284,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10139,285,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10140,286,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10141,287,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10142,288,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10143,289,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10144,290,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10145,291,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10146,292,19,7,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10147,273,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10148,274,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10149,275,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10150,276,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10151,277,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10152,278,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10153,279,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10154,280,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10155,281,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10156,282,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10157,283,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10158,284,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10159,285,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10160,286,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10161,287,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10162,288,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10163,289,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10164,290,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10165,291,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10166,292,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10167,293,19,8,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10168,275,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10169,276,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10170,277,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10171,278,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10172,279,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10173,280,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10174,281,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10175,282,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10176,283,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10177,284,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10178,285,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10179,286,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10180,287,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10181,288,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10182,289,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10183,290,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10184,291,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10185,292,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10186,293,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10187,294,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10188,295,19,9,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10189,276,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10190,277,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10191,278,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10192,279,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10193,280,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10194,281,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10195,282,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10196,283,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10197,284,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10198,285,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10199,286,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10200,287,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10201,288,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10202,289,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10203,290,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10204,291,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10205,292,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10206,293,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10207,294,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10208,295,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10209,296,19,10,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10210,276,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10211,277,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10212,278,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10213,279,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10214,280,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10215,281,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10216,282,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10217,283,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10218,284,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10219,285,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10220,286,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10221,287,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10222,288,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10223,289,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10224,290,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10225,291,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10226,292,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10227,293,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10228,294,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10229,295,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10230,296,19,11,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10231,276,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10232,277,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10233,278,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10234,279,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10235,280,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10236,281,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10237,282,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10238,283,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10239,284,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10240,285,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10241,286,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10242,287,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10243,288,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10244,289,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10245,290,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10246,291,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10247,292,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10248,293,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10249,294,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10250,295,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10251,296,19,12,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10252,276,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10253,277,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10254,278,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10255,279,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10256,280,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10257,281,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10258,282,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10259,283,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10260,284,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10261,285,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10262,286,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10263,287,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10264,288,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10265,289,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10266,290,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10267,291,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10268,292,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10269,293,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10270,294,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10271,295,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10272,296,19,13,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10273,281,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10274,282,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10275,283,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10276,284,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10277,285,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10278,286,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10279,287,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10280,288,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10281,289,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10282,290,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10283,291,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10284,292,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10285,293,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10286,294,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10287,295,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10288,296,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10289,297,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10290,298,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10291,299,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10292,300,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10293,301,19,14,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10294,284,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10295,285,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10296,286,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10297,287,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10298,288,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10299,289,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10300,290,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10301,291,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10302,292,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10303,293,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10304,294,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10305,295,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10306,296,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10307,297,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10308,298,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10309,299,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10310,300,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10311,301,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10312,302,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10313,303,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10314,304,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10315,305,19,15,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10316,287,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10317,288,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10318,289,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10319,290,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10320,291,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10321,292,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10322,293,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10323,294,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10324,295,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10325,296,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10326,297,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10327,298,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10328,299,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10329,300,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10330,301,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10331,302,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10332,303,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10333,304,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10334,305,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10335,306,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10336,307,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10337,308,19,16,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10338,247,19,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10339,248,19,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10340,249,19,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10341,250,19,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10342,251,19,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10343,252,19,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10344,253,19,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10345,254,19,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10346,255,19,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10347,256,19,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10348,257,19,19,1,'2022-09-02 14:23:34','2022-09-02 14:23:34'),(10349,258,19,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10350,259,19,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10351,260,19,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10352,261,19,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10353,262,19,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10354,263,19,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10355,264,19,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10356,265,19,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10357,266,19,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10358,267,19,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10359,268,19,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10360,247,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10361,248,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10362,249,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10363,250,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10364,251,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10365,252,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10366,253,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10367,254,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10368,255,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10369,256,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10370,257,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10371,258,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10372,259,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10373,260,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10374,261,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10375,262,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10376,263,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10377,264,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10378,265,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10379,266,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10380,267,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10381,268,19,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10382,254,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10383,255,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10384,256,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10385,257,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10386,258,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10387,259,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10388,260,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10389,261,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10390,262,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10391,263,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10392,264,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10393,265,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10394,266,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10395,267,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10396,268,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10397,269,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10398,270,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10399,271,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10400,272,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10401,273,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10402,274,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10403,275,19,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10404,254,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10405,255,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10406,256,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10407,257,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10408,258,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10409,259,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10410,260,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10411,261,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10412,262,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10413,263,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10414,264,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10415,265,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10416,266,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10417,267,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10418,268,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10419,269,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10420,270,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10421,271,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10422,272,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10423,273,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10424,274,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10425,275,19,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10426,291,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10427,292,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10428,293,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10429,294,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10430,295,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10431,296,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10432,297,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10433,298,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10434,299,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10435,300,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10436,301,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10437,302,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10438,303,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10439,304,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10440,305,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10441,306,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10442,307,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10443,308,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10444,309,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10445,310,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10446,311,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10447,312,19,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10448,296,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10449,297,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10450,298,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10451,299,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10452,300,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10453,301,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10454,302,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10455,303,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10456,304,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10457,305,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10458,306,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10459,307,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10460,308,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10461,309,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10462,310,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10463,311,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10464,312,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10465,313,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10466,314,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10467,315,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10468,316,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10469,317,19,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10470,298,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10471,299,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10472,300,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10473,301,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10474,302,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10475,303,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10476,304,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10477,305,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10478,306,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10479,307,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10480,308,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10481,309,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10482,310,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10483,311,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10484,312,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10485,313,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10486,314,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10487,315,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10488,316,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10489,317,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10490,318,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10491,319,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10492,320,19,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10493,300,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10494,301,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10495,302,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10496,303,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10497,304,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10498,305,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10499,306,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10500,307,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10501,308,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10502,309,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10503,310,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10504,311,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10505,312,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10506,313,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10507,314,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10508,315,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10509,316,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10510,317,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10511,318,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10512,319,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10513,320,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10514,321,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10515,322,19,26,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10516,302,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10517,303,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10518,304,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10519,305,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10520,306,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10521,307,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10522,308,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10523,309,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10524,310,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10525,311,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10526,312,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10527,313,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10528,314,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10529,315,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10530,316,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10531,317,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10532,318,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10533,319,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10534,320,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10535,321,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10536,322,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10537,323,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10538,324,19,27,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10539,303,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10540,304,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10541,305,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10542,306,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10543,307,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10544,308,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10545,309,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10546,310,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10547,311,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10548,312,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10549,313,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10550,314,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10551,315,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10552,316,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10553,317,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10554,318,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10555,319,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10556,320,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10557,321,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10558,322,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10559,323,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10560,324,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10561,325,19,54,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10562,303,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10563,304,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10564,305,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10565,306,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10566,307,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10567,308,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10568,309,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10569,310,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10570,311,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10571,312,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10572,313,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10573,314,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10574,315,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10575,316,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10576,317,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10577,318,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10578,319,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10579,320,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10580,321,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10581,322,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10582,323,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10583,324,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10584,325,19,81,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10585,303,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10586,304,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10587,305,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10588,306,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10589,307,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10590,308,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10591,309,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10592,310,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10593,311,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10594,312,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10595,313,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10596,314,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10597,315,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10598,316,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10599,317,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10600,318,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10601,319,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10602,320,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10603,321,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10604,322,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10605,323,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10606,324,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10607,325,19,108,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10608,296,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10609,297,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10610,298,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10611,299,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10612,300,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10613,301,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10614,302,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10615,303,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10616,304,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10617,305,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10618,306,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10619,307,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10620,308,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10621,309,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10622,310,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10623,311,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10624,312,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10625,313,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10626,314,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10627,315,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10628,316,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10629,317,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10630,318,19,135,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10631,294,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10632,295,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10633,296,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10634,297,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10635,298,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10636,299,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10637,300,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10638,301,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10639,302,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10640,303,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10641,304,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10642,305,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10643,306,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10644,307,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10645,308,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10646,309,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10647,310,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10648,311,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10649,312,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10650,313,19,162,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10651,287,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10652,288,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10653,289,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10654,290,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10655,291,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10656,292,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10657,293,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10658,294,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10659,295,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10660,296,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10661,297,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10662,298,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10663,299,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10664,300,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10665,301,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10666,302,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10667,303,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10668,304,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10669,305,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10670,306,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10671,307,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10672,308,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10673,309,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10674,310,19,189,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10675,281,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10676,282,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10677,283,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10678,284,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10679,285,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10680,286,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10681,287,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10682,288,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10683,289,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10684,290,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10685,291,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10686,292,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10687,293,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10688,294,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10689,295,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10690,296,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10691,297,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10692,298,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10693,299,19,216,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10694,272,19,243,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10695,273,19,243,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10696,274,19,243,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10697,275,19,243,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10698,276,19,243,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10699,277,19,243,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10700,278,19,243,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10701,279,19,243,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10702,280,19,243,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10703,282,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10704,283,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10705,284,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10706,285,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10707,286,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10708,287,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10709,288,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10710,289,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10711,290,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10712,291,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10713,292,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10714,293,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10715,294,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10716,295,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10717,296,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10718,297,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10719,298,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10720,299,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10721,300,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10722,301,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10723,302,20,1,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10724,282,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10725,283,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10726,284,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10727,285,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10728,286,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10729,287,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10730,288,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10731,289,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10732,290,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10733,291,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10734,292,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10735,293,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10736,294,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10737,295,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10738,296,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10739,297,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10740,298,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10741,299,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10742,300,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10743,301,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10744,302,20,2,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10745,282,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10746,283,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10747,284,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10748,285,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10749,286,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10750,287,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10751,288,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10752,289,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10753,290,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10754,291,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10755,292,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10756,293,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10757,294,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10758,295,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10759,296,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10760,297,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10761,298,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10762,299,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10763,300,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10764,301,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10765,302,20,3,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10766,282,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10767,283,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10768,284,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10769,285,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10770,286,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10771,287,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10772,288,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10773,289,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10774,290,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10775,291,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10776,292,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10777,293,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10778,294,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10779,295,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10780,296,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10781,297,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10782,298,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10783,299,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10784,300,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10785,301,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10786,302,20,4,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10787,288,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10788,289,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10789,290,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10790,291,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10791,292,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10792,293,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10793,294,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10794,295,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10795,296,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10796,297,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10797,298,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10798,299,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10799,300,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10800,301,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10801,302,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10802,303,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10803,304,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10804,305,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10805,306,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10806,307,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10807,308,20,5,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10808,288,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10809,289,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10810,290,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10811,291,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10812,292,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10813,293,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10814,294,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10815,295,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10816,296,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10817,297,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10818,298,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10819,299,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10820,300,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10821,301,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10822,302,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10823,303,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10824,304,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10825,305,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10826,306,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10827,307,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10828,308,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10829,309,20,6,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10830,293,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10831,294,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10832,295,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10833,296,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10834,297,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10835,298,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10836,299,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10837,300,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10838,301,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10839,302,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10840,303,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10841,304,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10842,305,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10843,306,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10844,307,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10845,308,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10846,309,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10847,310,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10848,311,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10849,312,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10850,313,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10851,314,20,7,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10852,294,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10853,295,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10854,296,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10855,297,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10856,298,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10857,299,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10858,300,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10859,301,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10860,302,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10861,303,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10862,304,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10863,305,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10864,306,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10865,307,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10866,308,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10867,309,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10868,310,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10869,311,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10870,312,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10871,313,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10872,314,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10873,315,20,8,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10874,296,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10875,297,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10876,298,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10877,299,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10878,300,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10879,301,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10880,302,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10881,303,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10882,304,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10883,305,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10884,306,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10885,307,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10886,308,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10887,309,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10888,310,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10889,311,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10890,312,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10891,313,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10892,314,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10893,315,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10894,316,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10895,317,20,9,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10896,297,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10897,298,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10898,299,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10899,300,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10900,301,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10901,302,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10902,303,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10903,304,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10904,305,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10905,306,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10906,307,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10907,308,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10908,309,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10909,310,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10910,311,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10911,312,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10912,313,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10913,314,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10914,315,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10915,316,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10916,317,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10917,318,20,10,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10918,297,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10919,298,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10920,299,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10921,300,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10922,301,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10923,302,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10924,303,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10925,304,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10926,305,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10927,306,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10928,307,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10929,308,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10930,309,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10931,310,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10932,311,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10933,312,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10934,313,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10935,314,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10936,315,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10937,316,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10938,317,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10939,318,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10940,319,20,11,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10941,297,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10942,298,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10943,299,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10944,300,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10945,301,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10946,302,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10947,303,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10948,304,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10949,305,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10950,306,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10951,307,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10952,308,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10953,309,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10954,310,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10955,311,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10956,312,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10957,313,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10958,314,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10959,315,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10960,316,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10961,317,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10962,318,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10963,319,20,12,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10964,297,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10965,298,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10966,299,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10967,300,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10968,301,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10969,302,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10970,303,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10971,304,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10972,305,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10973,306,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10974,307,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10975,308,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10976,309,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10977,310,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10978,311,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10979,312,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10980,313,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10981,314,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10982,315,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10983,316,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10984,317,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10985,318,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10986,319,20,13,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10987,302,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10988,303,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10989,304,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10990,305,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10991,306,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10992,307,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10993,308,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10994,309,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10995,310,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10996,311,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10997,312,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10998,313,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(10999,314,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11000,315,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11001,316,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11002,317,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11003,318,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11004,319,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11005,320,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11006,321,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11007,322,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11008,323,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11009,324,20,14,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11010,306,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11011,307,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11012,308,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11013,309,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11014,310,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11015,311,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11016,312,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11017,313,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11018,314,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11019,315,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11020,316,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11021,317,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11022,318,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11023,319,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11024,320,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11025,321,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11026,322,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11027,323,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11028,324,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11029,325,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11030,326,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11031,327,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11032,328,20,15,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11033,309,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11034,310,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11035,311,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11036,312,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11037,313,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11038,314,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11039,315,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11040,316,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11041,317,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11042,318,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11043,319,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11044,320,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11045,321,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11046,322,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11047,323,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11048,324,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11049,325,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11050,326,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11051,327,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11052,328,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11053,329,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11054,330,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11055,331,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11056,332,20,16,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11057,269,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11058,270,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11059,271,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11060,272,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11061,273,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11062,274,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11063,275,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11064,276,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11065,277,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11066,278,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11067,279,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11068,280,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11069,281,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11070,282,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11071,283,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11072,284,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11073,285,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11074,286,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11075,287,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11076,288,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11077,289,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11078,290,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11079,291,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11080,292,20,19,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11081,269,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11082,270,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11083,271,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11084,272,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11085,273,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11086,274,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11087,275,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11088,276,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11089,277,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11090,278,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11091,279,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11092,280,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11093,281,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11094,282,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11095,283,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11096,284,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11097,285,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11098,286,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11099,287,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11100,288,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11101,289,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11102,290,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11103,291,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11104,292,20,20,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11105,276,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11106,277,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11107,278,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11108,279,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11109,280,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11110,281,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11111,282,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11112,283,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11113,284,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11114,285,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11115,286,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11116,287,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11117,288,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11118,289,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11119,290,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11120,291,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11121,292,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11122,293,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11123,294,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11124,295,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11125,296,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11126,297,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11127,298,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11128,299,20,21,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11129,276,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11130,277,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11131,278,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11132,279,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11133,280,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11134,281,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11135,282,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11136,283,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11137,284,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11138,285,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11139,286,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11140,287,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11141,288,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11142,289,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11143,290,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11144,291,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11145,292,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11146,293,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11147,294,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11148,295,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11149,296,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11150,297,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11151,298,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11152,299,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11153,300,20,22,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11154,313,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11155,314,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11156,315,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11157,316,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11158,317,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11159,318,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11160,319,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11161,320,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11162,321,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11163,322,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11164,323,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11165,324,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11166,325,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11167,326,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11168,327,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11169,328,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11170,329,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11171,330,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11172,331,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11173,332,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11174,333,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11175,334,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11176,335,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11177,336,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11178,337,20,23,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11179,318,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11180,319,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11181,320,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11182,321,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11183,322,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11184,323,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11185,324,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11186,325,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11187,326,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11188,327,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11189,328,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11190,329,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11191,330,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11192,331,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11193,332,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11194,333,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11195,334,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11196,335,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11197,336,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11198,337,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11199,338,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11200,339,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11201,340,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11202,341,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11203,342,20,24,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11204,321,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11205,322,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11206,323,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11207,324,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11208,325,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11209,326,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11210,327,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11211,328,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11212,329,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11213,330,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11214,331,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11215,332,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11216,333,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11217,334,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11218,335,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11219,336,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11220,337,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11221,338,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11222,339,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11223,340,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11224,341,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11225,342,20,25,1,'2022-09-02 14:23:35','2022-09-02 14:23:35'),(11226,343,20,25,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11227,344,20,25,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11228,345,20,25,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11229,323,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11230,324,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11231,325,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11232,326,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11233,327,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11234,328,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11235,329,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11236,330,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11237,331,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11238,332,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11239,333,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11240,334,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11241,335,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11242,336,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11243,337,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11244,338,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11245,339,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11246,340,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11247,341,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11248,342,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11249,343,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11250,344,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11251,345,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11252,346,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11253,347,20,26,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11254,325,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11255,326,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11256,327,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11257,328,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11258,329,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11259,330,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11260,331,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11261,332,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11262,333,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11263,334,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11264,335,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11265,336,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11266,337,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11267,338,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11268,339,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11269,340,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11270,341,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11271,342,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11272,343,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11273,344,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11274,345,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11275,346,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11276,347,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11277,348,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11278,349,20,27,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11279,326,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11280,327,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11281,328,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11282,329,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11283,330,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11284,331,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11285,332,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11286,333,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11287,334,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11288,335,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11289,336,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11290,337,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11291,338,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11292,339,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11293,340,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11294,341,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11295,342,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11296,343,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11297,344,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11298,345,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11299,346,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11300,347,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11301,348,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11302,349,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11303,350,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11304,351,20,54,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11305,326,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11306,327,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11307,328,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11308,329,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11309,330,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11310,331,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11311,332,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11312,333,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11313,334,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11314,335,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11315,336,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11316,337,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11317,338,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11318,339,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11319,340,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11320,341,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11321,342,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11322,343,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11323,344,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11324,345,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11325,346,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11326,347,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11327,348,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11328,349,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11329,350,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11330,351,20,81,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11331,326,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11332,327,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11333,328,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11334,329,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11335,330,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11336,331,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11337,332,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11338,333,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11339,334,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11340,335,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11341,336,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11342,337,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11343,338,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11344,339,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11345,340,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11346,341,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11347,342,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11348,343,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11349,344,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11350,345,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11351,346,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11352,347,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11353,348,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11354,349,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11355,350,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11356,351,20,108,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11357,319,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11358,320,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11359,321,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11360,322,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11361,323,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11362,324,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11363,325,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11364,326,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11365,327,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11366,328,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11367,329,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11368,330,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11369,331,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11370,332,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11371,333,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11372,334,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11373,335,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11374,336,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11375,337,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11376,338,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11377,339,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11378,340,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11379,341,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11380,342,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11381,343,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11382,344,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11383,345,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11384,346,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11385,347,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11386,348,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11387,349,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11388,350,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11389,351,20,135,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11390,314,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11391,315,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11392,316,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11393,317,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11394,318,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11395,319,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11396,320,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11397,321,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11398,322,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11399,323,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11400,324,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11401,325,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11402,326,20,162,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11403,311,20,189,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11404,312,20,189,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11405,313,20,189,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11406,314,20,189,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11407,1,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11408,2,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11409,3,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11410,4,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11411,5,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11412,6,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11413,7,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11414,8,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11415,9,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11416,10,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11417,11,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11418,12,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11419,13,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11420,14,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11421,15,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11422,16,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11423,17,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11424,18,21,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11425,1,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11426,2,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11427,3,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11428,4,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11429,5,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11430,6,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11431,7,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11432,8,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11433,9,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11434,10,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11435,11,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11436,12,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11437,13,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11438,14,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11439,15,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11440,16,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11441,17,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11442,18,21,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11443,1,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11444,2,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11445,3,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11446,4,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11447,5,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11448,6,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11449,7,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11450,8,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11451,9,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11452,10,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11453,11,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11454,12,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11455,13,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11456,14,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11457,15,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11458,16,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11459,17,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11460,18,21,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11461,1,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11462,2,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11463,3,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11464,4,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11465,5,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11466,6,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11467,7,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11468,8,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11469,9,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11470,10,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11471,11,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11472,12,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11473,13,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11474,14,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11475,15,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11476,16,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11477,17,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11478,18,21,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11479,1,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11480,2,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11481,3,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11482,4,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11483,5,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11484,6,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11485,7,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11486,8,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11487,9,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11488,10,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11489,11,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11490,12,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11491,13,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11492,14,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11493,15,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11494,16,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11495,17,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11496,18,21,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11497,1,21,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11498,2,21,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11499,3,21,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11500,4,21,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11501,5,21,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11502,6,21,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11503,7,21,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11504,8,21,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11505,9,21,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11506,10,21,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11507,11,21,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11508,1,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11509,2,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11510,3,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11511,4,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11512,5,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11513,6,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11514,7,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11515,8,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11516,9,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11517,10,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11518,11,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11519,12,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11520,13,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11521,14,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11522,15,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11523,16,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11524,17,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11525,18,21,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11526,1,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11527,2,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11528,3,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11529,4,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11530,5,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11531,6,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11532,7,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11533,8,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11534,9,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11535,10,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11536,11,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11537,12,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11538,13,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11539,14,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11540,15,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11541,16,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11542,17,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11543,18,21,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11544,1,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11545,2,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11546,3,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11547,4,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11548,5,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11549,6,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11550,7,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11551,8,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11552,9,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11553,10,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11554,11,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11555,12,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11556,13,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11557,14,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11558,15,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11559,16,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11560,17,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11561,18,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11562,19,21,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11563,1,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11564,2,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11565,3,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11566,4,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11567,5,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11568,6,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11569,7,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11570,8,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11571,9,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11572,10,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11573,11,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11574,12,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11575,13,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11576,14,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11577,15,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11578,16,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11579,17,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11580,18,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11581,19,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11582,20,21,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11583,1,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11584,2,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11585,3,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11586,4,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11587,5,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11588,6,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11589,7,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11590,8,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11591,9,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11592,10,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11593,11,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11594,12,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11595,13,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11596,14,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11597,15,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11598,16,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11599,17,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11600,18,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11601,19,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11602,20,21,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11603,1,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11604,2,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11605,3,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11606,4,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11607,5,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11608,6,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11609,7,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11610,8,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11611,9,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11612,10,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11613,11,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11614,12,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11615,13,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11616,14,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11617,15,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11618,16,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11619,17,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11620,18,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11621,19,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11622,20,21,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11623,1,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11624,2,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11625,3,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11626,4,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11627,5,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11628,6,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11629,7,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11630,8,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11631,9,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11632,10,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11633,11,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11634,12,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11635,13,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11636,14,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11637,15,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11638,16,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11639,17,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11640,18,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11641,19,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11642,20,21,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11643,1,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11644,2,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11645,3,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11646,4,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11647,5,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11648,6,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11649,7,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11650,8,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11651,9,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11652,10,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11653,11,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11654,12,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11655,13,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11656,14,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11657,15,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11658,16,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11659,17,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11660,18,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11661,19,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11662,20,21,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11663,1,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11664,2,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11665,3,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11666,4,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11667,5,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11668,6,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11669,7,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11670,8,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11671,9,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11672,10,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11673,11,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11674,12,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11675,13,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11676,14,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11677,15,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11678,16,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11679,17,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11680,18,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11681,19,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11682,20,21,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11683,1,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11684,2,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11685,3,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11686,4,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11687,5,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11688,6,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11689,7,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11690,8,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11691,9,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11692,10,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11693,11,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11694,12,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11695,13,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11696,14,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11697,15,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11698,16,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11699,17,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11700,18,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11701,19,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11702,20,21,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11703,1,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11704,2,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11705,3,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11706,4,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11707,5,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11708,6,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11709,7,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11710,8,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11711,9,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11712,10,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11713,11,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11714,12,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11715,13,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11716,14,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11717,15,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11718,16,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11719,17,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11720,18,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11721,19,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11722,20,21,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11723,1,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11724,2,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11725,3,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11726,4,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11727,5,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11728,6,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11729,7,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11730,8,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11731,9,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11732,10,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11733,11,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11734,12,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11735,13,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11736,14,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11737,15,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11738,16,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11739,17,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11740,18,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11741,19,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11742,20,21,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11743,19,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11744,20,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11745,21,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11746,22,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11747,23,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11748,24,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11749,25,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11750,26,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11751,27,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11752,28,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11753,29,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11754,30,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11755,31,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11756,32,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11757,33,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11758,34,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11759,35,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11760,36,22,1,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11761,19,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11762,20,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11763,21,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11764,22,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11765,23,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11766,24,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11767,25,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11768,26,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11769,27,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11770,28,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11771,29,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11772,30,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11773,31,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11774,32,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11775,33,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11776,34,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11777,35,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11778,36,22,2,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11779,19,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11780,20,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11781,21,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11782,22,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11783,23,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11784,24,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11785,25,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11786,26,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11787,27,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11788,28,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11789,29,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11790,30,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11791,31,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11792,32,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11793,33,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11794,34,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11795,35,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11796,36,22,3,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11797,19,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11798,20,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11799,21,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11800,22,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11801,23,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11802,24,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11803,25,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11804,26,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11805,27,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11806,28,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11807,29,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11808,30,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11809,31,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11810,32,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11811,33,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11812,34,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11813,35,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11814,36,22,4,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11815,19,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11816,20,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11817,21,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11818,22,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11819,23,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11820,24,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11821,25,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11822,26,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11823,27,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11824,28,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11825,29,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11826,30,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11827,31,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11828,32,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11829,33,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11830,34,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11831,35,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11832,36,22,5,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11833,19,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11834,20,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11835,21,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11836,22,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11837,23,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11838,24,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11839,25,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11840,26,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11841,27,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11842,28,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11843,29,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11844,30,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11845,31,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11846,32,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11847,33,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11848,34,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11849,35,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11850,36,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11851,37,22,6,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11852,19,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11853,20,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11854,21,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11855,22,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11856,23,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11857,24,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11858,25,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11859,26,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11860,27,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11861,28,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11862,29,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11863,30,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11864,31,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11865,32,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11866,33,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11867,34,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11868,35,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11869,36,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11870,37,22,7,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11871,19,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11872,20,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11873,21,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11874,22,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11875,23,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11876,24,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11877,25,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11878,26,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11879,27,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11880,28,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11881,29,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11882,30,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11883,31,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11884,32,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11885,33,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11886,34,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11887,35,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11888,36,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11889,37,22,8,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11890,20,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11891,21,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11892,22,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11893,23,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11894,24,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11895,25,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11896,26,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11897,27,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11898,28,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11899,29,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11900,30,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11901,31,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11902,32,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11903,33,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11904,34,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11905,35,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11906,36,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11907,37,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11908,38,22,9,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11909,21,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11910,22,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11911,23,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11912,24,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11913,25,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11914,26,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11915,27,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11916,28,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11917,29,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11918,30,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11919,31,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11920,32,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11921,33,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11922,34,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11923,35,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11924,36,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11925,37,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11926,38,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11927,39,22,10,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11928,21,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11929,22,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11930,23,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11931,24,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11932,25,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11933,26,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11934,27,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11935,28,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11936,29,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11937,30,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11938,31,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11939,32,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11940,33,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11941,34,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11942,35,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11943,36,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11944,37,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11945,38,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11946,39,22,11,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11947,21,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11948,22,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11949,23,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11950,24,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11951,25,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11952,26,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11953,27,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11954,28,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11955,29,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11956,30,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11957,31,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11958,32,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11959,33,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11960,34,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11961,35,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11962,36,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11963,37,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11964,38,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11965,39,22,12,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11966,21,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11967,22,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11968,23,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11969,24,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11970,25,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11971,26,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11972,27,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11973,28,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11974,29,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11975,30,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11976,31,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11977,32,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11978,33,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11979,34,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11980,35,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11981,36,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11982,37,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11983,38,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11984,39,22,13,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11985,21,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11986,22,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11987,23,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11988,24,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11989,25,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11990,26,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11991,27,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11992,28,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11993,29,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11994,30,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11995,31,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11996,32,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11997,33,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11998,34,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(11999,35,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12000,36,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12001,37,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12002,38,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12003,39,22,14,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12004,21,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12005,22,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12006,23,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12007,24,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12008,25,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12009,26,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12010,27,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12011,28,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12012,29,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12013,30,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12014,31,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12015,32,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12016,33,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12017,34,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12018,35,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12019,36,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12020,37,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12021,38,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12022,39,22,15,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12023,21,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12024,22,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12025,23,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12026,24,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12027,25,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12028,26,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12029,27,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12030,28,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12031,29,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12032,30,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12033,31,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12034,32,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12035,33,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12036,34,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12037,35,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12038,36,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12039,37,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12040,38,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12041,39,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12042,40,22,16,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12043,21,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12044,22,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12045,23,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12046,24,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12047,25,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12048,26,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12049,27,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12050,28,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12051,29,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12052,30,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12053,31,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12054,32,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12055,33,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12056,34,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12057,35,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12058,36,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12059,37,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12060,38,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12061,39,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12062,40,22,18,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12063,21,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12064,22,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12065,23,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12066,24,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12067,25,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12068,26,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12069,27,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12070,28,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12071,29,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12072,30,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12073,31,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12074,32,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12075,33,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12076,34,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12077,35,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12078,36,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12079,37,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12080,38,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12081,39,22,19,1,'2022-09-02 14:23:36','2022-09-02 14:23:36'),(12082,40,22,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12083,37,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12084,38,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12085,39,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12086,40,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12087,41,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12088,42,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12089,43,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12090,44,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12091,45,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12092,46,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12093,47,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12094,48,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12095,49,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12096,50,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12097,51,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12098,52,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12099,53,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12100,54,23,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12101,37,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12102,38,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12103,39,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12104,40,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12105,41,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12106,42,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12107,43,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12108,44,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12109,45,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12110,46,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12111,47,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12112,48,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12113,49,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12114,50,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12115,51,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12116,52,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12117,53,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12118,54,23,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12119,37,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12120,38,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12121,39,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12122,40,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12123,41,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12124,42,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12125,43,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12126,44,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12127,45,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12128,46,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12129,47,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12130,48,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12131,49,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12132,50,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12133,51,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12134,52,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12135,53,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12136,54,23,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12137,37,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12138,38,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12139,39,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12140,40,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12141,41,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12142,42,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12143,43,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12144,44,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12145,45,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12146,46,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12147,47,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12148,48,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12149,49,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12150,50,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12151,51,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12152,52,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12153,53,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12154,54,23,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12155,37,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12156,38,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12157,39,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12158,40,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12159,41,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12160,42,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12161,43,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12162,44,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12163,45,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12164,46,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12165,47,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12166,48,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12167,49,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12168,50,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12169,51,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12170,52,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12171,53,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12172,54,23,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12173,38,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12174,39,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12175,40,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12176,41,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12177,42,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12178,43,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12179,44,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12180,45,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12181,46,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12182,47,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12183,48,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12184,49,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12185,50,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12186,51,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12187,52,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12188,53,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12189,54,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12190,55,23,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12191,38,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12192,39,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12193,40,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12194,41,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12195,42,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12196,43,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12197,44,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12198,45,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12199,46,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12200,47,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12201,48,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12202,49,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12203,50,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12204,51,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12205,52,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12206,53,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12207,54,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12208,55,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12209,56,23,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12210,38,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12211,39,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12212,40,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12213,41,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12214,42,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12215,43,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12216,44,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12217,45,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12218,46,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12219,47,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12220,48,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12221,49,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12222,50,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12223,51,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12224,52,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12225,53,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12226,54,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12227,55,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12228,56,23,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12229,39,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12230,40,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12231,41,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12232,42,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12233,43,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12234,44,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12235,45,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12236,46,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12237,47,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12238,48,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12239,49,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12240,50,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12241,51,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12242,52,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12243,53,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12244,54,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12245,55,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12246,56,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12247,57,23,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12248,40,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12249,41,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12250,42,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12251,43,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12252,44,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12253,45,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12254,46,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12255,47,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12256,48,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12257,49,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12258,50,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12259,51,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12260,52,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12261,53,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12262,54,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12263,55,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12264,56,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12265,57,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12266,58,23,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12267,40,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12268,41,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12269,42,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12270,43,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12271,44,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12272,45,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12273,46,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12274,47,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12275,48,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12276,49,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12277,50,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12278,51,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12279,52,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12280,53,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12281,54,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12282,55,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12283,56,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12284,57,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12285,58,23,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12286,40,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12287,41,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12288,42,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12289,43,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12290,44,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12291,45,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12292,46,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12293,47,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12294,48,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12295,49,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12296,50,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12297,51,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12298,52,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12299,53,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12300,54,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12301,55,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12302,56,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12303,57,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12304,58,23,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12305,40,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12306,41,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12307,42,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12308,43,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12309,44,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12310,45,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12311,46,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12312,47,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12313,48,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12314,49,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12315,50,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12316,51,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12317,52,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12318,53,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12319,54,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12320,55,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12321,56,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12322,57,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12323,58,23,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12324,40,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12325,41,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12326,42,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12327,43,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12328,44,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12329,45,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12330,46,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12331,47,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12332,48,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12333,49,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12334,50,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12335,51,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12336,52,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12337,53,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12338,54,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12339,55,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12340,56,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12341,57,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12342,58,23,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12343,40,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12344,41,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12345,42,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12346,43,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12347,44,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12348,45,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12349,46,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12350,47,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12351,48,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12352,49,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12353,50,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12354,51,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12355,52,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12356,53,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12357,54,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12358,55,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12359,56,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12360,57,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12361,58,23,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12362,41,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12363,42,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12364,43,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12365,44,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12366,45,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12367,46,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12368,47,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12369,48,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12370,49,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12371,50,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12372,51,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12373,52,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12374,53,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12375,54,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12376,55,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12377,56,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12378,57,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12379,58,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12380,59,23,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12381,41,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12382,42,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12383,43,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12384,44,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12385,45,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12386,46,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12387,47,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12388,48,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12389,49,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12390,50,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12391,51,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12392,52,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12393,53,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12394,54,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12395,55,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12396,56,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12397,57,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12398,58,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12399,59,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12400,60,23,18,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12401,41,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12402,42,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12403,43,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12404,44,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12405,45,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12406,46,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12407,47,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12408,48,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12409,49,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12410,50,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12411,51,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12412,52,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12413,53,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12414,54,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12415,55,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12416,56,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12417,57,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12418,58,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12419,59,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12420,60,23,19,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12421,55,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12422,56,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12423,57,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12424,58,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12425,59,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12426,60,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12427,61,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12428,62,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12429,63,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12430,64,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12431,65,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12432,66,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12433,67,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12434,68,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12435,69,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12436,70,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12437,71,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12438,72,24,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12439,55,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12440,56,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12441,57,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12442,58,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12443,59,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12444,60,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12445,61,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12446,62,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12447,63,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12448,64,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12449,65,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12450,66,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12451,67,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12452,68,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12453,69,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12454,70,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12455,71,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12456,72,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12457,73,24,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12458,55,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12459,56,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12460,57,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12461,58,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12462,59,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12463,60,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12464,61,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12465,62,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12466,63,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12467,64,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12468,65,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12469,66,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12470,67,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12471,68,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12472,69,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12473,70,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12474,71,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12475,72,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12476,73,24,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12477,55,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12478,56,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12479,57,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12480,58,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12481,59,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12482,60,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12483,61,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12484,62,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12485,63,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12486,64,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12487,65,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12488,66,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12489,67,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12490,68,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12491,69,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12492,70,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12493,71,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12494,72,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12495,73,24,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12496,55,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12497,56,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12498,57,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12499,58,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12500,59,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12501,60,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12502,61,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12503,62,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12504,63,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12505,64,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12506,65,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12507,66,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12508,67,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12509,68,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12510,69,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12511,70,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12512,71,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12513,72,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12514,73,24,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12515,56,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12516,57,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12517,58,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12518,59,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12519,60,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12520,61,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12521,62,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12522,63,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12523,64,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12524,65,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12525,66,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12526,67,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12527,68,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12528,69,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12529,70,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12530,71,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12531,72,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12532,73,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12533,74,24,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12534,57,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12535,58,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12536,59,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12537,60,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12538,61,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12539,62,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12540,63,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12541,64,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12542,65,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12543,66,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12544,67,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12545,68,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12546,69,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12547,70,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12548,71,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12549,72,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12550,73,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12551,74,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12552,75,24,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12553,57,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12554,58,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12555,59,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12556,60,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12557,61,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12558,62,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12559,63,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12560,64,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12561,65,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12562,66,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12563,67,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12564,68,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12565,69,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12566,70,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12567,71,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12568,72,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12569,73,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12570,74,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12571,75,24,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12572,58,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12573,59,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12574,60,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12575,61,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12576,62,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12577,63,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12578,64,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12579,65,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12580,66,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12581,67,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12582,68,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12583,69,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12584,70,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12585,71,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12586,72,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12587,73,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12588,74,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12589,75,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12590,76,24,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12591,59,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12592,60,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12593,61,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12594,62,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12595,63,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12596,64,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12597,65,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12598,66,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12599,67,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12600,68,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12601,69,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12602,70,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12603,71,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12604,72,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12605,73,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12606,74,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12607,75,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12608,76,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12609,77,24,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12610,59,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12611,60,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12612,61,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12613,62,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12614,63,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12615,64,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12616,65,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12617,66,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12618,67,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12619,68,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12620,69,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12621,70,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12622,71,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12623,72,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12624,73,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12625,74,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12626,75,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12627,76,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12628,77,24,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12629,59,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12630,60,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12631,61,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12632,62,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12633,63,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12634,64,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12635,65,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12636,66,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12637,67,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12638,68,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12639,69,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12640,70,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12641,71,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12642,72,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12643,73,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12644,74,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12645,75,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12646,76,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12647,77,24,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12648,59,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12649,60,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12650,61,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12651,62,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12652,63,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12653,64,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12654,65,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12655,66,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12656,67,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12657,68,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12658,69,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12659,70,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12660,71,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12661,72,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12662,73,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12663,74,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12664,75,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12665,76,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12666,77,24,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12667,59,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12668,60,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12669,61,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12670,62,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12671,63,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12672,64,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12673,65,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12674,66,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12675,67,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12676,68,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12677,69,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12678,70,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12679,71,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12680,72,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12681,73,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12682,74,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12683,75,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12684,76,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12685,77,24,14,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12686,59,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12687,60,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12688,61,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12689,62,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12690,63,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12691,64,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12692,65,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12693,66,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12694,67,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12695,68,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12696,69,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12697,70,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12698,71,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12699,72,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12700,73,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12701,74,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12702,75,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12703,76,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12704,77,24,15,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12705,60,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12706,61,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12707,62,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12708,63,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12709,64,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12710,65,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12711,66,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12712,67,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12713,68,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12714,69,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12715,70,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12716,71,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12717,72,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12718,73,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12719,74,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12720,75,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12721,76,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12722,77,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12723,78,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12724,79,24,16,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12725,73,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12726,74,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12727,75,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12728,76,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12729,77,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12730,78,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12731,79,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12732,80,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12733,81,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12734,82,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12735,83,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12736,84,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12737,85,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12738,86,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12739,87,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12740,88,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12741,89,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12742,90,25,1,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12743,74,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12744,75,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12745,76,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12746,77,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12747,78,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12748,79,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12749,80,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12750,81,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12751,82,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12752,83,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12753,84,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12754,85,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12755,86,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12756,87,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12757,88,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12758,89,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12759,90,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12760,91,25,2,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12761,74,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12762,75,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12763,76,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12764,77,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12765,78,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12766,79,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12767,80,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12768,81,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12769,82,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12770,83,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12771,84,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12772,85,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12773,86,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12774,87,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12775,88,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12776,89,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12777,90,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12778,91,25,3,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12779,74,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12780,75,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12781,76,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12782,77,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12783,78,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12784,79,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12785,80,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12786,81,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12787,82,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12788,83,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12789,84,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12790,85,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12791,86,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12792,87,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12793,88,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12794,89,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12795,90,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12796,91,25,4,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12797,74,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12798,75,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12799,76,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12800,77,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12801,78,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12802,79,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12803,80,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12804,81,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12805,82,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12806,83,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12807,84,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12808,85,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12809,86,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12810,87,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12811,88,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12812,89,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12813,90,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12814,91,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12815,92,25,5,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12816,75,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12817,76,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12818,77,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12819,78,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12820,79,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12821,80,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12822,81,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12823,82,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12824,83,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12825,84,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12826,85,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12827,86,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12828,87,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12829,88,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12830,89,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12831,90,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12832,91,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12833,92,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12834,93,25,6,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12835,76,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12836,77,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12837,78,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12838,79,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12839,80,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12840,81,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12841,82,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12842,83,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12843,84,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12844,85,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12845,86,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12846,87,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12847,88,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12848,89,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12849,90,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12850,91,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12851,92,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12852,93,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12853,94,25,7,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12854,76,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12855,77,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12856,78,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12857,79,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12858,80,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12859,81,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12860,82,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12861,83,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12862,84,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12863,85,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12864,86,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12865,87,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12866,88,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12867,89,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12868,90,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12869,91,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12870,92,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12871,93,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12872,94,25,8,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12873,77,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12874,78,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12875,79,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12876,80,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12877,81,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12878,82,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12879,83,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12880,84,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12881,85,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12882,86,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12883,87,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12884,88,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12885,89,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12886,90,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12887,91,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12888,92,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12889,93,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12890,94,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12891,95,25,9,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12892,78,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12893,79,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12894,80,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12895,81,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12896,82,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12897,83,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12898,84,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12899,85,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12900,86,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12901,87,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12902,88,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12903,89,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12904,90,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12905,91,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12906,92,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12907,93,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12908,94,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12909,95,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12910,96,25,10,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12911,78,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12912,79,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12913,80,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12914,81,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12915,82,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12916,83,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12917,84,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12918,85,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12919,86,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12920,87,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12921,88,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12922,89,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12923,90,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12924,91,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12925,92,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12926,93,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12927,94,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12928,95,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12929,96,25,11,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12930,78,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12931,79,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12932,80,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12933,81,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12934,82,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12935,83,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12936,84,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12937,85,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12938,86,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12939,87,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12940,88,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12941,89,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12942,90,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12943,91,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12944,92,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12945,93,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12946,94,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12947,95,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12948,96,25,12,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12949,78,25,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12950,79,25,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12951,80,25,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12952,81,25,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12953,82,25,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12954,83,25,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12955,84,25,13,1,'2022-09-02 14:23:37','2022-09-02 14:23:37'),(12956,85,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12957,86,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12958,87,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12959,88,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12960,89,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12961,90,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12962,91,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12963,92,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12964,93,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12965,94,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12966,95,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12967,96,25,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12968,78,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12969,79,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12970,80,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12971,81,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12972,82,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12973,83,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12974,84,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12975,85,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12976,86,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12977,87,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12978,88,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12979,89,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12980,90,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12981,91,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12982,92,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12983,93,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12984,94,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12985,95,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12986,96,25,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12987,78,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12988,79,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12989,80,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12990,81,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12991,82,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12992,83,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12993,84,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12994,85,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12995,86,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12996,87,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12997,88,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12998,89,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(12999,90,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13000,91,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13001,92,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13002,93,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13003,94,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13004,95,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13005,96,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13006,97,25,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13007,80,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13008,81,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13009,82,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13010,83,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13011,84,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13012,85,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13013,86,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13014,87,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13015,88,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13016,89,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13017,90,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13018,91,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13019,92,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13020,93,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13021,94,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13022,95,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13023,96,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13024,97,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13025,98,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13026,99,25,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13027,61,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13028,62,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13029,63,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13030,64,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13031,65,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13032,66,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13033,67,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13034,68,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13035,69,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13036,70,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13037,71,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13038,72,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13039,73,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13040,74,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13041,75,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13042,76,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13043,77,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13044,78,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13045,79,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13046,80,25,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13047,61,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13048,62,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13049,63,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13050,64,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13051,65,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13052,66,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13053,67,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13054,68,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13055,69,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13056,70,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13057,71,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13058,72,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13059,73,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13060,74,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13061,75,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13062,76,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13063,77,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13064,78,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13065,79,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13066,80,25,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13067,91,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13068,92,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13069,93,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13070,94,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13071,95,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13072,96,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13073,97,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13074,98,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13075,99,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13076,100,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13077,101,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13078,102,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13079,103,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13080,104,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13081,105,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13082,106,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13083,107,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13084,108,26,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13085,92,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13086,93,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13087,94,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13088,95,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13089,96,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13090,97,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13091,98,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13092,99,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13093,100,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13094,101,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13095,102,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13096,103,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13097,104,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13098,105,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13099,106,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13100,107,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13101,108,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13102,109,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13103,110,26,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13104,92,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13105,93,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13106,94,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13107,95,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13108,96,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13109,97,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13110,98,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13111,99,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13112,100,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13113,101,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13114,102,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13115,103,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13116,104,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13117,105,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13118,106,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13119,107,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13120,108,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13121,109,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13122,110,26,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13123,92,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13124,93,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13125,94,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13126,95,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13127,96,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13128,97,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13129,98,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13130,99,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13131,100,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13132,101,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13133,102,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13134,103,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13135,104,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13136,105,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13137,106,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13138,107,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13139,108,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13140,109,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13141,110,26,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13142,93,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13143,94,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13144,95,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13145,96,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13146,97,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13147,98,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13148,99,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13149,100,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13150,101,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13151,102,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13152,103,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13153,104,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13154,105,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13155,106,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13156,107,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13157,108,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13158,109,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13159,110,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13160,111,26,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13161,94,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13162,95,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13163,96,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13164,97,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13165,98,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13166,99,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13167,100,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13168,101,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13169,102,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13170,103,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13171,104,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13172,105,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13173,106,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13174,107,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13175,108,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13176,109,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13177,110,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13178,111,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13179,112,26,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13180,95,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13181,96,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13182,97,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13183,98,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13184,99,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13185,100,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13186,101,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13187,102,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13188,103,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13189,104,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13190,105,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13191,106,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13192,107,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13193,108,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13194,109,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13195,110,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13196,111,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13197,112,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13198,113,26,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13199,95,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13200,96,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13201,97,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13202,98,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13203,99,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13204,100,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13205,101,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13206,102,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13207,103,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13208,104,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13209,105,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13210,106,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13211,107,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13212,108,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13213,109,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13214,110,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13215,111,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13216,112,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13217,113,26,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13218,96,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13219,97,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13220,98,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13221,99,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13222,100,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13223,101,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13224,102,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13225,103,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13226,104,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13227,105,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13228,106,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13229,107,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13230,108,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13231,109,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13232,110,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13233,111,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13234,112,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13235,113,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13236,114,26,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13237,97,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13238,98,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13239,99,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13240,100,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13241,101,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13242,102,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13243,103,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13244,104,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13245,105,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13246,106,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13247,107,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13248,108,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13249,109,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13250,110,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13251,111,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13252,112,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13253,113,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13254,114,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13255,115,26,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13256,97,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13257,98,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13258,99,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13259,100,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13260,101,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13261,102,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13262,103,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13263,104,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13264,105,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13265,106,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13266,107,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13267,108,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13268,109,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13269,110,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13270,111,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13271,112,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13272,113,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13273,114,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13274,115,26,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13275,97,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13276,98,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13277,99,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13278,100,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13279,101,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13280,102,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13281,103,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13282,104,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13283,105,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13284,106,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13285,107,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13286,108,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13287,109,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13288,110,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13289,111,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13290,112,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13291,113,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13292,114,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13293,115,26,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13294,97,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13295,98,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13296,99,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13297,100,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13298,101,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13299,102,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13300,103,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13301,104,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13302,105,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13303,106,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13304,107,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13305,108,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13306,109,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13307,110,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13308,111,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13309,112,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13310,113,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13311,114,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13312,115,26,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13313,97,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13314,98,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13315,99,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13316,100,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13317,101,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13318,102,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13319,103,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13320,104,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13321,105,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13322,106,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13323,107,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13324,108,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13325,109,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13326,110,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13327,111,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13328,112,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13329,113,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13330,114,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13331,115,26,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13332,98,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13333,99,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13334,100,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13335,101,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13336,102,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13337,103,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13338,104,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13339,105,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13340,106,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13341,107,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13342,108,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13343,109,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13344,110,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13345,111,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13346,112,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13347,113,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13348,114,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13349,115,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13350,116,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13351,117,26,15,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13352,100,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13353,101,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13354,102,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13355,103,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13356,104,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13357,105,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13358,106,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13359,107,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13360,108,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13361,109,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13362,110,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13363,111,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13364,112,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13365,113,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13366,114,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13367,115,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13368,116,26,16,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13369,81,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13370,82,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13371,83,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13372,84,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13373,85,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13374,86,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13375,87,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13376,88,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13377,89,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13378,90,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13379,91,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13380,92,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13381,93,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13382,94,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13383,95,26,18,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13384,81,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13385,82,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13386,83,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13387,84,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13388,85,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13389,86,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13390,87,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13391,88,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13392,89,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13393,90,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13394,91,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13395,92,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13396,93,26,19,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13397,109,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13398,110,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13399,111,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13400,112,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13401,113,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13402,114,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13403,115,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13404,116,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13405,117,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13406,118,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13407,119,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13408,120,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13409,121,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13410,122,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13411,123,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13412,124,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13413,125,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13414,126,27,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13415,111,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13416,112,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13417,113,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13418,114,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13419,115,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13420,116,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13421,117,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13422,118,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13423,119,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13424,120,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13425,121,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13426,122,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13427,123,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13428,124,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13429,125,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13430,126,27,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13431,111,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13432,112,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13433,113,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13434,114,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13435,115,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13436,116,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13437,117,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13438,118,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13439,119,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13440,120,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13441,121,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13442,122,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13443,123,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13444,124,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13445,125,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13446,126,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13447,127,27,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13448,111,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13449,112,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13450,113,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13451,114,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13452,115,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13453,116,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13454,117,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13455,118,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13456,119,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13457,120,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13458,121,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13459,122,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13460,123,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13461,124,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13462,125,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13463,126,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13464,127,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13465,128,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13466,129,27,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13467,112,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13468,113,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13469,114,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13470,115,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13471,116,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13472,117,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13473,118,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13474,119,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13475,120,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13476,121,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13477,122,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13478,123,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13479,124,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13480,125,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13481,126,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13482,127,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13483,128,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13484,129,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13485,130,27,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13486,113,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13487,114,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13488,115,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13489,116,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13490,117,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13491,118,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13492,119,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13493,120,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13494,121,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13495,122,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13496,123,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13497,124,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13498,125,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13499,126,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13500,127,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13501,128,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13502,129,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13503,130,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13504,131,27,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13505,114,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13506,115,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13507,116,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13508,117,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13509,118,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13510,119,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13511,120,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13512,121,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13513,122,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13514,123,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13515,124,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13516,125,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13517,126,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13518,127,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13519,128,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13520,129,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13521,130,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13522,131,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13523,132,27,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13524,114,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13525,115,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13526,116,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13527,117,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13528,118,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13529,119,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13530,120,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13531,121,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13532,122,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13533,123,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13534,124,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13535,125,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13536,126,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13537,127,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13538,128,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13539,129,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13540,130,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13541,131,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13542,132,27,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13543,115,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13544,116,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13545,117,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13546,118,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13547,119,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13548,120,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13549,121,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13550,122,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13551,123,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13552,124,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13553,125,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13554,126,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13555,127,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13556,128,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13557,129,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13558,130,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13559,131,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13560,132,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13561,133,27,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13562,116,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13563,117,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13564,118,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13565,119,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13566,120,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13567,121,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13568,122,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13569,123,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13570,124,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13571,125,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13572,126,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13573,127,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13574,128,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13575,129,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13576,130,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13577,131,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13578,132,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13579,133,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13580,134,27,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13581,116,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13582,117,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13583,118,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13584,119,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13585,120,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13586,121,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13587,122,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13588,123,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13589,124,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13590,125,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13591,126,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13592,127,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13593,128,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13594,129,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13595,130,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13596,131,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13597,132,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13598,133,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13599,134,27,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13600,116,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13601,117,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13602,118,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13603,119,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13604,120,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13605,121,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13606,122,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13607,123,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13608,124,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13609,125,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13610,126,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13611,127,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13612,128,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13613,129,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13614,130,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13615,131,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13616,132,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13617,133,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13618,134,27,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13619,116,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13620,117,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13621,118,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13622,119,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13623,120,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13624,121,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13625,122,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13626,123,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13627,124,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13628,125,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13629,126,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13630,127,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13631,128,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13632,129,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13633,130,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13634,131,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13635,132,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13636,133,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13637,134,27,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13638,116,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13639,117,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13640,118,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13641,119,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13642,120,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13643,121,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13644,122,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13645,123,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13646,124,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13647,125,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13648,126,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13649,127,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13650,128,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13651,129,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13652,130,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13653,131,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13654,132,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13655,133,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13656,134,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13657,135,27,14,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13658,127,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13659,128,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13660,129,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13661,130,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13662,131,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13663,132,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13664,133,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13665,134,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13666,135,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13667,136,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13668,137,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13669,138,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13670,139,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13671,140,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13672,141,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13673,142,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13674,143,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13675,144,28,1,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13676,127,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13677,128,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13678,129,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13679,130,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13680,131,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13681,132,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13682,133,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13683,134,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13684,135,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13685,136,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13686,137,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13687,138,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13688,139,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13689,140,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13690,141,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13691,142,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13692,143,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13693,144,28,2,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13694,128,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13695,129,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13696,130,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13697,131,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13698,132,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13699,133,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13700,134,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13701,135,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13702,136,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13703,137,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13704,138,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13705,139,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13706,140,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13707,141,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13708,142,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13709,143,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13710,144,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13711,145,28,3,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13712,130,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13713,131,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13714,132,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13715,133,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13716,134,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13717,135,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13718,136,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13719,137,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13720,138,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13721,139,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13722,140,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13723,141,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13724,142,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13725,143,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13726,144,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13727,145,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13728,146,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13729,147,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13730,148,28,4,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13731,131,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13732,132,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13733,133,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13734,134,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13735,135,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13736,136,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13737,137,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13738,138,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13739,139,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13740,140,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13741,141,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13742,142,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13743,143,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13744,144,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13745,145,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13746,146,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13747,147,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13748,148,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13749,149,28,5,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13750,132,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13751,133,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13752,134,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13753,135,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13754,136,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13755,137,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13756,138,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13757,139,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13758,140,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13759,141,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13760,142,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13761,143,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13762,144,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13763,145,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13764,146,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13765,147,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13766,148,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13767,149,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13768,150,28,6,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13769,133,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13770,134,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13771,135,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13772,136,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13773,137,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13774,138,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13775,139,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13776,140,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13777,141,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13778,142,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13779,143,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13780,144,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13781,145,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13782,146,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13783,147,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13784,148,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13785,149,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13786,150,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13787,151,28,7,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13788,133,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13789,134,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13790,135,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13791,136,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13792,137,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13793,138,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13794,139,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13795,140,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13796,141,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13797,142,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13798,143,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13799,144,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13800,145,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13801,146,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13802,147,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13803,148,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13804,149,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13805,150,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13806,151,28,8,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13807,134,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13808,135,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13809,136,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13810,137,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13811,138,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13812,139,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13813,140,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13814,141,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13815,142,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13816,143,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13817,144,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13818,145,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13819,146,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13820,147,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13821,148,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13822,149,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13823,150,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13824,151,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13825,152,28,9,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13826,135,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13827,136,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13828,137,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13829,138,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13830,139,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13831,140,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13832,141,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13833,142,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13834,143,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13835,144,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13836,145,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13837,146,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13838,147,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13839,148,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13840,149,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13841,150,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13842,151,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13843,152,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13844,153,28,10,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13845,135,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13846,136,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13847,137,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13848,138,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13849,139,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13850,140,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13851,141,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13852,142,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13853,143,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13854,144,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13855,145,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13856,146,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13857,147,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13858,148,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13859,149,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13860,150,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13861,151,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13862,152,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13863,153,28,11,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13864,135,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13865,136,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13866,137,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13867,138,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13868,139,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13869,140,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13870,141,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13871,142,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13872,143,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13873,144,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13874,145,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13875,146,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13876,147,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13877,148,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13878,149,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13879,150,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13880,151,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13881,152,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13882,153,28,12,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13883,135,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13884,136,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13885,137,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13886,138,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13887,139,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13888,140,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13889,141,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13890,142,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13891,143,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13892,144,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13893,145,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13894,146,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13895,147,28,13,1,'2022-09-02 14:23:38','2022-09-02 14:23:38'),(13896,148,28,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13897,149,28,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13898,150,28,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13899,151,28,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13900,152,28,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13901,153,28,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13902,136,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13903,137,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13904,138,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13905,139,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13906,140,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13907,141,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13908,142,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13909,143,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13910,144,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13911,145,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13912,146,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13913,147,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13914,148,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13915,149,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13916,150,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13917,151,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13918,152,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13919,153,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13920,154,28,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13921,118,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13922,119,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13923,120,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13924,121,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13925,122,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13926,123,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13927,124,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13928,125,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13929,126,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13930,127,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13931,128,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13932,129,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13933,130,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13934,131,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13935,132,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13936,133,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13937,134,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13938,135,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13939,136,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13940,137,28,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13941,117,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13942,118,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13943,119,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13944,120,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13945,121,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13946,122,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13947,123,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13948,124,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13949,125,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13950,126,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13951,127,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13952,128,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13953,129,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13954,130,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13955,131,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13956,132,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13957,133,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13958,134,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13959,135,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13960,136,28,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13961,145,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13962,146,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13963,147,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13964,148,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13965,149,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13966,150,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13967,151,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13968,152,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13969,153,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13970,154,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13971,155,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13972,156,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13973,157,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13974,158,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13975,159,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13976,160,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13977,161,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13978,162,29,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13979,145,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13980,146,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13981,147,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13982,148,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13983,149,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13984,150,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13985,151,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13986,152,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13987,153,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13988,154,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13989,155,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13990,156,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13991,157,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13992,158,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13993,159,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13994,160,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13995,161,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13996,162,29,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13997,146,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13998,147,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(13999,148,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14000,149,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14001,150,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14002,151,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14003,152,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14004,153,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14005,154,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14006,155,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14007,156,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14008,157,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14009,158,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14010,159,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14011,160,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14012,161,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14013,162,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14014,163,29,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14015,149,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14016,150,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14017,151,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14018,152,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14019,153,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14020,154,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14021,155,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14022,156,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14023,157,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14024,158,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14025,159,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14026,160,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14027,161,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14028,162,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14029,163,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14030,164,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14031,165,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14032,166,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14033,167,29,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14034,150,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14035,151,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14036,152,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14037,153,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14038,154,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14039,155,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14040,156,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14041,157,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14042,158,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14043,159,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14044,160,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14045,161,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14046,162,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14047,163,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14048,164,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14049,165,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14050,166,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14051,167,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14052,168,29,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14053,151,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14054,152,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14055,153,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14056,154,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14057,155,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14058,156,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14059,157,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14060,158,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14061,159,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14062,160,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14063,161,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14064,162,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14065,163,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14066,164,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14067,165,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14068,166,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14069,167,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14070,168,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14071,169,29,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14072,152,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14073,153,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14074,154,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14075,155,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14076,156,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14077,157,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14078,158,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14079,159,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14080,160,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14081,161,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14082,162,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14083,163,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14084,164,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14085,165,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14086,166,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14087,167,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14088,168,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14089,169,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14090,170,29,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14091,152,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14092,153,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14093,154,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14094,155,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14095,156,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14096,157,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14097,158,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14098,159,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14099,160,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14100,161,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14101,162,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14102,163,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14103,164,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14104,165,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14105,166,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14106,167,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14107,168,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14108,169,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14109,170,29,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14110,153,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14111,154,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14112,155,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14113,156,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14114,157,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14115,158,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14116,159,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14117,160,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14118,161,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14119,162,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14120,163,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14121,164,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14122,165,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14123,166,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14124,167,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14125,168,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14126,169,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14127,170,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14128,171,29,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14129,154,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14130,155,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14131,156,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14132,157,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14133,158,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14134,159,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14135,160,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14136,161,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14137,162,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14138,163,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14139,164,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14140,165,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14141,166,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14142,167,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14143,168,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14144,169,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14145,170,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14146,171,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14147,172,29,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14148,154,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14149,155,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14150,156,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14151,157,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14152,158,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14153,159,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14154,160,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14155,161,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14156,162,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14157,163,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14158,164,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14159,165,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14160,166,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14161,167,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14162,168,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14163,169,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14164,170,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14165,171,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14166,172,29,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14167,154,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14168,155,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14169,156,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14170,157,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14171,158,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14172,159,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14173,160,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14174,161,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14175,162,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14176,163,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14177,164,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14178,165,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14179,166,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14180,167,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14181,168,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14182,169,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14183,170,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14184,171,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14185,172,29,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14186,154,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14187,155,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14188,156,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14189,157,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14190,158,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14191,159,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14192,160,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14193,161,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14194,162,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14195,163,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14196,164,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14197,165,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14198,166,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14199,167,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14200,168,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14201,169,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14202,170,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14203,171,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14204,172,29,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14205,155,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14206,156,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14207,157,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14208,158,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14209,159,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14210,160,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14211,161,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14212,162,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14213,163,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14214,164,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14215,165,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14216,166,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14217,167,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14218,168,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14219,169,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14220,170,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14221,171,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14222,172,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14223,173,29,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14224,163,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14225,164,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14226,165,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14227,166,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14228,167,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14229,168,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14230,169,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14231,170,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14232,171,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14233,172,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14234,173,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14235,174,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14236,175,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14237,176,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14238,177,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14239,178,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14240,179,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14241,180,30,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14242,163,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14243,164,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14244,165,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14245,166,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14246,167,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14247,168,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14248,169,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14249,170,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14250,171,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14251,172,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14252,173,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14253,174,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14254,175,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14255,176,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14256,177,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14257,178,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14258,179,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14259,180,30,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14260,164,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14261,165,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14262,166,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14263,167,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14264,168,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14265,169,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14266,170,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14267,171,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14268,172,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14269,173,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14270,174,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14271,175,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14272,176,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14273,177,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14274,178,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14275,179,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14276,180,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14277,181,30,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14278,168,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14279,169,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14280,170,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14281,171,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14282,172,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14283,173,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14284,174,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14285,175,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14286,176,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14287,177,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14288,178,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14289,179,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14290,180,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14291,181,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14292,182,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14293,183,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14294,184,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14295,185,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14296,186,30,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14297,169,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14298,170,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14299,171,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14300,172,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14301,173,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14302,174,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14303,175,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14304,176,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14305,177,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14306,178,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14307,179,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14308,180,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14309,181,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14310,182,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14311,183,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14312,184,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14313,185,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14314,186,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14315,187,30,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14316,170,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14317,171,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14318,172,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14319,173,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14320,174,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14321,175,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14322,176,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14323,177,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14324,178,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14325,179,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14326,180,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14327,181,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14328,182,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14329,183,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14330,184,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14331,185,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14332,186,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14333,187,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14334,188,30,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14335,171,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14336,172,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14337,173,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14338,174,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14339,175,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14340,176,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14341,177,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14342,178,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14343,179,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14344,180,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14345,181,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14346,182,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14347,183,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14348,184,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14349,185,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14350,186,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14351,187,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14352,188,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14353,189,30,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14354,171,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14355,172,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14356,173,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14357,174,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14358,175,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14359,176,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14360,177,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14361,178,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14362,179,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14363,180,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14364,181,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14365,182,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14366,183,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14367,184,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14368,185,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14369,186,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14370,187,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14371,188,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14372,189,30,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14373,172,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14374,173,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14375,174,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14376,175,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14377,176,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14378,177,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14379,178,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14380,179,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14381,180,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14382,181,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14383,182,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14384,183,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14385,184,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14386,185,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14387,186,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14388,187,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14389,188,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14390,189,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14391,190,30,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14392,173,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14393,174,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14394,175,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14395,176,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14396,177,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14397,178,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14398,179,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14399,180,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14400,181,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14401,182,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14402,183,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14403,184,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14404,185,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14405,186,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14406,187,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14407,188,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14408,189,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14409,190,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14410,191,30,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14411,173,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14412,174,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14413,175,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14414,176,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14415,177,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14416,178,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14417,179,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14418,180,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14419,181,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14420,182,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14421,183,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14422,184,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14423,185,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14424,186,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14425,187,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14426,188,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14427,189,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14428,190,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14429,191,30,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14430,173,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14431,174,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14432,175,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14433,176,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14434,177,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14435,178,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14436,179,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14437,180,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14438,181,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14439,182,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14440,183,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14441,184,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14442,185,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14443,186,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14444,187,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14445,188,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14446,189,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14447,190,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14448,191,30,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14449,173,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14450,174,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14451,175,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14452,176,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14453,177,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14454,178,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14455,179,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14456,180,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14457,181,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14458,182,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14459,183,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14460,184,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14461,185,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14462,186,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14463,187,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14464,188,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14465,189,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14466,190,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14467,191,30,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14468,174,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14469,175,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14470,176,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14471,177,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14472,178,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14473,179,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14474,180,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14475,181,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14476,182,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14477,183,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14478,184,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14479,185,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14480,186,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14481,187,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14482,188,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14483,189,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14484,190,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14485,191,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14486,192,30,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14487,138,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14488,139,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14489,140,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14490,141,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14491,142,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14492,143,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14493,144,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14494,145,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14495,146,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14496,147,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14497,148,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14498,149,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14499,150,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14500,151,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14501,152,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14502,153,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14503,154,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14504,155,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14505,156,30,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14506,137,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14507,138,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14508,139,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14509,140,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14510,141,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14511,142,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14512,143,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14513,144,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14514,145,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14515,146,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14516,147,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14517,148,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14518,149,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14519,150,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14520,151,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14521,152,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14522,153,30,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14523,100,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14524,101,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14525,102,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14526,103,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14527,104,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14528,105,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14529,106,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14530,107,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14531,108,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14532,109,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14533,110,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14534,111,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14535,112,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14536,113,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14537,114,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14538,115,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14539,116,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14540,117,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14541,118,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14542,119,30,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14543,102,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14544,103,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14545,104,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14546,105,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14547,106,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14548,107,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14549,108,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14550,109,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14551,110,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14552,111,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14553,112,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14554,113,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14555,114,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14556,115,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14557,116,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14558,117,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14559,118,30,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14560,181,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14561,182,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14562,183,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14563,184,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14564,185,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14565,186,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14566,187,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14567,188,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14568,189,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14569,190,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14570,191,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14571,192,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14572,193,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14573,194,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14574,195,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14575,196,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14576,197,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14577,198,31,1,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14578,181,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14579,182,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14580,183,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14581,184,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14582,185,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14583,186,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14584,187,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14585,188,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14586,189,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14587,190,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14588,191,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14589,192,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14590,193,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14591,194,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14592,195,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14593,196,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14594,197,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14595,198,31,2,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14596,182,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14597,183,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14598,184,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14599,185,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14600,186,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14601,187,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14602,188,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14603,189,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14604,190,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14605,191,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14606,192,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14607,193,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14608,194,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14609,195,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14610,196,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14611,197,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14612,198,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14613,199,31,3,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14614,187,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14615,188,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14616,189,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14617,190,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14618,191,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14619,192,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14620,193,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14621,194,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14622,195,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14623,196,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14624,197,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14625,198,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14626,199,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14627,200,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14628,201,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14629,202,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14630,203,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14631,204,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14632,205,31,4,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14633,188,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14634,189,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14635,190,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14636,191,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14637,192,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14638,193,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14639,194,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14640,195,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14641,196,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14642,197,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14643,198,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14644,199,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14645,200,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14646,201,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14647,202,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14648,203,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14649,204,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14650,205,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14651,206,31,5,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14652,189,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14653,190,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14654,191,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14655,192,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14656,193,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14657,194,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14658,195,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14659,196,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14660,197,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14661,198,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14662,199,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14663,200,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14664,201,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14665,202,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14666,203,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14667,204,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14668,205,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14669,206,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14670,207,31,6,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14671,190,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14672,191,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14673,192,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14674,193,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14675,194,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14676,195,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14677,196,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14678,197,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14679,198,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14680,199,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14681,200,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14682,201,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14683,202,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14684,203,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14685,204,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14686,205,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14687,206,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14688,207,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14689,208,31,7,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14690,190,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14691,191,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14692,192,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14693,193,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14694,194,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14695,195,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14696,196,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14697,197,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14698,198,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14699,199,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14700,200,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14701,201,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14702,202,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14703,203,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14704,204,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14705,205,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14706,206,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14707,207,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14708,208,31,8,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14709,191,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14710,192,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14711,193,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14712,194,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14713,195,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14714,196,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14715,197,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14716,198,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14717,199,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14718,200,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14719,201,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14720,202,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14721,203,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14722,204,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14723,205,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14724,206,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14725,207,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14726,208,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14727,209,31,9,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14728,192,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14729,193,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14730,194,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14731,195,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14732,196,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14733,197,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14734,198,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14735,199,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14736,200,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14737,201,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14738,202,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14739,203,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14740,204,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14741,205,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14742,206,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14743,207,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14744,208,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14745,209,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14746,210,31,10,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14747,192,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14748,193,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14749,194,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14750,195,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14751,196,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14752,197,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14753,198,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14754,199,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14755,200,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14756,201,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14757,202,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14758,203,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14759,204,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14760,205,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14761,206,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14762,207,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14763,208,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14764,209,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14765,210,31,11,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14766,192,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14767,193,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14768,194,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14769,195,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14770,196,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14771,197,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14772,198,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14773,199,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14774,200,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14775,201,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14776,202,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14777,203,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14778,204,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14779,205,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14780,206,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14781,207,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14782,208,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14783,209,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14784,210,31,12,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14785,192,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14786,193,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14787,194,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14788,195,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14789,196,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14790,197,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14791,198,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14792,199,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14793,200,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14794,201,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14795,202,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14796,203,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14797,204,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14798,205,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14799,206,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14800,207,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14801,208,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14802,209,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14803,210,31,13,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14804,193,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14805,194,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14806,195,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14807,196,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14808,197,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14809,198,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14810,199,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14811,200,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14812,201,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14813,202,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14814,203,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14815,204,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14816,205,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14817,206,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14818,207,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14819,208,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14820,209,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14821,210,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14822,211,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14823,212,31,14,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14824,157,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14825,158,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14826,159,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14827,160,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14828,161,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14829,162,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14830,163,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14831,164,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14832,165,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14833,166,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14834,167,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14835,168,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14836,169,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14837,170,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14838,171,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14839,172,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14840,173,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14841,174,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14842,175,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14843,176,31,15,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14844,154,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14845,155,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14846,156,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14847,157,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14848,158,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14849,159,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14850,160,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14851,161,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14852,162,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14853,163,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14854,164,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14855,165,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14856,166,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14857,167,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14858,168,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14859,169,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14860,170,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14861,171,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14862,172,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14863,173,31,16,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14864,115,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14865,116,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14866,117,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14867,118,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14868,119,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14869,120,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14870,121,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14871,122,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14872,123,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14873,124,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14874,125,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14875,126,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14876,127,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14877,128,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14878,129,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14879,130,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14880,131,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14881,132,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14882,133,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14883,134,31,18,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14884,115,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14885,116,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14886,117,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14887,118,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14888,119,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14889,120,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14890,121,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14891,122,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14892,123,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14893,124,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14894,125,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14895,126,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14896,127,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14897,128,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14898,129,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14899,130,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14900,131,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14901,132,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14902,133,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14903,134,31,19,1,'2022-09-02 14:23:39','2022-09-02 14:23:39'),(14904,199,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14905,200,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14906,201,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14907,202,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14908,203,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14909,204,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14910,205,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14911,206,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14912,207,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14913,208,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14914,209,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14915,210,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14916,211,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14917,212,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14918,213,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14919,214,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14920,215,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14921,216,32,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14922,199,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14923,200,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14924,201,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14925,202,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14926,203,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14927,204,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14928,205,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14929,206,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14930,207,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14931,208,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14932,209,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14933,210,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14934,211,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14935,212,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14936,213,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14937,214,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14938,215,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14939,216,32,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14940,200,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14941,201,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14942,202,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14943,203,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14944,204,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14945,205,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14946,206,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14947,207,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14948,208,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14949,209,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14950,210,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14951,211,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14952,212,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14953,213,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14954,214,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14955,215,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14956,216,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14957,217,32,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14958,206,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14959,207,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14960,208,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14961,209,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14962,210,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14963,211,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14964,212,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14965,213,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14966,214,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14967,215,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14968,216,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14969,217,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14970,218,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14971,219,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14972,220,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14973,221,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14974,222,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14975,223,32,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14976,207,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14977,208,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14978,209,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14979,210,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14980,211,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14981,212,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14982,213,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14983,214,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14984,215,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14985,216,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14986,217,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14987,218,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14988,219,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14989,220,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14990,221,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14991,222,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14992,223,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14993,224,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14994,225,32,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14995,208,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14996,209,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14997,210,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14998,211,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(14999,212,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15000,213,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15001,214,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15002,215,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15003,216,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15004,217,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15005,218,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15006,219,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15007,220,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15008,221,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15009,222,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15010,223,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15011,224,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15012,225,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15013,226,32,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15014,209,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15015,210,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15016,211,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15017,212,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15018,213,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15019,214,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15020,215,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15021,216,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15022,217,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15023,218,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15024,219,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15025,220,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15026,221,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15027,222,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15028,223,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15029,224,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15030,225,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15031,226,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15032,227,32,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15033,209,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15034,210,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15035,211,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15036,212,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15037,213,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15038,214,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15039,215,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15040,216,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15041,217,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15042,218,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15043,219,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15044,220,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15045,221,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15046,222,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15047,223,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15048,224,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15049,225,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15050,226,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15051,227,32,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15052,210,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15053,211,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15054,212,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15055,213,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15056,214,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15057,215,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15058,216,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15059,217,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15060,218,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15061,219,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15062,220,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15063,221,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15064,222,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15065,223,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15066,224,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15067,225,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15068,226,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15069,227,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15070,228,32,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15071,211,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15072,212,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15073,213,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15074,214,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15075,215,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15076,216,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15077,217,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15078,218,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15079,219,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15080,220,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15081,221,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15082,222,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15083,223,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15084,224,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15085,225,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15086,226,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15087,227,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15088,228,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15089,229,32,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15090,211,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15091,212,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15092,213,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15093,214,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15094,215,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15095,216,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15096,217,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15097,218,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15098,219,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15099,220,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15100,221,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15101,222,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15102,223,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15103,224,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15104,225,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15105,226,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15106,227,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15107,228,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15108,229,32,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15109,211,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15110,212,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15111,213,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15112,214,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15113,215,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15114,216,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15115,217,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15116,218,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15117,219,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15118,220,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15119,221,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15120,222,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15121,223,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15122,224,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15123,225,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15124,226,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15125,227,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15126,228,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15127,229,32,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15128,211,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15129,212,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15130,213,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15131,214,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15132,215,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15133,216,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15134,217,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15135,218,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15136,219,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15137,220,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15138,221,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15139,222,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15140,223,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15141,224,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15142,225,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15143,226,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15144,227,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15145,228,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15146,229,32,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15147,213,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15148,214,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15149,215,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15150,216,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15151,217,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15152,218,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15153,219,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15154,220,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15155,221,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15156,222,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15157,223,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15158,224,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15159,225,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15160,226,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15161,227,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15162,228,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15163,229,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15164,230,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15165,231,32,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15166,177,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15167,178,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15168,179,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15169,180,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15170,181,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15171,182,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15172,183,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15173,184,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15174,185,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15175,186,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15176,187,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15177,188,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15178,189,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15179,190,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15180,191,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15181,192,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15182,193,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15183,194,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15184,195,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15185,196,32,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15186,174,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15187,175,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15188,176,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15189,177,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15190,178,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15191,179,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15192,180,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15193,181,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15194,182,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15195,183,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15196,184,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15197,185,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15198,186,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15199,187,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15200,188,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15201,189,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15202,190,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15203,191,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15204,192,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15205,193,32,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15206,217,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15207,218,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15208,219,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15209,220,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15210,221,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15211,222,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15212,223,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15213,224,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15214,225,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15215,226,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15216,227,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15217,228,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15218,229,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15219,230,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15220,231,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15221,232,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15222,233,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15223,234,33,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15224,217,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15225,218,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15226,219,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15227,220,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15228,221,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15229,222,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15230,223,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15231,224,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15232,225,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15233,226,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15234,227,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15235,228,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15236,229,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15237,230,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15238,231,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15239,232,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15240,233,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15241,234,33,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15242,218,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15243,219,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15244,220,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15245,221,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15246,222,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15247,223,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15248,224,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15249,225,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15250,226,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15251,227,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15252,228,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15253,229,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15254,230,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15255,231,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15256,232,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15257,233,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15258,234,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15259,235,33,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15260,224,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15261,225,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15262,226,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15263,227,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15264,228,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15265,229,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15266,230,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15267,231,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15268,232,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15269,233,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15270,234,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15271,235,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15272,236,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15273,237,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15274,238,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15275,239,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15276,240,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15277,241,33,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15278,226,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15279,227,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15280,228,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15281,229,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15282,230,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15283,231,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15284,232,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15285,233,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15286,234,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15287,235,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15288,236,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15289,237,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15290,238,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15291,239,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15292,240,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15293,241,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15294,242,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15295,243,33,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15296,227,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15297,228,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15298,229,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15299,230,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15300,231,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15301,232,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15302,233,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15303,234,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15304,235,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15305,236,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15306,237,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15307,238,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15308,239,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15309,240,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15310,241,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15311,242,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15312,243,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15313,244,33,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15314,228,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15315,229,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15316,230,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15317,231,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15318,232,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15319,233,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15320,234,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15321,235,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15322,236,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15323,237,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15324,238,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15325,239,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15326,240,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15327,241,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15328,242,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15329,243,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15330,244,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15331,245,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15332,246,33,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15333,228,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15334,229,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15335,230,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15336,231,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15337,232,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15338,233,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15339,234,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15340,235,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15341,236,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15342,237,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15343,238,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15344,239,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15345,240,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15346,241,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15347,242,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15348,243,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15349,244,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15350,245,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15351,246,33,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15352,229,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15353,230,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15354,231,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15355,232,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15356,233,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15357,234,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15358,235,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15359,236,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15360,237,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15361,238,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15362,239,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15363,240,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15364,241,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15365,242,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15366,243,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15367,244,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15368,245,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15369,246,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15370,247,33,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15371,230,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15372,231,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15373,232,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15374,233,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15375,234,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15376,235,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15377,236,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15378,237,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15379,238,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15380,239,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15381,240,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15382,241,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15383,242,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15384,243,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15385,244,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15386,245,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15387,246,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15388,247,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15389,248,33,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15390,230,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15391,231,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15392,232,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15393,233,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15394,234,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15395,235,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15396,236,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15397,237,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15398,238,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15399,239,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15400,240,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15401,241,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15402,242,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15403,243,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15404,244,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15405,245,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15406,246,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15407,247,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15408,248,33,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15409,230,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15410,231,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15411,232,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15412,233,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15413,234,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15414,235,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15415,236,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15416,237,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15417,238,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15418,239,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15419,240,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15420,241,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15421,242,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15422,243,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15423,244,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15424,245,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15425,246,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15426,247,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15427,248,33,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15428,230,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15429,231,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15430,232,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15431,233,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15432,234,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15433,235,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15434,236,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15435,237,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15436,238,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15437,239,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15438,240,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15439,241,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15440,242,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15441,243,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15442,244,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15443,245,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15444,246,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15445,247,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15446,248,33,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15447,232,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15448,233,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15449,234,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15450,235,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15451,236,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15452,237,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15453,238,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15454,239,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15455,240,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15456,241,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15457,242,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15458,243,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15459,244,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15460,245,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15461,246,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15462,247,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15463,248,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15464,249,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15465,250,33,14,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15466,197,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15467,198,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15468,199,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15469,200,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15470,201,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15471,202,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15472,203,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15473,204,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15474,205,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15475,206,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15476,207,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15477,208,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15478,209,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15479,210,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15480,211,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15481,212,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15482,213,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15483,214,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15484,215,33,15,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15485,194,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15486,195,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15487,196,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15488,197,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15489,198,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15490,199,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15491,200,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15492,201,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15493,202,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15494,203,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15495,204,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15496,205,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15497,206,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15498,207,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15499,208,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15500,209,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15501,210,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15502,211,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15503,212,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15504,213,33,16,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15505,135,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15506,136,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15507,137,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15508,138,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15509,139,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15510,140,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15511,141,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15512,142,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15513,143,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15514,144,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15515,145,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15516,146,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15517,147,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15518,148,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15519,149,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15520,150,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15521,151,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15522,152,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15523,153,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15524,154,33,18,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15525,135,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15526,136,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15527,137,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15528,138,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15529,139,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15530,140,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15531,141,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15532,142,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15533,143,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15534,144,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15535,145,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15536,146,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15537,147,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15538,148,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15539,149,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15540,150,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15541,151,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15542,152,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15543,153,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15544,154,33,19,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15545,235,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15546,236,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15547,237,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15548,238,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15549,239,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15550,240,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15551,241,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15552,242,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15553,243,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15554,244,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15555,245,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15556,246,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15557,247,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15558,248,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15559,249,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15560,250,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15561,251,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15562,252,34,1,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15563,235,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15564,236,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15565,237,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15566,238,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15567,239,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15568,240,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15569,241,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15570,242,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15571,243,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15572,244,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15573,245,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15574,246,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15575,247,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15576,248,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15577,249,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15578,250,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15579,251,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15580,252,34,2,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15581,236,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15582,237,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15583,238,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15584,239,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15585,240,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15586,241,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15587,242,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15588,243,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15589,244,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15590,245,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15591,246,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15592,247,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15593,248,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15594,249,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15595,250,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15596,251,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15597,252,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15598,253,34,3,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15599,242,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15600,243,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15601,244,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15602,245,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15603,246,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15604,247,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15605,248,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15606,249,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15607,250,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15608,251,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15609,252,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15610,253,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15611,254,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15612,255,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15613,256,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15614,257,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15615,258,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15616,259,34,4,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15617,244,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15618,245,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15619,246,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15620,247,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15621,248,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15622,249,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15623,250,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15624,251,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15625,252,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15626,253,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15627,254,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15628,255,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15629,256,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15630,257,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15631,258,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15632,259,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15633,260,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15634,261,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15635,262,34,5,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15636,245,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15637,246,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15638,247,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15639,248,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15640,249,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15641,250,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15642,251,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15643,252,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15644,253,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15645,254,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15646,255,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15647,256,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15648,257,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15649,258,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15650,259,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15651,260,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15652,261,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15653,262,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15654,263,34,6,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15655,247,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15656,248,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15657,249,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15658,250,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15659,251,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15660,252,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15661,253,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15662,254,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15663,255,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15664,256,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15665,257,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15666,258,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15667,259,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15668,260,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15669,261,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15670,262,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15671,263,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15672,264,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15673,265,34,7,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15674,247,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15675,248,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15676,249,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15677,250,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15678,251,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15679,252,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15680,253,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15681,254,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15682,255,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15683,256,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15684,257,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15685,258,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15686,259,34,8,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15687,248,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15688,249,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15689,250,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15690,251,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15691,252,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15692,253,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15693,254,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15694,255,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15695,256,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15696,257,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15697,258,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15698,259,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15699,260,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15700,261,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15701,262,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15702,263,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15703,264,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15704,265,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15705,266,34,9,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15706,249,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15707,250,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15708,251,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15709,252,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15710,253,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15711,254,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15712,255,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15713,256,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15714,257,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15715,258,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15716,259,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15717,260,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15718,261,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15719,262,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15720,263,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15721,264,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15722,265,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15723,266,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15724,267,34,10,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15725,249,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15726,250,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15727,251,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15728,252,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15729,253,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15730,254,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15731,255,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15732,256,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15733,257,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15734,258,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15735,259,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15736,260,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15737,261,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15738,262,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15739,263,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15740,264,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15741,265,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15742,266,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15743,267,34,11,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15744,249,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15745,250,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15746,251,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15747,252,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15748,253,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15749,254,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15750,255,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15751,256,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15752,257,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15753,258,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15754,259,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15755,260,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15756,261,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15757,262,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15758,263,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15759,264,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15760,265,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15761,266,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15762,267,34,12,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15763,249,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15764,250,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15765,251,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15766,252,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15767,253,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15768,254,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15769,255,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15770,256,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15771,257,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15772,258,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15773,259,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15774,260,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15775,261,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15776,262,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15777,263,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15778,264,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15779,265,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15780,266,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15781,267,34,13,1,'2022-09-02 14:23:40','2022-09-02 14:23:40'),(15782,251,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15783,252,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15784,253,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15785,254,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15786,255,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15787,256,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15788,257,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15789,258,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15790,259,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15791,260,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15792,261,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15793,262,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15794,263,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15795,264,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15796,265,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15797,266,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15798,267,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15799,268,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15800,269,34,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15801,216,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15802,217,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15803,218,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15804,219,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15805,220,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15806,221,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15807,222,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15808,223,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15809,224,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15810,225,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15811,226,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15812,227,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15813,228,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15814,229,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15815,230,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15816,231,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15817,232,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15818,233,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15819,234,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15820,235,34,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15821,214,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15822,215,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15823,216,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15824,217,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15825,218,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15826,219,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15827,220,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15828,221,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15829,222,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15830,223,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15831,224,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15832,225,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15833,226,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15834,227,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15835,228,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15836,229,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15837,230,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15838,231,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15839,232,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15840,233,34,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15841,155,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15842,156,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15843,157,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15844,158,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15845,159,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15846,160,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15847,161,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15848,162,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15849,163,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15850,164,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15851,165,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15852,166,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15853,167,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15854,168,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15855,169,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15856,170,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15857,171,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15858,172,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15859,173,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15860,174,34,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15861,155,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15862,156,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15863,157,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15864,158,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15865,159,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15866,160,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15867,161,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15868,162,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15869,163,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15870,164,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15871,165,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15872,166,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15873,167,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15874,168,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15875,169,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15876,170,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15877,171,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15878,172,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15879,173,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15880,174,34,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15881,253,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15882,254,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15883,255,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15884,256,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15885,257,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15886,258,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15887,259,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15888,260,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15889,261,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15890,262,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15891,263,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15892,264,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15893,265,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15894,266,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15895,267,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15896,268,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15897,269,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15898,270,35,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15899,253,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15900,254,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15901,255,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15902,256,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15903,257,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15904,258,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15905,259,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15906,260,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15907,261,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15908,262,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15909,263,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15910,264,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15911,265,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15912,266,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15913,267,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15914,268,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15915,269,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15916,270,35,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15917,254,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15918,255,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15919,256,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15920,257,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15921,258,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15922,259,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15923,260,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15924,261,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15925,262,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15926,263,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15927,264,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15928,265,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15929,266,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15930,267,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15931,268,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15932,269,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15933,270,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15934,271,35,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15935,260,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15936,261,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15937,262,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15938,263,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15939,264,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15940,265,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15941,266,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15942,267,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15943,268,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15944,269,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15945,270,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15946,271,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15947,272,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15948,273,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15949,274,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15950,275,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15951,276,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15952,277,35,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15953,263,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15954,264,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15955,265,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15956,266,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15957,267,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15958,268,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15959,269,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15960,270,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15961,271,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15962,272,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15963,273,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15964,274,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15965,275,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15966,276,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15967,277,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15968,278,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15969,279,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15970,280,35,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15971,264,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15972,265,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15973,266,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15974,267,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15975,268,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15976,269,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15977,270,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15978,271,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15979,272,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15980,273,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15981,274,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15982,275,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15983,276,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15984,277,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15985,278,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15986,279,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15987,280,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15988,281,35,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15989,266,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15990,267,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15991,268,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15992,269,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15993,270,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15994,271,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15995,272,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15996,273,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15997,274,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15998,275,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(15999,276,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16000,277,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16001,278,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16002,279,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16003,280,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16004,281,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16005,282,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16006,283,35,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16007,260,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16008,261,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16009,262,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16010,263,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16011,264,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16012,265,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16013,266,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16014,267,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16015,268,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16016,269,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16017,270,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16018,271,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16019,272,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16020,273,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16021,274,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16022,275,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16023,276,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16024,277,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16025,278,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16026,279,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16027,280,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16028,281,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16029,282,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16030,283,35,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16031,267,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16032,268,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16033,269,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16034,270,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16035,271,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16036,272,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16037,273,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16038,274,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16039,275,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16040,276,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16041,277,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16042,278,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16043,279,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16044,280,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16045,281,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16046,282,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16047,283,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16048,284,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16049,285,35,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16050,268,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16051,269,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16052,270,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16053,271,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16054,272,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16055,273,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16056,274,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16057,275,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16058,276,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16059,277,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16060,278,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16061,279,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16062,280,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16063,281,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16064,282,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16065,283,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16066,284,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16067,285,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16068,286,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16069,287,35,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16070,268,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16071,269,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16072,270,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16073,271,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16074,272,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16075,273,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16076,274,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16077,275,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16078,276,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16079,277,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16080,278,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16081,279,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16082,280,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16083,281,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16084,282,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16085,283,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16086,284,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16087,285,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16088,286,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16089,287,35,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16090,268,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16091,269,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16092,270,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16093,271,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16094,272,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16095,273,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16096,274,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16097,275,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16098,276,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16099,277,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16100,278,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16101,279,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16102,280,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16103,281,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16104,282,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16105,283,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16106,284,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16107,285,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16108,286,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16109,287,35,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16110,268,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16111,269,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16112,270,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16113,271,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16114,272,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16115,273,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16116,274,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16117,275,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16118,276,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16119,277,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16120,278,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16121,279,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16122,280,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16123,281,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16124,282,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16125,283,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16126,284,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16127,285,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16128,286,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16129,287,35,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16130,270,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16131,271,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16132,272,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16133,273,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16134,274,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16135,275,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16136,276,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16137,277,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16138,278,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16139,279,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16140,280,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16141,281,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16142,282,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16143,283,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16144,284,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16145,285,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16146,286,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16147,287,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16148,288,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16149,289,35,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16150,236,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16151,237,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16152,238,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16153,239,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16154,240,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16155,241,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16156,242,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16157,243,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16158,244,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16159,245,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16160,246,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16161,247,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16162,248,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16163,249,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16164,250,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16165,251,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16166,252,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16167,253,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16168,254,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16169,255,35,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16170,234,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16171,235,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16172,236,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16173,237,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16174,238,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16175,239,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16176,240,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16177,241,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16178,242,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16179,243,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16180,244,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16181,245,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16182,246,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16183,247,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16184,248,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16185,249,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16186,250,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16187,251,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16188,252,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16189,253,35,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16190,175,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16191,176,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16192,177,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16193,178,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16194,179,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16195,180,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16196,181,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16197,182,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16198,183,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16199,184,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16200,185,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16201,186,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16202,187,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16203,188,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16204,189,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16205,190,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16206,191,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16207,192,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16208,193,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16209,194,35,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16210,175,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16211,176,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16212,177,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16213,178,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16214,179,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16215,180,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16216,181,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16217,182,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16218,183,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16219,184,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16220,185,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16221,186,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16222,187,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16223,188,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16224,189,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16225,190,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16226,191,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16227,192,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16228,193,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16229,194,35,19,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16230,1,36,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16231,2,36,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16232,3,36,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16233,4,36,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16234,5,36,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16235,6,36,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16236,7,36,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16237,8,36,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16238,9,36,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16239,1,36,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16240,2,36,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16241,3,36,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16242,4,36,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16243,5,36,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16244,6,36,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16245,7,36,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16246,8,36,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16247,9,36,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16248,1,36,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16249,2,36,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16250,3,36,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16251,4,36,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16252,5,36,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16253,6,36,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16254,7,36,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16255,8,36,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16256,9,36,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16257,1,36,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16258,2,36,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16259,3,36,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16260,4,36,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16261,5,36,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16262,6,36,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16263,7,36,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16264,8,36,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16265,9,36,4,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16266,1,36,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16267,2,36,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16268,3,36,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16269,4,36,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16270,5,36,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16271,6,36,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16272,7,36,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16273,8,36,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16274,9,36,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16275,1,36,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16276,2,36,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16277,3,36,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16278,4,36,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16279,5,36,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16280,6,36,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16281,7,36,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16282,8,36,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16283,9,36,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16284,1,36,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16285,2,36,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16286,3,36,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16287,4,36,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16288,5,36,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16289,6,36,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16290,7,36,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16291,8,36,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16292,9,36,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16293,10,36,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16294,1,36,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16295,2,36,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16296,3,36,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16297,4,36,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16298,5,36,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16299,6,36,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16300,7,36,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16301,8,36,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16302,9,36,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16303,10,36,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16304,1,36,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16305,2,36,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16306,3,36,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16307,4,36,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16308,5,36,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16309,6,36,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16310,7,36,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16311,8,36,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16312,9,36,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16313,10,36,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16314,1,36,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16315,2,36,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16316,3,36,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16317,4,36,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16318,5,36,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16319,6,36,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16320,7,36,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16321,8,36,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16322,9,36,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16323,10,36,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16324,1,36,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16325,2,36,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16326,3,36,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16327,4,36,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16328,5,36,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16329,6,36,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16330,7,36,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16331,8,36,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16332,9,36,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16333,10,36,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16334,1,36,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16335,2,36,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16336,3,36,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16337,4,36,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16338,5,36,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16339,6,36,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16340,7,36,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16341,8,36,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16342,9,36,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16343,10,36,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16344,1,36,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16345,2,36,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16346,3,36,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16347,4,36,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16348,5,36,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16349,6,36,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16350,7,36,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16351,8,36,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16352,9,36,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16353,10,36,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16354,1,36,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16355,2,36,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16356,3,36,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16357,4,36,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16358,5,36,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16359,6,36,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16360,7,36,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16361,8,36,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16362,9,36,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16363,10,36,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16364,1,36,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16365,2,36,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16366,3,36,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16367,4,36,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16368,5,36,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16369,6,36,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16370,7,36,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16371,8,36,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16372,9,36,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16373,10,36,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16374,1,36,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16375,2,36,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16376,3,36,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16377,4,36,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16378,5,36,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16379,6,36,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16380,7,36,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16381,8,36,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16382,9,36,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16383,10,36,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16384,1,36,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16385,2,36,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16386,3,36,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16387,4,36,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16388,5,36,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16389,6,36,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16390,7,36,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16391,8,36,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16392,9,36,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16393,10,36,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16394,10,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16395,11,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16396,12,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16397,13,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16398,14,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16399,15,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16400,16,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16401,17,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16402,18,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16403,19,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16404,20,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16405,21,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16406,22,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16407,23,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16408,24,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16409,25,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16410,26,37,1,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16411,10,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16412,11,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16413,12,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16414,13,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16415,14,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16416,15,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16417,16,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16418,17,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16419,18,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16420,19,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16421,20,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16422,21,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16423,22,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16424,23,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16425,24,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16426,25,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16427,26,37,2,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16428,10,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16429,11,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16430,12,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16431,13,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16432,14,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16433,15,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16434,16,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16435,17,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16436,18,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16437,19,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16438,20,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16439,21,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16440,22,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16441,23,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16442,24,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16443,25,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16444,26,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16445,27,37,3,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16446,10,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16447,11,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16448,12,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16449,13,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16450,14,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16451,15,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16452,16,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16453,17,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41');
INSERT INTO `seats` VALUES (16454,18,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16455,19,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16456,20,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16457,21,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16458,22,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16459,23,37,5,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16460,10,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16461,11,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16462,12,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16463,13,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16464,14,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16465,15,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16466,16,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16467,17,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16468,18,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16469,19,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16470,20,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16471,21,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16472,22,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16473,23,37,6,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16474,11,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16475,12,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16476,13,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16477,14,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16478,15,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16479,16,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16480,17,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16481,18,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16482,19,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16483,20,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16484,21,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16485,22,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16486,23,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16487,24,37,7,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16488,11,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16489,12,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16490,13,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16491,14,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16492,15,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16493,16,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16494,17,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16495,18,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16496,19,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16497,20,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16498,21,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16499,22,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16500,23,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16501,24,37,8,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16502,11,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16503,12,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16504,13,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16505,14,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16506,15,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16507,16,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16508,17,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16509,18,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16510,19,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16511,20,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16512,21,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16513,22,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16514,23,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16515,24,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16516,25,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16517,26,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16518,27,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16519,28,37,9,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16520,11,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16521,12,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16522,13,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16523,14,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16524,15,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16525,16,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16526,17,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16527,18,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16528,19,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16529,20,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16530,21,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16531,22,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16532,23,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16533,24,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16534,25,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16535,26,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16536,27,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16537,28,37,10,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16538,11,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16539,12,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16540,13,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16541,14,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16542,15,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16543,16,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16544,17,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16545,18,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16546,19,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16547,20,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16548,21,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16549,22,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16550,23,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16551,24,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16552,25,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16553,26,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16554,27,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16555,28,37,11,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16556,11,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16557,12,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16558,13,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16559,14,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16560,15,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16561,16,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16562,17,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16563,18,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16564,19,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16565,20,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16566,21,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16567,22,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16568,23,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16569,24,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16570,25,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16571,26,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16572,27,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16573,28,37,12,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16574,11,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16575,12,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16576,13,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16577,14,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16578,15,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16579,16,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16580,17,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16581,18,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16582,19,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16583,20,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16584,21,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16585,22,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16586,23,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16587,24,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16588,25,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16589,26,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16590,27,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16591,28,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16592,29,37,13,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16593,11,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16594,12,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16595,13,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16596,14,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16597,15,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16598,16,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16599,17,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16600,18,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16601,19,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16602,20,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16603,21,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16604,22,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16605,23,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16606,24,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16607,25,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16608,26,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16609,27,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16610,28,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16611,29,37,14,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16612,11,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16613,12,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16614,13,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16615,14,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16616,15,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16617,16,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16618,17,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16619,18,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16620,19,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16621,20,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16622,21,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16623,22,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16624,23,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16625,24,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16626,25,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16627,26,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16628,27,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16629,28,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16630,29,37,15,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16631,11,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16632,12,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16633,13,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16634,14,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16635,15,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16636,16,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16637,17,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16638,18,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16639,19,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16640,20,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16641,21,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16642,22,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16643,23,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16644,24,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16645,25,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16646,26,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16647,27,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16648,28,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16649,29,37,16,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16650,11,37,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16651,12,37,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16652,13,37,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16653,14,37,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16654,15,37,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16655,16,37,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16656,17,37,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16657,18,37,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16658,19,37,18,1,'2022-09-02 14:23:41','2022-09-02 14:23:41'),(16659,20,37,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16660,21,37,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16661,22,37,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16662,23,37,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16663,24,37,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16664,25,37,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16665,26,37,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16666,27,37,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16667,28,37,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16668,29,37,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16669,27,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16670,28,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16671,29,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16672,30,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16673,31,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16674,32,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16675,33,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16676,34,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16677,35,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16678,36,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16679,37,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16680,38,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16681,39,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16682,40,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16683,41,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16684,42,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16685,43,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16686,44,38,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16687,27,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16688,28,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16689,29,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16690,30,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16691,31,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16692,32,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16693,33,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16694,34,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16695,35,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16696,36,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16697,37,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16698,38,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16699,39,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16700,40,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16701,41,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16702,42,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16703,43,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16704,44,38,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16705,28,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16706,29,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16707,30,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16708,31,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16709,32,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16710,33,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16711,34,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16712,35,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16713,36,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16714,37,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16715,38,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16716,39,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16717,40,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16718,41,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16719,42,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16720,43,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16721,44,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16722,45,38,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16723,24,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16724,25,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16725,26,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16726,27,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16727,28,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16728,29,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16729,30,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16730,31,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16731,32,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16732,33,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16733,34,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16734,35,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16735,36,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16736,37,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16737,38,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16738,39,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16739,40,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16740,41,38,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16741,24,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16742,25,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16743,26,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16744,27,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16745,28,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16746,29,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16747,30,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16748,31,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16749,32,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16750,33,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16751,34,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16752,35,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16753,36,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16754,37,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16755,38,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16756,39,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16757,40,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16758,41,38,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16759,25,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16760,26,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16761,27,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16762,28,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16763,29,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16764,30,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16765,31,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16766,32,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16767,33,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16768,34,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16769,35,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16770,36,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16771,37,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16772,38,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16773,39,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16774,40,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16775,41,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16776,42,38,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16777,25,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16778,26,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16779,27,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16780,28,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16781,29,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16782,30,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16783,31,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16784,32,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16785,33,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16786,34,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16787,35,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16788,36,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16789,37,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16790,38,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16791,39,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16792,40,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16793,41,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16794,42,38,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16795,29,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16796,30,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16797,31,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16798,32,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16799,33,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16800,34,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16801,35,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16802,36,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16803,37,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16804,38,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16805,39,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16806,40,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16807,41,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16808,42,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16809,43,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16810,44,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16811,45,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16812,46,38,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16813,29,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16814,30,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16815,31,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16816,32,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16817,33,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16818,34,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16819,35,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16820,36,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16821,37,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16822,38,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16823,39,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16824,40,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16825,41,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16826,42,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16827,43,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16828,44,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16829,45,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16830,46,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16831,47,38,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16832,29,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16833,30,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16834,31,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16835,32,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16836,33,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16837,34,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16838,35,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16839,36,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16840,37,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16841,38,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16842,39,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16843,40,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16844,41,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16845,42,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16846,43,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16847,44,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16848,45,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16849,46,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16850,47,38,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16851,29,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16852,30,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16853,31,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16854,32,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16855,33,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16856,34,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16857,35,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16858,36,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16859,37,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16860,38,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16861,39,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16862,40,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16863,41,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16864,42,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16865,43,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16866,44,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16867,45,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16868,46,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16869,47,38,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16870,30,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16871,31,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16872,32,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16873,33,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16874,34,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16875,35,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16876,36,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16877,37,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16878,38,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16879,39,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16880,40,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16881,41,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16882,42,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16883,43,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16884,44,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16885,45,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16886,46,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16887,47,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16888,48,38,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16889,30,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16890,31,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16891,32,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16892,33,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16893,34,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16894,35,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16895,36,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16896,37,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16897,38,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16898,39,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16899,40,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16900,41,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16901,42,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16902,43,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16903,44,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16904,45,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16905,46,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16906,47,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16907,48,38,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16908,30,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16909,31,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16910,32,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16911,33,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16912,34,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16913,35,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16914,36,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16915,37,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16916,38,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16917,39,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16918,40,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16919,41,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16920,42,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16921,43,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16922,44,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16923,45,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16924,46,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16925,47,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16926,48,38,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16927,30,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16928,31,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16929,32,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16930,33,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16931,34,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16932,35,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16933,36,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16934,37,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16935,38,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16936,39,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16937,40,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16938,41,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16939,42,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16940,43,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16941,44,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16942,45,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16943,46,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16944,47,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16945,48,38,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16946,30,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16947,31,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16948,32,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16949,33,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16950,34,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16951,35,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16952,36,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16953,37,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16954,38,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16955,39,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16956,40,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16957,41,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16958,42,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16959,43,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16960,44,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16961,45,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16962,46,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16963,47,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16964,48,38,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16965,45,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16966,46,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16967,47,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16968,48,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16969,49,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16970,50,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16971,51,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16972,52,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16973,53,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16974,54,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16975,55,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16976,56,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16977,57,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16978,58,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16979,59,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16980,60,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16981,61,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16982,62,39,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16983,45,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16984,46,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16985,47,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16986,48,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16987,49,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16988,50,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16989,51,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16990,52,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16991,53,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16992,54,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16993,55,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16994,56,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16995,57,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16996,58,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16997,59,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16998,60,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(16999,61,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17000,62,39,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17001,46,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17002,47,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17003,48,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17004,49,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17005,50,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17006,51,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17007,52,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17008,53,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17009,54,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17010,55,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17011,56,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17012,57,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17013,58,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17014,59,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17015,60,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17016,61,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17017,62,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17018,63,39,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17019,42,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17020,43,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17021,44,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17022,45,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17023,46,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17024,47,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17025,48,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17026,49,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17027,50,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17028,51,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17029,52,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17030,53,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17031,54,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17032,55,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17033,56,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17034,57,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17035,58,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17036,59,39,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17037,42,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17038,43,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17039,44,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17040,45,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17041,46,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17042,47,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17043,48,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17044,49,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17045,50,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17046,51,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17047,52,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17048,53,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17049,54,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17050,55,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17051,56,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17052,57,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17053,58,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17054,59,39,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17055,43,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17056,44,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17057,45,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17058,46,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17059,47,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17060,48,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17061,49,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17062,50,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17063,51,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17064,52,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17065,53,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17066,54,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17067,55,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17068,56,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17069,57,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17070,58,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17071,59,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17072,60,39,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17073,43,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17074,44,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17075,45,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17076,46,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17077,47,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17078,48,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17079,49,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17080,50,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17081,51,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17082,52,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17083,53,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17084,54,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17085,55,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17086,56,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17087,57,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17088,58,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17089,59,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17090,60,39,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17091,47,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17092,48,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17093,49,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17094,50,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17095,51,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17096,52,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17097,53,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17098,54,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17099,55,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17100,56,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17101,57,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17102,58,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17103,59,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17104,60,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17105,61,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17106,62,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17107,63,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17108,64,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17109,65,39,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17110,48,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17111,49,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17112,50,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17113,51,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17114,52,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17115,53,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17116,54,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17117,55,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17118,56,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17119,57,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17120,58,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17121,59,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17122,60,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17123,61,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17124,62,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17125,63,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17126,64,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17127,65,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17128,66,39,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17129,48,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17130,49,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17131,50,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17132,51,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17133,52,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17134,53,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17135,54,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17136,55,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17137,56,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17138,57,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17139,58,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17140,59,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17141,60,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17142,61,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17143,62,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17144,63,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17145,64,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17146,65,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17147,66,39,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17148,48,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17149,49,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17150,50,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17151,51,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17152,52,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17153,53,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17154,54,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17155,55,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17156,56,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17157,57,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17158,58,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17159,59,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17160,60,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17161,61,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17162,62,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17163,63,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17164,64,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17165,65,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17166,66,39,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17167,49,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17168,50,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17169,51,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17170,52,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17171,53,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17172,54,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17173,55,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17174,56,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17175,57,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17176,58,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17177,59,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17178,60,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17179,61,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17180,62,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17181,63,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17182,64,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17183,65,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17184,66,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17185,67,39,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17186,49,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17187,50,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17188,51,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17189,52,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17190,53,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17191,54,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17192,55,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17193,56,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17194,57,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17195,58,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17196,59,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17197,60,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17198,61,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17199,62,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17200,63,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17201,64,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17202,65,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17203,66,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17204,67,39,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17205,49,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17206,50,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17207,51,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17208,52,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17209,53,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17210,54,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17211,55,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17212,56,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17213,57,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17214,58,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17215,59,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17216,60,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17217,61,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17218,62,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17219,63,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17220,64,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17221,65,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17222,66,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17223,67,39,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17224,49,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17225,50,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17226,51,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17227,52,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17228,53,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17229,54,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17230,55,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17231,56,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17232,57,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17233,58,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17234,59,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17235,60,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17236,61,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17237,62,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17238,63,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17239,64,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17240,65,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17241,66,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17242,67,39,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17243,49,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17244,50,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17245,51,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17246,52,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17247,53,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17248,54,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17249,55,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17250,56,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17251,57,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17252,58,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17253,59,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17254,60,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17255,61,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17256,62,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17257,63,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17258,64,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17259,65,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17260,66,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17261,67,39,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17262,63,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17263,64,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17264,65,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17265,66,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17266,67,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17267,68,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17268,69,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17269,70,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17270,71,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17271,72,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17272,73,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17273,74,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17274,75,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17275,76,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17276,77,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17277,78,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17278,79,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17279,80,40,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17280,63,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17281,64,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17282,65,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17283,66,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17284,67,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17285,68,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17286,69,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17287,70,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17288,71,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17289,72,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17290,73,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17291,74,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17292,75,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17293,76,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17294,77,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17295,78,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17296,79,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17297,80,40,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17298,64,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17299,65,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17300,66,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17301,67,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17302,68,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17303,69,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17304,70,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17305,71,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17306,72,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17307,73,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17308,74,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17309,75,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17310,76,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17311,77,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17312,78,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17313,79,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17314,80,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17315,81,40,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17316,60,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17317,61,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17318,62,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17319,63,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17320,64,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17321,65,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17322,66,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17323,67,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17324,68,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17325,69,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17326,70,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17327,71,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17328,72,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17329,73,40,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17330,60,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17331,61,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17332,62,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17333,63,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17334,64,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17335,65,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17336,66,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17337,67,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17338,68,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17339,69,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17340,70,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17341,71,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17342,72,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17343,73,40,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17344,61,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17345,62,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17346,63,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17347,64,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17348,65,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17349,66,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17350,67,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17351,68,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17352,69,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17353,70,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17354,71,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17355,72,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17356,73,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17357,74,40,7,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17358,61,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17359,62,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17360,63,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17361,64,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17362,65,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17363,66,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17364,67,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17365,68,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17366,69,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17367,70,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17368,71,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17369,72,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17370,73,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17371,74,40,8,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17372,66,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17373,67,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17374,68,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17375,69,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17376,70,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17377,71,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17378,72,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17379,73,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17380,74,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17381,75,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17382,76,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17383,77,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17384,78,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17385,79,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17386,80,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17387,81,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17388,82,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17389,83,40,9,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17390,67,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17391,68,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17392,69,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17393,70,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17394,71,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17395,72,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17396,73,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17397,74,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17398,75,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17399,76,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17400,77,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17401,78,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17402,79,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17403,80,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17404,81,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17405,82,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17406,83,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17407,84,40,10,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17408,67,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17409,68,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17410,69,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17411,70,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17412,71,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17413,72,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17414,73,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17415,74,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17416,75,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17417,76,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17418,77,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17419,78,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17420,79,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17421,80,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17422,81,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17423,82,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17424,83,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17425,84,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17426,85,40,11,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17427,67,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17428,68,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17429,69,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17430,70,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17431,71,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17432,72,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17433,73,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17434,74,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17435,75,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17436,76,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17437,77,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17438,78,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17439,79,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17440,80,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17441,81,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17442,82,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17443,83,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17444,84,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17445,85,40,12,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17446,68,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17447,69,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17448,70,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17449,71,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17450,72,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17451,73,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17452,74,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17453,75,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17454,76,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17455,77,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17456,78,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17457,79,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17458,80,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17459,81,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17460,82,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17461,83,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17462,84,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17463,85,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17464,86,40,13,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17465,68,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17466,69,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17467,70,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17468,71,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17469,72,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17470,73,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17471,74,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17472,75,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17473,76,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17474,77,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17475,78,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17476,79,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17477,80,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17478,81,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17479,82,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17480,83,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17481,84,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17482,85,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17483,86,40,14,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17484,68,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17485,69,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17486,70,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17487,71,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17488,72,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17489,73,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17490,74,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17491,75,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17492,76,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17493,77,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17494,78,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17495,79,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17496,80,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17497,81,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17498,82,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17499,83,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17500,84,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17501,85,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17502,86,40,15,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17503,68,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17504,69,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17505,70,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17506,71,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17507,72,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17508,73,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17509,74,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17510,75,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17511,76,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17512,77,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17513,78,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17514,79,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17515,80,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17516,81,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17517,82,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17518,83,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17519,84,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17520,85,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17521,86,40,16,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17522,68,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17523,69,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17524,70,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17525,71,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17526,72,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17527,73,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17528,74,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17529,75,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17530,76,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17531,77,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17532,78,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17533,79,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17534,80,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17535,81,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17536,82,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17537,83,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17538,84,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17539,85,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17540,86,40,18,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17541,81,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17542,82,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17543,83,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17544,84,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17545,85,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17546,86,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17547,87,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17548,88,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17549,89,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17550,90,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17551,91,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17552,92,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17553,93,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17554,94,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17555,95,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17556,96,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17557,97,41,1,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17558,81,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17559,82,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17560,83,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17561,84,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17562,85,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17563,86,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17564,87,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17565,88,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17566,89,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17567,90,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17568,91,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17569,92,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17570,93,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17571,94,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17572,95,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17573,96,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17574,97,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17575,98,41,2,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17576,82,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17577,83,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17578,84,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17579,85,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17580,86,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17581,87,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17582,88,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17583,89,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17584,90,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17585,91,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17586,92,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17587,93,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17588,94,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17589,95,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17590,96,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17591,97,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17592,98,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17593,99,41,3,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17594,74,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17595,75,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17596,76,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17597,77,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17598,78,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17599,79,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17600,80,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17601,81,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17602,82,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17603,83,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17604,84,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17605,85,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17606,86,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17607,87,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17608,88,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17609,89,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17610,90,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17611,91,41,5,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17612,74,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17613,75,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17614,76,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17615,77,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17616,78,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17617,79,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17618,80,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17619,81,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17620,82,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17621,83,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17622,84,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17623,85,41,6,1,'2022-09-02 14:23:42','2022-09-02 14:23:42'),(17624,86,41,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17625,87,41,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17626,88,41,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17627,89,41,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17628,90,41,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17629,91,41,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17630,75,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17631,76,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17632,77,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17633,78,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17634,79,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17635,80,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17636,81,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17637,82,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17638,83,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17639,84,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17640,85,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17641,86,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17642,87,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17643,88,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17644,89,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17645,90,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17646,91,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17647,92,41,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17648,75,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17649,76,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17650,77,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17651,78,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17652,79,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17653,80,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17654,81,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17655,82,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17656,83,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17657,84,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17658,85,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17659,86,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17660,87,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17661,88,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17662,89,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17663,90,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17664,91,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17665,92,41,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17666,84,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17667,85,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17668,86,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17669,87,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17670,88,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17671,89,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17672,90,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17673,91,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17674,92,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17675,93,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17676,94,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17677,95,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17678,96,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17679,97,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17680,98,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17681,99,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17682,100,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17683,101,41,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17684,85,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17685,86,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17686,87,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17687,88,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17688,89,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17689,90,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17690,91,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17691,92,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17692,93,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17693,94,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17694,95,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17695,96,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17696,97,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17697,98,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17698,99,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17699,100,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17700,101,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17701,102,41,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17702,86,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17703,87,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17704,88,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17705,89,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17706,90,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17707,91,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17708,92,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17709,93,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17710,94,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17711,95,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17712,96,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17713,97,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17714,98,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17715,99,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17716,100,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17717,101,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17718,102,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17719,103,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17720,104,41,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17721,86,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17722,87,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17723,88,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17724,89,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17725,90,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17726,91,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17727,92,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17728,93,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17729,94,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17730,95,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17731,96,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17732,97,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17733,98,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17734,99,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17735,100,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17736,101,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17737,102,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17738,103,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17739,104,41,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17740,87,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17741,88,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17742,89,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17743,90,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17744,91,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17745,92,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17746,93,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17747,94,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17748,95,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17749,96,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17750,97,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17751,98,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17752,99,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17753,100,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17754,101,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17755,102,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17756,103,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17757,104,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17758,105,41,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17759,87,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17760,88,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17761,89,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17762,90,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17763,91,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17764,92,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17765,93,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17766,94,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17767,95,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17768,96,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17769,97,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17770,98,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17771,99,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17772,100,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17773,101,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17774,102,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17775,103,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17776,104,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17777,105,41,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17778,87,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17779,88,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17780,89,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17781,90,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17782,91,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17783,92,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17784,93,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17785,94,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17786,95,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17787,96,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17788,97,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17789,98,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17790,99,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17791,100,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17792,101,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17793,102,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17794,103,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17795,104,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17796,105,41,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17797,87,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17798,88,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17799,89,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17800,90,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17801,91,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17802,92,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17803,93,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17804,94,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17805,95,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17806,96,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17807,97,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17808,98,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17809,99,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17810,100,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17811,101,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17812,102,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17813,103,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17814,104,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17815,105,41,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17816,87,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17817,88,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17818,89,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17819,90,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17820,91,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17821,92,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17822,93,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17823,94,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17824,95,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17825,96,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17826,97,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17827,98,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17828,99,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17829,100,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17830,101,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17831,102,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17832,103,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17833,104,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17834,105,41,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17835,98,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17836,99,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17837,100,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17838,101,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17839,102,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17840,103,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17841,104,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17842,105,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17843,106,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17844,107,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17845,108,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17846,109,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17847,110,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17848,111,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17849,112,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17850,113,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17851,114,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17852,115,42,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17853,99,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17854,100,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17855,101,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17856,102,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17857,103,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17858,104,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17859,105,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17860,106,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17861,107,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17862,108,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17863,109,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17864,110,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17865,111,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17866,112,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17867,113,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17868,114,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17869,115,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17870,116,42,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17871,100,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17872,101,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17873,102,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17874,103,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17875,104,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17876,105,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17877,106,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17878,107,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17879,108,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17880,109,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17881,110,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17882,111,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17883,112,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17884,113,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17885,114,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17886,115,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17887,116,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17888,117,42,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17889,92,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17890,93,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17891,94,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17892,95,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17893,96,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17894,97,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17895,98,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17896,99,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17897,100,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17898,101,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17899,102,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17900,103,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17901,104,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17902,105,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17903,106,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17904,107,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17905,108,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17906,109,42,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17907,92,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17908,93,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17909,94,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17910,95,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17911,96,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17912,97,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17913,98,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17914,99,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17915,100,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17916,101,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17917,102,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17918,103,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17919,104,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17920,105,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17921,106,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17922,107,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17923,108,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17924,109,42,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17925,93,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17926,94,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17927,95,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17928,96,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17929,97,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17930,98,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17931,99,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17932,100,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17933,101,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17934,102,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17935,103,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17936,104,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17937,105,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17938,106,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17939,107,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17940,108,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17941,109,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17942,110,42,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17943,93,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17944,94,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17945,95,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17946,96,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17947,97,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17948,98,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17949,99,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17950,100,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17951,101,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17952,102,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17953,103,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17954,104,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17955,105,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17956,106,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17957,107,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17958,108,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17959,109,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17960,110,42,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17961,102,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17962,103,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17963,104,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17964,105,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17965,106,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17966,107,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17967,108,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17968,109,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17969,110,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17970,111,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17971,112,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17972,113,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17973,114,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17974,115,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17975,116,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17976,117,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17977,118,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17978,119,42,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17979,103,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17980,104,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17981,105,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17982,106,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17983,107,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17984,108,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17985,109,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17986,110,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17987,111,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17988,112,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17989,113,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17990,114,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17991,115,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17992,116,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17993,117,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17994,118,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17995,119,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17996,120,42,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17997,105,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17998,106,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(17999,107,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18000,108,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18001,109,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18002,110,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18003,111,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18004,112,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18005,113,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18006,114,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18007,115,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18008,116,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18009,117,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18010,118,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18011,119,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18012,120,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18013,121,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18014,122,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18015,123,42,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18016,105,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18017,106,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18018,107,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18019,108,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18020,109,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18021,110,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18022,111,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18023,112,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18024,113,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18025,114,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18026,115,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18027,116,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18028,117,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18029,118,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18030,119,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18031,120,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18032,121,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18033,122,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18034,123,42,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18035,106,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18036,107,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18037,108,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18038,109,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18039,110,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18040,111,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18041,112,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18042,113,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18043,114,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18044,115,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18045,116,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18046,117,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18047,118,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18048,119,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18049,120,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18050,121,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18051,122,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18052,123,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18053,124,42,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18054,106,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18055,107,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18056,108,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18057,109,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18058,110,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18059,111,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18060,112,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18061,113,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18062,114,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18063,115,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18064,116,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18065,117,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18066,118,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18067,119,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18068,120,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18069,121,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18070,122,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18071,123,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18072,124,42,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18073,106,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18074,107,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18075,108,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18076,109,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18077,110,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18078,111,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18079,112,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18080,113,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18081,114,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18082,115,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18083,116,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18084,117,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18085,118,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18086,119,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18087,120,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18088,121,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18089,122,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18090,123,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18091,124,42,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18092,106,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18093,107,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18094,108,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18095,109,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18096,110,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18097,111,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18098,112,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18099,113,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18100,114,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18101,115,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18102,116,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18103,117,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18104,118,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18105,119,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18106,120,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18107,121,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18108,122,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18109,123,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18110,124,42,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18111,106,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18112,107,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18113,108,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18114,109,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18115,110,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18116,111,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18117,112,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18118,113,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18119,114,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18120,115,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18121,116,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18122,117,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18123,118,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18124,119,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18125,120,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18126,121,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18127,122,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18128,123,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18129,124,42,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18130,116,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18131,117,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18132,118,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18133,119,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18134,120,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18135,121,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18136,122,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18137,123,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18138,124,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18139,125,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18140,126,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18141,127,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18142,128,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18143,129,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18144,130,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18145,131,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18146,132,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18147,133,43,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18148,117,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18149,118,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18150,119,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18151,120,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18152,121,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18153,122,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18154,123,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18155,124,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18156,125,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18157,126,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18158,127,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18159,128,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18160,129,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18161,130,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18162,131,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18163,132,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18164,133,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18165,134,43,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18166,118,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18167,119,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18168,120,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18169,121,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18170,122,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18171,123,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18172,124,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18173,125,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18174,126,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18175,127,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18176,128,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18177,129,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18178,130,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18179,131,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18180,132,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18181,133,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18182,134,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18183,135,43,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18184,110,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18185,111,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18186,112,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18187,113,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18188,114,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18189,115,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18190,116,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18191,117,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18192,118,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18193,119,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18194,120,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18195,121,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18196,122,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18197,123,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18198,124,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18199,125,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18200,126,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18201,127,43,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18202,110,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18203,111,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18204,112,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18205,113,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18206,114,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18207,115,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18208,116,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18209,117,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18210,118,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18211,119,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18212,120,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18213,121,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18214,122,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18215,123,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18216,124,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18217,125,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18218,126,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18219,127,43,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18220,111,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18221,112,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18222,113,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18223,114,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18224,115,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18225,116,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18226,117,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18227,118,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18228,119,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18229,120,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18230,121,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18231,122,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18232,123,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18233,124,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18234,125,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18235,126,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18236,127,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18237,128,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18238,129,43,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18239,111,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18240,112,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18241,113,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18242,114,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18243,115,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18244,116,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18245,117,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18246,118,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18247,119,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18248,120,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18249,121,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18250,122,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18251,123,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18252,124,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18253,125,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18254,126,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18255,127,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18256,128,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18257,129,43,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18258,120,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18259,121,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18260,122,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18261,123,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18262,124,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18263,125,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18264,126,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18265,127,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18266,128,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18267,129,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18268,130,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18269,131,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18270,132,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18271,133,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18272,134,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18273,135,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18274,136,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18275,137,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18276,138,43,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18277,121,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18278,122,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18279,123,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18280,124,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18281,125,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18282,126,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18283,127,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18284,128,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18285,129,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18286,130,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18287,131,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18288,132,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18289,133,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18290,134,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18291,135,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18292,136,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18293,137,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18294,138,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18295,139,43,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18296,124,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18297,125,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18298,126,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18299,127,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18300,128,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18301,129,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18302,130,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18303,131,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18304,132,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18305,133,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18306,134,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18307,135,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18308,136,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18309,137,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18310,138,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18311,139,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18312,140,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18313,141,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18314,142,43,11,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18315,124,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18316,125,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18317,126,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18318,127,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18319,128,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18320,129,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18321,130,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18322,131,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18323,132,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18324,133,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18325,134,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18326,135,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18327,136,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18328,137,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18329,138,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18330,139,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18331,140,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18332,141,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18333,142,43,12,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18334,125,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18335,126,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18336,127,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18337,128,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18338,129,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18339,130,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18340,131,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18341,132,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18342,133,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18343,134,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18344,135,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18345,136,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18346,137,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18347,138,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18348,139,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18349,140,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18350,141,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18351,142,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18352,143,43,13,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18353,125,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18354,126,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18355,127,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18356,128,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18357,129,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18358,130,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18359,131,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18360,132,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18361,133,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18362,134,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18363,135,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18364,136,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18365,137,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18366,138,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18367,139,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18368,140,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18369,141,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18370,142,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18371,143,43,14,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18372,125,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18373,126,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18374,127,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18375,128,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18376,129,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18377,130,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18378,131,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18379,132,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18380,133,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18381,134,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18382,135,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18383,136,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18384,137,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18385,138,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18386,139,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18387,140,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18388,141,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18389,142,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18390,143,43,15,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18391,125,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18392,126,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18393,127,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18394,128,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18395,129,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18396,130,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18397,131,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18398,132,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18399,133,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18400,134,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18401,135,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18402,136,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18403,137,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18404,138,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18405,139,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18406,140,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18407,141,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18408,142,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18409,143,43,16,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18410,125,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18411,126,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18412,127,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18413,128,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18414,129,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18415,130,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18416,131,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18417,132,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18418,133,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18419,134,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18420,135,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18421,136,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18422,137,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18423,138,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18424,139,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18425,140,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18426,141,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18427,142,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18428,143,43,18,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18429,134,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18430,135,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18431,136,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18432,137,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18433,138,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18434,139,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18435,140,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18436,141,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18437,142,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18438,143,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18439,144,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18440,145,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18441,146,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18442,147,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18443,148,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18444,149,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18445,150,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18446,151,44,1,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18447,135,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18448,136,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18449,137,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18450,138,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18451,139,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18452,140,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18453,141,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18454,142,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18455,143,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18456,144,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18457,145,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18458,146,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18459,147,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18460,148,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18461,149,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18462,150,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18463,151,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18464,152,44,2,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18465,136,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18466,137,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18467,138,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18468,139,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18469,140,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18470,141,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18471,142,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18472,143,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18473,144,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18474,145,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18475,146,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18476,147,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18477,148,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18478,149,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18479,150,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18480,151,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18481,152,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18482,153,44,3,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18483,128,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18484,129,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18485,130,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18486,131,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18487,132,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18488,133,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18489,134,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18490,135,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18491,136,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18492,137,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18493,138,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18494,139,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18495,140,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18496,141,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18497,142,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18498,143,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18499,144,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18500,145,44,5,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18501,128,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18502,129,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18503,130,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18504,131,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18505,132,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18506,133,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18507,134,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18508,135,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18509,136,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18510,137,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18511,138,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18512,139,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18513,140,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18514,141,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18515,142,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18516,143,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18517,144,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18518,145,44,6,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18519,130,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18520,131,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18521,132,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18522,133,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18523,134,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18524,135,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18525,136,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18526,137,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18527,138,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18528,139,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18529,140,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18530,141,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18531,142,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18532,143,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18533,144,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18534,145,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18535,146,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18536,147,44,7,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18537,130,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18538,131,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18539,132,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18540,133,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18541,134,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18542,135,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18543,136,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18544,137,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18545,138,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18546,139,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18547,140,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18548,141,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18549,142,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18550,143,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18551,144,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18552,145,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18553,146,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18554,147,44,8,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18555,139,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18556,140,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18557,141,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18558,142,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18559,143,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18560,144,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18561,145,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18562,146,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18563,147,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18564,148,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18565,149,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18566,150,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18567,151,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18568,152,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18569,153,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18570,154,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18571,155,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18572,156,44,9,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18573,140,44,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18574,141,44,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18575,142,44,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18576,143,44,10,1,'2022-09-02 14:23:43','2022-09-02 14:23:43'),(18577,144,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18578,145,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18579,146,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18580,147,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18581,148,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18582,149,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18583,150,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18584,151,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18585,152,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18586,153,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18587,154,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18588,155,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18589,156,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18590,157,44,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18591,143,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18592,144,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18593,145,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18594,146,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18595,147,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18596,148,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18597,149,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18598,150,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18599,151,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18600,152,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18601,153,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18602,154,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18603,155,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18604,156,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18605,157,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18606,158,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18607,159,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18608,160,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18609,161,44,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18610,143,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18611,144,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18612,145,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18613,146,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18614,147,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18615,148,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18616,149,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18617,150,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18618,151,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18619,152,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18620,153,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18621,154,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18622,155,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18623,156,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18624,157,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18625,158,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18626,159,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18627,160,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18628,161,44,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18629,144,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18630,145,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18631,146,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18632,147,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18633,148,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18634,149,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18635,150,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18636,151,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18637,152,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18638,153,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18639,154,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18640,155,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18641,156,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18642,157,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18643,158,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18644,159,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18645,160,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18646,161,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18647,162,44,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18648,144,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18649,145,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18650,146,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18651,147,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18652,148,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18653,149,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18654,150,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18655,151,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18656,152,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18657,153,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18658,154,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18659,155,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18660,156,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18661,157,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18662,158,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18663,159,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18664,160,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18665,161,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18666,162,44,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18667,144,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18668,145,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18669,146,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18670,147,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18671,148,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18672,149,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18673,150,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18674,151,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18675,152,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18676,153,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18677,154,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18678,155,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18679,156,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18680,157,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18681,158,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18682,159,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18683,160,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18684,161,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18685,162,44,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18686,144,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18687,145,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18688,146,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18689,147,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18690,148,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18691,149,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18692,150,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18693,151,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18694,152,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18695,153,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18696,154,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18697,155,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18698,156,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18699,157,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18700,158,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18701,159,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18702,160,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18703,161,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18704,162,44,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18705,144,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18706,145,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18707,146,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18708,147,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18709,148,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18710,149,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18711,150,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18712,151,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18713,152,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18714,153,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18715,154,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18716,155,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18717,156,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18718,157,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18719,158,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18720,159,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18721,160,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18722,161,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18723,162,44,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18724,152,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18725,153,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18726,154,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18727,155,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18728,156,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18729,157,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18730,158,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18731,159,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18732,160,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18733,161,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18734,162,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18735,163,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18736,164,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18737,165,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18738,166,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18739,167,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18740,168,45,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18741,153,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18742,154,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18743,155,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18744,156,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18745,157,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18746,158,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18747,159,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18748,160,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18749,161,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18750,162,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18751,163,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18752,164,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18753,165,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18754,166,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18755,167,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18756,168,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18757,169,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18758,170,45,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18759,154,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18760,155,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18761,156,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18762,157,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18763,158,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18764,159,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18765,160,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18766,161,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18767,162,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18768,163,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18769,164,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18770,165,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18771,166,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18772,167,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18773,168,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18774,169,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18775,170,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18776,171,45,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18777,146,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18778,147,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18779,148,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18780,149,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18781,150,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18782,151,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18783,152,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18784,153,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18785,154,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18786,155,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18787,156,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18788,157,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18789,158,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18790,159,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18791,160,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18792,161,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18793,162,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18794,163,45,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18795,146,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18796,147,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18797,148,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18798,149,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18799,150,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18800,151,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18801,152,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18802,153,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18803,154,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18804,155,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18805,156,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18806,157,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18807,158,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18808,159,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18809,160,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18810,161,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18811,162,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18812,163,45,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18813,148,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18814,149,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18815,150,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18816,151,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18817,152,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18818,153,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18819,154,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18820,155,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18821,156,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18822,157,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18823,158,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18824,159,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18825,160,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18826,161,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18827,162,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18828,163,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18829,164,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18830,165,45,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18831,148,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18832,149,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18833,150,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18834,151,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18835,152,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18836,153,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18837,154,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18838,155,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18839,156,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18840,157,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18841,158,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18842,159,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18843,160,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18844,161,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18845,162,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18846,163,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18847,164,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18848,165,45,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18849,157,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18850,158,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18851,159,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18852,160,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18853,161,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18854,162,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18855,163,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18856,164,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18857,165,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18858,166,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18859,167,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18860,168,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18861,169,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18862,170,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18863,171,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18864,172,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18865,173,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18866,174,45,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18867,158,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18868,159,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18869,160,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18870,161,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18871,162,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18872,163,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18873,164,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18874,165,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18875,166,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18876,167,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18877,168,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18878,169,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18879,170,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18880,171,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18881,172,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18882,173,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18883,174,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18884,175,45,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18885,162,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18886,163,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18887,164,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18888,165,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18889,166,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18890,167,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18891,168,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18892,169,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18893,170,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18894,171,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18895,172,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18896,173,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18897,174,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18898,175,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18899,176,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18900,177,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18901,178,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18902,179,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18903,180,45,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18904,162,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18905,163,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18906,164,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18907,165,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18908,166,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18909,167,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18910,168,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18911,169,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18912,170,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18913,171,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18914,172,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18915,173,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18916,174,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18917,175,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18918,176,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18919,177,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18920,178,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18921,179,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18922,180,45,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18923,163,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18924,164,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18925,165,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18926,166,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18927,167,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18928,168,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18929,169,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18930,170,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18931,171,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18932,172,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18933,173,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18934,174,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18935,175,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18936,176,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18937,177,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18938,178,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18939,179,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18940,180,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18941,181,45,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18942,163,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18943,164,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18944,165,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18945,166,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18946,167,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18947,168,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18948,169,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18949,170,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18950,171,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18951,172,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18952,173,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18953,174,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18954,175,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18955,176,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18956,177,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18957,178,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18958,179,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18959,180,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18960,181,45,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18961,163,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18962,164,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18963,165,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18964,166,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18965,167,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18966,168,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18967,169,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18968,170,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18969,171,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18970,172,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18971,173,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18972,174,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18973,175,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18974,176,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18975,177,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18976,178,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18977,179,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18978,180,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18979,181,45,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18980,163,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18981,164,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18982,165,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18983,166,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18984,167,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18985,168,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18986,169,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18987,170,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18988,171,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18989,172,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18990,173,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18991,174,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18992,175,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18993,176,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18994,177,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18995,178,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18996,179,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18997,180,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18998,181,45,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(18999,163,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19000,164,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19001,165,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19002,166,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19003,167,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19004,168,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19005,169,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19006,170,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19007,171,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19008,172,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19009,173,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19010,174,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19011,175,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19012,176,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19013,177,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19014,178,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19015,179,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19016,180,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19017,181,45,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19018,169,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19019,170,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19020,171,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19021,172,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19022,173,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19023,174,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19024,175,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19025,176,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19026,177,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19027,178,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19028,179,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19029,180,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19030,181,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19031,182,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19032,183,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19033,184,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19034,185,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19035,186,46,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19036,171,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19037,172,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19038,173,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19039,174,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19040,175,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19041,176,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19042,177,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19043,178,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19044,179,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19045,180,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19046,181,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19047,182,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19048,183,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19049,184,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19050,185,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19051,186,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19052,187,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19053,188,46,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19054,172,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19055,173,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19056,174,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19057,175,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19058,176,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19059,177,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19060,178,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19061,179,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19062,180,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19063,181,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19064,182,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19065,183,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19066,184,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19067,185,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19068,186,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19069,187,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19070,188,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19071,189,46,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19072,164,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19073,165,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19074,166,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19075,167,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19076,168,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19077,169,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19078,170,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19079,171,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19080,172,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19081,173,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19082,174,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19083,175,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19084,176,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19085,177,46,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19086,164,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19087,165,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19088,166,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19089,167,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19090,168,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19091,169,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19092,170,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19093,171,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19094,172,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19095,173,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19096,174,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19097,175,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19098,176,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19099,177,46,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19100,166,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19101,167,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19102,168,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19103,169,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19104,170,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19105,171,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19106,172,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19107,173,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19108,174,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19109,175,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19110,176,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19111,177,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19112,178,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19113,179,46,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19114,166,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19115,167,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19116,168,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19117,169,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19118,170,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19119,171,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19120,172,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19121,173,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19122,174,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19123,175,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19124,176,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19125,177,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19126,178,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19127,179,46,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19128,175,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19129,176,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19130,177,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19131,178,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19132,179,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19133,180,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19134,181,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19135,182,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19136,183,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19137,184,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19138,185,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19139,186,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19140,187,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19141,188,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19142,189,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19143,190,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19144,191,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19145,192,46,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19146,176,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19147,177,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19148,178,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19149,179,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19150,180,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19151,181,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19152,182,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19153,183,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19154,184,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19155,185,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19156,186,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19157,187,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19158,188,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19159,189,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19160,190,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19161,191,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19162,192,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19163,193,46,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19164,181,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19165,182,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19166,183,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19167,184,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19168,185,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19169,186,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19170,187,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19171,188,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19172,189,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19173,190,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19174,191,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19175,192,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19176,193,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19177,194,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19178,195,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19179,196,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19180,197,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19181,198,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19182,199,46,11,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19183,181,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19184,182,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19185,183,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19186,184,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19187,185,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19188,186,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19189,187,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19190,188,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19191,189,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19192,190,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19193,191,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19194,192,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19195,193,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19196,194,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19197,195,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19198,196,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19199,197,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19200,198,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19201,199,46,12,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19202,182,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19203,183,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19204,184,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19205,185,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19206,186,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19207,187,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19208,188,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19209,189,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19210,190,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19211,191,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19212,192,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19213,193,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19214,194,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19215,195,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19216,196,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19217,197,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19218,198,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19219,199,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19220,200,46,13,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19221,182,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19222,183,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19223,184,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19224,185,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19225,186,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19226,187,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19227,188,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19228,189,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19229,190,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19230,191,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19231,192,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19232,193,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19233,194,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19234,195,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19235,196,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19236,197,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19237,198,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19238,199,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19239,200,46,14,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19240,182,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19241,183,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19242,184,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19243,185,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19244,186,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19245,187,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19246,188,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19247,189,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19248,190,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19249,191,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19250,192,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19251,193,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19252,194,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19253,195,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19254,196,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19255,197,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19256,198,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19257,199,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19258,200,46,15,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19259,182,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19260,183,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19261,184,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19262,185,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19263,186,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19264,187,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19265,188,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19266,189,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19267,190,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19268,191,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19269,192,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19270,193,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19271,194,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19272,195,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19273,196,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19274,197,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19275,198,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19276,199,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19277,200,46,16,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19278,182,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19279,183,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19280,184,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19281,185,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19282,186,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19283,187,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19284,188,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19285,189,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19286,190,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19287,191,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19288,192,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19289,193,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19290,194,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19291,195,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19292,196,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19293,197,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19294,198,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19295,199,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19296,200,46,18,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19297,187,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19298,188,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19299,189,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19300,190,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19301,191,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19302,192,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19303,193,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19304,194,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19305,195,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19306,196,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19307,197,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19308,198,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19309,199,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19310,200,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19311,201,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19312,202,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19313,203,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19314,204,47,1,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19315,189,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19316,190,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19317,191,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19318,192,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19319,193,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19320,194,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19321,195,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19322,196,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19323,197,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19324,198,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19325,199,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19326,200,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19327,201,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19328,202,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19329,203,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19330,204,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19331,205,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19332,206,47,2,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19333,190,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19334,191,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19335,192,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19336,193,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19337,194,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19338,195,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19339,196,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19340,197,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19341,198,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19342,199,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19343,200,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19344,201,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19345,202,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19346,203,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19347,204,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19348,205,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19349,206,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19350,207,47,3,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19351,178,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19352,179,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19353,180,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19354,181,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19355,182,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19356,183,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19357,184,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19358,185,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19359,186,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19360,187,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19361,188,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19362,189,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19363,190,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19364,191,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19365,192,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19366,193,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19367,194,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19368,195,47,5,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19369,178,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19370,179,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19371,180,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19372,181,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19373,182,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19374,183,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19375,184,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19376,185,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19377,186,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19378,187,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19379,188,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19380,189,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19381,190,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19382,191,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19383,192,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19384,193,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19385,194,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19386,195,47,6,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19387,180,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19388,181,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19389,182,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19390,183,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19391,184,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19392,185,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19393,186,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19394,187,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19395,188,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19396,189,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19397,190,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19398,191,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19399,192,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19400,193,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19401,194,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19402,195,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19403,196,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19404,197,47,7,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19405,180,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19406,181,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19407,182,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19408,183,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19409,184,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19410,185,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19411,186,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19412,187,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19413,188,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19414,189,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19415,190,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19416,191,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19417,192,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19418,193,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19419,194,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19420,195,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19421,196,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19422,197,47,8,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19423,193,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19424,194,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19425,195,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19426,196,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19427,197,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19428,198,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19429,199,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19430,200,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19431,201,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19432,202,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19433,203,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19434,204,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19435,205,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19436,206,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19437,207,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19438,208,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19439,209,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19440,210,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19441,211,47,9,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19442,194,47,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19443,195,47,10,1,'2022-09-02 14:23:44','2022-09-02 14:23:44'),(19444,196,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19445,197,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19446,198,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19447,199,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19448,200,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19449,201,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19450,202,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19451,203,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19452,204,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19453,205,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19454,206,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19455,207,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19456,208,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19457,209,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19458,210,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19459,211,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19460,212,47,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19461,200,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19462,201,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19463,202,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19464,203,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19465,204,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19466,205,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19467,206,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19468,207,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19469,208,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19470,209,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19471,210,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19472,211,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19473,212,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19474,213,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19475,214,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19476,215,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19477,216,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19478,217,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19479,218,47,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19480,200,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19481,201,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19482,202,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19483,203,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19484,204,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19485,205,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19486,206,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19487,207,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19488,208,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19489,209,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19490,210,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19491,211,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19492,212,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19493,213,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19494,214,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19495,215,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19496,216,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19497,217,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19498,218,47,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19499,201,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19500,202,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19501,203,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19502,204,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19503,205,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19504,206,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19505,207,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19506,208,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19507,209,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19508,210,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19509,211,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19510,212,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19511,213,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19512,214,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19513,215,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19514,216,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19515,217,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19516,218,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19517,219,47,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19518,201,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19519,202,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19520,203,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19521,204,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19522,205,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19523,206,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19524,207,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19525,208,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19526,209,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19527,210,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19528,211,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19529,212,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19530,213,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19531,214,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19532,215,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19533,216,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19534,217,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19535,218,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19536,219,47,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19537,201,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19538,202,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19539,203,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19540,204,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19541,205,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19542,206,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19543,207,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19544,208,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19545,209,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19546,210,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19547,211,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19548,212,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19549,213,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19550,214,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19551,215,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19552,216,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19553,217,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19554,218,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19555,219,47,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19556,201,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19557,202,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19558,203,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19559,204,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19560,205,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19561,206,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19562,207,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19563,208,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19564,209,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19565,210,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19566,211,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19567,212,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19568,213,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19569,214,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19570,215,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19571,216,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19572,217,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19573,218,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19574,219,47,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19575,201,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19576,202,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19577,203,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19578,204,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19579,205,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19580,206,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19581,207,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19582,208,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19583,209,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19584,210,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19585,211,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19586,212,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19587,213,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19588,214,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19589,215,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19590,216,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19591,217,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19592,218,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19593,219,47,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19594,205,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19595,206,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19596,207,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19597,208,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19598,209,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19599,210,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19600,211,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19601,212,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19602,213,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19603,214,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19604,215,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19605,216,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19606,217,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19607,218,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19608,219,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19609,220,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19610,221,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19611,222,48,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19612,207,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19613,208,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19614,209,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19615,210,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19616,211,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19617,212,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19618,213,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19619,214,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19620,215,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19621,216,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19622,217,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19623,218,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19624,219,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19625,220,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19626,221,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19627,222,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19628,223,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19629,224,48,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19630,208,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19631,209,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19632,210,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19633,211,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19634,212,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19635,213,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19636,214,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19637,215,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19638,216,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19639,217,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19640,218,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19641,219,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19642,220,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19643,221,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19644,222,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19645,223,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19646,224,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19647,225,48,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19648,196,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19649,197,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19650,198,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19651,199,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19652,200,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19653,201,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19654,202,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19655,203,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19656,204,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19657,205,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19658,206,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19659,207,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19660,208,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19661,209,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19662,210,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19663,211,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19664,212,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19665,213,48,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19666,196,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19667,197,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19668,198,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19669,199,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19670,200,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19671,201,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19672,202,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19673,203,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19674,204,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19675,205,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19676,206,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19677,207,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19678,208,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19679,209,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19680,210,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19681,211,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19682,212,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19683,213,48,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19684,198,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19685,199,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19686,200,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19687,201,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19688,202,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19689,203,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19690,204,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19691,205,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19692,206,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19693,207,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19694,208,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19695,209,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19696,210,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19697,211,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19698,212,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19699,213,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19700,214,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19701,215,48,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19702,198,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19703,199,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19704,200,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19705,201,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19706,202,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19707,203,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19708,204,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19709,205,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19710,206,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19711,207,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19712,208,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19713,209,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19714,210,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19715,211,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19716,212,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19717,213,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19718,214,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19719,215,48,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19720,212,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19721,213,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19722,214,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19723,215,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19724,216,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19725,217,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19726,218,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19727,219,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19728,220,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19729,221,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19730,222,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19731,223,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19732,224,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19733,225,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19734,226,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19735,227,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19736,228,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19737,229,48,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19738,213,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19739,214,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19740,215,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19741,216,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19742,217,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19743,218,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19744,219,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19745,220,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19746,221,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19747,222,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19748,223,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19749,224,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19750,225,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19751,226,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19752,227,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19753,228,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19754,229,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19755,230,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19756,231,48,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19757,219,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19758,220,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19759,221,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19760,222,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19761,223,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19762,224,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19763,225,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19764,226,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19765,227,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19766,228,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19767,229,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19768,230,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19769,231,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19770,232,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19771,233,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19772,234,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19773,235,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19774,236,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19775,237,48,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19776,219,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19777,220,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19778,221,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19779,222,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19780,223,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19781,224,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19782,225,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19783,226,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19784,227,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19785,228,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19786,229,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19787,230,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19788,231,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19789,232,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19790,233,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19791,234,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19792,235,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19793,236,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19794,237,48,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19795,220,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19796,221,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19797,222,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19798,223,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19799,224,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19800,225,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19801,226,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19802,227,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19803,228,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19804,229,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19805,230,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19806,231,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19807,232,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19808,233,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19809,234,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19810,235,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19811,236,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19812,237,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19813,238,48,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19814,220,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19815,221,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19816,222,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19817,223,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19818,224,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19819,225,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19820,226,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19821,227,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19822,228,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19823,229,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19824,230,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19825,231,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19826,232,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19827,233,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19828,234,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19829,235,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19830,236,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19831,237,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19832,238,48,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19833,220,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19834,221,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19835,222,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19836,223,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19837,224,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19838,225,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19839,226,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19840,227,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19841,228,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19842,229,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19843,230,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19844,231,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19845,232,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19846,233,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19847,234,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19848,235,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19849,236,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19850,237,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19851,238,48,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19852,220,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19853,221,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19854,222,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19855,223,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19856,224,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19857,225,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19858,226,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19859,227,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19860,228,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19861,229,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19862,230,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19863,231,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19864,232,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19865,233,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19866,234,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19867,235,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19868,236,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19869,237,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19870,238,48,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19871,220,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19872,221,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19873,222,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19874,223,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19875,224,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19876,225,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19877,226,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19878,227,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19879,228,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19880,229,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19881,230,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19882,231,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19883,232,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19884,233,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19885,234,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19886,235,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19887,236,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19888,237,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19889,238,48,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19890,223,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19891,224,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19892,225,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19893,226,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19894,227,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19895,228,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19896,229,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19897,230,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19898,231,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19899,232,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19900,233,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19901,234,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19902,235,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19903,236,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19904,237,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19905,238,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19906,239,49,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19907,225,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19908,226,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19909,227,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19910,228,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19911,229,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19912,230,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19913,231,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19914,232,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19915,233,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19916,234,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19917,235,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19918,236,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19919,237,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19920,238,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19921,239,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19922,240,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19923,241,49,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19924,226,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19925,227,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19926,228,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19927,229,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19928,230,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19929,231,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19930,232,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19931,233,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19932,234,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19933,235,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19934,236,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19935,237,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19936,238,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19937,239,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19938,240,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19939,241,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19940,242,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19941,243,49,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19942,214,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19943,215,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19944,216,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19945,217,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19946,218,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19947,219,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19948,220,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19949,221,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19950,222,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19951,223,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19952,224,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19953,225,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19954,226,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19955,227,49,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19956,214,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19957,215,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19958,216,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19959,217,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19960,218,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19961,219,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19962,220,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19963,221,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19964,222,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19965,223,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19966,224,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19967,225,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19968,226,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19969,227,49,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19970,216,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19971,217,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19972,218,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19973,219,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19974,220,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19975,221,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19976,222,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19977,223,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19978,224,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19979,225,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19980,226,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19981,227,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19982,228,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19983,229,49,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19984,216,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19985,217,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19986,218,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19987,219,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19988,220,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19989,221,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19990,222,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19991,223,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19992,224,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19993,225,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19994,226,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19995,227,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19996,228,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19997,229,49,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19998,230,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(19999,231,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20000,232,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20001,233,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20002,234,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20003,235,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20004,236,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20005,237,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20006,238,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20007,239,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20008,240,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20009,241,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20010,242,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20011,243,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20012,244,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20013,245,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20014,246,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20015,247,49,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20016,232,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20017,233,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20018,234,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20019,235,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20020,236,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20021,237,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20022,238,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20023,239,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20024,240,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20025,241,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20026,242,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20027,243,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20028,244,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20029,245,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20030,246,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20031,247,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20032,248,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20033,249,49,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20034,238,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20035,239,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20036,240,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20037,241,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20038,242,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20039,243,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20040,244,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20041,245,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20042,246,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20043,247,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20044,248,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20045,249,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20046,250,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20047,251,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20048,252,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20049,253,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20050,254,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20051,255,49,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20052,238,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20053,239,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20054,240,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20055,241,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20056,242,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20057,243,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20058,244,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20059,245,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20060,246,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20061,247,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20062,248,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20063,249,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20064,250,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20065,251,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20066,252,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20067,253,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20068,254,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20069,255,49,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20070,239,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20071,240,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20072,241,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20073,242,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20074,243,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20075,244,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20076,245,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20077,246,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20078,247,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20079,248,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20080,249,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20081,250,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20082,251,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20083,252,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20084,253,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20085,254,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20086,255,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20087,256,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20088,257,49,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20089,239,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20090,240,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20091,241,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20092,242,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20093,243,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20094,244,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20095,245,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20096,246,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20097,247,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20098,248,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20099,249,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20100,250,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20101,251,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20102,252,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20103,253,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20104,254,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20105,255,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20106,256,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20107,257,49,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20108,239,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20109,240,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20110,241,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20111,242,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20112,243,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20113,244,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20114,245,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20115,246,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20116,247,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20117,248,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20118,249,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20119,250,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20120,251,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20121,252,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20122,253,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20123,254,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20124,255,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20125,256,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20126,257,49,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20127,239,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20128,240,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20129,241,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20130,242,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20131,243,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20132,244,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20133,245,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20134,246,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20135,247,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20136,248,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20137,249,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20138,250,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20139,251,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20140,252,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20141,253,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20142,254,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20143,255,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20144,256,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20145,257,49,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20146,239,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20147,240,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20148,241,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20149,242,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20150,243,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20151,244,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20152,245,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20153,246,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20154,247,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20155,248,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20156,249,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20157,250,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20158,251,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20159,252,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20160,253,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20161,254,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20162,255,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20163,256,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20164,257,49,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20165,240,50,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20166,241,50,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20167,242,50,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20168,243,50,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20169,244,50,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20170,245,50,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20171,246,50,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20172,247,50,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20173,248,50,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20174,242,50,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20175,243,50,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20176,244,50,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20177,245,50,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20178,246,50,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20179,247,50,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20180,248,50,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20181,249,50,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20182,250,50,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20183,244,50,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20184,245,50,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20185,246,50,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20186,247,50,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20187,248,50,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20188,249,50,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20189,250,50,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20190,251,50,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20191,252,50,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20192,228,50,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20193,229,50,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20194,230,50,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20195,231,50,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20196,232,50,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20197,233,50,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20198,234,50,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20199,235,50,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20200,236,50,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20201,228,50,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20202,229,50,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20203,230,50,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20204,231,50,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20205,232,50,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20206,233,50,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20207,234,50,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20208,235,50,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20209,236,50,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20210,228,50,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20211,229,50,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20212,230,50,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20213,231,50,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20214,232,50,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20215,233,50,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20216,234,50,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20217,235,50,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20218,236,50,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20219,230,50,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20220,231,50,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20221,232,50,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20222,233,50,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20223,234,50,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20224,235,50,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20225,236,50,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20226,237,50,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20227,238,50,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20228,239,50,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20229,230,50,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20230,231,50,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20231,232,50,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20232,233,50,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20233,234,50,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20234,235,50,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20235,236,50,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20236,237,50,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20237,238,50,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20238,239,50,8,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20239,248,50,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20240,249,50,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20241,250,50,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20242,251,50,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20243,252,50,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20244,253,50,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20245,254,50,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20246,255,50,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20247,256,50,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20248,257,50,9,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20249,250,50,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20250,251,50,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20251,252,50,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20252,253,50,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20253,254,50,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20254,255,50,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20255,256,50,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20256,257,50,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20257,258,50,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20258,259,50,10,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20259,256,50,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20260,257,50,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20261,258,50,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20262,259,50,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20263,260,50,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20264,261,50,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20265,262,50,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20266,263,50,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20267,264,50,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20268,265,50,11,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20269,256,50,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20270,257,50,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20271,258,50,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20272,259,50,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20273,260,50,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20274,261,50,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20275,262,50,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20276,263,50,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20277,264,50,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20278,265,50,12,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20279,258,50,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20280,259,50,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20281,260,50,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20282,261,50,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20283,262,50,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20284,263,50,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20285,264,50,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20286,265,50,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20287,266,50,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20288,267,50,13,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20289,258,50,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20290,259,50,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20291,260,50,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20292,261,50,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20293,262,50,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20294,263,50,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20295,264,50,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20296,265,50,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20297,266,50,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20298,267,50,14,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20299,258,50,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20300,259,50,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20301,260,50,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20302,261,50,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20303,262,50,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20304,263,50,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20305,264,50,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20306,265,50,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20307,266,50,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20308,267,50,15,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20309,258,50,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20310,259,50,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20311,260,50,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20312,261,50,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20313,262,50,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20314,263,50,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20315,264,50,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20316,265,50,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20317,266,50,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20318,267,50,16,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20319,258,50,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20320,259,50,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20321,260,50,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20322,261,50,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20323,262,50,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20324,263,50,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20325,264,50,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20326,265,50,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20327,266,50,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20328,267,50,18,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20329,1,51,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20330,2,51,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20331,3,51,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20332,4,51,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20333,5,51,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20334,6,51,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20335,7,51,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20336,8,51,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20337,9,51,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20338,10,51,1,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20339,1,51,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20340,2,51,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20341,3,51,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20342,4,51,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20343,5,51,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20344,6,51,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20345,7,51,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20346,8,51,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20347,9,51,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20348,10,51,2,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20349,1,51,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20350,2,51,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20351,3,51,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20352,4,51,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20353,5,51,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20354,6,51,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20355,7,51,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20356,8,51,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20357,9,51,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20358,10,51,3,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20359,1,51,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20360,2,51,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20361,3,51,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20362,4,51,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20363,5,51,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20364,6,51,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20365,7,51,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20366,8,51,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20367,9,51,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20368,10,51,4,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20369,1,51,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20370,2,51,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20371,3,51,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20372,4,51,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20373,5,51,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20374,6,51,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20375,7,51,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20376,8,51,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20377,9,51,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20378,10,51,5,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20379,1,51,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20380,2,51,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20381,3,51,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20382,4,51,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20383,5,51,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20384,6,51,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20385,7,51,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20386,8,51,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20387,9,51,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20388,10,51,6,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20389,1,51,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20390,2,51,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20391,3,51,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20392,4,51,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20393,5,51,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20394,6,51,7,1,'2022-09-02 14:23:45','2022-09-02 14:23:45'),(20395,7,51,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20396,8,51,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20397,9,51,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20398,10,51,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20399,1,51,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20400,2,51,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20401,3,51,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20402,4,51,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20403,5,51,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20404,6,51,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20405,7,51,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20406,8,51,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20407,9,51,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20408,10,51,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20409,1,51,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20410,2,51,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20411,3,51,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20412,4,51,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20413,5,51,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20414,6,51,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20415,7,51,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20416,8,51,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20417,9,51,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20418,10,51,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20419,1,51,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20420,2,51,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20421,3,51,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20422,4,51,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20423,5,51,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20424,6,51,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20425,7,51,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20426,8,51,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20427,9,51,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20428,10,51,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20429,1,51,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20430,2,51,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20431,3,51,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20432,4,51,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20433,5,51,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20434,6,51,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20435,7,51,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20436,8,51,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20437,9,51,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20438,10,51,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20439,1,51,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20440,2,51,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20441,3,51,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20442,4,51,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20443,5,51,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20444,6,51,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20445,7,51,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20446,8,51,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20447,9,51,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20448,10,51,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20449,1,51,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20450,2,51,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20451,3,51,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20452,4,51,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20453,5,51,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20454,6,51,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20455,7,51,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20456,8,51,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20457,9,51,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20458,10,51,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20459,1,51,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20460,2,51,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20461,3,51,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20462,4,51,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20463,5,51,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20464,6,51,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20465,7,51,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20466,8,51,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20467,9,51,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20468,10,51,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20469,1,51,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20470,2,51,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20471,3,51,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20472,4,51,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20473,5,51,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20474,6,51,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20475,7,51,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20476,8,51,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20477,9,51,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20478,10,51,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20479,1,51,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20480,2,51,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20481,3,51,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20482,4,51,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20483,5,51,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20484,6,51,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20485,7,51,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20486,8,51,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20487,9,51,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20488,10,51,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20489,1,51,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20490,2,51,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20491,3,51,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20492,4,51,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20493,5,51,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20494,6,51,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20495,7,51,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20496,8,51,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20497,9,51,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20498,10,51,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20499,11,51,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20500,1,51,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20501,2,51,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20502,3,51,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20503,4,51,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20504,5,51,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20505,6,51,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20506,7,51,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20507,8,51,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20508,9,51,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20509,10,51,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20510,11,51,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20511,1,51,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20512,2,51,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20513,3,51,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20514,4,51,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20515,5,51,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20516,6,51,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20517,7,51,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20518,8,51,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20519,9,51,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20520,10,51,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20521,11,51,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20522,1,51,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20523,2,51,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20524,3,51,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20525,4,51,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20526,5,51,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20527,6,51,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20528,7,51,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20529,8,51,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20530,9,51,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20531,10,51,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20532,11,51,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20533,1,51,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20534,2,51,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20535,3,51,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20536,4,51,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20537,5,51,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20538,6,51,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20539,7,51,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20540,8,51,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20541,9,51,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20542,10,51,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20543,11,51,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20544,1,51,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20545,2,51,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20546,3,51,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20547,4,51,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20548,5,51,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20549,6,51,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20550,7,51,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20551,8,51,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20552,9,51,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20553,10,51,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20554,11,51,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20555,1,51,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20556,2,51,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20557,3,51,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20558,4,51,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20559,5,51,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20560,6,51,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20561,7,51,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20562,8,51,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20563,9,51,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20564,10,51,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20565,11,51,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20566,1,51,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20567,2,51,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20568,3,51,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20569,4,51,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20570,5,51,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20571,6,51,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20572,7,51,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20573,8,51,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20574,9,51,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20575,10,51,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20576,11,51,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20577,11,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20578,12,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20579,13,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20580,14,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20581,15,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20582,16,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20583,17,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20584,18,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20585,19,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20586,20,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20587,21,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20588,22,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20589,23,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20590,24,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20591,25,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20592,26,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20593,27,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20594,28,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20595,29,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20596,30,52,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20597,11,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20598,12,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20599,13,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20600,14,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20601,15,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20602,16,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20603,17,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20604,18,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20605,19,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20606,20,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20607,21,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20608,22,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20609,23,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20610,24,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20611,25,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20612,26,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20613,27,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20614,28,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20615,29,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20616,30,52,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20617,11,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20618,12,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20619,13,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20620,14,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20621,15,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20622,16,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20623,17,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20624,18,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20625,19,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20626,20,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20627,21,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20628,22,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20629,23,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20630,24,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20631,25,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20632,26,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20633,27,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20634,28,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20635,29,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20636,30,52,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20637,11,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20638,12,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20639,13,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20640,14,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20641,15,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20642,16,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20643,17,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20644,18,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20645,19,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20646,20,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20647,21,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20648,22,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20649,23,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20650,24,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20651,25,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20652,26,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20653,27,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20654,28,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20655,29,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20656,30,52,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20657,11,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20658,12,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20659,13,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20660,14,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20661,15,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20662,16,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20663,17,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20664,18,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20665,19,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20666,20,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20667,21,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20668,22,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20669,23,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20670,24,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20671,25,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20672,26,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20673,27,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20674,28,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20675,29,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20676,30,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20677,31,52,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20678,11,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20679,12,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20680,13,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20681,14,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20682,15,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20683,16,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20684,17,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20685,18,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20686,19,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20687,20,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20688,21,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20689,22,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20690,23,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20691,24,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20692,25,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20693,26,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20694,27,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20695,28,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20696,29,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20697,30,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20698,31,52,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20699,11,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20700,12,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20701,13,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20702,14,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20703,15,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20704,16,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20705,17,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20706,18,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20707,19,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20708,20,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20709,21,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20710,22,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20711,23,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20712,24,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20713,25,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20714,26,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20715,27,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20716,28,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20717,29,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20718,30,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20719,31,52,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20720,11,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20721,12,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20722,13,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20723,14,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20724,15,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20725,16,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20726,17,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20727,18,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20728,19,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20729,20,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20730,21,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20731,22,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20732,23,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20733,24,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20734,25,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20735,26,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20736,27,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20737,28,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20738,29,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20739,30,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20740,31,52,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20741,11,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20742,12,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20743,13,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20744,14,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20745,15,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20746,16,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20747,17,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20748,18,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20749,19,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20750,20,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20751,21,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20752,22,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20753,23,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20754,24,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20755,25,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20756,26,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20757,27,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20758,28,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20759,29,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20760,30,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20761,31,52,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20762,11,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20763,12,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20764,13,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20765,14,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20766,15,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20767,16,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20768,17,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20769,18,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20770,19,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20771,20,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20772,21,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20773,22,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20774,23,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20775,24,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20776,25,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20777,26,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20778,27,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20779,28,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20780,29,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20781,30,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20782,31,52,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20783,11,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20784,12,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20785,13,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20786,14,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20787,15,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20788,16,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20789,17,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20790,18,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20791,19,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20792,20,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20793,21,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20794,22,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20795,23,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20796,24,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20797,25,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20798,26,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20799,27,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20800,28,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20801,29,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20802,30,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20803,31,52,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20804,11,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20805,12,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20806,13,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20807,14,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20808,15,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20809,16,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20810,17,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20811,18,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20812,19,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20813,20,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20814,21,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20815,22,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20816,23,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20817,24,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20818,25,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20819,26,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20820,27,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20821,28,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20822,29,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20823,30,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20824,31,52,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20825,11,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20826,12,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20827,13,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20828,14,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20829,15,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20830,16,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20831,17,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20832,18,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20833,19,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20834,20,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20835,21,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20836,22,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20837,23,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20838,24,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20839,25,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20840,26,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20841,27,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20842,28,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20843,29,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20844,30,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20845,31,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20846,32,52,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20847,11,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20848,12,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20849,13,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20850,14,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20851,15,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20852,16,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20853,17,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20854,18,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20855,19,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20856,20,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20857,21,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20858,22,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20859,23,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20860,24,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20861,25,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20862,26,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20863,27,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20864,28,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20865,29,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20866,30,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20867,31,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20868,32,52,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20869,11,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20870,12,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20871,13,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20872,14,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20873,15,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20874,16,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20875,17,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20876,18,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20877,19,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20878,20,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20879,21,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20880,22,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20881,23,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20882,24,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20883,25,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20884,26,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20885,27,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20886,28,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20887,29,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20888,30,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20889,31,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20890,32,52,16,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20891,12,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20892,13,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20893,14,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20894,15,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20895,16,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20896,17,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20897,18,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20898,19,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20899,20,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20900,21,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20901,22,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20902,23,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20903,24,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20904,25,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20905,26,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20906,27,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20907,28,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20908,29,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20909,30,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20910,31,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20911,32,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20912,33,52,18,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20913,12,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20914,13,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20915,14,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20916,15,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20917,16,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20918,17,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20919,18,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20920,19,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20921,20,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20922,21,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20923,22,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20924,23,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20925,24,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20926,25,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20927,26,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20928,27,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20929,28,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20930,29,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20931,30,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20932,31,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20933,32,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20934,33,52,19,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20935,12,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20936,13,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20937,14,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20938,15,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20939,16,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20940,17,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20941,18,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20942,19,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20943,20,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20944,21,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20945,22,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20946,23,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20947,24,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20948,25,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20949,26,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20950,27,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20951,28,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20952,29,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20953,30,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20954,31,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20955,32,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20956,33,52,20,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20957,12,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20958,13,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20959,14,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20960,15,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20961,16,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20962,17,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20963,18,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20964,19,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20965,20,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20966,21,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20967,22,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20968,23,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20969,24,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20970,25,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20971,26,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20972,27,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20973,28,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20974,29,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20975,30,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20976,31,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20977,32,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20978,33,52,21,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20979,12,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20980,13,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20981,14,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20982,15,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20983,16,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20984,17,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20985,18,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20986,19,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20987,20,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20988,21,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20989,22,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20990,23,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20991,24,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20992,25,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20993,26,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20994,27,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20995,28,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20996,29,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20997,30,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20998,31,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(20999,32,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21000,33,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21001,34,52,22,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21002,12,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21003,13,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21004,14,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21005,15,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21006,16,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21007,17,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21008,18,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21009,19,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21010,20,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21011,21,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21012,22,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21013,23,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21014,24,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21015,25,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21016,26,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21017,27,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21018,28,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21019,29,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21020,30,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21021,31,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21022,32,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21023,33,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21024,34,52,23,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21025,12,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21026,13,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21027,14,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21028,15,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21029,16,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21030,17,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21031,18,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21032,19,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21033,20,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21034,21,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21035,22,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21036,23,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21037,24,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21038,25,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21039,26,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21040,27,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21041,28,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21042,29,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21043,30,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21044,31,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21045,32,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21046,33,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21047,34,52,24,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21048,12,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21049,13,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21050,14,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21051,15,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21052,16,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21053,17,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21054,18,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21055,19,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21056,20,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21057,21,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21058,22,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21059,23,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21060,24,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21061,25,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21062,26,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21063,27,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21064,28,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21065,29,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21066,30,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21067,31,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21068,32,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21069,33,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21070,34,52,25,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21071,31,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21072,32,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21073,33,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21074,34,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21075,35,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21076,36,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21077,37,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21078,38,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21079,39,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21080,40,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21081,41,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21082,42,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21083,43,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21084,44,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21085,45,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21086,46,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21087,47,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21088,48,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21089,49,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21090,50,53,1,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21091,31,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21092,32,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21093,33,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21094,34,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21095,35,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21096,36,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21097,37,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21098,38,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21099,39,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21100,40,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21101,41,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21102,42,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21103,43,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21104,44,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21105,45,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21106,46,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21107,47,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21108,48,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21109,49,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21110,50,53,2,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21111,31,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21112,32,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21113,33,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21114,34,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21115,35,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21116,36,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21117,37,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21118,38,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21119,39,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21120,40,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21121,41,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21122,42,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21123,43,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21124,44,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21125,45,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21126,46,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21127,47,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21128,48,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21129,49,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21130,50,53,3,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21131,31,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21132,32,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21133,33,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21134,34,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21135,35,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21136,36,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21137,37,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21138,38,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21139,39,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21140,40,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21141,41,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21142,42,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21143,43,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21144,44,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21145,45,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21146,46,53,5,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21147,32,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21148,33,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21149,34,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21150,35,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21151,36,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21152,37,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21153,38,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21154,39,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21155,40,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21156,41,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21157,42,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21158,43,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21159,44,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21160,45,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21161,46,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21162,47,53,6,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21163,32,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21164,33,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21165,34,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21166,35,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21167,36,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21168,37,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21169,38,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21170,39,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21171,40,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21172,41,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21173,42,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21174,43,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21175,44,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21176,45,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21177,46,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21178,47,53,7,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21179,32,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21180,33,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21181,34,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21182,35,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21183,36,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21184,37,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21185,38,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21186,39,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21187,40,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21188,41,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21189,42,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21190,43,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21191,44,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21192,45,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21193,46,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21194,47,53,8,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21195,32,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21196,33,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21197,34,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21198,35,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21199,36,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21200,37,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21201,38,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21202,39,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21203,40,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21204,41,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21205,42,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21206,43,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21207,44,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21208,45,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21209,46,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21210,47,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21211,48,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21212,49,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21213,50,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21214,51,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21215,52,53,9,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21216,32,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21217,33,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21218,34,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21219,35,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21220,36,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21221,37,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21222,38,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21223,39,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21224,40,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21225,41,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21226,42,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21227,43,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21228,44,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21229,45,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21230,46,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21231,47,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21232,48,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21233,49,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21234,50,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21235,51,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21236,52,53,10,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21237,32,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21238,33,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21239,34,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21240,35,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21241,36,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21242,37,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21243,38,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21244,39,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21245,40,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21246,41,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21247,42,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21248,43,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21249,44,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21250,45,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21251,46,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21252,47,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21253,48,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21254,49,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21255,50,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21256,51,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21257,52,53,11,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21258,32,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21259,33,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21260,34,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21261,35,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21262,36,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21263,37,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21264,38,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21265,39,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21266,40,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21267,41,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21268,42,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21269,43,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21270,44,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21271,45,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21272,46,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21273,47,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21274,48,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21275,49,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21276,50,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21277,51,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21278,52,53,12,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21279,32,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21280,33,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21281,34,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21282,35,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21283,36,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21284,37,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21285,38,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21286,39,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21287,40,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21288,41,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21289,42,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21290,43,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21291,44,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21292,45,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21293,46,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21294,47,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21295,48,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21296,49,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21297,50,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21298,51,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21299,52,53,13,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21300,33,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21301,34,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21302,35,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21303,36,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21304,37,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21305,38,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21306,39,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21307,40,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21308,41,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21309,42,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21310,43,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21311,44,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21312,45,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21313,46,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21314,47,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21315,48,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21316,49,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21317,50,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21318,51,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21319,52,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21320,53,53,14,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21321,33,53,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21322,34,53,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21323,35,53,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21324,36,53,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21325,37,53,15,1,'2022-09-02 14:23:46','2022-09-02 14:23:46'),(21326,38,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21327,39,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21328,40,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21329,41,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21330,42,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21331,43,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21332,44,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21333,45,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21334,46,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21335,47,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21336,48,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21337,49,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21338,50,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21339,51,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21340,52,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21341,53,53,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21342,33,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21343,34,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21344,35,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21345,36,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21346,37,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21347,38,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21348,39,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21349,40,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21350,41,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21351,42,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21352,43,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21353,44,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21354,45,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21355,46,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21356,47,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21357,48,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21358,49,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21359,50,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21360,51,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21361,52,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21362,53,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21363,54,53,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21364,34,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21365,35,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21366,36,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21367,37,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21368,38,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21369,39,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21370,40,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21371,41,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21372,42,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21373,43,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21374,44,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21375,45,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21376,46,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21377,47,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21378,48,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21379,49,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21380,50,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21381,51,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21382,52,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21383,53,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21384,54,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21385,55,53,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21386,34,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21387,35,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21388,36,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21389,37,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21390,38,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21391,39,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21392,40,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21393,41,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21394,42,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21395,43,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21396,44,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21397,45,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21398,46,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21399,47,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21400,48,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21401,49,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21402,50,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21403,51,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21404,52,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21405,53,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21406,54,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21407,55,53,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21408,34,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21409,35,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21410,36,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21411,37,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21412,38,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21413,39,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21414,40,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21415,41,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21416,42,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21417,43,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21418,44,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21419,45,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21420,46,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21421,47,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21422,48,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21423,49,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21424,50,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21425,51,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21426,52,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21427,53,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21428,54,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21429,55,53,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21430,34,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21431,35,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21432,36,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21433,37,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21434,38,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21435,39,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21436,40,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21437,41,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21438,42,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21439,43,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21440,44,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21441,45,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21442,46,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21443,47,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21444,48,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21445,49,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21446,50,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21447,51,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21448,52,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21449,53,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21450,54,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21451,55,53,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21452,35,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21453,36,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21454,37,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21455,38,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21456,39,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21457,40,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21458,41,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21459,42,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21460,43,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21461,44,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21462,45,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21463,46,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21464,47,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21465,48,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21466,49,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21467,50,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21468,51,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21469,52,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21470,53,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21471,54,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21472,55,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21473,56,53,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21474,35,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21475,36,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21476,37,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21477,38,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21478,39,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21479,40,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21480,41,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21481,42,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21482,43,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21483,44,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21484,45,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21485,46,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21486,47,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21487,48,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21488,49,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21489,50,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21490,51,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21491,52,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21492,53,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21493,54,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21494,55,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21495,56,53,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21496,35,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21497,36,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21498,37,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21499,38,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21500,39,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21501,40,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21502,41,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21503,42,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21504,43,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21505,44,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21506,45,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21507,46,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21508,47,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21509,48,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21510,49,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21511,50,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21512,51,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21513,52,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21514,53,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21515,54,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21516,55,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21517,56,53,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21518,35,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21519,36,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21520,37,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21521,38,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21522,39,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21523,40,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21524,41,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21525,42,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21526,43,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21527,44,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21528,45,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21529,46,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21530,47,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21531,48,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21532,49,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21533,50,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21534,51,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21535,52,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21536,53,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21537,54,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21538,55,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21539,56,53,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21540,51,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21541,52,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21542,53,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21543,54,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21544,55,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21545,56,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21546,57,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21547,58,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21548,59,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21549,60,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21550,61,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21551,62,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21552,63,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21553,64,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21554,65,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21555,66,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21556,67,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21557,68,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21558,69,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21559,70,54,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21560,51,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21561,52,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21562,53,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21563,54,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21564,55,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21565,56,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21566,57,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21567,58,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21568,59,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21569,60,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21570,61,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21571,62,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21572,63,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21573,64,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21574,65,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21575,66,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21576,67,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21577,68,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21578,69,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21579,70,54,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21580,51,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21581,52,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21582,53,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21583,54,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21584,55,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21585,56,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21586,57,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21587,58,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21588,59,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21589,60,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21590,61,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21591,62,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21592,63,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21593,64,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21594,65,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21595,66,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21596,67,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21597,68,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21598,69,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21599,70,54,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21600,47,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21601,48,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21602,49,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21603,50,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21604,51,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21605,52,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21606,53,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21607,54,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21608,55,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21609,56,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21610,57,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21611,58,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21612,59,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21613,60,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21614,61,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21615,62,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21616,63,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21617,64,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21618,65,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21619,66,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21620,67,54,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21621,48,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21622,49,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21623,50,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21624,51,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21625,52,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21626,53,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21627,54,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21628,55,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21629,56,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21630,57,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21631,58,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21632,59,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21633,60,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21634,61,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21635,62,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21636,63,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21637,64,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21638,65,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21639,66,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21640,67,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21641,68,54,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21642,48,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21643,49,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21644,50,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21645,51,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21646,52,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21647,53,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21648,54,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21649,55,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21650,56,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21651,57,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21652,58,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21653,59,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21654,60,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21655,61,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21656,62,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21657,63,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21658,64,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21659,65,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21660,66,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21661,67,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21662,68,54,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21663,48,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21664,49,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21665,50,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21666,51,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21667,52,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21668,53,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21669,54,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21670,55,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21671,56,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21672,57,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21673,58,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21674,59,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21675,60,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21676,61,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21677,62,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21678,63,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21679,64,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21680,65,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21681,66,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21682,67,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21683,68,54,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21684,53,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21685,54,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21686,55,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21687,56,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21688,57,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21689,58,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21690,59,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21691,60,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21692,61,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21693,62,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21694,63,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21695,64,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21696,65,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21697,66,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21698,67,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21699,68,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21700,69,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21701,70,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21702,71,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21703,72,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21704,73,54,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21705,53,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21706,54,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21707,55,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21708,56,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21709,57,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21710,58,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21711,59,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21712,60,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21713,61,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21714,62,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21715,63,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21716,64,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21717,65,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21718,66,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21719,67,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21720,68,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21721,69,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21722,70,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21723,71,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21724,72,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21725,73,54,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21726,53,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21727,54,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21728,55,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21729,56,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21730,57,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21731,58,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21732,59,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21733,60,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21734,61,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21735,62,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21736,63,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21737,64,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21738,65,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21739,66,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21740,67,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21741,68,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21742,69,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21743,70,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21744,71,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21745,72,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21746,73,54,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21747,53,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21748,54,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21749,55,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21750,56,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21751,57,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21752,58,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21753,59,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21754,60,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21755,61,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21756,62,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21757,63,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21758,64,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21759,65,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21760,66,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21761,67,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21762,68,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21763,69,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21764,70,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21765,71,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21766,72,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21767,73,54,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21768,53,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21769,54,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21770,55,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21771,56,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21772,57,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21773,58,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21774,59,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21775,60,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21776,61,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21777,62,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21778,63,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21779,64,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21780,65,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21781,66,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21782,67,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21783,68,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21784,69,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21785,70,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21786,71,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21787,72,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21788,73,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21789,74,54,13,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21790,54,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21791,55,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21792,56,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21793,57,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21794,58,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21795,59,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21796,60,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21797,61,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21798,62,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21799,63,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21800,64,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21801,65,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21802,66,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21803,67,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21804,68,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21805,69,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21806,70,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21807,71,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21808,72,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21809,73,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21810,74,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21811,75,54,14,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21812,54,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21813,55,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21814,56,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21815,57,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21816,58,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21817,59,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21818,60,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21819,61,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21820,62,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21821,63,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21822,64,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21823,65,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21824,66,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21825,67,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21826,68,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21827,69,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21828,70,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21829,71,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21830,72,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21831,73,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21832,74,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21833,75,54,15,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21834,55,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21835,56,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21836,57,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21837,58,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21838,59,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21839,60,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21840,61,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21841,62,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21842,63,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21843,64,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21844,65,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21845,66,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21846,67,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21847,68,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21848,69,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21849,70,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21850,71,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21851,72,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21852,73,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21853,74,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21854,75,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21855,76,54,16,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21856,56,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21857,57,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21858,58,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21859,59,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21860,60,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21861,61,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21862,62,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21863,63,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21864,64,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21865,65,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21866,66,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21867,67,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21868,68,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21869,69,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21870,70,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21871,71,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21872,72,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21873,73,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21874,74,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21875,75,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21876,76,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21877,77,54,18,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21878,56,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21879,57,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21880,58,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21881,59,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21882,60,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21883,61,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21884,62,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21885,63,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21886,64,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21887,65,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21888,66,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21889,67,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21890,68,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21891,69,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21892,70,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21893,71,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21894,72,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21895,73,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21896,74,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21897,75,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21898,76,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21899,77,54,19,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21900,56,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21901,57,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21902,58,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21903,59,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21904,60,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21905,61,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21906,62,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21907,63,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21908,64,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21909,65,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21910,66,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21911,67,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21912,68,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21913,69,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21914,70,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21915,71,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21916,72,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21917,73,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21918,74,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21919,75,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21920,76,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21921,77,54,20,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21922,56,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21923,57,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21924,58,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21925,59,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21926,60,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21927,61,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21928,62,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21929,63,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21930,64,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21931,65,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21932,66,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21933,67,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21934,68,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21935,69,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21936,70,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21937,71,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21938,72,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21939,73,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21940,74,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21941,75,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21942,76,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21943,77,54,21,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21944,57,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21945,58,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21946,59,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21947,60,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21948,61,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21949,62,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21950,63,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21951,64,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21952,65,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21953,66,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21954,67,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21955,68,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21956,69,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21957,70,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21958,71,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21959,72,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21960,73,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21961,74,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21962,75,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21963,76,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21964,77,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21965,78,54,22,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21966,57,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21967,58,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21968,59,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21969,60,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21970,61,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21971,62,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21972,63,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21973,64,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21974,65,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21975,66,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21976,67,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21977,68,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21978,69,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21979,70,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21980,71,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21981,72,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21982,73,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21983,74,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21984,75,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21985,76,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21986,77,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21987,78,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21988,79,54,23,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21989,57,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21990,58,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21991,59,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21992,60,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21993,61,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21994,62,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21995,63,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21996,64,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21997,65,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21998,66,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(21999,67,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22000,68,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22001,69,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22002,70,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22003,71,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22004,72,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22005,73,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22006,74,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22007,75,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22008,76,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22009,77,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22010,78,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22011,79,54,24,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22012,57,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22013,58,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22014,59,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22015,60,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22016,61,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22017,62,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22018,63,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22019,64,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22020,65,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22021,66,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22022,67,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22023,68,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22024,69,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22025,70,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22026,71,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22027,72,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22028,73,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22029,74,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22030,75,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22031,76,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22032,77,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22033,78,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22034,79,54,25,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22035,71,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22036,72,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22037,73,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22038,74,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22039,75,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22040,76,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22041,77,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22042,78,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22043,79,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22044,80,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22045,81,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22046,82,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22047,83,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22048,84,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22049,85,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22050,86,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22051,87,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22052,88,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22053,89,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22054,90,55,1,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22055,71,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22056,72,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22057,73,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22058,74,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22059,75,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22060,76,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22061,77,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22062,78,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22063,79,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22064,80,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22065,81,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22066,82,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22067,83,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22068,84,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22069,85,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22070,86,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22071,87,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22072,88,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22073,89,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22074,90,55,2,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22075,71,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22076,72,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22077,73,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22078,74,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22079,75,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22080,76,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22081,77,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22082,78,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22083,79,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22084,80,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22085,81,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22086,82,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22087,83,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22088,84,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22089,85,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22090,86,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22091,87,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22092,88,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22093,89,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22094,90,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22095,91,55,3,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22096,68,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22097,69,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22098,70,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22099,71,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22100,72,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22101,73,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22102,74,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22103,75,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22104,76,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22105,77,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22106,78,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22107,79,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22108,80,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22109,81,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22110,82,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22111,83,55,5,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22112,69,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22113,70,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22114,71,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22115,72,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22116,73,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22117,74,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22118,75,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22119,76,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22120,77,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22121,78,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22122,79,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22123,80,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22124,81,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22125,82,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22126,83,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22127,84,55,6,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22128,69,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22129,70,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22130,71,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22131,72,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22132,73,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22133,74,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22134,75,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22135,76,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22136,77,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22137,78,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22138,79,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22139,80,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22140,81,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22141,82,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22142,83,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22143,84,55,7,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22144,69,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22145,70,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22146,71,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22147,72,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22148,73,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22149,74,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22150,75,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22151,76,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22152,77,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22153,78,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22154,79,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22155,80,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22156,81,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22157,82,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22158,83,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22159,84,55,8,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22160,74,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22161,75,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22162,76,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22163,77,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22164,78,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22165,79,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22166,80,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22167,81,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22168,82,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22169,83,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22170,84,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22171,85,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22172,86,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22173,87,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22174,88,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22175,89,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22176,90,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22177,91,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22178,92,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22179,93,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22180,94,55,9,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22181,74,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22182,75,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22183,76,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22184,77,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22185,78,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22186,79,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22187,80,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22188,81,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22189,82,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22190,83,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22191,84,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22192,85,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22193,86,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22194,87,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22195,88,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22196,89,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22197,90,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22198,91,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22199,92,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22200,93,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22201,94,55,10,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22202,74,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22203,75,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22204,76,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22205,77,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22206,78,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22207,79,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22208,80,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22209,81,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22210,82,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22211,83,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22212,84,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22213,85,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22214,86,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22215,87,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22216,88,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22217,89,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22218,90,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22219,91,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22220,92,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22221,93,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22222,94,55,11,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22223,74,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22224,75,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22225,76,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22226,77,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22227,78,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22228,79,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22229,80,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22230,81,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22231,82,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22232,83,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22233,84,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22234,85,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22235,86,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22236,87,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22237,88,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22238,89,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22239,90,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22240,91,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22241,92,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22242,93,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22243,94,55,12,1,'2022-09-02 14:23:47','2022-09-02 14:23:47'),(22244,75,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22245,76,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22246,77,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22247,78,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22248,79,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22249,80,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22250,81,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22251,82,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22252,83,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22253,84,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22254,85,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22255,86,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22256,87,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22257,88,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22258,89,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22259,90,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22260,91,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22261,92,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22262,93,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22263,94,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22264,95,55,13,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22265,76,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22266,77,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22267,78,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22268,79,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22269,80,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22270,81,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22271,82,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22272,83,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22273,84,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22274,85,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22275,86,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22276,87,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22277,88,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22278,89,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22279,90,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22280,91,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22281,92,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22282,93,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22283,94,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22284,95,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22285,96,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22286,97,55,14,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22287,76,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22288,77,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22289,78,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22290,79,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22291,80,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22292,81,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22293,82,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22294,83,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22295,84,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22296,85,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22297,86,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22298,87,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22299,88,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22300,89,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22301,90,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22302,91,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22303,92,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22304,93,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22305,94,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22306,95,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22307,96,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22308,97,55,15,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22309,77,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22310,78,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22311,79,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22312,80,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22313,81,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22314,82,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22315,83,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22316,84,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22317,85,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22318,86,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22319,87,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22320,88,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22321,89,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22322,90,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22323,91,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22324,92,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22325,93,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22326,94,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22327,95,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22328,96,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22329,97,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22330,98,55,16,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22331,78,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22332,79,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22333,80,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22334,81,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22335,82,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22336,83,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22337,84,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22338,85,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22339,86,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22340,87,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22341,88,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22342,89,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22343,90,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22344,91,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22345,92,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22346,93,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22347,94,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22348,95,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22349,96,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22350,97,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22351,98,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22352,99,55,18,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22353,78,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22354,79,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22355,80,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22356,81,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22357,82,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22358,83,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22359,84,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22360,85,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22361,86,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22362,87,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22363,88,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22364,89,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22365,90,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22366,91,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22367,92,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22368,93,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22369,94,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22370,95,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22371,96,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22372,97,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22373,98,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22374,99,55,19,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22375,78,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22376,79,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22377,80,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22378,81,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22379,82,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22380,83,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22381,84,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22382,85,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22383,86,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22384,87,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22385,88,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22386,89,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22387,90,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22388,91,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22389,92,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22390,93,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22391,94,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22392,95,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22393,96,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22394,97,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22395,98,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22396,99,55,20,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22397,78,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22398,79,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22399,80,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22400,81,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22401,82,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22402,83,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22403,84,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22404,85,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22405,86,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22406,87,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22407,88,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22408,89,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22409,90,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22410,91,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22411,92,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22412,93,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22413,94,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22414,95,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22415,96,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22416,97,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22417,98,55,21,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22418,85,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22419,86,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22420,87,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22421,88,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22422,89,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22423,90,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22424,91,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22425,92,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22426,93,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22427,94,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22428,95,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22429,96,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22430,97,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22431,98,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22432,99,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22433,100,55,22,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22434,86,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22435,87,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22436,88,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22437,89,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22438,90,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22439,91,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22440,92,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22441,93,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22442,94,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22443,95,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22444,96,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22445,97,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22446,98,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22447,99,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22448,100,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22449,101,55,23,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22450,87,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22451,88,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22452,89,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22453,90,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22454,91,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22455,92,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22456,93,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22457,94,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22458,95,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22459,96,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22460,97,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22461,98,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22462,99,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22463,100,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22464,101,55,24,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22465,87,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22466,88,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22467,89,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22468,90,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22469,91,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22470,92,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22471,93,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22472,94,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22473,95,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22474,96,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22475,97,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22476,98,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22477,99,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22478,100,55,25,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22479,91,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22480,92,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22481,93,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22482,94,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22483,95,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22484,96,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22485,97,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22486,98,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22487,99,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22488,100,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22489,101,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22490,102,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22491,103,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22492,104,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22493,105,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22494,106,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22495,107,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22496,108,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22497,109,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22498,110,56,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22499,91,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22500,92,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22501,93,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22502,94,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22503,95,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22504,96,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22505,97,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22506,98,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22507,99,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22508,100,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22509,101,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22510,102,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22511,103,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22512,104,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22513,105,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22514,106,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22515,107,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22516,108,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22517,109,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22518,110,56,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22519,92,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22520,93,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22521,94,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22522,95,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22523,96,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22524,97,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22525,98,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22526,99,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22527,100,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22528,101,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22529,102,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22530,103,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22531,104,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22532,105,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22533,106,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22534,107,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22535,108,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22536,109,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22537,110,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22538,111,56,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22539,84,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22540,85,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22541,86,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22542,87,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22543,88,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22544,89,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22545,90,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22546,91,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22547,92,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22548,93,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22549,94,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22550,95,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22551,96,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22552,97,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22553,98,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22554,99,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22555,100,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22556,101,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22557,102,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22558,103,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22559,104,56,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22560,85,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22561,86,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22562,87,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22563,88,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22564,89,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22565,90,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22566,91,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22567,92,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22568,93,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22569,94,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22570,95,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22571,96,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22572,97,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22573,98,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22574,99,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22575,100,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22576,101,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22577,102,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22578,103,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22579,104,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22580,105,56,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22581,85,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22582,86,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22583,87,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22584,88,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22585,89,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22586,90,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22587,91,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22588,92,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22589,93,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22590,94,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22591,95,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22592,96,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22593,97,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22594,98,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22595,99,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22596,100,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22597,101,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22598,102,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22599,103,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22600,104,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22601,105,56,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22602,111,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22603,112,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22604,113,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22605,114,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22606,115,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22607,116,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22608,117,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22609,118,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22610,119,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22611,120,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22612,121,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22613,122,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22614,123,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22615,124,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22616,125,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22617,126,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22618,127,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22619,128,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22620,129,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22621,130,57,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22622,111,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22623,112,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22624,113,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22625,114,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22626,115,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22627,116,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22628,117,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22629,118,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22630,119,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22631,120,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22632,121,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22633,122,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22634,123,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22635,124,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22636,125,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22637,126,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22638,127,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22639,128,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22640,129,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22641,130,57,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22642,112,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22643,113,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22644,114,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22645,115,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22646,116,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22647,117,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22648,118,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22649,119,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22650,120,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22651,121,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22652,122,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22653,123,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22654,124,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22655,125,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22656,126,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22657,127,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22658,128,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22659,129,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22660,130,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22661,131,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22662,132,57,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22663,105,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22664,106,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22665,107,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22666,108,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22667,109,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22668,110,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22669,111,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22670,112,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22671,113,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22672,114,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22673,115,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22674,116,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22675,117,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22676,118,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22677,119,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22678,120,57,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22679,106,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22680,107,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22681,108,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22682,109,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22683,110,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22684,111,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22685,112,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22686,113,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22687,114,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22688,115,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22689,116,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22690,117,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22691,118,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22692,119,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22693,120,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22694,121,57,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22695,106,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22696,107,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22697,108,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22698,109,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22699,110,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22700,111,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22701,112,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22702,113,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22703,114,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22704,115,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22705,116,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22706,117,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22707,118,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22708,119,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22709,120,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22710,121,57,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22711,131,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22712,132,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22713,133,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22714,134,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22715,135,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22716,136,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22717,137,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22718,138,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22719,139,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22720,140,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22721,141,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22722,142,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22723,143,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22724,144,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22725,145,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22726,146,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22727,147,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22728,148,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22729,149,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22730,150,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22731,151,58,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22732,131,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22733,132,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22734,133,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22735,134,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22736,135,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22737,136,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22738,137,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22739,138,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22740,139,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22741,140,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22742,141,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22743,142,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22744,143,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22745,144,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22746,145,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22747,146,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22748,147,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22749,148,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22750,149,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22751,150,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22752,151,58,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22753,133,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22754,134,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22755,135,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22756,136,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22757,137,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22758,138,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22759,139,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22760,140,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22761,141,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22762,142,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22763,143,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22764,144,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22765,145,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22766,146,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22767,147,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22768,148,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22769,149,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22770,150,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22771,151,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22772,152,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22773,153,58,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22774,121,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22775,122,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22776,123,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22777,124,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22778,125,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22779,126,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22780,127,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22781,128,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22782,129,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22783,130,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22784,131,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22785,132,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22786,133,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22787,134,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22788,135,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22789,136,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22790,137,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22791,138,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22792,139,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22793,140,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22794,141,58,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22795,122,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22796,123,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22797,124,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22798,125,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22799,126,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22800,127,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22801,128,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22802,129,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22803,130,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22804,131,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22805,132,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22806,133,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22807,134,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22808,135,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22809,136,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22810,137,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22811,138,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22812,139,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22813,140,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22814,141,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22815,142,58,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22816,122,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22817,123,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22818,124,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22819,125,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22820,126,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22821,127,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22822,128,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22823,129,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22824,130,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22825,131,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22826,132,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22827,133,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22828,134,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22829,135,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22830,136,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22831,137,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22832,138,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22833,139,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22834,140,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22835,141,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22836,142,58,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22837,152,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22838,153,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22839,154,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22840,155,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22841,156,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22842,157,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22843,158,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22844,159,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22845,160,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22846,161,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22847,162,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22848,163,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22849,164,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22850,165,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22851,166,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22852,167,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22853,168,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22854,169,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22855,170,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22856,171,59,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22857,152,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22858,153,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22859,154,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22860,155,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22861,156,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22862,157,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22863,158,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22864,159,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22865,160,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22866,161,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22867,162,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22868,163,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22869,164,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22870,165,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22871,166,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22872,167,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22873,168,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22874,169,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22875,170,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22876,171,59,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22877,154,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22878,155,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22879,156,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22880,157,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22881,158,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22882,159,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22883,160,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22884,161,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22885,162,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22886,163,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22887,164,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22888,165,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22889,166,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22890,167,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22891,168,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22892,169,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22893,170,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22894,171,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22895,172,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22896,173,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22897,174,59,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22898,142,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22899,143,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22900,144,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22901,145,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22902,146,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22903,147,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22904,148,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22905,149,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22906,150,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22907,151,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22908,152,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22909,153,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22910,154,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22911,155,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22912,156,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22913,157,59,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22914,143,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22915,144,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22916,145,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22917,146,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22918,147,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22919,148,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22920,149,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22921,150,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22922,151,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22923,152,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22924,153,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22925,154,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22926,155,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22927,156,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22928,157,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22929,158,59,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22930,143,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22931,144,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22932,145,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22933,146,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22934,147,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22935,148,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22936,149,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22937,150,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22938,151,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22939,152,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22940,153,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22941,154,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22942,155,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22943,156,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22944,157,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22945,158,59,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22946,172,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22947,173,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22948,174,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22949,175,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22950,176,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22951,177,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22952,178,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22953,179,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22954,180,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22955,181,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22956,182,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22957,183,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22958,184,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22959,185,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22960,186,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22961,187,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22962,188,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22963,189,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22964,190,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22965,191,60,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22966,172,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22967,173,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22968,174,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22969,175,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22970,176,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22971,177,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22972,178,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22973,179,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22974,180,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22975,181,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22976,182,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22977,183,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22978,184,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22979,185,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22980,186,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22981,187,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22982,188,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22983,189,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22984,190,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22985,191,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22986,192,60,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22987,175,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22988,176,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22989,177,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22990,178,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22991,179,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22992,180,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22993,181,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22994,182,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22995,183,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22996,184,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22997,185,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22998,186,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(22999,187,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23000,188,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23001,189,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23002,190,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23003,191,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23004,192,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23005,193,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23006,194,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23007,195,60,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23008,158,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23009,159,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23010,160,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23011,161,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23012,162,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23013,163,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23014,164,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23015,165,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23016,166,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23017,167,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23018,168,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23019,169,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23020,170,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23021,171,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23022,172,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23023,173,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23024,174,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23025,175,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23026,176,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23027,177,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23028,178,60,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23029,159,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23030,160,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23031,161,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23032,162,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23033,163,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23034,164,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23035,165,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23036,166,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23037,167,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23038,168,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23039,169,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23040,170,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23041,171,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23042,172,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23043,173,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23044,174,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23045,175,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23046,176,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23047,177,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23048,178,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23049,179,60,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23050,159,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23051,160,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23052,161,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23053,162,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23054,163,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23055,164,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23056,165,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23057,166,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23058,167,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23059,168,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23060,169,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23061,170,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23062,171,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23063,172,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23064,173,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23065,174,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23066,175,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23067,176,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23068,177,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23069,178,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23070,179,60,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23071,192,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23072,193,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23073,194,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23074,195,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23075,196,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23076,197,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23077,198,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23078,199,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23079,200,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23080,201,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23081,202,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23082,203,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23083,204,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23084,205,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23085,206,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23086,207,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23087,208,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23088,209,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23089,210,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23090,211,61,1,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23091,193,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23092,194,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23093,195,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23094,196,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23095,197,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23096,198,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23097,199,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23098,200,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23099,201,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23100,202,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23101,203,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23102,204,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23103,205,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23104,206,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23105,207,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23106,208,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23107,209,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23108,210,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23109,211,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23110,212,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23111,213,61,2,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23112,196,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23113,197,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23114,198,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23115,199,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23116,200,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23117,201,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23118,202,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23119,203,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23120,204,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23121,205,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23122,206,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23123,207,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23124,208,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23125,209,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23126,210,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23127,211,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23128,212,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23129,213,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23130,214,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23131,215,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23132,216,61,3,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23133,179,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23134,180,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23135,181,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23136,182,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23137,183,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23138,184,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23139,185,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23140,186,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23141,187,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23142,188,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23143,189,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23144,190,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23145,191,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23146,192,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23147,193,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23148,194,61,5,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23149,180,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23150,181,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23151,182,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23152,183,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23153,184,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23154,185,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23155,186,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23156,187,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23157,188,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23158,189,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23159,190,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23160,191,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23161,192,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23162,193,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23163,194,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23164,195,61,6,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23165,180,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23166,181,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23167,182,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23168,183,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23169,184,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23170,185,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23171,186,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23172,187,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23173,188,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23174,189,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23175,190,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23176,191,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23177,192,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23178,193,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23179,194,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23180,195,61,7,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23181,85,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23182,86,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23183,87,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23184,88,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23185,89,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23186,90,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23187,91,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23188,92,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23189,93,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23190,94,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23191,95,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23192,96,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23193,97,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23194,98,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23195,99,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23196,100,61,8,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23197,95,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23198,96,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23199,97,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23200,98,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23201,99,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23202,100,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23203,101,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23204,102,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23205,103,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23206,104,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23207,105,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23208,106,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23209,107,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23210,108,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23211,109,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23212,110,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23213,111,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23214,112,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23215,113,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23216,114,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23217,115,61,9,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23218,95,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23219,96,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23220,97,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23221,98,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23222,99,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23223,100,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23224,101,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23225,102,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23226,103,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23227,104,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23228,105,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23229,106,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23230,107,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23231,108,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23232,109,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23233,110,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23234,111,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23235,112,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23236,113,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23237,114,61,10,1,'2022-09-02 14:23:48','2022-09-02 14:23:48'),(23238,115,61,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23239,95,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23240,96,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23241,97,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23242,98,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23243,99,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23244,100,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23245,101,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23246,102,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23247,103,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23248,104,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23249,105,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23250,106,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23251,107,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23252,108,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23253,109,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23254,110,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23255,111,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23256,112,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23257,113,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23258,114,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23259,115,61,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23260,95,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23261,96,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23262,97,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23263,98,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23264,99,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23265,100,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23266,101,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23267,102,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23268,103,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23269,104,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23270,105,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23271,106,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23272,107,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23273,108,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23274,109,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23275,110,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23276,111,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23277,112,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23278,113,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23279,114,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23280,115,61,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23281,96,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23282,97,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23283,98,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23284,99,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23285,100,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23286,101,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23287,102,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23288,103,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23289,104,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23290,105,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23291,106,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23292,107,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23293,108,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23294,109,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23295,110,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23296,111,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23297,112,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23298,113,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23299,114,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23300,115,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23301,116,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23302,117,61,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23303,98,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23304,99,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23305,100,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23306,101,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23307,102,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23308,103,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23309,104,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23310,105,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23311,106,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23312,107,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23313,108,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23314,109,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23315,110,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23316,111,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23317,112,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23318,113,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23319,114,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23320,115,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23321,116,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23322,117,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23323,118,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23324,119,61,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23325,98,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23326,99,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23327,100,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23328,101,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23329,102,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23330,103,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23331,104,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23332,105,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23333,106,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23334,107,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23335,108,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23336,109,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23337,110,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23338,111,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23339,112,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23340,113,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23341,114,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23342,115,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23343,116,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23344,117,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23345,118,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23346,119,61,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23347,99,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23348,100,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23349,101,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23350,102,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23351,103,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23352,104,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23353,105,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23354,106,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23355,107,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23356,108,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23357,109,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23358,110,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23359,111,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23360,112,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23361,113,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23362,114,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23363,115,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23364,116,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23365,117,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23366,118,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23367,119,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23368,120,61,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23369,100,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23370,101,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23371,102,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23372,103,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23373,104,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23374,105,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23375,106,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23376,107,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23377,108,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23378,109,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23379,110,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23380,111,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23381,112,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23382,113,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23383,114,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23384,115,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23385,116,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23386,117,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23387,118,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23388,119,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23389,120,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23390,121,61,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23391,100,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23392,101,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23393,102,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23394,103,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23395,104,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23396,105,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23397,106,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23398,107,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23399,108,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23400,109,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23401,110,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23402,111,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23403,112,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23404,113,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23405,114,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23406,115,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23407,116,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23408,117,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23409,118,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23410,119,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23411,120,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23412,121,61,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23413,106,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23414,107,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23415,108,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23416,109,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23417,110,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23418,111,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23419,112,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23420,113,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23421,114,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23422,115,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23423,116,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23424,117,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23425,118,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23426,119,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23427,120,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23428,121,61,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23429,212,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23430,213,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23431,214,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23432,215,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23433,216,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23434,217,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23435,218,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23436,219,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23437,220,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23438,221,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23439,222,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23440,223,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23441,224,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23442,225,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23443,226,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23444,227,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23445,228,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23446,229,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23447,230,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23448,231,62,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23449,214,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23450,215,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23451,216,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23452,217,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23453,218,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23454,219,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23455,220,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23456,221,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23457,222,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23458,223,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23459,224,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23460,225,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23461,226,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23462,227,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23463,228,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23464,229,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23465,230,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23466,231,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23467,232,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23468,233,62,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23469,217,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23470,218,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23471,219,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23472,220,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23473,221,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23474,222,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23475,223,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23476,224,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23477,225,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23478,226,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23479,227,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23480,228,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23481,229,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23482,230,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23483,231,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23484,232,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23485,233,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23486,234,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23487,235,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23488,236,62,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23489,195,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23490,196,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23491,197,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23492,198,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23493,199,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23494,200,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23495,201,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23496,202,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23497,203,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23498,204,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23499,205,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23500,206,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23501,207,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23502,208,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23503,209,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23504,210,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23505,211,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23506,212,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23507,213,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23508,214,62,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23509,196,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23510,197,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23511,198,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23512,199,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23513,200,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23514,201,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23515,202,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23516,203,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23517,204,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23518,205,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23519,206,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23520,207,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23521,208,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23522,209,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23523,210,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23524,211,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23525,212,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23526,213,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23527,214,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23528,215,62,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23529,196,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23530,197,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23531,198,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23532,199,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23533,200,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23534,201,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23535,202,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23536,203,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23537,204,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23538,205,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23539,206,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23540,207,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23541,208,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23542,209,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23543,210,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23544,211,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23545,212,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23546,213,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23547,214,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23548,215,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23549,216,62,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23550,101,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23551,102,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23552,103,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23553,104,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23554,105,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23555,106,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23556,107,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23557,108,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23558,109,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23559,110,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23560,111,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23561,112,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23562,113,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23563,114,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23564,115,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23565,116,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23566,117,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23567,118,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23568,119,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23569,120,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23570,121,62,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23571,116,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23572,117,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23573,118,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23574,119,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23575,120,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23576,121,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23577,122,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23578,123,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23579,124,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23580,125,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23581,126,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23582,127,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23583,128,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23584,129,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23585,130,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23586,131,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23587,132,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23588,133,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23589,134,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23590,135,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23591,136,62,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23592,116,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23593,117,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23594,118,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23595,119,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23596,120,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23597,121,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23598,122,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23599,123,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23600,124,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23601,125,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23602,126,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23603,127,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23604,128,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23605,129,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23606,130,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23607,131,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23608,132,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23609,133,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23610,134,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23611,135,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23612,136,62,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23613,116,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23614,117,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23615,118,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23616,119,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23617,120,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23618,121,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23619,122,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23620,123,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23621,124,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23622,125,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23623,126,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23624,127,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23625,128,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23626,129,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23627,130,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23628,131,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23629,132,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23630,133,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23631,134,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23632,135,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23633,136,62,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23634,116,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23635,117,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23636,118,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23637,119,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23638,120,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23639,121,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23640,122,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23641,123,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23642,124,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23643,125,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23644,126,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23645,127,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23646,128,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23647,129,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23648,130,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23649,131,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23650,132,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23651,133,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23652,134,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23653,135,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23654,136,62,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23655,118,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23656,119,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23657,120,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23658,121,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23659,122,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23660,123,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23661,124,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23662,125,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23663,126,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23664,127,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23665,128,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23666,129,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23667,130,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23668,131,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23669,132,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23670,133,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23671,134,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23672,135,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23673,136,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23674,137,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23675,138,62,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23676,120,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23677,121,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23678,122,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23679,123,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23680,124,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23681,125,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23682,126,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23683,127,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23684,128,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23685,129,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23686,130,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23687,131,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23688,132,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23689,133,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23690,134,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23691,135,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23692,136,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23693,137,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23694,138,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23695,139,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23696,140,62,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23697,120,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23698,121,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23699,122,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23700,123,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23701,124,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23702,125,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23703,126,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23704,127,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23705,128,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23706,129,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23707,130,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23708,131,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23709,132,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23710,133,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23711,134,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23712,135,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23713,136,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23714,137,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23715,138,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23716,139,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23717,140,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23718,141,62,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23719,121,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23720,122,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23721,123,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23722,124,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23723,125,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23724,126,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23725,127,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23726,128,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23727,129,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23728,130,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23729,131,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23730,132,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23731,133,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23732,134,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23733,135,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23734,136,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23735,137,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23736,138,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23737,139,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23738,140,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23739,141,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23740,142,62,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23741,122,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23742,123,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23743,124,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23744,125,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23745,126,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23746,127,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23747,128,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23748,129,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23749,130,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23750,131,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23751,132,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23752,133,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23753,134,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23754,135,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23755,136,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23756,137,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23757,138,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23758,139,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23759,140,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23760,141,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23761,142,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23762,143,62,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23763,122,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23764,123,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23765,124,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23766,125,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23767,126,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23768,127,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23769,128,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23770,129,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23771,130,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23772,131,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23773,132,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23774,133,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23775,134,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23776,135,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23777,136,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23778,137,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23779,138,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23780,139,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23781,140,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23782,141,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23783,142,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23784,143,62,19,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23785,122,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23786,123,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23787,124,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23788,125,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23789,126,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23790,127,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23791,128,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23792,129,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23793,130,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23794,131,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23795,132,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23796,133,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23797,134,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23798,135,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23799,136,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23800,137,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23801,138,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23802,139,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23803,140,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23804,141,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23805,142,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23806,143,62,20,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23807,122,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23808,123,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23809,124,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23810,125,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23811,126,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23812,127,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23813,128,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23814,129,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23815,130,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23816,131,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23817,132,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23818,133,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23819,134,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23820,135,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23821,136,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23822,137,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23823,138,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23824,139,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23825,140,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23826,141,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23827,142,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23828,143,62,21,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23829,123,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23830,124,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23831,125,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23832,126,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23833,127,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23834,128,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23835,129,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23836,130,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23837,131,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23838,132,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23839,133,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23840,134,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23841,135,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23842,136,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23843,137,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23844,138,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23845,139,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23846,140,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23847,141,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23848,142,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23849,143,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23850,144,62,22,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23851,124,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23852,125,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23853,126,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23854,127,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23855,128,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23856,129,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23857,130,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23858,131,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23859,132,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23860,133,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23861,134,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23862,135,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23863,136,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23864,137,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23865,138,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23866,139,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23867,140,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23868,141,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23869,142,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23870,143,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23871,144,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23872,145,62,23,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23873,124,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23874,125,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23875,126,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23876,127,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23877,128,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23878,129,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23879,130,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23880,131,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23881,132,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23882,133,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23883,134,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23884,135,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23885,136,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23886,137,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23887,138,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23888,139,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23889,140,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23890,141,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23891,142,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23892,143,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23893,144,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23894,145,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23895,146,62,24,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23896,125,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23897,126,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23898,127,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23899,128,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23900,129,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23901,130,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23902,131,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23903,132,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23904,133,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23905,134,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23906,135,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23907,136,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23908,137,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23909,138,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23910,139,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23911,140,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23912,141,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23913,142,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23914,143,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23915,144,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23916,145,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23917,146,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23918,147,62,25,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23919,232,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23920,233,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23921,234,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23922,235,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23923,236,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23924,237,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23925,238,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23926,239,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23927,240,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23928,241,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23929,242,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23930,243,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23931,244,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23932,245,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23933,246,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23934,247,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23935,248,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23936,249,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23937,250,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23938,251,63,1,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23939,234,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23940,235,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23941,236,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23942,237,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23943,238,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23944,239,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23945,240,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23946,241,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23947,242,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23948,243,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23949,244,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23950,245,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23951,246,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23952,247,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23953,248,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23954,249,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23955,250,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23956,251,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23957,252,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23958,253,63,2,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23959,237,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23960,238,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23961,239,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23962,240,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23963,241,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23964,242,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23965,243,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23966,244,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23967,245,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23968,246,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23969,247,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23970,248,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23971,249,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23972,250,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23973,251,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23974,252,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23975,253,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23976,254,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23977,255,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23978,256,63,3,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23979,215,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23980,216,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23981,217,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23982,218,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23983,219,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23984,220,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23985,221,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23986,222,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23987,223,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23988,224,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23989,225,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23990,226,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23991,227,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23992,228,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23993,229,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23994,230,63,5,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23995,216,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23996,217,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23997,218,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23998,219,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(23999,220,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24000,221,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24001,222,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24002,223,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24003,224,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24004,225,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24005,226,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24006,227,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24007,228,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24008,229,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24009,230,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24010,231,63,6,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24011,217,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24012,218,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24013,219,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24014,220,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24015,221,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24016,222,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24017,223,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24018,224,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24019,225,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24020,226,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24021,227,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24022,228,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24023,229,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24024,230,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24025,231,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24026,232,63,7,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24027,122,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24028,123,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24029,124,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24030,125,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24031,126,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24032,127,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24033,128,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24034,129,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24035,130,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24036,131,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24037,132,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24038,133,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24039,134,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24040,135,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24041,136,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24042,137,63,8,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24043,137,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24044,138,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24045,139,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24046,140,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24047,141,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24048,142,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24049,143,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24050,144,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24051,145,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24052,146,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24053,147,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24054,148,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24055,149,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24056,150,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24057,151,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24058,152,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24059,153,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24060,154,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24061,155,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24062,156,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24063,157,63,9,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24064,137,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24065,138,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24066,139,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24067,140,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24068,141,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24069,142,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24070,143,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24071,144,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24072,145,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24073,146,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24074,147,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24075,148,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24076,149,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24077,150,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24078,151,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24079,152,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24080,153,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24081,154,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24082,155,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24083,156,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24084,157,63,10,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24085,137,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24086,138,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24087,139,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24088,140,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24089,141,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24090,142,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24091,143,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24092,144,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24093,145,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24094,146,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24095,147,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24096,148,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24097,149,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24098,150,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24099,151,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24100,152,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24101,153,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24102,154,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24103,155,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24104,156,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24105,157,63,11,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24106,137,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24107,138,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24108,139,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24109,140,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24110,141,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24111,142,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24112,143,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24113,144,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24114,145,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24115,146,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24116,147,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24117,148,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24118,149,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24119,150,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24120,151,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24121,152,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24122,153,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24123,154,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24124,155,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24125,156,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24126,157,63,12,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24127,139,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24128,140,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24129,141,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24130,142,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24131,143,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24132,144,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24133,145,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24134,146,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24135,147,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24136,148,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24137,149,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24138,150,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24139,151,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24140,152,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24141,153,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24142,154,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24143,155,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24144,156,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24145,157,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24146,158,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24147,159,63,13,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24148,141,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24149,142,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24150,143,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24151,144,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24152,145,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24153,146,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24154,147,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24155,148,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24156,149,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24157,150,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24158,151,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24159,152,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24160,153,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24161,154,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24162,155,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24163,156,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24164,157,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24165,158,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24166,159,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24167,160,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24168,161,63,14,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24169,142,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24170,143,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24171,144,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24172,145,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24173,146,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24174,147,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24175,148,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24176,149,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24177,150,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24178,151,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24179,152,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24180,153,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24181,154,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24182,155,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24183,156,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24184,157,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24185,158,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24186,159,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24187,160,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24188,161,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24189,162,63,15,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24190,143,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24191,144,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24192,145,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24193,146,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24194,147,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24195,148,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24196,149,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24197,150,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24198,151,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24199,152,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24200,153,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24201,154,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24202,155,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24203,156,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24204,157,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24205,158,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24206,159,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24207,160,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24208,161,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24209,162,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24210,163,63,16,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24211,144,63,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24212,145,63,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24213,146,63,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24214,147,63,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24215,148,63,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24216,149,63,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24217,150,63,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24218,151,63,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24219,152,63,18,1,'2022-09-02 14:23:49','2022-09-02 14:23:49'),(24220,153,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24221,154,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24222,155,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24223,156,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24224,157,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24225,158,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24226,159,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24227,160,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24228,161,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24229,162,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24230,163,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24231,164,63,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24232,144,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24233,145,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24234,146,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24235,147,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24236,148,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24237,149,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24238,150,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24239,151,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24240,152,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24241,153,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24242,154,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24243,155,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24244,156,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24245,157,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24246,158,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24247,159,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24248,160,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24249,161,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24250,162,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24251,163,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24252,164,63,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24253,144,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24254,145,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24255,146,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24256,147,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24257,148,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24258,149,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24259,150,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24260,151,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24261,152,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24262,153,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24263,154,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24264,155,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24265,156,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24266,157,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24267,158,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24268,159,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24269,160,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24270,161,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24271,162,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24272,163,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24273,164,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24274,165,63,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24275,144,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24276,145,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24277,146,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24278,147,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24279,148,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24280,149,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24281,150,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24282,151,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24283,152,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24284,153,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24285,154,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24286,155,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24287,156,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24288,157,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24289,158,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24290,159,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24291,160,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24292,161,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24293,162,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24294,163,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24295,164,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24296,165,63,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24297,145,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24298,146,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24299,147,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24300,148,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24301,149,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24302,150,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24303,151,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24304,152,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24305,153,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24306,154,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24307,155,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24308,156,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24309,157,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24310,158,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24311,159,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24312,160,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24313,161,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24314,162,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24315,163,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24316,164,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24317,165,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24318,166,63,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24319,146,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24320,147,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24321,148,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24322,149,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24323,150,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24324,151,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24325,152,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24326,153,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24327,154,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24328,155,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24329,156,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24330,157,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24331,158,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24332,159,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24333,160,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24334,161,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24335,162,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24336,163,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24337,164,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24338,165,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24339,166,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24340,167,63,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24341,147,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24342,148,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24343,149,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24344,150,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24345,151,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24346,152,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24347,153,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24348,154,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24349,155,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24350,156,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24351,157,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24352,158,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24353,159,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24354,160,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24355,161,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24356,162,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24357,163,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24358,164,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24359,165,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24360,166,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24361,167,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24362,168,63,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24363,148,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24364,149,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24365,150,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24366,151,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24367,152,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24368,153,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24369,154,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24370,155,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24371,156,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24372,157,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24373,158,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24374,159,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24375,160,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24376,161,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24377,162,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24378,163,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24379,164,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24380,165,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24381,166,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24382,167,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24383,168,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24384,169,63,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24385,252,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24386,253,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24387,254,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24388,255,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24389,256,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24390,257,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24391,258,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24392,259,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24393,260,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24394,261,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24395,262,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24396,263,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24397,264,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24398,265,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24399,266,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24400,267,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24401,268,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24402,269,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24403,270,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24404,271,64,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24405,254,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24406,255,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24407,256,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24408,257,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24409,258,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24410,259,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24411,260,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24412,261,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24413,262,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24414,263,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24415,264,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24416,265,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24417,266,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24418,267,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24419,268,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24420,269,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24421,270,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24422,271,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24423,272,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24424,273,64,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24425,257,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24426,258,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24427,259,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24428,260,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24429,261,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24430,262,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24431,263,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24432,264,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24433,265,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24434,266,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24435,267,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24436,268,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24437,269,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24438,270,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24439,271,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24440,272,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24441,273,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24442,274,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24443,275,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24444,276,64,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24445,231,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24446,232,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24447,233,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24448,234,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24449,235,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24450,236,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24451,237,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24452,238,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24453,239,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24454,240,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24455,241,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24456,242,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24457,243,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24458,244,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24459,245,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24460,246,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24461,247,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24462,248,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24463,249,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24464,250,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24465,251,64,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24466,232,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24467,233,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24468,234,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24469,235,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24470,236,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24471,237,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24472,238,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24473,239,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24474,240,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24475,241,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24476,242,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24477,243,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24478,244,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24479,245,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24480,246,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24481,247,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24482,248,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24483,249,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24484,250,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24485,251,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24486,252,64,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24487,233,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24488,234,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24489,235,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24490,236,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24491,237,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24492,238,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24493,239,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24494,240,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24495,241,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24496,242,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24497,243,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24498,244,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24499,245,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24500,246,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24501,247,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24502,248,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24503,249,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24504,250,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24505,251,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24506,252,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24507,253,64,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24508,138,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24509,139,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24510,140,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24511,141,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24512,142,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24513,143,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24514,144,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24515,145,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24516,146,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24517,147,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24518,148,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24519,149,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24520,150,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24521,151,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24522,152,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24523,153,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24524,154,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24525,155,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24526,156,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24527,157,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24528,158,64,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24529,158,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24530,159,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24531,160,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24532,161,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24533,162,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24534,163,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24535,164,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24536,165,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24537,166,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24538,167,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24539,168,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24540,169,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24541,170,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24542,171,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24543,172,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24544,173,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24545,174,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24546,175,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24547,176,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24548,177,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24549,178,64,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24550,158,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24551,159,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24552,160,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24553,161,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24554,162,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24555,163,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24556,164,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24557,165,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24558,166,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24559,167,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24560,168,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24561,169,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24562,170,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24563,171,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24564,172,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24565,173,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24566,174,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24567,175,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24568,176,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24569,177,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24570,178,64,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24571,158,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24572,159,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24573,160,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24574,161,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24575,162,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24576,163,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24577,164,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24578,165,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24579,166,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24580,167,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24581,168,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24582,169,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24583,170,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24584,171,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24585,172,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24586,173,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24587,174,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24588,175,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24589,176,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24590,177,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24591,178,64,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24592,158,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24593,159,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24594,160,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24595,161,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24596,162,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24597,163,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24598,164,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24599,165,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24600,166,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24601,167,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24602,168,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24603,169,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24604,170,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24605,171,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24606,172,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24607,173,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24608,174,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24609,175,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24610,176,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24611,177,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24612,178,64,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24613,160,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24614,161,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24615,162,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24616,163,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24617,164,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24618,165,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24619,166,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24620,167,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24621,168,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24622,169,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24623,170,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24624,171,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24625,172,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24626,173,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24627,174,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24628,175,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24629,176,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24630,177,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24631,178,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24632,179,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24633,180,64,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24634,162,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24635,163,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24636,164,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24637,165,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24638,166,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24639,167,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24640,168,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24641,169,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24642,170,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24643,171,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24644,172,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24645,173,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24646,174,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24647,175,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24648,176,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24649,177,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24650,178,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24651,179,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24652,180,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24653,181,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24654,182,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24655,183,64,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24656,163,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24657,164,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24658,165,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24659,166,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24660,167,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24661,168,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24662,169,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24663,170,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24664,171,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24665,172,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24666,173,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24667,174,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24668,175,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24669,176,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24670,177,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24671,178,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24672,179,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24673,180,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24674,181,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24675,182,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24676,183,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24677,184,64,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24678,164,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24679,165,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24680,166,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24681,167,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24682,168,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24683,169,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24684,170,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24685,171,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24686,172,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24687,173,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24688,174,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24689,175,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24690,176,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24691,177,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24692,178,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24693,179,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24694,180,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24695,181,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24696,182,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24697,183,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24698,184,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24699,185,64,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24700,165,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24701,166,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24702,167,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24703,168,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24704,169,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24705,170,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24706,171,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24707,172,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24708,173,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24709,174,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24710,175,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24711,176,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24712,177,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24713,178,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24714,179,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24715,180,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24716,181,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24717,182,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24718,183,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24719,184,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24720,185,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24721,186,64,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24722,165,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24723,166,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24724,167,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24725,168,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24726,169,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24727,170,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24728,171,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24729,172,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24730,173,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24731,174,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24732,175,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24733,176,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24734,177,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24735,178,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24736,179,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24737,180,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24738,181,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24739,182,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24740,183,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24741,184,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24742,185,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24743,186,64,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24744,166,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24745,167,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24746,168,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24747,169,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24748,170,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24749,171,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24750,172,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24751,173,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24752,174,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24753,175,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24754,176,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24755,177,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24756,178,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24757,179,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24758,180,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24759,181,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24760,182,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24761,183,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24762,184,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24763,185,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24764,186,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24765,187,64,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24766,166,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24767,167,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24768,168,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24769,169,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24770,170,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24771,171,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24772,172,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24773,173,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24774,174,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24775,175,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24776,176,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24777,177,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24778,178,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24779,179,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24780,180,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24781,181,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24782,182,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24783,183,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24784,184,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24785,185,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24786,186,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24787,187,64,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24788,167,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24789,168,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24790,169,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24791,170,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24792,171,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24793,172,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24794,173,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24795,174,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24796,175,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24797,176,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24798,177,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24799,178,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24800,179,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24801,180,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24802,181,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24803,182,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24804,183,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24805,184,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24806,185,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24807,186,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24808,187,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24809,188,64,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24810,168,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24811,169,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24812,170,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24813,171,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24814,172,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24815,173,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24816,174,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24817,175,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24818,176,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24819,177,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24820,178,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24821,179,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24822,180,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24823,181,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24824,182,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24825,183,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24826,184,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24827,185,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24828,186,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24829,187,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24830,188,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24831,189,64,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24832,169,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24833,170,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24834,171,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24835,172,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24836,173,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24837,174,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24838,175,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24839,176,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24840,177,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24841,178,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24842,179,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24843,180,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24844,181,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24845,182,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24846,183,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24847,184,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24848,185,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24849,186,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24850,187,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24851,188,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24852,189,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24853,190,64,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24854,170,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24855,171,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24856,172,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24857,173,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24858,174,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24859,175,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24860,176,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24861,177,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24862,178,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24863,179,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24864,180,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24865,181,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24866,182,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24867,183,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24868,184,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24869,185,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24870,186,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24871,187,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24872,188,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24873,189,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24874,190,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24875,191,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24876,192,64,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24877,272,65,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24878,273,65,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24879,274,65,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24880,275,65,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24881,276,65,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24882,277,65,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24883,278,65,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24884,279,65,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24885,280,65,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24886,281,65,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24887,274,65,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24888,275,65,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24889,276,65,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24890,277,65,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24891,278,65,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24892,279,65,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24893,280,65,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24894,281,65,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24895,282,65,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24896,283,65,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24897,277,65,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24898,278,65,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24899,279,65,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24900,280,65,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24901,281,65,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24902,282,65,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24903,283,65,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24904,284,65,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24905,285,65,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24906,286,65,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24907,277,65,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24908,278,65,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24909,279,65,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24910,280,65,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24911,281,65,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24912,282,65,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24913,283,65,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24914,284,65,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24915,285,65,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24916,286,65,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24917,252,65,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24918,253,65,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24919,254,65,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24920,255,65,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24921,256,65,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24922,257,65,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24923,258,65,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24924,259,65,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24925,260,65,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24926,261,65,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24927,253,65,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24928,254,65,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24929,255,65,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24930,256,65,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24931,257,65,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24932,258,65,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24933,259,65,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24934,260,65,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24935,261,65,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24936,262,65,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24937,254,65,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24938,255,65,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24939,256,65,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24940,257,65,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24941,258,65,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24942,259,65,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24943,260,65,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24944,261,65,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24945,262,65,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24946,263,65,7,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24947,159,65,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24948,160,65,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24949,161,65,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24950,162,65,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24951,163,65,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24952,164,65,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24953,165,65,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24954,166,65,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24955,167,65,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24956,168,65,8,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24957,179,65,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24958,180,65,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24959,181,65,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24960,182,65,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24961,183,65,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24962,184,65,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24963,185,65,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24964,186,65,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24965,187,65,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24966,188,65,9,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24967,179,65,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24968,180,65,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24969,181,65,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24970,182,65,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24971,183,65,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24972,184,65,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24973,185,65,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24974,186,65,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24975,187,65,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24976,188,65,10,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24977,179,65,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24978,180,65,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24979,181,65,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24980,182,65,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24981,183,65,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24982,184,65,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24983,185,65,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24984,186,65,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24985,187,65,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24986,188,65,11,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24987,179,65,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24988,180,65,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24989,181,65,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24990,182,65,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24991,183,65,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24992,184,65,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24993,185,65,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24994,186,65,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24995,187,65,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24996,188,65,12,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24997,181,65,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24998,182,65,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(24999,183,65,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25000,184,65,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25001,185,65,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25002,186,65,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25003,187,65,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25004,188,65,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25005,189,65,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25006,190,65,13,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25007,184,65,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25008,185,65,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25009,186,65,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25010,187,65,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25011,188,65,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25012,189,65,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25013,190,65,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25014,191,65,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25015,192,65,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25016,193,65,14,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25017,185,65,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25018,186,65,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25019,187,65,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25020,188,65,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25021,189,65,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25022,190,65,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25023,191,65,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25024,192,65,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25025,193,65,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25026,194,65,15,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25027,186,65,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25028,187,65,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25029,188,65,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25030,189,65,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25031,190,65,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25032,191,65,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25033,192,65,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25034,193,65,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25035,194,65,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25036,195,65,16,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25037,187,65,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25038,188,65,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25039,189,65,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25040,190,65,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25041,191,65,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25042,192,65,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25043,193,65,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25044,194,65,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25045,195,65,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25046,196,65,18,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25047,187,65,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25048,188,65,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25049,189,65,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25050,190,65,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25051,191,65,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25052,192,65,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25053,193,65,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25054,194,65,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25055,195,65,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25056,196,65,19,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25057,188,65,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25058,189,65,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25059,190,65,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25060,191,65,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25061,192,65,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25062,193,65,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25063,194,65,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25064,195,65,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25065,196,65,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25066,197,65,20,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25067,188,65,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25068,189,65,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25069,190,65,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25070,191,65,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25071,192,65,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25072,193,65,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25073,194,65,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25074,195,65,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25075,196,65,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25076,197,65,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25077,198,65,21,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25078,189,65,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25079,190,65,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25080,191,65,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25081,192,65,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25082,193,65,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25083,194,65,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25084,195,65,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25085,196,65,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25086,197,65,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25087,198,65,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25088,199,65,22,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25089,190,65,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25090,191,65,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25091,192,65,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25092,193,65,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25093,194,65,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25094,195,65,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25095,196,65,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25096,197,65,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25097,198,65,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25098,199,65,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25099,200,65,23,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25100,191,65,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25101,192,65,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25102,193,65,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25103,194,65,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25104,195,65,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25105,196,65,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25106,197,65,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25107,198,65,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25108,199,65,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25109,200,65,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25110,201,65,24,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25111,193,65,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25112,194,65,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25113,195,65,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25114,196,65,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25115,197,65,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25116,198,65,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25117,199,65,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25118,200,65,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25119,201,65,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25120,202,65,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25121,203,65,25,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25122,1,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25123,2,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25124,3,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25125,4,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25126,5,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25127,6,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25128,7,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25129,8,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25130,9,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25131,10,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25132,11,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25133,12,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25134,13,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25135,14,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25136,15,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25137,16,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25138,17,66,1,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25139,1,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25140,2,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25141,3,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25142,4,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25143,5,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25144,6,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25145,7,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25146,8,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25147,9,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25148,10,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25149,11,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25150,12,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25151,13,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25152,14,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25153,15,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25154,16,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25155,17,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25156,18,66,2,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25157,1,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25158,2,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25159,3,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25160,4,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25161,5,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25162,6,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25163,7,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25164,8,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25165,9,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25166,10,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25167,11,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25168,12,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25169,13,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25170,14,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25171,15,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25172,16,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25173,17,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25174,18,66,3,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25175,1,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25176,2,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25177,3,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25178,4,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25179,5,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25180,6,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25181,7,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25182,8,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25183,9,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25184,10,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25185,11,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25186,12,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25187,13,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25188,14,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25189,15,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25190,16,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25191,17,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25192,18,66,4,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25193,1,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25194,2,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25195,3,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25196,4,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25197,5,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25198,6,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25199,7,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25200,8,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25201,9,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25202,10,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25203,11,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25204,12,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25205,13,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25206,14,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25207,15,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25208,16,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25209,17,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25210,18,66,5,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25211,1,66,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25212,2,66,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25213,3,66,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25214,4,66,6,1,'2022-09-02 14:23:50','2022-09-02 14:23:50'),(25215,5,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25216,6,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25217,7,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25218,8,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25219,9,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25220,10,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25221,11,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25222,12,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25223,13,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25224,14,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25225,15,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25226,16,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25227,17,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25228,18,66,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25229,1,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25230,2,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25231,3,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25232,4,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25233,5,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25234,6,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25235,7,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25236,8,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25237,9,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25238,10,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25239,11,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25240,12,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25241,13,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25242,14,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25243,15,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25244,16,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25245,17,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25246,18,66,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25247,1,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25248,2,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25249,3,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25250,4,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25251,5,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25252,6,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25253,7,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25254,8,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25255,9,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25256,10,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25257,11,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25258,12,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25259,13,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25260,14,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25261,15,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25262,16,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25263,17,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25264,18,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25265,19,66,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25266,1,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25267,2,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25268,3,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25269,4,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25270,5,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25271,6,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25272,7,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25273,8,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25274,9,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25275,10,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25276,11,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25277,12,66,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25278,1,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25279,2,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25280,3,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25281,4,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25282,5,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25283,6,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25284,7,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25285,8,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25286,9,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25287,10,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25288,11,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25289,12,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25290,13,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25291,14,67,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25292,1,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25293,2,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25294,3,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25295,4,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25296,5,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25297,6,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25298,7,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25299,8,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25300,9,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25301,10,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25302,11,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25303,12,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25304,13,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25305,14,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25306,15,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25307,16,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25308,17,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25309,18,67,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25310,1,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25311,2,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25312,3,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25313,4,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25314,5,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25315,6,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25316,7,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25317,8,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25318,9,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25319,10,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25320,11,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25321,12,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25322,13,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25323,14,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25324,15,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25325,16,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25326,17,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25327,18,67,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25328,1,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25329,2,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25330,3,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25331,4,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25332,5,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25333,6,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25334,7,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25335,8,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25336,9,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25337,10,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25338,11,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25339,12,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25340,13,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25341,14,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25342,15,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25343,16,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25344,17,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25345,18,67,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25346,1,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25347,2,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25348,3,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25349,4,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25350,5,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25351,6,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25352,7,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25353,8,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25354,9,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25355,10,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25356,11,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25357,12,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25358,13,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25359,14,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25360,15,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25361,16,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25362,17,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25363,18,68,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25364,1,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25365,2,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25366,3,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25367,4,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25368,5,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25369,6,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25370,7,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25371,8,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25372,9,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25373,10,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25374,11,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25375,12,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25376,13,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25377,14,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25378,15,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25379,16,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25380,17,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25381,18,68,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25382,1,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25383,2,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25384,3,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25385,4,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25386,5,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25387,6,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25388,7,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25389,8,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25390,9,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25391,10,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25392,11,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25393,12,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25394,13,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25395,14,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25396,15,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25397,16,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25398,17,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25399,18,68,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25400,1,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25401,2,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25402,3,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25403,4,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25404,5,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25405,6,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25406,7,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25407,8,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25408,9,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25409,10,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25410,11,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25411,12,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25412,13,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25413,14,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25414,15,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25415,16,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25416,17,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25417,18,68,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25418,1,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25419,2,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25420,3,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25421,4,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25422,5,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25423,6,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25424,7,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25425,8,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25426,9,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25427,10,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25428,11,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25429,12,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25430,13,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25431,14,69,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25432,1,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25433,2,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25434,3,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25435,4,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25436,5,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25437,6,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25438,7,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25439,8,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25440,9,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25441,10,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25442,11,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25443,12,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25444,13,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25445,14,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25446,15,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25447,16,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25448,17,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25449,18,69,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25450,1,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25451,2,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25452,3,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25453,4,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25454,5,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25455,6,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25456,7,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25457,8,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25458,9,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25459,10,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25460,11,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25461,12,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25462,13,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25463,14,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25464,15,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25465,16,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25466,17,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25467,18,69,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25468,1,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25469,2,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25470,3,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25471,4,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25472,5,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25473,6,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25474,7,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25475,8,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25476,9,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25477,10,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25478,11,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25479,12,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25480,13,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25481,14,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25482,15,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25483,16,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25484,17,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25485,18,69,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25486,1,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25487,2,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25488,3,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25489,4,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25490,5,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25491,6,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25492,7,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25493,8,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25494,9,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25495,10,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25496,11,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25497,12,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25498,13,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25499,14,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25500,15,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25501,16,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25502,17,70,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25503,1,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25504,2,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25505,3,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25506,4,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25507,5,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25508,6,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25509,7,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25510,8,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25511,9,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25512,10,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25513,11,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25514,12,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25515,13,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25516,14,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25517,15,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25518,16,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25519,17,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25520,18,70,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25521,1,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25522,2,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25523,3,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25524,4,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25525,5,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25526,6,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25527,7,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25528,8,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25529,9,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25530,10,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25531,11,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25532,12,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25533,13,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25534,14,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25535,15,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25536,16,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25537,17,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25538,18,70,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25539,1,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25540,2,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25541,3,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25542,4,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25543,5,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25544,6,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25545,7,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25546,8,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25547,9,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25548,10,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25549,11,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25550,12,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25551,13,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25552,14,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25553,15,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25554,16,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25555,17,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25556,18,70,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25557,1,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25558,2,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25559,3,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25560,4,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25561,5,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25562,6,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25563,7,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25564,8,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25565,9,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25566,10,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25567,11,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25568,12,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25569,13,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25570,14,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25571,15,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25572,16,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25573,17,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25574,18,70,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25575,1,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25576,2,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25577,3,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25578,4,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25579,5,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25580,6,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25581,7,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25582,8,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25583,9,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25584,10,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25585,11,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25586,12,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25587,13,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25588,14,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25589,15,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25590,16,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25591,17,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25592,18,70,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25593,1,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25594,2,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25595,3,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25596,4,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25597,5,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25598,6,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25599,7,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25600,8,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25601,9,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25602,10,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25603,11,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25604,12,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25605,13,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25606,14,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25607,15,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25608,16,71,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25609,1,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25610,2,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25611,3,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25612,4,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25613,5,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25614,6,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25615,7,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25616,8,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25617,9,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25618,10,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25619,11,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25620,12,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25621,13,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25622,14,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25623,15,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25624,16,71,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25625,1,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25626,2,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25627,3,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25628,4,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25629,5,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25630,6,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25631,7,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25632,8,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25633,9,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25634,10,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25635,11,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25636,12,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25637,13,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25638,14,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25639,15,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25640,16,72,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25641,1,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25642,2,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25643,3,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25644,4,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25645,5,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25646,6,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25647,7,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25648,8,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25649,9,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25650,10,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25651,11,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25652,12,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25653,13,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25654,14,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25655,15,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25656,16,73,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25657,1,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25658,2,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25659,3,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25660,4,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25661,5,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25662,6,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25663,7,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25664,8,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25665,9,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25666,10,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25667,11,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25668,12,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25669,13,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25670,14,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25671,15,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25672,16,73,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25673,1,74,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25674,2,74,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25675,3,74,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25676,4,74,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25677,5,74,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25678,6,74,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25679,7,74,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25680,8,74,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25681,9,74,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25682,10,74,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25683,1,74,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25684,2,74,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25685,3,74,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25686,4,74,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25687,5,74,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25688,6,74,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25689,7,74,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25690,8,74,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25691,9,74,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25692,10,74,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25693,1,74,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25694,2,74,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25695,3,74,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25696,4,74,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25697,5,74,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25698,6,74,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25699,7,74,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25700,8,74,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25701,9,74,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25702,10,74,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25703,1,74,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25704,2,74,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25705,3,74,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25706,4,74,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25707,5,74,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25708,6,74,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25709,7,74,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25710,8,74,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25711,9,74,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25712,10,74,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25713,1,74,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25714,2,74,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25715,3,74,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25716,4,74,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25717,5,74,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25718,6,74,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25719,7,74,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25720,8,74,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25721,9,74,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25722,10,74,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25723,11,74,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25724,1,74,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25725,2,74,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25726,3,74,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25727,4,74,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25728,5,74,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25729,6,74,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25730,7,74,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25731,8,74,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25732,9,74,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25733,10,74,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25734,11,74,6,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25735,1,74,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25736,2,74,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25737,3,74,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25738,4,74,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25739,5,74,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25740,6,74,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25741,7,74,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25742,8,74,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25743,9,74,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25744,10,74,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25745,11,74,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25746,1,74,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25747,2,74,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25748,3,74,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25749,4,74,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25750,5,74,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25751,6,74,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25752,7,74,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25753,8,74,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25754,9,74,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25755,10,74,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25756,11,74,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25757,1,74,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25758,2,74,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25759,3,74,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25760,4,74,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25761,5,74,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25762,6,74,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25763,7,74,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25764,8,74,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25765,9,74,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25766,10,74,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25767,11,74,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25768,1,74,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25769,2,74,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25770,3,74,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25771,4,74,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25772,5,74,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25773,6,74,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25774,7,74,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25775,8,74,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25776,9,74,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25777,10,74,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25778,11,74,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25779,1,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25780,2,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25781,3,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25782,4,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25783,5,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25784,6,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25785,7,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25786,8,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25787,9,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25788,10,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25789,11,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25790,12,74,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25791,1,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25792,2,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25793,3,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25794,4,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25795,5,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25796,6,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25797,7,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25798,8,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25799,9,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25800,10,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25801,11,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25802,12,74,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25803,1,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25804,2,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25805,3,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25806,4,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25807,5,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25808,6,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25809,7,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25810,8,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25811,9,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25812,10,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25813,11,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25814,12,74,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25815,1,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25816,2,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25817,3,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25818,4,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25819,5,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25820,6,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25821,7,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25822,8,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25823,9,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25824,10,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25825,11,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25826,12,74,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25827,1,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25828,2,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25829,3,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25830,4,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25831,5,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25832,6,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25833,7,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25834,8,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25835,9,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25836,10,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25837,11,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25838,12,74,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25839,1,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25840,2,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25841,3,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25842,4,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25843,5,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25844,6,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25845,7,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25846,8,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25847,9,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25848,10,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25849,11,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25850,12,74,16,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25851,1,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25852,2,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25853,3,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25854,4,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25855,5,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25856,6,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25857,7,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25858,8,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25859,9,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25860,10,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25861,11,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25862,12,74,18,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25863,1,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25864,2,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25865,3,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25866,4,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25867,5,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25868,6,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25869,7,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25870,8,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25871,9,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25872,10,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25873,11,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25874,12,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25875,13,74,19,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25876,1,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25877,2,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25878,3,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25879,4,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25880,5,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25881,6,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25882,7,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25883,8,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25884,9,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25885,10,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25886,11,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25887,12,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25888,13,74,20,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25889,1,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25890,2,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25891,3,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25892,4,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25893,5,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25894,6,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25895,7,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25896,8,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25897,9,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25898,10,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25899,11,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25900,12,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25901,13,74,21,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25902,1,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25903,2,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25904,3,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25905,4,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25906,5,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25907,6,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25908,7,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25909,8,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25910,9,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25911,10,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25912,11,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25913,12,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25914,13,74,22,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25915,1,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25916,2,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25917,3,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25918,4,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25919,5,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25920,6,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25921,7,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25922,8,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25923,9,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25924,10,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25925,11,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25926,12,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25927,13,74,23,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25928,1,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25929,2,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25930,3,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25931,4,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25932,5,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25933,6,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25934,7,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25935,8,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25936,9,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25937,10,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25938,11,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25939,12,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25940,13,74,24,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25941,1,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25942,2,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25943,3,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25944,4,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25945,5,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25946,6,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25947,7,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25948,8,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25949,9,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25950,10,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25951,11,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25952,12,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25953,13,74,25,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25954,1,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25955,2,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25956,3,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25957,4,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25958,5,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25959,6,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25960,7,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25961,8,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25962,9,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25963,10,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25964,11,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25965,12,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25966,13,74,26,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25967,11,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25968,12,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25969,13,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25970,14,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25971,15,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25972,16,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25973,17,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25974,18,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25975,19,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25976,20,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25977,21,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25978,22,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25979,23,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25980,24,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25981,25,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25982,26,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25983,27,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25984,28,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25985,29,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25986,30,75,1,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25987,11,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25988,12,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25989,13,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25990,14,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25991,15,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25992,16,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25993,17,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25994,18,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25995,19,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25996,20,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25997,21,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25998,22,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(25999,23,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26000,24,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26001,25,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26002,26,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26003,27,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26004,28,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26005,29,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26006,30,75,2,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26007,11,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26008,12,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26009,13,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26010,14,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26011,15,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26012,16,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26013,17,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26014,18,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26015,19,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26016,20,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26017,21,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26018,22,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26019,23,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26020,24,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26021,25,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26022,26,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26023,27,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26024,28,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26025,29,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26026,30,75,3,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26027,11,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26028,12,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26029,13,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26030,14,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26031,15,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26032,16,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26033,17,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26034,18,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26035,19,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26036,20,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26037,21,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26038,22,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26039,23,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26040,24,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26041,25,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26042,26,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26043,27,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26044,28,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26045,29,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26046,30,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26047,31,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26048,32,75,4,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26049,12,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26050,13,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26051,14,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26052,15,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26053,16,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26054,17,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26055,18,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26056,19,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26057,20,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26058,21,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26059,22,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26060,23,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26061,24,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26062,25,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26063,26,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26064,27,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26065,28,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26066,29,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26067,30,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26068,31,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26069,32,75,5,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26070,12,75,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26071,13,75,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26072,14,75,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26073,15,75,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26074,16,75,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26075,17,75,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26076,18,75,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26077,19,75,7,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26078,12,75,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26079,13,75,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26080,14,75,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26081,15,75,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26082,16,75,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26083,17,75,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26084,18,75,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26085,19,75,8,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26086,12,75,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26087,13,75,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26088,14,75,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26089,15,75,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26090,16,75,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26091,17,75,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26092,18,75,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26093,19,75,9,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26094,12,75,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26095,13,75,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26096,14,75,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26097,15,75,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26098,16,75,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26099,17,75,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26100,18,75,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26101,19,75,10,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26102,13,75,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26103,14,75,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26104,15,75,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26105,16,75,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26106,17,75,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26107,18,75,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26108,19,75,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26109,20,75,11,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26110,13,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26111,14,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26112,15,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26113,16,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26114,17,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26115,18,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26116,19,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26117,20,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26118,21,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26119,22,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26120,23,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26121,24,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26122,25,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26123,26,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26124,27,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26125,28,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26126,29,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26127,30,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26128,31,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26129,32,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26130,33,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26131,34,75,12,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26132,13,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26133,14,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26134,15,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26135,16,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26136,17,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26137,18,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26138,19,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26139,20,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26140,21,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26141,22,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26142,23,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26143,24,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26144,25,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26145,26,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26146,27,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26147,28,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26148,29,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26149,30,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26150,31,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26151,32,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26152,33,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26153,34,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26154,35,75,13,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26155,13,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26156,14,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26157,15,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26158,16,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26159,17,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26160,18,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26161,19,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26162,20,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26163,21,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26164,22,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26165,23,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26166,24,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26167,25,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26168,26,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26169,27,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26170,28,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26171,29,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26172,30,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26173,31,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26174,32,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26175,33,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26176,34,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26177,35,75,14,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26178,13,75,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26179,14,75,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26180,15,75,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26181,16,75,15,1,'2022-09-02 14:23:51','2022-09-02 14:23:51'),(26182,17,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26183,18,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26184,19,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26185,20,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26186,21,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26187,22,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26188,23,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26189,24,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26190,25,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26191,26,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26192,27,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26193,28,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26194,29,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26195,30,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26196,31,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26197,32,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26198,33,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26199,34,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26200,35,75,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26201,13,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26202,14,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26203,15,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26204,16,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26205,17,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26206,18,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26207,19,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26208,20,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26209,21,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26210,22,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26211,23,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26212,24,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26213,25,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26214,26,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26215,27,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26216,28,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26217,29,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26218,30,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26219,31,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26220,32,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26221,33,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26222,34,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26223,35,75,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26224,13,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26225,14,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26226,15,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26227,16,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26228,17,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26229,18,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26230,19,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26231,20,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26232,21,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26233,22,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26234,23,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26235,24,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26236,25,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26237,26,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26238,27,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26239,28,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26240,29,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26241,30,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26242,31,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26243,32,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26244,33,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26245,34,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26246,35,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26247,36,75,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26248,14,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26249,15,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26250,16,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26251,17,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26252,18,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26253,19,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26254,20,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26255,21,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26256,22,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26257,23,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26258,24,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26259,25,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26260,26,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26261,27,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26262,28,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26263,29,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26264,30,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26265,31,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26266,32,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26267,33,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26268,34,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26269,35,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26270,36,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26271,37,75,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26272,14,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26273,15,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26274,16,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26275,17,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26276,18,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26277,19,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26278,20,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26279,21,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26280,22,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26281,23,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26282,24,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26283,25,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26284,26,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26285,27,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26286,28,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26287,29,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26288,30,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26289,31,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26290,32,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26291,33,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26292,34,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26293,35,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26294,36,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26295,37,75,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26296,14,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26297,15,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26298,16,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26299,17,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26300,18,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26301,19,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26302,20,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26303,21,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26304,22,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26305,23,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26306,24,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26307,25,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26308,26,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26309,27,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26310,28,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26311,29,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26312,30,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26313,31,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26314,32,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26315,33,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26316,34,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26317,35,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26318,36,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26319,37,75,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26320,14,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26321,15,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26322,16,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26323,17,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26324,18,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26325,19,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26326,20,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26327,21,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26328,22,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26329,23,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26330,24,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26331,25,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26332,26,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26333,27,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26334,28,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26335,29,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26336,30,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26337,31,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26338,32,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26339,33,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26340,34,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26341,35,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26342,36,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26343,37,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26344,38,75,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26345,14,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26346,15,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26347,16,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26348,17,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26349,18,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26350,19,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26351,20,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26352,21,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26353,22,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26354,23,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26355,24,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26356,25,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26357,26,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26358,27,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26359,28,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26360,29,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26361,30,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26362,31,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26363,32,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26364,33,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26365,34,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26366,35,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26367,36,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26368,37,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26369,38,75,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26370,14,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26371,15,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26372,16,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26373,17,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26374,18,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26375,19,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26376,20,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26377,21,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26378,22,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26379,23,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26380,24,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26381,25,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26382,26,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26383,27,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26384,28,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26385,29,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26386,30,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26387,31,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26388,32,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26389,33,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26390,34,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26391,35,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26392,36,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26393,37,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26394,38,75,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26395,14,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26396,15,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26397,16,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26398,17,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26399,18,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26400,19,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26401,20,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26402,21,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26403,22,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26404,23,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26405,24,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26406,25,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26407,26,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26408,27,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26409,28,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26410,29,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26411,30,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26412,31,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26413,32,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26414,33,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26415,34,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26416,35,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26417,36,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26418,37,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26419,38,75,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26420,14,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26421,15,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26422,16,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26423,17,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26424,18,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26425,19,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26426,20,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26427,21,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26428,22,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26429,23,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26430,24,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26431,25,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26432,26,75,26,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26433,31,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26434,32,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26435,33,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26436,34,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26437,35,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26438,36,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26439,37,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26440,38,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26441,39,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26442,40,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26443,41,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26444,42,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26445,43,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26446,44,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26447,45,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26448,46,76,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26449,31,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26450,32,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26451,33,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26452,34,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26453,35,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26454,36,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26455,37,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26456,38,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26457,39,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26458,40,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26459,41,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26460,42,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26461,43,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26462,44,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26463,45,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26464,46,76,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26465,31,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26466,32,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26467,33,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26468,34,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26469,35,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26470,36,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26471,37,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26472,38,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26473,39,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26474,40,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26475,41,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26476,42,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26477,43,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26478,44,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26479,45,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26480,46,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26481,47,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26482,48,76,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26483,33,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26484,34,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26485,35,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26486,36,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26487,37,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26488,38,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26489,39,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26490,40,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26491,41,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26492,42,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26493,43,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26494,44,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26495,45,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26496,46,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26497,47,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26498,48,76,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26499,33,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26500,34,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26501,35,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26502,36,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26503,37,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26504,38,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26505,39,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26506,40,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26507,41,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26508,42,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26509,43,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26510,44,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26511,45,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26512,46,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26513,47,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26514,48,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26515,49,76,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26516,20,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26517,21,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26518,22,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26519,23,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26520,24,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26521,25,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26522,26,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26523,27,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26524,28,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26525,29,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26526,30,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26527,31,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26528,32,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26529,33,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26530,34,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26531,35,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26532,36,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26533,37,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26534,38,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26535,39,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26536,40,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26537,41,76,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26538,20,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26539,21,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26540,22,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26541,23,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26542,24,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26543,25,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26544,26,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26545,27,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26546,28,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26547,29,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26548,30,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26549,31,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26550,32,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26551,33,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26552,34,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26553,35,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26554,36,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26555,37,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26556,38,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26557,39,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26558,40,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26559,41,76,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26560,20,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26561,21,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26562,22,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26563,23,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26564,24,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26565,25,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26566,26,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26567,27,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26568,28,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26569,29,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26570,30,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26571,31,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26572,32,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26573,33,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26574,34,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26575,35,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26576,36,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26577,37,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26578,38,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26579,39,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26580,40,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26581,41,76,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26582,20,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26583,21,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26584,22,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26585,23,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26586,24,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26587,25,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26588,26,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26589,27,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26590,28,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26591,29,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26592,30,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26593,31,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26594,32,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26595,33,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26596,34,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26597,35,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26598,36,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26599,37,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26600,38,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26601,39,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26602,40,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26603,41,76,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26604,21,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26605,22,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26606,23,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26607,24,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26608,25,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26609,26,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26610,27,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26611,28,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26612,29,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26613,30,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26614,31,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26615,32,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26616,33,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26617,34,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26618,35,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26619,36,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26620,37,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26621,38,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26622,39,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26623,40,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26624,41,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26625,42,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26626,43,76,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26627,35,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26628,36,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26629,37,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26630,38,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26631,39,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26632,40,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26633,41,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26634,42,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26635,43,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26636,44,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26637,45,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26638,46,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26639,47,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26640,48,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26641,49,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26642,50,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26643,51,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26644,52,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26645,53,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26646,54,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26647,55,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26648,56,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26649,57,76,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26650,36,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26651,37,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26652,38,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26653,39,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26654,40,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26655,41,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26656,42,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26657,43,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26658,44,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26659,45,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26660,46,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26661,47,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26662,48,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26663,49,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26664,50,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26665,51,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26666,52,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26667,53,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26668,54,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26669,55,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26670,56,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26671,57,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26672,58,76,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26673,36,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26674,37,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26675,38,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26676,39,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26677,40,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26678,41,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26679,42,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26680,43,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26681,44,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26682,45,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26683,46,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26684,47,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26685,48,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26686,49,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26687,50,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26688,51,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26689,52,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26690,53,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26691,54,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26692,55,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26693,56,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26694,57,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26695,58,76,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26696,36,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26697,37,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26698,38,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26699,39,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26700,40,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26701,41,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26702,42,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26703,43,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26704,44,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26705,45,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26706,46,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26707,47,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26708,48,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26709,49,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26710,50,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26711,51,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26712,52,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26713,53,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26714,54,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26715,55,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26716,56,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26717,57,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26718,58,76,15,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26719,36,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26720,37,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26721,38,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26722,39,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26723,40,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26724,41,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26725,42,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26726,43,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26727,44,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26728,45,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26729,46,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26730,47,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26731,48,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26732,49,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26733,50,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26734,51,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26735,52,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26736,53,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26737,54,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26738,55,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26739,56,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26740,57,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26741,58,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26742,59,76,16,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26743,37,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26744,38,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26745,39,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26746,40,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26747,41,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26748,42,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26749,43,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26750,44,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26751,45,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26752,46,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26753,47,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26754,48,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26755,49,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26756,50,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26757,51,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26758,52,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26759,53,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26760,54,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26761,55,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26762,56,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26763,57,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26764,58,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26765,59,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26766,60,76,18,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26767,38,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26768,39,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26769,40,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26770,41,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26771,42,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26772,43,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26773,44,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26774,45,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26775,46,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26776,47,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26777,48,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26778,49,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26779,50,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26780,51,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26781,52,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26782,53,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26783,54,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26784,55,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26785,56,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26786,57,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26787,58,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26788,59,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26789,60,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26790,61,76,19,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26791,38,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26792,39,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26793,40,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26794,41,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26795,42,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26796,43,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26797,44,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26798,45,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26799,46,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26800,47,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26801,48,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26802,49,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26803,50,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26804,51,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26805,52,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26806,53,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26807,54,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26808,55,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26809,56,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26810,57,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26811,58,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26812,59,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26813,60,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26814,61,76,20,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26815,38,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26816,39,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26817,40,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26818,41,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26819,42,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26820,43,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26821,44,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26822,45,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26823,46,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26824,47,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26825,48,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26826,49,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26827,50,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26828,51,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26829,52,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26830,53,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26831,54,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26832,55,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26833,56,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26834,57,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26835,58,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26836,59,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26837,60,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26838,61,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26839,62,76,21,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26840,39,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26841,40,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26842,41,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26843,42,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26844,43,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26845,44,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26846,45,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26847,46,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26848,47,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26849,48,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26850,49,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26851,50,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26852,51,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26853,52,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26854,53,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26855,54,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26856,55,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26857,56,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26858,57,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26859,58,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26860,59,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26861,60,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26862,61,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26863,62,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26864,63,76,22,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26865,39,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26866,40,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26867,41,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26868,42,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26869,43,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26870,44,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26871,45,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26872,46,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26873,47,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26874,48,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26875,49,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26876,50,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26877,51,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26878,52,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26879,53,76,23,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26880,39,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26881,40,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26882,41,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26883,42,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26884,43,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26885,44,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26886,45,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26887,46,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26888,47,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26889,48,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26890,49,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26891,50,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26892,51,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26893,52,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26894,53,76,24,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26895,39,76,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26896,40,76,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26897,41,76,25,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26898,51,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26899,52,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26900,53,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26901,54,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26902,55,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26903,56,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26904,57,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26905,58,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26906,59,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26907,60,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26908,61,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26909,62,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26910,63,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26911,64,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26912,65,77,1,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26913,51,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26914,52,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26915,53,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26916,54,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26917,55,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26918,56,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26919,57,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26920,58,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26921,59,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26922,60,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26923,61,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26924,62,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26925,63,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26926,64,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26927,65,77,2,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26928,52,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26929,53,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26930,54,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26931,55,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26932,56,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26933,57,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26934,58,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26935,59,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26936,60,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26937,61,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26938,62,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26939,63,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26940,64,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26941,65,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26942,66,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26943,67,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26944,68,77,3,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26945,54,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26946,55,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26947,56,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26948,57,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26949,58,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26950,59,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26951,60,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26952,61,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26953,62,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26954,63,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26955,64,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26956,65,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26957,66,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26958,67,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26959,68,77,4,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26960,54,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26961,55,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26962,56,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26963,57,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26964,58,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26965,59,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26966,60,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26967,61,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26968,62,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26969,63,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26970,64,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26971,65,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26972,66,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26973,67,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26974,68,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26975,69,77,5,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26976,42,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26977,43,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26978,44,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26979,45,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26980,46,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26981,47,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26982,48,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26983,49,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26984,50,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26985,51,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26986,52,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26987,53,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26988,54,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26989,55,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26990,56,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26991,57,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26992,58,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26993,59,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26994,60,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26995,61,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26996,62,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26997,63,77,7,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26998,42,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(26999,43,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27000,44,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27001,45,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27002,46,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27003,47,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27004,48,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27005,49,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27006,50,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27007,51,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27008,52,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27009,53,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27010,54,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27011,55,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27012,56,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27013,57,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27014,58,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27015,59,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27016,60,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27017,61,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27018,62,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27019,63,77,8,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27020,42,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27021,43,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27022,44,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27023,45,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27024,46,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27025,47,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27026,48,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27027,49,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27028,50,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27029,51,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27030,52,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27031,53,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27032,54,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27033,55,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27034,56,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27035,57,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27036,58,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27037,59,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27038,60,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27039,61,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27040,62,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27041,63,77,9,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27042,42,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27043,43,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27044,44,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27045,45,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27046,46,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27047,47,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27048,48,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27049,49,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27050,50,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27051,51,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27052,52,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27053,53,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27054,54,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27055,55,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27056,56,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27057,57,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27058,58,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27059,59,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27060,60,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27061,61,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27062,62,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27063,63,77,10,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27064,44,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27065,45,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27066,46,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27067,47,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27068,48,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27069,49,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27070,50,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27071,51,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27072,52,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27073,53,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27074,54,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27075,55,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27076,56,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27077,57,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27078,58,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27079,59,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27080,60,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27081,61,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27082,62,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27083,63,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27084,64,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27085,65,77,11,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27086,58,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27087,59,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27088,60,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27089,61,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27090,62,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27091,63,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27092,64,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27093,65,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27094,66,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27095,67,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27096,68,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27097,69,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27098,70,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27099,71,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27100,72,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27101,73,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27102,74,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27103,75,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27104,76,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27105,77,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27106,78,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27107,79,77,12,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27108,59,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27109,60,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27110,61,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27111,62,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27112,63,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27113,64,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27114,65,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27115,66,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27116,67,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27117,68,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27118,69,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27119,70,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27120,71,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27121,72,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27122,73,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27123,74,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27124,75,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27125,76,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27126,77,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27127,78,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27128,79,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27129,80,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27130,81,77,13,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27131,59,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27132,60,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27133,61,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27134,62,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27135,63,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27136,64,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27137,65,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27138,66,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27139,67,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27140,68,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27141,69,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27142,70,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27143,71,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27144,72,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27145,73,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27146,74,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27147,75,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27148,76,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27149,77,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27150,78,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27151,79,77,14,1,'2022-09-02 14:23:52','2022-09-02 14:23:52'),(27152,80,77,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27153,81,77,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27154,59,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27155,60,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27156,61,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27157,62,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27158,63,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27159,64,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27160,65,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27161,66,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27162,67,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27163,68,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27164,69,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27165,70,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27166,71,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27167,72,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27168,73,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27169,74,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27170,75,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27171,76,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27172,77,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27173,78,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27174,79,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27175,80,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27176,81,77,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27177,60,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27178,61,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27179,62,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27180,63,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27181,64,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27182,65,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27183,66,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27184,67,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27185,68,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27186,69,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27187,70,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27188,71,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27189,72,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27190,73,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27191,74,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27192,75,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27193,76,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27194,77,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27195,78,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27196,79,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27197,80,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27198,81,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27199,82,77,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27200,61,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27201,62,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27202,63,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27203,64,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27204,65,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27205,66,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27206,67,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27207,68,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27208,69,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27209,70,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27210,71,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27211,72,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27212,73,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27213,74,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27214,75,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27215,76,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27216,77,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27217,78,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27218,79,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27219,80,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27220,81,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27221,82,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27222,83,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27223,84,77,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27224,62,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27225,63,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27226,64,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27227,65,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27228,66,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27229,67,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27230,68,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27231,69,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27232,70,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27233,71,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27234,72,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27235,73,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27236,74,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27237,75,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27238,76,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27239,77,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27240,78,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27241,79,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27242,80,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27243,81,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27244,82,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27245,83,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27246,84,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27247,85,77,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27248,62,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27249,63,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27250,64,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27251,65,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27252,66,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27253,67,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27254,68,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27255,69,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27256,70,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27257,71,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27258,72,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27259,73,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27260,74,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27261,75,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27262,76,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27263,77,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27264,78,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27265,79,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27266,80,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27267,81,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27268,82,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27269,83,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27270,84,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27271,85,77,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27272,63,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27273,64,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27274,65,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27275,66,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27276,67,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27277,68,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27278,69,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27279,70,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27280,71,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27281,72,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27282,73,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27283,74,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27284,75,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27285,76,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27286,77,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27287,78,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27288,79,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27289,80,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27290,81,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27291,82,77,21,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27292,64,77,22,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27293,65,77,22,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27294,66,77,22,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27295,67,77,22,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27296,68,77,22,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27297,69,77,22,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27298,70,77,22,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27299,71,77,22,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27300,72,77,22,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27301,71,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27302,72,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27303,73,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27304,74,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27305,75,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27306,76,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27307,77,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27308,78,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27309,79,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27310,80,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27311,81,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27312,82,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27313,83,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27314,84,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27315,85,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27316,86,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27317,87,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27318,88,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27319,89,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27320,90,78,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27321,71,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27322,72,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27323,73,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27324,74,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27325,75,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27326,76,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27327,77,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27328,78,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27329,79,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27330,80,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27331,81,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27332,82,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27333,83,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27334,84,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27335,85,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27336,86,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27337,87,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27338,88,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27339,89,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27340,90,78,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27341,72,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27342,73,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27343,74,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27344,75,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27345,76,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27346,77,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27347,78,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27348,79,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27349,80,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27350,81,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27351,82,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27352,83,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27353,84,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27354,85,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27355,86,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27356,87,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27357,88,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27358,89,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27359,90,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27360,91,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27361,92,78,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27362,75,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27363,76,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27364,77,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27365,78,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27366,79,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27367,80,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27368,81,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27369,82,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27370,83,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27371,84,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27372,85,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27373,86,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27374,87,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27375,88,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27376,89,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27377,90,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27378,91,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27379,92,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27380,93,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27381,94,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27382,95,78,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27383,75,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27384,76,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27385,77,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27386,78,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27387,79,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27388,80,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27389,81,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27390,82,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27391,83,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27392,84,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27393,85,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27394,86,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27395,87,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27396,88,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27397,89,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27398,90,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27399,91,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27400,92,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27401,93,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27402,94,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27403,95,78,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27404,64,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27405,65,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27406,66,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27407,67,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27408,68,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27409,69,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27410,70,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27411,71,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27412,72,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27413,73,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27414,74,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27415,75,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27416,76,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27417,77,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27418,78,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27419,79,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27420,80,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27421,81,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27422,82,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27423,83,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27424,84,78,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27425,64,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27426,65,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27427,66,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27428,67,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27429,68,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27430,69,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27431,70,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27432,71,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27433,72,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27434,73,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27435,74,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27436,75,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27437,76,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27438,77,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27439,78,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27440,79,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27441,80,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27442,81,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27443,82,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27444,83,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27445,84,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27446,85,78,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27447,64,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27448,65,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27449,66,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27450,67,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27451,68,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27452,69,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27453,70,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27454,71,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27455,72,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27456,73,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27457,74,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27458,75,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27459,76,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27460,77,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27461,78,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27462,79,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27463,80,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27464,81,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27465,82,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27466,83,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27467,84,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27468,85,78,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27469,64,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27470,65,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27471,66,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27472,67,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27473,68,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27474,69,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27475,70,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27476,71,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27477,72,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27478,73,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27479,74,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27480,75,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27481,76,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27482,77,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27483,78,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27484,79,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27485,80,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27486,81,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27487,82,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27488,83,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27489,84,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27490,85,78,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27491,66,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27492,67,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27493,68,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27494,69,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27495,70,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27496,71,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27497,72,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27498,73,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27499,74,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27500,75,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27501,76,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27502,77,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27503,78,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27504,79,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27505,80,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27506,81,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27507,82,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27508,83,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27509,84,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27510,85,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27511,86,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27512,87,78,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27513,80,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27514,81,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27515,82,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27516,83,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27517,84,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27518,85,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27519,86,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27520,87,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27521,88,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27522,89,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27523,90,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27524,91,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27525,92,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27526,93,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27527,94,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27528,95,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27529,96,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27530,97,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27531,98,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27532,99,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27533,100,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27534,101,78,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27535,82,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27536,83,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27537,84,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27538,85,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27539,86,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27540,87,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27541,88,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27542,89,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27543,90,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27544,91,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27545,92,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27546,93,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27547,94,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27548,95,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27549,96,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27550,97,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27551,98,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27552,99,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27553,100,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27554,101,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27555,102,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27556,103,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27557,104,78,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27558,82,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27559,83,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27560,84,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27561,85,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27562,86,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27563,87,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27564,88,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27565,89,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27566,90,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27567,91,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27568,92,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27569,93,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27570,94,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27571,95,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27572,96,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27573,97,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27574,98,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27575,99,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27576,100,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27577,101,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27578,102,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27579,103,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27580,104,78,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27581,82,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27582,83,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27583,84,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27584,85,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27585,86,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27586,87,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27587,88,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27588,89,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27589,90,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27590,91,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27591,92,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27592,93,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27593,94,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27594,95,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27595,96,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27596,97,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27597,98,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27598,99,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27599,100,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27600,101,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27601,102,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27602,103,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27603,104,78,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27604,83,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27605,84,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27606,85,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27607,86,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27608,87,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27609,88,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27610,89,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27611,90,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27612,91,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27613,92,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27614,93,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27615,94,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27616,95,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27617,96,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27618,97,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27619,98,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27620,99,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27621,100,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27622,101,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27623,102,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27624,103,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27625,104,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27626,105,78,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27627,85,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27628,86,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27629,87,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27630,88,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27631,89,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27632,90,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27633,91,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27634,92,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27635,93,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27636,94,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27637,95,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27638,96,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27639,97,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27640,98,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27641,99,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27642,100,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27643,101,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27644,102,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27645,103,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27646,104,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27647,105,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27648,106,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27649,107,78,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27650,86,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27651,87,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27652,88,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27653,89,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27654,90,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27655,91,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27656,92,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27657,93,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27658,94,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27659,95,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27660,96,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27661,97,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27662,98,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27663,99,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27664,100,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27665,101,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27666,102,78,19,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27667,86,78,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27668,87,78,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27669,88,78,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27670,89,78,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27671,90,78,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27672,91,78,20,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27673,91,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27674,92,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27675,93,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27676,94,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27677,95,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27678,96,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27679,97,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27680,98,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27681,99,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27682,100,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27683,101,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27684,102,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27685,103,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27686,104,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27687,105,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27688,106,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27689,107,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27690,108,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27691,109,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27692,110,79,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27693,91,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27694,92,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27695,93,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27696,94,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27697,95,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27698,96,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27699,97,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27700,98,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27701,99,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27702,100,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27703,101,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27704,102,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27705,103,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27706,104,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27707,105,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27708,106,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27709,107,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27710,108,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27711,109,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27712,110,79,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27713,93,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27714,94,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27715,95,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27716,96,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27717,97,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27718,98,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27719,99,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27720,100,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27721,101,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27722,102,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27723,103,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27724,104,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27725,105,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27726,106,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27727,107,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27728,108,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27729,109,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27730,110,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27731,111,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27732,112,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27733,113,79,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27734,96,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27735,97,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27736,98,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27737,99,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27738,100,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27739,101,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27740,102,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27741,103,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27742,104,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27743,105,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27744,106,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27745,107,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27746,108,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27747,109,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27748,110,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27749,111,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27750,112,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27751,113,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27752,114,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27753,115,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27754,116,79,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27755,96,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27756,97,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27757,98,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27758,99,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27759,100,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27760,101,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27761,102,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27762,103,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27763,104,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27764,105,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27765,106,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27766,107,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27767,108,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27768,109,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27769,110,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27770,111,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27771,112,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27772,113,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27773,114,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27774,115,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27775,116,79,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27776,85,79,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27777,86,79,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27778,87,79,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27779,88,79,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27780,89,79,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27781,90,79,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27782,91,79,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27783,92,79,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27784,86,79,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27785,87,79,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27786,88,79,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27787,89,79,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27788,90,79,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27789,91,79,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27790,92,79,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27791,93,79,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27792,86,79,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27793,87,79,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27794,88,79,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27795,89,79,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27796,90,79,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27797,91,79,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27798,92,79,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27799,93,79,9,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27800,86,79,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27801,87,79,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27802,88,79,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27803,89,79,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27804,90,79,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27805,91,79,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27806,92,79,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27807,93,79,10,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27808,88,79,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27809,89,79,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27810,90,79,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27811,91,79,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27812,92,79,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27813,93,79,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27814,94,79,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27815,95,79,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27816,96,79,11,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27817,102,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27818,103,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27819,104,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27820,105,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27821,106,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27822,107,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27823,108,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27824,109,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27825,110,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27826,111,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27827,112,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27828,113,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27829,114,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27830,115,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27831,116,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27832,117,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27833,118,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27834,119,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27835,120,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27836,121,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27837,122,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27838,123,79,12,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27839,105,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27840,106,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27841,107,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27842,108,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27843,109,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27844,110,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27845,111,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27846,112,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27847,113,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27848,114,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27849,115,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27850,116,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27851,117,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27852,118,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27853,119,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27854,120,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27855,121,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27856,122,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27857,123,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27858,124,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27859,125,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27860,126,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27861,127,79,13,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27862,105,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27863,106,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27864,107,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27865,108,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27866,109,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27867,110,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27868,111,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27869,112,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27870,113,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27871,114,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27872,115,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27873,116,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27874,117,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27875,118,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27876,119,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27877,120,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27878,121,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27879,122,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27880,123,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27881,124,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27882,125,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27883,126,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27884,127,79,14,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27885,105,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27886,106,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27887,107,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27888,108,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27889,109,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27890,110,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27891,111,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27892,112,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27893,113,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27894,114,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27895,115,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27896,116,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27897,117,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27898,118,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27899,119,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27900,120,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27901,121,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27902,122,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27903,123,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27904,124,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27905,125,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27906,126,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27907,127,79,15,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27908,106,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27909,107,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27910,108,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27911,109,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27912,110,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27913,111,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27914,112,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27915,113,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27916,114,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27917,115,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27918,116,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27919,117,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27920,118,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27921,119,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27922,120,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27923,121,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27924,122,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27925,123,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27926,124,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27927,125,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27928,126,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27929,127,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27930,128,79,16,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27931,108,79,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27932,109,79,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27933,110,79,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27934,111,79,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27935,112,79,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27936,113,79,18,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27937,111,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27938,112,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27939,113,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27940,114,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27941,115,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27942,116,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27943,117,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27944,118,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27945,119,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27946,120,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27947,121,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27948,122,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27949,123,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27950,124,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27951,125,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27952,126,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27953,127,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27954,128,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27955,129,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27956,130,80,1,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27957,111,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27958,112,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27959,113,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27960,114,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27961,115,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27962,116,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27963,117,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27964,118,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27965,119,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27966,120,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27967,121,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27968,122,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27969,123,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27970,124,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27971,125,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27972,126,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27973,127,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27974,128,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27975,129,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27976,130,80,2,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27977,114,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27978,115,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27979,116,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27980,117,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27981,118,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27982,119,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27983,120,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27984,121,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27985,122,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27986,123,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27987,124,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27988,125,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27989,126,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27990,127,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27991,128,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27992,129,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27993,130,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27994,131,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27995,132,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27996,133,80,3,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27997,117,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27998,118,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(27999,119,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28000,120,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28001,121,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28002,122,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28003,123,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28004,124,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28005,125,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28006,126,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28007,127,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28008,128,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28009,129,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28010,130,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28011,131,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28012,132,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28013,133,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28014,134,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28015,135,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28016,136,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28017,137,80,4,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28018,117,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28019,118,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28020,119,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28021,120,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28022,121,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28023,122,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28024,123,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28025,124,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28026,125,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28027,126,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28028,127,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28029,128,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28030,129,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28031,130,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28032,131,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28033,132,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28034,133,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28035,134,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28036,135,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28037,136,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28038,137,80,5,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28039,93,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28040,94,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28041,95,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28042,96,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28043,97,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28044,98,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28045,99,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28046,100,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28047,101,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28048,102,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28049,103,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28050,104,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28051,105,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28052,106,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28053,107,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28054,108,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28055,109,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28056,110,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28057,111,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28058,112,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28059,113,80,7,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28060,94,80,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28061,95,80,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28062,96,80,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28063,97,80,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28064,98,80,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28065,99,80,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28066,100,80,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28067,101,80,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28068,102,80,8,1,'2022-09-02 14:23:53','2022-09-02 14:23:53'),(28069,103,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28070,104,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28071,105,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28072,106,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28073,107,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28074,108,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28075,109,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28076,110,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28077,111,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28078,112,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28079,113,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28080,114,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28081,115,80,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28082,94,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28083,95,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28084,96,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28085,97,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28086,98,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28087,99,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28088,100,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28089,101,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28090,102,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28091,103,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28092,104,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28093,105,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28094,106,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28095,107,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28096,108,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28097,109,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28098,110,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28099,111,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28100,112,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28101,113,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28102,114,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28103,115,80,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28104,94,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28105,95,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28106,96,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28107,97,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28108,98,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28109,99,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28110,100,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28111,101,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28112,102,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28113,103,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28114,104,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28115,105,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28116,106,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28117,107,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28118,108,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28119,109,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28120,110,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28121,111,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28122,112,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28123,113,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28124,114,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28125,115,80,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28126,97,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28127,98,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28128,99,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28129,100,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28130,101,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28131,102,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28132,103,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28133,104,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28134,105,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28135,106,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28136,107,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28137,108,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28138,109,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28139,110,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28140,111,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28141,112,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28142,113,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28143,114,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28144,115,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28145,116,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28146,117,80,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28147,124,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28148,125,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28149,126,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28150,127,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28151,128,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28152,129,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28153,130,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28154,131,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28155,132,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28156,133,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28157,134,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28158,135,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28159,136,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28160,137,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28161,138,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28162,139,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28163,140,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28164,141,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28165,142,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28166,143,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28167,144,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28168,145,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28169,146,80,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28170,128,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28171,129,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28172,130,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28173,131,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28174,132,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28175,133,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28176,134,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28177,135,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28178,136,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28179,137,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28180,138,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28181,139,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28182,140,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28183,141,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28184,142,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28185,143,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28186,144,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28187,145,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28188,146,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28189,147,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28190,148,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28191,149,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28192,150,80,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28193,128,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28194,129,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28195,130,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28196,131,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28197,132,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28198,133,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28199,134,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28200,135,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28201,136,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28202,137,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28203,138,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28204,139,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28205,140,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28206,141,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28207,142,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28208,143,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28209,144,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28210,145,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28211,146,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28212,147,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28213,148,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28214,149,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28215,150,80,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28216,128,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28217,129,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28218,130,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28219,131,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28220,132,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28221,133,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28222,134,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28223,135,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28224,136,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28225,137,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28226,138,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28227,139,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28228,140,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28229,141,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28230,142,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28231,143,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28232,144,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28233,145,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28234,146,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28235,147,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28236,148,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28237,149,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28238,150,80,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28239,131,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28240,132,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28241,133,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28242,134,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28243,135,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28244,136,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28245,137,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28246,138,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28247,139,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28248,140,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28249,141,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28250,142,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28251,143,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28252,144,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28253,145,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28254,146,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28255,147,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28256,148,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28257,149,81,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28258,131,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28259,132,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28260,133,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28261,134,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28262,135,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28263,136,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28264,137,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28265,138,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28266,139,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28267,140,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28268,141,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28269,142,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28270,143,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28271,144,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28272,145,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28273,146,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28274,147,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28275,148,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28276,149,81,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28277,134,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28278,135,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28279,136,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28280,137,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28281,138,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28282,139,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28283,140,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28284,141,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28285,142,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28286,143,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28287,144,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28288,145,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28289,146,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28290,147,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28291,148,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28292,149,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28293,150,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28294,151,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28295,152,81,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28296,138,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28297,139,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28298,140,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28299,141,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28300,142,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28301,143,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28302,144,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28303,145,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28304,146,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28305,147,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28306,148,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28307,149,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28308,150,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28309,151,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28310,152,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28311,153,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28312,154,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28313,155,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28314,156,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28315,157,81,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28316,138,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28317,139,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28318,140,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28319,141,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28320,142,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28321,143,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28322,144,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28323,145,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28324,146,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28325,147,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28326,148,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28327,149,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28328,150,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28329,151,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28330,152,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28331,153,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28332,154,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28333,155,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28334,156,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28335,157,81,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28336,114,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28337,115,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28338,116,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28339,117,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28340,118,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28341,119,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28342,120,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28343,121,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28344,122,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28345,123,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28346,124,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28347,125,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28348,126,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28349,127,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28350,128,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28351,129,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28352,130,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28353,131,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28354,132,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28355,133,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28356,134,81,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28357,116,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28358,117,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28359,118,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28360,119,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28361,120,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28362,121,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28363,122,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28364,123,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28365,124,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28366,125,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28367,126,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28368,127,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28369,128,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28370,129,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28371,130,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28372,131,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28373,132,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28374,133,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28375,134,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28376,135,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28377,136,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28378,137,81,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28379,116,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28380,117,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28381,118,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28382,119,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28383,120,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28384,121,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28385,122,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28386,123,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28387,124,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28388,125,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28389,126,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28390,127,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28391,128,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28392,129,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28393,130,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28394,131,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28395,132,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28396,133,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28397,134,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28398,135,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28399,136,81,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28400,116,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28401,117,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28402,118,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28403,119,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28404,120,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28405,121,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28406,122,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28407,123,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28408,124,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28409,125,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28410,126,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28411,127,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28412,128,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28413,129,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28414,130,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28415,131,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28416,132,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28417,133,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28418,134,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28419,135,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28420,136,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28421,137,81,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28422,118,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28423,119,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28424,120,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28425,121,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28426,122,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28427,123,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28428,124,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28429,125,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28430,126,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28431,127,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28432,128,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28433,129,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28434,130,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28435,131,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28436,132,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28437,133,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28438,134,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28439,135,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28440,136,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28441,137,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28442,138,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28443,139,81,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28444,147,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28445,148,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28446,149,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28447,150,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28448,151,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28449,152,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28450,153,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28451,154,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28452,155,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28453,156,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28454,157,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28455,158,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28456,159,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28457,160,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28458,161,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28459,162,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28460,163,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28461,164,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28462,165,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28463,166,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28464,167,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28465,168,81,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28466,151,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28467,152,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28468,153,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28469,154,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28470,155,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28471,156,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28472,157,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28473,158,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28474,159,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28475,160,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28476,161,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28477,162,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28478,163,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28479,164,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28480,165,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28481,166,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28482,167,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28483,168,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28484,169,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28485,170,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28486,171,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28487,172,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28488,173,81,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28489,151,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28490,152,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28491,153,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28492,154,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28493,155,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28494,156,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28495,157,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28496,158,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28497,159,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28498,160,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28499,161,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28500,162,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28501,163,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28502,164,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28503,165,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28504,166,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28505,167,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28506,168,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28507,169,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28508,170,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28509,171,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28510,172,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28511,173,81,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28512,151,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28513,152,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28514,153,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28515,154,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28516,155,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28517,156,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28518,157,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28519,158,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28520,159,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28521,160,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28522,161,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28523,162,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28524,163,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28525,164,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28526,165,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28527,166,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28528,167,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28529,168,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28530,169,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28531,170,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28532,171,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28533,172,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28534,173,81,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28535,150,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28536,151,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28537,152,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28538,153,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28539,154,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28540,155,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28541,156,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28542,157,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28543,158,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28544,159,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28545,160,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28546,161,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28547,162,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28548,163,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28549,164,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28550,165,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28551,166,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28552,167,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28553,168,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28554,169,82,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28555,150,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28556,151,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28557,152,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28558,153,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28559,154,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28560,155,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28561,156,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28562,157,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28563,158,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28564,159,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28565,160,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28566,161,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28567,162,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28568,163,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28569,164,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28570,165,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28571,166,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28572,167,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28573,168,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28574,169,82,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28575,153,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28576,154,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28577,155,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28578,156,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28579,157,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28580,158,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28581,159,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28582,160,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28583,161,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28584,162,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28585,163,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28586,164,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28587,165,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28588,166,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28589,167,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28590,168,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28591,169,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28592,170,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28593,171,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28594,172,82,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28595,158,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28596,159,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28597,160,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28598,161,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28599,162,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28600,163,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28601,164,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28602,165,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28603,166,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28604,167,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28605,168,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28606,169,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28607,170,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28608,171,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28609,172,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28610,173,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28611,174,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28612,175,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28613,176,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28614,177,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28615,178,82,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28616,158,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28617,159,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28618,160,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28619,161,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28620,162,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28621,163,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28622,164,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28623,165,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28624,166,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28625,167,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28626,168,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28627,169,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28628,170,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28629,171,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28630,172,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28631,173,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28632,174,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28633,175,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28634,176,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28635,177,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28636,178,82,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28637,135,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28638,136,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28639,137,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28640,138,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28641,139,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28642,140,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28643,141,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28644,142,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28645,143,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28646,144,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28647,145,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28648,146,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28649,147,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28650,148,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28651,149,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28652,150,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28653,151,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28654,152,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28655,153,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28656,154,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28657,155,82,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28658,138,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28659,139,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28660,140,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28661,141,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28662,142,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28663,143,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28664,144,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28665,145,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28666,146,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28667,147,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28668,148,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28669,149,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28670,150,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28671,151,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28672,152,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28673,153,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28674,154,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28675,155,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28676,156,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28677,157,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28678,158,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28679,159,82,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28680,137,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28681,138,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28682,139,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28683,140,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28684,141,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28685,142,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28686,143,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28687,144,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28688,145,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28689,146,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28690,147,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28691,148,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28692,149,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28693,150,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28694,151,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28695,152,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28696,153,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28697,154,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28698,155,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28699,156,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28700,157,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28701,158,82,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28702,138,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28703,139,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28704,140,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28705,141,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28706,142,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28707,143,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28708,144,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28709,145,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28710,146,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28711,147,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28712,148,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28713,149,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28714,150,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28715,151,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28716,152,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28717,153,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28718,154,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28719,155,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28720,156,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28721,157,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28722,158,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28723,159,82,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28724,140,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28725,141,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28726,142,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28727,143,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28728,144,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28729,145,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28730,146,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28731,147,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28732,148,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28733,149,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28734,150,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28735,151,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28736,152,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28737,153,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28738,154,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28739,155,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28740,156,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28741,157,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28742,158,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28743,159,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28744,160,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28745,161,82,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28746,169,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28747,170,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28748,171,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28749,172,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28750,173,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28751,174,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28752,175,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28753,176,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28754,177,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28755,178,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28756,179,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28757,180,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28758,181,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28759,182,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28760,183,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28761,184,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28762,185,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28763,186,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28764,187,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28765,188,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28766,189,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28767,190,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28768,191,82,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28769,174,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28770,175,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28771,176,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28772,177,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28773,178,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28774,179,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28775,180,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28776,181,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28777,182,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28778,183,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28779,184,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28780,185,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28781,186,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28782,187,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28783,188,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28784,189,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28785,190,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28786,191,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28787,192,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28788,193,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28789,194,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28790,195,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28791,196,82,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28792,174,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28793,175,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28794,176,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28795,177,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28796,178,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28797,179,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28798,180,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28799,181,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28800,182,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28801,183,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28802,184,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28803,185,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28804,186,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28805,187,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28806,188,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28807,189,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28808,190,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28809,191,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28810,192,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28811,193,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28812,194,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28813,195,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28814,196,82,14,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28815,174,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28816,175,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28817,176,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28818,177,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28819,178,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28820,179,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28821,180,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28822,181,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28823,182,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28824,183,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28825,184,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28826,185,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28827,186,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28828,187,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28829,188,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28830,189,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28831,190,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28832,191,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28833,192,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28834,193,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28835,194,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28836,195,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28837,196,82,15,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28838,170,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28839,171,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28840,172,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28841,173,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28842,174,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28843,175,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28844,176,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28845,177,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28846,178,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28847,179,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28848,180,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28849,181,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28850,182,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28851,183,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28852,184,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28853,185,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28854,186,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28855,187,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28856,188,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28857,189,83,1,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28858,170,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28859,171,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28860,172,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28861,173,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28862,174,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28863,175,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28864,176,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28865,177,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28866,178,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28867,179,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28868,180,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28869,181,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28870,182,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28871,183,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28872,184,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28873,185,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28874,186,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28875,187,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28876,188,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28877,189,83,2,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28878,173,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28879,174,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28880,175,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28881,176,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28882,177,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28883,178,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28884,179,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28885,180,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28886,181,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28887,182,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28888,183,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28889,184,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28890,185,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28891,186,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28892,187,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28893,188,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28894,189,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28895,190,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28896,191,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28897,192,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28898,193,83,3,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28899,179,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28900,180,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28901,181,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28902,182,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28903,183,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28904,184,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28905,185,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28906,186,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28907,187,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28908,188,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28909,189,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28910,190,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28911,191,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28912,192,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28913,193,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28914,194,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28915,195,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28916,196,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28917,197,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28918,198,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28919,199,83,4,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28920,179,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28921,180,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28922,181,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28923,182,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28924,183,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28925,184,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28926,185,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28927,186,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28928,187,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28929,188,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28930,189,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28931,190,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28932,191,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28933,192,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28934,193,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28935,194,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28936,195,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28937,196,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28938,197,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28939,198,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28940,199,83,5,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28941,156,83,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28942,157,83,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28943,158,83,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28944,159,83,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28945,160,83,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28946,161,83,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28947,162,83,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28948,163,83,7,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28949,160,83,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28950,161,83,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28951,162,83,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28952,163,83,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28953,164,83,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28954,165,83,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28955,166,83,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28956,167,83,8,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28957,159,83,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28958,160,83,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28959,161,83,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28960,162,83,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28961,163,83,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28962,164,83,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28963,165,83,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28964,166,83,9,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28965,160,83,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28966,161,83,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28967,162,83,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28968,163,83,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28969,164,83,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28970,165,83,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28971,166,83,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28972,167,83,10,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28973,162,83,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28974,163,83,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28975,164,83,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28976,165,83,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28977,166,83,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28978,167,83,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28979,168,83,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28980,169,83,11,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28981,192,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28982,193,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28983,194,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28984,195,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28985,196,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28986,197,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28987,198,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28988,199,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28989,200,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28990,201,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28991,202,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28992,203,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28993,204,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28994,205,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28995,206,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28996,207,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28997,208,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28998,209,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(28999,210,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29000,211,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29001,212,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29002,213,83,12,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29003,197,83,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29004,198,83,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29005,199,83,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29006,200,83,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29007,201,83,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29008,202,83,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29009,203,83,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29010,204,83,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29011,205,83,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29012,206,83,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29013,207,83,13,1,'2022-09-02 14:23:54','2022-09-02 14:23:54'),(29014,208,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29015,209,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29016,210,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29017,211,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29018,212,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29019,213,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29020,214,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29021,215,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29022,216,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29023,217,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29024,218,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29025,219,83,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29026,197,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29027,198,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29028,199,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29029,200,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29030,201,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29031,202,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29032,203,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29033,204,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29034,205,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29035,206,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29036,207,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29037,208,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29038,209,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29039,210,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29040,211,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29041,212,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29042,213,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29043,214,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29044,215,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29045,216,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29046,217,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29047,218,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29048,219,83,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29049,197,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29050,198,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29051,199,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29052,200,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29053,201,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29054,202,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29055,203,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29056,204,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29057,205,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29058,206,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29059,207,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29060,208,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29061,209,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29062,210,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29063,211,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29064,212,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29065,213,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29066,214,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29067,215,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29068,216,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29069,217,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29070,218,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29071,219,83,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29072,129,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29073,130,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29074,131,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29075,132,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29076,133,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29077,134,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29078,135,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29079,136,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29080,137,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29081,138,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29082,139,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29083,140,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29084,141,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29085,142,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29086,143,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29087,144,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29088,145,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29089,146,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29090,147,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29091,148,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29092,149,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29093,150,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29094,151,83,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29095,114,83,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29096,115,83,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29097,116,83,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29098,117,83,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29099,118,83,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29100,119,83,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29101,190,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29102,191,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29103,192,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29104,193,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29105,194,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29106,195,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29107,196,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29108,197,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29109,198,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29110,199,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29111,200,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29112,201,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29113,202,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29114,203,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29115,204,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29116,205,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29117,206,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29118,207,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29119,208,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29120,209,84,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29121,190,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29122,191,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29123,192,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29124,193,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29125,194,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29126,195,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29127,196,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29128,197,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29129,198,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29130,199,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29131,200,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29132,201,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29133,202,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29134,203,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29135,204,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29136,205,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29137,206,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29138,207,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29139,208,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29140,209,84,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29141,194,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29142,195,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29143,196,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29144,197,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29145,198,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29146,199,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29147,200,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29148,201,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29149,202,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29150,203,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29151,204,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29152,205,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29153,206,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29154,207,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29155,208,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29156,209,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29157,210,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29158,211,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29159,212,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29160,213,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29161,214,84,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29162,200,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29163,201,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29164,202,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29165,203,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29166,204,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29167,205,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29168,206,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29169,207,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29170,208,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29171,209,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29172,210,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29173,211,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29174,212,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29175,213,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29176,214,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29177,215,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29178,216,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29179,217,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29180,218,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29181,219,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29182,220,84,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29183,200,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29184,201,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29185,202,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29186,203,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29187,204,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29188,205,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29189,206,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29190,207,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29191,208,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29192,209,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29193,210,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29194,211,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29195,212,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29196,213,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29197,214,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29198,215,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29199,216,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29200,217,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29201,218,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29202,219,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29203,220,84,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29204,164,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29205,165,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29206,166,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29207,167,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29208,168,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29209,169,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29210,170,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29211,171,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29212,172,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29213,173,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29214,174,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29215,175,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29216,176,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29217,177,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29218,178,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29219,179,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29220,180,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29221,181,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29222,182,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29223,183,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29224,184,84,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29225,168,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29226,169,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29227,170,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29228,171,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29229,172,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29230,173,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29231,174,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29232,175,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29233,176,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29234,177,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29235,178,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29236,179,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29237,180,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29238,181,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29239,182,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29240,183,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29241,184,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29242,185,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29243,186,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29244,187,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29245,188,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29246,189,84,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29247,167,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29248,168,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29249,169,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29250,170,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29251,171,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29252,172,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29253,173,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29254,174,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29255,175,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29256,176,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29257,177,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29258,178,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29259,179,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29260,180,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29261,181,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29262,182,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29263,183,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29264,184,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29265,185,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29266,186,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29267,187,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29268,188,84,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29269,168,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29270,169,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29271,170,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29272,171,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29273,172,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29274,173,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29275,174,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29276,175,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29277,176,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29278,177,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29279,178,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29280,179,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29281,180,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29282,181,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29283,182,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29284,183,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29285,184,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29286,185,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29287,186,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29288,187,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29289,188,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29290,189,84,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29291,170,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29292,171,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29293,172,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29294,173,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29295,174,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29296,175,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29297,176,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29298,177,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29299,178,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29300,179,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29301,180,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29302,181,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29303,182,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29304,183,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29305,184,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29306,185,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29307,186,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29308,187,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29309,188,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29310,189,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29311,190,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29312,191,84,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29313,214,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29314,215,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29315,216,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29316,217,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29317,218,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29318,219,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29319,220,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29320,221,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29321,222,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29322,223,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29323,224,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29324,225,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29325,226,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29326,227,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29327,228,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29328,229,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29329,230,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29330,231,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29331,232,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29332,233,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29333,234,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29334,235,84,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29335,220,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29336,221,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29337,222,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29338,223,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29339,224,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29340,225,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29341,226,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29342,227,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29343,228,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29344,229,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29345,230,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29346,231,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29347,232,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29348,233,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29349,234,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29350,235,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29351,236,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29352,237,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29353,238,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29354,239,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29355,240,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29356,241,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29357,242,84,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29358,220,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29359,221,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29360,222,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29361,223,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29362,224,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29363,225,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29364,226,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29365,227,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29366,228,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29367,229,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29368,230,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29369,231,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29370,232,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29371,233,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29372,234,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29373,235,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29374,236,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29375,237,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29376,238,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29377,239,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29378,240,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29379,241,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29380,242,84,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29381,220,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29382,221,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29383,222,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29384,223,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29385,224,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29386,225,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29387,226,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29388,227,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29389,228,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29390,229,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29391,230,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29392,231,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29393,232,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29394,233,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29395,234,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29396,235,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29397,236,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29398,237,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29399,238,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29400,239,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29401,240,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29402,241,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29403,242,84,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29404,152,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29405,153,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29406,154,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29407,155,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29408,156,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29409,157,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29410,158,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29411,159,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29412,160,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29413,161,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29414,162,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29415,163,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29416,164,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29417,165,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29418,166,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29419,167,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29420,168,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29421,169,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29422,170,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29423,171,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29424,172,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29425,173,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29426,174,84,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29427,120,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29428,121,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29429,122,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29430,123,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29431,124,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29432,125,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29433,126,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29434,127,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29435,128,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29436,129,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29437,130,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29438,131,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29439,132,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29440,133,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29441,134,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29442,135,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29443,136,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29444,137,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29445,138,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29446,139,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29447,140,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29448,141,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29449,142,84,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29450,210,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29451,211,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29452,212,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29453,213,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29454,214,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29455,215,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29456,216,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29457,217,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29458,218,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29459,219,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29460,220,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29461,221,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29462,222,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29463,223,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29464,224,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29465,225,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29466,226,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29467,227,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29468,228,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29469,229,85,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29470,210,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29471,211,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29472,212,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29473,213,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29474,214,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29475,215,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29476,216,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29477,217,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29478,218,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29479,219,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29480,220,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29481,221,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29482,222,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29483,223,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29484,224,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29485,225,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29486,226,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29487,227,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29488,228,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29489,229,85,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29490,215,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29491,216,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29492,217,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29493,218,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29494,219,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29495,220,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29496,221,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29497,222,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29498,223,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29499,224,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29500,225,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29501,226,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29502,227,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29503,228,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29504,229,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29505,230,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29506,231,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29507,232,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29508,233,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29509,234,85,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29510,221,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29511,222,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29512,223,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29513,224,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29514,225,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29515,226,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29516,227,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29517,228,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29518,229,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29519,230,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29520,231,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29521,232,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29522,233,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29523,234,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29524,235,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29525,236,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29526,237,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29527,238,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29528,239,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29529,240,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29530,241,85,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29531,221,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29532,222,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29533,223,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29534,224,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29535,225,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29536,226,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29537,227,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29538,228,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29539,229,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29540,230,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29541,231,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29542,232,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29543,233,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29544,234,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29545,235,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29546,236,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29547,237,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29548,238,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29549,239,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29550,240,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29551,241,85,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29552,185,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29553,186,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29554,187,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29555,188,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29556,189,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29557,190,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29558,191,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29559,192,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29560,193,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29561,194,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29562,195,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29563,196,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29564,197,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29565,198,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29566,199,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29567,200,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29568,201,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29569,202,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29570,203,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29571,204,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29572,205,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29573,206,85,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29574,190,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29575,191,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29576,192,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29577,193,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29578,194,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29579,195,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29580,196,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29581,197,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29582,198,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29583,199,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29584,200,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29585,201,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29586,202,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29587,203,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29588,204,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29589,205,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29590,206,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29591,207,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29592,208,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29593,209,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29594,210,85,8,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29595,189,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29596,190,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29597,191,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29598,192,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29599,193,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29600,194,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29601,195,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29602,196,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29603,197,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29604,198,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29605,199,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29606,200,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29607,201,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29608,202,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29609,203,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29610,204,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29611,205,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29612,206,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29613,207,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29614,208,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29615,209,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29616,210,85,9,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29617,190,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29618,191,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29619,192,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29620,193,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29621,194,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29622,195,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29623,196,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29624,197,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29625,198,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29626,199,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29627,200,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29628,201,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29629,202,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29630,203,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29631,204,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29632,205,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29633,206,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29634,207,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29635,208,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29636,209,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29637,210,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29638,211,85,10,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29639,192,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29640,193,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29641,194,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29642,195,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29643,196,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29644,197,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29645,198,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29646,199,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29647,200,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29648,201,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29649,202,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29650,203,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29651,204,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29652,205,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29653,206,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29654,207,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29655,208,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29656,209,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29657,210,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29658,211,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29659,212,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29660,213,85,11,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29661,236,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29662,237,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29663,238,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29664,239,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29665,240,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29666,241,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29667,242,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29668,243,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29669,244,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29670,245,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29671,246,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29672,247,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29673,248,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29674,249,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29675,250,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29676,251,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29677,252,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29678,253,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29679,254,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29680,255,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29681,256,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29682,257,85,12,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29683,243,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29684,244,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29685,245,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29686,246,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29687,247,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29688,248,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29689,249,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29690,250,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29691,251,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29692,252,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29693,253,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29694,254,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29695,255,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29696,256,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29697,257,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29698,258,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29699,259,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29700,260,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29701,261,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29702,262,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29703,263,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29704,264,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29705,265,85,13,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29706,243,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29707,244,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29708,245,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29709,246,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29710,247,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29711,248,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29712,249,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29713,250,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29714,251,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29715,252,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29716,253,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29717,254,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29718,255,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29719,256,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29720,257,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29721,258,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29722,259,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29723,260,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29724,261,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29725,262,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29726,263,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29727,264,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29728,265,85,14,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29729,243,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29730,244,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29731,245,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29732,246,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29733,247,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29734,248,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29735,249,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29736,250,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29737,251,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29738,252,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29739,253,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29740,254,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29741,255,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29742,256,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29743,257,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29744,258,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29745,259,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29746,260,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29747,261,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29748,262,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29749,263,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29750,264,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29751,265,85,15,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29752,175,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29753,176,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29754,177,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29755,178,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29756,179,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29757,180,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29758,181,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29759,182,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29760,183,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29761,184,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29762,185,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29763,186,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29764,187,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29765,188,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29766,189,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29767,190,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29768,191,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29769,192,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29770,193,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29771,194,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29772,195,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29773,196,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29774,197,85,16,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29775,143,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29776,144,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29777,145,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29778,146,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29779,147,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29780,148,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29781,149,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29782,150,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29783,151,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29784,152,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29785,153,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29786,154,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29787,155,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29788,156,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29789,157,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29790,158,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29791,159,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29792,160,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29793,161,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29794,162,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29795,163,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29796,164,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29797,165,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29798,166,85,18,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29799,120,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29800,121,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29801,122,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29802,123,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29803,124,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29804,125,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29805,126,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29806,127,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29807,128,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29808,129,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29809,130,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29810,131,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29811,132,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29812,133,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29813,134,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29814,135,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29815,136,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29816,137,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29817,138,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29818,139,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29819,140,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29820,141,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29821,142,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29822,143,85,19,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29823,98,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29824,99,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29825,100,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29826,101,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29827,102,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29828,103,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29829,104,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29830,105,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29831,106,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29832,107,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29833,108,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29834,109,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29835,110,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29836,111,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29837,112,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29838,113,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29839,114,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29840,115,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29841,116,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29842,117,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29843,118,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29844,119,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29845,120,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29846,121,85,20,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29847,83,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29848,84,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29849,85,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29850,86,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29851,87,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29852,88,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29853,89,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29854,90,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29855,91,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29856,92,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29857,93,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29858,94,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29859,95,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29860,96,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29861,97,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29862,98,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29863,99,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29864,100,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29865,101,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29866,102,85,21,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29867,73,85,22,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29868,74,85,22,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29869,75,85,22,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29870,76,85,22,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29871,77,85,22,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29872,78,85,22,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29873,79,85,22,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29874,80,85,22,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29875,81,85,22,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29876,230,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29877,231,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29878,232,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29879,233,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29880,234,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29881,235,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29882,236,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29883,237,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29884,238,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29885,239,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29886,240,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29887,241,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29888,242,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29889,243,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29890,244,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29891,245,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29892,246,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29893,247,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29894,248,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29895,249,86,1,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29896,230,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29897,231,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29898,232,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29899,233,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29900,234,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29901,235,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29902,236,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29903,237,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29904,238,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29905,239,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29906,240,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29907,241,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29908,242,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29909,243,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29910,244,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29911,245,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29912,246,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29913,247,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29914,248,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29915,249,86,2,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29916,235,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29917,236,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29918,237,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29919,238,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29920,239,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29921,240,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29922,241,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29923,242,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29924,243,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29925,244,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29926,245,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29927,246,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29928,247,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29929,248,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29930,249,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29931,250,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29932,251,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29933,252,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29934,253,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29935,254,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29936,255,86,3,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29937,242,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29938,243,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29939,244,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29940,245,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29941,246,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29942,247,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29943,248,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29944,249,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29945,250,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29946,251,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29947,252,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29948,253,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29949,254,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29950,255,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29951,256,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29952,257,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29953,258,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29954,259,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29955,260,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29956,261,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29957,262,86,4,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29958,242,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29959,243,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29960,244,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29961,245,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29962,246,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29963,247,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29964,248,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29965,249,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29966,250,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29967,251,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29968,252,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29969,253,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29970,254,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29971,255,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29972,256,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29973,257,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29974,258,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29975,259,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29976,260,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29977,261,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29978,262,86,5,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29979,207,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29980,208,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29981,209,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29982,210,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29983,211,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29984,212,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29985,213,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29986,214,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29987,215,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29988,216,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29989,217,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29990,218,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29991,219,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29992,220,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29993,221,86,7,1,'2022-09-02 14:23:55','2022-09-02 14:23:55'),(29994,222,86,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(29995,223,86,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(29996,224,86,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(29997,225,86,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(29998,226,86,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(29999,227,86,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30000,228,86,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30001,211,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30002,212,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30003,213,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30004,214,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30005,215,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30006,216,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30007,217,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30008,218,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30009,219,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30010,220,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30011,221,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30012,222,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30013,223,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30014,224,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30015,225,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30016,226,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30017,227,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30018,228,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30019,229,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30020,230,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30021,231,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30022,232,86,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30023,211,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30024,212,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30025,213,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30026,214,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30027,215,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30028,216,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30029,217,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30030,218,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30031,219,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30032,220,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30033,221,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30034,222,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30035,223,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30036,224,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30037,225,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30038,226,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30039,227,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30040,228,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30041,229,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30042,230,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30043,231,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30044,232,86,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30045,212,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30046,213,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30047,214,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30048,215,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30049,216,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30050,217,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30051,218,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30052,219,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30053,220,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30054,221,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30055,222,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30056,223,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30057,224,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30058,225,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30059,226,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30060,227,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30061,228,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30062,229,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30063,230,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30064,231,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30065,232,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30066,233,86,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30067,214,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30068,215,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30069,216,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30070,217,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30071,218,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30072,219,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30073,220,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30074,221,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30075,222,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30076,223,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30077,224,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30078,225,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30079,226,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30080,227,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30081,228,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30082,229,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30083,230,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30084,231,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30085,232,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30086,233,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30087,234,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30088,235,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30089,236,86,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30090,258,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30091,259,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30092,260,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30093,261,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30094,262,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30095,263,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30096,264,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30097,265,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30098,266,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30099,267,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30100,268,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30101,269,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30102,270,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30103,271,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30104,272,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30105,273,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30106,274,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30107,275,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30108,276,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30109,277,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30110,278,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30111,279,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30112,280,86,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30113,266,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30114,267,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30115,268,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30116,269,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30117,270,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30118,271,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30119,272,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30120,273,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30121,274,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30122,275,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30123,276,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30124,277,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30125,278,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30126,279,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30127,280,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30128,281,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30129,282,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30130,283,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30131,284,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30132,285,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30133,286,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30134,287,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30135,288,86,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30136,266,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30137,267,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30138,268,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30139,269,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30140,270,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30141,271,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30142,272,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30143,273,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30144,274,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30145,275,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30146,276,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30147,277,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30148,278,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30149,279,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30150,280,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30151,281,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30152,282,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30153,283,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30154,284,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30155,285,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30156,286,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30157,287,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30158,288,86,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30159,266,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30160,267,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30161,268,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30162,269,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30163,270,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30164,271,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30165,272,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30166,273,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30167,274,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30168,275,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30169,276,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30170,277,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30171,278,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30172,279,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30173,280,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30174,281,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30175,282,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30176,283,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30177,284,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30178,285,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30179,286,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30180,287,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30181,288,86,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30182,198,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30183,199,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30184,200,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30185,201,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30186,202,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30187,203,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30188,204,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30189,205,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30190,206,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30191,207,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30192,208,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30193,209,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30194,210,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30195,211,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30196,212,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30197,213,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30198,214,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30199,215,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30200,216,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30201,217,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30202,218,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30203,219,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30204,220,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30205,221,86,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30206,167,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30207,168,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30208,169,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30209,170,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30210,171,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30211,172,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30212,173,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30213,174,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30214,175,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30215,176,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30216,177,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30217,178,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30218,179,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30219,180,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30220,181,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30221,182,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30222,183,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30223,184,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30224,185,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30225,186,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30226,187,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30227,188,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30228,189,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30229,190,86,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30230,144,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30231,145,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30232,146,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30233,147,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30234,148,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30235,149,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30236,150,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30237,151,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30238,152,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30239,153,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30240,154,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30241,155,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30242,156,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30243,157,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30244,158,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30245,159,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30246,160,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30247,161,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30248,162,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30249,163,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30250,164,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30251,165,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30252,166,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30253,167,86,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30254,122,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30255,123,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30256,124,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30257,125,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30258,126,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30259,127,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30260,128,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30261,129,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30262,130,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30263,131,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30264,132,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30265,133,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30266,134,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30267,135,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30268,136,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30269,137,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30270,138,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30271,139,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30272,140,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30273,141,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30274,142,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30275,143,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30276,144,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30277,145,86,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30278,103,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30279,104,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30280,105,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30281,106,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30282,107,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30283,108,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30284,109,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30285,110,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30286,111,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30287,112,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30288,113,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30289,114,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30290,115,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30291,116,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30292,117,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30293,118,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30294,119,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30295,120,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30296,121,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30297,122,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30298,123,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30299,124,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30300,125,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30301,126,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30302,127,86,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30303,82,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30304,83,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30305,84,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30306,85,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30307,86,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30308,87,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30309,88,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30310,89,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30311,90,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30312,91,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30313,92,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30314,93,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30315,94,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30316,95,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30317,96,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30318,97,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30319,98,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30320,99,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30321,100,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30322,101,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30323,102,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30324,103,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30325,104,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30326,105,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30327,106,86,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30328,64,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30329,65,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30330,66,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30331,67,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30332,68,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30333,69,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30334,70,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30335,71,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30336,72,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30337,73,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30338,74,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30339,75,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30340,76,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30341,77,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30342,78,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30343,79,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30344,80,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30345,81,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30346,82,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30347,83,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30348,84,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30349,85,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30350,86,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30351,87,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30352,88,86,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30353,54,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30354,55,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30355,56,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30356,57,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30357,58,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30358,59,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30359,60,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30360,61,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30361,62,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30362,63,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30363,64,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30364,65,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30365,66,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30366,67,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30367,68,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30368,69,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30369,70,86,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30370,42,86,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30371,43,86,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30372,44,86,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30373,45,86,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30374,46,86,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30375,47,86,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30376,48,86,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30377,49,86,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30378,50,86,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30379,51,86,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30380,52,86,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30381,27,86,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30382,28,86,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30383,29,86,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30384,30,86,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30385,250,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30386,251,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30387,252,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30388,253,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30389,254,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30390,255,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30391,256,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30392,257,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30393,258,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30394,259,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30395,260,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30396,261,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30397,262,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30398,263,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30399,264,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30400,265,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30401,266,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30402,267,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30403,268,87,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30404,250,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30405,251,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30406,252,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30407,253,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30408,254,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30409,255,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30410,256,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30411,257,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30412,258,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30413,259,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30414,260,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30415,261,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30416,262,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30417,263,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30418,264,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30419,265,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30420,266,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30421,267,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30422,268,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30423,269,87,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30424,256,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30425,257,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30426,258,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30427,259,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30428,260,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30429,261,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30430,262,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30431,263,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30432,264,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30433,265,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30434,266,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30435,267,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30436,268,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30437,269,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30438,270,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30439,271,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30440,272,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30441,273,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30442,274,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30443,275,87,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30444,263,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30445,264,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30446,265,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30447,266,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30448,267,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30449,268,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30450,269,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30451,270,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30452,271,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30453,272,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30454,273,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30455,274,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30456,275,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30457,276,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30458,277,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30459,278,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30460,279,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30461,280,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30462,281,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30463,282,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30464,283,87,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30465,263,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30466,264,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30467,265,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30468,266,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30469,267,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30470,268,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30471,269,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30472,270,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30473,271,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30474,272,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30475,273,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30476,274,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30477,275,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30478,276,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30479,277,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30480,278,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30481,279,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30482,280,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30483,281,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30484,282,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30485,283,87,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30486,229,87,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30487,230,87,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30488,231,87,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30489,232,87,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30490,233,87,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30491,234,87,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30492,235,87,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30493,236,87,7,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30494,233,87,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30495,234,87,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30496,235,87,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30497,236,87,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30498,237,87,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30499,238,87,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30500,239,87,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30501,240,87,8,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30502,233,87,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30503,234,87,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30504,235,87,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30505,236,87,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30506,237,87,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30507,238,87,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30508,239,87,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30509,240,87,9,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30510,234,87,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30511,235,87,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30512,236,87,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30513,237,87,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30514,238,87,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30515,239,87,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30516,240,87,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30517,241,87,10,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30518,237,87,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30519,238,87,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30520,239,87,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30521,240,87,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30522,241,87,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30523,242,87,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30524,243,87,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30525,244,87,11,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30526,281,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30527,282,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30528,283,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30529,284,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30530,285,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30531,286,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30532,287,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30533,288,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30534,289,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30535,290,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30536,291,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30537,292,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30538,293,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30539,294,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30540,295,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30541,296,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30542,297,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30543,298,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30544,299,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30545,300,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30546,301,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30547,302,87,12,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30548,289,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30549,290,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30550,291,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30551,292,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30552,293,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30553,294,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30554,295,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30555,296,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30556,297,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30557,298,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30558,299,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30559,300,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30560,301,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30561,302,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30562,303,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30563,304,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30564,305,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30565,306,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30566,307,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30567,308,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30568,309,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30569,310,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30570,311,87,13,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30571,289,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30572,290,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30573,291,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30574,292,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30575,293,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30576,294,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30577,295,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30578,296,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30579,297,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30580,298,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30581,299,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30582,300,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30583,301,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30584,302,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30585,303,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30586,304,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30587,305,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30588,306,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30589,307,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30590,308,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30591,309,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30592,310,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30593,311,87,14,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30594,289,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30595,290,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30596,291,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30597,292,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30598,293,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30599,294,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30600,295,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30601,296,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30602,297,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30603,298,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30604,299,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30605,300,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30606,301,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30607,302,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30608,303,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30609,304,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30610,305,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30611,306,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30612,307,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30613,308,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30614,309,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30615,310,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30616,311,87,15,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30617,222,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30618,223,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30619,224,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30620,225,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30621,226,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30622,227,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30623,228,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30624,229,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30625,230,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30626,231,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30627,232,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30628,233,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30629,234,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30630,235,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30631,236,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30632,237,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30633,238,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30634,239,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30635,240,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30636,241,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30637,242,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30638,243,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30639,244,87,16,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30640,191,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30641,192,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30642,193,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30643,194,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30644,195,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30645,196,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30646,197,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30647,198,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30648,199,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30649,200,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30650,201,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30651,202,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30652,203,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30653,204,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30654,205,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30655,206,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30656,207,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30657,208,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30658,209,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30659,210,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30660,211,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30661,212,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30662,213,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30663,214,87,18,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30664,168,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30665,169,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30666,170,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30667,171,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30668,172,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30669,173,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30670,174,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30671,175,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30672,176,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30673,177,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30674,178,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30675,179,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30676,180,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30677,181,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30678,182,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30679,183,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30680,184,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30681,185,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30682,186,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30683,187,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30684,188,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30685,189,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30686,190,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30687,191,87,19,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30688,146,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30689,147,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30690,148,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30691,149,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30692,150,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30693,151,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30694,152,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30695,153,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30696,154,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30697,155,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30698,156,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30699,157,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30700,158,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30701,159,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30702,160,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30703,161,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30704,162,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30705,163,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30706,164,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30707,165,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30708,166,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30709,167,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30710,168,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30711,169,87,20,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30712,128,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30713,129,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30714,130,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30715,131,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30716,132,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30717,133,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30718,134,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30719,135,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30720,136,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30721,137,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30722,138,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30723,139,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30724,140,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30725,141,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30726,142,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30727,143,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30728,144,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30729,145,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30730,146,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30731,147,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30732,148,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30733,149,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30734,150,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30735,151,87,21,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30736,107,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30737,108,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30738,109,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30739,110,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30740,111,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30741,112,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30742,113,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30743,114,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30744,115,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30745,116,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30746,117,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30747,118,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30748,119,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30749,120,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30750,121,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30751,122,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30752,123,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30753,124,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30754,125,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30755,126,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30756,127,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30757,128,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30758,129,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30759,130,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30760,131,87,22,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30761,89,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30762,90,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30763,91,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30764,92,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30765,93,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30766,94,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30767,95,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30768,96,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30769,97,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30770,98,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30771,99,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30772,100,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30773,101,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30774,102,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30775,103,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30776,104,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30777,105,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30778,106,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30779,107,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30780,108,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30781,109,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30782,110,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30783,111,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30784,112,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30785,113,87,23,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30786,71,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30787,72,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30788,73,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30789,74,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30790,75,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30791,76,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30792,77,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30793,78,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30794,79,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30795,80,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30796,81,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30797,82,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30798,83,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30799,84,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30800,85,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30801,86,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30802,87,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30803,88,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30804,89,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30805,90,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30806,91,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30807,92,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30808,93,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30809,94,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30810,95,87,24,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30811,53,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30812,54,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30813,55,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30814,56,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30815,57,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30816,58,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30817,59,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30818,60,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30819,61,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30820,62,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30821,63,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30822,64,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30823,65,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30824,66,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30825,67,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30826,68,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30827,69,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30828,70,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30829,71,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30830,72,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30831,73,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30832,74,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30833,75,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30834,76,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30835,77,87,25,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30836,31,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30837,32,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30838,33,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30839,34,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30840,35,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30841,36,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30842,37,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30843,38,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30844,39,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30845,40,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30846,41,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30847,42,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30848,43,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30849,44,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30850,45,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30851,46,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30852,47,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30853,48,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30854,49,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30855,50,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30856,51,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30857,52,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30858,53,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30859,54,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30860,55,87,26,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30861,1,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30862,2,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30863,3,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30864,4,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30865,5,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30866,6,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30867,7,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30868,8,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30869,9,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30870,10,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30871,11,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30872,12,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30873,13,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30874,14,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30875,15,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30876,16,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30877,17,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30878,18,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30879,19,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30880,20,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30881,21,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30882,22,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30883,23,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30884,24,87,27,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30885,1,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30886,2,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30887,3,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30888,4,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30889,5,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30890,6,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30891,7,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30892,8,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30893,9,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30894,10,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30895,11,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30896,12,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30897,13,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30898,14,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30899,15,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30900,16,87,54,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30901,1,87,81,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30902,2,87,81,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30903,3,87,81,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30904,4,87,81,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30905,5,87,81,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30906,6,87,81,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30907,7,87,81,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30908,1,88,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30909,2,88,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30910,3,88,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30911,4,88,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30912,5,88,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30913,6,88,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30914,7,88,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30915,8,88,1,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30916,1,88,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30917,2,88,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30918,3,88,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30919,4,88,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30920,5,88,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30921,6,88,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30922,7,88,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30923,8,88,2,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30924,1,88,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30925,2,88,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30926,3,88,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30927,4,88,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30928,5,88,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30929,6,88,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30930,7,88,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30931,8,88,3,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30932,1,88,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30933,2,88,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30934,3,88,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30935,4,88,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30936,5,88,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30937,6,88,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30938,7,88,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30939,8,88,4,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30940,1,88,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30941,2,88,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30942,3,88,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30943,4,88,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30944,5,88,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30945,6,88,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30946,7,88,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30947,8,88,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30948,9,88,5,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30949,1,88,6,1,'2022-09-02 14:23:56','2022-09-02 14:23:56'),(30950,2,88,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30951,3,88,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30952,4,88,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30953,5,88,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30954,6,88,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30955,7,88,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30956,8,88,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30957,9,88,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30958,1,88,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30959,2,88,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30960,3,88,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30961,4,88,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30962,5,88,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30963,6,88,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30964,7,88,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30965,8,88,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30966,9,88,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30967,1,88,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30968,2,88,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30969,3,88,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30970,4,88,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30971,5,88,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30972,6,88,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30973,7,88,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30974,8,88,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30975,9,88,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30976,1,88,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30977,2,88,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30978,3,88,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30979,4,88,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30980,5,88,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30981,6,88,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30982,7,88,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30983,8,88,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30984,9,88,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30985,1,88,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30986,2,88,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30987,3,88,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30988,4,88,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30989,5,88,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30990,6,88,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30991,7,88,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30992,8,88,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30993,9,88,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30994,1,88,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30995,2,88,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30996,3,88,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30997,4,88,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30998,5,88,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(30999,6,88,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31000,7,88,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31001,8,88,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31002,9,88,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31003,1,88,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31004,2,88,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31005,3,88,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31006,4,88,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31007,5,88,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31008,6,88,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31009,7,88,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31010,8,88,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31011,9,88,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31012,1,88,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31013,2,88,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31014,3,88,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31015,4,88,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31016,5,88,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31017,6,88,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31018,7,88,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31019,8,88,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31020,9,88,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31021,10,88,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31022,1,88,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31023,2,88,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31024,3,88,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31025,4,88,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31026,5,88,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31027,6,88,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31028,7,88,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31029,8,88,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31030,9,88,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31031,10,88,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31032,1,88,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31033,2,88,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31034,3,88,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31035,4,88,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31036,5,88,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31037,6,88,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31038,7,88,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31039,8,88,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31040,9,88,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31041,10,88,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31042,1,88,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31043,2,88,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31044,3,88,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31045,4,88,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31046,5,88,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31047,6,88,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31048,7,88,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31049,8,88,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31050,9,88,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31051,10,88,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31052,1,88,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31053,2,88,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31054,3,88,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31055,4,88,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31056,5,88,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31057,6,88,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31058,7,88,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31059,8,88,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31060,9,88,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31061,10,88,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31062,1,88,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31063,2,88,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31064,3,88,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31065,4,88,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31066,5,88,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31067,6,88,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31068,7,88,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31069,8,88,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31070,9,88,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31071,10,88,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31072,9,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31073,10,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31074,11,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31075,12,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31076,13,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31077,14,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31078,15,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31079,16,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31080,17,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31081,18,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31082,19,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31083,20,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31084,21,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31085,22,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31086,23,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31087,24,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31088,25,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31089,26,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31090,27,89,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31091,9,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31092,10,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31093,11,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31094,12,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31095,13,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31096,14,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31097,15,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31098,16,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31099,17,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31100,18,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31101,19,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31102,20,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31103,21,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31104,22,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31105,23,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31106,24,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31107,25,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31108,26,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31109,27,89,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31110,9,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31111,10,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31112,11,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31113,12,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31114,13,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31115,14,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31116,15,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31117,16,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31118,17,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31119,18,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31120,19,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31121,20,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31122,21,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31123,22,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31124,23,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31125,24,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31126,25,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31127,26,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31128,27,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31129,28,89,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31130,9,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31131,10,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31132,11,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31133,12,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31134,13,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31135,14,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31136,15,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31137,16,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31138,17,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31139,18,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31140,19,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31141,20,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31142,21,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31143,22,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31144,23,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31145,24,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31146,25,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31147,26,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31148,27,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31149,28,89,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31150,10,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31151,11,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31152,12,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31153,13,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31154,14,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31155,15,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31156,16,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31157,17,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31158,18,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31159,19,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31160,20,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31161,21,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31162,22,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31163,23,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31164,24,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31165,25,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31166,26,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31167,27,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31168,28,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31169,29,89,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31170,10,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31171,11,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31172,12,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31173,13,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31174,14,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31175,15,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31176,16,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31177,17,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31178,18,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31179,19,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31180,20,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31181,21,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31182,22,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31183,23,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31184,24,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31185,25,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31186,26,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31187,27,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31188,28,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31189,29,89,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31190,10,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31191,11,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31192,12,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31193,13,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31194,14,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31195,15,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31196,16,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31197,17,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31198,18,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31199,19,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31200,20,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31201,21,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31202,22,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31203,23,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31204,24,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31205,25,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31206,26,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31207,27,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31208,28,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31209,29,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31210,30,89,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31211,10,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31212,11,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31213,12,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31214,13,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31215,14,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31216,15,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31217,16,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31218,17,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31219,18,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31220,19,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31221,20,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31222,21,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31223,22,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31224,23,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31225,24,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31226,25,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31227,26,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31228,27,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31229,28,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31230,29,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31231,30,89,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31232,10,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31233,11,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31234,12,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31235,13,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31236,14,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31237,15,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31238,16,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31239,17,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31240,18,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31241,19,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31242,20,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31243,21,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31244,22,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31245,23,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31246,24,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31247,25,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31248,26,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31249,27,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31250,28,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31251,29,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31252,30,89,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31253,10,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31254,11,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31255,12,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31256,13,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31257,14,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31258,15,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31259,16,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31260,17,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31261,18,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31262,19,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31263,20,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31264,21,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31265,22,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31266,23,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31267,24,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31268,25,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31269,26,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31270,27,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31271,28,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31272,29,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31273,30,89,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31274,10,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31275,11,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31276,12,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31277,13,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31278,14,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31279,15,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31280,16,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31281,17,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31282,18,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31283,19,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31284,20,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31285,21,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31286,22,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31287,23,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31288,24,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31289,25,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31290,26,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31291,27,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31292,28,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31293,29,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31294,30,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31295,31,89,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31296,10,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31297,11,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31298,12,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31299,13,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31300,14,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31301,15,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31302,16,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31303,17,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31304,18,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31305,19,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31306,20,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31307,21,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31308,22,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31309,23,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31310,24,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31311,25,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31312,26,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31313,27,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31314,28,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31315,29,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31316,30,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31317,31,89,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31318,11,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31319,12,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31320,13,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31321,14,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31322,15,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31323,16,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31324,17,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31325,18,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31326,19,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31327,20,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31328,21,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31329,22,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31330,23,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31331,24,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31332,25,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31333,26,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31334,27,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31335,28,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31336,29,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31337,30,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31338,31,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31339,32,89,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31340,11,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31341,12,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31342,13,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31343,14,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31344,15,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31345,16,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31346,17,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31347,18,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31348,19,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31349,20,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31350,21,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31351,22,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31352,23,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31353,24,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31354,25,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31355,26,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31356,27,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31357,28,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31358,29,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31359,30,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31360,31,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31361,32,89,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31362,11,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31363,12,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31364,13,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31365,14,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31366,15,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31367,16,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31368,17,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31369,18,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31370,19,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31371,20,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31372,21,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31373,22,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31374,23,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31375,24,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31376,25,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31377,26,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31378,27,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31379,28,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31380,29,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31381,30,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31382,31,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31383,32,89,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31384,11,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31385,12,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31386,13,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31387,14,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31388,15,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31389,16,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31390,17,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31391,18,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31392,19,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31393,20,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31394,21,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31395,22,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31396,23,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31397,24,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31398,25,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31399,26,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31400,27,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31401,28,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31402,29,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31403,30,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31404,31,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31405,32,89,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31406,11,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31407,12,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31408,13,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31409,14,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31410,15,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31411,16,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31412,17,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31413,18,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31414,19,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31415,20,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31416,21,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31417,22,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31418,23,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31419,24,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31420,25,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31421,26,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31422,27,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31423,28,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31424,29,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31425,30,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31426,31,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31427,32,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31428,33,89,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31429,11,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31430,12,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31431,13,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31432,14,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31433,15,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31434,16,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31435,17,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31436,18,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31437,19,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31438,20,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31439,21,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31440,22,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31441,23,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31442,24,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31443,25,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31444,26,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31445,27,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31446,28,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31447,29,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31448,30,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31449,31,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31450,32,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31451,33,89,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31452,28,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31453,29,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31454,30,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31455,31,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31456,32,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31457,33,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31458,34,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31459,35,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31460,36,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31461,37,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31462,38,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31463,39,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31464,40,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31465,41,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31466,42,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31467,43,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31468,44,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31469,45,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31470,46,90,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31471,28,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31472,29,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31473,30,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31474,31,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31475,32,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31476,33,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31477,34,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31478,35,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31479,36,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31480,37,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31481,38,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31482,39,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31483,40,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31484,41,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31485,42,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31486,43,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31487,44,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31488,45,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31489,46,90,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31490,29,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31491,30,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31492,31,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31493,32,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31494,33,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31495,34,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31496,35,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31497,36,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31498,37,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31499,38,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31500,39,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31501,40,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31502,41,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31503,42,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31504,43,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31505,44,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31506,45,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31507,46,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31508,47,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31509,48,90,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31510,29,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31511,30,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31512,31,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31513,32,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31514,33,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31515,34,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31516,35,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31517,36,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31518,37,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31519,38,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31520,39,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31521,40,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31522,41,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31523,42,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31524,43,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31525,44,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31526,45,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31527,46,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31528,47,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31529,48,90,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31530,30,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31531,31,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31532,32,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31533,33,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31534,34,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31535,35,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31536,36,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31537,37,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31538,38,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31539,39,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31540,40,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31541,41,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31542,42,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31543,43,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31544,44,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31545,45,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31546,46,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31547,47,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31548,48,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31549,49,90,5,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31550,30,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31551,31,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31552,32,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31553,33,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31554,34,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31555,35,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31556,36,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31557,37,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31558,38,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31559,39,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31560,40,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31561,41,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31562,42,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31563,43,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31564,44,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31565,45,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31566,46,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31567,47,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31568,48,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31569,49,90,6,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31570,31,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31571,32,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31572,33,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31573,34,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31574,35,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31575,36,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31576,37,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31577,38,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31578,39,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31579,40,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31580,41,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31581,42,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31582,43,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31583,44,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31584,45,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31585,46,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31586,47,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31587,48,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31588,49,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31589,50,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31590,51,90,7,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31591,31,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31592,32,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31593,33,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31594,34,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31595,35,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31596,36,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31597,37,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31598,38,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31599,39,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31600,40,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31601,41,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31602,42,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31603,43,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31604,44,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31605,45,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31606,46,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31607,47,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31608,48,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31609,49,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31610,50,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31611,51,90,8,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31612,31,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31613,32,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31614,33,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31615,34,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31616,35,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31617,36,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31618,37,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31619,38,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31620,39,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31621,40,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31622,41,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31623,42,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31624,43,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31625,44,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31626,45,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31627,46,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31628,47,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31629,48,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31630,49,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31631,50,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31632,51,90,9,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31633,31,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31634,32,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31635,33,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31636,34,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31637,35,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31638,36,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31639,37,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31640,38,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31641,39,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31642,40,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31643,41,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31644,42,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31645,43,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31646,44,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31647,45,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31648,46,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31649,47,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31650,48,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31651,49,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31652,50,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31653,51,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31654,52,90,10,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31655,32,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31656,33,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31657,34,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31658,35,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31659,36,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31660,37,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31661,38,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31662,39,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31663,40,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31664,41,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31665,42,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31666,43,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31667,44,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31668,45,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31669,46,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31670,47,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31671,48,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31672,49,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31673,50,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31674,51,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31675,52,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31676,53,90,11,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31677,32,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31678,33,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31679,34,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31680,35,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31681,36,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31682,37,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31683,38,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31684,39,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31685,40,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31686,41,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31687,42,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31688,43,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31689,44,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31690,45,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31691,46,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31692,47,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31693,48,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31694,49,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31695,50,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31696,51,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31697,52,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31698,53,90,12,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31699,33,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31700,34,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31701,35,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31702,36,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31703,37,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31704,38,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31705,39,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31706,40,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31707,41,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31708,42,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31709,43,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31710,44,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31711,45,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31712,46,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31713,47,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31714,48,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31715,49,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31716,50,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31717,51,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31718,52,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31719,53,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31720,54,90,13,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31721,33,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31722,34,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31723,35,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31724,36,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31725,37,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31726,38,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31727,39,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31728,40,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31729,41,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31730,42,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31731,43,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31732,44,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31733,45,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31734,46,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31735,47,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31736,48,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31737,49,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31738,50,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31739,51,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31740,52,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31741,53,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31742,54,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31743,55,90,14,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31744,33,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31745,34,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31746,35,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31747,36,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31748,37,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31749,38,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31750,39,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31751,40,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31752,41,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31753,42,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31754,43,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31755,44,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31756,45,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31757,46,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31758,47,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31759,48,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31760,49,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31761,50,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31762,51,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31763,52,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31764,53,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31765,54,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31766,55,90,15,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31767,33,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31768,34,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31769,35,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31770,36,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31771,37,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31772,38,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31773,39,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31774,40,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31775,41,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31776,42,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31777,43,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31778,44,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31779,45,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31780,46,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31781,47,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31782,48,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31783,49,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31784,50,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31785,51,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31786,52,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31787,53,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31788,54,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31789,55,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31790,56,90,16,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31791,34,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31792,35,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31793,36,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31794,37,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31795,38,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31796,39,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31797,40,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31798,41,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31799,42,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31800,43,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31801,44,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31802,45,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31803,46,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31804,47,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31805,48,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31806,49,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31807,50,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31808,51,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31809,52,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31810,53,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31811,54,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31812,55,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31813,56,90,18,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31814,34,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31815,35,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31816,36,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31817,37,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31818,38,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31819,39,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31820,40,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31821,41,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31822,42,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31823,43,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31824,44,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31825,45,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31826,46,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31827,47,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31828,48,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31829,49,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31830,50,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31831,51,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31832,52,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31833,53,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31834,54,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31835,55,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31836,56,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31837,57,90,19,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31838,47,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31839,48,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31840,49,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31841,50,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31842,51,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31843,52,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31844,53,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31845,54,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31846,55,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31847,56,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31848,57,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31849,58,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31850,59,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31851,60,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31852,61,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31853,62,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31854,63,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31855,64,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31856,65,91,1,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31857,47,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31858,48,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31859,49,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31860,50,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31861,51,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31862,52,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31863,53,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31864,54,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31865,55,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31866,56,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31867,57,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31868,58,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31869,59,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31870,60,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31871,61,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31872,62,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31873,63,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31874,64,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31875,65,91,2,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31876,49,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31877,50,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31878,51,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31879,52,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31880,53,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31881,54,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31882,55,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31883,56,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31884,57,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31885,58,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31886,59,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31887,60,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31888,61,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31889,62,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31890,63,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31891,64,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31892,65,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31893,66,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31894,67,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31895,68,91,3,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31896,49,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31897,50,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31898,51,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31899,52,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31900,53,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31901,54,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31902,55,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31903,56,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31904,57,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31905,58,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31906,59,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31907,60,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31908,61,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31909,62,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31910,63,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31911,64,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31912,65,91,4,1,'2022-09-02 14:23:57','2022-09-02 14:23:57'),(31913,66,91,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31914,67,91,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31915,68,91,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31916,50,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31917,51,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31918,52,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31919,53,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31920,54,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31921,55,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31922,56,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31923,57,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31924,58,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31925,59,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31926,60,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31927,61,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31928,62,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31929,63,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31930,64,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31931,65,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31932,66,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31933,67,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31934,68,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31935,69,91,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31936,50,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31937,51,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31938,52,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31939,53,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31940,54,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31941,55,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31942,56,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31943,57,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31944,58,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31945,59,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31946,60,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31947,61,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31948,62,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31949,63,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31950,64,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31951,65,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31952,66,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31953,67,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31954,68,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31955,69,91,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31956,52,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31957,53,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31958,54,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31959,55,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31960,56,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31961,57,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31962,58,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31963,59,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31964,60,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31965,61,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31966,62,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31967,63,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31968,64,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31969,65,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31970,66,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31971,67,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31972,68,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31973,69,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31974,70,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31975,71,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31976,72,91,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31977,52,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31978,53,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31979,54,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31980,55,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31981,56,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31982,57,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31983,58,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31984,59,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31985,60,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31986,61,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31987,62,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31988,63,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31989,64,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31990,65,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31991,66,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31992,67,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31993,68,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31994,69,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31995,70,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31996,71,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31997,72,91,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31998,52,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(31999,53,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32000,54,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32001,55,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32002,56,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32003,57,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32004,58,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32005,59,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32006,60,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32007,61,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32008,62,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32009,63,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32010,64,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32011,65,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32012,66,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32013,67,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32014,68,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32015,69,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32016,70,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32017,71,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32018,72,91,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32019,53,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32020,54,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32021,55,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32022,56,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32023,57,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32024,58,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32025,59,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32026,60,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32027,61,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32028,62,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32029,63,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32030,64,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32031,65,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32032,66,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32033,67,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32034,68,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32035,69,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32036,70,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32037,71,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32038,72,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32039,73,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32040,74,91,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32041,54,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32042,55,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32043,56,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32044,57,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32045,58,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32046,59,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32047,60,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32048,61,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32049,62,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32050,63,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32051,64,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32052,65,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32053,66,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32054,67,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32055,68,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32056,69,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32057,70,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32058,71,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32059,72,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32060,73,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32061,74,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32062,75,91,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32063,54,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32064,55,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32065,56,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32066,57,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32067,58,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32068,59,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32069,60,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32070,61,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32071,62,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32072,63,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32073,64,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32074,65,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32075,66,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32076,67,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32077,68,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32078,69,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32079,70,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32080,71,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32081,72,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32082,73,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32083,74,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32084,75,91,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32085,55,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32086,56,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32087,57,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32088,58,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32089,59,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32090,60,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32091,61,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32092,62,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32093,63,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32094,64,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32095,65,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32096,66,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32097,67,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32098,68,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32099,69,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32100,70,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32101,71,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32102,72,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32103,73,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32104,74,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32105,75,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32106,76,91,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32107,56,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32108,57,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32109,58,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32110,59,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32111,60,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32112,61,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32113,62,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32114,63,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32115,64,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32116,65,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32117,66,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32118,67,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32119,68,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32120,69,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32121,70,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32122,71,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32123,72,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32124,73,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32125,74,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32126,75,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32127,76,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32128,77,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32129,78,91,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32130,56,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32131,57,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32132,58,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32133,59,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32134,60,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32135,61,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32136,62,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32137,63,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32138,64,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32139,65,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32140,66,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32141,67,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32142,68,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32143,69,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32144,70,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32145,71,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32146,72,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32147,73,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32148,74,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32149,75,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32150,76,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32151,77,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32152,78,91,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32153,57,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32154,58,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32155,59,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32156,60,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32157,61,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32158,62,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32159,63,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32160,64,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32161,65,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32162,66,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32163,67,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32164,68,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32165,69,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32166,70,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32167,71,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32168,72,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32169,73,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32170,74,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32171,75,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32172,76,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32173,77,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32174,78,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32175,79,91,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32176,57,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32177,58,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32178,59,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32179,60,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32180,61,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32181,62,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32182,63,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32183,64,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32184,65,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32185,66,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32186,67,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32187,68,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32188,69,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32189,70,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32190,71,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32191,72,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32192,73,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32193,74,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32194,75,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32195,76,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32196,77,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32197,78,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32198,79,91,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32199,58,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32200,59,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32201,60,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32202,61,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32203,62,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32204,63,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32205,64,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32206,65,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32207,66,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32208,67,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32209,68,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32210,69,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32211,70,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32212,71,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32213,72,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32214,73,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32215,74,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32216,75,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32217,76,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32218,77,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32219,78,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32220,79,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32221,80,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32222,81,91,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32223,66,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32224,67,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32225,68,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32226,69,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32227,70,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32228,71,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32229,72,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32230,73,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32231,74,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32232,75,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32233,76,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32234,77,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32235,78,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32236,79,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32237,80,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32238,81,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32239,82,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32240,83,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32241,84,92,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32242,66,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32243,67,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32244,68,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32245,69,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32246,70,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32247,71,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32248,72,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32249,73,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32250,74,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32251,75,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32252,76,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32253,77,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32254,78,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32255,79,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32256,80,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32257,81,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32258,82,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32259,83,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32260,84,92,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32261,69,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32262,70,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32263,71,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32264,72,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32265,73,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32266,74,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32267,75,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32268,76,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32269,77,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32270,78,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32271,79,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32272,80,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32273,81,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32274,82,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32275,83,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32276,84,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32277,85,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32278,86,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32279,87,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32280,88,92,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32281,69,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32282,70,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32283,71,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32284,72,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32285,73,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32286,74,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32287,75,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32288,76,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32289,77,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32290,78,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32291,79,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32292,80,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32293,81,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32294,82,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32295,83,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32296,84,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32297,85,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32298,86,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32299,87,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32300,88,92,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32301,70,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32302,71,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32303,72,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32304,73,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32305,74,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32306,75,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32307,76,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32308,77,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32309,78,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32310,79,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32311,80,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32312,81,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32313,82,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32314,83,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32315,84,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32316,85,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32317,86,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32318,87,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32319,88,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32320,89,92,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32321,70,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32322,71,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32323,72,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32324,73,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32325,74,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32326,75,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32327,76,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32328,77,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32329,78,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32330,79,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32331,80,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32332,81,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32333,82,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32334,83,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32335,84,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32336,85,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32337,86,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32338,87,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32339,88,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32340,89,92,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32341,73,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32342,74,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32343,75,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32344,76,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32345,77,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32346,78,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32347,79,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32348,80,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32349,81,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32350,82,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32351,83,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32352,84,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32353,85,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32354,86,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32355,87,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32356,88,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32357,89,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32358,90,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32359,91,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32360,92,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32361,93,92,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32362,73,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32363,74,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32364,75,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32365,76,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32366,77,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32367,78,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32368,79,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32369,80,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32370,81,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32371,82,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32372,83,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32373,84,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32374,85,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32375,86,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32376,87,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32377,88,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32378,89,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32379,90,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32380,91,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32381,92,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32382,93,92,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32383,73,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32384,74,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32385,75,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32386,76,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32387,77,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32388,78,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32389,79,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32390,80,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32391,81,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32392,82,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32393,83,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32394,84,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32395,85,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32396,86,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32397,87,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32398,88,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32399,89,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32400,90,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32401,91,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32402,92,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32403,93,92,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32404,75,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32405,76,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32406,77,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32407,78,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32408,79,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32409,80,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32410,81,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32411,82,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32412,83,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32413,84,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32414,85,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32415,86,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32416,87,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32417,88,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32418,89,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32419,90,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32420,91,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32421,92,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32422,93,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32423,94,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32424,95,92,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32425,76,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32426,77,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32427,78,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32428,79,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32429,80,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32430,81,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32431,82,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32432,83,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32433,84,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32434,85,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32435,86,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32436,87,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32437,88,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32438,89,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32439,90,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32440,91,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32441,92,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32442,93,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32443,94,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32444,95,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32445,96,92,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32446,76,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32447,77,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32448,78,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32449,79,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32450,80,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32451,81,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32452,82,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32453,83,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32454,84,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32455,85,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32456,86,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32457,87,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32458,88,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32459,89,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32460,90,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32461,91,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32462,92,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32463,93,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32464,94,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32465,95,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32466,96,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32467,97,92,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32468,77,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32469,78,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32470,79,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32471,80,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32472,81,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32473,82,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32474,83,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32475,84,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32476,85,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32477,86,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32478,87,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32479,88,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32480,89,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32481,90,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32482,91,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32483,92,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32484,93,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32485,94,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32486,95,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32487,96,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32488,97,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32489,98,92,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32490,79,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32491,80,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32492,81,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32493,82,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32494,83,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32495,84,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32496,85,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32497,86,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32498,87,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32499,88,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32500,89,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32501,90,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32502,91,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32503,92,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32504,93,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32505,94,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32506,95,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32507,96,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32508,97,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32509,98,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32510,99,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32511,100,92,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32512,79,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32513,80,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32514,81,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32515,82,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32516,83,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32517,84,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32518,85,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32519,86,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32520,87,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32521,88,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32522,89,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32523,90,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32524,91,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32525,92,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32526,93,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32527,94,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32528,95,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32529,96,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32530,97,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32531,98,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32532,99,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32533,100,92,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32534,80,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32535,81,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32536,82,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32537,83,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32538,84,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32539,85,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32540,86,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32541,87,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32542,88,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32543,89,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32544,90,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32545,91,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32546,92,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32547,93,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32548,94,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32549,95,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32550,96,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32551,97,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32552,98,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32553,99,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32554,100,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32555,101,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32556,102,92,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32557,80,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32558,81,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32559,82,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32560,83,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32561,84,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32562,85,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32563,86,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32564,87,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32565,88,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32566,89,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32567,90,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32568,91,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32569,92,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32570,93,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32571,94,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32572,95,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32573,96,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32574,97,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32575,98,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32576,99,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32577,100,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32578,101,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32579,102,92,18,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32580,82,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32581,83,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32582,84,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32583,85,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32584,86,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32585,87,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32586,88,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32587,89,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32588,90,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32589,91,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32590,92,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32591,93,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32592,94,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32593,95,92,19,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32594,85,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32595,86,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32596,87,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32597,88,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32598,89,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32599,90,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32600,91,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32601,92,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32602,93,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32603,94,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32604,95,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32605,96,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32606,97,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32607,98,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32608,99,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32609,100,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32610,101,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32611,102,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32612,103,93,1,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32613,85,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32614,86,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32615,87,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32616,88,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32617,89,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32618,90,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32619,91,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32620,92,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32621,93,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32622,94,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32623,95,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32624,96,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32625,97,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32626,98,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32627,99,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32628,100,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32629,101,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32630,102,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32631,103,93,2,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32632,89,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32633,90,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32634,91,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32635,92,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32636,93,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32637,94,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32638,95,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32639,96,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32640,97,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32641,98,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32642,99,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32643,100,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32644,101,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32645,102,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32646,103,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32647,104,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32648,105,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32649,106,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32650,107,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32651,108,93,3,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32652,89,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32653,90,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32654,91,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32655,92,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32656,93,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32657,94,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32658,95,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32659,96,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32660,97,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32661,98,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32662,99,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32663,100,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32664,101,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32665,102,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32666,103,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32667,104,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32668,105,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32669,106,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32670,107,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32671,108,93,4,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32672,90,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32673,91,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32674,92,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32675,93,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32676,94,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32677,95,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32678,96,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32679,97,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32680,98,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32681,99,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32682,100,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32683,101,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32684,102,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32685,103,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32686,104,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32687,105,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32688,106,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32689,107,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32690,108,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32691,109,93,5,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32692,90,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32693,91,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32694,92,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32695,93,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32696,94,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32697,95,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32698,96,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32699,97,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32700,98,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32701,99,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32702,100,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32703,101,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32704,102,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32705,103,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32706,104,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32707,105,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32708,106,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32709,107,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32710,108,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32711,109,93,6,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32712,94,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32713,95,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32714,96,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32715,97,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32716,98,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32717,99,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32718,100,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32719,101,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32720,102,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32721,103,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32722,104,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32723,105,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32724,106,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32725,107,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32726,108,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32727,109,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32728,110,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32729,111,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32730,112,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32731,113,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32732,114,93,7,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32733,94,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32734,95,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32735,96,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32736,97,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32737,98,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32738,99,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32739,100,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32740,101,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32741,102,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32742,103,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32743,104,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32744,105,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32745,106,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32746,107,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32747,108,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32748,109,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32749,110,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32750,111,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32751,112,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32752,113,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32753,114,93,8,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32754,94,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32755,95,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32756,96,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32757,97,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32758,98,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32759,99,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32760,100,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32761,101,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32762,102,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32763,103,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32764,104,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32765,105,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32766,106,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32767,107,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32768,108,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32769,109,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32770,110,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32771,111,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32772,112,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32773,113,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32774,114,93,9,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32775,96,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32776,97,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32777,98,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32778,99,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32779,100,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32780,101,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32781,102,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32782,103,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32783,104,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32784,105,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32785,106,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32786,107,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32787,108,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32788,109,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32789,110,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32790,111,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32791,112,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32792,113,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32793,114,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32794,115,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32795,116,93,10,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32796,97,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32797,98,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32798,99,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32799,100,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32800,101,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32801,102,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32802,103,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32803,104,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32804,105,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32805,106,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32806,107,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32807,108,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32808,109,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58');
INSERT INTO `seats` VALUES (32809,110,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32810,111,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32811,112,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32812,113,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32813,114,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32814,115,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32815,116,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32816,117,93,11,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32817,98,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32818,99,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32819,100,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32820,101,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32821,102,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32822,103,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32823,104,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32824,105,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32825,106,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32826,107,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32827,108,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32828,109,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32829,110,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32830,111,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32831,112,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32832,113,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32833,114,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32834,115,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32835,116,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32836,117,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32837,118,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32838,119,93,12,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32839,99,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32840,100,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32841,101,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32842,102,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32843,103,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32844,104,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32845,105,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32846,106,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32847,107,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32848,108,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32849,109,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32850,110,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32851,111,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32852,112,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32853,113,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32854,114,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32855,115,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32856,116,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32857,117,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32858,118,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32859,119,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32860,120,93,13,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32861,101,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32862,102,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32863,103,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32864,104,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32865,105,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32866,106,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32867,107,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32868,108,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32869,109,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32870,110,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32871,111,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32872,112,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32873,113,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32874,114,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32875,115,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32876,116,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32877,117,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32878,118,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32879,119,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32880,120,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32881,121,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32882,122,93,14,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32883,101,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32884,102,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32885,103,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32886,104,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32887,105,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32888,106,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32889,107,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32890,108,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32891,109,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32892,110,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32893,111,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32894,112,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32895,113,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32896,114,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32897,115,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32898,116,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32899,117,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32900,118,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32901,119,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32902,120,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32903,121,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32904,122,93,15,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32905,103,93,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32906,104,93,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32907,105,93,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32908,106,93,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32909,107,93,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32910,108,93,16,1,'2022-09-02 14:23:58','2022-09-02 14:23:58'),(32911,109,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32912,110,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32913,111,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32914,112,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32915,113,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32916,114,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32917,115,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32918,116,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32919,117,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32920,118,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32921,119,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32922,120,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32923,121,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32924,122,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32925,123,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32926,124,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32927,125,93,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32928,103,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32929,104,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32930,105,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32931,106,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32932,107,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32933,108,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32934,109,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32935,110,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32936,111,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32937,112,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32938,113,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32939,114,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32940,115,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32941,116,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32942,117,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32943,118,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32944,119,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32945,120,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32946,121,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32947,122,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32948,123,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32949,124,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32950,125,93,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32951,115,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32952,116,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32953,117,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32954,118,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32955,119,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32956,120,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32957,121,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32958,122,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32959,123,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32960,124,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32961,125,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32962,126,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32963,127,93,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32964,104,94,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32965,105,94,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32966,106,94,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32967,107,94,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32968,108,94,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32969,109,94,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32970,104,94,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32971,105,94,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32972,106,94,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32973,107,94,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32974,108,94,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32975,109,94,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32976,109,94,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32977,110,94,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32978,111,94,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32979,112,94,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32980,113,94,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32981,114,94,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32982,109,94,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32983,110,94,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32984,111,94,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32985,112,94,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32986,113,94,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32987,114,94,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32988,110,94,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32989,111,94,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32990,112,94,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32991,113,94,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32992,114,94,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32993,115,94,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32994,110,94,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32995,111,94,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32996,112,94,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32997,113,94,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32998,114,94,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(32999,115,94,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33000,115,94,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33001,116,94,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33002,117,94,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33003,118,94,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33004,119,94,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33005,120,94,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33006,115,94,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33007,116,94,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33008,117,94,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33009,118,94,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33010,119,94,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33011,120,94,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33012,115,94,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33013,116,94,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33014,117,94,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33015,118,94,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33016,119,94,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33017,120,94,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33018,117,94,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33019,118,94,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33020,119,94,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33021,120,94,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33022,121,94,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33023,122,94,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33024,118,94,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33025,119,94,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33026,120,94,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33027,121,94,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33028,122,94,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33029,123,94,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33030,120,94,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33031,121,94,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33032,122,94,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33033,123,94,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33034,124,94,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33035,125,94,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33036,121,94,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33037,122,94,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33038,123,94,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33039,124,94,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33040,125,94,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33041,126,94,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33042,127,94,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33043,128,94,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33044,129,94,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33045,130,94,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33046,123,94,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33047,124,94,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33048,125,94,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33049,126,94,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33050,127,94,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33051,128,94,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33052,129,94,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33053,130,94,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33054,131,94,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33055,132,94,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33056,123,94,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33057,124,94,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33058,125,94,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33059,126,94,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33060,127,94,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33061,128,94,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33062,129,94,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33063,130,94,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33064,131,94,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33065,132,94,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33066,133,94,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33067,126,94,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33068,127,94,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33069,128,94,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33070,129,94,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33071,130,94,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33072,131,94,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33073,132,94,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33074,133,94,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33075,134,94,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33076,135,94,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33077,136,94,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33078,126,94,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33079,127,94,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33080,128,94,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33081,129,94,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33082,130,94,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33083,131,94,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33084,132,94,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33085,133,94,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33086,134,94,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33087,135,94,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33088,136,94,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33089,128,94,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33090,129,94,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33091,130,94,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33092,131,94,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33093,132,94,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33094,133,94,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33095,134,94,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33096,135,94,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33097,136,94,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33098,137,94,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33099,138,94,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33100,131,95,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33101,132,95,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33102,133,95,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33103,134,95,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33104,135,95,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33105,136,95,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33106,137,95,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33107,138,95,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33108,139,95,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33109,140,95,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33110,141,95,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33111,133,95,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33112,134,95,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33113,135,95,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33114,136,95,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33115,137,95,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33116,138,95,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33117,139,95,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33118,140,95,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33119,141,95,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33120,142,95,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33121,143,95,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33122,134,95,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33123,135,95,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33124,136,95,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33125,137,95,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33126,138,95,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33127,139,95,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33128,140,95,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33129,141,95,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33130,142,95,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33131,143,95,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33132,144,95,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33133,137,95,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33134,138,95,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33135,139,95,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33136,140,95,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33137,141,95,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33138,142,95,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33139,143,95,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33140,144,95,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33141,145,95,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33142,146,95,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33143,147,95,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33144,137,95,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33145,138,95,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33146,139,95,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33147,140,95,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33148,141,95,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33149,142,95,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33150,143,95,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33151,144,95,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33152,145,95,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33153,146,95,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33154,147,95,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33155,139,95,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33156,140,95,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33157,141,95,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33158,142,95,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33159,143,95,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33160,144,95,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33161,145,95,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33162,146,95,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33163,147,95,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33164,148,95,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33165,149,95,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33166,109,96,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33167,110,96,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33168,111,96,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33169,112,96,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33170,113,96,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33171,109,96,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33172,110,96,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33173,111,96,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33174,112,96,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33175,113,96,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33176,114,96,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33177,115,96,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33178,116,96,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33179,117,96,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33180,118,96,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33181,114,96,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33182,115,96,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33183,116,96,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33184,117,96,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33185,118,96,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33186,115,96,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33187,116,96,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33188,117,96,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33189,118,96,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33190,119,96,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33191,115,96,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33192,116,96,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33193,117,96,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33194,118,96,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33195,119,96,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33196,120,96,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33197,121,96,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33198,122,96,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33199,123,96,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33200,124,96,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33201,120,96,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33202,121,96,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33203,122,96,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33204,123,96,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33205,124,96,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33206,120,96,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33207,121,96,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33208,122,96,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33209,123,96,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33210,124,96,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33211,123,96,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33212,124,96,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33213,125,96,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33214,126,96,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33215,127,96,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33216,128,96,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33217,124,96,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33218,125,96,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33219,126,96,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33220,127,96,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33221,128,96,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33222,129,96,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33223,126,96,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33224,127,96,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33225,128,96,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33226,129,96,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33227,130,96,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33228,131,96,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33229,142,96,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33230,143,96,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33231,144,96,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33232,145,96,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33233,146,96,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33234,147,96,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33235,148,96,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33236,149,96,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33237,150,96,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33238,151,96,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33239,144,96,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33240,145,96,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33241,146,96,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33242,147,96,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33243,148,96,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33244,149,96,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33245,150,96,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33246,151,96,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33247,152,96,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33248,153,96,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33249,145,96,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33250,146,96,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33251,147,96,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33252,148,96,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33253,149,96,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33254,150,96,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33255,151,96,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33256,152,96,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33257,153,96,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33258,154,96,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33259,155,96,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33260,148,96,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33261,149,96,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33262,150,96,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33263,151,96,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33264,152,96,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33265,153,96,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33266,154,96,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33267,155,96,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33268,156,96,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33269,157,96,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33270,158,96,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33271,148,96,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33272,149,96,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33273,150,96,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33274,151,96,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33275,152,96,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33276,153,96,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33277,154,96,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33278,155,96,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33279,156,96,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33280,157,96,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33281,158,96,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33282,150,96,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33283,151,96,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33284,152,96,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33285,153,96,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33286,154,96,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33287,155,96,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33288,156,96,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33289,157,96,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33290,158,96,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33291,159,96,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33292,160,96,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33293,114,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33294,115,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33295,116,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33296,117,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33297,118,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33298,119,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33299,120,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33300,121,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33301,122,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33302,123,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33303,124,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33304,125,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33305,126,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33306,127,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33307,128,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33308,129,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33309,130,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33310,131,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33311,132,97,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33312,114,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33313,115,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33314,116,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33315,117,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33316,118,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33317,119,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33318,120,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33319,121,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33320,122,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33321,123,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33322,124,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33323,125,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33324,126,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33325,127,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33326,128,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33327,129,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33328,130,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33329,131,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33330,132,97,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33331,119,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33332,120,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33333,121,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33334,122,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33335,123,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33336,124,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33337,125,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33338,126,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33339,127,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33340,128,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33341,129,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33342,130,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33343,131,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33344,132,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33345,133,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33346,134,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33347,135,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33348,136,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33349,137,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33350,138,97,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33351,119,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33352,120,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33353,121,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33354,122,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33355,123,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33356,124,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33357,125,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33358,126,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33359,127,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33360,128,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33361,129,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33362,130,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33363,131,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33364,132,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33365,133,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33366,134,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33367,135,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33368,136,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33369,137,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33370,138,97,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33371,120,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33372,121,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33373,122,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33374,123,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33375,124,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33376,125,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33377,126,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33378,127,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33379,128,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33380,129,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33381,130,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33382,131,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33383,132,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33384,133,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33385,134,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33386,135,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33387,136,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33388,137,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33389,138,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33390,139,97,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33391,120,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33392,121,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33393,122,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33394,123,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33395,124,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33396,125,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33397,126,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33398,127,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33399,128,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33400,129,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33401,130,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33402,131,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33403,132,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33404,133,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33405,134,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33406,135,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33407,136,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33408,137,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33409,138,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33410,139,97,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33411,125,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33412,126,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33413,127,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33414,128,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33415,129,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33416,130,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33417,131,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33418,132,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33419,133,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33420,134,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33421,135,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33422,136,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33423,137,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33424,138,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33425,139,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33426,140,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33427,141,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33428,142,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33429,143,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33430,144,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33431,145,97,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33432,125,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33433,126,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33434,127,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33435,128,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33436,129,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33437,130,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33438,131,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33439,132,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33440,133,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33441,134,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33442,135,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33443,136,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33444,137,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33445,138,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33446,139,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33447,140,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33448,141,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33449,142,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33450,143,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33451,144,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33452,145,97,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33453,125,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33454,126,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33455,127,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33456,128,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33457,129,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33458,130,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33459,131,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33460,132,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33461,133,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33462,134,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33463,135,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33464,136,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33465,137,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33466,138,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33467,139,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33468,140,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33469,141,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33470,142,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33471,143,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33472,144,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33473,145,97,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33474,129,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33475,130,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33476,131,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33477,132,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33478,133,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33479,134,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33480,135,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33481,136,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33482,137,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33483,138,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33484,139,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33485,140,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33486,141,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33487,142,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33488,143,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33489,144,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33490,145,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33491,146,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33492,147,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33493,148,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33494,149,97,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33495,130,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33496,131,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33497,132,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33498,133,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33499,134,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33500,135,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33501,136,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33502,137,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33503,138,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33504,139,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33505,140,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33506,141,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33507,142,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33508,143,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33509,144,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33510,145,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33511,146,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33512,147,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33513,148,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33514,149,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33515,150,97,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33516,132,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33517,133,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33518,134,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33519,135,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33520,136,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33521,137,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33522,138,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33523,139,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33524,140,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33525,141,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33526,142,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33527,143,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33528,144,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33529,145,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33530,146,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33531,147,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33532,148,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33533,149,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33534,150,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33535,151,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33536,152,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33537,153,97,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33538,152,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33539,153,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33540,154,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33541,155,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33542,156,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33543,157,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33544,158,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33545,159,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33546,160,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33547,161,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33548,162,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33549,163,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33550,164,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33551,165,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33552,166,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33553,167,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33554,168,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33555,169,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33556,170,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33557,171,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33558,172,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33559,173,97,13,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33560,154,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33561,155,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33562,156,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33563,157,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33564,158,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33565,159,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33566,160,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33567,161,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33568,162,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33569,163,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33570,164,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33571,165,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33572,166,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33573,167,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33574,168,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33575,169,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33576,170,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33577,171,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33578,172,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33579,173,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33580,174,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33581,175,97,14,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33582,156,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33583,157,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33584,158,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33585,159,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33586,160,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33587,161,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33588,162,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33589,163,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33590,164,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33591,165,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33592,166,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33593,167,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33594,168,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33595,169,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33596,170,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33597,171,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33598,172,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33599,173,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33600,174,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33601,175,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33602,176,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33603,177,97,15,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33604,159,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33605,160,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33606,161,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33607,162,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33608,163,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33609,164,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33610,165,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33611,166,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33612,167,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33613,168,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33614,169,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33615,170,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33616,171,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33617,172,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33618,173,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33619,174,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33620,175,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33621,176,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33622,177,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33623,178,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33624,179,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33625,180,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33626,181,97,16,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33627,159,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33628,160,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33629,161,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33630,162,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33631,163,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33632,164,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33633,165,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33634,166,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33635,167,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33636,168,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33637,169,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33638,170,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33639,171,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33640,172,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33641,173,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33642,174,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33643,175,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33644,176,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33645,177,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33646,178,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33647,179,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33648,180,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33649,181,97,18,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33650,161,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33651,162,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33652,163,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33653,164,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33654,165,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33655,166,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33656,167,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33657,168,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33658,169,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33659,170,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33660,171,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33661,172,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33662,173,97,19,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33663,133,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33664,134,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33665,135,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33666,136,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33667,137,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33668,138,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33669,139,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33670,140,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33671,141,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33672,142,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33673,143,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33674,144,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33675,145,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33676,146,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33677,147,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33678,148,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33679,149,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33680,150,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33681,151,98,1,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33682,133,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33683,134,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33684,135,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33685,136,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33686,137,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33687,138,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33688,139,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33689,140,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33690,141,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33691,142,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33692,143,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33693,144,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33694,145,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33695,146,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33696,147,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33697,148,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33698,149,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33699,150,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33700,151,98,2,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33701,139,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33702,140,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33703,141,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33704,142,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33705,143,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33706,144,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33707,145,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33708,146,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33709,147,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33710,148,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33711,149,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33712,150,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33713,151,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33714,152,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33715,153,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33716,154,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33717,155,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33718,156,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33719,157,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33720,158,98,3,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33721,139,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33722,140,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33723,141,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33724,142,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33725,143,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33726,144,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33727,145,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33728,146,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33729,147,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33730,148,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33731,149,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33732,150,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33733,151,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33734,152,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33735,153,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33736,154,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33737,155,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33738,156,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33739,157,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33740,158,98,4,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33741,140,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33742,141,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33743,142,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33744,143,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33745,144,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33746,145,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33747,146,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33748,147,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33749,148,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33750,149,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33751,150,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33752,151,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33753,152,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33754,153,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33755,154,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33756,155,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33757,156,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33758,157,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33759,158,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33760,159,98,5,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33761,140,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33762,141,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33763,142,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33764,143,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33765,144,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33766,145,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33767,146,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33768,147,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33769,148,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33770,149,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33771,150,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33772,151,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33773,152,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33774,153,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33775,154,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33776,155,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33777,156,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33778,157,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33779,158,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33780,159,98,6,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33781,146,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33782,147,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33783,148,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33784,149,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33785,150,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33786,151,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33787,152,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33788,153,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33789,154,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33790,155,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33791,156,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33792,157,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33793,158,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33794,159,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33795,160,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33796,161,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33797,162,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33798,163,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33799,164,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33800,165,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33801,166,98,7,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33802,146,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33803,147,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33804,148,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33805,149,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33806,150,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33807,151,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33808,152,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33809,153,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33810,154,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33811,155,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33812,156,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33813,157,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33814,158,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33815,159,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33816,160,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33817,161,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33818,162,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33819,163,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33820,164,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33821,165,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33822,166,98,8,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33823,146,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33824,147,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33825,148,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33826,149,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33827,150,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33828,151,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33829,152,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33830,153,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33831,154,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33832,155,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33833,156,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33834,157,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33835,158,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33836,159,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33837,160,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33838,161,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33839,162,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33840,163,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33841,164,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33842,165,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33843,166,98,9,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33844,150,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33845,151,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33846,152,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33847,153,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33848,154,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33849,155,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33850,156,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33851,157,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33852,158,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33853,159,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33854,160,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33855,161,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33856,162,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33857,163,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33858,164,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33859,165,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33860,166,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33861,167,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33862,168,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33863,169,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33864,170,98,10,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33865,151,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33866,152,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33867,153,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33868,154,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33869,155,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33870,156,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33871,157,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33872,158,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33873,159,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33874,160,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33875,161,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33876,162,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33877,163,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33878,164,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33879,165,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33880,166,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33881,167,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33882,168,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33883,169,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33884,170,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33885,171,98,11,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33886,154,98,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33887,155,98,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33888,156,98,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33889,157,98,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33890,158,98,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33891,159,98,12,1,'2022-09-02 14:23:59','2022-09-02 14:23:59'),(33892,160,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33893,161,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33894,162,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33895,163,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33896,164,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33897,165,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33898,166,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33899,167,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33900,168,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33901,169,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33902,170,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33903,171,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33904,172,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33905,173,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33906,174,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33907,175,98,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33908,174,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33909,175,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33910,176,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33911,177,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33912,178,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33913,179,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33914,180,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33915,181,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33916,182,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33917,183,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33918,184,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33919,185,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33920,186,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33921,187,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33922,188,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33923,189,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33924,190,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33925,191,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33926,192,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33927,193,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33928,194,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33929,195,98,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33930,176,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33931,177,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33932,178,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33933,179,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33934,180,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33935,181,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33936,182,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33937,183,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33938,184,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33939,185,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33940,186,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33941,187,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33942,188,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33943,189,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33944,190,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33945,191,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33946,192,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33947,193,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33948,194,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33949,195,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33950,196,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33951,197,98,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33952,178,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33953,179,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33954,180,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33955,181,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33956,182,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33957,183,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33958,184,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33959,185,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33960,186,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33961,187,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33962,188,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33963,189,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33964,190,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33965,191,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33966,192,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33967,193,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33968,194,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33969,195,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33970,196,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33971,197,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33972,198,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33973,199,98,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33974,182,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33975,183,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33976,184,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33977,185,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33978,186,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33979,187,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33980,188,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33981,189,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33982,190,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33983,191,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33984,192,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33985,193,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33986,194,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33987,195,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33988,196,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33989,197,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33990,198,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33991,199,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33992,200,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33993,201,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33994,202,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33995,203,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33996,204,98,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33997,182,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33998,183,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(33999,184,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34000,185,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34001,186,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34002,187,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34003,188,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34004,189,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34005,190,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34006,191,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34007,192,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34008,193,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34009,194,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34010,195,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34011,196,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34012,197,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34013,198,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34014,199,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34015,200,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34016,201,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34017,202,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34018,203,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34019,204,98,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34020,193,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34021,194,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34022,195,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34023,196,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34024,197,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34025,198,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34026,199,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34027,200,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34028,201,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34029,202,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34030,203,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34031,204,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34032,205,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34033,206,98,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34034,152,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34035,153,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34036,154,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34037,155,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34038,156,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34039,157,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34040,158,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34041,159,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34042,160,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34043,161,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34044,162,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34045,163,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34046,164,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34047,165,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34048,166,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34049,167,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34050,168,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34051,169,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34052,170,99,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34053,152,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34054,153,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34055,154,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34056,155,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34057,156,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34058,157,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34059,158,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34060,159,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34061,160,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34062,161,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34063,162,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34064,163,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34065,164,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34066,165,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34067,166,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34068,167,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34069,168,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34070,169,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34071,170,99,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34072,159,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34073,160,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34074,161,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34075,162,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34076,163,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34077,164,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34078,165,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34079,166,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34080,167,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34081,168,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34082,169,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34083,170,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34084,171,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34085,172,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34086,173,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34087,174,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34088,175,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34089,176,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34090,177,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34091,178,99,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34092,159,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34093,160,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34094,161,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34095,162,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34096,163,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34097,164,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34098,165,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34099,166,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34100,167,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34101,168,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34102,169,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34103,170,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34104,171,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34105,172,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34106,173,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34107,174,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34108,175,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34109,176,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34110,177,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34111,178,99,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34112,160,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34113,161,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34114,162,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34115,163,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34116,164,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34117,165,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34118,166,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34119,167,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34120,168,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34121,169,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34122,170,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34123,171,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34124,172,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34125,173,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34126,174,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34127,175,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34128,176,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34129,177,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34130,178,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34131,179,99,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34132,160,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34133,161,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34134,162,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34135,163,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34136,164,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34137,165,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34138,166,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34139,167,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34140,168,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34141,169,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34142,170,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34143,171,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34144,172,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34145,173,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34146,174,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34147,175,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34148,176,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34149,177,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34150,178,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34151,179,99,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34152,167,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34153,168,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34154,169,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34155,170,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34156,171,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34157,172,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34158,173,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34159,174,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34160,175,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34161,176,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34162,177,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34163,178,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34164,179,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34165,180,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34166,181,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34167,182,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34168,183,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34169,184,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34170,185,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34171,186,99,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34172,167,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34173,168,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34174,169,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34175,170,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34176,171,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34177,172,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34178,173,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34179,174,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34180,175,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34181,176,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34182,177,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34183,178,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34184,179,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34185,180,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34186,181,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34187,182,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34188,183,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34189,184,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34190,185,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34191,186,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34192,187,99,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34193,167,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34194,168,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34195,169,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34196,170,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34197,171,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34198,172,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34199,173,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34200,174,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34201,175,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34202,176,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34203,177,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34204,178,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34205,179,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34206,180,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34207,181,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34208,182,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34209,183,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34210,184,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34211,185,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34212,186,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34213,187,99,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34214,171,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34215,172,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34216,173,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34217,174,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34218,175,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34219,176,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34220,177,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34221,178,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34222,179,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34223,180,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34224,181,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34225,182,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34226,183,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34227,184,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34228,185,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34229,186,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34230,187,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34231,188,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34232,189,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34233,190,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34234,191,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34235,192,99,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34236,172,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34237,173,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34238,174,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34239,175,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34240,176,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34241,177,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34242,178,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34243,179,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34244,180,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34245,181,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34246,182,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34247,183,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34248,184,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34249,185,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34250,186,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34251,187,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34252,188,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34253,189,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34254,190,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34255,191,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34256,192,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34257,193,99,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34258,176,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34259,177,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34260,178,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34261,179,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34262,180,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34263,181,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34264,182,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34265,183,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34266,184,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34267,185,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34268,186,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34269,187,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34270,188,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34271,189,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34272,190,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34273,191,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34274,192,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34275,193,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34276,194,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34277,195,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34278,196,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34279,197,99,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34280,196,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34281,197,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34282,198,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34283,199,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34284,200,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34285,201,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34286,202,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34287,203,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34288,204,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34289,205,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34290,206,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34291,207,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34292,208,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34293,209,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34294,210,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34295,211,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34296,212,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34297,213,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34298,214,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34299,215,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34300,216,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34301,217,99,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34302,198,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34303,199,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34304,200,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34305,201,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34306,202,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34307,203,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34308,204,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34309,205,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34310,206,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34311,207,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34312,208,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34313,209,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34314,210,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34315,211,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34316,212,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34317,213,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34318,214,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34319,215,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34320,216,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34321,217,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34322,218,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34323,219,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34324,220,99,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34325,200,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34326,201,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34327,202,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34328,203,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34329,204,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34330,205,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34331,206,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34332,207,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34333,208,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34334,209,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34335,210,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34336,211,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34337,212,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34338,213,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34339,214,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34340,215,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34341,216,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34342,217,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34343,218,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34344,219,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34345,220,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34346,221,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34347,222,99,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34348,205,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34349,206,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34350,207,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34351,208,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34352,209,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34353,210,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34354,211,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34355,212,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34356,213,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34357,214,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34358,215,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34359,216,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34360,217,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34361,218,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34362,219,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34363,220,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34364,221,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34365,222,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34366,223,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34367,224,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34368,225,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34369,226,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34370,227,99,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34371,205,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34372,206,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34373,207,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34374,208,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34375,209,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34376,210,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34377,211,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34378,212,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34379,213,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34380,214,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34381,215,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34382,216,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34383,217,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34384,218,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34385,219,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34386,220,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34387,221,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34388,222,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34389,223,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34390,224,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34391,225,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34392,226,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34393,227,99,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34394,207,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34395,208,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34396,209,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34397,210,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34398,211,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34399,212,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34400,213,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34401,214,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34402,215,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34403,216,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34404,217,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34405,218,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34406,219,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34407,220,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34408,221,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34409,222,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34410,223,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34411,224,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34412,225,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34413,226,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34414,227,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34415,228,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34416,229,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34417,230,99,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34418,171,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34419,172,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34420,173,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34421,174,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34422,175,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34423,176,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34424,177,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34425,178,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34426,179,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34427,180,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34428,181,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34429,182,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34430,183,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34431,184,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34432,185,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34433,186,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34434,187,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34435,188,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34436,189,100,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34437,171,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34438,172,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34439,173,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34440,174,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34441,175,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34442,176,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34443,177,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34444,178,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34445,179,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34446,180,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34447,181,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34448,182,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34449,183,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34450,184,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34451,185,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34452,186,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34453,187,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34454,188,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34455,189,100,2,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34456,179,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34457,180,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34458,181,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34459,182,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34460,183,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34461,184,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34462,185,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34463,186,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34464,187,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34465,188,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34466,189,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34467,190,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34468,191,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34469,192,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34470,193,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34471,194,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34472,195,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34473,196,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34474,197,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34475,198,100,3,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34476,179,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34477,180,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34478,181,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34479,182,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34480,183,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34481,184,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34482,185,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34483,186,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34484,187,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34485,188,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34486,189,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34487,190,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34488,191,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34489,192,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34490,193,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34491,194,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34492,195,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34493,196,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34494,197,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34495,198,100,4,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34496,180,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34497,181,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34498,182,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34499,183,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34500,184,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34501,185,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34502,186,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34503,187,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34504,188,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34505,189,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34506,190,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34507,191,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34508,192,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34509,193,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34510,194,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34511,195,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34512,196,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34513,197,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34514,198,100,5,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34515,180,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34516,181,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34517,182,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34518,183,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34519,184,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34520,185,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34521,186,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34522,187,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34523,188,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34524,189,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34525,190,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34526,191,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34527,192,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34528,193,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34529,194,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34530,195,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34531,196,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34532,197,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34533,198,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34534,199,100,6,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34535,187,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34536,188,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34537,189,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34538,190,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34539,191,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34540,192,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34541,193,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34542,194,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34543,195,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34544,196,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34545,197,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34546,198,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34547,199,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34548,200,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34549,201,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34550,202,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34551,203,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34552,204,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34553,205,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34554,206,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34555,207,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34556,208,100,7,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34557,188,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34558,189,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34559,190,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34560,191,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34561,192,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34562,193,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34563,194,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34564,195,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34565,196,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34566,197,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34567,198,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34568,199,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34569,200,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34570,201,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34571,202,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34572,203,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34573,204,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34574,205,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34575,206,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34576,207,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34577,208,100,8,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34578,188,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34579,189,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34580,190,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34581,191,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34582,192,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34583,193,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34584,194,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34585,195,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34586,196,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34587,197,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34588,198,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34589,199,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34590,200,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34591,201,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34592,202,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34593,203,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34594,204,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34595,205,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34596,206,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34597,207,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34598,208,100,9,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34599,193,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34600,194,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34601,195,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34602,196,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34603,197,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34604,198,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34605,199,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34606,200,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34607,201,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34608,202,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34609,203,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34610,204,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34611,205,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34612,206,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34613,207,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34614,208,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34615,209,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34616,210,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34617,211,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34618,212,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34619,213,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34620,214,100,10,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34621,194,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34622,195,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34623,196,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34624,197,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34625,198,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34626,199,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34627,200,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34628,201,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34629,202,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34630,203,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34631,204,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34632,205,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34633,206,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34634,207,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34635,208,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34636,209,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34637,210,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34638,211,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34639,212,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34640,213,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34641,214,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34642,215,100,11,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34643,198,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34644,199,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34645,200,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34646,201,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34647,202,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34648,203,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34649,204,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34650,205,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34651,206,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34652,207,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34653,208,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34654,209,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34655,210,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34656,211,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34657,212,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34658,213,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34659,214,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34660,215,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34661,216,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34662,217,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34663,218,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34664,219,100,12,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34665,218,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34666,219,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34667,220,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34668,221,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34669,222,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34670,223,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34671,224,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34672,225,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34673,226,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34674,227,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34675,228,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34676,229,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34677,230,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34678,231,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34679,232,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34680,233,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34681,234,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34682,235,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34683,236,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34684,237,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34685,238,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34686,239,100,13,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34687,221,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34688,222,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34689,223,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34690,224,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34691,225,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34692,226,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34693,227,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34694,228,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34695,229,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34696,230,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34697,231,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34698,232,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34699,233,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34700,234,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34701,235,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34702,236,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34703,237,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34704,238,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34705,239,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34706,240,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34707,241,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34708,242,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34709,243,100,14,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34710,223,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34711,224,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34712,225,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34713,226,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34714,227,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34715,228,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34716,229,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34717,230,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34718,231,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34719,232,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34720,233,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34721,234,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34722,235,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34723,236,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34724,237,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34725,238,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34726,239,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34727,240,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34728,241,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34729,242,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34730,243,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34731,244,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34732,245,100,15,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34733,228,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34734,229,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34735,230,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34736,231,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34737,232,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34738,233,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34739,234,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34740,235,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34741,236,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34742,237,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34743,238,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34744,239,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34745,240,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34746,241,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34747,242,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34748,243,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34749,244,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34750,245,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34751,246,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34752,247,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34753,248,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34754,249,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34755,250,100,16,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34756,228,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34757,229,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34758,230,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34759,231,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34760,232,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34761,233,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34762,234,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34763,235,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34764,236,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34765,237,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34766,238,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34767,239,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34768,240,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34769,241,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34770,242,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34771,243,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34772,244,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34773,245,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34774,246,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34775,247,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34776,248,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34777,249,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34778,250,100,18,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34779,231,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34780,232,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34781,233,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34782,234,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34783,235,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34784,236,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34785,237,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34786,238,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34787,239,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34788,240,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34789,241,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34790,242,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34791,243,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34792,244,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34793,245,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34794,246,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34795,247,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34796,248,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34797,249,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34798,250,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34799,251,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34800,252,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34801,253,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34802,254,100,19,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34803,190,101,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34804,191,101,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34805,192,101,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34806,193,101,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34807,194,101,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34808,195,101,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34809,196,101,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34810,197,101,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34811,198,101,1,1,'2022-09-02 14:24:00','2022-09-02 14:24:00'),(34812,199,101,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34813,200,101,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34814,201,101,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34815,202,101,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34816,203,101,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34817,204,101,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34818,205,101,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34819,206,101,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34820,207,101,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34821,208,101,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34822,190,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34823,191,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34824,192,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34825,193,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34826,194,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34827,195,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34828,196,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34829,197,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34830,198,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34831,199,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34832,200,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34833,201,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34834,202,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34835,203,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34836,204,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34837,205,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34838,206,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34839,207,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34840,208,101,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34841,199,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34842,200,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34843,201,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34844,202,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34845,203,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34846,204,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34847,205,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34848,206,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34849,207,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34850,208,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34851,209,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34852,210,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34853,211,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34854,212,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34855,213,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34856,214,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34857,215,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34858,216,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34859,217,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34860,218,101,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34861,199,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34862,200,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34863,201,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34864,202,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34865,203,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34866,204,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34867,205,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34868,206,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34869,207,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34870,208,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34871,209,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34872,210,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34873,211,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34874,212,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34875,213,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34876,214,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34877,215,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34878,216,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34879,217,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34880,218,101,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34881,199,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34882,200,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34883,201,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34884,202,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34885,203,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34886,204,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34887,205,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34888,206,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34889,207,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34890,208,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34891,209,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34892,210,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34893,211,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34894,212,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34895,213,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34896,214,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34897,215,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34898,216,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34899,217,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34900,218,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34901,219,101,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34902,200,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34903,201,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34904,202,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34905,203,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34906,204,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34907,205,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34908,206,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34909,207,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34910,208,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34911,209,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34912,210,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34913,211,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34914,212,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34915,213,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34916,214,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34917,215,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34918,216,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34919,217,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34920,218,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34921,219,101,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34922,209,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34923,210,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34924,211,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34925,212,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34926,213,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34927,214,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34928,215,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34929,216,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34930,217,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34931,218,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34932,219,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34933,220,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34934,221,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34935,222,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34936,223,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34937,224,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34938,225,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34939,226,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34940,227,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34941,228,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34942,229,101,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34943,209,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34944,210,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34945,211,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34946,212,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34947,213,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34948,214,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34949,215,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34950,216,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34951,217,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34952,218,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34953,219,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34954,220,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34955,221,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34956,222,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34957,223,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34958,224,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34959,225,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34960,226,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34961,227,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34962,228,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34963,229,101,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34964,209,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34965,210,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34966,211,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34967,212,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34968,213,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34969,214,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34970,215,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34971,216,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34972,217,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34973,218,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34974,219,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34975,220,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34976,221,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34977,222,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34978,223,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34979,224,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34980,225,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34981,226,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34982,227,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34983,228,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34984,229,101,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34985,215,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34986,216,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34987,217,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34988,218,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34989,219,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34990,220,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34991,221,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34992,222,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34993,223,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34994,224,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34995,225,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34996,226,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34997,227,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34998,228,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(34999,229,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35000,230,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35001,231,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35002,232,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35003,233,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35004,234,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35005,235,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35006,236,101,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35007,216,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35008,217,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35009,218,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35010,219,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35011,220,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35012,221,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35013,222,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35014,223,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35015,224,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35016,225,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35017,226,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35018,227,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35019,228,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35020,229,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35021,230,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35022,231,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35023,232,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35024,233,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35025,234,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35026,235,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35027,236,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35028,237,101,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35029,220,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35030,221,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35031,222,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35032,223,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35033,224,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35034,225,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35035,226,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35036,227,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35037,228,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35038,229,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35039,230,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35040,231,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35041,232,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35042,233,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35043,234,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35044,235,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35045,236,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35046,237,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35047,238,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35048,239,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35049,240,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35050,241,101,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35051,240,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35052,241,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35053,242,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35054,243,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35055,244,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35056,245,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35057,246,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35058,247,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35059,248,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35060,249,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35061,250,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35062,251,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35063,252,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35064,253,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35065,254,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35066,255,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35067,256,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35068,257,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35069,258,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35070,259,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35071,260,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35072,261,101,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35073,244,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35074,245,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35075,246,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35076,247,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35077,248,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35078,249,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35079,250,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35080,251,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35081,252,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35082,253,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35083,254,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35084,255,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35085,256,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35086,257,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35087,258,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35088,259,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35089,260,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35090,261,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35091,262,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35092,263,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35093,264,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35094,265,101,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35095,246,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35096,247,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35097,248,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35098,249,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35099,250,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35100,251,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35101,252,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35102,253,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35103,254,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35104,255,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35105,256,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35106,257,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35107,258,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35108,259,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35109,260,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35110,261,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35111,262,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35112,263,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35113,264,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35114,265,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35115,266,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35116,267,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35117,268,101,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35118,251,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35119,252,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35120,253,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35121,254,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35122,255,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35123,256,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35124,257,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35125,258,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35126,259,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35127,260,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35128,261,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35129,262,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35130,263,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35131,264,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35132,265,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35133,266,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35134,267,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35135,268,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35136,269,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35137,270,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35138,271,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35139,272,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35140,273,101,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35141,251,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35142,252,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35143,253,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35144,254,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35145,255,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35146,256,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35147,257,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35148,258,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35149,259,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35150,260,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35151,261,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35152,262,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35153,263,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35154,264,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35155,265,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35156,266,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35157,267,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35158,268,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35159,269,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35160,270,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35161,271,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35162,272,101,18,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35163,1,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35164,2,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35165,3,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35166,4,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35167,5,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35168,6,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35169,7,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35170,8,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35171,9,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35172,10,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35173,11,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35174,12,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35175,13,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35176,14,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35177,15,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35178,16,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35179,17,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35180,18,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35181,19,102,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35182,1,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35183,2,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35184,3,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35185,4,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35186,5,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35187,6,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35188,7,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35189,8,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35190,9,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35191,10,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35192,11,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35193,12,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35194,13,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35195,14,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35196,15,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35197,16,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35198,17,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35199,18,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35200,19,102,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35201,1,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35202,2,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35203,3,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35204,4,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35205,5,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35206,6,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35207,7,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35208,8,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35209,9,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35210,10,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35211,11,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35212,12,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35213,13,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35214,14,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35215,15,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35216,16,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35217,17,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35218,18,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35219,19,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35220,20,102,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35221,1,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35222,2,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35223,3,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35224,4,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35225,5,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35226,6,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35227,7,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35228,8,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35229,9,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35230,10,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35231,11,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35232,12,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35233,13,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35234,14,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35235,15,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35236,16,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35237,17,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35238,18,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35239,19,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35240,20,102,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35241,1,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35242,2,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35243,3,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35244,4,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35245,5,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35246,6,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35247,7,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35248,8,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35249,9,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35250,10,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35251,11,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35252,12,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35253,13,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35254,14,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35255,15,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35256,16,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35257,17,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35258,18,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35259,19,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35260,20,102,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35261,1,102,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35262,2,102,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35263,3,102,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35264,4,102,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35265,5,102,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35266,6,102,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35267,7,102,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35268,8,102,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35269,9,102,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35270,10,102,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35271,11,102,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35272,1,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35273,2,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35274,3,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35275,4,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35276,5,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35277,6,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35278,7,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35279,8,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35280,9,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35281,10,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35282,11,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35283,12,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35284,13,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35285,14,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35286,15,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35287,16,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35288,17,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35289,18,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35290,19,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35291,20,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35292,21,102,7,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35293,1,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35294,2,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35295,3,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35296,4,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35297,5,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35298,6,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35299,7,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35300,8,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35301,9,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35302,10,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35303,11,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35304,12,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35305,13,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35306,14,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35307,15,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35308,16,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35309,17,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35310,18,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35311,19,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35312,20,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35313,21,102,8,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35314,1,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35315,2,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35316,3,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35317,4,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35318,5,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35319,6,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35320,7,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35321,8,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35322,9,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35323,10,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35324,11,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35325,12,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35326,13,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35327,14,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35328,15,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35329,16,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35330,17,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35331,18,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35332,19,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35333,20,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35334,21,102,9,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35335,1,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35336,2,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35337,3,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35338,4,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35339,5,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35340,6,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35341,7,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35342,8,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35343,9,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35344,10,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35345,11,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35346,12,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35347,13,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35348,14,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35349,15,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35350,16,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35351,17,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35352,18,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35353,19,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35354,20,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35355,21,102,10,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35356,1,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35357,2,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35358,3,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35359,4,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35360,5,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35361,6,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35362,7,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35363,8,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35364,9,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35365,10,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35366,11,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35367,12,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35368,13,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35369,14,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35370,15,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35371,16,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35372,17,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35373,18,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35374,19,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35375,20,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35376,21,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35377,22,102,11,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35378,1,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35379,2,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35380,3,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35381,4,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35382,5,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35383,6,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35384,7,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35385,8,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35386,9,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35387,10,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35388,11,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35389,12,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35390,13,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35391,14,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35392,15,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35393,16,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35394,17,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35395,18,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35396,19,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35397,20,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35398,21,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35399,22,102,12,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35400,1,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35401,2,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35402,3,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35403,4,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35404,5,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35405,6,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35406,7,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35407,8,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35408,9,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35409,10,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35410,11,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35411,12,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35412,13,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35413,14,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35414,15,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35415,16,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35416,17,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35417,18,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35418,19,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35419,20,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35420,21,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35421,22,102,13,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35422,1,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35423,2,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35424,3,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35425,4,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35426,5,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35427,6,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35428,7,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35429,8,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35430,9,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35431,10,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35432,11,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35433,12,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35434,13,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35435,14,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35436,15,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35437,16,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35438,17,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35439,18,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35440,19,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35441,20,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35442,21,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35443,22,102,14,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35444,1,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35445,2,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35446,3,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35447,4,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35448,5,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35449,6,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35450,7,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35451,8,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35452,9,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35453,10,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35454,11,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35455,12,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35456,13,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35457,14,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35458,15,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35459,16,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35460,17,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35461,18,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35462,19,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35463,20,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35464,21,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35465,22,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35466,23,102,15,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35467,1,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35468,2,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35469,3,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35470,4,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35471,5,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35472,6,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35473,7,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35474,8,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35475,9,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35476,10,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35477,11,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35478,12,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35479,13,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35480,14,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35481,15,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35482,16,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35483,17,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35484,18,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35485,19,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35486,20,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35487,21,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35488,22,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35489,23,102,16,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35490,20,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35491,21,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35492,22,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35493,23,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35494,24,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35495,25,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35496,26,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35497,27,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35498,28,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35499,29,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35500,30,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35501,31,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35502,32,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35503,33,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35504,34,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35505,35,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35506,36,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35507,37,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35508,38,103,1,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35509,20,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35510,21,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35511,22,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35512,23,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35513,24,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35514,25,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35515,26,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35516,27,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35517,28,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35518,29,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35519,30,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35520,31,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35521,32,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35522,33,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35523,34,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35524,35,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35525,36,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35526,37,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35527,38,103,2,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35528,21,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35529,22,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35530,23,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35531,24,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35532,25,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35533,26,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35534,27,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35535,28,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35536,29,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35537,30,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35538,31,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35539,32,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35540,33,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35541,34,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35542,35,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35543,36,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35544,37,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35545,38,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35546,39,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35547,40,103,3,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35548,21,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35549,22,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35550,23,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35551,24,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35552,25,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35553,26,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35554,27,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35555,28,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35556,29,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35557,30,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35558,31,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35559,32,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35560,33,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35561,34,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35562,35,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35563,36,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35564,37,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35565,38,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35566,39,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35567,40,103,4,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35568,21,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35569,22,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35570,23,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35571,24,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35572,25,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35573,26,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35574,27,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35575,28,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35576,29,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35577,30,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35578,31,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35579,32,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35580,33,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35581,34,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35582,35,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35583,36,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35584,37,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35585,38,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35586,39,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35587,40,103,5,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35588,21,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35589,22,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35590,23,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35591,24,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35592,25,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35593,26,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35594,27,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35595,28,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35596,29,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35597,30,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35598,31,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35599,32,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35600,33,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35601,34,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35602,35,103,6,1,'2022-09-02 14:24:01','2022-09-02 14:24:01'),(35603,36,103,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35604,37,103,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35605,38,103,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35606,39,103,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35607,40,103,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35608,22,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35609,23,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35610,24,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35611,25,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35612,26,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35613,27,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35614,28,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35615,29,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35616,30,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35617,31,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35618,32,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35619,33,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35620,34,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35621,35,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35622,36,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35623,37,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35624,38,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35625,39,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35626,40,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35627,41,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35628,42,103,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35629,22,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35630,23,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35631,24,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35632,25,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35633,26,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35634,27,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35635,28,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35636,29,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35637,30,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35638,31,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35639,32,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35640,33,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35641,34,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35642,35,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35643,36,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35644,37,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35645,38,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35646,39,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35647,40,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35648,41,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35649,42,103,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35650,22,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35651,23,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35652,24,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35653,25,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35654,26,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35655,27,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35656,28,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35657,29,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35658,30,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35659,31,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35660,32,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35661,33,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35662,34,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35663,35,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35664,36,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35665,37,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35666,38,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35667,39,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35668,40,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35669,41,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35670,42,103,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35671,22,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35672,23,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35673,24,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35674,25,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35675,26,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35676,27,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35677,28,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35678,29,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35679,30,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35680,31,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35681,32,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35682,33,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35683,34,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35684,35,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35685,36,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35686,37,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35687,38,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35688,39,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35689,40,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35690,41,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35691,42,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35692,43,103,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35693,23,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35694,24,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35695,25,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35696,26,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35697,27,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35698,28,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35699,29,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35700,30,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35701,31,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35702,32,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35703,33,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35704,34,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35705,35,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35706,36,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35707,37,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35708,38,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35709,39,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35710,40,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35711,41,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35712,42,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35713,43,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35714,44,103,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35715,23,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35716,24,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35717,25,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35718,26,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35719,27,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35720,28,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35721,29,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35722,30,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35723,31,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35724,32,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35725,33,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35726,34,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35727,35,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35728,36,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35729,37,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35730,38,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35731,39,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35732,40,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35733,41,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35734,42,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35735,43,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35736,44,103,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35737,23,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35738,24,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35739,25,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35740,26,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35741,27,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35742,28,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35743,29,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35744,30,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35745,31,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35746,32,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35747,33,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35748,34,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35749,35,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35750,36,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35751,37,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35752,38,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35753,39,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35754,40,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35755,41,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35756,42,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35757,43,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35758,44,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35759,45,103,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35760,23,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35761,24,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35762,25,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35763,26,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35764,27,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35765,28,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35766,29,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35767,30,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35768,31,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35769,32,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35770,33,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35771,34,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35772,35,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35773,36,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35774,37,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35775,38,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35776,39,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35777,40,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35778,41,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35779,42,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35780,43,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35781,44,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35782,45,103,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35783,24,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35784,25,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35785,26,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35786,27,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35787,28,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35788,29,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35789,30,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35790,31,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35791,32,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35792,33,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35793,34,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35794,35,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35795,36,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35796,37,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35797,38,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35798,39,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35799,40,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35800,41,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35801,42,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35802,43,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35803,44,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35804,45,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35805,46,103,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35806,24,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35807,25,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35808,26,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35809,27,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35810,28,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35811,29,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35812,30,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35813,31,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35814,32,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35815,33,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35816,34,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35817,35,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35818,36,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35819,37,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35820,38,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35821,39,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35822,40,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35823,41,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35824,42,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35825,43,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35826,44,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35827,45,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35828,46,103,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35829,24,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35830,25,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35831,26,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35832,27,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35833,28,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35834,29,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35835,30,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35836,31,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35837,32,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35838,33,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35839,34,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35840,35,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35841,36,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35842,37,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35843,38,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35844,39,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35845,40,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35846,41,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35847,42,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35848,43,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35849,44,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35850,45,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35851,46,103,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35852,24,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35853,25,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35854,26,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35855,27,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35856,28,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35857,29,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35858,30,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35859,31,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35860,32,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35861,33,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35862,34,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35863,35,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35864,36,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35865,37,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35866,38,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35867,39,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35868,40,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35869,41,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35870,42,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35871,43,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35872,44,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35873,45,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35874,46,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35875,47,103,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35876,39,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35877,40,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35878,41,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35879,42,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35880,43,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35881,44,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35882,45,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35883,46,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35884,47,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35885,48,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35886,49,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35887,50,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35888,51,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35889,52,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35890,53,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35891,54,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35892,55,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35893,56,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35894,57,104,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35895,39,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35896,40,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35897,41,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35898,42,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35899,43,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35900,44,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35901,45,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35902,46,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35903,47,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35904,48,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35905,49,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35906,50,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35907,51,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35908,52,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35909,53,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35910,54,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35911,55,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35912,56,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35913,57,104,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35914,41,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35915,42,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35916,43,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35917,44,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35918,45,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35919,46,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35920,47,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35921,48,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35922,49,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35923,50,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35924,51,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35925,52,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35926,53,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35927,54,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35928,55,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35929,56,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35930,57,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35931,58,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35932,59,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35933,60,104,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35934,41,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35935,42,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35936,43,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35937,44,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35938,45,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35939,46,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35940,47,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35941,48,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35942,49,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35943,50,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35944,51,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35945,52,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35946,53,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35947,54,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35948,55,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35949,56,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35950,57,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35951,58,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35952,59,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35953,60,104,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35954,41,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35955,42,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35956,43,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35957,44,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35958,45,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35959,46,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35960,47,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35961,48,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35962,49,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35963,50,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35964,51,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35965,52,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35966,53,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35967,54,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35968,55,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35969,56,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35970,57,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35971,58,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35972,59,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35973,60,104,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35974,41,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35975,42,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35976,43,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35977,44,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35978,45,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35979,46,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35980,47,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35981,48,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35982,49,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35983,50,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35984,51,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35985,52,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35986,53,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35987,54,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35988,55,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35989,56,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35990,57,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35991,58,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35992,59,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35993,60,104,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35994,43,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35995,44,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35996,45,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35997,46,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35998,47,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(35999,48,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36000,49,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36001,50,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36002,51,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36003,52,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36004,53,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36005,54,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36006,55,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36007,56,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36008,57,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36009,58,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36010,59,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36011,60,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36012,61,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36013,62,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36014,63,104,7,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36015,43,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36016,44,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36017,45,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36018,46,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36019,47,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36020,48,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36021,49,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36022,50,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36023,51,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36024,52,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36025,53,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36026,54,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36027,55,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36028,56,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36029,57,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36030,58,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36031,59,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36032,60,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36033,61,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36034,62,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36035,63,104,8,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36036,43,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36037,44,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36038,45,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36039,46,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36040,47,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36041,48,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36042,49,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36043,50,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36044,51,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36045,52,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36046,53,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36047,54,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36048,55,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36049,56,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36050,57,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36051,58,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36052,59,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36053,60,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36054,61,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36055,62,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36056,63,104,9,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36057,44,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36058,45,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36059,46,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36060,47,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36061,48,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36062,49,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36063,50,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36064,51,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36065,52,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36066,53,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36067,54,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36068,55,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36069,56,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36070,57,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36071,58,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36072,59,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36073,60,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36074,61,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36075,62,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36076,63,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36077,64,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36078,65,104,10,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36079,45,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36080,46,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36081,47,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36082,48,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36083,49,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36084,50,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36085,51,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36086,52,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36087,53,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36088,54,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36089,55,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36090,56,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36091,57,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36092,58,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36093,59,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36094,60,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36095,61,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36096,62,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36097,63,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36098,64,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36099,65,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36100,66,104,11,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36101,45,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36102,46,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36103,47,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36104,48,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36105,49,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36106,50,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36107,51,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36108,52,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36109,53,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36110,54,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36111,55,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36112,56,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36113,57,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36114,58,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36115,59,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36116,60,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36117,61,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36118,62,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36119,63,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36120,64,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36121,65,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36122,66,104,12,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36123,46,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36124,47,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36125,48,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36126,49,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36127,50,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36128,51,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36129,52,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36130,53,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36131,54,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36132,55,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36133,56,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36134,57,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36135,58,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36136,59,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36137,60,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36138,61,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36139,62,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36140,63,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36141,64,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36142,65,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36143,66,104,13,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36144,46,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36145,47,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36146,48,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36147,49,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36148,50,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36149,51,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36150,52,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36151,53,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36152,54,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36153,55,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36154,56,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36155,57,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36156,58,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36157,59,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36158,60,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36159,61,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36160,62,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36161,63,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36162,64,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36163,65,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36164,66,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36165,67,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36166,68,104,14,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36167,47,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36168,48,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36169,49,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36170,50,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36171,51,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36172,52,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36173,53,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36174,54,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36175,55,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36176,56,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36177,57,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36178,58,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36179,59,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36180,60,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36181,61,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36182,62,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36183,63,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36184,64,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36185,65,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36186,66,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36187,67,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36188,68,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36189,69,104,15,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36190,47,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36191,48,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36192,49,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36193,50,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36194,51,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36195,52,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36196,53,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36197,54,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36198,55,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36199,56,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36200,57,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36201,58,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36202,59,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36203,60,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36204,61,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36205,62,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36206,63,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36207,64,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36208,65,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36209,66,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36210,67,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36211,68,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36212,69,104,16,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36213,47,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36214,48,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36215,49,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36216,50,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36217,51,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36218,52,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36219,53,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36220,54,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36221,55,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36222,56,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36223,57,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36224,58,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36225,59,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36226,60,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36227,61,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36228,62,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36229,63,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36230,64,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36231,65,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36232,66,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36233,67,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36234,68,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36235,69,104,18,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36236,48,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36237,49,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36238,50,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36239,51,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36240,52,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36241,53,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36242,54,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36243,55,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36244,56,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36245,57,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36246,58,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36247,59,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36248,60,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36249,61,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36250,62,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36251,63,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36252,64,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36253,65,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36254,66,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36255,67,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36256,68,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36257,69,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36258,70,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36259,71,104,19,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36260,58,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36261,59,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36262,60,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36263,61,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36264,62,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36265,63,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36266,64,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36267,65,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36268,66,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36269,67,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36270,68,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36271,69,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36272,70,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36273,71,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36274,72,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36275,73,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36276,74,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36277,75,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36278,76,105,1,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36279,58,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36280,59,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36281,60,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36282,61,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36283,62,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36284,63,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36285,64,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36286,65,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36287,66,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36288,67,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36289,68,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36290,69,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36291,70,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36292,71,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36293,72,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36294,73,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36295,74,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36296,75,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36297,76,105,2,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36298,61,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36299,62,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36300,63,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36301,64,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36302,65,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36303,66,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36304,67,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36305,68,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36306,69,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36307,70,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36308,71,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36309,72,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36310,73,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36311,74,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36312,75,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36313,76,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36314,77,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36315,78,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36316,79,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36317,80,105,3,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36318,61,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36319,62,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36320,63,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36321,64,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36322,65,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36323,66,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36324,67,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36325,68,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36326,69,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36327,70,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36328,71,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36329,72,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36330,73,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36331,74,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36332,75,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36333,76,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36334,77,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36335,78,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36336,79,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36337,80,105,4,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36338,61,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36339,62,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36340,63,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36341,64,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36342,65,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36343,66,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36344,67,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36345,68,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36346,69,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36347,70,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36348,71,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36349,72,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36350,73,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36351,74,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36352,75,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36353,76,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36354,77,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36355,78,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36356,79,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36357,80,105,5,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36358,61,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36359,62,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36360,63,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36361,64,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36362,65,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36363,66,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36364,67,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36365,68,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36366,69,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36367,70,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36368,71,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36369,72,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36370,73,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36371,74,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36372,75,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36373,76,105,6,1,'2022-09-02 14:24:02','2022-09-02 14:24:02'),(36374,77,105,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36375,78,105,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36376,79,105,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36377,80,105,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36378,64,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36379,65,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36380,66,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36381,67,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36382,68,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36383,69,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36384,70,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36385,71,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36386,72,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36387,73,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36388,74,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36389,75,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36390,76,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36391,77,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36392,78,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36393,79,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36394,80,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36395,81,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36396,82,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36397,83,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36398,84,105,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36399,64,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36400,65,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36401,66,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36402,67,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36403,68,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36404,69,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36405,70,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36406,71,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36407,72,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36408,73,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36409,74,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36410,75,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36411,76,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36412,77,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36413,78,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36414,79,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36415,80,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36416,81,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36417,82,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36418,83,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36419,84,105,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36420,64,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36421,65,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36422,66,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36423,67,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36424,68,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36425,69,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36426,70,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36427,71,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36428,72,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36429,73,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36430,74,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36431,75,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36432,76,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36433,77,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36434,78,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36435,79,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36436,80,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36437,81,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36438,82,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36439,83,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36440,84,105,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36441,66,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36442,67,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36443,68,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36444,69,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36445,70,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36446,71,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36447,72,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36448,73,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36449,74,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36450,75,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36451,76,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36452,77,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36453,78,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36454,79,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36455,80,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36456,81,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36457,82,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36458,83,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36459,84,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36460,85,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36461,86,105,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36462,67,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36463,68,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36464,69,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36465,70,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36466,71,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36467,72,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36468,73,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36469,74,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36470,75,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36471,76,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36472,77,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36473,78,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36474,79,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36475,80,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36476,81,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36477,82,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36478,83,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36479,84,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36480,85,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36481,86,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36482,87,105,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36483,67,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36484,68,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36485,69,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36486,70,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36487,71,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36488,72,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36489,73,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36490,74,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36491,75,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36492,76,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36493,77,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36494,78,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36495,79,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36496,80,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36497,81,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36498,82,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36499,83,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36500,84,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36501,85,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36502,86,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36503,87,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36504,88,105,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36505,67,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36506,68,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36507,69,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36508,70,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36509,71,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36510,72,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36511,73,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36512,74,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36513,75,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36514,76,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36515,77,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36516,78,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36517,79,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36518,80,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36519,81,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36520,82,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36521,83,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36522,84,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36523,85,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36524,86,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36525,87,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36526,88,105,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36527,69,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36528,70,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36529,71,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36530,72,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36531,73,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36532,74,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36533,75,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36534,76,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36535,77,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36536,78,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36537,79,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36538,80,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36539,81,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36540,82,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36541,83,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36542,84,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36543,85,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36544,86,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36545,87,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36546,88,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36547,89,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36548,90,105,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36549,70,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36550,71,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36551,72,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36552,73,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36553,74,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36554,75,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36555,76,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36556,77,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36557,78,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36558,79,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36559,80,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36560,81,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36561,82,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36562,83,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36563,84,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36564,85,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36565,86,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36566,87,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36567,88,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36568,89,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36569,90,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36570,91,105,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36571,70,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36572,71,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36573,72,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36574,73,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36575,74,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36576,75,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36577,76,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36578,77,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36579,78,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36580,79,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36581,80,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36582,81,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36583,82,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36584,83,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36585,84,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36586,85,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36587,86,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36588,87,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36589,88,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36590,89,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36591,90,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36592,91,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36593,92,105,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36594,70,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36595,71,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36596,72,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36597,73,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36598,74,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36599,75,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36600,76,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36601,77,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36602,78,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36603,79,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36604,80,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36605,81,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36606,82,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36607,83,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36608,84,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36609,85,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36610,86,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36611,87,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36612,88,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36613,89,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36614,90,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36615,91,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36616,92,105,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36617,72,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36618,73,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36619,74,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36620,75,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36621,76,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36622,77,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36623,78,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36624,79,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36625,80,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36626,81,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36627,82,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36628,83,105,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36629,77,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36630,78,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36631,79,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36632,80,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36633,81,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36634,82,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36635,83,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36636,84,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36637,85,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36638,86,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36639,87,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36640,88,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36641,89,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36642,90,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36643,91,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36644,92,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36645,93,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36646,94,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36647,95,106,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36648,77,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36649,78,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36650,79,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36651,80,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36652,81,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36653,82,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36654,83,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36655,84,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36656,85,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36657,86,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36658,87,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36659,88,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36660,89,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36661,90,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36662,91,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36663,92,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36664,93,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36665,94,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36666,95,106,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36667,81,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36668,82,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36669,83,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36670,84,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36671,85,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36672,86,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36673,87,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36674,88,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36675,89,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36676,90,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36677,91,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36678,92,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36679,93,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36680,94,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36681,95,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36682,96,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36683,97,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36684,98,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36685,99,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36686,100,106,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36687,81,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36688,82,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36689,83,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36690,84,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36691,85,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36692,86,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36693,87,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36694,88,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36695,89,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36696,90,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36697,91,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36698,92,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36699,93,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36700,94,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36701,95,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36702,96,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36703,97,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36704,98,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36705,99,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36706,100,106,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36707,81,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36708,82,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36709,83,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36710,84,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36711,85,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36712,86,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36713,87,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36714,88,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36715,89,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36716,90,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36717,91,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36718,92,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36719,93,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36720,94,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36721,95,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36722,96,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36723,97,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36724,98,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36725,99,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36726,100,106,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36727,81,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36728,82,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36729,83,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36730,84,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36731,85,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36732,86,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36733,87,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36734,88,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36735,89,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36736,90,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36737,91,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36738,92,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36739,93,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36740,94,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36741,95,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36742,96,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36743,97,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36744,98,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36745,99,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36746,100,106,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36747,85,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36748,86,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36749,87,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36750,88,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36751,89,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36752,90,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36753,91,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36754,92,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36755,93,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36756,94,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36757,95,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36758,96,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36759,97,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36760,98,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36761,99,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36762,100,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36763,101,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36764,102,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36765,103,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36766,104,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36767,105,106,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36768,85,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36769,86,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36770,87,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36771,88,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36772,89,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36773,90,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36774,91,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36775,92,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36776,93,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36777,94,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36778,95,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36779,96,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36780,97,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36781,98,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36782,99,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36783,100,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36784,101,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36785,102,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36786,103,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36787,104,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36788,105,106,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36789,85,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36790,86,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36791,87,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36792,88,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36793,89,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36794,90,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36795,91,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36796,92,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36797,93,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36798,94,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36799,95,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36800,96,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36801,97,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36802,98,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36803,99,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36804,100,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36805,101,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36806,102,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36807,103,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36808,104,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36809,105,106,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36810,87,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36811,88,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36812,89,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36813,90,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36814,91,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36815,92,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36816,93,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36817,94,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36818,95,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36819,96,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36820,97,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36821,98,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36822,99,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36823,100,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36824,101,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36825,102,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36826,103,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36827,104,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36828,105,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36829,106,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36830,107,106,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36831,88,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36832,89,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36833,90,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36834,91,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36835,92,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36836,93,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36837,94,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36838,95,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36839,96,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36840,97,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36841,98,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36842,99,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36843,100,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36844,101,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36845,102,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36846,103,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36847,104,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36848,105,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36849,106,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36850,107,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36851,108,106,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36852,89,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36853,90,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36854,91,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36855,92,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36856,93,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36857,94,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36858,95,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36859,96,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36860,97,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36861,98,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36862,99,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36863,100,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36864,101,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36865,102,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36866,103,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36867,104,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36868,105,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36869,106,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36870,107,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36871,108,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36872,109,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36873,110,106,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36874,89,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36875,90,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36876,91,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36877,92,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36878,93,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36879,94,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36880,95,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36881,96,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36882,97,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36883,98,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36884,99,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36885,100,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36886,101,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36887,102,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36888,103,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36889,104,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36890,105,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36891,106,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36892,107,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36893,108,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36894,109,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36895,110,106,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36896,91,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36897,92,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36898,93,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36899,94,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36900,95,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36901,96,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36902,97,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36903,98,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36904,99,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36905,100,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36906,101,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36907,102,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36908,103,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36909,104,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36910,105,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36911,106,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36912,107,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36913,108,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36914,109,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36915,110,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36916,111,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36917,112,106,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36918,92,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36919,93,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36920,94,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36921,95,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36922,96,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36923,97,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36924,98,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36925,99,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36926,100,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36927,101,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36928,102,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36929,103,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36930,104,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36931,105,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36932,106,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36933,107,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36934,108,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36935,109,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36936,110,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36937,111,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36938,112,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36939,113,106,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36940,93,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36941,94,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36942,95,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36943,96,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36944,97,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36945,98,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36946,99,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36947,100,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36948,101,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36949,102,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36950,103,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36951,104,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36952,105,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36953,106,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36954,107,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36955,108,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36956,109,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36957,110,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36958,111,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36959,112,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36960,113,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36961,114,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36962,115,106,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36963,93,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36964,94,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36965,95,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36966,96,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36967,97,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36968,98,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36969,99,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36970,100,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36971,101,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36972,102,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36973,103,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36974,104,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36975,105,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36976,106,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36977,107,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36978,108,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36979,109,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36980,110,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36981,111,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36982,112,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36983,113,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36984,114,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36985,115,106,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36986,105,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36987,106,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36988,107,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36989,108,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36990,109,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36991,110,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36992,111,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36993,112,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36994,113,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36995,114,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36996,115,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36997,116,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36998,117,106,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(36999,96,107,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37000,97,107,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37001,98,107,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37002,99,107,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37003,100,107,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37004,96,107,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37005,97,107,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37006,98,107,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37007,99,107,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37008,100,107,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37009,101,107,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37010,102,107,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37011,103,107,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37012,104,107,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37013,105,107,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37014,101,107,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37015,102,107,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37016,103,107,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37017,104,107,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37018,105,107,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37019,101,107,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37020,102,107,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37021,103,107,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37022,104,107,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37023,105,107,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37024,101,107,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37025,102,107,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37026,103,107,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37027,104,107,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37028,105,107,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37029,106,107,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37030,107,107,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37031,108,107,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37032,109,107,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37033,110,107,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37034,106,107,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37035,107,107,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37036,108,107,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37037,109,107,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37038,110,107,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37039,106,107,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37040,107,107,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37041,108,107,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37042,109,107,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37043,110,107,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37044,108,107,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37045,109,107,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37046,110,107,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37047,111,107,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37048,112,107,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37049,113,107,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37050,109,107,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37051,110,107,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37052,111,107,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37053,112,107,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37054,113,107,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37055,114,107,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37056,111,107,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37057,112,107,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37058,113,107,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37059,114,107,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37060,115,107,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37061,116,107,12,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37062,111,107,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37063,112,107,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37064,113,107,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37065,114,107,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37066,115,107,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37067,116,107,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37068,117,107,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37069,118,107,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37070,119,107,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37071,120,107,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37072,113,107,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37073,114,107,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37074,115,107,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37075,116,107,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37076,117,107,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37077,118,107,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37078,119,107,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37079,120,107,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37080,121,107,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37081,122,107,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37082,114,107,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37083,115,107,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37084,116,107,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37085,117,107,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37086,118,107,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37087,119,107,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37088,120,107,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37089,121,107,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37090,122,107,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37091,123,107,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37092,124,107,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37093,116,107,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37094,117,107,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37095,118,107,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37096,119,107,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37097,120,107,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37098,121,107,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37099,122,107,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37100,123,107,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37101,124,107,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37102,125,107,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37103,126,107,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37104,116,107,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37105,117,107,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37106,118,107,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37107,119,107,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37108,120,107,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37109,121,107,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37110,122,107,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37111,123,107,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37112,124,107,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37113,125,107,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37114,126,107,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37115,118,107,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37116,119,107,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37117,120,107,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37118,121,107,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37119,122,107,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37120,123,107,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37121,124,107,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37122,125,107,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37123,126,107,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37124,127,107,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37125,128,107,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37126,121,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37127,122,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37128,123,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37129,124,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37130,125,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37131,126,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37132,127,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37133,128,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37134,129,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37135,130,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37136,131,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37137,132,108,13,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37138,123,108,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37139,124,108,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37140,125,108,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37141,126,108,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37142,127,108,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37143,128,108,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37144,129,108,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37145,130,108,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37146,131,108,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37147,132,108,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37148,133,108,14,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37149,125,108,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37150,126,108,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37151,127,108,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37152,128,108,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37153,129,108,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37154,130,108,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37155,131,108,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37156,132,108,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37157,133,108,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37158,134,108,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37159,135,108,15,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37160,127,108,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37161,128,108,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37162,129,108,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37163,130,108,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37164,131,108,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37165,132,108,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37166,133,108,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37167,134,108,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37168,135,108,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37169,136,108,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37170,137,108,16,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37171,127,108,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37172,128,108,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37173,129,108,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37174,130,108,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37175,131,108,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37176,132,108,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37177,133,108,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37178,134,108,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37179,135,108,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37180,136,108,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37181,137,108,18,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37182,129,108,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37183,130,108,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37184,131,108,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37185,132,108,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37186,133,108,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37187,134,108,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37188,135,108,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37189,136,108,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37190,137,108,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37191,138,108,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37192,139,108,19,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37193,101,109,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37194,102,109,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37195,103,109,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37196,104,109,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37197,105,109,1,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37198,101,109,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37199,102,109,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37200,103,109,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37201,104,109,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37202,105,109,2,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37203,106,109,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37204,107,109,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37205,108,109,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37206,109,109,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37207,110,109,3,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37208,106,109,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37209,107,109,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37210,108,109,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37211,109,109,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37212,110,109,4,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37213,106,109,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37214,107,109,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37215,108,109,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37216,109,109,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37217,110,109,5,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37218,106,109,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37219,107,109,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37220,108,109,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37221,109,109,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37222,110,109,6,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37223,111,109,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37224,112,109,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37225,113,109,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37226,114,109,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37227,115,109,7,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37228,111,109,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37229,112,109,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37230,113,109,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37231,114,109,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37232,115,109,8,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37233,111,109,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37234,112,109,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37235,113,109,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37236,114,109,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37237,115,109,9,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37238,114,109,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37239,115,109,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37240,116,109,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37241,117,109,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37242,118,109,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37243,119,109,10,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37244,115,109,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37245,116,109,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37246,117,109,11,1,'2022-09-02 14:24:03','2022-09-02 14:24:03'),(37247,118,109,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37248,119,109,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37249,120,109,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37250,117,109,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37251,118,109,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37252,119,109,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37253,120,109,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37254,121,109,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37255,122,109,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37256,133,109,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37257,134,109,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37258,135,109,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37259,136,109,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37260,137,109,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37261,138,109,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37262,139,109,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37263,140,109,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37264,141,109,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37265,134,109,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37266,135,109,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37267,136,109,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37268,137,109,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37269,138,109,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37270,139,109,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37271,140,109,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37272,141,109,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37273,136,109,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37274,137,109,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37275,138,109,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37276,139,109,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37277,140,109,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37278,141,109,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37279,142,109,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37280,143,109,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37281,144,109,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37282,145,109,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37283,138,109,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37284,139,109,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37285,140,109,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37286,141,109,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37287,142,109,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37288,143,109,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37289,144,109,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37290,145,109,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37291,146,109,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37292,147,109,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37293,148,109,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37294,138,109,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37295,139,109,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37296,140,109,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37297,141,109,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37298,142,109,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37299,143,109,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37300,144,109,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37301,145,109,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37302,146,109,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37303,147,109,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37304,148,109,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37305,140,109,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37306,141,109,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37307,142,109,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37308,143,109,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37309,144,109,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37310,145,109,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37311,146,109,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37312,147,109,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37313,148,109,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37314,149,109,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37315,150,109,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37316,106,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37317,107,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37318,108,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37319,109,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37320,110,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37321,111,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37322,112,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37323,113,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37324,114,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37325,115,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37326,116,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37327,117,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37328,118,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37329,119,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37330,120,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37331,121,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37332,122,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37333,123,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37334,124,110,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37335,106,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37336,107,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37337,108,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37338,109,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37339,110,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37340,111,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37341,112,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37342,113,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37343,114,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37344,115,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37345,116,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37346,117,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37347,118,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37348,119,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37349,120,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37350,121,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37351,122,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37352,123,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37353,124,110,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37354,111,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37355,112,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37356,113,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37357,114,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37358,115,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37359,116,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37360,117,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37361,118,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37362,119,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37363,120,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37364,121,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37365,122,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37366,123,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37367,124,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37368,125,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37369,126,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37370,127,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37371,128,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37372,129,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37373,130,110,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37374,111,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37375,112,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37376,113,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37377,114,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37378,115,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37379,116,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37380,117,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37381,118,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37382,119,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37383,120,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37384,121,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37385,122,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37386,123,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37387,124,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37388,125,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37389,126,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37390,127,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37391,128,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37392,129,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37393,130,110,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37394,111,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37395,112,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37396,113,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37397,114,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37398,115,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37399,116,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37400,117,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37401,118,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37402,119,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37403,120,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37404,121,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37405,122,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37406,123,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37407,124,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37408,125,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37409,126,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37410,127,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37411,128,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37412,129,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37413,130,110,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37414,111,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37415,112,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37416,113,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37417,114,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37418,115,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37419,116,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37420,117,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37421,118,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37422,119,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37423,120,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37424,121,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37425,122,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37426,123,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37427,124,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37428,125,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37429,126,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37430,127,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37431,128,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37432,129,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37433,130,110,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37434,116,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37435,117,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37436,118,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37437,119,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37438,120,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37439,121,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37440,122,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37441,123,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37442,124,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37443,125,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37444,126,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37445,127,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37446,128,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37447,129,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37448,130,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37449,131,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37450,132,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37451,133,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37452,134,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37453,135,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37454,136,110,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37455,116,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37456,117,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37457,118,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37458,119,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37459,120,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37460,121,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37461,122,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37462,123,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37463,124,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37464,125,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37465,126,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37466,127,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37467,128,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37468,129,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37469,130,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37470,131,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37471,132,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37472,133,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37473,134,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37474,135,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37475,136,110,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37476,116,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37477,117,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37478,118,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37479,119,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37480,120,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37481,121,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37482,122,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37483,123,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37484,124,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37485,125,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37486,126,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37487,127,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37488,128,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37489,129,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37490,130,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37491,131,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37492,132,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37493,133,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37494,134,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37495,135,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37496,136,110,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37497,120,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37498,121,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37499,122,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37500,123,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37501,124,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37502,125,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37503,126,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37504,127,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37505,128,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37506,129,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37507,130,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37508,131,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37509,132,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37510,133,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37511,134,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37512,135,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37513,136,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37514,137,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37515,138,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37516,139,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37517,140,110,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37518,121,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37519,122,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37520,123,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37521,124,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37522,125,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37523,126,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37524,127,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37525,128,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37526,129,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37527,130,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37528,131,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37529,132,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37530,133,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37531,134,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37532,135,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37533,136,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37534,137,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37535,138,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37536,139,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37537,140,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37538,141,110,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37539,123,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37540,124,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37541,125,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37542,126,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37543,127,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37544,128,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37545,129,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37546,130,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37547,131,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37548,132,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37549,133,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37550,134,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37551,135,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37552,136,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37553,137,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37554,138,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37555,139,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37556,140,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37557,141,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37558,142,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37559,143,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37560,144,110,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37561,142,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37562,143,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37563,144,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37564,145,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37565,146,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37566,147,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37567,148,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37568,149,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37569,150,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37570,151,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37571,152,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37572,153,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37573,154,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37574,155,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37575,156,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37576,157,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37577,158,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37578,159,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37579,160,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37580,161,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37581,162,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37582,163,110,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37583,142,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37584,143,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37585,144,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37586,145,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37587,146,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37588,147,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37589,148,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37590,149,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37591,150,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37592,151,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37593,152,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37594,153,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37595,154,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37596,155,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37597,156,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37598,157,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37599,158,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37600,159,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37601,160,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37602,161,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37603,162,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37604,163,110,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37605,146,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37606,147,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37607,148,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37608,149,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37609,150,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37610,151,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37611,152,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37612,153,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37613,154,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37614,155,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37615,156,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37616,157,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37617,158,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37618,159,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37619,160,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37620,161,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37621,162,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37622,163,110,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37623,149,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37624,150,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37625,151,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37626,152,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37627,153,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37628,154,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37629,155,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37630,156,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37631,157,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37632,158,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37633,159,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37634,160,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37635,161,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37636,162,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37637,163,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37638,164,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37639,165,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37640,166,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37641,167,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37642,168,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37643,169,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37644,170,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37645,171,110,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37646,149,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37647,150,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37648,151,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37649,152,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37650,153,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37651,154,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37652,155,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37653,156,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37654,157,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37655,158,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37656,159,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37657,160,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37658,161,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37659,162,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37660,163,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37661,164,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37662,165,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37663,166,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37664,167,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37665,168,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37666,169,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37667,170,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37668,171,110,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37669,151,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37670,152,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37671,153,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37672,154,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37673,155,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37674,156,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37675,157,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37676,158,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37677,159,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37678,160,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37679,161,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37680,162,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37681,163,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37682,164,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37683,165,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37684,166,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37685,167,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37686,168,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37687,169,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37688,170,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37689,171,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37690,172,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37691,173,110,19,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37692,125,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37693,126,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37694,127,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37695,128,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37696,129,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37697,130,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37698,131,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37699,132,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37700,133,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37701,134,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37702,135,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37703,136,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37704,137,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37705,138,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37706,139,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37707,140,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37708,141,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37709,142,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37710,143,111,1,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37711,125,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37712,126,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37713,127,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37714,128,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37715,129,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37716,130,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37717,131,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37718,132,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37719,133,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37720,134,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37721,135,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37722,136,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37723,137,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37724,138,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37725,139,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37726,140,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37727,141,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37728,142,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37729,143,111,2,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37730,131,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37731,132,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37732,133,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37733,134,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37734,135,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37735,136,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37736,137,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37737,138,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37738,139,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37739,140,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37740,141,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37741,142,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37742,143,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37743,144,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37744,145,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37745,146,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37746,147,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37747,148,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37748,149,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37749,150,111,3,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37750,131,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37751,132,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37752,133,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37753,134,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37754,135,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37755,136,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37756,137,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37757,138,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37758,139,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37759,140,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37760,141,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37761,142,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37762,143,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37763,144,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37764,145,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37765,146,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37766,147,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37767,148,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37768,149,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37769,150,111,4,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37770,131,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37771,132,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37772,133,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37773,134,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37774,135,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37775,136,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37776,137,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37777,138,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37778,139,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37779,140,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37780,141,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37781,142,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37782,143,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37783,144,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37784,145,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37785,146,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37786,147,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37787,148,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37788,149,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37789,150,111,5,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37790,131,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37791,132,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37792,133,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37793,134,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37794,135,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37795,136,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37796,137,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37797,138,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37798,139,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37799,140,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37800,141,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37801,142,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37802,143,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37803,144,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37804,145,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37805,146,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37806,147,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37807,148,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37808,149,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37809,150,111,6,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37810,137,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37811,138,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37812,139,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37813,140,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37814,141,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37815,142,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37816,143,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37817,144,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37818,145,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37819,146,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37820,147,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37821,148,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37822,149,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37823,150,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37824,151,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37825,152,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37826,153,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37827,154,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37828,155,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37829,156,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37830,157,111,7,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37831,137,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37832,138,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37833,139,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37834,140,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37835,141,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37836,142,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37837,143,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37838,144,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37839,145,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37840,146,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37841,147,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37842,148,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37843,149,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37844,150,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37845,151,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37846,152,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37847,153,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37848,154,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37849,155,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37850,156,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37851,157,111,8,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37852,137,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37853,138,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37854,139,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37855,140,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37856,141,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37857,142,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37858,143,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37859,144,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37860,145,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37861,146,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37862,147,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37863,148,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37864,149,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37865,150,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37866,151,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37867,152,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37868,153,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37869,154,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37870,155,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37871,156,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37872,157,111,9,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37873,141,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37874,142,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37875,143,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37876,144,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37877,145,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37878,146,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37879,147,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37880,148,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37881,149,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37882,150,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37883,151,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37884,152,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37885,153,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37886,154,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37887,155,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37888,156,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37889,157,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37890,158,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37891,159,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37892,160,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37893,161,111,10,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37894,142,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37895,143,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37896,144,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37897,145,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37898,146,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37899,147,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37900,148,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37901,149,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37902,150,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37903,151,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37904,152,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37905,153,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37906,154,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37907,155,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37908,156,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37909,157,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37910,158,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37911,159,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37912,160,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37913,161,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37914,162,111,11,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37915,145,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37916,146,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37917,147,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37918,148,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37919,149,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37920,150,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37921,151,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37922,152,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37923,153,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37924,154,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37925,155,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37926,156,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37927,157,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37928,158,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37929,159,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37930,160,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37931,161,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37932,162,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37933,163,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37934,164,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37935,165,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37936,166,111,12,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37937,164,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37938,165,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37939,166,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37940,167,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37941,168,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37942,169,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37943,170,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37944,171,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37945,172,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37946,173,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37947,174,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37948,175,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37949,176,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37950,177,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37951,178,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37952,179,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37953,180,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37954,181,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37955,182,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37956,183,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37957,184,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37958,185,111,13,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37959,164,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37960,165,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37961,166,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37962,167,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37963,168,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37964,169,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37965,170,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37966,171,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37967,172,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37968,173,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37969,174,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37970,175,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37971,176,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37972,177,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37973,178,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37974,179,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37975,180,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37976,181,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37977,182,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37978,183,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37979,184,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37980,185,111,14,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37981,164,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37982,165,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37983,166,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37984,167,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37985,168,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37986,169,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37987,170,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37988,171,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37989,172,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37990,173,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37991,174,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37992,175,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37993,176,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37994,177,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37995,178,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37996,179,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37997,180,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37998,181,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(37999,182,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38000,183,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38001,184,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38002,185,111,15,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38003,172,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38004,173,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38005,174,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38006,175,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38007,176,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38008,177,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38009,178,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38010,179,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38011,180,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38012,181,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38013,182,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38014,183,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38015,184,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38016,185,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38017,186,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38018,187,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38019,188,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38020,189,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38021,190,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38022,191,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38023,192,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38024,193,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38025,194,111,16,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38026,172,111,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38027,173,111,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38028,174,111,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38029,175,111,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38030,176,111,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38031,177,111,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38032,178,111,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38033,179,111,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38034,180,111,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38035,181,111,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38036,182,111,18,1,'2022-09-02 14:24:04','2022-09-02 14:24:04'),(38037,183,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38038,184,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38039,185,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38040,186,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38041,187,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38042,188,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38043,189,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38044,190,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38045,191,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38046,192,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38047,193,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38048,194,111,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38049,174,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38050,175,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38051,176,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38052,177,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38053,178,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38054,179,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38055,180,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38056,181,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38057,182,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38058,183,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38059,184,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38060,185,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38061,186,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38062,187,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38063,188,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38064,189,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38065,190,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38066,191,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38067,192,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38068,193,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38069,194,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38070,195,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38071,196,111,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38072,144,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38073,145,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38074,146,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38075,147,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38076,148,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38077,149,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38078,150,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38079,151,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38080,152,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38081,153,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38082,154,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38083,155,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38084,156,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38085,157,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38086,158,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38087,159,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38088,160,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38089,161,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38090,162,112,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38091,144,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38092,145,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38093,146,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38094,147,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38095,148,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38096,149,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38097,150,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38098,151,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38099,152,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38100,153,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38101,154,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38102,155,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38103,156,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38104,157,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38105,158,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38106,159,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38107,160,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38108,161,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38109,162,112,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38110,151,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38111,152,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38112,153,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38113,154,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38114,155,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38115,156,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38116,157,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38117,158,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38118,159,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38119,160,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38120,161,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38121,162,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38122,163,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38123,164,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38124,165,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38125,166,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38126,167,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38127,168,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38128,169,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38129,170,112,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38130,151,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38131,152,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38132,153,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38133,154,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38134,155,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38135,156,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38136,157,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38137,158,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38138,159,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38139,160,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38140,161,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38141,162,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38142,163,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38143,164,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38144,165,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38145,166,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38146,167,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38147,168,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38148,169,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38149,170,112,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38150,151,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38151,152,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38152,153,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38153,154,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38154,155,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38155,156,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38156,157,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38157,158,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38158,159,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38159,160,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38160,161,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38161,162,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38162,163,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38163,164,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38164,165,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38165,166,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38166,167,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38167,168,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38168,169,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38169,170,112,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38170,151,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38171,152,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38172,153,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38173,154,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38174,155,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38175,156,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38176,157,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38177,158,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38178,159,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38179,160,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38180,161,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38181,162,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38182,163,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38183,164,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38184,165,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38185,166,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38186,167,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38187,168,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38188,169,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38189,170,112,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38190,158,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38191,159,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38192,160,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38193,161,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38194,162,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38195,163,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38196,164,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38197,165,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38198,166,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38199,167,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38200,168,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38201,169,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38202,170,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38203,171,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38204,172,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38205,173,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38206,174,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38207,175,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38208,176,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38209,177,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38210,178,112,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38211,158,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38212,159,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38213,160,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38214,161,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38215,162,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38216,163,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38217,164,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38218,165,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38219,166,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38220,167,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38221,168,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38222,169,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38223,170,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38224,171,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38225,172,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38226,173,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38227,174,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38228,175,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38229,176,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38230,177,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38231,178,112,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38232,158,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38233,159,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38234,160,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38235,161,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38236,162,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38237,163,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38238,164,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38239,165,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38240,166,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38241,167,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38242,168,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38243,169,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38244,170,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38245,171,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38246,172,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38247,173,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38248,174,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38249,175,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38250,176,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38251,177,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38252,178,112,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38253,162,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38254,163,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38255,164,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38256,165,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38257,166,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38258,167,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38259,168,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38260,169,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38261,170,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38262,171,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38263,172,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38264,173,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38265,174,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38266,175,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38267,176,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38268,177,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38269,178,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38270,179,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38271,180,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38272,181,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38273,182,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38274,183,112,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38275,163,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38276,164,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38277,165,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38278,166,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38279,167,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38280,168,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38281,169,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38282,170,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38283,171,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38284,172,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38285,173,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38286,174,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38287,175,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38288,176,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38289,177,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38290,178,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38291,179,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38292,180,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38293,181,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38294,182,112,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38295,167,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38296,168,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38297,169,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38298,170,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38299,171,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38300,172,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38301,173,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38302,174,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38303,175,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38304,176,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38305,177,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38306,178,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38307,179,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38308,180,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38309,181,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38310,182,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38311,183,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38312,184,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38313,185,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38314,186,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38315,187,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38316,188,112,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38317,186,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38318,187,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38319,188,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38320,189,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38321,190,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38322,191,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38323,192,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38324,193,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38325,194,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38326,195,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38327,196,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38328,197,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38329,198,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38330,199,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38331,200,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38332,201,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38333,202,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38334,203,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38335,204,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38336,205,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38337,206,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38338,207,112,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38339,186,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38340,187,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38341,188,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38342,189,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38343,190,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38344,191,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38345,192,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38346,193,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38347,194,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38348,195,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38349,196,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38350,197,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38351,198,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38352,199,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38353,200,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38354,201,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38355,202,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38356,203,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38357,204,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38358,205,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38359,206,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38360,207,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38361,208,112,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38362,186,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38363,187,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38364,188,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38365,189,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38366,190,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38367,191,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38368,192,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38369,193,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38370,194,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38371,195,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38372,196,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38373,197,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38374,198,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38375,199,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38376,200,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38377,201,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38378,202,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38379,203,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38380,204,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38381,205,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38382,206,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38383,207,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38384,208,112,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38385,195,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38386,196,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38387,197,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38388,198,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38389,199,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38390,200,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38391,201,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38392,202,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38393,203,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38394,204,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38395,205,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38396,206,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38397,207,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38398,208,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38399,209,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38400,210,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38401,211,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38402,212,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38403,213,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38404,214,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38405,215,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38406,216,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38407,217,112,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38408,195,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38409,196,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38410,197,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38411,198,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38412,199,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38413,200,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38414,201,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38415,202,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38416,203,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38417,204,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38418,205,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38419,206,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38420,207,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38421,208,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38422,209,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38423,210,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38424,211,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38425,212,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38426,213,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38427,214,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38428,215,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38429,216,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38430,217,112,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38431,197,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38432,198,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38433,199,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38434,200,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38435,201,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38436,202,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38437,203,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38438,204,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38439,205,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38440,206,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38441,207,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38442,208,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38443,209,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38444,210,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38445,211,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38446,212,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38447,213,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38448,214,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38449,215,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38450,216,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38451,217,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38452,218,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38453,219,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38454,220,112,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38455,163,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38456,164,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38457,165,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38458,166,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38459,167,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38460,168,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38461,169,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38462,170,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38463,171,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38464,172,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38465,173,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38466,174,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38467,175,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38468,176,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38469,177,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38470,178,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38471,179,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38472,180,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38473,181,113,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38474,163,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38475,164,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38476,165,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38477,166,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38478,167,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38479,168,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38480,169,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38481,170,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38482,171,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38483,172,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38484,173,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38485,174,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38486,175,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38487,176,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38488,177,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38489,178,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38490,179,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38491,180,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38492,181,113,2,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38493,171,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38494,172,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38495,173,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38496,174,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38497,175,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38498,176,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38499,177,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38500,178,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38501,179,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38502,180,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38503,181,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38504,182,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38505,183,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38506,184,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38507,185,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38508,186,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38509,187,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38510,188,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38511,189,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38512,190,113,3,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38513,171,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38514,172,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38515,173,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38516,174,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38517,175,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38518,176,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38519,177,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38520,178,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38521,179,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38522,180,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38523,181,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38524,182,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38525,183,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38526,184,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38527,185,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38528,186,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38529,187,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38530,188,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38531,189,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38532,190,113,4,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38533,171,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38534,172,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38535,173,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38536,174,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38537,175,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38538,176,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38539,177,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38540,178,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38541,179,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38542,180,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38543,181,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38544,182,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38545,183,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38546,184,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38547,185,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38548,186,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38549,187,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38550,188,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38551,189,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38552,190,113,5,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38553,171,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38554,172,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38555,173,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38556,174,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38557,175,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38558,176,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38559,177,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38560,178,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38561,179,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38562,180,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38563,181,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38564,182,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38565,183,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38566,184,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38567,185,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38568,186,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38569,187,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38570,188,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38571,189,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38572,190,113,6,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38573,179,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38574,180,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38575,181,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38576,182,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38577,183,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38578,184,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38579,185,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38580,186,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38581,187,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38582,188,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38583,189,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38584,190,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38585,191,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38586,192,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38587,193,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38588,194,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38589,195,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38590,196,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38591,197,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38592,198,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38593,199,113,7,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38594,179,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38595,180,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38596,181,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38597,182,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38598,183,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38599,184,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38600,185,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38601,186,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38602,187,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38603,188,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38604,189,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38605,190,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38606,191,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38607,192,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38608,193,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38609,194,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38610,195,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38611,196,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38612,197,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38613,198,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38614,199,113,8,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38615,179,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38616,180,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38617,181,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38618,182,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38619,183,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38620,184,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38621,185,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38622,186,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38623,187,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38624,188,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38625,189,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38626,190,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38627,191,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38628,192,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38629,193,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38630,194,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38631,195,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38632,196,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38633,197,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38634,198,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38635,199,113,9,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38636,184,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38637,185,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38638,186,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38639,187,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38640,188,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38641,189,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38642,190,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38643,191,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38644,192,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38645,193,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38646,194,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38647,195,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38648,196,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38649,197,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38650,198,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38651,199,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38652,200,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38653,201,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38654,202,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38655,203,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38656,204,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38657,205,113,10,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38658,183,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38659,184,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38660,185,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38661,186,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38662,187,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38663,188,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38664,189,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38665,190,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38666,191,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38667,192,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38668,193,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38669,194,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38670,195,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38671,196,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38672,197,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38673,198,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38674,199,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38675,200,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38676,201,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38677,202,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38678,203,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38679,204,113,11,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38680,189,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38681,190,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38682,191,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38683,192,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38684,193,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38685,194,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38686,195,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38687,196,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38688,197,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38689,198,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38690,199,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38691,200,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38692,201,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38693,202,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38694,203,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38695,204,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38696,205,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38697,206,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38698,207,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38699,208,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38700,209,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38701,210,113,12,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38702,208,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38703,209,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38704,210,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38705,211,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38706,212,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38707,213,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38708,214,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38709,215,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38710,216,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38711,217,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38712,218,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38713,219,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38714,220,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38715,221,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38716,222,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38717,223,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38718,224,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38719,225,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38720,226,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38721,227,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38722,228,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38723,229,113,13,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38724,209,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38725,210,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38726,211,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38727,212,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38728,213,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38729,214,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38730,215,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38731,216,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38732,217,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38733,218,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38734,219,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38735,220,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38736,221,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38737,222,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38738,223,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38739,224,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38740,225,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38741,226,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38742,227,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38743,228,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38744,229,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38745,230,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38746,231,113,14,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38747,209,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38748,210,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38749,211,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38750,212,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38751,213,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38752,214,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38753,215,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38754,216,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38755,217,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38756,218,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38757,219,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38758,220,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38759,221,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38760,222,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38761,223,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38762,224,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38763,225,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38764,226,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38765,227,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38766,228,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38767,229,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38768,230,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38769,231,113,15,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38770,218,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38771,219,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38772,220,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38773,221,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38774,222,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38775,223,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38776,224,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38777,225,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38778,226,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38779,227,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38780,228,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38781,229,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38782,230,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38783,231,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38784,232,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38785,233,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38786,234,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38787,235,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38788,236,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38789,237,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38790,238,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38791,239,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38792,240,113,16,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38793,218,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38794,219,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38795,220,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38796,221,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38797,222,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38798,223,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38799,224,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38800,225,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38801,226,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38802,227,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38803,228,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38804,229,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38805,230,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38806,231,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38807,232,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38808,233,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38809,234,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38810,235,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38811,236,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38812,237,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38813,238,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38814,239,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38815,240,113,18,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38816,221,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38817,222,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38818,223,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38819,224,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38820,225,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38821,226,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38822,227,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38823,228,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38824,229,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38825,230,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38826,231,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38827,232,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38828,233,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38829,234,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38830,235,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38831,236,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38832,237,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38833,238,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38834,239,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38835,240,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38836,241,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38837,242,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38838,243,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38839,244,113,19,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38840,182,114,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38841,183,114,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38842,184,114,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38843,185,114,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38844,186,114,1,1,'2022-09-02 14:24:05','2022-09-02 14:24:05'),(38845,187,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38846,188,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38847,189,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38848,190,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38849,191,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38850,192,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38851,193,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38852,194,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38853,195,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38854,196,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38855,197,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38856,198,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38857,199,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38858,200,114,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38859,182,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38860,183,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38861,184,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38862,185,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38863,186,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38864,187,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38865,188,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38866,189,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38867,190,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38868,191,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38869,192,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38870,193,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38871,194,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38872,195,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38873,196,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38874,197,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38875,198,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38876,199,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38877,200,114,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38878,191,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38879,192,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38880,193,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38881,194,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38882,195,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38883,196,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38884,197,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38885,198,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38886,199,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38887,200,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38888,201,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38889,202,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38890,203,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38891,204,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38892,205,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38893,206,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38894,207,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38895,208,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38896,209,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38897,210,114,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38898,191,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38899,192,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38900,193,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38901,194,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38902,195,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38903,196,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38904,197,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38905,198,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38906,199,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38907,200,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38908,201,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38909,202,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38910,203,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38911,204,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38912,205,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38913,206,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38914,207,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38915,208,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38916,209,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38917,210,114,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38918,191,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38919,192,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38920,193,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38921,194,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38922,195,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38923,196,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38924,197,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38925,198,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38926,199,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38927,200,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38928,201,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38929,202,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38930,203,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38931,204,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38932,205,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38933,206,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38934,207,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38935,208,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38936,209,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38937,210,114,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38938,191,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38939,192,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38940,193,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38941,194,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38942,195,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38943,196,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38944,197,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38945,198,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38946,199,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38947,200,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38948,201,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38949,202,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38950,203,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38951,204,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38952,205,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38953,206,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38954,207,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38955,208,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38956,209,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38957,210,114,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38958,200,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38959,201,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38960,202,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38961,203,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38962,204,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38963,205,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38964,206,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38965,207,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38966,208,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38967,209,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38968,210,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38969,211,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38970,212,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38971,213,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38972,214,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38973,215,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38974,216,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38975,217,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38976,218,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38977,219,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38978,220,114,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38979,200,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38980,201,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38981,202,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38982,203,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38983,204,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38984,205,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38985,206,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38986,207,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38987,208,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38988,209,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38989,210,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38990,211,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38991,212,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38992,213,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38993,214,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38994,215,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38995,216,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38996,217,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38997,218,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38998,219,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(38999,220,114,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39000,200,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39001,201,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39002,202,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39003,203,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39004,204,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39005,205,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39006,206,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39007,207,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39008,208,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39009,209,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39010,210,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39011,211,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39012,212,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39013,213,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39014,214,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39015,215,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39016,216,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39017,217,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39018,218,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39019,219,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39020,220,114,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39021,206,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39022,207,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39023,208,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39024,209,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39025,210,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39026,211,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39027,212,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39028,213,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39029,214,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39030,215,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39031,216,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39032,217,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39033,218,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39034,219,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39035,220,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39036,221,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39037,222,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39038,223,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39039,224,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39040,225,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39041,226,114,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39042,205,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39043,206,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39044,207,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39045,208,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39046,209,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39047,210,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39048,211,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39049,212,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39050,213,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39051,214,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39052,215,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39053,216,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39054,217,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39055,218,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39056,219,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39057,220,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39058,221,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39059,222,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39060,223,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39061,224,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39062,225,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39063,226,114,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39064,211,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39065,212,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39066,213,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39067,214,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39068,215,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39069,216,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39070,217,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39071,218,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39072,219,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39073,220,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39074,221,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39075,222,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39076,223,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39077,224,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39078,225,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39079,226,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39080,227,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39081,228,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39082,229,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39083,230,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39084,231,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39085,232,114,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39086,230,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39087,231,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39088,232,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39089,233,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39090,234,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39091,235,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39092,236,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39093,237,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39094,238,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39095,239,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39096,240,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39097,241,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39098,242,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39099,243,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39100,244,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39101,245,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39102,246,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39103,247,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39104,248,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39105,249,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39106,250,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39107,251,114,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39108,232,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39109,233,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39110,234,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39111,235,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39112,236,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39113,237,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39114,238,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39115,239,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39116,240,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39117,241,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39118,242,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39119,243,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39120,244,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39121,245,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39122,246,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39123,247,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39124,248,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39125,249,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39126,250,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39127,251,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39128,252,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39129,253,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39130,254,114,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39131,232,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39132,233,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39133,234,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39134,235,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39135,236,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39136,237,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39137,238,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39138,239,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39139,240,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39140,241,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39141,242,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39142,243,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39143,244,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39144,245,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39145,246,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39146,247,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39147,248,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39148,249,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39149,250,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39150,251,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39151,252,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39152,253,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39153,254,114,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39154,241,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39155,242,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39156,243,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39157,244,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39158,245,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39159,246,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39160,247,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39161,248,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39162,249,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39163,250,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39164,251,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39165,252,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39166,253,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39167,254,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39168,255,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39169,256,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39170,257,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39171,258,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39172,259,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39173,260,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39174,261,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39175,262,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39176,263,114,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39177,201,115,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39178,202,115,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39179,203,115,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39180,204,115,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39181,205,115,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39182,206,115,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39183,207,115,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39184,208,115,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39185,201,115,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39186,202,115,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39187,203,115,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39188,204,115,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39189,205,115,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39190,206,115,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39191,207,115,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39192,208,115,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39193,211,115,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39194,212,115,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39195,213,115,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39196,214,115,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39197,215,115,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39198,216,115,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39199,217,115,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39200,218,115,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39201,211,115,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39202,212,115,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39203,213,115,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39204,214,115,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39205,215,115,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39206,216,115,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39207,217,115,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39208,218,115,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39209,211,115,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39210,212,115,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39211,213,115,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39212,214,115,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39213,215,115,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39214,216,115,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39215,217,115,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39216,218,115,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39217,219,115,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39218,211,115,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39219,212,115,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39220,213,115,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39221,214,115,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39222,215,115,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39223,216,115,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39224,217,115,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39225,218,115,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39226,219,115,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39227,221,115,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39228,222,115,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39229,223,115,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39230,224,115,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39231,225,115,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39232,226,115,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39233,227,115,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39234,228,115,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39235,229,115,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39236,221,115,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39237,222,115,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39238,223,115,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39239,224,115,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39240,225,115,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39241,226,115,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39242,227,115,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39243,228,115,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39244,229,115,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39245,221,115,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39246,222,115,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39247,223,115,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39248,224,115,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39249,225,115,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39250,226,115,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39251,227,115,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39252,228,115,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39253,229,115,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39254,227,115,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39255,228,115,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39256,229,115,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39257,230,115,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39258,231,115,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39259,232,115,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39260,233,115,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39261,234,115,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39262,235,115,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39263,227,115,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39264,228,115,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39265,229,115,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39266,230,115,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39267,231,115,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39268,232,115,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39269,233,115,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39270,234,115,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39271,235,115,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39272,233,115,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39273,234,115,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39274,235,115,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39275,236,115,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39276,237,115,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39277,238,115,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39278,239,115,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39279,240,115,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39280,241,115,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39281,252,115,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39282,253,115,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39283,254,115,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39284,255,115,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39285,256,115,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39286,257,115,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39287,258,115,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39288,259,115,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39289,260,115,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39290,261,115,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39291,255,115,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39292,256,115,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39293,257,115,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39294,258,115,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39295,259,115,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39296,260,115,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39297,261,115,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39298,262,115,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39299,263,115,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39300,264,115,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39301,255,115,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39302,256,115,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39303,257,115,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39304,258,115,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39305,259,115,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39306,260,115,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39307,261,115,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39308,262,115,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39309,263,115,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39310,264,115,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39311,264,115,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39312,265,115,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39313,266,115,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39314,267,115,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39315,268,115,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39316,269,115,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39317,270,115,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39318,271,115,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39319,272,115,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39320,273,115,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39321,264,115,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39322,265,115,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39323,266,115,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39324,267,115,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39325,268,115,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39326,269,115,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39327,270,115,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39328,271,115,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39329,272,115,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39330,273,115,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39331,1,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39332,2,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39333,3,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39334,4,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39335,5,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39336,6,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39337,7,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39338,8,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39339,9,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39340,10,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39341,11,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39342,12,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39343,13,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39344,14,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39345,15,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39346,16,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39347,17,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39348,18,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39349,19,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39350,20,116,1,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39351,1,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39352,2,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39353,3,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39354,4,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39355,5,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39356,6,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39357,7,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39358,8,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39359,9,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39360,10,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39361,11,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39362,12,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39363,13,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39364,14,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39365,15,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39366,16,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39367,17,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39368,18,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39369,19,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39370,20,116,2,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39371,1,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39372,2,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39373,3,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39374,4,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39375,5,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39376,6,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39377,7,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39378,8,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39379,9,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39380,10,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39381,11,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39382,12,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39383,13,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39384,14,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39385,15,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39386,16,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39387,17,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39388,18,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39389,19,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39390,20,116,3,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39391,1,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39392,2,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39393,3,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39394,4,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39395,5,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39396,6,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39397,7,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39398,8,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39399,9,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39400,10,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39401,11,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39402,12,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39403,13,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39404,14,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39405,15,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39406,16,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39407,17,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39408,18,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39409,19,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39410,20,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39411,21,116,4,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39412,1,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39413,2,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39414,3,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39415,4,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39416,5,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39417,6,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39418,7,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39419,8,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39420,9,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39421,10,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39422,11,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39423,12,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39424,13,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39425,14,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39426,15,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39427,16,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39428,17,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39429,18,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39430,19,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39431,20,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39432,21,116,5,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39433,1,116,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39434,2,116,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39435,3,116,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39436,4,116,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39437,5,116,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39438,6,116,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39439,7,116,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39440,8,116,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39441,9,116,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39442,10,116,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39443,11,116,6,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39444,1,116,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39445,2,116,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39446,3,116,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39447,4,116,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39448,5,116,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39449,6,116,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39450,7,116,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39451,8,116,7,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39452,1,116,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39453,2,116,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39454,3,116,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39455,4,116,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39456,5,116,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39457,6,116,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39458,7,116,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39459,8,116,8,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39460,1,116,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39461,2,116,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39462,3,116,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39463,4,116,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39464,5,116,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39465,6,116,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39466,7,116,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39467,8,116,9,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39468,1,116,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39469,2,116,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39470,3,116,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39471,4,116,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39472,5,116,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39473,6,116,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39474,7,116,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39475,8,116,10,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39476,1,116,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39477,2,116,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39478,3,116,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39479,4,116,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39480,5,116,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39481,6,116,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39482,7,116,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39483,8,116,11,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39484,1,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39485,2,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39486,3,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39487,4,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39488,5,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39489,6,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39490,7,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39491,8,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39492,9,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39493,10,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39494,11,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39495,12,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39496,13,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39497,14,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39498,15,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39499,16,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39500,17,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39501,18,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39502,19,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39503,20,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39504,21,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39505,22,116,12,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39506,1,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39507,2,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39508,3,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39509,4,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39510,5,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39511,6,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39512,7,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39513,8,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39514,9,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39515,10,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39516,11,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39517,12,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39518,13,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39519,14,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39520,15,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39521,16,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39522,17,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39523,18,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39524,19,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39525,20,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39526,21,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39527,22,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39528,23,116,13,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39529,1,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39530,2,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39531,3,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39532,4,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39533,5,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39534,6,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39535,7,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39536,8,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39537,9,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39538,10,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39539,11,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39540,12,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39541,13,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39542,14,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39543,15,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39544,16,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39545,17,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39546,18,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39547,19,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39548,20,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39549,21,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39550,22,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39551,23,116,14,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39552,1,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39553,2,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39554,3,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39555,4,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39556,5,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39557,6,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39558,7,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39559,8,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39560,9,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39561,10,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39562,11,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39563,12,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39564,13,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39565,14,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39566,15,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39567,16,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39568,17,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39569,18,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39570,19,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39571,20,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39572,21,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39573,22,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39574,23,116,15,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39575,1,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39576,2,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39577,3,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39578,4,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39579,5,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39580,6,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39581,7,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39582,8,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39583,9,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39584,10,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39585,11,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39586,12,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39587,13,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39588,14,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39589,15,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39590,16,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39591,17,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39592,18,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39593,19,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39594,20,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39595,21,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39596,22,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39597,23,116,16,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39598,1,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39599,2,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39600,3,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39601,4,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39602,5,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39603,6,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39604,7,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39605,8,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39606,9,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39607,10,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39608,11,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39609,12,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39610,13,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39611,14,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39612,15,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39613,16,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39614,17,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39615,18,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39616,19,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39617,20,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39618,21,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39619,22,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39620,23,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39621,24,116,18,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39622,1,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39623,2,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39624,3,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39625,4,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39626,5,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39627,6,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39628,7,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39629,8,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39630,9,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39631,10,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39632,11,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39633,12,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39634,13,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39635,14,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39636,15,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39637,16,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39638,17,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39639,18,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39640,19,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39641,20,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39642,21,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39643,22,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39644,23,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39645,24,116,19,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39646,1,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39647,2,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39648,3,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39649,4,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39650,5,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39651,6,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39652,7,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39653,8,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39654,9,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39655,10,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39656,11,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39657,12,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39658,13,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39659,14,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39660,15,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39661,16,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39662,17,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39663,18,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39664,19,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39665,20,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39666,21,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39667,22,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39668,23,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39669,24,116,20,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39670,1,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39671,2,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39672,3,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39673,4,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39674,5,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39675,6,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39676,7,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39677,8,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39678,9,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39679,10,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39680,11,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39681,12,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39682,13,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39683,14,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39684,15,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39685,16,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39686,17,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39687,18,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39688,19,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39689,20,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39690,21,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39691,22,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39692,23,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39693,24,116,21,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39694,1,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39695,2,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39696,3,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39697,4,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39698,5,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39699,6,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39700,7,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39701,8,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39702,9,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39703,10,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39704,11,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39705,12,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39706,13,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39707,14,116,22,1,'2022-09-02 14:24:06','2022-09-02 14:24:06'),(39708,15,116,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39709,16,116,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39710,17,116,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39711,18,116,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39712,19,116,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39713,20,116,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39714,21,116,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39715,22,116,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39716,23,116,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39717,24,116,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39718,25,116,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39719,1,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39720,2,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39721,3,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39722,4,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39723,5,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39724,6,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39725,7,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39726,8,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39727,9,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39728,10,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39729,11,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39730,12,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39731,13,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39732,14,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39733,15,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39734,16,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39735,17,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39736,18,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39737,19,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39738,20,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39739,21,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39740,22,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39741,23,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39742,24,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39743,25,116,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39744,1,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39745,2,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39746,3,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39747,4,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39748,5,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39749,6,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39750,7,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39751,8,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39752,9,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39753,10,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39754,11,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39755,12,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39756,13,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39757,14,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39758,15,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39759,16,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39760,17,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39761,18,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39762,19,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39763,20,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39764,21,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39765,22,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39766,23,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39767,24,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39768,25,116,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39769,1,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39770,2,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39771,3,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39772,4,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39773,5,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39774,6,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39775,7,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39776,8,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39777,9,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39778,10,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39779,11,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39780,12,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39781,13,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39782,14,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39783,15,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39784,16,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39785,17,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39786,18,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39787,19,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39788,20,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39789,21,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39790,22,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39791,23,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39792,24,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39793,25,116,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39794,1,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39795,2,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39796,3,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39797,4,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39798,5,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39799,6,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39800,7,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39801,8,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39802,9,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39803,10,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39804,11,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39805,12,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39806,13,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39807,14,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39808,15,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39809,16,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39810,17,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39811,18,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39812,19,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39813,20,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39814,21,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39815,22,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39816,23,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39817,24,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39818,25,116,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39819,1,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39820,2,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39821,3,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39822,4,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39823,5,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39824,6,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39825,7,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39826,8,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39827,9,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39828,10,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39829,11,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39830,12,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39831,13,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39832,14,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39833,15,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39834,16,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39835,17,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39836,18,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39837,19,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39838,20,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39839,21,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39840,22,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39841,23,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39842,24,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39843,25,116,27,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39844,1,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39845,2,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39846,3,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39847,4,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39848,5,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39849,6,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39850,7,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39851,8,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39852,9,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39853,10,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39854,11,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39855,12,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39856,13,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39857,14,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39858,15,116,54,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39859,1,116,81,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39860,2,116,81,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39861,3,116,81,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39862,4,116,81,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39863,5,116,81,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39864,6,116,81,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39865,7,116,81,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39866,21,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39867,22,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39868,23,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39869,24,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39870,25,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39871,26,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39872,27,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39873,28,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39874,29,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39875,30,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39876,31,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39877,32,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39878,33,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39879,34,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39880,35,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39881,36,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39882,37,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39883,38,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39884,39,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39885,40,117,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39886,21,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39887,22,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39888,23,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39889,24,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39890,25,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39891,26,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39892,27,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39893,28,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39894,29,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39895,30,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39896,31,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39897,32,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39898,33,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39899,34,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39900,35,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39901,36,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39902,37,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39903,38,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39904,39,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39905,40,117,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39906,21,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39907,22,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39908,23,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39909,24,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39910,25,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39911,26,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39912,27,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39913,28,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39914,29,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39915,30,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39916,31,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39917,32,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39918,33,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39919,34,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39920,35,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39921,36,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39922,37,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39923,38,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39924,39,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39925,40,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39926,41,117,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39927,22,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39928,23,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39929,24,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39930,25,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39931,26,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39932,27,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39933,28,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39934,29,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39935,30,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39936,31,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39937,32,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39938,33,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39939,34,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39940,35,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39941,36,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39942,37,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39943,38,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39944,39,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39945,40,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39946,41,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39947,42,117,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39948,22,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39949,23,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39950,24,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39951,25,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39952,26,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39953,27,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39954,28,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39955,29,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39956,30,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39957,31,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39958,32,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39959,33,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39960,34,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39961,35,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39962,36,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39963,37,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39964,38,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39965,39,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39966,40,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39967,41,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39968,42,117,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39969,9,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39970,10,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39971,11,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39972,12,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39973,13,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39974,14,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39975,15,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39976,16,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39977,17,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39978,18,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39979,19,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39980,20,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39981,21,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39982,22,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39983,23,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39984,24,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39985,25,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39986,26,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39987,27,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39988,28,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39989,29,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39990,30,117,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39991,9,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39992,10,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39993,11,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39994,12,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39995,13,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39996,14,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39997,15,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39998,16,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(39999,17,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40000,18,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40001,19,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40002,20,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40003,21,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40004,22,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40005,23,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40006,24,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40007,25,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40008,26,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40009,27,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40010,28,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40011,29,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40012,30,117,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40013,9,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40014,10,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40015,11,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40016,12,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40017,13,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40018,14,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40019,15,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40020,16,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40021,17,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40022,18,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40023,19,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40024,20,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40025,21,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40026,22,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40027,23,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40028,24,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40029,25,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40030,26,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40031,27,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40032,28,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40033,29,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40034,30,117,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40035,9,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40036,10,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40037,11,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40038,12,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40039,13,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40040,14,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40041,15,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40042,16,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40043,17,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40044,18,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40045,19,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40046,20,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40047,21,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40048,22,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40049,23,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40050,24,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40051,25,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40052,26,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40053,27,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40054,28,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40055,29,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40056,30,117,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40057,9,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40058,10,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40059,11,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40060,12,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40061,13,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40062,14,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40063,15,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40064,16,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40065,17,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40066,18,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40067,19,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40068,20,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40069,21,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40070,22,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40071,23,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40072,24,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40073,25,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40074,26,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40075,27,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40076,28,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40077,29,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40078,30,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40079,31,117,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40080,23,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40081,24,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40082,25,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40083,26,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40084,27,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40085,28,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40086,29,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40087,30,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40088,31,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40089,32,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40090,33,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40091,34,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40092,35,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40093,36,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40094,37,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40095,38,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40096,39,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40097,40,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40098,41,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40099,42,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40100,43,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40101,44,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40102,45,117,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40103,24,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40104,25,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40105,26,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40106,27,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40107,28,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40108,29,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40109,30,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40110,31,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40111,32,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40112,33,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40113,34,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40114,35,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40115,36,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40116,37,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40117,38,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40118,39,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40119,40,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40120,41,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40121,42,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40122,43,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40123,44,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40124,45,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40125,46,117,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40126,24,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40127,25,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40128,26,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40129,27,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40130,28,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40131,29,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40132,30,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40133,31,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40134,32,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40135,33,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40136,34,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40137,35,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40138,36,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40139,37,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40140,38,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40141,39,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40142,40,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40143,41,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40144,42,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40145,43,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40146,44,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40147,45,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40148,46,117,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40149,24,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40150,25,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40151,26,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40152,27,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40153,28,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40154,29,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40155,30,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40156,31,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40157,32,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40158,33,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40159,34,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40160,35,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40161,36,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40162,37,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40163,38,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40164,39,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40165,40,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40166,41,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40167,42,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40168,43,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40169,44,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40170,45,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40171,46,117,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40172,24,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40173,25,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40174,26,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40175,27,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40176,28,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40177,29,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40178,30,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40179,31,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40180,32,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40181,33,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40182,34,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40183,35,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40184,36,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40185,37,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40186,38,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40187,39,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40188,40,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40189,41,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40190,42,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40191,43,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40192,44,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40193,45,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40194,46,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40195,47,117,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40196,25,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40197,26,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40198,27,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40199,28,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40200,29,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40201,30,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40202,31,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40203,32,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40204,33,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40205,34,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40206,35,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40207,36,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40208,37,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40209,38,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40210,39,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40211,40,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40212,41,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40213,42,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40214,43,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40215,44,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40216,45,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40217,46,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40218,47,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40219,48,117,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40220,25,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40221,26,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40222,27,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40223,28,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40224,29,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40225,30,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40226,31,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40227,32,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40228,33,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40229,34,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40230,35,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40231,36,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40232,37,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40233,38,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40234,39,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40235,40,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40236,41,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40237,42,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40238,43,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40239,44,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40240,45,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40241,46,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40242,47,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40243,48,117,19,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40244,25,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40245,26,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40246,27,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40247,28,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40248,29,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40249,30,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40250,31,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40251,32,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40252,33,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40253,34,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40254,35,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40255,36,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40256,37,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40257,38,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40258,39,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40259,40,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40260,41,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40261,42,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40262,43,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40263,44,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40264,45,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40265,46,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40266,47,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40267,48,117,20,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40268,25,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40269,26,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40270,27,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40271,28,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40272,29,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40273,30,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40274,31,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40275,32,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40276,33,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40277,34,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40278,35,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40279,36,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40280,37,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40281,38,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40282,39,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40283,40,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40284,41,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40285,42,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40286,43,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40287,44,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40288,45,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40289,46,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40290,47,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40291,48,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40292,49,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40293,50,117,21,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40294,26,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40295,27,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40296,28,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40297,29,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40298,30,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40299,31,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40300,32,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40301,33,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40302,34,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40303,35,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40304,36,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40305,37,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40306,38,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40307,39,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40308,40,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40309,41,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40310,42,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40311,43,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40312,44,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40313,45,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40314,46,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40315,47,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40316,48,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40317,49,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40318,50,117,22,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40319,26,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40320,27,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40321,28,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40322,29,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40323,30,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40324,31,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40325,32,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40326,33,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40327,34,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40328,35,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40329,36,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40330,37,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40331,38,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40332,39,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40333,40,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40334,41,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40335,42,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40336,43,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40337,44,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40338,45,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40339,46,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40340,47,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40341,48,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40342,49,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40343,50,117,23,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40344,26,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40345,27,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40346,28,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40347,29,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40348,30,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40349,31,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40350,32,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40351,33,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40352,34,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40353,35,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40354,36,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40355,37,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40356,38,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40357,39,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40358,40,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40359,41,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40360,42,117,24,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40361,26,117,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40362,27,117,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40363,28,117,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40364,29,117,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40365,30,117,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40366,31,117,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40367,32,117,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40368,33,117,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40369,34,117,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40370,35,117,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40371,36,117,25,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40372,26,117,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40373,27,117,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40374,28,117,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40375,29,117,26,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40376,41,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40377,42,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40378,43,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40379,44,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40380,45,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40381,46,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40382,47,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40383,48,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40384,49,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40385,50,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40386,51,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40387,52,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40388,53,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40389,54,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40390,55,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40391,56,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40392,57,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40393,58,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40394,59,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40395,60,118,1,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40396,41,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40397,42,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40398,43,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40399,44,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40400,45,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40401,46,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40402,47,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40403,48,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40404,49,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40405,50,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40406,51,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40407,52,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40408,53,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40409,54,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40410,55,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40411,56,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40412,57,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40413,58,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40414,59,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40415,60,118,2,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40416,42,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40417,43,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40418,44,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40419,45,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40420,46,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40421,47,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40422,48,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40423,49,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40424,50,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40425,51,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40426,52,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40427,53,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40428,54,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40429,55,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40430,56,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40431,57,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40432,58,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40433,59,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40434,60,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40435,61,118,3,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40436,43,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40437,44,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40438,45,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40439,46,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40440,47,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40441,48,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40442,49,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40443,50,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40444,51,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40445,52,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40446,53,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40447,54,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40448,55,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40449,56,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40450,57,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40451,58,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40452,59,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40453,60,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40454,61,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40455,62,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40456,63,118,4,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40457,43,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40458,44,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40459,45,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40460,46,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40461,47,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40462,48,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40463,49,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40464,50,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40465,51,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40466,52,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40467,53,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40468,54,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40469,55,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40470,56,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40471,57,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40472,58,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40473,59,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40474,60,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40475,61,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40476,62,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40477,63,118,5,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40478,31,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40479,32,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40480,33,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40481,34,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40482,35,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40483,36,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40484,37,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40485,38,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40486,39,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40487,40,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40488,41,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40489,42,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40490,43,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40491,44,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40492,45,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40493,46,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40494,47,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40495,48,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40496,49,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40497,50,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40498,51,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40499,52,118,7,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40500,31,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40501,32,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40502,33,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40503,34,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40504,35,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40505,36,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40506,37,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40507,38,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40508,39,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40509,40,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40510,41,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40511,42,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40512,43,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40513,44,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40514,45,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40515,46,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40516,47,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40517,48,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40518,49,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40519,50,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40520,51,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40521,52,118,8,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40522,31,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40523,32,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40524,33,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40525,34,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40526,35,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40527,36,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40528,37,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40529,38,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40530,39,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40531,40,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40532,41,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40533,42,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40534,43,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40535,44,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40536,45,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40537,46,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40538,47,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40539,48,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40540,49,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40541,50,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40542,51,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40543,52,118,9,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40544,31,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40545,32,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40546,33,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40547,34,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40548,35,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40549,36,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40550,37,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40551,38,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40552,39,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40553,40,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40554,41,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40555,42,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40556,43,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40557,44,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40558,45,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40559,46,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40560,47,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40561,48,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40562,49,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40563,50,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40564,51,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40565,52,118,10,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40566,32,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40567,33,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40568,34,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40569,35,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40570,36,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40571,37,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40572,38,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40573,39,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40574,40,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40575,41,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40576,42,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40577,43,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40578,44,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40579,45,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40580,46,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40581,47,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40582,48,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40583,49,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40584,50,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40585,51,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40586,52,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40587,53,118,11,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40588,46,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40589,47,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40590,48,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40591,49,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40592,50,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40593,51,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40594,52,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40595,53,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40596,54,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40597,55,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40598,56,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40599,57,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40600,58,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40601,59,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40602,60,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40603,61,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40604,62,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40605,63,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40606,64,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40607,65,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40608,66,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40609,67,118,12,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40610,47,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40611,48,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40612,49,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40613,50,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40614,51,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40615,52,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40616,53,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40617,54,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40618,55,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40619,56,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40620,57,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40621,58,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40622,59,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40623,60,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40624,61,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40625,62,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40626,63,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40627,64,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40628,65,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40629,66,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40630,67,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40631,68,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40632,69,118,13,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40633,47,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40634,48,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40635,49,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40636,50,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40637,51,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40638,52,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40639,53,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40640,54,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40641,55,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40642,56,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40643,57,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40644,58,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40645,59,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40646,60,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40647,61,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40648,62,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40649,63,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40650,64,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40651,65,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40652,66,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40653,67,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40654,68,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40655,69,118,14,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40656,47,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40657,48,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40658,49,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40659,50,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40660,51,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40661,52,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40662,53,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40663,54,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40664,55,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40665,56,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40666,57,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40667,58,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40668,59,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40669,60,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40670,61,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40671,62,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40672,63,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40673,64,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40674,65,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40675,66,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40676,67,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40677,68,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40678,69,118,15,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40679,48,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40680,49,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40681,50,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40682,51,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40683,52,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40684,53,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40685,54,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40686,55,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40687,56,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40688,57,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40689,58,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40690,59,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40691,60,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40692,61,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40693,62,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40694,63,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40695,64,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40696,65,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40697,66,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40698,67,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40699,68,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40700,69,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40701,70,118,16,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40702,49,118,18,1,'2022-09-02 14:24:07','2022-09-02 14:24:07'),(40703,50,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40704,51,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40705,52,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40706,53,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40707,54,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40708,55,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40709,56,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40710,57,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40711,58,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40712,59,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40713,60,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40714,61,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40715,62,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40716,63,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40717,64,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40718,65,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40719,66,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40720,67,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40721,68,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40722,69,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40723,70,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40724,71,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40725,72,118,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40726,49,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40727,50,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40728,51,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40729,52,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40730,53,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40731,54,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40732,55,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40733,56,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40734,57,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40735,58,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40736,59,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40737,60,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40738,61,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40739,62,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40740,63,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40741,64,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40742,65,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40743,66,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40744,67,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40745,68,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40746,69,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40747,70,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40748,71,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40749,72,118,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40750,49,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40751,50,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40752,51,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40753,52,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40754,53,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40755,54,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40756,55,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40757,56,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40758,57,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40759,58,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40760,59,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40761,60,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40762,61,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40763,62,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40764,63,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40765,64,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40766,65,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40767,66,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40768,67,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40769,68,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40770,69,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40771,70,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40772,71,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40773,72,118,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40774,51,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40775,52,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40776,53,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40777,54,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40778,55,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40779,56,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40780,57,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40781,58,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40782,59,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40783,60,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40784,61,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40785,62,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40786,63,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40787,64,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40788,65,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40789,66,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40790,67,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40791,68,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40792,69,118,21,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40793,51,118,22,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40794,52,118,22,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40795,53,118,22,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40796,54,118,22,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40797,55,118,22,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40798,56,118,22,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40799,57,118,22,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40800,58,118,22,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40801,59,118,22,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40802,61,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40803,62,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40804,63,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40805,64,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40806,65,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40807,66,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40808,67,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40809,68,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40810,69,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40811,70,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40812,71,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40813,72,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40814,73,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40815,74,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40816,75,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40817,76,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40818,77,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40819,78,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40820,79,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40821,80,119,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40822,61,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40823,62,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40824,63,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40825,64,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40826,65,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40827,66,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40828,67,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40829,68,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40830,69,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40831,70,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40832,71,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40833,72,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40834,73,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40835,74,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40836,75,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40837,76,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40838,77,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40839,78,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40840,79,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40841,80,119,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40842,62,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40843,63,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40844,64,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40845,65,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40846,66,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40847,67,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40848,68,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40849,69,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40850,70,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40851,71,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40852,72,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40853,73,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40854,74,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40855,75,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40856,76,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40857,77,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40858,78,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40859,79,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40860,80,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40861,81,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40862,82,119,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40863,64,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40864,65,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40865,66,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40866,67,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40867,68,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40868,69,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40869,70,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40870,71,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40871,72,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40872,73,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40873,74,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40874,75,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40875,76,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40876,77,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40877,78,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40878,79,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40879,80,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40880,81,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40881,82,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40882,83,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40883,84,119,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40884,64,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40885,65,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40886,66,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40887,67,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40888,68,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40889,69,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40890,70,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40891,71,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40892,72,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40893,73,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40894,74,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40895,75,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40896,76,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40897,77,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40898,78,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40899,79,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40900,80,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40901,81,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40902,82,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40903,83,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40904,84,119,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40905,53,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40906,54,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40907,55,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40908,56,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40909,57,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40910,58,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40911,59,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40912,60,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40913,61,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40914,62,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40915,63,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40916,64,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40917,65,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40918,66,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40919,67,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40920,68,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40921,69,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40922,70,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40923,71,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40924,72,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40925,73,119,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40926,53,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40927,54,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40928,55,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40929,56,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40930,57,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40931,58,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40932,59,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40933,60,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40934,61,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40935,62,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40936,63,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40937,64,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40938,65,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40939,66,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40940,67,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40941,68,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40942,69,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40943,70,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40944,71,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40945,72,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40946,73,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40947,74,119,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40948,53,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40949,54,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40950,55,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40951,56,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40952,57,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40953,58,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40954,59,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40955,60,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40956,61,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40957,62,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40958,63,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40959,64,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40960,65,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40961,66,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40962,67,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40963,68,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40964,69,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40965,70,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40966,71,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40967,72,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40968,73,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40969,74,119,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40970,53,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40971,54,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40972,55,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40973,56,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40974,57,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40975,58,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40976,59,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40977,60,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40978,61,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40979,62,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40980,63,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40981,64,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40982,65,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40983,66,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40984,67,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40985,68,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40986,69,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40987,70,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40988,71,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40989,72,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40990,73,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40991,74,119,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40992,54,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40993,55,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40994,56,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40995,57,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40996,58,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40997,59,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40998,60,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(40999,61,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41000,62,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41001,63,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41002,64,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41003,65,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41004,66,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41005,67,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41006,68,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41007,69,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41008,70,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41009,71,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41010,72,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41011,73,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41012,74,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41013,75,119,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41014,68,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41015,69,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41016,70,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41017,71,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41018,72,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41019,73,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41020,74,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41021,75,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41022,76,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41023,77,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41024,78,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41025,79,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41026,80,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41027,81,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41028,82,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41029,83,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41030,84,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41031,85,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41032,86,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41033,87,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41034,88,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41035,89,119,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41036,70,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41037,71,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41038,72,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41039,73,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41040,74,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41041,75,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41042,76,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41043,77,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41044,78,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41045,79,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41046,80,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41047,81,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41048,82,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41049,83,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41050,84,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41051,85,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41052,86,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41053,87,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41054,88,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41055,89,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41056,90,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41057,91,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41058,92,119,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41059,70,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41060,71,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41061,72,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41062,73,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41063,74,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41064,75,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41065,76,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41066,77,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41067,78,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41068,79,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41069,80,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41070,81,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41071,82,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41072,83,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41073,84,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41074,85,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41075,86,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41076,87,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41077,88,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41078,89,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41079,90,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41080,91,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41081,92,119,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41082,70,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41083,71,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41084,72,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41085,73,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41086,74,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41087,75,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41088,76,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41089,77,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41090,78,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41091,79,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41092,80,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41093,81,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41094,82,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41095,83,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41096,84,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41097,85,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41098,86,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41099,87,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41100,88,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41101,89,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41102,90,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41103,91,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41104,92,119,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41105,71,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41106,72,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41107,73,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41108,74,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41109,75,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41110,76,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41111,77,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41112,78,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41113,79,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41114,80,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41115,81,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41116,82,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41117,83,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41118,84,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41119,85,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41120,86,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41121,87,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41122,88,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41123,89,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41124,90,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41125,91,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41126,92,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41127,93,119,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41128,73,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41129,74,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41130,75,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41131,76,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41132,77,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41133,78,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41134,79,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41135,80,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41136,81,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41137,82,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41138,83,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41139,84,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41140,85,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41141,86,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41142,87,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41143,88,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41144,89,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41145,90,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41146,91,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41147,92,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41148,93,119,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41149,73,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41150,74,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41151,75,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41152,76,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41153,77,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41154,78,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41155,79,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41156,80,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41157,81,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41158,82,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41159,83,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41160,84,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41161,85,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41162,86,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41163,87,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41164,88,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41165,89,119,19,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41166,73,119,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41167,74,119,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41168,75,119,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41169,76,119,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41170,77,119,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41171,78,119,20,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41172,81,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41173,82,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41174,83,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41175,84,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41176,85,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41177,86,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41178,87,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41179,88,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41180,89,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41181,90,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41182,91,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41183,92,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41184,93,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41185,94,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41186,95,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41187,96,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41188,97,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41189,98,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41190,99,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41191,100,120,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41192,81,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41193,82,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41194,83,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41195,84,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41196,85,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41197,86,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41198,87,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41199,88,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41200,89,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41201,90,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41202,91,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41203,92,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41204,93,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41205,94,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41206,95,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41207,96,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41208,97,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41209,98,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41210,99,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41211,100,120,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41212,83,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41213,84,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41214,85,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41215,86,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41216,87,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41217,88,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41218,89,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41219,90,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41220,91,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41221,92,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41222,93,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41223,94,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41224,95,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41225,96,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41226,97,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41227,98,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41228,99,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41229,100,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41230,101,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41231,102,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41232,103,120,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41233,85,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41234,86,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41235,87,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41236,88,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41237,89,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41238,90,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41239,91,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41240,92,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41241,93,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41242,94,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41243,95,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41244,96,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41245,97,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41246,98,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41247,99,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41248,100,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41249,101,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41250,102,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41251,103,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41252,104,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41253,105,120,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41254,85,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41255,86,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41256,87,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41257,88,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41258,89,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41259,90,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41260,91,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41261,92,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41262,93,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41263,94,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41264,95,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41265,96,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41266,97,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41267,98,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41268,99,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41269,100,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41270,101,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41271,102,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41272,103,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41273,104,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41274,105,120,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41275,74,120,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41276,75,120,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41277,76,120,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41278,77,120,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41279,78,120,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41280,79,120,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41281,80,120,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41282,81,120,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41283,75,120,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41284,76,120,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41285,77,120,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41286,78,120,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41287,79,120,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41288,80,120,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41289,81,120,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41290,82,120,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41291,75,120,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41292,76,120,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41293,77,120,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41294,78,120,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41295,79,120,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41296,80,120,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41297,81,120,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41298,82,120,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41299,75,120,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41300,76,120,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41301,77,120,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41302,78,120,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41303,79,120,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41304,80,120,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41305,81,120,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41306,82,120,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41307,76,120,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41308,77,120,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41309,78,120,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41310,79,120,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41311,80,120,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41312,81,120,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41313,82,120,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41314,83,120,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41315,90,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41316,91,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41317,92,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41318,93,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41319,94,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41320,95,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41321,96,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41322,97,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41323,98,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41324,99,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41325,100,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41326,101,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41327,102,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41328,103,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41329,104,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41330,105,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41331,106,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41332,107,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41333,108,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41334,109,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41335,110,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41336,111,120,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41337,93,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41338,94,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41339,95,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41340,96,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41341,97,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41342,98,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41343,99,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41344,100,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41345,101,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41346,102,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41347,103,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41348,104,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41349,105,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41350,106,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41351,107,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41352,108,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41353,109,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41354,110,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41355,111,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41356,112,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41357,113,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41358,114,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41359,115,120,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41360,93,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41361,94,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41362,95,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41363,96,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41364,97,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41365,98,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41366,99,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41367,100,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41368,101,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41369,102,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41370,103,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41371,104,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41372,105,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41373,106,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41374,107,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41375,108,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41376,109,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41377,110,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41378,111,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41379,112,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41380,113,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41381,114,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41382,115,120,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41383,93,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41384,94,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41385,95,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41386,96,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41387,97,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41388,98,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41389,99,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41390,100,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41391,101,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41392,102,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41393,103,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41394,104,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41395,105,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41396,106,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41397,107,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41398,108,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41399,109,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41400,110,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41401,111,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41402,112,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41403,113,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41404,114,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41405,115,120,15,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41406,94,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41407,95,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41408,96,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41409,97,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41410,98,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41411,99,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41412,100,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41413,101,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41414,102,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41415,103,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41416,104,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41417,105,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41418,106,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41419,107,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41420,108,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41421,109,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41422,110,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41423,111,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41424,112,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41425,113,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41426,114,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41427,115,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41428,116,120,16,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41429,94,120,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41430,95,120,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41431,96,120,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41432,97,120,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41433,98,120,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41434,99,120,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41435,100,120,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41436,101,120,18,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41437,101,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41438,102,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41439,103,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41440,104,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41441,105,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41442,106,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41443,107,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41444,108,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41445,109,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41446,110,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41447,111,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41448,112,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41449,113,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41450,114,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41451,115,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41452,116,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41453,117,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41454,118,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41455,119,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41456,120,121,1,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41457,101,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41458,102,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41459,103,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41460,104,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41461,105,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41462,106,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41463,107,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41464,108,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41465,109,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41466,110,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41467,111,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41468,112,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41469,113,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41470,114,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41471,115,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41472,116,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41473,117,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41474,118,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41475,119,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41476,120,121,2,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41477,104,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41478,105,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41479,106,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41480,107,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41481,108,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41482,109,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41483,110,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41484,111,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41485,112,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41486,113,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41487,114,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41488,115,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41489,116,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41490,117,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41491,118,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41492,119,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41493,120,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41494,121,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41495,122,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41496,123,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41497,124,121,3,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41498,106,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41499,107,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41500,108,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41501,109,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41502,110,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41503,111,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41504,112,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41505,113,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41506,114,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41507,115,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41508,116,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41509,117,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41510,118,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41511,119,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41512,120,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41513,121,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41514,122,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41515,123,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41516,124,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41517,125,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41518,126,121,4,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41519,106,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41520,107,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41521,108,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41522,109,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41523,110,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41524,111,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41525,112,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41526,113,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41527,114,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41528,115,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41529,116,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41530,117,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41531,118,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41532,119,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41533,120,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41534,121,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41535,122,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41536,123,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41537,124,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41538,125,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41539,126,121,5,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41540,82,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41541,83,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41542,84,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41543,85,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41544,86,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41545,87,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41546,88,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41547,89,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41548,90,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41549,91,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41550,92,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41551,93,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41552,94,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41553,95,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41554,96,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41555,97,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41556,98,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41557,99,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41558,100,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41559,101,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41560,102,121,7,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41561,83,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41562,84,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41563,85,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41564,86,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41565,87,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41566,88,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41567,89,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41568,90,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41569,91,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41570,92,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41571,93,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41572,94,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41573,95,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41574,96,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41575,97,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41576,98,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41577,99,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41578,100,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41579,101,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41580,102,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41581,103,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41582,104,121,8,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41583,83,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41584,84,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41585,85,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41586,86,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41587,87,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41588,88,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41589,89,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41590,90,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41591,91,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41592,92,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41593,93,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41594,94,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41595,95,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41596,96,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41597,97,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41598,98,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41599,99,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41600,100,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41601,101,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41602,102,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41603,103,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41604,104,121,9,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41605,83,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41606,84,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41607,85,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41608,86,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41609,87,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41610,88,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41611,89,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41612,90,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41613,91,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41614,92,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41615,93,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41616,94,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41617,95,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41618,96,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41619,97,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41620,98,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41621,99,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41622,100,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41623,101,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41624,102,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41625,103,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41626,104,121,10,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41627,84,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41628,85,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41629,86,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41630,87,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41631,88,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41632,89,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41633,90,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41634,91,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41635,92,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41636,93,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41637,94,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41638,95,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41639,96,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41640,97,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41641,98,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41642,99,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41643,100,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41644,101,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41645,102,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41646,103,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41647,104,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41648,105,121,11,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41649,112,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41650,113,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41651,114,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41652,115,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41653,116,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41654,117,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41655,118,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41656,119,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41657,120,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41658,121,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41659,122,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41660,123,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41661,124,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41662,125,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41663,126,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41664,127,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41665,128,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41666,129,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41667,130,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41668,131,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41669,132,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41670,133,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41671,134,121,12,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41672,116,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41673,117,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41674,118,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41675,119,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41676,120,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41677,121,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41678,122,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41679,123,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41680,124,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41681,125,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41682,126,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41683,127,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41684,128,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41685,129,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41686,130,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41687,131,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41688,132,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41689,133,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41690,134,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41691,135,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41692,136,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41693,137,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41694,138,121,13,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41695,116,121,14,1,'2022-09-02 14:24:08','2022-09-02 14:24:08'),(41696,117,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41697,118,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41698,119,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41699,120,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41700,121,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41701,122,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41702,123,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41703,124,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41704,125,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41705,126,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41706,127,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41707,128,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41708,129,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41709,130,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41710,131,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41711,132,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41712,133,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41713,134,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41714,135,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41715,136,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41716,137,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41717,138,121,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41718,116,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41719,117,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41720,118,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41721,119,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41722,120,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41723,121,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41724,122,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41725,123,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41726,124,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41727,125,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41728,126,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41729,127,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41730,128,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41731,129,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41732,130,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41733,131,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41734,132,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41735,133,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41736,134,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41737,135,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41738,136,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41739,137,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41740,138,121,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41741,121,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41742,122,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41743,123,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41744,124,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41745,125,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41746,126,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41747,127,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41748,128,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41749,129,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41750,130,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41751,131,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41752,132,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41753,133,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41754,134,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41755,135,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41756,136,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41757,137,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41758,138,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41759,139,122,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41760,121,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41761,122,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41762,123,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41763,124,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41764,125,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41765,126,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41766,127,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41767,128,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41768,129,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41769,130,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41770,131,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41771,132,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41772,133,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41773,134,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41774,135,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41775,136,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41776,137,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41777,138,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41778,139,122,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41779,125,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41780,126,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41781,127,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41782,128,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41783,129,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41784,130,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41785,131,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41786,132,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41787,133,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41788,134,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41789,135,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41790,136,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41791,137,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41792,138,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41793,139,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41794,140,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41795,141,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41796,142,122,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41797,127,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41798,128,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41799,129,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41800,130,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41801,131,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41802,132,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41803,133,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41804,134,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41805,135,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41806,136,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41807,137,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41808,138,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41809,139,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41810,140,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41811,141,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41812,142,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41813,143,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41814,144,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41815,145,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41816,146,122,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41817,127,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41818,128,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41819,129,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41820,130,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41821,131,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41822,132,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41823,133,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41824,134,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41825,135,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41826,136,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41827,137,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41828,138,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41829,139,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41830,140,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41831,141,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41832,142,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41833,143,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41834,144,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41835,145,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41836,146,122,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41837,103,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41838,104,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41839,105,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41840,106,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41841,107,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41842,108,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41843,109,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41844,110,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41845,111,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41846,112,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41847,113,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41848,114,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41849,115,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41850,116,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41851,117,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41852,118,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41853,119,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41854,120,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41855,121,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41856,122,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41857,123,122,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41858,105,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41859,106,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41860,107,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41861,108,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41862,109,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41863,110,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41864,111,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41865,112,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41866,113,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41867,114,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41868,115,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41869,116,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41870,117,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41871,118,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41872,119,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41873,120,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41874,121,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41875,122,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41876,123,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41877,124,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41878,125,122,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41879,105,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41880,106,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41881,107,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41882,108,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41883,109,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41884,110,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41885,111,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41886,112,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41887,113,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41888,114,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41889,115,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41890,116,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41891,117,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41892,118,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41893,119,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41894,120,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41895,121,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41896,122,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41897,123,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41898,124,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41899,125,122,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41900,105,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41901,106,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41902,107,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41903,108,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41904,109,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41905,110,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41906,111,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41907,112,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41908,113,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41909,114,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41910,115,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41911,116,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41912,117,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41913,118,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41914,119,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41915,120,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41916,121,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41917,122,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41918,123,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41919,124,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41920,125,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41921,126,122,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41922,106,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41923,107,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41924,108,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41925,109,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41926,110,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41927,111,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41928,112,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41929,113,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41930,114,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41931,115,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41932,116,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41933,117,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41934,118,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41935,119,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41936,120,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41937,121,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41938,122,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41939,123,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41940,124,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41941,125,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41942,126,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41943,127,122,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41944,135,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41945,136,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41946,137,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41947,138,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41948,139,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41949,140,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41950,141,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41951,142,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41952,143,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41953,144,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41954,145,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41955,146,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41956,147,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41957,148,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41958,149,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41959,150,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41960,151,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41961,152,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41962,153,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41963,154,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41964,155,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41965,156,122,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41966,139,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41967,140,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41968,141,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41969,142,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41970,143,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41971,144,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41972,145,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41973,146,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41974,147,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41975,148,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41976,149,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41977,150,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41978,151,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41979,152,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41980,153,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41981,154,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41982,155,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41983,156,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41984,157,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41985,158,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41986,159,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41987,160,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41988,161,122,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41989,139,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41990,140,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41991,141,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41992,142,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41993,143,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41994,144,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41995,145,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41996,146,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41997,147,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41998,148,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(41999,149,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42000,150,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42001,151,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42002,152,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42003,153,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42004,154,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42005,155,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42006,156,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42007,157,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42008,158,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42009,159,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42010,160,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42011,161,122,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42012,139,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42013,140,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42014,141,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42015,142,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42016,143,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42017,144,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42018,145,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42019,146,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42020,147,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42021,148,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42022,149,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42023,150,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42024,151,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42025,152,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42026,153,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42027,154,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42028,155,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42029,156,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42030,157,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42031,158,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42032,159,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42033,160,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42034,161,122,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42035,140,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42036,141,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42037,142,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42038,143,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42039,144,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42040,145,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42041,146,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42042,147,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42043,148,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42044,149,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42045,150,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42046,151,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42047,152,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42048,153,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42049,154,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42050,155,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42051,156,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42052,157,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42053,158,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42054,159,123,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42055,140,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42056,141,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42057,142,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42058,143,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42059,144,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42060,145,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42061,146,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42062,147,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42063,148,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42064,149,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42065,150,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42066,151,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42067,152,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42068,153,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42069,154,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42070,155,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42071,156,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42072,157,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42073,158,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42074,159,123,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42075,143,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42076,144,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42077,145,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42078,146,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42079,147,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42080,148,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42081,149,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42082,150,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42083,151,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42084,152,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42085,153,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42086,154,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42087,155,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42088,156,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42089,157,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42090,158,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42091,159,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42092,160,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42093,161,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42094,162,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42095,163,123,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42096,147,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42097,148,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42098,149,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42099,150,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42100,151,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42101,152,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42102,153,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42103,154,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42104,155,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42105,156,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42106,157,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42107,158,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42108,159,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42109,160,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42110,161,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42111,162,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42112,163,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42113,164,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42114,165,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42115,166,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42116,167,123,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42117,147,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42118,148,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42119,149,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42120,150,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42121,151,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42122,152,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42123,153,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42124,154,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42125,155,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42126,156,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42127,157,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42128,158,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42129,159,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42130,160,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42131,161,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42132,162,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42133,163,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42134,164,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42135,165,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42136,166,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42137,167,123,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42138,124,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42139,125,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42140,126,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42141,127,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42142,128,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42143,129,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42144,130,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42145,131,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42146,132,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42147,133,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42148,134,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42149,135,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42150,136,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42151,137,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42152,138,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42153,139,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42154,140,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42155,141,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42156,142,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42157,143,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42158,144,123,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42159,126,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42160,127,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42161,128,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42162,129,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42163,130,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42164,131,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42165,132,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42166,133,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42167,134,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42168,135,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42169,136,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42170,137,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42171,138,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42172,139,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42173,140,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42174,141,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42175,142,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42176,143,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42177,144,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42178,145,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42179,146,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42180,147,123,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42181,126,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42182,127,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42183,128,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42184,129,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42185,130,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42186,131,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42187,132,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42188,133,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42189,134,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42190,135,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42191,136,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42192,137,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42193,138,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42194,139,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42195,140,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42196,141,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42197,142,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42198,143,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42199,144,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42200,145,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42201,146,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42202,147,123,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42203,127,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42204,128,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42205,129,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42206,130,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42207,131,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42208,132,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42209,133,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42210,134,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42211,135,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42212,136,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42213,137,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42214,138,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42215,139,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42216,140,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42217,141,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42218,142,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42219,143,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42220,144,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42221,145,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42222,146,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42223,147,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42224,148,123,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42225,128,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42226,129,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42227,130,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42228,131,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42229,132,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42230,133,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42231,134,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42232,135,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42233,136,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42234,137,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42235,138,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42236,139,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42237,140,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42238,141,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42239,142,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42240,143,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42241,144,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42242,145,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42243,146,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42244,147,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42245,148,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42246,149,123,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42247,157,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42248,158,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42249,159,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42250,160,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42251,161,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42252,162,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42253,163,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42254,164,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42255,165,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42256,166,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42257,167,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42258,168,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42259,169,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42260,170,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42261,171,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42262,172,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42263,173,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42264,174,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42265,175,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42266,176,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42267,177,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42268,178,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42269,179,123,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42270,162,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42271,163,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42272,164,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42273,165,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42274,166,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42275,167,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42276,168,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42277,169,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42278,170,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42279,171,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42280,172,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42281,173,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42282,174,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42283,175,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42284,176,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42285,177,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42286,178,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42287,179,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42288,180,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42289,181,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42290,182,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42291,183,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42292,184,123,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42293,162,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42294,163,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42295,164,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42296,165,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42297,166,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42298,167,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42299,168,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42300,169,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42301,170,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42302,171,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42303,172,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42304,173,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42305,174,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42306,175,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42307,176,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42308,177,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42309,178,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42310,179,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42311,180,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42312,181,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42313,182,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42314,183,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42315,184,123,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42316,162,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42317,163,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42318,164,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42319,165,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42320,166,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42321,167,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42322,168,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42323,169,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42324,170,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42325,171,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42326,172,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42327,173,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42328,174,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42329,175,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42330,176,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42331,177,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42332,178,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42333,179,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42334,180,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42335,181,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42336,182,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42337,183,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42338,184,123,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42339,160,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42340,161,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42341,162,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42342,163,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42343,164,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42344,165,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42345,166,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42346,167,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42347,168,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42348,169,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42349,170,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42350,171,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42351,172,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42352,173,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42353,174,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42354,175,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42355,176,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42356,177,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42357,178,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42358,179,124,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42359,160,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42360,161,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42361,162,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42362,163,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42363,164,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42364,165,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42365,166,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42366,167,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42367,168,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42368,169,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42369,170,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42370,171,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42371,172,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42372,173,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42373,174,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42374,175,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42375,176,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42376,177,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42377,178,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42378,179,124,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42379,164,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42380,165,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42381,166,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42382,167,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42383,168,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42384,169,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42385,170,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42386,171,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42387,172,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42388,173,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42389,174,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42390,175,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42391,176,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42392,177,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42393,178,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42394,179,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42395,180,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42396,181,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42397,182,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42398,183,124,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42399,168,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42400,169,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42401,170,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42402,171,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42403,172,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42404,173,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42405,174,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42406,175,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42407,176,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42408,177,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42409,178,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42410,179,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42411,180,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42412,181,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42413,182,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42414,183,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42415,184,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42416,185,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42417,186,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42418,187,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42419,188,124,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42420,168,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42421,169,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42422,170,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42423,171,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42424,172,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42425,173,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42426,174,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42427,175,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42428,176,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42429,177,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42430,178,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42431,179,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42432,180,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42433,181,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42434,182,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42435,183,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42436,184,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42437,185,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42438,186,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42439,187,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42440,188,124,5,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42441,145,124,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42442,146,124,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42443,147,124,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42444,148,124,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42445,149,124,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42446,150,124,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42447,151,124,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42448,152,124,7,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42449,148,124,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42450,149,124,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42451,150,124,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42452,151,124,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42453,152,124,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42454,153,124,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42455,154,124,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42456,155,124,8,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42457,148,124,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42458,149,124,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42459,150,124,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42460,151,124,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42461,152,124,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42462,153,124,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42463,154,124,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42464,155,124,9,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42465,149,124,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42466,150,124,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42467,151,124,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42468,152,124,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42469,153,124,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42470,154,124,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42471,155,124,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42472,156,124,10,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42473,150,124,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42474,151,124,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42475,152,124,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42476,153,124,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42477,154,124,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42478,155,124,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42479,156,124,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42480,157,124,11,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42481,180,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42482,181,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42483,182,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42484,183,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42485,184,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42486,185,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42487,186,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42488,187,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42489,188,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42490,189,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42491,190,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42492,191,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42493,192,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42494,193,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42495,194,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42496,195,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42497,196,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42498,197,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42499,198,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42500,199,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42501,200,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42502,201,124,12,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42503,185,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42504,186,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42505,187,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42506,188,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42507,189,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42508,190,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42509,191,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42510,192,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42511,193,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42512,194,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42513,195,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42514,196,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42515,197,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42516,198,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42517,199,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42518,200,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42519,201,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42520,202,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42521,203,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42522,204,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42523,205,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42524,206,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42525,207,124,13,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42526,185,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42527,186,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42528,187,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42529,188,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42530,189,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42531,190,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42532,191,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42533,192,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42534,193,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42535,194,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42536,195,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42537,196,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42538,197,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42539,198,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42540,199,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42541,200,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42542,201,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42543,202,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42544,203,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42545,204,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42546,205,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42547,206,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42548,207,124,14,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42549,185,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42550,186,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42551,187,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42552,188,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42553,189,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42554,190,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42555,191,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42556,192,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42557,193,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42558,194,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42559,195,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42560,196,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42561,197,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42562,198,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42563,199,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42564,200,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42565,201,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42566,202,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42567,203,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42568,204,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42569,205,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42570,206,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42571,207,124,15,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42572,117,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42573,118,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42574,119,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42575,120,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42576,121,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42577,122,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42578,123,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42579,124,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42580,125,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42581,126,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42582,127,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42583,128,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42584,129,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42585,130,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42586,131,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42587,132,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42588,133,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42589,134,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42590,135,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42591,136,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42592,137,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42593,138,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42594,139,124,16,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42595,180,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42596,181,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42597,182,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42598,183,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42599,184,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42600,185,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42601,186,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42602,187,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42603,188,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42604,189,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42605,190,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42606,191,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42607,192,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42608,193,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42609,194,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42610,195,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42611,196,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42612,197,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42613,198,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42614,199,125,1,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42615,180,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42616,181,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42617,182,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42618,183,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42619,184,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42620,185,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42621,186,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42622,187,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42623,188,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42624,189,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42625,190,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42626,191,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42627,192,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42628,193,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42629,194,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42630,195,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42631,196,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42632,197,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42633,198,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42634,199,125,2,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42635,184,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42636,185,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42637,186,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42638,187,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42639,188,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42640,189,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42641,190,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42642,191,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42643,192,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42644,193,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42645,194,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42646,195,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42647,196,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42648,197,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42649,198,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42650,199,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42651,200,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42652,201,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42653,202,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42654,203,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42655,204,125,3,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42656,189,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42657,190,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42658,191,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42659,192,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42660,193,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42661,194,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42662,195,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42663,196,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42664,197,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42665,198,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42666,199,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42667,200,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42668,201,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42669,202,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42670,203,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42671,204,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42672,205,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42673,206,125,4,1,'2022-09-02 14:24:09','2022-09-02 14:24:09'),(42674,207,125,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42675,208,125,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42676,209,125,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42677,189,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42678,190,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42679,191,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42680,192,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42681,193,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42682,194,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42683,195,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42684,196,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42685,197,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42686,198,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42687,199,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42688,200,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42689,201,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42690,202,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42691,203,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42692,204,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42693,205,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42694,206,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42695,207,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42696,208,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42697,209,125,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42698,153,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42699,154,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42700,155,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42701,156,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42702,157,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42703,158,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42704,159,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42705,160,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42706,161,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42707,162,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42708,163,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42709,164,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42710,165,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42711,166,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42712,167,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42713,168,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42714,169,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42715,170,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42716,171,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42717,172,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42718,173,125,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42719,156,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42720,157,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42721,158,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42722,159,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42723,160,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42724,161,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42725,162,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42726,163,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42727,164,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42728,165,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42729,166,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42730,167,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42731,168,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42732,169,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42733,170,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42734,171,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42735,172,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42736,173,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42737,174,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42738,175,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42739,176,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42740,177,125,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42741,156,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42742,157,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42743,158,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42744,159,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42745,160,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42746,161,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42747,162,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42748,163,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42749,164,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42750,165,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42751,166,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42752,167,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42753,168,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42754,169,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42755,170,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42756,171,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42757,172,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42758,173,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42759,174,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42760,175,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42761,176,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42762,177,125,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42763,157,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42764,158,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42765,159,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42766,160,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42767,161,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42768,162,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42769,163,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42770,164,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42771,165,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42772,166,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42773,167,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42774,168,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42775,169,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42776,170,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42777,171,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42778,172,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42779,173,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42780,174,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42781,175,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42782,176,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42783,177,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42784,178,125,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42785,158,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42786,159,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42787,160,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42788,161,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42789,162,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42790,163,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42791,164,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42792,165,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42793,166,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42794,167,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42795,168,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42796,169,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42797,170,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42798,171,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42799,172,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42800,173,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42801,174,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42802,175,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42803,176,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42804,177,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42805,178,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42806,179,125,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42807,202,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42808,203,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42809,204,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42810,205,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42811,206,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42812,207,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42813,208,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42814,209,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42815,210,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42816,211,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42817,212,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42818,213,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42819,214,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42820,215,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42821,216,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42822,217,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42823,218,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42824,219,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42825,220,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42826,221,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42827,222,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42828,223,125,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42829,208,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42830,209,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42831,210,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42832,211,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42833,212,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42834,213,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42835,214,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42836,215,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42837,216,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42838,217,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42839,218,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42840,219,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42841,220,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42842,221,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42843,222,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42844,223,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42845,224,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42846,225,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42847,226,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42848,227,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42849,228,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42850,229,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42851,230,125,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42852,208,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42853,209,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42854,210,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42855,211,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42856,212,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42857,213,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42858,214,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42859,215,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42860,216,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42861,217,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42862,218,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42863,219,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42864,220,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42865,221,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42866,222,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42867,223,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42868,224,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42869,225,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42870,226,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42871,227,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42872,228,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42873,229,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42874,230,125,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42875,208,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42876,209,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42877,210,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42878,211,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42879,212,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42880,213,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42881,214,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42882,215,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42883,216,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42884,217,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42885,218,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42886,219,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42887,220,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42888,221,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42889,222,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42890,223,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42891,224,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42892,225,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42893,226,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42894,227,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42895,228,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42896,229,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42897,230,125,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42898,140,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42899,141,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42900,142,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42901,143,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42902,144,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42903,145,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42904,146,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42905,147,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42906,148,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42907,149,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42908,150,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42909,151,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42910,152,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42911,153,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42912,154,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42913,155,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42914,156,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42915,157,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42916,158,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42917,159,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42918,160,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42919,161,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42920,162,125,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42921,108,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42922,109,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42923,110,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42924,111,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42925,112,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42926,113,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42927,114,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42928,115,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42929,116,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42930,117,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42931,118,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42932,119,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42933,120,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42934,121,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42935,122,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42936,123,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42937,124,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42938,125,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42939,126,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42940,127,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42941,128,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42942,129,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42943,130,125,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42944,90,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42945,91,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42946,92,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42947,93,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42948,94,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42949,95,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42950,96,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42951,97,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42952,98,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42953,99,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42954,100,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42955,101,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42956,102,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42957,103,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42958,104,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42959,105,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42960,106,125,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42961,79,125,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42962,80,125,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42963,81,125,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42964,82,125,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42965,83,125,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42966,84,125,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42967,200,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42968,201,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42969,202,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42970,203,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42971,204,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42972,205,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42973,206,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42974,207,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42975,208,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42976,209,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42977,210,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42978,211,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42979,212,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42980,213,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42981,214,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42982,215,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42983,216,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42984,217,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42985,218,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42986,219,126,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42987,200,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42988,201,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42989,202,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42990,203,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42991,204,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42992,205,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42993,206,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42994,207,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42995,208,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42996,209,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42997,210,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42998,211,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(42999,212,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43000,213,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43001,214,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43002,215,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43003,216,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43004,217,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43005,218,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43006,219,126,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43007,205,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43008,206,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43009,207,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43010,208,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43011,209,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43012,210,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43013,211,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43014,212,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43015,213,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43016,214,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43017,215,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43018,216,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43019,217,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43020,218,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43021,219,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43022,220,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43023,221,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43024,222,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43025,223,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43026,224,126,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43027,210,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43028,211,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43029,212,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43030,213,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43031,214,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43032,215,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43033,216,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43034,217,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43035,218,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43036,219,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43037,220,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43038,221,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43039,222,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43040,223,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43041,224,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43042,225,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43043,226,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43044,227,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43045,228,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43046,229,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43047,230,126,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43048,210,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43049,211,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43050,212,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43051,213,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43052,214,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43053,215,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43054,216,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43055,217,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43056,218,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43057,219,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43058,220,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43059,221,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43060,222,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43061,223,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43062,224,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43063,225,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43064,226,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43065,227,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43066,228,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43067,229,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43068,230,126,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43069,174,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43070,175,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43071,176,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43072,177,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43073,178,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43074,179,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43075,180,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43076,181,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43077,182,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43078,183,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43079,184,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43080,185,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43081,186,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43082,187,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43083,188,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43084,189,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43085,190,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43086,191,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43087,192,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43088,193,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43089,194,126,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43090,178,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43091,179,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43092,180,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43093,181,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43094,182,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43095,183,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43096,184,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43097,185,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43098,186,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43099,187,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43100,188,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43101,189,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43102,190,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43103,191,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43104,192,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43105,193,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43106,194,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43107,195,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43108,196,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43109,197,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43110,198,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43111,199,126,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43112,178,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43113,179,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43114,180,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43115,181,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43116,182,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43117,183,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43118,184,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43119,185,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43120,186,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43121,187,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43122,188,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43123,189,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43124,190,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43125,191,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43126,192,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43127,193,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43128,194,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43129,195,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43130,196,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43131,197,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43132,198,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43133,199,126,9,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43134,179,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43135,180,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43136,181,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43137,182,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43138,183,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43139,184,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43140,185,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43141,186,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43142,187,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43143,188,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43144,189,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43145,190,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43146,191,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43147,192,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43148,193,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43149,194,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43150,195,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43151,196,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43152,197,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43153,198,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43154,199,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43155,200,126,10,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43156,180,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43157,181,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43158,182,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43159,183,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43160,184,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43161,185,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43162,186,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43163,187,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43164,188,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43165,189,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43166,190,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43167,191,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43168,192,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43169,193,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43170,194,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43171,195,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43172,196,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43173,197,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43174,198,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43175,199,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43176,200,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43177,201,126,11,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43178,224,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43179,225,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43180,226,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43181,227,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43182,228,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43183,229,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43184,230,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43185,231,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43186,232,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43187,233,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43188,234,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43189,235,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43190,236,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43191,237,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43192,238,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43193,239,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43194,240,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43195,241,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43196,242,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43197,243,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43198,244,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43199,245,126,12,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43200,231,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43201,232,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43202,233,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43203,234,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43204,235,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43205,236,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43206,237,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43207,238,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43208,239,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43209,240,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43210,241,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43211,242,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43212,243,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43213,244,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43214,245,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43215,246,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43216,247,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43217,248,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43218,249,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43219,250,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43220,251,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43221,252,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43222,253,126,13,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43223,231,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43224,232,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43225,233,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43226,234,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43227,235,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43228,236,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43229,237,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43230,238,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43231,239,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43232,240,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43233,241,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43234,242,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43235,243,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43236,244,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43237,245,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43238,246,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43239,247,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43240,248,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43241,249,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43242,250,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43243,251,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43244,252,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43245,253,126,14,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43246,231,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43247,232,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43248,233,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43249,234,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43250,235,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43251,236,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43252,237,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43253,238,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43254,239,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43255,240,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43256,241,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43257,242,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43258,243,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43259,244,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43260,245,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43261,246,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43262,247,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43263,248,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43264,249,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43265,250,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43266,251,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43267,252,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43268,253,126,15,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43269,163,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43270,164,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43271,165,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43272,166,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43273,167,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43274,168,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43275,169,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43276,170,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43277,171,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43278,172,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43279,173,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43280,174,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43281,175,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43282,176,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43283,177,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43284,178,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43285,179,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43286,180,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43287,181,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43288,182,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43289,183,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43290,184,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43291,185,126,16,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43292,131,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43293,132,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43294,133,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43295,134,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43296,135,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43297,136,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43298,137,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43299,138,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43300,139,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43301,140,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43302,141,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43303,142,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43304,143,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43305,144,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43306,145,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43307,146,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43308,147,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43309,148,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43310,149,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43311,150,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43312,151,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43313,152,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43314,153,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43315,154,126,18,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43316,107,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43317,108,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43318,109,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43319,110,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43320,111,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43321,112,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43322,113,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43323,114,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43324,115,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43325,116,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43326,117,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43327,118,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43328,119,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43329,120,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43330,121,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43331,122,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43332,123,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43333,124,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43334,125,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43335,126,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43336,127,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43337,128,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43338,129,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43339,130,126,19,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43340,85,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43341,86,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43342,87,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43343,88,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43344,89,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43345,90,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43346,91,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43347,92,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43348,93,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43349,94,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43350,95,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43351,96,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43352,97,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43353,98,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43354,99,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43355,100,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43356,101,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43357,102,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43358,103,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43359,104,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43360,105,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43361,106,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43362,107,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43363,108,126,20,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43364,70,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43365,71,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43366,72,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43367,73,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43368,74,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43369,75,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43370,76,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43371,77,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43372,78,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43373,79,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43374,80,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43375,81,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43376,82,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43377,83,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43378,84,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43379,85,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43380,86,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43381,87,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43382,88,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43383,89,126,21,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43384,60,126,22,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43385,61,126,22,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43386,62,126,22,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43387,63,126,22,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43388,64,126,22,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43389,65,126,22,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43390,66,126,22,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43391,67,126,22,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43392,68,126,22,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43393,220,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43394,221,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43395,222,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43396,223,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43397,224,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43398,225,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43399,226,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43400,227,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43401,228,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43402,229,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43403,230,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43404,231,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43405,232,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43406,233,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43407,234,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43408,235,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43409,236,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43410,237,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43411,238,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43412,239,127,1,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43413,220,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43414,221,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43415,222,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43416,223,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43417,224,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43418,225,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43419,226,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43420,227,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43421,228,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43422,229,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43423,230,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43424,231,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43425,232,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43426,233,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43427,234,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43428,235,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43429,236,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43430,237,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43431,238,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43432,239,127,2,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43433,225,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43434,226,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43435,227,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43436,228,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43437,229,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43438,230,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43439,231,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43440,232,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43441,233,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43442,234,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43443,235,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43444,236,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43445,237,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43446,238,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43447,239,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43448,240,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43449,241,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43450,242,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43451,243,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43452,244,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43453,245,127,3,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43454,231,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43455,232,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43456,233,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43457,234,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43458,235,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43459,236,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43460,237,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43461,238,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43462,239,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43463,240,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43464,241,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43465,242,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43466,243,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43467,244,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43468,245,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43469,246,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43470,247,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43471,248,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43472,249,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43473,250,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43474,251,127,4,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43475,231,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43476,232,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43477,233,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43478,234,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43479,235,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43480,236,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43481,237,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43482,238,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43483,239,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43484,240,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43485,241,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43486,242,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43487,243,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43488,244,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43489,245,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43490,246,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43491,247,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43492,248,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43493,249,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43494,250,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43495,251,127,5,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43496,195,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43497,196,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43498,197,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43499,198,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43500,199,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43501,200,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43502,201,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43503,202,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43504,203,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43505,204,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43506,205,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43507,206,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43508,207,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43509,208,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43510,209,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43511,210,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43512,211,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43513,212,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43514,213,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43515,214,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43516,215,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43517,216,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43518,217,127,7,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43519,200,127,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43520,201,127,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43521,202,127,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43522,203,127,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43523,204,127,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43524,205,127,8,1,'2022-09-02 14:24:10','2022-09-02 14:24:10'),(43525,206,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43526,207,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43527,208,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43528,209,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43529,210,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43530,211,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43531,212,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43532,213,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43533,214,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43534,215,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43535,216,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43536,217,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43537,218,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43538,219,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43539,220,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43540,221,127,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43541,200,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43542,201,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43543,202,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43544,203,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43545,204,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43546,205,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43547,206,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43548,207,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43549,208,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43550,209,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43551,210,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43552,211,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43553,212,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43554,213,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43555,214,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43556,215,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43557,216,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43558,217,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43559,218,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43560,219,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43561,220,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43562,221,127,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43563,201,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43564,202,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43565,203,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43566,204,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43567,205,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43568,206,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43569,207,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43570,208,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43571,209,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43572,210,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43573,211,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43574,212,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43575,213,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43576,214,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43577,215,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43578,216,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43579,217,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43580,218,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43581,219,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43582,220,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43583,221,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43584,222,127,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43585,202,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43586,203,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43587,204,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43588,205,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43589,206,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43590,207,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43591,208,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43592,209,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43593,210,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43594,211,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43595,212,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43596,213,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43597,214,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43598,215,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43599,216,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43600,217,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43601,218,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43602,219,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43603,220,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43604,221,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43605,222,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43606,223,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43607,224,127,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43608,246,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43609,247,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43610,248,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43611,249,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43612,250,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43613,251,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43614,252,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43615,253,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43616,254,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43617,255,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43618,256,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43619,257,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43620,258,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43621,259,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43622,260,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43623,261,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43624,262,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43625,263,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43626,264,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43627,265,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43628,266,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43629,267,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43630,268,127,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43631,254,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43632,255,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43633,256,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43634,257,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43635,258,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43636,259,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43637,260,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43638,261,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43639,262,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43640,263,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43641,264,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43642,265,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43643,266,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43644,267,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43645,268,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43646,269,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43647,270,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43648,271,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43649,272,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43650,273,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43651,274,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43652,275,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43653,276,127,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43654,254,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43655,255,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43656,256,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43657,257,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43658,258,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43659,259,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43660,260,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43661,261,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43662,262,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43663,263,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43664,264,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43665,265,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43666,266,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43667,267,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43668,268,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43669,269,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43670,270,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43671,271,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43672,272,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43673,273,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43674,274,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43675,275,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43676,276,127,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43677,254,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43678,255,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43679,256,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43680,257,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43681,258,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43682,259,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43683,260,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43684,261,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43685,262,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43686,263,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43687,264,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43688,265,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43689,266,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43690,267,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43691,268,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43692,269,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43693,270,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43694,271,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43695,272,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43696,273,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43697,274,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43698,275,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43699,276,127,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43700,186,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43701,187,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43702,188,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43703,189,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43704,190,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43705,191,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43706,192,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43707,193,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43708,194,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43709,195,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43710,196,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43711,197,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43712,198,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43713,199,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43714,200,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43715,201,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43716,202,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43717,203,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43718,204,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43719,205,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43720,206,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43721,207,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43722,208,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43723,209,127,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43724,155,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43725,156,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43726,157,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43727,158,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43728,159,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43729,160,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43730,161,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43731,162,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43732,163,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43733,164,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43734,165,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43735,166,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43736,167,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43737,168,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43738,169,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43739,170,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43740,171,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43741,172,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43742,173,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43743,174,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43744,175,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43745,176,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43746,177,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43747,178,127,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43748,131,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43749,132,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43750,133,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43751,134,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43752,135,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43753,136,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43754,137,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43755,138,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43756,139,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43757,140,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43758,141,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43759,142,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43760,143,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43761,144,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43762,145,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43763,146,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43764,147,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43765,148,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43766,149,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43767,150,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43768,151,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43769,152,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43770,153,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43771,154,127,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43772,109,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43773,110,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43774,111,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43775,112,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43776,113,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43777,114,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43778,115,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43779,116,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43780,117,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43781,118,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43782,119,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43783,120,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43784,121,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43785,122,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43786,123,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43787,124,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43788,125,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43789,126,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43790,127,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43791,128,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43792,129,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43793,130,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43794,131,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43795,132,127,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43796,90,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43797,91,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43798,92,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43799,93,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43800,94,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43801,95,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43802,96,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43803,97,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43804,98,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43805,99,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43806,100,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43807,101,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43808,102,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43809,103,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43810,104,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43811,105,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43812,106,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43813,107,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43814,108,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43815,109,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43816,110,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43817,111,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43818,112,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43819,113,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43820,114,127,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43821,69,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43822,70,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43823,71,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43824,72,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43825,73,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43826,74,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43827,75,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43828,76,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43829,77,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43830,78,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43831,79,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43832,80,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43833,81,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43834,82,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43835,83,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43836,84,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43837,85,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43838,86,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43839,87,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43840,88,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43841,89,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43842,90,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43843,91,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43844,92,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43845,93,127,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43846,57,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43847,58,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43848,59,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43849,60,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43850,61,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43851,62,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43852,63,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43853,64,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43854,65,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43855,66,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43856,67,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43857,68,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43858,69,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43859,70,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43860,71,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43861,72,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43862,73,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43863,74,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43864,75,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43865,76,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43866,77,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43867,78,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43868,79,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43869,80,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43870,81,127,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43871,43,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43872,44,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43873,45,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43874,46,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43875,47,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43876,48,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43877,49,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43878,50,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43879,51,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43880,52,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43881,53,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43882,54,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43883,55,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43884,56,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43885,57,127,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43886,37,127,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43887,38,127,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43888,39,127,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43889,240,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43890,241,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43891,242,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43892,243,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43893,244,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43894,245,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43895,246,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43896,247,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43897,248,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43898,249,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43899,250,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43900,251,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43901,252,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43902,253,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43903,254,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43904,255,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43905,256,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43906,257,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43907,258,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43908,259,128,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43909,240,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43910,241,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43911,242,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43912,243,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43913,244,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43914,245,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43915,246,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43916,247,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43917,248,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43918,249,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43919,250,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43920,251,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43921,252,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43922,253,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43923,254,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43924,255,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43925,256,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43926,257,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43927,258,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43928,259,128,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43929,246,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43930,247,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43931,248,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43932,249,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43933,250,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43934,251,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43935,252,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43936,253,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43937,254,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43938,255,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43939,256,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43940,257,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43941,258,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43942,259,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43943,260,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43944,261,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43945,262,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43946,263,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43947,264,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43948,265,128,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43949,252,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43950,253,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43951,254,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43952,255,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43953,256,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43954,257,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43955,258,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43956,259,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43957,260,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43958,261,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43959,262,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43960,263,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43961,264,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43962,265,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43963,266,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43964,267,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43965,268,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43966,269,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43967,270,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43968,271,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43969,272,128,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43970,252,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43971,253,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43972,254,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43973,255,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43974,256,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43975,257,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43976,258,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43977,259,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43978,260,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43979,261,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43980,262,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43981,263,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43982,264,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43983,265,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43984,266,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43985,267,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43986,268,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43987,269,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43988,270,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43989,271,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43990,272,128,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43991,218,128,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43992,219,128,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43993,220,128,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43994,221,128,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43995,222,128,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43996,223,128,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43997,224,128,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43998,225,128,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(43999,222,128,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44000,223,128,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44001,224,128,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44002,225,128,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44003,226,128,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44004,227,128,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44005,228,128,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44006,229,128,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44007,222,128,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44008,223,128,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44009,224,128,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44010,225,128,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44011,226,128,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44012,227,128,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44013,228,128,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44014,229,128,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44015,223,128,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44016,224,128,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44017,225,128,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44018,226,128,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44019,227,128,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44020,228,128,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44021,229,128,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44022,230,128,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44023,225,128,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44024,226,128,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44025,227,128,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44026,228,128,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44027,229,128,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44028,230,128,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44029,231,128,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44030,232,128,11,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44031,269,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44032,270,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44033,271,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44034,272,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44035,273,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44036,274,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44037,275,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44038,276,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44039,277,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44040,278,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44041,279,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44042,280,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44043,281,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44044,282,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44045,283,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44046,284,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44047,285,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44048,286,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44049,287,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44050,288,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44051,289,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44052,290,128,12,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44053,277,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44054,278,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44055,279,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44056,280,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44057,281,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44058,282,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44059,283,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44060,284,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44061,285,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44062,286,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44063,287,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44064,288,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44065,289,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44066,290,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44067,291,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44068,292,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44069,293,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44070,294,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44071,295,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44072,296,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44073,297,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44074,298,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44075,299,128,13,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44076,277,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44077,278,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44078,279,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44079,280,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44080,281,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44081,282,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44082,283,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44083,284,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44084,285,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44085,286,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44086,287,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44087,288,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44088,289,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44089,290,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44090,291,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44091,292,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44092,293,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44093,294,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44094,295,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44095,296,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44096,297,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44097,298,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44098,299,128,14,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44099,277,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44100,278,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44101,279,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44102,280,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44103,281,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44104,282,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44105,283,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44106,284,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44107,285,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44108,286,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44109,287,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44110,288,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44111,289,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44112,290,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44113,291,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44114,292,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44115,293,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44116,294,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44117,295,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44118,296,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44119,297,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44120,298,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44121,299,128,15,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44122,210,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44123,211,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44124,212,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44125,213,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44126,214,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44127,215,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44128,216,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44129,217,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44130,218,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44131,219,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44132,220,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44133,221,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44134,222,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44135,223,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44136,224,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44137,225,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44138,226,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44139,227,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44140,228,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44141,229,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44142,230,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44143,231,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44144,232,128,16,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44145,179,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44146,180,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44147,181,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44148,182,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44149,183,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44150,184,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44151,185,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44152,186,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44153,187,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44154,188,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44155,189,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44156,190,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44157,191,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44158,192,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44159,193,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44160,194,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44161,195,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44162,196,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44163,197,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44164,198,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44165,199,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44166,200,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44167,201,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44168,202,128,18,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44169,155,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44170,156,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44171,157,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44172,158,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44173,159,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44174,160,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44175,161,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44176,162,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44177,163,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44178,164,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44179,165,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44180,166,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44181,167,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44182,168,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44183,169,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44184,170,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44185,171,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44186,172,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44187,173,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44188,174,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44189,175,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44190,176,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44191,177,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44192,178,128,19,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44193,133,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44194,134,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44195,135,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44196,136,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44197,137,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44198,138,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44199,139,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44200,140,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44201,141,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44202,142,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44203,143,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44204,144,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44205,145,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44206,146,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44207,147,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44208,148,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44209,149,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44210,150,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44211,151,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44212,152,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44213,153,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44214,154,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44215,155,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44216,156,128,20,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44217,115,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44218,116,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44219,117,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44220,118,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44221,119,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44222,120,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44223,121,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44224,122,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44225,123,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44226,124,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44227,125,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44228,126,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44229,127,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44230,128,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44231,129,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44232,130,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44233,131,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44234,132,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44235,133,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44236,134,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44237,135,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44238,136,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44239,137,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44240,138,128,21,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44241,94,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44242,95,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44243,96,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44244,97,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44245,98,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44246,99,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44247,100,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44248,101,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44249,102,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44250,103,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44251,104,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44252,105,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44253,106,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44254,107,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44255,108,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44256,109,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44257,110,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44258,111,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44259,112,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44260,113,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44261,114,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44262,115,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44263,116,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44264,117,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44265,118,128,22,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44266,82,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44267,83,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44268,84,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44269,85,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44270,86,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44271,87,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44272,88,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44273,89,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44274,90,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44275,91,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44276,92,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44277,93,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44278,94,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44279,95,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44280,96,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44281,97,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44282,98,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44283,99,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44284,100,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44285,101,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44286,102,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44287,103,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44288,104,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44289,105,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44290,106,128,23,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44291,58,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44292,59,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44293,60,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44294,61,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44295,62,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44296,63,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44297,64,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44298,65,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44299,66,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44300,67,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44301,68,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44302,69,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44303,70,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44304,71,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44305,72,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44306,73,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44307,74,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44308,75,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44309,76,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44310,77,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44311,78,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44312,79,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44313,80,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44314,81,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44315,82,128,24,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44316,40,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44317,41,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44318,42,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44319,43,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44320,44,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44321,45,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44322,46,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44323,47,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44324,48,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44325,49,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44326,50,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44327,51,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44328,52,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44329,53,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44330,54,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44331,55,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44332,56,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44333,57,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44334,58,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44335,59,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44336,60,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44337,61,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44338,62,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44339,63,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44340,64,128,25,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44341,30,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44342,31,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44343,32,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44344,33,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44345,34,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44346,35,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44347,36,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44348,37,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44349,38,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44350,39,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44351,40,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44352,41,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44353,42,128,26,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44354,260,129,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44355,261,129,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44356,262,129,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44357,263,129,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44358,264,129,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44359,265,129,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44360,266,129,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44361,267,129,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44362,268,129,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44363,269,129,1,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44364,260,129,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44365,261,129,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44366,262,129,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44367,263,129,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44368,264,129,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44369,265,129,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44370,266,129,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44371,267,129,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44372,268,129,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44373,269,129,2,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44374,266,129,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44375,267,129,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44376,268,129,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44377,269,129,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44378,270,129,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44379,271,129,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44380,272,129,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44381,273,129,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44382,274,129,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44383,275,129,3,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44384,273,129,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44385,274,129,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44386,275,129,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44387,276,129,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44388,277,129,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44389,278,129,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44390,279,129,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44391,280,129,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44392,281,129,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44393,282,129,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44394,283,129,4,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44395,273,129,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44396,274,129,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44397,275,129,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44398,276,129,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44399,277,129,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44400,278,129,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44401,279,129,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44402,280,129,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44403,281,129,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44404,282,129,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44405,283,129,5,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44406,226,129,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44407,227,129,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44408,228,129,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44409,229,129,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44410,230,129,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44411,231,129,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44412,232,129,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44413,233,129,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44414,234,129,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44415,235,129,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44416,236,129,7,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44417,230,129,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44418,231,129,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44419,232,129,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44420,233,129,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44421,234,129,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44422,235,129,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44423,236,129,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44424,237,129,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44425,238,129,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44426,239,129,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44427,240,129,8,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44428,230,129,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44429,231,129,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44430,232,129,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44431,233,129,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44432,234,129,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44433,235,129,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44434,236,129,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44435,237,129,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44436,238,129,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44437,239,129,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44438,240,129,9,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44439,231,129,10,1,'2022-09-02 14:24:11','2022-09-02 14:24:11'),(44440,232,129,10,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44441,233,129,10,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44442,234,129,10,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44443,235,129,10,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44444,236,129,10,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44445,237,129,10,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44446,238,129,10,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44447,239,129,10,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44448,240,129,10,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44449,241,129,10,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44450,233,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44451,234,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44452,235,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44453,236,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44454,237,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44455,238,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44456,239,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44457,240,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44458,241,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44459,242,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44460,243,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44461,244,129,11,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44462,291,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44463,292,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44464,293,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44465,294,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44466,295,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44467,296,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44468,297,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44469,298,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44470,299,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44471,300,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44472,301,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44473,302,129,12,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44474,300,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44475,301,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44476,302,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44477,303,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44478,304,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44479,305,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44480,306,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44481,307,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44482,308,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44483,309,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44484,310,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44485,311,129,13,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44486,300,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44487,301,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44488,302,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44489,303,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44490,304,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44491,305,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44492,306,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44493,307,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44494,308,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44495,309,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44496,310,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44497,311,129,14,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44498,300,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44499,301,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44500,302,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44501,303,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44502,304,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44503,305,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44504,306,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44505,307,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44506,308,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44507,309,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44508,310,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44509,311,129,15,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44510,233,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44511,234,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44512,235,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44513,236,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44514,237,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44515,238,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44516,239,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44517,240,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44518,241,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44519,242,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44520,243,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44521,244,129,16,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44522,203,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44523,204,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44524,205,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44525,206,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44526,207,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44527,208,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44528,209,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44529,210,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44530,211,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44531,212,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44532,213,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44533,214,129,18,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44534,179,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44535,180,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44536,181,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44537,182,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44538,183,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44539,184,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44540,185,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44541,186,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44542,187,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44543,188,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44544,189,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44545,190,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44546,191,129,19,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44547,157,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44548,158,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44549,159,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44550,160,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44551,161,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44552,162,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44553,163,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44554,164,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44555,165,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44556,166,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44557,167,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44558,168,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44559,169,129,20,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44560,139,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44561,140,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44562,141,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44563,142,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44564,143,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44565,144,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44566,145,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44567,146,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44568,147,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44569,148,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44570,149,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44571,150,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44572,151,129,21,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44573,119,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44574,120,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44575,121,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44576,122,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44577,123,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44578,124,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44579,125,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44580,126,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44581,127,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44582,128,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44583,129,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44584,130,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44585,131,129,22,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44586,107,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44587,108,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44588,109,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44589,110,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44590,111,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44591,112,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44592,113,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44593,114,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44594,115,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44595,116,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44596,117,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44597,118,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44598,119,129,23,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44599,83,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44600,84,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44601,85,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44602,86,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44603,87,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44604,88,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44605,89,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44606,90,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44607,91,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44608,92,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44609,93,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44610,94,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44611,95,129,24,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44612,65,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44613,66,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44614,67,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44615,68,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44616,69,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44617,70,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44618,71,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44619,72,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44620,73,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44621,74,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44622,75,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44623,76,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44624,77,129,25,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44625,43,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44626,44,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44627,45,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44628,46,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44629,47,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44630,48,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44631,49,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44632,50,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44633,51,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44634,52,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44635,53,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44636,54,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12'),(44637,55,129,26,1,'2022-09-02 14:24:12','2022-09-02 14:24:12');
/*!40000 ALTER TABLE `seats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `seeders`
--

DROP TABLE IF EXISTS `seeders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `seeders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `seeder` varchar(191) NOT NULL,
  `batch` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `seeders`
--

LOCK TABLES `seeders` WRITE;
/*!40000 ALTER TABLE `seeders` DISABLE KEYS */;
INSERT INTO `seeders` VALUES (1,'DefaultSeeder',0),(2,'ServiceChargesSeeder',1),(3,'ModulesRestructuringSeeder',1),(4,'AddModuleBusinessRatingSeeder',1),(5,'BusinessRatingsDataSeeder',1),(6,'TutorialSlidesSeeder',1),(7,'UpdateDataInTypeActionSeeder',1),(8,'CreateLabelTicketsForStageTypesSeeder',1),(9,'AcademyTournamentsSeeder',1),(10,'AdjustBottonHomeIconsFromAppSectionSeeder',1),(11,'TicketsParametersData',1),(12,'AddModuleListTicketUserLogSeeder',1),(13,'AddModuleTicketsParametersSeeder',1),(14,'SocialNetworkAccountsSeeder',1),(15,'AcademyAttendanceDate',1),(16,'AddModulesTicketOffice',1),(17,'AddModuleCreditCoinsSeeder',1),(18,'ReportRedemptionsSeeder',2),(19,'DocumentTypeDefaulSeeder',3),(20,'HomeSectionDataSeeder',4),(21,'AdministrationLogsModule',5),(22,'PaymentMethodSeeder',6),(23,'AdultAcademySeeder',7),(24,'EnableAttachSupportButtonSeeder',8);
/*!40000 ALTER TABLE `seeders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `segmentations`
--

DROP TABLE IF EXISTS `segmentations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `segmentations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `segmentations`
--

LOCK TABLES `segmentations` WRITE;
/*!40000 ALTER TABLE `segmentations` DISABLE KEYS */;
/*!40000 ALTER TABLE `segmentations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_charge_tags`
--

DROP TABLE IF EXISTS `service_charge_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_charge_tags` (
  `service_charge_id` bigint(20) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  KEY `service_charge_tags_service_charge_id_foreign` (`service_charge_id`),
  KEY `service_charge_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_charge_tags`
--

LOCK TABLES `service_charge_tags` WRITE;
/*!40000 ALTER TABLE `service_charge_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `service_charge_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_charges`
--

DROP TABLE IF EXISTS `service_charges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_charges` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `price` double NOT NULL,
  `services` varchar(100) NOT NULL DEFAULT 'all' COMMENT 'Indica los servicios/lineas de negocio donde es valido el cobro de servicio',
  `rules` longtext DEFAULT NULL COMMENT 'Conjunto de reglas/configuraciones que indican la llave valor de la condición aplicar para el cobro del servicio. Esta campo debe ser una definición JSON de tipo llave/valor',
  `priority` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_charges`
--

LOCK TABLES `service_charges` WRITE;
/*!40000 ALTER TABLE `service_charges` DISABLE KEYS */;
/*!40000 ALTER TABLE `service_charges` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sessions`
--

DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
  `id` varchar(191) NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `payload` text NOT NULL,
  `last_activity` int(11) NOT NULL,
  UNIQUE KEY `sessions_id_unique` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sessions`
--

LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sizing_units`
--

DROP TABLE IF EXISTS `sizing_units`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sizing_units` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `abbreviation` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sizing_units`
--

LOCK TABLES `sizing_units` WRITE;
/*!40000 ALTER TABLE `sizing_units` DISABLE KEYS */;
INSERT INTO `sizing_units` VALUES (1,'Unidades','Und','2021-05-01 21:58:24','2021-05-01 21:58:24',NULL),(2,'Kilogramos','kg','2021-05-01 21:58:24','2021-05-01 21:58:24',NULL),(3,'Metros','m','2021-05-01 21:58:24','2021-05-01 21:58:24',NULL),(4,'Paquetes','PKG','2021-05-01 21:58:24','2021-05-01 21:58:24',NULL),(5,'Mililitros','ml','2021-05-01 21:58:24','2021-05-01 21:58:24',NULL),(6,'Gramos','g','2021-05-01 21:58:24','2021-05-01 21:58:24',NULL),(7,'Litros','l','2021-05-01 21:58:24','2021-05-01 21:58:24',NULL);
/*!40000 ALTER TABLE `sizing_units` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sms_parameters`
--

DROP TABLE IF EXISTS `sms_parameters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sms_parameters` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `api` varchar(255) NOT NULL COMMENT 'URL del API utilizada en el envio de SMS',
  `user` varchar(50) NOT NULL COMMENT 'Usuario/login credenciales del API utilizada en el envio de SMS',
  `pass` varchar(50) NOT NULL COMMENT 'Contraseña del API utilizada en el envio de SMS',
  `ticket_buy_message` text DEFAULT NULL COMMENT 'Estructura del mensaje que se envia en la compra de boleteria, se deben utilizar comodines para completar la información en el back',
  `shop_buy_message` text DEFAULT NULL COMMENT 'Estructura del mensaje que se envia en la compra de tienda, se deben utilizar comodines para completar la información en el back',
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sms_parameters`
--

LOCK TABLES `sms_parameters` WRITE;
/*!40000 ALTER TABLE `sms_parameters` DISABLE KEYS */;
INSERT INTO `sms_parameters` VALUES (1,'https://apitellit.aldeamo.com/SmsiWS/smsSendPost/','TEKY','tekyc3Nw==}','Felicitaciones :userName, has realizado la compra de una boleta en nuestra app :appName, con el PIN=:pin podrás descargar tu boleta en el siguiente link=',NULL,1,'2023-02-13 20:02:20','2023-02-13 20:03:44');
/*!40000 ALTER TABLE `sms_parameters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `social_network_accounts`
--

DROP TABLE IF EXISTS `social_network_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `social_network_accounts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `social_network_accounts`
--

LOCK TABLES `social_network_accounts` WRITE;
/*!40000 ALTER TABLE `social_network_accounts` DISABLE KEYS */;
INSERT INTO `social_network_accounts` VALUES (1,'profesional',1,NULL,'2023-07-10 14:32:47','2023-07-10 14:32:47');
/*!40000 ALTER TABLE `social_network_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stage_types`
--

DROP TABLE IF EXISTS `stage_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stage_types` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stage_types`
--

LOCK TABLES `stage_types` WRITE;
/*!40000 ALTER TABLE `stage_types` DISABLE KEYS */;
INSERT INTO `stage_types` VALUES (1,'Etiqueta boletas',1,'2023-06-05 20:11:15','2023-06-05 20:11:15'),(2,'Etiqueta boletas',1,'2023-07-07 22:06:50','2023-07-07 22:06:50');
/*!40000 ALTER TABLE `stage_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `start_positions`
--

DROP TABLE IF EXISTS `start_positions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `start_positions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `sucursal_id` varchar(191) NOT NULL,
  `lat` varchar(191) NOT NULL,
  `lng` varchar(191) NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `start_positions_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `start_positions`
--

LOCK TABLES `start_positions` WRITE;
/*!40000 ALTER TABLE `start_positions` DISABLE KEYS */;
/*!40000 ALTER TABLE `start_positions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `states`
--

DROP TABLE IF EXISTS `states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `states` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `country_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `states_country_id_foreign` (`country_id`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `states`
--

LOCK TABLES `states` WRITE;
/*!40000 ALTER TABLE `states` DISABLE KEYS */;
INSERT INTO `states` VALUES (5,'Antioquia',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(8,'Atlántico',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(11,'Bogotá, D.C.',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(13,'Bolívar',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(15,'Boyacá',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(17,'Caldas',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(18,'Caquetá',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(19,'Cauca',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(20,'Cesar',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(23,'Córdoba',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(25,'Cundinamarca',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(27,'Chocó',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(41,'Huila',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(44,'La Guajira',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(47,'Magdalena',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(50,'Meta',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(52,'Nariño',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(54,'Norte De Santander',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(63,'Quindio',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(66,'Risaralda',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(68,'Santander',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(70,'Sucre',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(73,'Tolima',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(76,'Valle Del Cauca',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(81,'Arauca',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(85,'Casanare',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(86,'Putumayo',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(88,'San Andrés, Providencia Y Santa Catalina',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(91,'Amazonas',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(94,'Guainía',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(95,'Guaviare',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(97,'Vaupés',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(99,'Vichada',1,1,'2021-05-01 21:58:23','2021-05-01 21:58:23');
/*!40000 ALTER TABLE `states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `subcategories`
--

DROP TABLE IF EXISTS `subcategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `subcategories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `image` varchar(191) DEFAULT NULL,
  `order` int(11) NOT NULL,
  `category_id` int(10) unsigned NOT NULL,
  `reference_shopify_id` varchar(550) DEFAULT NULL,
  `reference_woocommerce_category_id` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `subcategories_category_id_foreign` (`category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subcategories`
--

LOCK TABLES `subcategories` WRITE;
/*!40000 ALTER TABLE `subcategories` DISABLE KEYS */;
INSERT INTO `subcategories` VALUES (1,'HOMBRES',1,'211674595683.jpg',100,1,NULL,NULL,'2022-06-01 14:45:55','2023-01-25 00:37:16'),(2,'MUJERES',1,'1991674595706.jpg',101,2,NULL,NULL,'2022-06-01 14:46:04','2023-01-25 00:37:21'),(3,'RETRO CAMISETAS',0,'7071669221804.jpg',102,3,NULL,NULL,'2022-06-01 14:46:21','2023-01-24 11:12:06'),(4,'REAL 2022',0,'5601669221822.jpg',103,4,NULL,NULL,'2022-06-01 14:46:36','2023-01-23 19:53:26'),(6,'OFERTAS',0,'5361654098919.jpg',105,6,NULL,NULL,'2022-06-01 14:47:04','2022-08-31 19:25:58'),(7,'NIÑO',0,'4561674589578.jpg',100,7,NULL,NULL,'2023-01-23 19:55:21','2023-01-24 19:28:35'),(11,'HOMBRE',0,'8461689780600.jpg',1,11,NULL,'24','2023-07-19 15:29:59','2023-07-19 15:30:07'),(12,'MUJER',0,'6431689780633.jpg',2,12,NULL,'25','2023-07-19 15:30:33','2023-07-19 15:30:40'),(13,'KIDS',0,'4601689780673.jpg',3,13,NULL,'26','2023-07-19 15:31:12','2023-07-19 15:31:20'),(14,'ACCESORIOS',0,'5431689796068.jpg',4,14,NULL,'27','2023-07-19 19:47:47','2023-07-19 19:47:55');
/*!40000 ALTER TABLE `subcategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `subcategory_products`
--

DROP TABLE IF EXISTS `subcategory_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `subcategory_products` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `subcategory_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `subcategory_products_subcategory_id_foreign` (`subcategory_id`),
  KEY `subcategory_products_product_id_foreign` (`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subcategory_products`
--

LOCK TABLES `subcategory_products` WRITE;
/*!40000 ALTER TABLE `subcategory_products` DISABLE KEYS */;
INSERT INTO `subcategory_products` VALUES (1,1,70,'2023-01-23 19:55:21','2023-01-23 19:55:21'),(2,1,79,'2023-01-23 19:55:21','2023-01-23 19:55:21'),(4,2,81,'2023-01-23 19:55:21','2023-01-23 19:55:21'),(5,7,82,'2023-01-23 19:55:21','2023-01-23 19:55:21'),(8,2,85,'2023-02-27 14:25:41','2023-02-27 14:25:41'),(9,1,84,'2023-02-27 14:26:06','2023-02-27 14:26:06'),(10,2,86,'2023-02-27 20:57:24','2023-02-27 20:57:24'),(12,1,87,'2023-04-12 21:42:18','2023-04-12 21:42:18'),(15,1,90,'2023-06-17 02:25:09','2023-06-17 02:25:09'),(16,2,90,'2023-06-17 02:25:09','2023-06-17 02:25:09'),(17,1,89,'2023-08-09 15:54:48','2023-08-09 15:54:48'),(18,2,89,'2023-08-09 15:54:48','2023-08-09 15:54:48'),(19,1,80,'2023-08-09 15:58:23','2023-08-09 15:58:23'),(26,1,92,'2023-08-24 16:24:53','2023-08-24 16:24:53'),(27,2,92,'2023-08-24 16:24:53','2023-08-24 16:24:53'),(28,1,93,'2023-08-24 16:36:45','2023-08-24 16:36:45'),(29,2,93,'2023-08-24 16:36:45','2023-08-24 16:36:45'),(30,1,94,'2023-08-24 17:06:24','2023-08-24 17:06:24'),(32,2,88,'2023-08-24 17:15:17','2023-08-24 17:15:17'),(33,1,95,'2023-08-30 14:37:15','2023-08-30 14:37:15'),(34,2,95,'2023-08-30 14:37:15','2023-08-30 14:37:15'),(35,1,96,'2023-08-30 15:02:29','2023-08-30 15:02:29'),(36,2,96,'2023-08-30 15:02:29','2023-08-30 15:02:29'),(37,1,97,'2023-08-30 15:04:15','2023-08-30 15:04:15'),(38,2,97,'2023-08-30 15:04:15','2023-08-30 15:04:15'),(41,1,98,'2023-08-30 15:06:15','2023-08-30 15:06:15'),(42,2,98,'2023-08-30 15:06:15','2023-08-30 15:06:15'),(45,1,99,'2023-08-30 16:29:42','2023-08-30 16:29:42'),(46,2,99,'2023-08-30 16:29:42','2023-08-30 16:29:42'),(47,1,100,'2023-08-30 16:34:30','2023-08-30 16:34:30'),(48,2,100,'2023-08-30 16:34:30','2023-08-30 16:34:30'),(49,1,101,'2023-08-30 16:37:28','2023-08-30 16:37:28'),(50,2,101,'2023-08-30 16:37:28','2023-08-30 16:37:28'),(51,1,102,'2023-08-30 16:41:41','2023-08-30 16:41:41'),(52,2,102,'2023-08-30 16:41:41','2023-08-30 16:41:41'),(53,1,103,'2023-08-30 16:49:17','2023-08-30 16:49:17'),(54,2,103,'2023-08-30 16:49:17','2023-08-30 16:49:17'),(55,1,104,'2023-08-31 16:22:57','2023-08-31 16:22:57'),(56,2,104,'2023-08-31 16:22:57','2023-08-31 16:22:57'),(57,2,105,'2023-08-31 16:25:03','2023-08-31 16:25:03'),(59,1,106,'2023-09-01 19:49:49','2023-09-01 19:49:49'),(60,1,107,'2023-09-01 21:50:48','2023-09-01 21:50:48'),(61,2,107,'2023-09-01 21:50:48','2023-09-01 21:50:48'),(62,1,108,'2023-09-26 17:24:22','2023-09-26 17:24:22');
/*!40000 ALTER TABLE `subcategory_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sucursals`
--

DROP TABLE IF EXISTS `sucursals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sucursals` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(191) NOT NULL,
  `name` varchar(191) NOT NULL,
  `mail` varchar(191) NOT NULL,
  `phone` varchar(191) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `active` varchar(191) NOT NULL,
  `address_id` int(10) unsigned NOT NULL,
  `city_id` int(10) unsigned NOT NULL,
  `coverage_id` int(10) unsigned NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `sucursals_address_id_foreign` (`address_id`),
  KEY `sucursals_city_id_foreign` (`city_id`),
  KEY `sucursals_coverage_id_foreign` (`coverage_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sucursals`
--

LOCK TABLES `sucursals` WRITE;
/*!40000 ALTER TABLE `sucursals` DISABLE KEYS */;
INSERT INTO `sucursals` VALUES (1,'Dim-999999','Dim','superadmin@aliansap.com.co','999999999',NULL,'0',1,150,255,NULL,'2021-05-01 21:58:24','2022-08-23 13:13:02'),(2,'343546','Valledupar Fútbol Club','Valledupar@gmail.com','3214577467',NULL,'0',2,1042,1055,'2022-11-24 20:34:46','2022-08-25 15:09:26','2022-11-24 20:34:46'),(3,'4390','Envigado tienda','envigadofc@gmail.com','31247474373','Envigado tienda.png','1',10,330,45,NULL,'2022-11-24 20:34:35','2022-11-24 20:34:37');
/*!40000 ALTER TABLE `sucursals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `symbolic_ticket_prices`
--

DROP TABLE IF EXISTS `symbolic_ticket_prices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `symbolic_ticket_prices` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `symbolic_ticket_id` bigint(20) unsigned NOT NULL,
  `price` int(11) NOT NULL,
  `comment` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `symbolic_ticket_prices_symbolic_ticket_id_foreign` (`symbolic_ticket_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `symbolic_ticket_prices`
--

LOCK TABLES `symbolic_ticket_prices` WRITE;
/*!40000 ALTER TABLE `symbolic_ticket_prices` DISABLE KEYS */;
/*!40000 ALTER TABLE `symbolic_ticket_prices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `symbolic_ticket_tags`
--

DROP TABLE IF EXISTS `symbolic_ticket_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `symbolic_ticket_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `symbolic_ticket_id` bigint(20) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `symbolic_ticket_tags_symbolic_ticket_id_foreign` (`symbolic_ticket_id`),
  KEY `symbolic_ticket_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `symbolic_ticket_tags`
--

LOCK TABLES `symbolic_ticket_tags` WRITE;
/*!40000 ALTER TABLE `symbolic_ticket_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `symbolic_ticket_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `symbolic_ticket_users`
--

DROP TABLE IF EXISTS `symbolic_ticket_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `symbolic_ticket_users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `symbolic_ticket_id` bigint(20) unsigned NOT NULL,
  `symbolic_ticket_price_id` bigint(20) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `price` double NOT NULL,
  `quantity` double NOT NULL,
  `total` double NOT NULL,
  `payment_reference` varchar(191) DEFAULT NULL,
  `payment_state` varchar(191) DEFAULT NULL,
  `payment_comment` varchar(191) DEFAULT NULL,
  `payment_attempts` int(11) NOT NULL DEFAULT 0,
  `pin` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `symbolic_ticket_users_symbolic_ticket_id_foreign` (`symbolic_ticket_id`),
  KEY `symbolic_ticket_users_symbolic_ticket_price_id_foreign` (`symbolic_ticket_price_id`),
  KEY `symbolic_ticket_users_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `symbolic_ticket_users`
--

LOCK TABLES `symbolic_ticket_users` WRITE;
/*!40000 ALTER TABLE `symbolic_ticket_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `symbolic_ticket_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `symbolic_tickets`
--

DROP TABLE IF EXISTS `symbolic_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `symbolic_tickets` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `path_image` varchar(191) DEFAULT NULL,
  `capacity` int(11) NOT NULL COMMENT 'Cantidad de boletas a vender',
  `total_sales` int(11) NOT NULL DEFAULT 0 COMMENT 'Cantidad de boletas que se han vendido',
  `start_date` datetime NOT NULL,
  `end_date` datetime NOT NULL,
  `is_subscriber` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `match_event_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `symbolic_tickets_match_event_id_foreign` (`match_event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `symbolic_tickets`
--

LOCK TABLES `symbolic_tickets` WRITE;
/*!40000 ALTER TABLE `symbolic_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `symbolic_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `system_logs`
--

DROP TABLE IF EXISTS `system_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `system_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `data` longtext DEFAULT NULL,
  `origin` varchar(50) DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `system_logs_user_id_foreign` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10144 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `system_logs`
--

LOCK TABLES `system_logs` WRITE;
/*!40000 ALTER TABLE `system_logs` DISABLE KEYS */;
INSERT INTO `system_logs` VALUES (6916,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T00:06:01-05:00\",\"transaction\":{\"id\":\"trtfnkfv1qqvzqguqsu2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T00:05:06-05:00\",\"operation_date\":\"2023-07-25T00:05:06-05:00\",\"description\":\"Pago Mensual academia: Samuel López Mejia (1017936003)\",\"error_message\":null,\"order_id\":\"D3157F2F0212A80A5D042C127522A2D5_AYI46NM5CV_1690261502.2674\",\"due_date\":\"2023-07-25T12:05:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"López Monsalve\",\"email\":\"Santilopezmo1717@hotmail.com\",\"phone_number\":\"3006716946\",\"address\":null,\"creation_date\":\"2023-07-25T00:05:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtfnkfv1qqvzqguqsu2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 05:06:02','2023-07-25 05:06:02'),(6917,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T00:07:11-05:00\",\"transaction\":{\"id\":\"trtfnkfv1qqvzqguqsu2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"63616815\",\"creation_date\":\"2023-07-25T00:05:06-05:00\",\"operation_date\":\"2023-07-25T00:06:55-05:00\",\"description\":\"Pago Mensual academia: Samuel López Mejia (1017936003)\",\"error_message\":null,\"order_id\":\"D3157F2F0212A80A5D042C127522A2D5_AYI46NM5CV_1690261502.2674\",\"due_date\":\"2023-07-25T12:05:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"López Monsalve\",\"email\":\"Santilopezmo1717@hotmail.com\",\"phone_number\":\"3006716946\",\"address\":null,\"creation_date\":\"2023-07-25T00:05:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 05:07:12','2023-07-25 05:07:12'),(6918,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-07-25T02:31:58-06:00\",\"transaction\":{\"id\":\"trakbykxksd6a2km1fql\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-21T12:16:07-06:00\",\"operation_date\":\"2023-07-21T12:16:07-06:00\",\"description\":\"Pago Mensual academia: Jerónimo Sarabia Suarez (1027812213)\",\"error_message\":null,\"order_id\":\"BDB6920ADCD0457AA17B53B22963DAD9_FJSVC2W760_1689959765.5324\",\"due_date\":\"2023-07-22T00:16:07-06:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trakbykxksd6a2km1fql/pse_capture\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Elie\",\"last_name\":\"Sarabia\",\"email\":\"essarabi@hotmail.com\",\"phone_number\":\"3008169308\",\"address\":null,\"creation_date\":\"2023-07-21T12:16:07-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 08:31:59','2023-07-25 08:31:59'),(6919,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-07-25T02:31:58-06:00\",\"transaction\":{\"id\":\"trmaj4a0vevfok38fulz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-21T18:49:58-06:00\",\"operation_date\":\"2023-07-21T18:49:58-06:00\",\"description\":\"Pago Mensual academia: Tomas Echavarria Urrea (1017933144)\",\"error_message\":null,\"order_id\":\"6917FF2A7B53421FF4066020E2D89EEC_EBJDVAKI60_1689983394.7526\",\"due_date\":\"2023-07-22T06:49:58-06:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmaj4a0vevfok38fulz/pse_capture\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Urrea Uribe\",\"email\":\"aa.urrea@yahoo.com\",\"phone_number\":\"3155365343\",\"address\":null,\"creation_date\":\"2023-07-21T18:49:58-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 08:31:59','2023-07-25 08:31:59'),(6920,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-07-25T02:31:58-06:00\",\"transaction\":{\"id\":\"trbhkg1ciyecphwri7mg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-23T22:36:18-06:00\",\"operation_date\":\"2023-07-23T22:36:18-06:00\",\"description\":\"Pago Mensual academia: Mathias Aguirre Rojas (1243088137)\",\"error_message\":null,\"order_id\":\"F44EE263952E65B3610B8BA51229D1F9_9UZ2SPFDJA_1690169769.9813\",\"due_date\":\"2023-07-24T10:36:18-06:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbhkg1ciyecphwri7mg/pse_capture\"},\"amount\":105000.00,\"currency\":\"COP\",\"customer\":{\"name\":\"jose\",\"last_name\":\"aguirre cardona\",\"email\":\"jac.18@hotmail.com\",\"phone_number\":\"3004112843\",\"address\":null,\"creation_date\":\"2023-07-23T22:36:18-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 08:31:59','2023-07-25 08:31:59'),(6921,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T09:58:42-05:00\",\"transaction\":{\"id\":\"trlkk0mg1cmczfvhtgl5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T09:53:01-05:00\",\"operation_date\":\"2023-07-25T09:53:01-05:00\",\"description\":\"Pago Mensual academia: SANTIAGO MOYA ROJAS (1012435034)\",\"error_message\":null,\"order_id\":\"1706F191D760C78DFCEC5012E43B6714_09R67YDWIQ_1690296778.7582\",\"due_date\":\"2023-07-25T21:53:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-07-25T09:53:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlkk0mg1cmczfvhtgl5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 14:58:42','2023-07-25 14:58:42'),(6922,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  860\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-25T09:15:10-06:00\",\"transaction\":{\"id\":\"trlkk0mg1cmczfvhtgl5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-25T09:53:01-06:00\",\"operation_date\":\"2023-07-25T10:15:10-06:00\",\"description\":\"Pago Mensual academia: SANTIAGO MOYA ROJAS (1012435034)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"1706F191D760C78DFCEC5012E43B6714_09R67YDWIQ_1690296778.7582\",\"due_date\":\"2023-07-25T21:53:01-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-07-25T09:53:01-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 15:15:12','2023-07-25 15:15:12'),(6923,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T11:33:40-05:00\",\"transaction\":{\"id\":\"trdyqv5tbicxxqlrstaw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T11:31:18-05:00\",\"operation_date\":\"2023-07-25T11:31:18-05:00\",\"description\":\"Pago Mensual academia: Emanuel Giraldo Hernández (1192466344)\",\"error_message\":null,\"order_id\":\"2BB0502C80B7432EEE4C5847A5FD077B_0PWK6DXN75_1690302671.7857\",\"due_date\":\"2023-07-25T23:31:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Giraldo Hernandez\",\"email\":\"dianamariahernandezgallon@gmail.com\",\"phone_number\":\"3006040597\",\"address\":null,\"creation_date\":\"2023-07-25T11:31:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdyqv5tbicxxqlrstaw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 16:33:41','2023-07-25 16:33:41'),(6924,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  828\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T10:36:16-06:00\",\"transaction\":{\"id\":\"trdyqv5tbicxxqlrstaw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"64208823\",\"creation_date\":\"2023-07-25T11:31:18-06:00\",\"operation_date\":\"2023-07-25T11:34:59-06:00\",\"description\":\"Pago Mensual academia: Emanuel Giraldo Hernández (1192466344)\",\"error_message\":null,\"order_id\":\"2BB0502C80B7432EEE4C5847A5FD077B_0PWK6DXN75_1690302671.7857\",\"due_date\":\"2023-07-25T23:31:18-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Giraldo Hernandez\",\"email\":\"dianamariahernandezgallon@gmail.com\",\"phone_number\":\"3006040597\",\"address\":null,\"creation_date\":\"2023-07-25T11:31:18-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 16:36:17','2023-07-25 16:36:17'),(6925,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T12:30:43-05:00\",\"transaction\":{\"id\":\"trlf8no40fvhtwtva4ud\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T12:30:06-05:00\",\"operation_date\":\"2023-07-25T12:30:06-05:00\",\"description\":\"Pago Mensual academia: SANTIAGO MOYA ROJAS (1012435034)\",\"error_message\":null,\"order_id\":\"1706F191D760C78DFCEC5012E43B6714_09R67YDWIQ_1690306203.8731\",\"due_date\":\"2023-07-26T00:30:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-07-25T12:30:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlf8no40fvhtwtva4ud/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 17:30:44','2023-07-25 17:30:44'),(6926,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T12:31:53-05:00\",\"transaction\":{\"id\":\"trlf8no40fvhtwtva4ud\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"64339153\",\"creation_date\":\"2023-07-25T12:30:06-05:00\",\"operation_date\":\"2023-07-25T00:00:00-05:00\",\"description\":\"Pago Mensual academia: SANTIAGO MOYA ROJAS (1012435034)\",\"error_message\":null,\"order_id\":\"1706F191D760C78DFCEC5012E43B6714_09R67YDWIQ_1690306203.8731\",\"due_date\":\"2023-07-26T00:30:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-07-25T12:30:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 17:31:54','2023-07-25 17:31:54'),(6927,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T12:33:39-05:00\",\"transaction\":{\"id\":\"trurzwdc3xuyrbthgvkq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T12:32:58-05:00\",\"operation_date\":\"2023-07-25T12:32:58-05:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":null,\"order_id\":\"A081CAB429FF7A3B96E0A07319F1049E_LJ94E2ISZR_1690306375.5262\",\"due_date\":\"2023-07-26T00:32:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-07-25T12:32:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trurzwdc3xuyrbthgvkq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 17:33:40','2023-07-25 17:33:40'),(6928,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  828\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T12:34:48-05:00\",\"transaction\":{\"id\":\"trurzwdc3xuyrbthgvkq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"64345314\",\"creation_date\":\"2023-07-25T12:32:58-05:00\",\"operation_date\":\"2023-07-25T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":null,\"order_id\":\"A081CAB429FF7A3B96E0A07319F1049E_LJ94E2ISZR_1690306375.5262\",\"due_date\":\"2023-07-26T00:32:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-07-25T12:32:58-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 17:34:49','2023-07-25 17:34:49'),(6929,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T12:53:43-05:00\",\"transaction\":{\"id\":\"trpf0423sgaihwfm3vfm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T12:53:10-05:00\",\"operation_date\":\"2023-07-25T12:53:10-05:00\",\"description\":\"Pago Mensual academia: Martín Valencia Duque (1155717395)\",\"error_message\":null,\"order_id\":\"78BC62D08A9A0B9B0B9C0AD339EF82D3_MR91ZOWLE5_1690307587.0951\",\"due_date\":\"2023-07-26T00:53:10-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martín\",\"last_name\":\"Valencia Duque\",\"email\":\"jaime.valencia@tigo.com.co\",\"phone_number\":\"3004380006\",\"address\":null,\"creation_date\":\"2023-07-25T12:53:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpf0423sgaihwfm3vfm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 17:53:44','2023-07-25 17:53:44'),(6930,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T12:54:44-05:00\",\"transaction\":{\"id\":\"trpf0423sgaihwfm3vfm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"64386605\",\"creation_date\":\"2023-07-25T12:53:10-05:00\",\"operation_date\":\"2023-07-25T12:54:32-05:00\",\"description\":\"Pago Mensual academia: Martín Valencia Duque (1155717395)\",\"error_message\":null,\"order_id\":\"78BC62D08A9A0B9B0B9C0AD339EF82D3_MR91ZOWLE5_1690307587.0951\",\"due_date\":\"2023-07-26T00:53:10-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martín\",\"last_name\":\"Valencia Duque\",\"email\":\"jaime.valencia@tigo.com.co\",\"phone_number\":\"3004380006\",\"address\":null,\"creation_date\":\"2023-07-25T12:53:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 17:54:45','2023-07-25 17:54:45'),(6931,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T12:59:17-05:00\",\"transaction\":{\"id\":\"trih1veoayuvvhemgeuq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T12:58:38-05:00\",\"operation_date\":\"2023-07-25T12:58:38-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN GUEVARA AGUDELO (1035008731)\",\"error_message\":null,\"order_id\":\"DC6A7E655D7E5840E66733E9EE67CC69_C372ILSJW0_1690307915.3677\",\"due_date\":\"2023-07-26T00:58:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Guevara\",\"email\":\"jaguevara726@hotmail.com\",\"phone_number\":\"3146829322\",\"address\":null,\"creation_date\":\"2023-07-25T12:58:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trih1veoayuvvhemgeuq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 17:59:18','2023-07-25 17:59:18'),(6932,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T13:00:51-05:00\",\"transaction\":{\"id\":\"trih1veoayuvvhemgeuq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"64398101\",\"creation_date\":\"2023-07-25T12:58:38-05:00\",\"operation_date\":\"2023-07-25T13:00:43-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN GUEVARA AGUDELO (1035008731)\",\"error_message\":null,\"order_id\":\"DC6A7E655D7E5840E66733E9EE67CC69_C372ILSJW0_1690307915.3677\",\"due_date\":\"2023-07-26T00:58:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Guevara\",\"email\":\"jaguevara726@hotmail.com\",\"phone_number\":\"3146829322\",\"address\":null,\"creation_date\":\"2023-07-25T12:58:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 18:00:52','2023-07-25 18:00:52'),(6933,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T15:24:53-05:00\",\"transaction\":{\"id\":\"tr6p1cxmzcorfv5lvu60\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T15:24:06-05:00\",\"operation_date\":\"2023-07-25T15:24:06-05:00\",\"description\":\"Pago Mensual academia: Gregorio Arboleda Fernandez (1036457052)\",\"error_message\":null,\"order_id\":\"_1690316643.1952\",\"due_date\":\"2023-07-26T03:24:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gregorio\",\"last_name\":\"Arboleda Fernandez\",\"email\":\"vivirbiensabaneta@gmail.com\",\"phone_number\":\"3122773145\",\"address\":null,\"creation_date\":\"2023-07-25T15:24:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6p1cxmzcorfv5lvu60/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 20:24:54','2023-07-25 20:24:54'),(6934,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  780\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T15:26:15-05:00\",\"transaction\":{\"id\":\"tr6p1cxmzcorfv5lvu60\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"64715175\",\"creation_date\":\"2023-07-25T15:24:06-05:00\",\"operation_date\":\"2023-07-25T15:26:01-05:00\",\"description\":\"Pago Mensual academia: Gregorio Arboleda Fernandez (1036457052)\",\"error_message\":null,\"order_id\":\"_1690316643.1952\",\"due_date\":\"2023-07-26T03:24:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gregorio\",\"last_name\":\"Arboleda Fernandez\",\"email\":\"vivirbiensabaneta@gmail.com\",\"phone_number\":\"3122773145\",\"address\":null,\"creation_date\":\"2023-07-25T15:24:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 20:26:16','2023-07-25 20:26:16'),(6935,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T15:27:25-05:00\",\"transaction\":{\"id\":\"tr5rvobhtptclw7eaci3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T15:26:47-05:00\",\"operation_date\":\"2023-07-25T15:26:47-05:00\",\"description\":\"Pago Mensual academia: Gregorio Arboleda Fernandez (1036457052)\",\"error_message\":null,\"order_id\":\"05B8CAAF6BA6F4BDB68675AB8B893BDA_3FYQZXMSNV_1690316805.0446\",\"due_date\":\"2023-07-26T03:26:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gregorio\",\"last_name\":\"Arboleda Fernandez\",\"email\":\"vivirbiensabaneta@gmail.com\",\"phone_number\":\"3122773145\",\"address\":null,\"creation_date\":\"2023-07-25T15:26:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5rvobhtptclw7eaci3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 20:27:26','2023-07-25 20:27:26'),(6936,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T15:28:36-05:00\",\"transaction\":{\"id\":\"tr5rvobhtptclw7eaci3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"64721540\",\"creation_date\":\"2023-07-25T15:26:47-05:00\",\"operation_date\":\"2023-07-25T15:28:22-05:00\",\"description\":\"Pago Mensual academia: Gregorio Arboleda Fernandez (1036457052)\",\"error_message\":null,\"order_id\":\"05B8CAAF6BA6F4BDB68675AB8B893BDA_3FYQZXMSNV_1690316805.0446\",\"due_date\":\"2023-07-26T03:26:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gregorio\",\"last_name\":\"Arboleda Fernandez\",\"email\":\"vivirbiensabaneta@gmail.com\",\"phone_number\":\"3122773145\",\"address\":null,\"creation_date\":\"2023-07-25T15:26:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 20:28:37','2023-07-25 20:28:37'),(6937,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T15:30:30-05:00\",\"transaction\":{\"id\":\"traar8vu7lmblvdccegc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T15:29:40-05:00\",\"operation_date\":\"2023-07-25T15:29:40-05:00\",\"description\":\"Pago Mensual academia: Gregorio Arboleda Fernandez (1036457052)\",\"error_message\":null,\"order_id\":\"6AD4174EBA19ECB5FED17411A34FF5E6_G4JXZYAP6K_1690316976.7892\",\"due_date\":\"2023-07-26T03:29:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gregorio\",\"last_name\":\"Arboleda Fernandez\",\"email\":\"vivirbiensabaneta@gmail.com\",\"phone_number\":\"3122773145\",\"address\":null,\"creation_date\":\"2023-07-25T15:29:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traar8vu7lmblvdccegc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 20:30:30','2023-07-25 20:30:30'),(6938,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T15:31:32-05:00\",\"transaction\":{\"id\":\"traar8vu7lmblvdccegc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"64728984\",\"creation_date\":\"2023-07-25T15:29:40-05:00\",\"operation_date\":\"2023-07-25T15:31:21-05:00\",\"description\":\"Pago Mensual academia: Gregorio Arboleda Fernandez (1036457052)\",\"error_message\":null,\"order_id\":\"6AD4174EBA19ECB5FED17411A34FF5E6_G4JXZYAP6K_1690316976.7892\",\"due_date\":\"2023-07-26T03:29:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gregorio\",\"last_name\":\"Arboleda Fernandez\",\"email\":\"vivirbiensabaneta@gmail.com\",\"phone_number\":\"3122773145\",\"address\":null,\"creation_date\":\"2023-07-25T15:29:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 20:31:33','2023-07-25 20:31:33'),(6939,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  862\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T15:50:20-05:00\",\"transaction\":{\"id\":\"truovpuh33i4ytewozfr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-25T15:50:20-05:00\",\"operation_date\":\"2023-07-25T15:50:20-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"DB8E1AF0CB3ACA1AE2D0018624204529_A170I98NF2_1690318215.1932\",\"amount\":252000.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Toro Agudelo\",\"email\":\"emmanueltoroagudelo@gmail.com\",\"phone_number\":\"3114329097\",\"address\":null,\"creation_date\":\"2023-07-25T15:50:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/truovpuh33i4ytewozfr/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-25 20:50:21','2023-07-25 20:50:21'),(6940,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1109\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T15:53:10-05:00\",\"transaction\":{\"id\":\"truovpuh33i4ytewozfr\",\"authorization\":\"094650\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-25T15:50:20-05:00\",\"operation_date\":\"2023-07-25T15:53:07-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"DB8E1AF0CB3ACA1AE2D0018624204529_A170I98NF2_1690318215.1932\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"409355XXXXXX6092\",\"holder_name\":\"Jesus Agudelo\",\"expiration_year\":\"28\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOLOMBIA -NEQUI\",\"bank_code\":\"000\"},\"amount\":252000.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Toro Agudelo\",\"email\":\"emmanueltoroagudelo@gmail.com\",\"phone_number\":\"3114329097\",\"address\":null,\"creation_date\":\"2023-07-25T15:50:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/truovpuh33i4ytewozfr/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-25 20:53:11','2023-07-25 20:53:11'),(6941,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T17:29:36-05:00\",\"transaction\":{\"id\":\"trhcflgupgaev48aayqy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T17:28:46-05:00\",\"operation_date\":\"2023-07-25T17:28:46-05:00\",\"description\":\"Pago Mensual academia: Emilio Rios Niño (1025773978)\",\"error_message\":null,\"order_id\":\"8004D637B6236202217BE3DFCDD8CE59_DC2ZINPYLM_1690324109.7698\",\"due_date\":\"2023-07-26T05:28:46-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Rios Niño\",\"email\":\"jhonatanandresriosgracia1729@gmail.com\",\"phone_number\":\"3014168946\",\"address\":null,\"creation_date\":\"2023-07-25T17:28:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhcflgupgaev48aayqy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 22:29:36','2023-07-25 22:29:36'),(6942,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T17:42:46-05:00\",\"transaction\":{\"id\":\"trkf7z29h7vidb6liu9w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T17:42:08-05:00\",\"operation_date\":\"2023-07-25T17:42:08-05:00\",\"description\":\"Pago Mensual academia: Matias Alvarez Montes (1020326486)\",\"error_message\":null,\"order_id\":\"512FC3C5227F637E41437C999A2D3169_TUEL7KNA84_1690324919.8439\",\"due_date\":\"2023-07-26T05:42:08-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Silvana\",\"last_name\":\"Montes Gonzalez\",\"email\":\"silvana_m03@hotmail.com\",\"phone_number\":\"3148124200\",\"address\":null,\"creation_date\":\"2023-07-25T17:42:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkf7z29h7vidb6liu9w/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 22:42:47','2023-07-25 22:42:47'),(6943,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T17:43:39-05:00\",\"transaction\":{\"id\":\"trkf7z29h7vidb6liu9w\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"65028415\",\"creation_date\":\"2023-07-25T17:42:08-05:00\",\"operation_date\":\"2023-07-25T17:43:33-05:00\",\"description\":\"Pago Mensual academia: Matias Alvarez Montes (1020326486)\",\"error_message\":null,\"order_id\":\"512FC3C5227F637E41437C999A2D3169_TUEL7KNA84_1690324919.8439\",\"due_date\":\"2023-07-26T05:42:08-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Silvana\",\"last_name\":\"Montes Gonzalez\",\"email\":\"silvana_m03@hotmail.com\",\"phone_number\":\"3148124200\",\"address\":null,\"creation_date\":\"2023-07-25T17:42:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 22:43:40','2023-07-25 22:43:40'),(6944,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-25T16:51:10-06:00\",\"transaction\":{\"id\":\"trhcflgupgaev48aayqy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-25T17:28:46-06:00\",\"operation_date\":\"2023-07-25T17:29:43-06:00\",\"description\":\"Pago Mensual academia: Emilio Rios Niño (1025773978)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"8004D637B6236202217BE3DFCDD8CE59_DC2ZINPYLM_1690324109.7698\",\"due_date\":\"2023-07-26T05:28:46-06:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Rios Niño\",\"email\":\"jhonatanandresriosgracia1729@gmail.com\",\"phone_number\":\"3014168946\",\"address\":null,\"creation_date\":\"2023-07-25T17:28:46-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 22:51:11','2023-07-25 22:51:11'),(6945,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T17:59:34-05:00\",\"transaction\":{\"id\":\"trayacirtlra5jn2eoam\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T17:58:52-05:00\",\"operation_date\":\"2023-07-25T17:58:52-05:00\",\"description\":\"Pago Mensual academia: Emilio Rios Niño (1025773978)\",\"error_message\":null,\"order_id\":\"8004D637B6236202217BE3DFCDD8CE59_DC2ZINPYLM_1690325923.0875\",\"due_date\":\"2023-07-26T05:58:52-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Rios Niño\",\"email\":\"jhonatanandresriosgracia1729@gmail.com\",\"phone_number\":\"3014168946\",\"address\":null,\"creation_date\":\"2023-07-25T17:58:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trayacirtlra5jn2eoam/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 22:59:35','2023-07-25 22:59:35'),(6946,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T18:01:29-05:00\",\"transaction\":{\"id\":\"trayacirtlra5jn2eoam\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"65061897\",\"creation_date\":\"2023-07-25T17:58:52-05:00\",\"operation_date\":\"2023-07-25T18:01:08-05:00\",\"description\":\"Pago Mensual academia: Emilio Rios Niño (1025773978)\",\"error_message\":null,\"order_id\":\"8004D637B6236202217BE3DFCDD8CE59_DC2ZINPYLM_1690325923.0875\",\"due_date\":\"2023-07-26T05:58:52-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Rios Niño\",\"email\":\"jhonatanandresriosgracia1729@gmail.com\",\"phone_number\":\"3014168946\",\"address\":null,\"creation_date\":\"2023-07-25T17:58:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-25 23:01:30','2023-07-25 23:01:30'),(6947,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  879\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-25T20:41:37-05:00\",\"transaction\":{\"id\":\"trokeuhpp5ca1nvd4sbf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-25T20:40:52-05:00\",\"operation_date\":\"2023-07-25T20:40:52-05:00\",\"description\":\"Pago Mensual academia: pedro mejia angulo (1035011107)\",\"error_message\":null,\"order_id\":\"_1690335649.2915\",\"due_date\":\"2023-07-26T08:40:52-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"pedro\",\"last_name\":\"mejia angulo\",\"email\":\"paula.angulo2008@gmail.com\",\"phone_number\":\"3183502233\",\"address\":null,\"creation_date\":\"2023-07-25T20:40:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trokeuhpp5ca1nvd4sbf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 01:41:38','2023-07-26 01:41:38'),(6948,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  761\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-25T20:42:43-05:00\",\"transaction\":{\"id\":\"trokeuhpp5ca1nvd4sbf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"65362017\",\"creation_date\":\"2023-07-25T20:40:52-05:00\",\"operation_date\":\"2023-07-25T20:42:37-05:00\",\"description\":\"Pago Mensual academia: pedro mejia angulo (1035011107)\",\"error_message\":null,\"order_id\":\"_1690335649.2915\",\"due_date\":\"2023-07-26T08:40:52-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"pedro\",\"last_name\":\"mejia angulo\",\"email\":\"paula.angulo2008@gmail.com\",\"phone_number\":\"3183502233\",\"address\":null,\"creation_date\":\"2023-07-25T20:40:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 01:42:43','2023-07-26 01:42:43'),(6949,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T08:58:42-05:00\",\"transaction\":{\"id\":\"trspgmdwllqcx8kj9rof\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T08:57:48-05:00\",\"operation_date\":\"2023-07-26T08:57:48-05:00\",\"description\":\"Pago Mensual academia: Emiliano Velez Lopez (1035004231)\",\"error_message\":null,\"order_id\":\"3B5020BB891119B9F5130F1FEA9BD773_U67M9YP0R3_1690379863.7357\",\"due_date\":\"2023-07-26T20:57:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana\",\"last_name\":\"lopez\",\"email\":\"diana.m.lopez@hotmail.com\",\"phone_number\":\"3104404618\",\"address\":null,\"creation_date\":\"2023-07-26T08:57:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trspgmdwllqcx8kj9rof/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 13:58:43','2023-07-26 13:58:43'),(6950,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T08:00:17-06:00\",\"transaction\":{\"id\":\"trspgmdwllqcx8kj9rof\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"65815279\",\"creation_date\":\"2023-07-26T08:57:48-06:00\",\"operation_date\":\"2023-07-26T09:00:02-06:00\",\"description\":\"Pago Mensual academia: Emiliano Velez Lopez (1035004231)\",\"error_message\":null,\"order_id\":\"3B5020BB891119B9F5130F1FEA9BD773_U67M9YP0R3_1690379863.7357\",\"due_date\":\"2023-07-26T20:57:48-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"diana\",\"last_name\":\"lopez\",\"email\":\"diana.m.lopez@hotmail.com\",\"phone_number\":\"3104404618\",\"address\":null,\"creation_date\":\"2023-07-26T08:57:48-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 14:00:17','2023-07-26 14:00:17'),(6951,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T09:04:07-05:00\",\"transaction\":{\"id\":\"tr5e9wuop0vsshgidqrc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T09:03:16-05:00\",\"operation_date\":\"2023-07-26T09:03:16-05:00\",\"description\":\"Pago Mensual academia: isaac cardona jimenez (1023595539)\",\"error_message\":null,\"order_id\":\"ADA5E0B63EF60E2239FA8ABDD4AA2F8E_YOH15NWR6M_1690380192.8252\",\"due_date\":\"2023-07-26T21:03:16-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"lina maria\",\"last_name\":\"jimenez mejia\",\"email\":\"lilo.jimenez.89@gmail.com\",\"phone_number\":\"3015026020\",\"address\":null,\"creation_date\":\"2023-07-26T09:03:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5e9wuop0vsshgidqrc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 14:04:08','2023-07-26 14:04:08'),(6952,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T09:05:22-05:00\",\"transaction\":{\"id\":\"tr5e9wuop0vsshgidqrc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"65825408\",\"creation_date\":\"2023-07-26T09:03:16-05:00\",\"operation_date\":\"2023-07-26T09:05:13-05:00\",\"description\":\"Pago Mensual academia: isaac cardona jimenez (1023595539)\",\"error_message\":null,\"order_id\":\"ADA5E0B63EF60E2239FA8ABDD4AA2F8E_YOH15NWR6M_1690380192.8252\",\"due_date\":\"2023-07-26T21:03:16-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"lina maria\",\"last_name\":\"jimenez mejia\",\"email\":\"lilo.jimenez.89@gmail.com\",\"phone_number\":\"3015026020\",\"address\":null,\"creation_date\":\"2023-07-26T09:03:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 14:05:23','2023-07-26 14:05:23'),(6953,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T10:49:06-05:00\",\"transaction\":{\"id\":\"tr8fcxvltbdyjwofymhs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T10:48:23-05:00\",\"operation_date\":\"2023-07-26T10:48:23-05:00\",\"description\":\"Pago Mensual academia: Martín Hurtatiz Zuluaga (1108260262)\",\"error_message\":null,\"order_id\":\"B23F52202479E957B9BADA847C1175D7_DRWQLCTJ4Z_1690386499.1125\",\"due_date\":\"2023-07-26T22:48:23-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gentil\",\"last_name\":\"Hurtatiz Tovar\",\"email\":\"gehuto@gmail.com\",\"phone_number\":\"3168708060\",\"address\":null,\"creation_date\":\"2023-07-26T10:48:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8fcxvltbdyjwofymhs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 15:49:07','2023-07-26 15:49:07'),(6954,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  843\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-26T10:12:11-06:00\",\"transaction\":{\"id\":\"tr8fcxvltbdyjwofymhs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-26T10:48:23-06:00\",\"operation_date\":\"2023-07-26T10:49:13-06:00\",\"description\":\"Pago Mensual academia: Martín Hurtatiz Zuluaga (1108260262)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"B23F52202479E957B9BADA847C1175D7_DRWQLCTJ4Z_1690386499.1125\",\"due_date\":\"2023-07-26T22:48:23-06:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"Gentil\",\"last_name\":\"Hurtatiz Tovar\",\"email\":\"gehuto@gmail.com\",\"phone_number\":\"3168708060\",\"address\":null,\"creation_date\":\"2023-07-26T10:48:23-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 16:12:12','2023-07-26 16:12:12'),(6955,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T12:08:08-05:00\",\"transaction\":{\"id\":\"trf2bavqdk4jg1gclmp0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T12:07:21-05:00\",\"operation_date\":\"2023-07-26T12:07:21-05:00\",\"description\":\"Pago Mensual academia: Martín Hurtatiz Zuluaga (1108260262)\",\"error_message\":null,\"order_id\":\"B23F52202479E957B9BADA847C1175D7_DRWQLCTJ4Z_1690391234.3943\",\"due_date\":\"2023-07-27T00:07:21-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gentil\",\"last_name\":\"Hurtatiz Tovar\",\"email\":\"gehuto@gmail.com\",\"phone_number\":\"3168708060\",\"address\":null,\"creation_date\":\"2023-07-26T12:07:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trf2bavqdk4jg1gclmp0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 17:08:09','2023-07-26 17:08:09'),(6956,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T12:11:09-05:00\",\"transaction\":{\"id\":\"trf2bavqdk4jg1gclmp0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"66239219\",\"creation_date\":\"2023-07-26T12:07:21-05:00\",\"operation_date\":\"2023-07-26T12:10:58-05:00\",\"description\":\"Pago Mensual academia: Martín Hurtatiz Zuluaga (1108260262)\",\"error_message\":null,\"order_id\":\"B23F52202479E957B9BADA847C1175D7_DRWQLCTJ4Z_1690391234.3943\",\"due_date\":\"2023-07-27T00:07:21-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gentil\",\"last_name\":\"Hurtatiz Tovar\",\"email\":\"gehuto@gmail.com\",\"phone_number\":\"3168708060\",\"address\":null,\"creation_date\":\"2023-07-26T12:07:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 17:11:10','2023-07-26 17:11:10'),(6957,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T14:08:45-05:00\",\"transaction\":{\"id\":\"trdb8tkeurqy1bny04zb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T14:07:09-05:00\",\"operation_date\":\"2023-07-26T14:07:09-05:00\",\"description\":\"Pago Inscripción academia: Martin Gonzalez Gallego (1035011968)\",\"error_message\":null,\"order_id\":\"CC3D69ED781B16BCE06687822AE56E6D_KAQCLB5RU3_1690398426.1124\",\"due_date\":\"2023-07-27T02:07:09-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Yohn Kellin\",\"last_name\":\"Gonzalez Vargas \",\"email\":\"marcela440@hotmail.com\",\"phone_number\":\"3218310501\",\"address\":null,\"creation_date\":\"2023-07-26T14:07:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdb8tkeurqy1bny04zb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 19:08:45','2023-07-26 19:08:45'),(6958,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T14:09:00-05:00\",\"transaction\":{\"id\":\"trmmpzld07ztdgkwuhep\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T14:08:10-05:00\",\"operation_date\":\"2023-07-26T14:08:10-05:00\",\"description\":\"Pago Mensual academia: Emiliano Velez Lopez (1035004231)\",\"error_message\":null,\"order_id\":\"60792D855CD8A912A97711F91A1F155C_V5ASYZB73U_1690398483.8579\",\"due_date\":\"2023-07-27T02:08:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana\",\"last_name\":\"lopez\",\"email\":\"diana.m.lopez@hotmail.com\",\"phone_number\":\"3104404618\",\"address\":null,\"creation_date\":\"2023-07-26T14:08:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmmpzld07ztdgkwuhep/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 19:09:01','2023-07-26 19:09:01'),(6959,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T14:10:06-05:00\",\"transaction\":{\"id\":\"trdb8tkeurqy1bny04zb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"66491250\",\"creation_date\":\"2023-07-26T14:07:09-05:00\",\"operation_date\":\"2023-07-26T14:09:48-05:00\",\"description\":\"Pago Inscripción academia: Martin Gonzalez Gallego (1035011968)\",\"error_message\":null,\"order_id\":\"CC3D69ED781B16BCE06687822AE56E6D_KAQCLB5RU3_1690398426.1124\",\"due_date\":\"2023-07-27T02:07:09-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Yohn Kellin\",\"last_name\":\"Gonzalez Vargas \",\"email\":\"marcela440@hotmail.com\",\"phone_number\":\"3218310501\",\"address\":null,\"creation_date\":\"2023-07-26T14:07:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 19:10:07','2023-07-26 19:10:07'),(6960,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T14:10:41-05:00\",\"transaction\":{\"id\":\"trmmpzld07ztdgkwuhep\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"66491801\",\"creation_date\":\"2023-07-26T14:08:10-05:00\",\"operation_date\":\"2023-07-26T14:10:31-05:00\",\"description\":\"Pago Mensual academia: Emiliano Velez Lopez (1035004231)\",\"error_message\":null,\"order_id\":\"60792D855CD8A912A97711F91A1F155C_V5ASYZB73U_1690398483.8579\",\"due_date\":\"2023-07-27T02:08:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana\",\"last_name\":\"lopez\",\"email\":\"diana.m.lopez@hotmail.com\",\"phone_number\":\"3104404618\",\"address\":null,\"creation_date\":\"2023-07-26T14:08:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 19:10:42','2023-07-26 19:10:42'),(6961,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T14:16:34-05:00\",\"transaction\":{\"id\":\"traoy2ivqvc7y1wz8dag\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T14:15:49-05:00\",\"operation_date\":\"2023-07-26T14:15:49-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Lopez Moncada (1013464497)\",\"error_message\":null,\"order_id\":\"DE7092BA6DF4276921D27A3704C57998_JW1OCK0E9Q_1690398943.3917\",\"due_date\":\"2023-07-27T02:15:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Lopez Moncada\",\"email\":\"Nataliamoncada.smile@gmail.com\",\"phone_number\":\"3145864541\",\"address\":null,\"creation_date\":\"2023-07-26T14:15:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traoy2ivqvc7y1wz8dag/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 19:16:35','2023-07-26 19:16:35'),(6962,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  828\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T14:18:08-05:00\",\"transaction\":{\"id\":\"traoy2ivqvc7y1wz8dag\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"66509268\",\"creation_date\":\"2023-07-26T14:15:49-05:00\",\"operation_date\":\"2023-07-26T14:17:52-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Lopez Moncada (1013464497)\",\"error_message\":null,\"order_id\":\"DE7092BA6DF4276921D27A3704C57998_JW1OCK0E9Q_1690398943.3917\",\"due_date\":\"2023-07-27T02:15:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Lopez Moncada\",\"email\":\"Nataliamoncada.smile@gmail.com\",\"phone_number\":\"3145864541\",\"address\":null,\"creation_date\":\"2023-07-26T14:15:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 19:18:09','2023-07-26 19:18:09'),(6963,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T14:19:24-05:00\",\"transaction\":{\"id\":\"trd3fopnmfl72v6q45y3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T14:18:47-05:00\",\"operation_date\":\"2023-07-26T14:18:47-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Lopez Moncada (1013464497)\",\"error_message\":null,\"order_id\":\"62F91CE9B820A491EE78C108636DB089_34L7KAZES6_1690399122.6791\",\"due_date\":\"2023-07-27T02:18:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Lopez Moncada\",\"email\":\"Nataliamoncada.smile@gmail.com\",\"phone_number\":\"3145864541\",\"address\":null,\"creation_date\":\"2023-07-26T14:18:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trd3fopnmfl72v6q45y3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 19:19:25','2023-07-26 19:19:25'),(6964,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  828\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T14:20:53-05:00\",\"transaction\":{\"id\":\"trd3fopnmfl72v6q45y3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"66516066\",\"creation_date\":\"2023-07-26T14:18:47-05:00\",\"operation_date\":\"2023-07-26T14:20:40-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Lopez Moncada (1013464497)\",\"error_message\":null,\"order_id\":\"62F91CE9B820A491EE78C108636DB089_34L7KAZES6_1690399122.6791\",\"due_date\":\"2023-07-27T02:18:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Lopez Moncada\",\"email\":\"Nataliamoncada.smile@gmail.com\",\"phone_number\":\"3145864541\",\"address\":null,\"creation_date\":\"2023-07-26T14:18:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 19:20:54','2023-07-26 19:20:54'),(6965,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T17:13:48-05:00\",\"transaction\":{\"id\":\"trslgii1jfce38z4p5wv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T17:13:02-05:00\",\"operation_date\":\"2023-07-26T17:13:02-05:00\",\"description\":\"Pago Mensual academia: Pedro Osorio Moreno (1027811391)\",\"error_message\":null,\"order_id\":\"C5D9256689C43036581F781C61F26E50_1XQK75APR2_1690409576.3113\",\"due_date\":\"2023-07-27T05:13:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Moreno\",\"email\":\"mdaleja@hotmail.com\",\"phone_number\":\"3218002631\",\"address\":null,\"creation_date\":\"2023-07-26T17:13:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trslgii1jfce38z4p5wv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 22:13:49','2023-07-26 22:13:49'),(6966,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  842\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-26T16:24:11-06:00\",\"transaction\":{\"id\":\"trslgii1jfce38z4p5wv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-26T17:13:02-06:00\",\"operation_date\":\"2023-07-26T17:13:02-06:00\",\"description\":\"Pago Mensual academia: Pedro Osorio Moreno (1027811391)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"C5D9256689C43036581F781C61F26E50_1XQK75APR2_1690409576.3113\",\"due_date\":\"2023-07-27T05:13:02-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Moreno\",\"email\":\"mdaleja@hotmail.com\",\"phone_number\":\"3218002631\",\"address\":null,\"creation_date\":\"2023-07-26T17:13:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 22:24:12','2023-07-26 22:24:12'),(6967,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T17:41:31-05:00\",\"transaction\":{\"id\":\"tr1p064jpayfcvjrledh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T17:40:47-05:00\",\"operation_date\":\"2023-07-26T17:40:47-05:00\",\"description\":\"Pago Mensual academia: Mathias Ignacio Rodriguez Pozo (1017940330)\",\"error_message\":null,\"order_id\":\"272E11700558E27BE60F7489D2D782E7_9OASXRP57J_1690411243.3584\",\"due_date\":\"2023-07-27T05:40:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose \",\"last_name\":\"rodriguez \",\"email\":\"claudypozo@hotmail.com\",\"phone_number\":\"3104638412\",\"address\":null,\"creation_date\":\"2023-07-26T17:40:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1p064jpayfcvjrledh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 22:41:32','2023-07-26 22:41:32'),(6968,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T17:42:47-05:00\",\"transaction\":{\"id\":\"tr1p064jpayfcvjrledh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"66979417\",\"creation_date\":\"2023-07-26T17:40:47-05:00\",\"operation_date\":\"2023-07-26T17:42:41-05:00\",\"description\":\"Pago Mensual academia: Mathias Ignacio Rodriguez Pozo (1017940330)\",\"error_message\":null,\"order_id\":\"272E11700558E27BE60F7489D2D782E7_9OASXRP57J_1690411243.3584\",\"due_date\":\"2023-07-27T05:40:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose \",\"last_name\":\"rodriguez \",\"email\":\"claudypozo@hotmail.com\",\"phone_number\":\"3104638412\",\"address\":null,\"creation_date\":\"2023-07-26T17:40:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 22:42:47','2023-07-26 22:42:47'),(6969,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T18:04:44-05:00\",\"transaction\":{\"id\":\"trx00dghvahu647ppmgx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T18:03:28-05:00\",\"operation_date\":\"2023-07-26T18:03:28-05:00\",\"description\":\"Pago Mensual academia: Yilmer Sneider Piratoba Vergara (1092542886)\",\"error_message\":null,\"order_id\":\"96629F1AAC6DDB7A7CFA82574B6722D4_PZV8Y6LX5R_1690412600.5185\",\"due_date\":\"2023-07-27T06:03:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"William\",\"last_name\":\"Piratoba\",\"email\":\"yilmerly123@gmail.com\",\"phone_number\":\"3217863160\",\"address\":null,\"creation_date\":\"2023-07-26T18:03:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trx00dghvahu647ppmgx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 23:04:44','2023-07-26 23:04:44'),(6970,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T17:09:18-06:00\",\"transaction\":{\"id\":\"trx00dghvahu647ppmgx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"67024321\",\"creation_date\":\"2023-07-26T18:03:28-06:00\",\"operation_date\":\"2023-07-26T18:06:50-06:00\",\"description\":\"Pago Mensual academia: Yilmer Sneider Piratoba Vergara (1092542886)\",\"error_message\":null,\"order_id\":\"96629F1AAC6DDB7A7CFA82574B6722D4_PZV8Y6LX5R_1690412600.5185\",\"due_date\":\"2023-07-27T06:03:28-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"William\",\"last_name\":\"Piratoba\",\"email\":\"yilmerly123@gmail.com\",\"phone_number\":\"3217863160\",\"address\":null,\"creation_date\":\"2023-07-26T18:03:28-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 23:09:19','2023-07-26 23:09:19'),(6971,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  947\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T18:30:19-05:00\",\"transaction\":{\"id\":\"tr2dsvxankrzeuvfptxa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T18:27:10-05:00\",\"operation_date\":\"2023-07-26T18:27:10-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Acevedo Atehortua (1025652843)\",\"error_message\":null,\"order_id\":\"75B9B6DC7FE44437C6E0A69FD863DBAB_DUMB0AI2T9_1690414021.099\",\"due_date\":\"2023-07-27T06:27:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Andrea \",\"last_name\":\"Atehortua Higuita\",\"email\":\"naty1017147045@gmail.com\",\"phone_number\":\"3007211948\",\"address\":null,\"creation_date\":\"2023-07-26T18:27:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2dsvxankrzeuvfptxa/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 23:30:20','2023-07-26 23:30:20'),(6972,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T18:30:26-05:00\",\"transaction\":{\"id\":\"trqklt5mkwxrtyqpqcmh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T18:28:53-05:00\",\"operation_date\":\"2023-07-26T18:28:53-05:00\",\"description\":\"Pago Mensual academia: Martin Gonzalez Arango (1034998667)\",\"error_message\":null,\"order_id\":\"37E7897F62E8D91B1CE60515829CA282_2F1OEZY8L3_1690414127.8013\",\"due_date\":\"2023-07-27T06:28:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sergio\",\"last_name\":\"Gonzalez\",\"email\":\"soyeldiezmasdiez@gmail.com\",\"phone_number\":\"3004021840\",\"address\":null,\"creation_date\":\"2023-07-26T18:28:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqklt5mkwxrtyqpqcmh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 23:30:27','2023-07-26 23:30:27'),(6973,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  829\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T18:31:45-05:00\",\"transaction\":{\"id\":\"tr2dsvxankrzeuvfptxa\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"67073490\",\"creation_date\":\"2023-07-26T18:27:10-05:00\",\"operation_date\":\"2023-07-26T18:31:32-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Acevedo Atehortua (1025652843)\",\"error_message\":null,\"order_id\":\"75B9B6DC7FE44437C6E0A69FD863DBAB_DUMB0AI2T9_1690414021.099\",\"due_date\":\"2023-07-27T06:27:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Andrea \",\"last_name\":\"Atehortua Higuita\",\"email\":\"naty1017147045@gmail.com\",\"phone_number\":\"3007211948\",\"address\":null,\"creation_date\":\"2023-07-26T18:27:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 23:31:46','2023-07-26 23:31:46'),(6974,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T18:31:47-05:00\",\"transaction\":{\"id\":\"trqklt5mkwxrtyqpqcmh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"67073698\",\"creation_date\":\"2023-07-26T18:28:53-05:00\",\"operation_date\":\"2023-07-26T18:31:39-05:00\",\"description\":\"Pago Mensual academia: Martin Gonzalez Arango (1034998667)\",\"error_message\":null,\"order_id\":\"37E7897F62E8D91B1CE60515829CA282_2F1OEZY8L3_1690414127.8013\",\"due_date\":\"2023-07-27T06:28:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sergio\",\"last_name\":\"Gonzalez\",\"email\":\"soyeldiezmasdiez@gmail.com\",\"phone_number\":\"3004021840\",\"address\":null,\"creation_date\":\"2023-07-26T18:28:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-26 23:31:47','2023-07-26 23:31:47'),(6975,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T19:12:11-05:00\",\"transaction\":{\"id\":\"tr2d4mz7299rnpdgefsf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T19:11:31-05:00\",\"operation_date\":\"2023-07-26T19:11:31-05:00\",\"description\":\"Pago Mensual academia: Tomás Gallo Montoya (1023549058)\",\"error_message\":null,\"order_id\":\"4AEC1B3435C52ABBDF8334EA0E7141E0_GUX15DZTKC_1690416688.0105\",\"due_date\":\"2023-07-27T07:11:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tomás\",\"last_name\":\"Gallo Montoya\",\"email\":\"Yuranymontoya79@gmail.com\",\"phone_number\":\"3116265680\",\"address\":null,\"creation_date\":\"2023-07-26T19:11:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2d4mz7299rnpdgefsf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 00:12:12','2023-07-27 00:12:12'),(6976,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  847\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-26T19:13:05-05:00\",\"transaction\":{\"id\":\"tr2d4mz7299rnpdgefsf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-26T19:11:31-05:00\",\"operation_date\":\"2023-07-26T19:12:17-05:00\",\"description\":\"Pago Mensual academia: Tomás Gallo Montoya (1023549058)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"4AEC1B3435C52ABBDF8334EA0E7141E0_GUX15DZTKC_1690416688.0105\",\"due_date\":\"2023-07-27T07:11:31-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Tomás\",\"last_name\":\"Gallo Montoya\",\"email\":\"Yuranymontoya79@gmail.com\",\"phone_number\":\"3116265680\",\"address\":null,\"creation_date\":\"2023-07-26T19:11:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 00:13:06','2023-07-27 00:13:06'),(6977,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T19:13:42-05:00\",\"transaction\":{\"id\":\"trsizw6k1lyhv9sxpq7j\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T19:13:19-05:00\",\"operation_date\":\"2023-07-26T19:13:19-05:00\",\"description\":\"Pago Mensual academia: Tomás Gallo Montoya (1023549058)\",\"error_message\":null,\"order_id\":\"4AEC1B3435C52ABBDF8334EA0E7141E0_GUX15DZTKC_1690416797.7283\",\"due_date\":\"2023-07-27T07:13:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tomás\",\"last_name\":\"Gallo Montoya\",\"email\":\"Yuranymontoya79@gmail.com\",\"phone_number\":\"3116265680\",\"address\":null,\"creation_date\":\"2023-07-26T19:13:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsizw6k1lyhv9sxpq7j/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 00:13:42','2023-07-27 00:13:42'),(6978,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  847\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-26T18:15:24-06:00\",\"transaction\":{\"id\":\"trsizw6k1lyhv9sxpq7j\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-26T19:13:19-06:00\",\"operation_date\":\"2023-07-26T19:13:47-06:00\",\"description\":\"Pago Mensual academia: Tomás Gallo Montoya (1023549058)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"4AEC1B3435C52ABBDF8334EA0E7141E0_GUX15DZTKC_1690416797.7283\",\"due_date\":\"2023-07-27T07:13:19-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Tomás\",\"last_name\":\"Gallo Montoya\",\"email\":\"Yuranymontoya79@gmail.com\",\"phone_number\":\"3116265680\",\"address\":null,\"creation_date\":\"2023-07-26T19:13:19-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 00:15:25','2023-07-27 00:15:25'),(6979,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-26T19:23:45-05:00\",\"transaction\":{\"id\":\"trh4jgipwzjorpxu9plg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-26T19:23:16-05:00\",\"operation_date\":\"2023-07-26T19:23:16-05:00\",\"description\":\"Pago Mensual academia: Tomás Gallo Montoya (1023549058)\",\"error_message\":null,\"order_id\":\"4AEC1B3435C52ABBDF8334EA0E7141E0_GUX15DZTKC_1690417394.6742\",\"due_date\":\"2023-07-27T07:23:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tomás\",\"last_name\":\"Gallo Montoya\",\"email\":\"Yuranymontoya79@gmail.com\",\"phone_number\":\"3116265680\",\"address\":null,\"creation_date\":\"2023-07-26T19:23:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trh4jgipwzjorpxu9plg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 00:23:46','2023-07-27 00:23:46'),(6980,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-26T18:27:13-06:00\",\"transaction\":{\"id\":\"trh4jgipwzjorpxu9plg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"67176787\",\"creation_date\":\"2023-07-26T19:23:16-06:00\",\"operation_date\":\"2023-07-26T19:24:36-06:00\",\"description\":\"Pago Mensual academia: Tomás Gallo Montoya (1023549058)\",\"error_message\":null,\"order_id\":\"4AEC1B3435C52ABBDF8334EA0E7141E0_GUX15DZTKC_1690417394.6742\",\"due_date\":\"2023-07-27T07:23:16-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tomás\",\"last_name\":\"Gallo Montoya\",\"email\":\"Yuranymontoya79@gmail.com\",\"phone_number\":\"3116265680\",\"address\":null,\"creation_date\":\"2023-07-26T19:23:16-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 00:27:14','2023-07-27 00:27:14'),(6981,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-07-27T02:15:43-06:00\",\"transaction\":{\"id\":\"trznsutf24mhrxeofx0d\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-26T08:56:42-06:00\",\"operation_date\":\"2023-07-26T08:56:42-06:00\",\"description\":\"Pago Mensual academia: Emiliano Velez Lopez (1035004231)\",\"error_message\":null,\"order_id\":\"60792D855CD8A912A97711F91A1F155C_V5ASYZB73U_1690379799.6667\",\"due_date\":\"2023-07-26T20:56:42-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana\",\"last_name\":\"lopez\",\"email\":\"diana.m.lopez@hotmail.com\",\"phone_number\":\"3104404618\",\"address\":null,\"creation_date\":\"2023-07-26T08:56:42-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trznsutf24mhrxeofx0d/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 08:15:44','2023-07-27 08:15:44'),(6982,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T07:22:24-05:00\",\"transaction\":{\"id\":\"trolsjjlpkissw9luetn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-27T07:21:31-05:00\",\"operation_date\":\"2023-07-27T07:21:31-05:00\",\"description\":\"Pago Mensual academia: Martín Munevar Botero (1035981767)\",\"error_message\":null,\"order_id\":\"1CFEAD9959B76CE44A847C850B61C587_6UWLDHOE9B_1690460487.947\",\"due_date\":\"2023-07-27T19:21:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MARTIN\",\"last_name\":\"MUNEVAR BOTERO\",\"email\":\"e-botero1@hotmail.com\",\"phone_number\":\"3104545932\",\"address\":null,\"creation_date\":\"2023-07-27T07:21:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trolsjjlpkissw9luetn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 12:22:25','2023-07-27 12:22:25'),(6983,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T07:23:37-05:00\",\"transaction\":{\"id\":\"trolsjjlpkissw9luetn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"67619459\",\"creation_date\":\"2023-07-27T07:21:31-05:00\",\"operation_date\":\"2023-07-27T07:23:14-05:00\",\"description\":\"Pago Mensual academia: Martín Munevar Botero (1035981767)\",\"error_message\":null,\"order_id\":\"1CFEAD9959B76CE44A847C850B61C587_6UWLDHOE9B_1690460487.947\",\"due_date\":\"2023-07-27T19:21:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MARTIN\",\"last_name\":\"MUNEVAR BOTERO\",\"email\":\"e-botero1@hotmail.com\",\"phone_number\":\"3104545932\",\"address\":null,\"creation_date\":\"2023-07-27T07:21:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 12:23:37','2023-07-27 12:23:37'),(6984,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T10:06:13-05:00\",\"transaction\":{\"id\":\"trnimcoc98omtytziyqp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-27T10:04:14-05:00\",\"operation_date\":\"2023-07-27T10:04:14-05:00\",\"description\":\"Pago Mensual academia: samuel perez jaramillo (1021933176)\",\"error_message\":null,\"order_id\":\"D4A897919A124958E699170B2B1DC8F2_13IGJP4N7V_1690470245.1446\",\"due_date\":\"2023-07-27T22:04:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nathalia\",\"last_name\":\"Jaramillo Jaramillo\",\"email\":\"publicidad@tecnologiaydiseno.com\",\"phone_number\":\"3182379354\",\"address\":null,\"creation_date\":\"2023-07-27T10:04:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnimcoc98omtytziyqp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 15:06:14','2023-07-27 15:06:14'),(6985,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T09:09:18-06:00\",\"transaction\":{\"id\":\"trnimcoc98omtytziyqp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"67889212\",\"creation_date\":\"2023-07-27T10:04:14-06:00\",\"operation_date\":\"2023-07-27T10:07:24-06:00\",\"description\":\"Pago Mensual academia: samuel perez jaramillo (1021933176)\",\"error_message\":null,\"order_id\":\"D4A897919A124958E699170B2B1DC8F2_13IGJP4N7V_1690470245.1446\",\"due_date\":\"2023-07-27T22:04:14-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nathalia\",\"last_name\":\"Jaramillo Jaramillo\",\"email\":\"publicidad@tecnologiaydiseno.com\",\"phone_number\":\"3182379354\",\"address\":null,\"creation_date\":\"2023-07-27T10:04:14-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 15:09:19','2023-07-27 15:09:19'),(6986,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T10:11:33-05:00\",\"transaction\":{\"id\":\"trrmxd25zummkhtkuxfj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-27T10:11:01-05:00\",\"operation_date\":\"2023-07-27T10:11:01-05:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"E9FB2EDA3D9C55A0D89C98D6C54B5B3E_46HUJ3NSDC_1690470657.5248\",\"due_date\":\"2023-07-27T22:11:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-07-27T10:11:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrmxd25zummkhtkuxfj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 15:11:34','2023-07-27 15:11:34'),(6987,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T10:12:23-05:00\",\"transaction\":{\"id\":\"trrmxd25zummkhtkuxfj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"67900696\",\"creation_date\":\"2023-07-27T10:11:01-05:00\",\"operation_date\":\"2023-07-27T10:12:10-05:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"E9FB2EDA3D9C55A0D89C98D6C54B5B3E_46HUJ3NSDC_1690470657.5248\",\"due_date\":\"2023-07-27T22:11:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-07-27T10:11:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 15:12:24','2023-07-27 15:12:24'),(6988,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T11:40:01-05:00\",\"transaction\":{\"id\":\"tr5ufxyi9nujgdu3sgye\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T11:40:01-05:00\",\"operation_date\":\"2023-07-27T11:40:01-05:00\",\"description\":\"Pago Mensual academia: Emiliano Yepes loaiza (1035981867)\",\"error_message\":null,\"order_id\":\"9E6A921FBC428B5638B3986E365D4F21_3COJD1BU8R_1690475994.9033\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres felipe\",\"last_name\":\"yepes\",\"email\":\"yepesa270@gmail.com\",\"phone_number\":\"3044901567\",\"address\":null,\"creation_date\":\"2023-07-27T11:40:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5ufxyi9nujgdu3sgye/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 16:40:02','2023-07-27 16:40:02'),(6989,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1142\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T11:41:52-05:00\",\"transaction\":{\"id\":\"tr5ufxyi9nujgdu3sgye\",\"authorization\":\"114151\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-27T11:40:01-05:00\",\"operation_date\":\"2023-07-27T11:41:51-05:00\",\"description\":\"Pago Mensual academia: Emiliano Yepes loaiza (1035981867)\",\"error_message\":null,\"order_id\":\"9E6A921FBC428B5638B3986E365D4F21_3COJD1BU8R_1690475994.9033\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX0703\",\"holder_name\":\"Andrés felipe yepes\",\"expiration_year\":\"25\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Andres felipe\",\"last_name\":\"yepes\",\"email\":\"yepesa270@gmail.com\",\"phone_number\":\"3044901567\",\"address\":null,\"creation_date\":\"2023-07-27T11:40:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5ufxyi9nujgdu3sgye/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 16:41:53','2023-07-27 16:41:53'),(6990,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T13:22:23-05:00\",\"transaction\":{\"id\":\"trhvbkqryqh0v14pvxut\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-27T13:20:20-05:00\",\"operation_date\":\"2023-07-27T13:20:20-05:00\",\"description\":\"Pago Inscripción academia: Thiago Rodriguez Yepes (1036461453)\",\"error_message\":null,\"order_id\":\"87F4D79E36D68C3031CCF6C55E9BBD39_OLFZWR3SJ8_1690482008.6873\",\"due_date\":\"2023-07-28T01:20:20-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Yepes\",\"email\":\"dcyepestoro@gmail.com\",\"phone_number\":\"3002899212\",\"address\":null,\"creation_date\":\"2023-07-27T13:20:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhvbkqryqh0v14pvxut/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 18:22:24','2023-07-27 18:22:24'),(6991,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T12:24:17-06:00\",\"transaction\":{\"id\":\"trhvbkqryqh0v14pvxut\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"68321542\",\"creation_date\":\"2023-07-27T13:20:20-06:00\",\"operation_date\":\"2023-07-27T13:23:36-06:00\",\"description\":\"Pago Inscripción academia: Thiago Rodriguez Yepes (1036461453)\",\"error_message\":null,\"order_id\":\"87F4D79E36D68C3031CCF6C55E9BBD39_OLFZWR3SJ8_1690482008.6873\",\"due_date\":\"2023-07-28T01:20:20-06:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Yepes\",\"email\":\"dcyepestoro@gmail.com\",\"phone_number\":\"3002899212\",\"address\":null,\"creation_date\":\"2023-07-27T13:20:20-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 18:24:17','2023-07-27 18:24:17'),(6992,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  955\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T14:15:25-05:00\",\"transaction\":{\"id\":\"trx9tgnanbmwt0s489gg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-27T14:14:51-05:00\",\"operation_date\":\"2023-07-27T14:14:51-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Castrillón Echavarria (59876198)\",\"error_message\":null,\"order_id\":\"532B7CBE070A3579F424988A040752F2_FAPNGIZ36X_1690485288.6739\",\"due_date\":\"2023-07-28T02:14:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Castrillón Echavarria\",\"email\":\"juancas2323@hotmail.com\",\"phone_number\":\"3127867266\",\"address\":null,\"creation_date\":\"2023-07-27T14:14:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trx9tgnanbmwt0s489gg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 19:15:25','2023-07-27 19:15:25'),(6993,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  837\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T14:17:03-05:00\",\"transaction\":{\"id\":\"trx9tgnanbmwt0s489gg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"68425732\",\"creation_date\":\"2023-07-27T14:14:51-05:00\",\"operation_date\":\"2023-07-27T14:16:47-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Castrillón Echavarria (59876198)\",\"error_message\":null,\"order_id\":\"532B7CBE070A3579F424988A040752F2_FAPNGIZ36X_1690485288.6739\",\"due_date\":\"2023-07-28T02:14:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Castrillón Echavarria\",\"email\":\"juancas2323@hotmail.com\",\"phone_number\":\"3127867266\",\"address\":null,\"creation_date\":\"2023-07-27T14:14:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-27 19:17:04','2023-07-27 19:17:04'),(6994,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  867\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T14:55:19-05:00\",\"transaction\":{\"id\":\"trnriamjjtwvckmfo5qx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T14:55:18-05:00\",\"operation_date\":\"2023-07-27T14:55:18-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"0AA1883C6411F7873CB83DACB17B0AFC_E-64C2CB5A-41_1690487716.0799\",\"amount\":146900.00,\"customer\":{\"name\":\"luis Alberto\",\"last_name\":\"soto fonnegra\",\"email\":\"fonnegra71@hotmail.com\",\"phone_number\":\"3207387184\",\"address\":null,\"creation_date\":\"2023-07-27T14:55:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trnriamjjtwvckmfo5qx/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 19:55:19','2023-07-27 19:55:19'),(6995,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T15:35:29-05:00\",\"transaction\":{\"id\":\"tr1gy31apfoegxp0ztai\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T15:35:29-05:00\",\"operation_date\":\"2023-07-27T15:35:29-05:00\",\"description\":\"Pago Mensual academia: mateo alfonso habeych duque (1097504214)\",\"error_message\":null,\"order_id\":\"BBB001BA009ED11717EAEC9305B2FEB6_0TCDQSP7VI_1690490126.9683\",\"amount\":165900.00,\"customer\":{\"name\":\"Mateo Alfonso\",\"last_name\":\"habeych duque\",\"email\":\"kini1892@hotmail.com\",\"phone_number\":\"3053635163\",\"address\":null,\"creation_date\":\"2023-07-27T15:35:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1gy31apfoegxp0ztai/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 20:35:30','2023-07-27 20:35:30'),(6996,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1158\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T15:36:46-05:00\",\"transaction\":{\"id\":\"tr1gy31apfoegxp0ztai\",\"authorization\":\"229418\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-27T15:35:29-05:00\",\"operation_date\":\"2023-07-27T15:36:45-05:00\",\"description\":\"Pago Mensual academia: mateo alfonso habeych duque (1097504214)\",\"error_message\":null,\"order_id\":\"BBB001BA009ED11717EAEC9305B2FEB6_0TCDQSP7VI_1690490126.9683\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"451307XXXXXX1234\",\"holder_name\":\"Paula Andrea Carmona Diaz\",\"expiration_year\":\"26\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Mateo Alfonso\",\"last_name\":\"habeych duque\",\"email\":\"kini1892@hotmail.com\",\"phone_number\":\"3053635163\",\"address\":null,\"creation_date\":\"2023-07-27T15:35:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1gy31apfoegxp0ztai/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 20:36:47','2023-07-27 20:36:47'),(6997,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  867\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T16:54:55-05:00\",\"transaction\":{\"id\":\"tro9xwnnuhz47kbncffo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T16:54:54-05:00\",\"operation_date\":\"2023-07-27T16:54:54-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"58A2FC6ED39FD083F55D4182BF88826D_E-64C2E79C-62_1690494884.1897\",\"amount\":146900.00,\"customer\":{\"name\":\"luis Alberto\",\"last_name\":\"soto fonnegra\",\"email\":\"fonnegra71@hotmail.com\",\"phone_number\":\"3207387184\",\"address\":null,\"creation_date\":\"2023-07-27T16:54:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tro9xwnnuhz47kbncffo/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 21:54:55','2023-07-27 21:54:55'),(6998,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  552\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-27T16:56:21-05:00\",\"transaction\":{\"id\":\"tr2juch39dddvresh5yw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-07-27T16:56:21-05:00\",\"operation_date\":\"2023-07-27T16:56:21-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":\"The card doesn\'t have sufficient funds\",\"order_id\":\"58A2FC6ED39FD083F55D4182BF88826D_E-64C2E79C-62_1690494884.1897\",\"error_code\":3003,\"amount\":146900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 21:56:22','2023-07-27 21:56:22'),(6999,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T17:50:41-05:00\",\"transaction\":{\"id\":\"trpnidsgepyvi2vuz6cm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T17:50:41-05:00\",\"operation_date\":\"2023-07-27T17:50:41-05:00\",\"description\":\"Pago Inscripción academia: Agustin Mora Sossa (1035015434)\",\"error_message\":null,\"order_id\":\"58191D2A914C6DAE66371C9DCDC91B41_D426BFEWTO_1690498218.1867\",\"amount\":286000.00,\"customer\":{\"name\":\"David\",\"last_name\":\"Mora Quintero\",\"email\":\"dmoraqu@gmail.com\",\"phone_number\":\"3104013189\",\"address\":null,\"creation_date\":\"2023-07-27T17:50:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpnidsgepyvi2vuz6cm/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 22:50:42','2023-07-27 22:50:42'),(7000,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1129\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T17:51:33-05:00\",\"transaction\":{\"id\":\"trpnidsgepyvi2vuz6cm\",\"authorization\":\"605133\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-27T17:50:41-05:00\",\"operation_date\":\"2023-07-27T17:51:33-05:00\",\"description\":\"Pago Inscripción academia: Agustin Mora Sossa (1035015434)\",\"error_message\":null,\"order_id\":\"58191D2A914C6DAE66371C9DCDC91B41_D426BFEWTO_1690498218.1867\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"526557XXXXXX0029\",\"holder_name\":\"David Mora Q\",\"expiration_year\":\"29\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"DAVIVIENDA\",\"bank_code\":\"000\"},\"amount\":286000.00,\"customer\":{\"name\":\"David\",\"last_name\":\"Mora Quintero\",\"email\":\"dmoraqu@gmail.com\",\"phone_number\":\"3104013189\",\"address\":null,\"creation_date\":\"2023-07-27T17:50:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpnidsgepyvi2vuz6cm/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 22:51:34','2023-07-27 22:51:34'),(7001,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  880\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T17:52:35-05:00\",\"transaction\":{\"id\":\"trv9vthgr675gz5zedi2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T17:52:35-05:00\",\"operation_date\":\"2023-07-27T17:52:35-05:00\",\"description\":\"Pago Mensual academia: Agustin Mora Sossa (1035015434)\",\"error_message\":null,\"order_id\":\"8B313CBF30999888DE32DA1EC83FF503_3Z7JAD1OYX_1690498353.1625\",\"amount\":105000.00,\"customer\":{\"name\":\"David\",\"last_name\":\"Mora Quintero\",\"email\":\"dmoraqu@gmail.com\",\"phone_number\":\"3104013189\",\"address\":null,\"creation_date\":\"2023-07-27T17:52:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trv9vthgr675gz5zedi2/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 22:52:36','2023-07-27 22:52:36'),(7002,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1124\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T17:53:14-05:00\",\"transaction\":{\"id\":\"trv9vthgr675gz5zedi2\",\"authorization\":\"605313\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-27T17:52:35-05:00\",\"operation_date\":\"2023-07-27T17:53:13-05:00\",\"description\":\"Pago Mensual academia: Agustin Mora Sossa (1035015434)\",\"error_message\":null,\"order_id\":\"8B313CBF30999888DE32DA1EC83FF503_3Z7JAD1OYX_1690498353.1625\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"526557XXXXXX0029\",\"holder_name\":\"David Mora Q\",\"expiration_year\":\"29\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"DAVIVIENDA\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"David\",\"last_name\":\"Mora Quintero\",\"email\":\"dmoraqu@gmail.com\",\"phone_number\":\"3104013189\",\"address\":null,\"creation_date\":\"2023-07-27T17:52:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trv9vthgr675gz5zedi2/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 22:53:14','2023-07-27 22:53:14'),(7003,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T18:28:25-05:00\",\"transaction\":{\"id\":\"trotjkmvkqwcadjqvgyg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T18:28:25-05:00\",\"operation_date\":\"2023-07-27T18:28:25-05:00\",\"description\":\"Pago Mensual academia: martin leandro carreño yepes (1038265937)\",\"error_message\":null,\"order_id\":\"F0031C7A91D74015A9ADDFBC589F3FE5_21SDQ48KJN_1690500495.8228\",\"amount\":165900.00,\"customer\":{\"name\":\"luisa fernanda\",\"last_name\":\"yepes martinez\",\"email\":\"luisita_859@hotmail.com\",\"phone_number\":\"3502908182\",\"address\":null,\"creation_date\":\"2023-07-27T18:28:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trotjkmvkqwcadjqvgyg/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 23:28:26','2023-07-27 23:28:26'),(7004,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1230\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T18:32:03-05:00\",\"transaction\":{\"id\":\"trotjkmvkqwcadjqvgyg\",\"authorization\":\"183159\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":8,\"conciliated\":true,\"creation_date\":\"2023-07-27T18:28:25-05:00\",\"operation_date\":\"2023-07-27T18:32:02-05:00\",\"description\":\"Pago Mensual academia: martin leandro carreño yepes (1038265937)\",\"error_message\":null,\"order_id\":\"F0031C7A91D74015A9ADDFBC589F3FE5_21SDQ48KJN_1690500495.8228\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491646XXXXXX4363\",\"holder_name\":\"Luisa yepes \",\"expiration_year\":\"26\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":8,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"luisa fernanda\",\"last_name\":\"yepes martinez\",\"email\":\"luisita_859@hotmail.com\",\"phone_number\":\"3502908182\",\"address\":null,\"creation_date\":\"2023-07-27T18:28:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trotjkmvkqwcadjqvgyg/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 23:32:04','2023-07-27 23:32:04'),(7005,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T18:32:41-05:00\",\"transaction\":{\"id\":\"trh6ixthuu0oyjkkyywl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T18:32:41-05:00\",\"operation_date\":\"2023-07-27T18:32:41-05:00\",\"description\":\"Pago Mensual academia: martin leandro carreño yepes (1038265937)\",\"error_message\":null,\"order_id\":\"F231F2107DF69EAB0A3862D50018A9B2_J96CSH2GVU_1690500758.373\",\"amount\":165900.00,\"customer\":{\"name\":\"luisa fernanda\",\"last_name\":\"yepes martinez\",\"email\":\"luisita_859@hotmail.com\",\"phone_number\":\"3502908182\",\"address\":null,\"creation_date\":\"2023-07-27T18:32:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trh6ixthuu0oyjkkyywl/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 23:32:42','2023-07-27 23:32:42'),(7006,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1229\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T18:33:43-05:00\",\"transaction\":{\"id\":\"trh6ixthuu0oyjkkyywl\",\"authorization\":\"183339\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":8,\"conciliated\":true,\"creation_date\":\"2023-07-27T18:32:41-05:00\",\"operation_date\":\"2023-07-27T18:33:42-05:00\",\"description\":\"Pago Mensual academia: martin leandro carreño yepes (1038265937)\",\"error_message\":null,\"order_id\":\"F231F2107DF69EAB0A3862D50018A9B2_J96CSH2GVU_1690500758.373\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491646XXXXXX4363\",\"holder_name\":\"Luisa yepes \",\"expiration_year\":\"26\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":8,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"luisa fernanda\",\"last_name\":\"yepes martinez\",\"email\":\"luisita_859@hotmail.com\",\"phone_number\":\"3502908182\",\"address\":null,\"creation_date\":\"2023-07-27T18:32:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trh6ixthuu0oyjkkyywl/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-27 23:33:43','2023-07-27 23:33:43'),(7007,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  867\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T19:10:31-05:00\",\"transaction\":{\"id\":\"trgdspwmbkaja6m1euea\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T19:10:31-05:00\",\"operation_date\":\"2023-07-27T19:10:31-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"BD686FD640BE98EFAAE0091FA301E613_E-64C30770-22_1690503029.1344\",\"amount\":146900.00,\"customer\":{\"name\":\"luis Alberto\",\"last_name\":\"soto fonnegra\",\"email\":\"fonnegra71@hotmail.com\",\"phone_number\":\"3207387184\",\"address\":null,\"creation_date\":\"2023-07-27T19:10:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trgdspwmbkaja6m1euea/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 00:10:32','2023-07-28 00:10:32'),(7008,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  552\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-27T19:11:26-05:00\",\"transaction\":{\"id\":\"trhmxqjpjjxzklo1lhoa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-07-27T19:11:26-05:00\",\"operation_date\":\"2023-07-27T19:11:26-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":\"The card doesn\'t have sufficient funds\",\"order_id\":\"BD686FD640BE98EFAAE0091FA301E613_E-64C30770-22_1690503029.1344\",\"error_code\":3003,\"amount\":146900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 00:11:27','2023-07-28 00:11:27'),(7009,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  552\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-27T19:12:59-05:00\",\"transaction\":{\"id\":\"trw7qqismmqedaq5m1mv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-07-27T19:12:58-05:00\",\"operation_date\":\"2023-07-27T19:12:58-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":\"The card doesn\'t have sufficient funds\",\"order_id\":\"BD686FD640BE98EFAAE0091FA301E613_E-64C30770-22_1690503029.1344\",\"error_code\":3003,\"amount\":146900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 00:12:59','2023-07-28 00:12:59'),(7010,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  866\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T19:19:57-05:00\",\"transaction\":{\"id\":\"trzswzxalcxrl9vsie0q\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T19:19:57-05:00\",\"operation_date\":\"2023-07-27T19:19:57-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"A597E50502F5FF68E3E25B9114205D4A_E-64C309A4-33_1690503593.601\",\"amount\":146900.00,\"customer\":{\"name\":\"luis Alberto\",\"last_name\":\"soto fonnegra\",\"email\":\"fonnegra71@hotmail.com\",\"phone_number\":\"3207387184\",\"address\":null,\"creation_date\":\"2023-07-27T19:19:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trzswzxalcxrl9vsie0q/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 00:19:58','2023-07-28 00:19:58'),(7011,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1112\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T19:21:07-05:00\",\"transaction\":{\"id\":\"trzswzxalcxrl9vsie0q\",\"authorization\":\"192107\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-27T19:19:57-05:00\",\"operation_date\":\"2023-07-27T19:21:07-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"A597E50502F5FF68E3E25B9114205D4A_E-64C309A4-33_1690503593.601\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX0965\",\"holder_name\":\"Luis Soto\",\"expiration_year\":\"26\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":146900.00,\"customer\":{\"name\":\"luis Alberto\",\"last_name\":\"soto fonnegra\",\"email\":\"fonnegra71@hotmail.com\",\"phone_number\":\"3207387184\",\"address\":null,\"creation_date\":\"2023-07-27T19:19:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trzswzxalcxrl9vsie0q/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 00:21:08','2023-07-28 00:21:08'),(7012,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  903\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T19:53:42-05:00\",\"transaction\":{\"id\":\"trtrfevbqis5xgcoideu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T19:53:42-05:00\",\"operation_date\":\"2023-07-27T19:53:42-05:00\",\"description\":\"Pago Mensual academia: yehikar smith hurtado hurtado (1067918109)\",\"error_message\":null,\"order_id\":\"097E26B2FFB0339458B55DA17425A71F_PUC73O5HJ2_1690505619.4436\",\"amount\":165900.00,\"customer\":{\"name\":\"yehikar smith\",\"last_name\":\"hurtado hurtado\",\"email\":\"sh3359925@gmail.com\",\"phone_number\":\"3007750141\",\"address\":null,\"creation_date\":\"2023-07-27T19:53:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtrfevbqis5xgcoideu/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 00:53:43','2023-07-28 00:53:43'),(7013,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1152\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T19:55:14-05:00\",\"transaction\":{\"id\":\"trtrfevbqis5xgcoideu\",\"authorization\":\"146978\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-27T19:53:42-05:00\",\"operation_date\":\"2023-07-27T19:55:11-05:00\",\"description\":\"Pago Mensual academia: yehikar smith hurtado hurtado (1067918109)\",\"error_message\":null,\"order_id\":\"097E26B2FFB0339458B55DA17425A71F_PUC73O5HJ2_1690505619.4436\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"409355XXXXXX1206\",\"holder_name\":\"Norida hurtado \",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOLOMBIA -NEQUI\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"yehikar smith\",\"last_name\":\"hurtado hurtado\",\"email\":\"sh3359925@gmail.com\",\"phone_number\":\"3007750141\",\"address\":null,\"creation_date\":\"2023-07-27T19:53:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtrfevbqis5xgcoideu/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 00:55:14','2023-07-28 00:55:14'),(7014,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T22:16:28-05:00\",\"transaction\":{\"id\":\"trbicnnyzajdydzfvofn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T22:16:28-05:00\",\"operation_date\":\"2023-07-27T22:16:28-05:00\",\"description\":\"Pago Mensual academia: Vicente Echeverri Gallon (1023548982)\",\"error_message\":null,\"order_id\":\"2E0ACA891F2A8AEDF265EDF533A6D9A8_724TQYA9H0_1690514184.8339\",\"amount\":105000.00,\"customer\":{\"name\":\"Harvey\",\"last_name\":\"Echeverri Ceballos\",\"email\":\"harveyec@gmail.com\",\"phone_number\":\"3147090975\",\"address\":null,\"creation_date\":\"2023-07-27T22:16:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbicnnyzajdydzfvofn/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 03:16:29','2023-07-28 03:16:29'),(7015,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1137\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T22:17:54-05:00\",\"transaction\":{\"id\":\"trbicnnyzajdydzfvofn\",\"authorization\":\"502011\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-27T22:16:28-05:00\",\"operation_date\":\"2023-07-27T22:17:53-05:00\",\"description\":\"Pago Mensual academia: Vicente Echeverri Gallon (1023548982)\",\"error_message\":null,\"order_id\":\"2E0ACA891F2A8AEDF265EDF533A6D9A8_724TQYA9H0_1690514184.8339\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"454600XXXXXX4890\",\"holder_name\":\"Laura Gallon\",\"expiration_year\":\"24\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"Harvey\",\"last_name\":\"Echeverri Ceballos\",\"email\":\"harveyec@gmail.com\",\"phone_number\":\"3147090975\",\"address\":null,\"creation_date\":\"2023-07-27T22:16:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbicnnyzajdydzfvofn/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 03:17:55','2023-07-28 03:17:55'),(7016,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-27T22:18:16-05:00\",\"transaction\":{\"id\":\"tr98gmpjfkbvslorplav\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-27T22:18:16-05:00\",\"operation_date\":\"2023-07-27T22:18:16-05:00\",\"description\":\"Pago Mensual academia: Vicente Echeverri Gallon (1023548982)\",\"error_message\":null,\"order_id\":\"7C78335A8924215EA5C22FDA1AAC7B75_NRUJ165DIA_1690514294.4741\",\"amount\":105000.00,\"customer\":{\"name\":\"Harvey\",\"last_name\":\"Echeverri Ceballos\",\"email\":\"harveyec@gmail.com\",\"phone_number\":\"3147090975\",\"address\":null,\"creation_date\":\"2023-07-27T22:18:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr98gmpjfkbvslorplav/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 03:18:17','2023-07-28 03:18:17'),(7017,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1137\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-27T22:18:55-05:00\",\"transaction\":{\"id\":\"tr98gmpjfkbvslorplav\",\"authorization\":\"804789\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-27T22:18:16-05:00\",\"operation_date\":\"2023-07-27T22:18:54-05:00\",\"description\":\"Pago Mensual academia: Vicente Echeverri Gallon (1023548982)\",\"error_message\":null,\"order_id\":\"7C78335A8924215EA5C22FDA1AAC7B75_NRUJ165DIA_1690514294.4741\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"454600XXXXXX4890\",\"holder_name\":\"Laura Gallon\",\"expiration_year\":\"24\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"Harvey\",\"last_name\":\"Echeverri Ceballos\",\"email\":\"harveyec@gmail.com\",\"phone_number\":\"3147090975\",\"address\":null,\"creation_date\":\"2023-07-27T22:18:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr98gmpjfkbvslorplav/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 03:18:55','2023-07-28 03:18:55'),(7018,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T06:28:36-05:00\",\"transaction\":{\"id\":\"trhkubb0wjzpfcmjoqri\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T06:27:15-05:00\",\"operation_date\":\"2023-07-28T06:27:15-05:00\",\"description\":\"Pago Mensual academia: MATIAS ALZATE CALLE (1036457783)\",\"error_message\":null,\"order_id\":\"17B3C7061788DBE82DE5ABE9F6FE22B3_9IGD37A56W_1690543631.568\",\"due_date\":\"2023-07-28T18:27:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JEISSON RAUL\",\"last_name\":\"ALZATE AGUDELO\",\"email\":\"jeissontito@hotmail.com\",\"phone_number\":\"3134385212\",\"address\":null,\"creation_date\":\"2023-07-28T06:27:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhkubb0wjzpfcmjoqri/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 11:28:37','2023-07-28 11:28:37'),(7019,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T06:31:57-05:00\",\"transaction\":{\"id\":\"trhkubb0wjzpfcmjoqri\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"69440007\",\"creation_date\":\"2023-07-28T06:27:15-05:00\",\"operation_date\":\"2023-07-28T06:30:17-05:00\",\"description\":\"Pago Mensual academia: MATIAS ALZATE CALLE (1036457783)\",\"error_message\":null,\"order_id\":\"17B3C7061788DBE82DE5ABE9F6FE22B3_9IGD37A56W_1690543631.568\",\"due_date\":\"2023-07-28T18:27:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JEISSON RAUL\",\"last_name\":\"ALZATE AGUDELO\",\"email\":\"jeissontito@hotmail.com\",\"phone_number\":\"3134385212\",\"address\":null,\"creation_date\":\"2023-07-28T06:27:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 11:31:58','2023-07-28 11:31:58'),(7020,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  911\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T06:56:19-05:00\",\"transaction\":{\"id\":\"trnbqzz430synjpjtnc0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T06:46:16-05:00\",\"operation_date\":\"2023-07-28T06:46:16-05:00\",\"description\":\"Pago Inscripción academia: TOMAS SOTO OCHOA (1035013032)\",\"error_message\":null,\"order_id\":\"F42C7F9C8AEAB0FC412031E192E2119D_38XTK0LNHQ_1690544626.0337\",\"due_date\":\"2023-07-28T18:46:16-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"TOMAS\",\"last_name\":\"SOTO\",\"email\":\"alejamoh@hotmail.com\",\"phone_number\":\"3164423091\",\"address\":null,\"creation_date\":\"2023-07-28T06:46:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnbqzz430synjpjtnc0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 11:56:20','2023-07-28 11:56:20'),(7021,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  793\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T06:58:47-05:00\",\"transaction\":{\"id\":\"trnbqzz430synjpjtnc0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"69458790\",\"creation_date\":\"2023-07-28T06:46:16-05:00\",\"operation_date\":\"2023-07-28T06:58:30-05:00\",\"description\":\"Pago Inscripción academia: TOMAS SOTO OCHOA (1035013032)\",\"error_message\":null,\"order_id\":\"F42C7F9C8AEAB0FC412031E192E2119D_38XTK0LNHQ_1690544626.0337\",\"due_date\":\"2023-07-28T18:46:16-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"TOMAS\",\"last_name\":\"SOTO\",\"email\":\"alejamoh@hotmail.com\",\"phone_number\":\"3164423091\",\"address\":null,\"creation_date\":\"2023-07-28T06:46:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 11:58:48','2023-07-28 11:58:48'),(7022,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T09:29:03-05:00\",\"transaction\":{\"id\":\"trju2t0rmqxyncea4zgz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T09:28:25-05:00\",\"operation_date\":\"2023-07-28T09:28:25-05:00\",\"description\":\"Pago Mensual academia: Alejandro Torres Castañeda (1033199081)\",\"error_message\":null,\"order_id\":\"019F8B946A256D9357EADC5ACE2C8678_I8TVKY2GQL_1690554502.916\",\"due_date\":\"2023-07-28T21:28:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Torrea Castañeda\",\"email\":\"Ladyjohanac@hotmail.com\",\"phone_number\":\"3137707097\",\"address\":null,\"creation_date\":\"2023-07-28T09:28:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trju2t0rmqxyncea4zgz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 14:29:04','2023-07-28 14:29:04'),(7023,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T09:30:47-05:00\",\"transaction\":{\"id\":\"trju2t0rmqxyncea4zgz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"69696497\",\"creation_date\":\"2023-07-28T09:28:25-05:00\",\"operation_date\":\"2023-07-28T09:30:43-05:00\",\"description\":\"Pago Mensual academia: Alejandro Torres Castañeda (1033199081)\",\"error_message\":null,\"order_id\":\"019F8B946A256D9357EADC5ACE2C8678_I8TVKY2GQL_1690554502.916\",\"due_date\":\"2023-07-28T21:28:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Torrea Castañeda\",\"email\":\"Ladyjohanac@hotmail.com\",\"phone_number\":\"3137707097\",\"address\":null,\"creation_date\":\"2023-07-28T09:28:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 14:30:47','2023-07-28 14:30:47'),(7024,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T09:40:23-05:00\",\"transaction\":{\"id\":\"tree7efosvstbmxa50m1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-28T09:40:23-05:00\",\"operation_date\":\"2023-07-28T09:40:23-05:00\",\"description\":\"Pago Inscripción academia: andres felipe ibañez jaraba (1041697312)\",\"error_message\":null,\"order_id\":\"9F8684E630C4C30CAD7B1F0935CD62AB_LIVEDZ86YG_1690555207.7478\",\"amount\":431000.00,\"customer\":{\"name\":\"Andres Felipe\",\"last_name\":\"Ibáñez Jaraba\",\"email\":\"katyajaraba.2207@gmail.com\",\"phone_number\":\"3012134574\",\"address\":null,\"creation_date\":\"2023-07-28T09:40:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tree7efosvstbmxa50m1/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 14:40:23','2023-07-28 14:40:23'),(7025,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1238\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T09:41:47-05:00\",\"transaction\":{\"id\":\"tree7efosvstbmxa50m1\",\"authorization\":\"213661\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":36,\"conciliated\":true,\"creation_date\":\"2023-07-28T09:40:23-05:00\",\"operation_date\":\"2023-07-28T09:41:45-05:00\",\"description\":\"Pago Inscripción academia: andres felipe ibañez jaraba (1041697312)\",\"error_message\":null,\"order_id\":\"9F8684E630C4C30CAD7B1F0935CD62AB_LIVEDZ86YG_1690555207.7478\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"528209XXXXXX8224\",\"holder_name\":\"Katia jarabs\",\"expiration_year\":\"27\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"FALABELLA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":36,\"payments_type\":\"without_interest\"},\"amount\":431000.00,\"customer\":{\"name\":\"Andres Felipe\",\"last_name\":\"Ibáñez Jaraba\",\"email\":\"katyajaraba.2207@gmail.com\",\"phone_number\":\"3012134574\",\"address\":null,\"creation_date\":\"2023-07-28T09:40:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tree7efosvstbmxa50m1/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-28 14:41:47','2023-07-28 14:41:47'),(7026,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  913\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T10:04:49-05:00\",\"transaction\":{\"id\":\"trzcbnolwgrzkaesnkzv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T10:03:50-05:00\",\"operation_date\":\"2023-07-28T10:03:50-05:00\",\"description\":\"Pago Mensual academia: Thiago Rodriguez Yepes (1036461453)\",\"error_message\":null,\"order_id\":\"CA1D3153A1CF0ED998D4879FBB50D9AB_90DBY3HPU8_1690556627.4401\",\"due_date\":\"2023-07-28T22:03:50-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Yepes\",\"email\":\"dcyepestoro@gmail.com\",\"phone_number\":\"3002899212\",\"address\":null,\"creation_date\":\"2023-07-28T10:03:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzcbnolwgrzkaesnkzv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 15:04:49','2023-07-28 15:04:49'),(7027,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  795\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T10:05:55-05:00\",\"transaction\":{\"id\":\"trzcbnolwgrzkaesnkzv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"69780893\",\"creation_date\":\"2023-07-28T10:03:50-05:00\",\"operation_date\":\"2023-07-28T10:05:44-05:00\",\"description\":\"Pago Mensual academia: Thiago Rodriguez Yepes (1036461453)\",\"error_message\":null,\"order_id\":\"CA1D3153A1CF0ED998D4879FBB50D9AB_90DBY3HPU8_1690556627.4401\",\"due_date\":\"2023-07-28T22:03:50-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Yepes\",\"email\":\"dcyepestoro@gmail.com\",\"phone_number\":\"3002899212\",\"address\":null,\"creation_date\":\"2023-07-28T10:03:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 15:05:55','2023-07-28 15:05:55'),(7028,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  905\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T13:42:11-05:00\",\"transaction\":{\"id\":\"trgvnovjaathh6w8ole5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T13:41:30-05:00\",\"operation_date\":\"2023-07-28T13:41:30-05:00\",\"description\":\"Pago Mensual academia: TOMAS SOTO OCHOA (1035013032)\",\"error_message\":null,\"order_id\":\"C6A01432C8138D46BA39957A8250E027_0LJAFK5S3Y_1690569688.0687\",\"due_date\":\"2023-07-29T01:41:30-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"TOMAS\",\"last_name\":\"SOTO\",\"email\":\"alejamoh@hotmail.com\",\"phone_number\":\"3164423091\",\"address\":null,\"creation_date\":\"2023-07-28T13:41:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgvnovjaathh6w8ole5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 18:42:12','2023-07-28 18:42:12'),(7029,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  787\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T13:43:22-05:00\",\"transaction\":{\"id\":\"trgvnovjaathh6w8ole5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"70330398\",\"creation_date\":\"2023-07-28T13:41:30-05:00\",\"operation_date\":\"2023-07-28T13:43:17-05:00\",\"description\":\"Pago Mensual academia: TOMAS SOTO OCHOA (1035013032)\",\"error_message\":null,\"order_id\":\"C6A01432C8138D46BA39957A8250E027_0LJAFK5S3Y_1690569688.0687\",\"due_date\":\"2023-07-29T01:41:30-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"TOMAS\",\"last_name\":\"SOTO\",\"email\":\"alejamoh@hotmail.com\",\"phone_number\":\"3164423091\",\"address\":null,\"creation_date\":\"2023-07-28T13:41:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 18:43:23','2023-07-28 18:43:23'),(7030,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T14:35:11-05:00\",\"transaction\":{\"id\":\"trgecipsldmchbdqsl03\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T14:34:27-05:00\",\"operation_date\":\"2023-07-28T14:34:27-05:00\",\"description\":\"Pago Inscripción academia: David Garcés Monsalve (1023561352)\",\"error_message\":null,\"order_id\":\"366F0BC7BD1D4BF414073CABBADFDFCD_9KOU041P3X_1690572864.4138\",\"due_date\":\"2023-07-29T02:34:27-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"Monsalve\",\"email\":\"cata.m2014@gmail.com\",\"phone_number\":\"3014253009\",\"address\":null,\"creation_date\":\"2023-07-28T14:34:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgecipsldmchbdqsl03/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 19:35:12','2023-07-28 19:35:12'),(7031,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T14:36:59-05:00\",\"transaction\":{\"id\":\"trgecipsldmchbdqsl03\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"70470164\",\"creation_date\":\"2023-07-28T14:34:27-05:00\",\"operation_date\":\"2023-07-28T14:36:52-05:00\",\"description\":\"Pago Inscripción academia: David Garcés Monsalve (1023561352)\",\"error_message\":null,\"order_id\":\"366F0BC7BD1D4BF414073CABBADFDFCD_9KOU041P3X_1690572864.4138\",\"due_date\":\"2023-07-29T02:34:27-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"Monsalve\",\"email\":\"cata.m2014@gmail.com\",\"phone_number\":\"3014253009\",\"address\":null,\"creation_date\":\"2023-07-28T14:34:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 19:37:00','2023-07-28 19:37:00'),(7032,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T14:39:42-05:00\",\"transaction\":{\"id\":\"trhpqpyeglqlhcg35okm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T14:39:12-05:00\",\"operation_date\":\"2023-07-28T14:39:12-05:00\",\"description\":\"Pago Mensual academia: David Garcés Monsalve (1023561352)\",\"error_message\":null,\"order_id\":\"C922DE9E01CBA8A4684F6C3471130E4C_BYCN4JG6L8_1690573146.8513\",\"due_date\":\"2023-07-29T02:39:12-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"Monsalve\",\"email\":\"cata.m2014@gmail.com\",\"phone_number\":\"3014253009\",\"address\":null,\"creation_date\":\"2023-07-28T14:39:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhpqpyeglqlhcg35okm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 19:39:43','2023-07-28 19:39:43'),(7033,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T14:40:43-05:00\",\"transaction\":{\"id\":\"trhpqpyeglqlhcg35okm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"70482770\",\"creation_date\":\"2023-07-28T14:39:12-05:00\",\"operation_date\":\"2023-07-28T14:40:37-05:00\",\"description\":\"Pago Mensual academia: David Garcés Monsalve (1023561352)\",\"error_message\":null,\"order_id\":\"C922DE9E01CBA8A4684F6C3471130E4C_BYCN4JG6L8_1690573146.8513\",\"due_date\":\"2023-07-29T02:39:12-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"Monsalve\",\"email\":\"cata.m2014@gmail.com\",\"phone_number\":\"3014253009\",\"address\":null,\"creation_date\":\"2023-07-28T14:39:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 19:40:44','2023-07-28 19:40:44'),(7034,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T14:41:21-05:00\",\"transaction\":{\"id\":\"trgilsbgntcriv9oczli\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T14:39:59-05:00\",\"operation_date\":\"2023-07-28T14:39:59-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":null,\"order_id\":\"54FDA78AA8A09B4D77B5AAEC57B75028_E1KQ3LJHVZ_1690573194.6724\",\"due_date\":\"2023-07-29T02:39:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-07-28T14:39:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgilsbgntcriv9oczli/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 19:41:22','2023-07-28 19:41:22'),(7035,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T14:42:53-05:00\",\"transaction\":{\"id\":\"trgilsbgntcriv9oczli\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"70487363\",\"creation_date\":\"2023-07-28T14:39:59-05:00\",\"operation_date\":\"2023-07-28T14:42:33-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":null,\"order_id\":\"54FDA78AA8A09B4D77B5AAEC57B75028_E1KQ3LJHVZ_1690573194.6724\",\"due_date\":\"2023-07-29T02:39:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-07-28T14:39:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 19:42:54','2023-07-28 19:42:54'),(7036,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T15:08:15-05:00\",\"transaction\":{\"id\":\"trewagshvuwzxqlxcayd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T15:07:33-05:00\",\"operation_date\":\"2023-07-28T15:07:33-05:00\",\"description\":\"Pago Mensual academia: agustin alvarez Aguirre (1040578518)\",\"error_message\":null,\"order_id\":\"FB2606A5068901DA92473666256E6E5B_N2BRM95OT7_1690574849.6727\",\"due_date\":\"2023-07-29T03:07:33-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"rodrigo\",\"last_name\":\"alvarez\",\"email\":\"rodrigo0524@hotmail.com\",\"phone_number\":\"3014063246\",\"address\":null,\"creation_date\":\"2023-07-28T15:07:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trewagshvuwzxqlxcayd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 20:08:16','2023-07-28 20:08:16'),(7037,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T15:08:37-05:00\",\"transaction\":{\"id\":\"trq04qa5wlljyiwrhxpp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T15:07:50-05:00\",\"operation_date\":\"2023-07-28T15:07:50-05:00\",\"description\":\"Pago Mensual academia: Rafael Jaime Iguarán Vargas (1035007709)\",\"error_message\":null,\"order_id\":\"7221E5C8EC6B08EF6D3F9FF3CE6EB1D1_2CIA18WDBL_1690574868.0009\",\"due_date\":\"2023-07-29T03:07:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Antonella\",\"last_name\":\"Vargas Sofán\",\"email\":\"anchovar@gmail.com\",\"phone_number\":\"3145964879\",\"address\":null,\"creation_date\":\"2023-07-28T15:07:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq04qa5wlljyiwrhxpp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 20:08:38','2023-07-28 20:08:38'),(7038,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  834\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-28T15:08:57-05:00\",\"transaction\":{\"id\":\"trewagshvuwzxqlxcayd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-28T15:07:33-05:00\",\"operation_date\":\"2023-07-28T15:07:33-05:00\",\"description\":\"Pago Mensual academia: agustin alvarez Aguirre (1040578518)\",\"error_message\":\"Gateway rejected the operation: FAILED\",\"order_id\":\"FB2606A5068901DA92473666256E6E5B_N2BRM95OT7_1690574849.6727\",\"due_date\":\"2023-07-29T03:07:33-05:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"rodrigo\",\"last_name\":\"alvarez\",\"email\":\"rodrigo0524@hotmail.com\",\"phone_number\":\"3014063246\",\"address\":null,\"creation_date\":\"2023-07-28T15:07:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 20:08:57','2023-07-28 20:08:57'),(7039,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T15:10:01-05:00\",\"transaction\":{\"id\":\"trutedg3drg9fpu3uqr6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T15:09:14-05:00\",\"operation_date\":\"2023-07-28T15:09:14-05:00\",\"description\":\"Pago Mensual academia: agustin alvarez Aguirre (1040578518)\",\"error_message\":null,\"order_id\":\"FB2606A5068901DA92473666256E6E5B_N2BRM95OT7_1690574952.0335\",\"due_date\":\"2023-07-29T03:09:14-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"rodrigo\",\"last_name\":\"alvarez\",\"email\":\"rodrigo0524@hotmail.com\",\"phone_number\":\"3014063246\",\"address\":null,\"creation_date\":\"2023-07-28T15:09:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trutedg3drg9fpu3uqr6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 20:10:02','2023-07-28 20:10:02'),(7040,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T15:11:02-05:00\",\"transaction\":{\"id\":\"trutedg3drg9fpu3uqr6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"70567668\",\"creation_date\":\"2023-07-28T15:09:14-05:00\",\"operation_date\":\"2023-07-28T15:10:53-05:00\",\"description\":\"Pago Mensual academia: agustin alvarez Aguirre (1040578518)\",\"error_message\":null,\"order_id\":\"FB2606A5068901DA92473666256E6E5B_N2BRM95OT7_1690574952.0335\",\"due_date\":\"2023-07-29T03:09:14-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"rodrigo\",\"last_name\":\"alvarez\",\"email\":\"rodrigo0524@hotmail.com\",\"phone_number\":\"3014063246\",\"address\":null,\"creation_date\":\"2023-07-28T15:09:14-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 20:11:02','2023-07-28 20:11:02'),(7041,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T15:11:12-05:00\",\"transaction\":{\"id\":\"trq04qa5wlljyiwrhxpp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"70563852\",\"creation_date\":\"2023-07-28T15:07:50-05:00\",\"operation_date\":\"2023-07-28T15:10:58-05:00\",\"description\":\"Pago Mensual academia: Rafael Jaime Iguarán Vargas (1035007709)\",\"error_message\":null,\"order_id\":\"7221E5C8EC6B08EF6D3F9FF3CE6EB1D1_2CIA18WDBL_1690574868.0009\",\"due_date\":\"2023-07-29T03:07:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Antonella\",\"last_name\":\"Vargas Sofán\",\"email\":\"anchovar@gmail.com\",\"phone_number\":\"3145964879\",\"address\":null,\"creation_date\":\"2023-07-28T15:07:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 20:11:12','2023-07-28 20:11:12'),(7042,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T16:04:32-05:00\",\"transaction\":{\"id\":\"trksffqbj3w4euctg2y5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T16:03:28-05:00\",\"operation_date\":\"2023-07-28T16:03:28-05:00\",\"description\":\"Pago Mensual academia: LUCCA OSPINA ESCOBAR (1239489418)\",\"error_message\":null,\"order_id\":\"8B8388180314A337C9AA3C5AA8E2F37A_4G2HWIR1B5_1690578204.8984\",\"due_date\":\"2023-07-29T04:03:28-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jorge Alberto\",\"last_name\":\"Ospina Morales\",\"email\":\"jospinamo@gmail.com\",\"phone_number\":\"3148880141\",\"address\":null,\"creation_date\":\"2023-07-28T16:03:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trksffqbj3w4euctg2y5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 21:04:33','2023-07-28 21:04:33'),(7043,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T16:05:48-05:00\",\"transaction\":{\"id\":\"trksffqbj3w4euctg2y5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"70723353\",\"creation_date\":\"2023-07-28T16:03:28-05:00\",\"operation_date\":\"2023-07-28T16:05:40-05:00\",\"description\":\"Pago Mensual academia: LUCCA OSPINA ESCOBAR (1239489418)\",\"error_message\":null,\"order_id\":\"8B8388180314A337C9AA3C5AA8E2F37A_4G2HWIR1B5_1690578204.8984\",\"due_date\":\"2023-07-29T04:03:28-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jorge Alberto\",\"last_name\":\"Ospina Morales\",\"email\":\"jospinamo@gmail.com\",\"phone_number\":\"3148880141\",\"address\":null,\"creation_date\":\"2023-07-28T16:03:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 21:05:49','2023-07-28 21:05:49'),(7044,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T18:01:52-05:00\",\"transaction\":{\"id\":\"trhmisbwmnnbpm9hobkn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T18:01:05-05:00\",\"operation_date\":\"2023-07-28T18:01:05-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez pacheco (1019906046)\",\"error_message\":null,\"order_id\":\"35937E34256CF4E5B2F7DA08871D2A0B_BQCJNHGE54_1690585257.2955\",\"due_date\":\"2023-07-29T06:01:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hugo andres\",\"last_name\":\"alvarez\",\"email\":\"hugoandres.alvarez@gmail.com\",\"phone_number\":\"3005865449\",\"address\":null,\"creation_date\":\"2023-07-28T18:01:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhmisbwmnnbpm9hobkn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 23:01:53','2023-07-28 23:01:53'),(7045,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  853\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-28T17:24:11-06:00\",\"transaction\":{\"id\":\"trhmisbwmnnbpm9hobkn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-28T18:01:05-06:00\",\"operation_date\":\"2023-07-28T18:01:58-06:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez pacheco (1019906046)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"35937E34256CF4E5B2F7DA08871D2A0B_BQCJNHGE54_1690585257.2955\",\"due_date\":\"2023-07-29T06:01:05-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Hugo andres\",\"last_name\":\"alvarez\",\"email\":\"hugoandres.alvarez@gmail.com\",\"phone_number\":\"3005865449\",\"address\":null,\"creation_date\":\"2023-07-28T18:01:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 23:24:12','2023-07-28 23:24:12'),(7046,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  853\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-28T17:27:10-06:00\",\"transaction\":{\"id\":\"trhmisbwmnnbpm9hobkn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-28T18:01:05-06:00\",\"operation_date\":\"2023-07-28T18:01:58-06:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez pacheco (1019906046)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"35937E34256CF4E5B2F7DA08871D2A0B_BQCJNHGE54_1690585257.2955\",\"due_date\":\"2023-07-29T06:01:05-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Hugo andres\",\"last_name\":\"alvarez\",\"email\":\"hugoandres.alvarez@gmail.com\",\"phone_number\":\"3005865449\",\"address\":null,\"creation_date\":\"2023-07-28T18:01:05-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-28 23:27:10','2023-07-28 23:27:10'),(7047,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T19:02:51-05:00\",\"transaction\":{\"id\":\"trctkxhmzkhccn9wmm11\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T19:01:28-05:00\",\"operation_date\":\"2023-07-28T19:01:28-05:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":null,\"order_id\":\"86B20716FBD5B253D27CEC43127089BC_Q6TZ5LVBEF_1690588883.6893\",\"due_date\":\"2023-07-29T07:01:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-28T19:01:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trctkxhmzkhccn9wmm11/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 00:02:51','2023-07-29 00:02:51'),(7048,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  866\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-28T18:24:10-06:00\",\"transaction\":{\"id\":\"trctkxhmzkhccn9wmm11\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-28T19:01:28-06:00\",\"operation_date\":\"2023-07-28T19:02:57-06:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"86B20716FBD5B253D27CEC43127089BC_Q6TZ5LVBEF_1690588883.6893\",\"due_date\":\"2023-07-29T07:01:28-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-28T19:01:28-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 00:24:10','2023-07-29 00:24:10'),(7049,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  859\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T21:19:36-05:00\",\"transaction\":{\"id\":\"trs9njdvqzy90quda35t\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-28T21:19:35-05:00\",\"operation_date\":\"2023-07-28T21:19:35-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"20F07591C6FCB220FFE637CDA29BB3F6_3T5R86D7C0_1690597172.5183\",\"amount\":252000.00,\"customer\":{\"name\":\"Gustavo Adolf\",\"last_name\":\"Jaramillo Uribe\",\"email\":\"gaju1211@gmail.com\",\"phone_number\":\"3166351924\",\"address\":null,\"creation_date\":\"2023-07-28T21:19:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trs9njdvqzy90quda35t/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-29 02:19:36','2023-07-29 02:19:36'),(7050,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1189\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T21:21:17-05:00\",\"transaction\":{\"id\":\"trs9njdvqzy90quda35t\",\"authorization\":\"080487\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":36,\"conciliated\":true,\"creation_date\":\"2023-07-28T21:19:35-05:00\",\"operation_date\":\"2023-07-28T21:21:15-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"20F07591C6FCB220FFE637CDA29BB3F6_3T5R86D7C0_1690597172.5183\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491626XXXXXX4929\",\"holder_name\":\"Gustavo Adolfo Jaramillo \",\"expiration_year\":\"27\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"RAPPIPAY\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":36,\"payments_type\":\"without_interest\"},\"amount\":252000.00,\"customer\":{\"name\":\"Gustavo Adolf\",\"last_name\":\"Jaramillo Uribe\",\"email\":\"gaju1211@gmail.com\",\"phone_number\":\"3166351924\",\"address\":null,\"creation_date\":\"2023-07-28T21:19:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trs9njdvqzy90quda35t/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-29 02:21:18','2023-07-29 02:21:18'),(7051,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T21:40:53-05:00\",\"transaction\":{\"id\":\"trhicgfirxdl2jzclr63\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T21:39:53-05:00\",\"operation_date\":\"2023-07-28T21:39:53-05:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":null,\"order_id\":\"2ECD2BD94734E5DD392D8678BC64CDAB_7TW9IGCSE8_1690598387.9877\",\"due_date\":\"2023-07-29T09:39:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-28T21:39:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhicgfirxdl2jzclr63/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 02:40:54','2023-07-29 02:40:54'),(7052,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  866\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-28T20:42:20-06:00\",\"transaction\":{\"id\":\"trhicgfirxdl2jzclr63\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-28T21:39:53-06:00\",\"operation_date\":\"2023-07-28T21:40:58-06:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"2ECD2BD94734E5DD392D8678BC64CDAB_7TW9IGCSE8_1690598387.9877\",\"due_date\":\"2023-07-29T09:39:53-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-28T21:39:53-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 02:42:20','2023-07-29 02:42:20'),(7053,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  910\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T21:43:09-05:00\",\"transaction\":{\"id\":\"trbat3lduqhcq2o4zlyp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-28T21:43:09-05:00\",\"operation_date\":\"2023-07-28T21:43:09-05:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":null,\"order_id\":\"2ECD2BD94734E5DD392D8678BC64CDAB_7TW9IGCSE8_1690598587.3183\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-28T21:43:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbat3lduqhcq2o4zlyp/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-29 02:43:09','2023-07-29 02:43:09'),(7054,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-28T21:44:55-05:00\",\"transaction\":{\"id\":\"trhcb7lhsuxrpqlc45cy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-28T21:43:56-05:00\",\"operation_date\":\"2023-07-28T21:43:56-05:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":null,\"order_id\":\"86B20716FBD5B253D27CEC43127089BC_Q6TZ5LVBEF_1690598633.906\",\"due_date\":\"2023-07-29T09:43:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-28T21:43:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhcb7lhsuxrpqlc45cy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 02:44:56','2023-07-29 02:44:56'),(7055,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-28T21:46:04-05:00\",\"transaction\":{\"id\":\"trhcb7lhsuxrpqlc45cy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"71456244\",\"creation_date\":\"2023-07-28T21:43:56-05:00\",\"operation_date\":\"2023-07-28T21:45:47-05:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":null,\"order_id\":\"86B20716FBD5B253D27CEC43127089BC_Q6TZ5LVBEF_1690598633.906\",\"due_date\":\"2023-07-29T09:43:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-28T21:43:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 02:46:04','2023-07-29 02:46:04'),(7056,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-29T07:14:56-05:00\",\"transaction\":{\"id\":\"tryfk1zumqjxcdnsq9yw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-29T07:14:56-05:00\",\"operation_date\":\"2023-07-29T07:14:56-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"D395771085AAB05244A4FB8FD91BF4EE_4XJCLA5F3M_1690632893.4168\",\"amount\":252000.00,\"customer\":{\"name\":\"Esteban\",\"last_name\":\"Restrepo Ramirez\",\"email\":\"esaracar10@hotmail.com\",\"phone_number\":\"3218217318\",\"address\":null,\"creation_date\":\"2023-07-29T07:14:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tryfk1zumqjxcdnsq9yw/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-29 12:14:57','2023-07-29 12:14:57'),(7057,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-29T07:37:00-05:00\",\"transaction\":{\"id\":\"trhcja110hy1ijd24asr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-29T07:36:20-05:00\",\"operation_date\":\"2023-07-29T07:36:20-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez pacheco (1019906046)\",\"error_message\":null,\"order_id\":\"35937E34256CF4E5B2F7DA08871D2A0B_BQCJNHGE54_1690634176.843\",\"due_date\":\"2023-07-29T19:36:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hugo andres\",\"last_name\":\"alvarez\",\"email\":\"hugoandres.alvarez@gmail.com\",\"phone_number\":\"3005865449\",\"address\":null,\"creation_date\":\"2023-07-29T07:36:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhcja110hy1ijd24asr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 12:37:01','2023-07-29 12:37:01'),(7058,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-29T07:38:00-05:00\",\"transaction\":{\"id\":\"trhcja110hy1ijd24asr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"71700729\",\"creation_date\":\"2023-07-29T07:36:20-05:00\",\"operation_date\":\"2023-07-29T07:37:55-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez pacheco (1019906046)\",\"error_message\":null,\"order_id\":\"35937E34256CF4E5B2F7DA08871D2A0B_BQCJNHGE54_1690634176.843\",\"due_date\":\"2023-07-29T19:36:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hugo andres\",\"last_name\":\"alvarez\",\"email\":\"hugoandres.alvarez@gmail.com\",\"phone_number\":\"3005865449\",\"address\":null,\"creation_date\":\"2023-07-29T07:36:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 12:38:02','2023-07-29 12:38:02'),(7059,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-29T09:43:13-05:00\",\"transaction\":{\"id\":\"trbcu9feapdlvxfpyoul\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-29T09:40:37-05:00\",\"operation_date\":\"2023-07-29T09:40:37-05:00\",\"description\":\"Pago Mensual academia: ALEJANDRO HENAO PALACIO (1020228648)\",\"error_message\":null,\"order_id\":\"269D837AFADA308DD4AEAB28CA2D57E4_6FM4NSI9GB_1690641629.6084\",\"due_date\":\"2023-07-29T21:40:37-05:00\",\"amount\":363400.00,\"customer\":{\"name\":\"fisonder\",\"last_name\":\"henao\",\"email\":\"fisonder10@gmail.com\",\"phone_number\":\"3157169826\",\"address\":null,\"creation_date\":\"2023-07-29T09:40:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbcu9feapdlvxfpyoul/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 14:43:14','2023-07-29 14:43:14'),(7060,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-29T09:44:55-05:00\",\"transaction\":{\"id\":\"trbcu9feapdlvxfpyoul\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"71892305\",\"creation_date\":\"2023-07-29T09:40:37-05:00\",\"operation_date\":\"2023-07-29T09:44:44-05:00\",\"description\":\"Pago Mensual academia: ALEJANDRO HENAO PALACIO (1020228648)\",\"error_message\":null,\"order_id\":\"269D837AFADA308DD4AEAB28CA2D57E4_6FM4NSI9GB_1690641629.6084\",\"due_date\":\"2023-07-29T21:40:37-05:00\",\"amount\":363400.00,\"customer\":{\"name\":\"fisonder\",\"last_name\":\"henao\",\"email\":\"fisonder10@gmail.com\",\"phone_number\":\"3157169826\",\"address\":null,\"creation_date\":\"2023-07-29T09:40:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 14:44:55','2023-07-29 14:44:55'),(7061,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1181\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-29T10:27:13-05:00\",\"transaction\":{\"id\":\"tryfk1zumqjxcdnsq9yw\",\"authorization\":\"R09061\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-07-29T07:14:56-05:00\",\"operation_date\":\"2023-07-29T10:27:12-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"D395771085AAB05244A4FB8FD91BF4EE_4XJCLA5F3M_1690632893.4168\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"521897XXXXXX4664\",\"holder_name\":\"FRANKLIN RESTREPO\",\"expiration_year\":\"28\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"EXITO\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":252000.00,\"customer\":{\"name\":\"Esteban\",\"last_name\":\"Restrepo Ramirez\",\"email\":\"esaracar10@hotmail.com\",\"phone_number\":\"3218217318\",\"address\":null,\"creation_date\":\"2023-07-29T07:14:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tryfk1zumqjxcdnsq9yw/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-29 15:27:14','2023-07-29 15:27:14'),(7062,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-29T15:45:09-05:00\",\"transaction\":{\"id\":\"tr3voh42k3se6sl9whyf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-29T15:44:25-05:00\",\"operation_date\":\"2023-07-29T15:44:25-05:00\",\"description\":\"Pago Mensual academia: isaac david Alvarez Callejas (1023659076)\",\"error_message\":null,\"order_id\":\"E8BF0F27D70D480D3AB793BB7619AAA5_EB2WZJ0AXC_1690663461.5093\",\"due_date\":\"2023-07-30T03:44:25-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"jose lisandro\",\"last_name\":\"Alvarez Galvis\",\"email\":\"lisoalvares@gmail.com\",\"phone_number\":\"3116065670\",\"address\":null,\"creation_date\":\"2023-07-29T15:44:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3voh42k3se6sl9whyf/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 20:45:10','2023-07-29 20:45:10'),(7063,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-29T14:57:09-06:00\",\"transaction\":{\"id\":\"tr3voh42k3se6sl9whyf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-29T15:44:25-06:00\",\"operation_date\":\"2023-07-29T15:54:29-06:00\",\"description\":\"Pago Mensual academia: isaac david Alvarez Callejas (1023659076)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"E8BF0F27D70D480D3AB793BB7619AAA5_EB2WZJ0AXC_1690663461.5093\",\"due_date\":\"2023-07-30T03:44:25-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"jose lisandro\",\"last_name\":\"Alvarez Galvis\",\"email\":\"lisoalvares@gmail.com\",\"phone_number\":\"3116065670\",\"address\":null,\"creation_date\":\"2023-07-29T15:44:25-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-29 20:57:10','2023-07-29 20:57:10'),(7064,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-29T21:26:44-05:00\",\"transaction\":{\"id\":\"troudo57isl7yv8yccsp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-29T21:26:01-05:00\",\"operation_date\":\"2023-07-29T21:26:01-05:00\",\"description\":\"Pago Mensual academia: JUAN STEBAN CORREDOR MUETE (1027286961)\",\"error_message\":null,\"order_id\":\"747D3443E319A22747FBB873E8B2F9F2_O014NZ2X5K_1690683958.6416\",\"due_date\":\"2023-07-30T09:26:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan\",\"last_name\":\"Corredor Ramirez\",\"email\":\"juaningindustrial98@gmail.com\",\"phone_number\":\"3142313779\",\"address\":null,\"creation_date\":\"2023-07-29T21:26:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troudo57isl7yv8yccsp/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 02:26:45','2023-07-30 02:26:45'),(7065,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-29T21:27:59-05:00\",\"transaction\":{\"id\":\"troudo57isl7yv8yccsp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"73050936\",\"creation_date\":\"2023-07-29T21:26:01-05:00\",\"operation_date\":\"2023-07-29T21:27:36-05:00\",\"description\":\"Pago Mensual academia: JUAN STEBAN CORREDOR MUETE (1027286961)\",\"error_message\":null,\"order_id\":\"747D3443E319A22747FBB873E8B2F9F2_O014NZ2X5K_1690683958.6416\",\"due_date\":\"2023-07-30T09:26:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan\",\"last_name\":\"Corredor Ramirez\",\"email\":\"juaningindustrial98@gmail.com\",\"phone_number\":\"3142313779\",\"address\":null,\"creation_date\":\"2023-07-29T21:26:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 02:28:00','2023-07-30 02:28:00'),(7066,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-29T21:43:52-05:00\",\"transaction\":{\"id\":\"trb6ic4klwexpajclzst\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-29T21:42:57-05:00\",\"operation_date\":\"2023-07-29T21:42:57-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Larios Soto (1020325771)\",\"error_message\":null,\"order_id\":\"92A08BF918F44CCD961477BE30023DA1_8OE07BTSFL_1690684973.5521\",\"due_date\":\"2023-07-30T09:42:57-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"juan jose\",\"last_name\":\"larios soto\",\"email\":\"lariospimienta@icloud.com\",\"phone_number\":\"3126622766\",\"address\":null,\"creation_date\":\"2023-07-29T21:42:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb6ic4klwexpajclzst/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 02:43:53','2023-07-30 02:43:53'),(7067,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-29T21:45:17-05:00\",\"transaction\":{\"id\":\"trb6ic4klwexpajclzst\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"73066948\",\"creation_date\":\"2023-07-29T21:42:57-05:00\",\"operation_date\":\"2023-07-29T21:45:11-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Larios Soto (1020325771)\",\"error_message\":null,\"order_id\":\"92A08BF918F44CCD961477BE30023DA1_8OE07BTSFL_1690684973.5521\",\"due_date\":\"2023-07-30T09:42:57-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"juan jose\",\"last_name\":\"larios soto\",\"email\":\"lariospimienta@icloud.com\",\"phone_number\":\"3126622766\",\"address\":null,\"creation_date\":\"2023-07-29T21:42:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 02:45:18','2023-07-30 02:45:18'),(7068,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T09:59:00-05:00\",\"transaction\":{\"id\":\"trpjsc95kvinnhen1hwt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T09:58:00-05:00\",\"operation_date\":\"2023-07-30T09:58:00-05:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":null,\"order_id\":\"2ECD2BD94734E5DD392D8678BC64CDAB_7TW9IGCSE8_1690729076.0159\",\"due_date\":\"2023-07-30T21:58:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-30T09:58:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpjsc95kvinnhen1hwt/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 14:59:00','2023-07-30 14:59:00'),(7069,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T10:00:01-05:00\",\"transaction\":{\"id\":\"trpjsc95kvinnhen1hwt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"73359309\",\"creation_date\":\"2023-07-30T09:58:00-05:00\",\"operation_date\":\"2023-07-30T09:59:54-05:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":null,\"order_id\":\"2ECD2BD94734E5DD392D8678BC64CDAB_7TW9IGCSE8_1690729076.0159\",\"due_date\":\"2023-07-30T21:58:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-30T09:58:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 15:00:02','2023-07-30 15:00:02'),(7070,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T10:01:14-05:00\",\"transaction\":{\"id\":\"trx3kzwx0wgj0x4hfrsi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T10:00:25-05:00\",\"operation_date\":\"2023-07-30T10:00:25-05:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":null,\"order_id\":\"8C9A14FFEBB7677D033FFCE847991293_4NVL3DMOB9_1690729222.483\",\"due_date\":\"2023-07-30T22:00:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-30T10:00:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trx3kzwx0wgj0x4hfrsi/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 15:01:15','2023-07-30 15:01:15'),(7071,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T10:02:02-05:00\",\"transaction\":{\"id\":\"trx3kzwx0wgj0x4hfrsi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"73361877\",\"creation_date\":\"2023-07-30T10:00:25-05:00\",\"operation_date\":\"2023-07-30T10:01:56-05:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":null,\"order_id\":\"8C9A14FFEBB7677D033FFCE847991293_4NVL3DMOB9_1690729222.483\",\"due_date\":\"2023-07-30T22:00:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-30T10:00:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 15:02:03','2023-07-30 15:02:03'),(7072,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T10:10:34-05:00\",\"transaction\":{\"id\":\"trdkyqfvetctxcbl7dq8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-30T10:10:34-05:00\",\"operation_date\":\"2023-07-30T10:10:34-05:00\",\"description\":\"Pago Mensual academia: Matias Trujillo Peñaranda (1141526531)\",\"error_message\":null,\"order_id\":\"BD85282513DA4089C441926E1975898C_WFZ5N9GTMV_1690729830.3356\",\"amount\":165900.00,\"customer\":{\"name\":\"Sorell M\",\"last_name\":\"Peñaranda\",\"email\":\"sorellmayely@gmail.com\",\"phone_number\":\"3123610316\",\"address\":null,\"creation_date\":\"2023-07-30T10:10:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdkyqfvetctxcbl7dq8/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-30 15:10:35','2023-07-30 15:10:35'),(7073,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1150\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T10:12:13-05:00\",\"transaction\":{\"id\":\"trdkyqfvetctxcbl7dq8\",\"authorization\":\"101212\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-30T10:10:34-05:00\",\"operation_date\":\"2023-07-30T10:12:12-05:00\",\"description\":\"Pago Mensual academia: Matias Trujillo Peñaranda (1141526531)\",\"error_message\":null,\"order_id\":\"BD85282513DA4089C441926E1975898C_WFZ5N9GTMV_1690729830.3356\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX0922\",\"holder_name\":\"Juan Pablo Trujillo \",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Sorell M\",\"last_name\":\"Peñaranda\",\"email\":\"sorellmayely@gmail.com\",\"phone_number\":\"3123610316\",\"address\":null,\"creation_date\":\"2023-07-30T10:10:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdkyqfvetctxcbl7dq8/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-07-30 15:12:14','2023-07-30 15:12:14'),(7074,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T11:08:42-05:00\",\"transaction\":{\"id\":\"trz2ik1huosg21yahpms\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T11:07:03-05:00\",\"operation_date\":\"2023-07-30T11:07:03-05:00\",\"description\":\"Pago Mensual academia: Mathias Aguirre Rojas (1243088137)\",\"error_message\":null,\"order_id\":\"F44EE263952E65B3610B8BA51229D1F9_9UZ2SPFDJA_1690733218.7695\",\"due_date\":\"2023-07-30T23:07:03-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jose\",\"last_name\":\"aguirre cardona\",\"email\":\"jac.18@hotmail.com\",\"phone_number\":\"3004112843\",\"address\":null,\"creation_date\":\"2023-07-30T11:07:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz2ik1huosg21yahpms/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 16:08:43','2023-07-30 16:08:43'),(7075,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T10:12:10-06:00\",\"transaction\":{\"id\":\"trz2ik1huosg21yahpms\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"73445679\",\"creation_date\":\"2023-07-30T11:07:03-06:00\",\"operation_date\":\"2023-07-30T11:10:58-06:00\",\"description\":\"Pago Mensual academia: Mathias Aguirre Rojas (1243088137)\",\"error_message\":null,\"order_id\":\"F44EE263952E65B3610B8BA51229D1F9_9UZ2SPFDJA_1690733218.7695\",\"due_date\":\"2023-07-30T23:07:03-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jose\",\"last_name\":\"aguirre cardona\",\"email\":\"jac.18@hotmail.com\",\"phone_number\":\"3004112843\",\"address\":null,\"creation_date\":\"2023-07-30T11:07:03-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 16:12:10','2023-07-30 16:12:10'),(7076,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T12:32:01-05:00\",\"transaction\":{\"id\":\"trdmwpo8xqvgxx6hzheh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T12:30:41-05:00\",\"operation_date\":\"2023-07-30T12:30:41-05:00\",\"description\":\"Pago Mensual academia: Martín Motta Martínez (1077242914)\",\"error_message\":null,\"order_id\":\"0AFA92FC0F8A9CF051BF2961B06AC56B_TH7PX1K3FN_1690738236.3327\",\"due_date\":\"2023-07-31T00:30:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sindy Carolina\",\"last_name\":\"Martínez Cuellar\",\"email\":\"juniorcamilo2003@gmail.com\",\"phone_number\":\"3212614609\",\"address\":null,\"creation_date\":\"2023-07-30T12:30:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdmwpo8xqvgxx6hzheh/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 17:32:02','2023-07-30 17:32:02'),(7077,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T12:33:01-05:00\",\"transaction\":{\"id\":\"trdmwpo8xqvgxx6hzheh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"73557078\",\"creation_date\":\"2023-07-30T12:30:41-05:00\",\"operation_date\":\"2023-07-30T12:32:51-05:00\",\"description\":\"Pago Mensual academia: Martín Motta Martínez (1077242914)\",\"error_message\":null,\"order_id\":\"0AFA92FC0F8A9CF051BF2961B06AC56B_TH7PX1K3FN_1690738236.3327\",\"due_date\":\"2023-07-31T00:30:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sindy Carolina\",\"last_name\":\"Martínez Cuellar\",\"email\":\"juniorcamilo2003@gmail.com\",\"phone_number\":\"3212614609\",\"address\":null,\"creation_date\":\"2023-07-30T12:30:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 17:33:02','2023-07-30 17:33:02'),(7078,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T13:08:55-05:00\",\"transaction\":{\"id\":\"trqin0lolvxmxgc4emnf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T13:08:01-05:00\",\"operation_date\":\"2023-07-30T13:08:01-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Sierra Rua (1018263693)\",\"error_message\":null,\"order_id\":\"A41B3BB3E6B050B6C9067C67F663B915_C72JLR9BVF_1690740477.071\",\"due_date\":\"2023-07-31T01:08:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maximiliano\",\"last_name\":\"Sierra Rua\",\"email\":\"andrearua14@hotmail.com\",\"phone_number\":\"3014464474\",\"address\":null,\"creation_date\":\"2023-07-30T13:08:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqin0lolvxmxgc4emnf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 18:08:55','2023-07-30 18:08:55'),(7079,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T13:10:36-05:00\",\"transaction\":{\"id\":\"trqin0lolvxmxgc4emnf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"73604207\",\"creation_date\":\"2023-07-30T13:08:01-05:00\",\"operation_date\":\"2023-07-30T13:10:30-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Sierra Rua (1018263693)\",\"error_message\":null,\"order_id\":\"A41B3BB3E6B050B6C9067C67F663B915_C72JLR9BVF_1690740477.071\",\"due_date\":\"2023-07-31T01:08:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maximiliano\",\"last_name\":\"Sierra Rua\",\"email\":\"andrearua14@hotmail.com\",\"phone_number\":\"3014464474\",\"address\":null,\"creation_date\":\"2023-07-30T13:08:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 18:10:37','2023-07-30 18:10:37'),(7080,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T13:50:50-05:00\",\"transaction\":{\"id\":\"trvtnngtnpnwusl1qldf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T13:50:11-05:00\",\"operation_date\":\"2023-07-30T13:50:11-05:00\",\"description\":\"Pago Mensual academia: Emilio Cano Quintero (1034927865)\",\"error_message\":null,\"order_id\":\"1160453108D3E537255E9F7B931F4E90_X16Z7ACGVU_1690743007.3255\",\"due_date\":\"2023-07-31T01:50:11-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Cano Quintero\",\"email\":\"stewart.cano@global.komatsu\",\"phone_number\":\"3183819449\",\"address\":null,\"creation_date\":\"2023-07-30T13:50:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvtnngtnpnwusl1qldf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 18:50:51','2023-07-30 18:50:51'),(7081,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T13:51:40-05:00\",\"transaction\":{\"id\":\"trvtnngtnpnwusl1qldf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"73656043\",\"creation_date\":\"2023-07-30T13:50:11-05:00\",\"operation_date\":\"2023-07-30T13:51:36-05:00\",\"description\":\"Pago Mensual academia: Emilio Cano Quintero (1034927865)\",\"error_message\":null,\"order_id\":\"1160453108D3E537255E9F7B931F4E90_X16Z7ACGVU_1690743007.3255\",\"due_date\":\"2023-07-31T01:50:11-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Cano Quintero\",\"email\":\"stewart.cano@global.komatsu\",\"phone_number\":\"3183819449\",\"address\":null,\"creation_date\":\"2023-07-30T13:50:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 18:51:41','2023-07-30 18:51:41'),(7082,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T15:29:30-05:00\",\"transaction\":{\"id\":\"trt6ayz1lkcsmuk2ohx9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T15:28:31-05:00\",\"operation_date\":\"2023-07-30T15:28:31-05:00\",\"description\":\"Pago Mensual academia: Martin Loaiza Ramirez (1035006356)\",\"error_message\":null,\"order_id\":\"5D4AE76F053F8F2516AD12961EF7FE97_PCA7R63XOJ_1690748907.769\",\"due_date\":\"2023-07-31T03:28:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Grace Julieta\",\"last_name\":\"Ramirez\",\"email\":\"julietamrr@hotmail.com\",\"phone_number\":\"3143319536\",\"address\":null,\"creation_date\":\"2023-07-30T15:28:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trt6ayz1lkcsmuk2ohx9/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 20:29:31','2023-07-30 20:29:31'),(7083,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T15:30:23-05:00\",\"transaction\":{\"id\":\"trt6ayz1lkcsmuk2ohx9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"73770081\",\"creation_date\":\"2023-07-30T15:28:31-05:00\",\"operation_date\":\"2023-07-30T15:30:17-05:00\",\"description\":\"Pago Mensual academia: Martin Loaiza Ramirez (1035006356)\",\"error_message\":null,\"order_id\":\"5D4AE76F053F8F2516AD12961EF7FE97_PCA7R63XOJ_1690748907.769\",\"due_date\":\"2023-07-31T03:28:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Grace Julieta\",\"last_name\":\"Ramirez\",\"email\":\"julietamrr@hotmail.com\",\"phone_number\":\"3143319536\",\"address\":null,\"creation_date\":\"2023-07-30T15:28:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 20:30:23','2023-07-30 20:30:23'),(7084,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T16:19:40-05:00\",\"transaction\":{\"id\":\"trve3faynw0yegdgieec\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-30T16:19:39-05:00\",\"operation_date\":\"2023-07-30T16:19:39-05:00\",\"description\":\"Pago Mensual academia: Ismael Ramirez Restrepo (1035003577)\",\"error_message\":null,\"order_id\":\"38ED162A0DBEF7B3FE0F628AA08B90E7_BV93T8L1FK_1690751974.2322\",\"amount\":165900.00,\"customer\":{\"name\":\"Brayan\",\"last_name\":\"Ramirez García\",\"email\":\"Nrestre26@gmail.com\",\"phone_number\":\"3206350374\",\"address\":null,\"creation_date\":\"2023-07-30T16:19:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trve3faynw0yegdgieec/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-07-30 21:19:40','2023-07-30 21:19:40'),(7085,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1145\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T16:20:45-05:00\",\"transaction\":{\"id\":\"trve3faynw0yegdgieec\",\"authorization\":\"R07757\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-30T16:19:39-05:00\",\"operation_date\":\"2023-07-30T16:20:44-05:00\",\"description\":\"Pago Mensual academia: Ismael Ramirez Restrepo (1035003577)\",\"error_message\":null,\"order_id\":\"38ED162A0DBEF7B3FE0F628AA08B90E7_BV93T8L1FK_1690751974.2322\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX5764\",\"holder_name\":\"BRAYAN RAMIREZ G\",\"expiration_year\":\"25\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Brayan\",\"last_name\":\"Ramirez García\",\"email\":\"Nrestre26@gmail.com\",\"phone_number\":\"3206350374\",\"address\":null,\"creation_date\":\"2023-07-30T16:19:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trve3faynw0yegdgieec/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-30 21:20:46','2023-07-30 21:20:46'),(7086,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T16:21:32-05:00\",\"transaction\":{\"id\":\"tr3qxm73umg38urryksq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-30T16:21:31-05:00\",\"operation_date\":\"2023-07-30T16:21:31-05:00\",\"description\":\"Pago Mensual academia: Isaac Ramirez Restrepo (1034999568)\",\"error_message\":null,\"order_id\":\"D87C68A56BC8EB803B44F25ABB627786_EF34RLN1C5_1690752089.8943\",\"amount\":165900.00,\"customer\":{\"name\":\"Brayan\",\"last_name\":\"Ramirez García\",\"email\":\"Nrestre26@gmail.com\",\"phone_number\":\"3206350374\",\"address\":null,\"creation_date\":\"2023-07-30T16:21:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3qxm73umg38urryksq/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-07-30 21:21:32','2023-07-30 21:21:32'),(7087,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1144\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T16:22:19-05:00\",\"transaction\":{\"id\":\"tr3qxm73umg38urryksq\",\"authorization\":\"R08339\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-30T16:21:31-05:00\",\"operation_date\":\"2023-07-30T16:22:18-05:00\",\"description\":\"Pago Mensual academia: Isaac Ramirez Restrepo (1034999568)\",\"error_message\":null,\"order_id\":\"D87C68A56BC8EB803B44F25ABB627786_EF34RLN1C5_1690752089.8943\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX5764\",\"holder_name\":\"BRAYAN RAMIREZ G\",\"expiration_year\":\"25\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Brayan\",\"last_name\":\"Ramirez García\",\"email\":\"Nrestre26@gmail.com\",\"phone_number\":\"3206350374\",\"address\":null,\"creation_date\":\"2023-07-30T16:21:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3qxm73umg38urryksq/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-07-30 21:22:20','2023-07-30 21:22:20'),(7088,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T17:39:26-05:00\",\"transaction\":{\"id\":\"tr7or5hfdnkh39l5wefr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T17:38:32-05:00\",\"operation_date\":\"2023-07-30T17:38:32-05:00\",\"description\":\"Pago Mensual academia: juan jose ortiz agudelo (1020312977)\",\"error_message\":null,\"order_id\":\"32B3EE0272954B956A7D1F86F76AFA21_48X96LUQ0R_1690756709.5046\",\"due_date\":\"2023-07-31T05:38:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ruben\",\"last_name\":\"ortiz\",\"email\":\"ruben1121ortiz@gmail.com\",\"phone_number\":\"3225271511\",\"address\":null,\"creation_date\":\"2023-07-30T17:38:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7or5hfdnkh39l5wefr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 22:39:27','2023-07-30 22:39:27'),(7089,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T17:41:13-05:00\",\"transaction\":{\"id\":\"tr7or5hfdnkh39l5wefr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"73915157\",\"creation_date\":\"2023-07-30T17:38:32-05:00\",\"operation_date\":\"2023-07-30T17:40:56-05:00\",\"description\":\"Pago Mensual academia: juan jose ortiz agudelo (1020312977)\",\"error_message\":null,\"order_id\":\"32B3EE0272954B956A7D1F86F76AFA21_48X96LUQ0R_1690756709.5046\",\"due_date\":\"2023-07-31T05:38:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ruben\",\"last_name\":\"ortiz\",\"email\":\"ruben1121ortiz@gmail.com\",\"phone_number\":\"3225271511\",\"address\":null,\"creation_date\":\"2023-07-30T17:38:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-30 22:41:14','2023-07-30 22:41:14'),(7090,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T19:37:55-05:00\",\"transaction\":{\"id\":\"trwrkx1gsltxlfxphyfi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T19:36:55-05:00\",\"operation_date\":\"2023-07-30T19:36:55-05:00\",\"description\":\"Pago Mensual academia: JOAQUIN BARRIENTOS GOMEZ (1035011275)\",\"error_message\":null,\"order_id\":\"77EE3BC58CE560B86C2B59363281E914_V3UHXBEZQF_1690763811.3826\",\"due_date\":\"2023-07-31T07:36:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"HERNAN ANDRES\",\"last_name\":\"BARRIENTOS BETANCUR\",\"email\":\"hernan.barrientos@gmail.com\",\"phone_number\":\"3044809966\",\"address\":null,\"creation_date\":\"2023-07-30T19:36:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwrkx1gsltxlfxphyfi/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 00:37:56','2023-07-31 00:37:56'),(7091,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T18:39:12-06:00\",\"transaction\":{\"id\":\"trwrkx1gsltxlfxphyfi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"74059088\",\"creation_date\":\"2023-07-30T19:36:55-06:00\",\"operation_date\":\"2023-07-30T19:39:11-06:00\",\"description\":\"Pago Mensual academia: JOAQUIN BARRIENTOS GOMEZ (1035011275)\",\"error_message\":null,\"order_id\":\"77EE3BC58CE560B86C2B59363281E914_V3UHXBEZQF_1690763811.3826\",\"due_date\":\"2023-07-31T07:36:55-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"HERNAN ANDRES\",\"last_name\":\"BARRIENTOS BETANCUR\",\"email\":\"hernan.barrientos@gmail.com\",\"phone_number\":\"3044809966\",\"address\":null,\"creation_date\":\"2023-07-30T19:36:55-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 00:39:13','2023-07-31 00:39:13'),(7092,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T20:40:21-05:00\",\"transaction\":{\"id\":\"trckxvvpxqwibzvjokwl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T20:39:02-05:00\",\"operation_date\":\"2023-07-30T20:39:02-05:00\",\"description\":\"Pago Mensual academia: Agustin Garcia Chain (1035008392)\",\"error_message\":null,\"order_id\":\"98C39996BF1543E974747A2549B3107C_TPAR5YE8D7_1690767537.1039\",\"due_date\":\"2023-07-31T08:39:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edgar Alberto\",\"last_name\":\"Garcia Rodriguez\",\"email\":\"ealbertogarcia@gmail.com\",\"phone_number\":\"3183967339\",\"address\":null,\"creation_date\":\"2023-07-30T20:39:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trckxvvpxqwibzvjokwl/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 01:40:22','2023-07-31 01:40:22'),(7093,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  848\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T20:40:31-05:00\",\"transaction\":{\"id\":\"trg6yu2ce0b5t2renacx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-30T20:40:31-05:00\",\"operation_date\":\"2023-07-30T20:40:31-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"6A9AEDDFC689C1D0E3B9CCC3AB651BC5_DHSCX1Y3QT_1690767628.694\",\"amount\":252000.00,\"customer\":{\"name\":\"Doris\",\"last_name\":\"Montoya\",\"email\":\"dorismontoya36@gmail.com\",\"phone_number\":\"3163210575\",\"address\":null,\"creation_date\":\"2023-07-30T20:40:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trg6yu2ce0b5t2renacx/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-31 01:40:32','2023-07-31 01:40:32'),(7094,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1108\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T20:41:49-05:00\",\"transaction\":{\"id\":\"trg6yu2ce0b5t2renacx\",\"authorization\":\"R09412\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-30T20:40:31-05:00\",\"operation_date\":\"2023-07-30T20:41:48-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"6A9AEDDFC689C1D0E3B9CCC3AB651BC5_DHSCX1Y3QT_1690767628.694\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX6981\",\"holder_name\":\"DORIS ELENA MONTOYA P\",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":252000.00,\"customer\":{\"name\":\"Doris\",\"last_name\":\"Montoya\",\"email\":\"dorismontoya36@gmail.com\",\"phone_number\":\"3163210575\",\"address\":null,\"creation_date\":\"2023-07-30T20:40:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trg6yu2ce0b5t2renacx/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-31 01:41:50','2023-07-31 01:41:50'),(7095,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T19:42:10-06:00\",\"transaction\":{\"id\":\"trckxvvpxqwibzvjokwl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"74142858\",\"creation_date\":\"2023-07-30T20:39:02-06:00\",\"operation_date\":\"2023-07-30T20:41:24-06:00\",\"description\":\"Pago Mensual academia: Agustin Garcia Chain (1035008392)\",\"error_message\":null,\"order_id\":\"98C39996BF1543E974747A2549B3107C_TPAR5YE8D7_1690767537.1039\",\"due_date\":\"2023-07-31T08:39:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edgar Alberto\",\"last_name\":\"Garcia Rodriguez\",\"email\":\"ealbertogarcia@gmail.com\",\"phone_number\":\"3183967339\",\"address\":null,\"creation_date\":\"2023-07-30T20:39:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 01:42:11','2023-07-31 01:42:11'),(7096,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T21:05:31-05:00\",\"transaction\":{\"id\":\"tryceok3ixsh3hzmlkvr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T21:04:55-05:00\",\"operation_date\":\"2023-07-30T21:04:55-05:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":null,\"order_id\":\"32CBF687880EB1674A07BF717761DD3A_1EAIG5270P_1690769091.4218\",\"due_date\":\"2023-07-31T09:04:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-07-30T21:04:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryceok3ixsh3hzmlkvr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 02:05:32','2023-07-31 02:05:32'),(7097,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T21:06:24-05:00\",\"transaction\":{\"id\":\"tryceok3ixsh3hzmlkvr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"74175054\",\"creation_date\":\"2023-07-30T21:04:55-05:00\",\"operation_date\":\"2023-07-30T21:06:16-05:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":null,\"order_id\":\"32CBF687880EB1674A07BF717761DD3A_1EAIG5270P_1690769091.4218\",\"due_date\":\"2023-07-31T09:04:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-07-30T21:04:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 02:06:25','2023-07-31 02:06:25'),(7098,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T22:21:29-05:00\",\"transaction\":{\"id\":\"trderni3iany4hpweo7o\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-30T22:20:40-05:00\",\"operation_date\":\"2023-07-30T22:20:40-05:00\",\"description\":\"Pago Mensual academia: Martin Escobar Galvis (1038266060)\",\"error_message\":null,\"order_id\":\"9AEADE7BEADA35C83D3B344FBAFE43B0_QIPYJE3VD9_1690773635.9369\",\"due_date\":\"2023-07-31T10:20:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres David\",\"last_name\":\"Escobar Suceba\",\"email\":\"andres.escobar12@gmail.com\",\"phone_number\":\"3128720114\",\"address\":null,\"creation_date\":\"2023-07-30T22:20:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trderni3iany4hpweo7o/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 03:21:30','2023-07-31 03:21:30'),(7099,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T22:22:45-05:00\",\"transaction\":{\"id\":\"trderni3iany4hpweo7o\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"74255053\",\"creation_date\":\"2023-07-30T22:20:40-05:00\",\"operation_date\":\"2023-07-30T22:22:36-05:00\",\"description\":\"Pago Mensual academia: Martin Escobar Galvis (1038266060)\",\"error_message\":null,\"order_id\":\"9AEADE7BEADA35C83D3B344FBAFE43B0_QIPYJE3VD9_1690773635.9369\",\"due_date\":\"2023-07-31T10:20:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres David\",\"last_name\":\"Escobar Suceba\",\"email\":\"andres.escobar12@gmail.com\",\"phone_number\":\"3128720114\",\"address\":null,\"creation_date\":\"2023-07-30T22:20:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 03:22:46','2023-07-31 03:22:46'),(7100,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  855\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-30T22:47:51-05:00\",\"transaction\":{\"id\":\"trtxj7o7g6rlinsskvib\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-30T22:47:51-05:00\",\"operation_date\":\"2023-07-30T22:47:51-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"85D8CE590AD8981CA2C8286F79F59954_E-64C72ED8-11_1690775262.3812\",\"amount\":146900.00,\"customer\":{\"name\":\"Manuela\",\"last_name\":\"Montoya\",\"email\":\"manuelamj98@gmail.com\",\"phone_number\":\"3014620574\",\"address\":null,\"creation_date\":\"2023-07-30T22:47:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trtxj7o7g6rlinsskvib/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-07-31 03:47:52','2023-07-31 03:47:52'),(7101,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1115\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-30T22:48:51-05:00\",\"transaction\":{\"id\":\"trtxj7o7g6rlinsskvib\",\"authorization\":\"R00027\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-07-30T22:47:51-05:00\",\"operation_date\":\"2023-07-30T22:48:50-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"85D8CE590AD8981CA2C8286F79F59954_E-64C72ED8-11_1690775262.3812\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530371XXXXXX9352\",\"holder_name\":\"Manuela Montoya Jaime\",\"expiration_year\":\"24\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":146900.00,\"customer\":{\"name\":\"Manuela\",\"last_name\":\"Montoya\",\"email\":\"manuelamj98@gmail.com\",\"phone_number\":\"3014620574\",\"address\":null,\"creation_date\":\"2023-07-30T22:47:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trtxj7o7g6rlinsskvib/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-07-31 03:48:52','2023-07-31 03:48:52'),(7102,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-07-31T02:15:04-06:00\",\"transaction\":{\"id\":\"trnvtieq46uofrjnhwam\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-27T18:32:16-06:00\",\"operation_date\":\"2023-07-27T18:32:16-06:00\",\"description\":\"Pago Inscripción academia: TOMAS SOTO OCHOA (1035013032)\",\"error_message\":null,\"order_id\":\"F42C7F9C8AEAB0FC412031E192E2119D_38XTK0LNHQ_1690500731.4698\",\"due_date\":\"2023-07-28T06:32:16-06:00\",\"amount\":431000.00,\"customer\":{\"name\":\"TOMAS\",\"last_name\":\"SOTO\",\"email\":\"alejamoh@hotmail.com\",\"phone_number\":\"3164423091\",\"address\":null,\"creation_date\":\"2023-07-27T18:32:16-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnvtieq46uofrjnhwam/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 08:15:04','2023-07-31 08:15:04'),(7103,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  905\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-07-31T02:15:18-06:00\",\"transaction\":{\"id\":\"trh7bfmm5hehiky8seqj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-27T14:54:44-06:00\",\"operation_date\":\"2023-07-27T14:54:44-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"0AA1883C6411F7873CB83DACB17B0AFC_E-64C2CB5A-41_1690487648.1585\",\"due_date\":\"2023-07-28T02:54:44-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"luis Alberto\",\"last_name\":\"soto fonnegra\",\"email\":\"fonnegra71@hotmail.com\",\"phone_number\":\"3207387184\",\"address\":null,\"creation_date\":\"2023-07-27T14:54:44-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trh7bfmm5hehiky8seqj/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 08:15:19','2023-07-31 08:15:19'),(7104,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T07:14:22-05:00\",\"transaction\":{\"id\":\"tr6qnbftht8rj0qvyrwi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T07:13:25-05:00\",\"operation_date\":\"2023-07-31T07:13:25-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gomez Arango (1035014961)\",\"error_message\":null,\"order_id\":\"FDBD31F2027F20378B1A80125FC862DB_TZ3GRFMLDJ_1690805583.334\",\"due_date\":\"2023-07-31T19:13:25-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martha\",\"last_name\":\"Arango Valencia\",\"email\":\"martha.arango.finca@gmail.com\",\"phone_number\":\"3117873823\",\"address\":null,\"creation_date\":\"2023-07-31T07:13:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6qnbftht8rj0qvyrwi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 12:14:23','2023-07-31 12:14:23'),(7105,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T07:15:38-05:00\",\"transaction\":{\"id\":\"tr6qnbftht8rj0qvyrwi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"74402334\",\"creation_date\":\"2023-07-31T07:13:25-05:00\",\"operation_date\":\"2023-07-31T07:15:28-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gomez Arango (1035014961)\",\"error_message\":null,\"order_id\":\"FDBD31F2027F20378B1A80125FC862DB_TZ3GRFMLDJ_1690805583.334\",\"due_date\":\"2023-07-31T19:13:25-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martha\",\"last_name\":\"Arango Valencia\",\"email\":\"martha.arango.finca@gmail.com\",\"phone_number\":\"3117873823\",\"address\":null,\"creation_date\":\"2023-07-31T07:13:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 12:15:39','2023-07-31 12:15:39'),(7106,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T07:32:15-05:00\",\"transaction\":{\"id\":\"trrsry0exrgzx02i07zn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T07:31:38-05:00\",\"operation_date\":\"2023-07-31T07:31:38-05:00\",\"description\":\"Pago Mensual academia: JERONIMO VALENCIA RUIZ (1020321138)\",\"error_message\":null,\"order_id\":\"B22B257AD0519D4500539DA3C8BCF4DD_LH3AMS20OW_1690806693.7327\",\"due_date\":\"2023-07-31T19:31:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"VALENCIA\",\"email\":\"alejovalencia25@hotmail.com\",\"phone_number\":\"3147004765\",\"address\":null,\"creation_date\":\"2023-07-31T07:31:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrsry0exrgzx02i07zn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 12:32:15','2023-07-31 12:32:15'),(7107,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T07:32:46-05:00\",\"transaction\":{\"id\":\"trrsry0exrgzx02i07zn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"74422755\",\"creation_date\":\"2023-07-31T07:31:38-05:00\",\"operation_date\":\"2023-07-31T07:32:41-05:00\",\"description\":\"Pago Mensual academia: JERONIMO VALENCIA RUIZ (1020321138)\",\"error_message\":null,\"order_id\":\"B22B257AD0519D4500539DA3C8BCF4DD_LH3AMS20OW_1690806693.7327\",\"due_date\":\"2023-07-31T19:31:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"VALENCIA\",\"email\":\"alejovalencia25@hotmail.com\",\"phone_number\":\"3147004765\",\"address\":null,\"creation_date\":\"2023-07-31T07:31:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 12:32:47','2023-07-31 12:32:47'),(7108,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T09:44:05-05:00\",\"transaction\":{\"id\":\"trhca7290pvzklvgnsph\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T09:43:22-05:00\",\"operation_date\":\"2023-07-31T09:43:22-05:00\",\"description\":\"Pago Inscripción academia: Isaac Calle Giraldo (1038267000)\",\"error_message\":null,\"order_id\":\"2227D753DC18505031869D44673728E2_3NGVT24YDC_1690814597.7099\",\"due_date\":\"2023-07-31T21:43:22-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Catherine\",\"last_name\":\"Giraldo\",\"email\":\"cathe.giraldo@hotmail.com\",\"phone_number\":\"3104745144\",\"address\":null,\"creation_date\":\"2023-07-31T09:43:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhca7290pvzklvgnsph/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 14:44:05','2023-07-31 14:44:05'),(7109,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  848\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-31T09:06:11-06:00\",\"transaction\":{\"id\":\"trhca7290pvzklvgnsph\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-31T09:43:22-06:00\",\"operation_date\":\"2023-07-31T09:44:12-06:00\",\"description\":\"Pago Inscripción academia: Isaac Calle Giraldo (1038267000)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"2227D753DC18505031869D44673728E2_3NGVT24YDC_1690814597.7099\",\"due_date\":\"2023-07-31T21:43:22-06:00\",\"error_code\":1007,\"amount\":286000.00,\"customer\":{\"name\":\"Catherine\",\"last_name\":\"Giraldo\",\"email\":\"cathe.giraldo@hotmail.com\",\"phone_number\":\"3104745144\",\"address\":null,\"creation_date\":\"2023-07-31T09:43:22-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 15:06:12','2023-07-31 15:06:12'),(7110,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T10:22:03-05:00\",\"transaction\":{\"id\":\"trgoxmfzph4elpfed91q\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T10:21:30-05:00\",\"operation_date\":\"2023-07-31T10:21:30-05:00\",\"description\":\"Pago Inscripción academia: Isaac Calle Giraldo (1038267000)\",\"error_message\":null,\"order_id\":\"2227D753DC18505031869D44673728E2_3NGVT24YDC_1690816888.2195\",\"due_date\":\"2023-07-31T22:21:30-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Catherine\",\"last_name\":\"Giraldo\",\"email\":\"cathe.giraldo@hotmail.com\",\"phone_number\":\"3104745144\",\"address\":null,\"creation_date\":\"2023-07-31T10:21:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgoxmfzph4elpfed91q/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 15:22:04','2023-07-31 15:22:04'),(7111,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T10:23:26-05:00\",\"transaction\":{\"id\":\"trgoxmfzph4elpfed91q\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"74826900\",\"creation_date\":\"2023-07-31T10:21:30-05:00\",\"operation_date\":\"2023-07-31T10:22:42-05:00\",\"description\":\"Pago Inscripción academia: Isaac Calle Giraldo (1038267000)\",\"error_message\":null,\"order_id\":\"2227D753DC18505031869D44673728E2_3NGVT24YDC_1690816888.2195\",\"due_date\":\"2023-07-31T22:21:30-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Catherine\",\"last_name\":\"Giraldo\",\"email\":\"cathe.giraldo@hotmail.com\",\"phone_number\":\"3104745144\",\"address\":null,\"creation_date\":\"2023-07-31T10:21:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 15:23:27','2023-07-31 15:23:27'),(7112,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T10:55:36-05:00\",\"transaction\":{\"id\":\"trz2npie8wnoenjvjdqw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T10:53:46-05:00\",\"operation_date\":\"2023-07-31T10:53:46-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Velasco Mejia (1036459050)\",\"error_message\":null,\"order_id\":\"2B45E8D6ABF59038A975FAEEB6DC0782_B2VSR8OQJ7_1690818813.9429\",\"due_date\":\"2023-07-31T22:53:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan david\",\"last_name\":\"velasco idarraga\",\"email\":\"juan.velascoidarraga@gmail.com\",\"phone_number\":\"3173315273\",\"address\":null,\"creation_date\":\"2023-07-31T10:53:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz2npie8wnoenjvjdqw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 15:55:37','2023-07-31 15:55:37'),(7113,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T09:57:17-06:00\",\"transaction\":{\"id\":\"trz2npie8wnoenjvjdqw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"74932451\",\"creation_date\":\"2023-07-31T10:53:46-06:00\",\"operation_date\":\"2023-07-31T10:56:31-06:00\",\"description\":\"Pago Mensual academia: Maximiliano Velasco Mejia (1036459050)\",\"error_message\":null,\"order_id\":\"2B45E8D6ABF59038A975FAEEB6DC0782_B2VSR8OQJ7_1690818813.9429\",\"due_date\":\"2023-07-31T22:53:46-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan david\",\"last_name\":\"velasco idarraga\",\"email\":\"juan.velascoidarraga@gmail.com\",\"phone_number\":\"3173315273\",\"address\":null,\"creation_date\":\"2023-07-31T10:53:46-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 15:57:17','2023-07-31 15:57:17'),(7114,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T11:52:01-05:00\",\"transaction\":{\"id\":\"trvxemtjvslcvjy1fxfg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T11:50:17-05:00\",\"operation_date\":\"2023-07-31T11:50:17-05:00\",\"description\":\"Pago Mensual academia: Benjamín Gutiérrez Restrepo (1040578871)\",\"error_message\":null,\"order_id\":\"55D99A37B2E1BADBA7C8DF4CCD506A88_ZCF35E2RLG_1690822212.1131\",\"due_date\":\"2023-07-31T23:50:17-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristian\",\"last_name\":\"Gutierrez Gaviria\",\"email\":\"cristiangutierrezg22@hotmail.com\",\"phone_number\":\"3104093721\",\"address\":null,\"creation_date\":\"2023-07-31T11:50:17-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvxemtjvslcvjy1fxfg/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 16:52:02','2023-07-31 16:52:02'),(7115,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  828\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T11:53:22-05:00\",\"transaction\":{\"id\":\"trvxemtjvslcvjy1fxfg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"75109416\",\"creation_date\":\"2023-07-31T11:50:17-05:00\",\"operation_date\":\"2023-07-31T11:53:03-05:00\",\"description\":\"Pago Mensual academia: Benjamín Gutiérrez Restrepo (1040578871)\",\"error_message\":null,\"order_id\":\"55D99A37B2E1BADBA7C8DF4CCD506A88_ZCF35E2RLG_1690822212.1131\",\"due_date\":\"2023-07-31T23:50:17-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristian\",\"last_name\":\"Gutierrez Gaviria\",\"email\":\"cristiangutierrezg22@hotmail.com\",\"phone_number\":\"3104093721\",\"address\":null,\"creation_date\":\"2023-07-31T11:50:17-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 16:53:23','2023-07-31 16:53:23'),(7116,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T12:49:22-05:00\",\"transaction\":{\"id\":\"trh4em5njktb9xzbd0e5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T12:48:30-05:00\",\"operation_date\":\"2023-07-31T12:48:30-05:00\",\"description\":\"Pago Mensual academia: Dominic Rico Oyola (1022008060)\",\"error_message\":null,\"order_id\":\"99EF04EB612BAF0E86671A5109E22154_17DRBTJXZP_1690825707.5053\",\"due_date\":\"2023-08-01T00:48:30-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Dominic\",\"last_name\":\"Rico Oyola\",\"email\":\"julianaoyolam@gmail.com\",\"phone_number\":\"3186877715\",\"address\":null,\"creation_date\":\"2023-07-31T12:48:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trh4em5njktb9xzbd0e5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 17:49:22','2023-07-31 17:49:22'),(7117,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T12:50:45-05:00\",\"transaction\":{\"id\":\"trh4em5njktb9xzbd0e5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"75281666\",\"creation_date\":\"2023-07-31T12:48:30-05:00\",\"operation_date\":\"2023-07-31T12:50:36-05:00\",\"description\":\"Pago Mensual academia: Dominic Rico Oyola (1022008060)\",\"error_message\":null,\"order_id\":\"99EF04EB612BAF0E86671A5109E22154_17DRBTJXZP_1690825707.5053\",\"due_date\":\"2023-08-01T00:48:30-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Dominic\",\"last_name\":\"Rico Oyola\",\"email\":\"julianaoyolam@gmail.com\",\"phone_number\":\"3186877715\",\"address\":null,\"creation_date\":\"2023-07-31T12:48:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 17:50:46','2023-07-31 17:50:46'),(7118,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T13:15:34-05:00\",\"transaction\":{\"id\":\"tr3gvmslukgycx42a3ui\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T13:14:51-05:00\",\"operation_date\":\"2023-07-31T13:14:51-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Mojocoa Marin (1014742443)\",\"error_message\":null,\"order_id\":\"9808AE38758804501CA3FC0697050E03_W7LA6TOCRD_1690827286.9452\",\"due_date\":\"2023-08-01T01:14:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-07-31T13:14:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3gvmslukgycx42a3ui/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 18:15:34','2023-07-31 18:15:34'),(7119,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T13:16:16-05:00\",\"transaction\":{\"id\":\"tr3gvmslukgycx42a3ui\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"75354885\",\"creation_date\":\"2023-07-31T13:14:51-05:00\",\"operation_date\":\"2023-07-31T13:16:07-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Mojocoa Marin (1014742443)\",\"error_message\":null,\"order_id\":\"9808AE38758804501CA3FC0697050E03_W7LA6TOCRD_1690827286.9452\",\"due_date\":\"2023-08-01T01:14:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-07-31T13:14:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 18:16:17','2023-07-31 18:16:17'),(7120,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T13:17:30-05:00\",\"transaction\":{\"id\":\"traynozkileb97so6qtx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T13:16:51-05:00\",\"operation_date\":\"2023-07-31T13:16:51-05:00\",\"description\":\"Pago Mensual academia: Joaquin Mojocoa Marin (1035015032)\",\"error_message\":null,\"order_id\":\"29539ED932D32F1C56324CDED92C07C2_STXKJLR83I_1690827409.0778\",\"due_date\":\"2023-08-01T01:16:51-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-07-31T13:16:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traynozkileb97so6qtx/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 18:17:31','2023-07-31 18:17:31'),(7121,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T13:18:02-05:00\",\"transaction\":{\"id\":\"traynozkileb97so6qtx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"75360519\",\"creation_date\":\"2023-07-31T13:16:51-05:00\",\"operation_date\":\"2023-07-31T13:17:56-05:00\",\"description\":\"Pago Mensual academia: Joaquin Mojocoa Marin (1035015032)\",\"error_message\":null,\"order_id\":\"29539ED932D32F1C56324CDED92C07C2_STXKJLR83I_1690827409.0778\",\"due_date\":\"2023-08-01T01:16:51-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-07-31T13:16:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 18:18:03','2023-07-31 18:18:03'),(7122,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T13:27:15-05:00\",\"transaction\":{\"id\":\"trcuggp75xsyn0vr9q7x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-31T13:27:15-05:00\",\"operation_date\":\"2023-07-31T13:27:15-05:00\",\"description\":\"Pago Mensual academia: Marco Antonio Carmona Perez (1155717066)\",\"error_message\":null,\"order_id\":\"D60678E8F2BA9C540798EBBDE31177E8_SM28AEZLGP_1690828031.2383\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura Maria\",\"last_name\":\"Perez Cadavid\",\"email\":\"laupc94@gmail.com\",\"phone_number\":\"3107354449\",\"address\":null,\"creation_date\":\"2023-07-31T13:27:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcuggp75xsyn0vr9q7x/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-31 18:27:15','2023-07-31 18:27:15'),(7123,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1224\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T13:31:08-05:00\",\"transaction\":{\"id\":\"trcuggp75xsyn0vr9q7x\",\"authorization\":\"133117\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":24,\"conciliated\":true,\"creation_date\":\"2023-07-31T13:27:15-05:00\",\"operation_date\":\"2023-07-31T13:31:07-05:00\",\"description\":\"Pago Mensual academia: Marco Antonio Carmona Perez (1155717066)\",\"error_message\":null,\"order_id\":\"D60678E8F2BA9C540798EBBDE31177E8_SM28AEZLGP_1690828031.2383\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"455986XXXXXX8389\",\"holder_name\":\"Laura m Perez c \",\"expiration_year\":\"28\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":24,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Laura Maria\",\"last_name\":\"Perez Cadavid\",\"email\":\"laupc94@gmail.com\",\"phone_number\":\"3107354449\",\"address\":null,\"creation_date\":\"2023-07-31T13:27:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcuggp75xsyn0vr9q7x/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-31 18:31:09','2023-07-31 18:31:09'),(7124,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T14:18:14-05:00\",\"transaction\":{\"id\":\"trsdgr2c0xlj71rydggz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T14:17:27-05:00\",\"operation_date\":\"2023-07-31T14:17:27-05:00\",\"description\":\"Pago Mensual academia: Lucas Eusse Hernandez (1034993922)\",\"error_message\":null,\"order_id\":\"6A4D5952D4C018A1C1AF9FA590A10DDA_MDFCV8I4S7_1690831043.705\",\"due_date\":\"2023-08-01T02:17:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catleya\",\"last_name\":\"hernandez\",\"email\":\"catleyah@hotmail.com\",\"phone_number\":\"3218521920\",\"address\":null,\"creation_date\":\"2023-07-31T14:17:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsdgr2c0xlj71rydggz/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 19:18:15','2023-07-31 19:18:15'),(7125,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T14:19:16-05:00\",\"transaction\":{\"id\":\"trsdgr2c0xlj71rydggz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"75537816\",\"creation_date\":\"2023-07-31T14:17:27-05:00\",\"operation_date\":\"2023-07-31T14:19:09-05:00\",\"description\":\"Pago Mensual academia: Lucas Eusse Hernandez (1034993922)\",\"error_message\":null,\"order_id\":\"6A4D5952D4C018A1C1AF9FA590A10DDA_MDFCV8I4S7_1690831043.705\",\"due_date\":\"2023-08-01T02:17:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catleya\",\"last_name\":\"hernandez\",\"email\":\"catleyah@hotmail.com\",\"phone_number\":\"3218521920\",\"address\":null,\"creation_date\":\"2023-07-31T14:17:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 19:19:17','2023-07-31 19:19:17'),(7126,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T14:48:56-05:00\",\"transaction\":{\"id\":\"trzrsl0q79le8zjvlkma\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T14:47:52-05:00\",\"operation_date\":\"2023-07-31T14:47:52-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rueda Cardozo (1016913762)\",\"error_message\":null,\"order_id\":\"A2D10D355CDEBC879E4FC6ECC6F63DD7_9PFU1N2E8G_1690832868.5226\",\"due_date\":\"2023-08-01T02:47:52-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hernando\",\"last_name\":\"Rueda\",\"email\":\"hernandoruedaojeda@gmail.com\",\"phone_number\":\"3013558382\",\"address\":null,\"creation_date\":\"2023-07-31T14:47:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzrsl0q79le8zjvlkma/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 19:48:57','2023-07-31 19:48:57'),(7127,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T14:50:02-05:00\",\"transaction\":{\"id\":\"trzrsl0q79le8zjvlkma\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"75634615\",\"creation_date\":\"2023-07-31T14:47:52-05:00\",\"operation_date\":\"2023-07-31T14:49:35-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rueda Cardozo (1016913762)\",\"error_message\":null,\"order_id\":\"A2D10D355CDEBC879E4FC6ECC6F63DD7_9PFU1N2E8G_1690832868.5226\",\"due_date\":\"2023-08-01T02:47:52-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hernando\",\"last_name\":\"Rueda\",\"email\":\"hernandoruedaojeda@gmail.com\",\"phone_number\":\"3013558382\",\"address\":null,\"creation_date\":\"2023-07-31T14:47:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 19:50:03','2023-07-31 19:50:03'),(7128,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T16:20:25-05:00\",\"transaction\":{\"id\":\"trnvbfhzjzkp12c6e4am\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T16:18:53-05:00\",\"operation_date\":\"2023-07-31T16:18:53-05:00\",\"description\":\"Pago Mensual academia: SAMUEL GOMEZ RODAS (1021936511)\",\"error_message\":null,\"order_id\":\"98B17F068D5D9B7668E19FB8AE470841_X8C9WJKUVR_1690838329.1867\",\"due_date\":\"2023-08-01T04:18:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"VICTOR HUGO\",\"last_name\":\"GOMEZ DAVID\",\"email\":\"victor.gomez82@hotmail.com\",\"phone_number\":\"3006949134\",\"address\":null,\"creation_date\":\"2023-07-31T16:18:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnvbfhzjzkp12c6e4am/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 21:20:25','2023-07-31 21:20:25'),(7129,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T16:23:23-05:00\",\"transaction\":{\"id\":\"trnvbfhzjzkp12c6e4am\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"75940203\",\"creation_date\":\"2023-07-31T16:18:53-05:00\",\"operation_date\":\"2023-07-31T16:21:45-05:00\",\"description\":\"Pago Mensual academia: SAMUEL GOMEZ RODAS (1021936511)\",\"error_message\":null,\"order_id\":\"98B17F068D5D9B7668E19FB8AE470841_X8C9WJKUVR_1690838329.1867\",\"due_date\":\"2023-08-01T04:18:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"VICTOR HUGO\",\"last_name\":\"GOMEZ DAVID\",\"email\":\"victor.gomez82@hotmail.com\",\"phone_number\":\"3006949134\",\"address\":null,\"creation_date\":\"2023-07-31T16:18:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 21:23:24','2023-07-31 21:23:24'),(7130,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T16:31:54-05:00\",\"transaction\":{\"id\":\"trdmyzfuu7cpdlqasadu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T16:31:11-05:00\",\"operation_date\":\"2023-07-31T16:31:11-05:00\",\"description\":\"Pago Mensual academia: isaac david Alvarez Callejas (1023659076)\",\"error_message\":null,\"order_id\":\"E8BF0F27D70D480D3AB793BB7619AAA5_EB2WZJ0AXC_1690839068.1747\",\"due_date\":\"2023-08-01T04:31:11-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"jose lisandro\",\"last_name\":\"Alvarez Galvis\",\"email\":\"lisoalvares@gmail.com\",\"phone_number\":\"3116065670\",\"address\":null,\"creation_date\":\"2023-07-31T16:31:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdmyzfuu7cpdlqasadu/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 21:31:55','2023-07-31 21:31:55'),(7131,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-07-31T15:42:18-06:00\",\"transaction\":{\"id\":\"trdmyzfuu7cpdlqasadu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-07-31T16:31:11-06:00\",\"operation_date\":\"2023-07-31T16:40:24-06:00\",\"description\":\"Pago Mensual academia: isaac david Alvarez Callejas (1023659076)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"E8BF0F27D70D480D3AB793BB7619AAA5_EB2WZJ0AXC_1690839068.1747\",\"due_date\":\"2023-08-01T04:31:11-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"jose lisandro\",\"last_name\":\"Alvarez Galvis\",\"email\":\"lisoalvares@gmail.com\",\"phone_number\":\"3116065670\",\"address\":null,\"creation_date\":\"2023-07-31T16:31:11-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 21:42:19','2023-07-31 21:42:19'),(7132,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T17:23:50-05:00\",\"transaction\":{\"id\":\"trs2euc3is2o7eyafrz4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T17:22:33-05:00\",\"operation_date\":\"2023-07-31T17:22:33-05:00\",\"description\":\"Pago Mensual academia: Lucca Noguera Mejia (862255)\",\"error_message\":null,\"order_id\":\"5E6D27A7A8A8330DF4B53240737CCC85_7F2OAUPIM8_1690842147.4494\",\"due_date\":\"2023-08-01T05:22:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juliana\",\"last_name\":\"Mejia\",\"email\":\"julam3@hotmail.com\",\"phone_number\":\"3045257500\",\"address\":null,\"creation_date\":\"2023-07-31T17:22:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trs2euc3is2o7eyafrz4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 22:23:50','2023-07-31 22:23:50'),(7133,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  788\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T16:24:40-06:00\",\"transaction\":{\"id\":\"trs2euc3is2o7eyafrz4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"76143960\",\"creation_date\":\"2023-07-31T17:22:33-06:00\",\"operation_date\":\"2023-07-31T17:24:34-06:00\",\"description\":\"Pago Mensual academia: Lucca Noguera Mejia (862255)\",\"error_message\":null,\"order_id\":\"5E6D27A7A8A8330DF4B53240737CCC85_7F2OAUPIM8_1690842147.4494\",\"due_date\":\"2023-08-01T05:22:33-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juliana\",\"last_name\":\"Mejia\",\"email\":\"julam3@hotmail.com\",\"phone_number\":\"3045257500\",\"address\":null,\"creation_date\":\"2023-07-31T17:22:33-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 22:24:41','2023-07-31 22:24:41'),(7134,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T18:16:51-05:00\",\"transaction\":{\"id\":\"trohnrspzphkqwjt2dwl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-07-31T18:16:51-05:00\",\"operation_date\":\"2023-07-31T18:16:51-05:00\",\"description\":\"Pago Mensual academia: isaac david Alvarez Callejas (1023659076)\",\"error_message\":null,\"order_id\":\"E8BF0F27D70D480D3AB793BB7619AAA5_EB2WZJ0AXC_1690845408.7661\",\"amount\":95000.00,\"customer\":{\"name\":\"lisandro\",\"last_name\":\"Alvarez\",\"email\":\"lisoalvarez1035@gmail.com\",\"phone_number\":\"3116065670\",\"address\":null,\"creation_date\":\"2023-07-31T18:16:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trohnrspzphkqwjt2dwl/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-07-31 23:16:52','2023-07-31 23:16:52'),(7135,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T18:35:51-05:00\",\"transaction\":{\"id\":\"trdkn705nwnkdymt0huo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T18:34:58-05:00\",\"operation_date\":\"2023-07-31T18:34:58-05:00\",\"description\":\"Pago Mensual academia: ANTONIO JIMENEZ AGUDELO (1020235872)\",\"error_message\":null,\"order_id\":\"B299AD862B6F12CB57679F0538ECA514_8JVTNWI0LO_1690846495.7531\",\"due_date\":\"2023-08-01T06:34:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Agudelo\",\"email\":\"lauraagudelo01@gmail.com\",\"phone_number\":\"3197690545\",\"address\":null,\"creation_date\":\"2023-07-31T18:34:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdkn705nwnkdymt0huo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 23:35:52','2023-07-31 23:35:52'),(7136,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T18:37:00-05:00\",\"transaction\":{\"id\":\"trdkn705nwnkdymt0huo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"76362664\",\"creation_date\":\"2023-07-31T18:34:58-05:00\",\"operation_date\":\"2023-07-31T18:36:52-05:00\",\"description\":\"Pago Mensual academia: ANTONIO JIMENEZ AGUDELO (1020235872)\",\"error_message\":null,\"order_id\":\"B299AD862B6F12CB57679F0538ECA514_8JVTNWI0LO_1690846495.7531\",\"due_date\":\"2023-08-01T06:34:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Agudelo\",\"email\":\"lauraagudelo01@gmail.com\",\"phone_number\":\"3197690545\",\"address\":null,\"creation_date\":\"2023-07-31T18:34:58-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-07-31 23:37:01','2023-07-31 23:37:01'),(7137,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T19:11:15-05:00\",\"transaction\":{\"id\":\"tr6ra3xebdcwlxequk1d\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T19:10:37-05:00\",\"operation_date\":\"2023-07-31T19:10:37-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Salazar Garces (1017938650)\",\"error_message\":null,\"order_id\":\"20C86A628232A67E7BD46F76FBA7CE12_NJVUOI93BH_1690848634.5739\",\"due_date\":\"2023-08-01T07:10:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ana maria\",\"last_name\":\"Garces Ramirez\",\"email\":\"anita-g-r@hotmail.com\",\"phone_number\":\"3103861294\",\"address\":null,\"creation_date\":\"2023-07-31T19:10:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6ra3xebdcwlxequk1d/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 00:11:16','2023-08-01 00:11:16'),(7138,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T19:14:39-05:00\",\"transaction\":{\"id\":\"tr6ra3xebdcwlxequk1d\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"76471382\",\"creation_date\":\"2023-07-31T19:10:37-05:00\",\"operation_date\":\"2023-07-31T19:14:33-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Salazar Garces (1017938650)\",\"error_message\":null,\"order_id\":\"20C86A628232A67E7BD46F76FBA7CE12_NJVUOI93BH_1690848634.5739\",\"due_date\":\"2023-08-01T07:10:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ana maria\",\"last_name\":\"Garces Ramirez\",\"email\":\"anita-g-r@hotmail.com\",\"phone_number\":\"3103861294\",\"address\":null,\"creation_date\":\"2023-07-31T19:10:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 00:14:39','2023-08-01 00:14:39'),(7139,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-07-31T19:35:54-05:00\",\"transaction\":{\"id\":\"trjwlrw6zd9fu2yryhz2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-07-31T19:35:07-05:00\",\"operation_date\":\"2023-07-31T19:35:07-05:00\",\"description\":\"Pago Mensual academia: isaac david Alvarez Callejas (1023659076)\",\"error_message\":null,\"order_id\":\"E8BF0F27D70D480D3AB793BB7619AAA5_EB2WZJ0AXC_1690850103.5256\",\"due_date\":\"2023-08-01T07:35:07-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"lisandro\",\"last_name\":\"Alvarez\",\"email\":\"lisoalvarez1035@gmail.com\",\"phone_number\":\"3116065670\",\"address\":null,\"creation_date\":\"2023-07-31T19:35:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjwlrw6zd9fu2yryhz2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 00:35:55','2023-08-01 00:35:55'),(7140,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-07-31T18:39:21-06:00\",\"transaction\":{\"id\":\"trjwlrw6zd9fu2yryhz2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"76544408\",\"creation_date\":\"2023-07-31T19:35:07-06:00\",\"operation_date\":\"2023-07-31T19:36:47-06:00\",\"description\":\"Pago Mensual academia: isaac david Alvarez Callejas (1023659076)\",\"error_message\":null,\"order_id\":\"E8BF0F27D70D480D3AB793BB7619AAA5_EB2WZJ0AXC_1690850103.5256\",\"due_date\":\"2023-08-01T07:35:07-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"lisandro\",\"last_name\":\"Alvarez\",\"email\":\"lisoalvarez1035@gmail.com\",\"phone_number\":\"3116065670\",\"address\":null,\"creation_date\":\"2023-07-31T19:35:07-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 00:39:22','2023-08-01 00:39:22'),(7141,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:31-06:00\",\"transaction\":{\"id\":\"treevvme0qeuh7v7kkat\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-31T08:49:40-06:00\",\"operation_date\":\"2023-07-31T08:49:40-06:00\",\"description\":\"Pago Inscripción academia: Isaac Calle Giraldo (1038267000)\",\"error_message\":null,\"order_id\":\"2227D753DC18505031869D44673728E2_3NGVT24YDC_1690811375.8569\",\"due_date\":\"2023-07-31T20:49:40-06:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Catherine\",\"last_name\":\"Giraldo\",\"email\":\"cathe.giraldo@hotmail.com\",\"phone_number\":\"3104745144\",\"address\":null,\"creation_date\":\"2023-07-31T08:49:40-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treevvme0qeuh7v7kkat/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:31','2023-08-01 08:24:31'),(7142,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  948\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:31-06:00\",\"transaction\":{\"id\":\"tro4g5nsyzwzmvpiqim3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-28T21:42:31-06:00\",\"operation_date\":\"2023-07-28T21:42:31-06:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":null,\"order_id\":\"8C9A14FFEBB7677D033FFCE847991293_4NVL3DMOB9_1690598547.4204\",\"due_date\":\"2023-07-29T09:42:31-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-28T21:42:31-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro4g5nsyzwzmvpiqim3/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:31','2023-08-01 08:24:31'),(7143,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:31-06:00\",\"transaction\":{\"id\":\"trlflzqfajsvby2do8jp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-28T15:08:38-06:00\",\"operation_date\":\"2023-07-28T15:08:38-06:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez pacheco (1019906046)\",\"error_message\":null,\"order_id\":\"35937E34256CF4E5B2F7DA08871D2A0B_BQCJNHGE54_1690574912.0801\",\"due_date\":\"2023-07-29T03:08:38-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hugo andres\",\"last_name\":\"alvarez\",\"email\":\"hugoandres.alvarez@gmail.com\",\"phone_number\":\"3005865449\",\"address\":null,\"creation_date\":\"2023-07-28T15:08:38-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlflzqfajsvby2do8jp/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:31','2023-08-01 08:24:31'),(7144,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  948\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:31-06:00\",\"transaction\":{\"id\":\"trhx6f4tzkzfbv2lnksm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-28T18:59:07-06:00\",\"operation_date\":\"2023-07-28T18:59:07-06:00\",\"description\":\"Pago Mensual academia: agustin caballero gallo (1035000215)\",\"error_message\":null,\"order_id\":\"2ECD2BD94734E5DD392D8678BC64CDAB_7TW9IGCSE8_1690588738.7132\",\"due_date\":\"2023-07-29T06:59:07-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"caballero hernandez\",\"email\":\"mauricio.caballero@grupoaltea.com\",\"phone_number\":\"3168765146\",\"address\":null,\"creation_date\":\"2023-07-28T18:59:07-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhx6f4tzkzfbv2lnksm/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:31','2023-08-01 08:24:31'),(7145,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:47-06:00\",\"transaction\":{\"id\":\"trvgtxvoi9siji6i5ogd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-30T16:34:38-06:00\",\"operation_date\":\"2023-07-30T16:34:38-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"084B6FBB10729ED4DA8C3D3F5A3AE7C9_E-64C6D759-33_1690752865.1741\",\"due_date\":\"2023-07-31T04:34:38-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés\",\"last_name\":\"Gaviria\",\"email\":\"wandres96.ag@gmail.com\",\"phone_number\":\"3113395569\",\"address\":null,\"creation_date\":\"2023-07-30T16:34:38-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trvgtxvoi9siji6i5ogd/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:48','2023-08-01 08:24:48'),(7146,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:47-06:00\",\"transaction\":{\"id\":\"trf7nqwssgt7fpfddxmu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-30T15:12:17-06:00\",\"operation_date\":\"2023-07-30T15:12:17-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"0336DCBAB05B9D5AD24F4333C7658A0E_E-64C53829-53_1690747935.3968\",\"due_date\":\"2023-07-31T03:12:17-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Gomez\",\"email\":\"gomez.sebastian@gmail.com\",\"phone_number\":\"3163561484\",\"address\":null,\"creation_date\":\"2023-07-30T15:12:17-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trf7nqwssgt7fpfddxmu/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:48','2023-08-01 08:24:48'),(7147,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:47-06:00\",\"transaction\":{\"id\":\"trdifcrxlpsedzgozfff\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-29T07:14:03-06:00\",\"operation_date\":\"2023-07-29T07:14:03-06:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"07CDFD23373B17C6B337251C22B7EA57_3MNDARS520_1690632834.8975\",\"due_date\":\"2023-07-29T19:14:03-06:00\",\"amount\":252000.00,\"customer\":{\"name\":\"Esteban\",\"last_name\":\"Restrepo Ramirez\",\"email\":\"esaracar10@hotmail.com\",\"phone_number\":\"3218217318\",\"address\":null,\"creation_date\":\"2023-07-29T07:14:02-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trdifcrxlpsedzgozfff/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:48','2023-08-01 08:24:48'),(7148,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  902\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:47-06:00\",\"transaction\":{\"id\":\"trmcteixmnkj03xofpsm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-31T08:28:40-06:00\",\"operation_date\":\"2023-07-31T08:28:40-06:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"0F49C89D1E7298BB9930789C8ED59D48_W7DB3UFTSX_1690810113.6461\",\"due_date\":\"2023-07-31T20:28:40-06:00\",\"amount\":252000.00,\"customer\":{\"name\":\"oscar luis\",\"last_name\":\"rodriguez alvarez\",\"email\":\"luiscaucasia@hotmail.com\",\"phone_number\":\"3216367798\",\"address\":null,\"creation_date\":\"2023-07-31T08:28:40-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trmcteixmnkj03xofpsm/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:48','2023-08-01 08:24:48'),(7149,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  912\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:47-06:00\",\"transaction\":{\"id\":\"trm4izyiyhoosu0jyx5o\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-30T20:18:43-06:00\",\"operation_date\":\"2023-07-30T20:18:43-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"0336DCBAB05B9D5AD24F4333C7658A0E_E-64C53829-53_1690766320.8412\",\"due_date\":\"2023-07-31T08:18:43-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Sebastian Emilio\",\"last_name\":\"Gomez Morales\",\"email\":\"gomez.sebastian@gmail.com\",\"phone_number\":\"3163561484\",\"address\":null,\"creation_date\":\"2023-07-30T20:18:43-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trm4izyiyhoosu0jyx5o/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:48','2023-08-01 08:24:48'),(7150,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  902\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:47-06:00\",\"transaction\":{\"id\":\"trpeb5scue5yqfnoeys3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-31T10:08:15-06:00\",\"operation_date\":\"2023-07-31T10:08:15-06:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"46BA9F2A6976570B0353203EC4474217_SWZFEAX85U_1690816087.7589\",\"due_date\":\"2023-07-31T22:08:15-06:00\",\"amount\":252000.00,\"customer\":{\"name\":\"oscar luis\",\"last_name\":\"rodriguez alvarez\",\"email\":\"luiscaucasia@hotmail.com\",\"phone_number\":\"3216367798\",\"address\":null,\"creation_date\":\"2023-07-31T10:08:15-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trpeb5scue5yqfnoeys3/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:48','2023-08-01 08:24:48'),(7151,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:47-06:00\",\"transaction\":{\"id\":\"trng5a9bmx2tmh3sx2vr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-30T20:38:00-06:00\",\"operation_date\":\"2023-07-30T20:38:00-06:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"E3796AE838835DA0B6F6EA37BCF8BCB7_16WSLZ85HN_1690767475.4778\",\"due_date\":\"2023-07-31T08:38:00-06:00\",\"amount\":252000.00,\"customer\":{\"name\":\"Doris\",\"last_name\":\"Montoya\",\"email\":\"dorismontoya36@gmail.com\",\"phone_number\":\"3163210575\",\"address\":null,\"creation_date\":\"2023-07-30T20:38:00-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trng5a9bmx2tmh3sx2vr/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:48','2023-08-01 08:24:48'),(7152,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:47-06:00\",\"transaction\":{\"id\":\"tr3yvwdkhrlzq8feawcx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-30T15:10:46-06:00\",\"operation_date\":\"2023-07-30T15:10:46-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"0336DCBAB05B9D5AD24F4333C7658A0E_E-64C53829-53_1690747843.7453\",\"due_date\":\"2023-07-31T03:10:46-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Gomez\",\"email\":\"gomez.sebastian@gmail.com\",\"phone_number\":\"3163561484\",\"address\":null,\"creation_date\":\"2023-07-30T15:10:46-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr3yvwdkhrlzq8feawcx/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:48','2023-08-01 08:24:48'),(7153,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-01T02:24:47-06:00\",\"transaction\":{\"id\":\"trmimw2fdgy9kjlvmmcz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-30T19:32:58-06:00\",\"operation_date\":\"2023-07-30T19:32:58-06:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"92C8C96E4C37100777C7190B76D28233_2W3XIJGBRY_1690763574.9052\",\"due_date\":\"2023-07-31T07:32:58-06:00\",\"amount\":252000.00,\"customer\":{\"name\":\"Wilberth\",\"last_name\":\"perea Mena\",\"email\":\"wilber.1983@hotmail.com\",\"phone_number\":\"3003267717\",\"address\":null,\"creation_date\":\"2023-07-30T19:32:58-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trmimw2fdgy9kjlvmmcz/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 08:24:48','2023-08-01 08:24:48'),(7154,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T06:43:32-05:00\",\"transaction\":{\"id\":\"trgbgoy4psjmz2o9n7ul\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T06:42:35-05:00\",\"operation_date\":\"2023-08-01T06:42:35-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Londoño Carvajal (1035979642)\",\"error_message\":null,\"order_id\":\"CE393994E8CF430867408678D1A5A9C8_S71BG8OFRH_1690890152.7124\",\"due_date\":\"2023-08-01T18:42:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Elizabeth\",\"last_name\":\"Carvajal Zapata\",\"email\":\"eliza-0712@hotmail.com\",\"phone_number\":\"3193051274\",\"address\":null,\"creation_date\":\"2023-08-01T06:42:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgbgoy4psjmz2o9n7ul/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 11:43:33','2023-08-01 11:43:33'),(7155,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T05:45:09-06:00\",\"transaction\":{\"id\":\"trgbgoy4psjmz2o9n7ul\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"77244631\",\"creation_date\":\"2023-08-01T06:42:35-06:00\",\"operation_date\":\"2023-08-01T06:44:47-06:00\",\"description\":\"Pago Mensual academia: Miguel Angel Londoño Carvajal (1035979642)\",\"error_message\":null,\"order_id\":\"CE393994E8CF430867408678D1A5A9C8_S71BG8OFRH_1690890152.7124\",\"due_date\":\"2023-08-01T18:42:35-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Elizabeth\",\"last_name\":\"Carvajal Zapata\",\"email\":\"eliza-0712@hotmail.com\",\"phone_number\":\"3193051274\",\"address\":null,\"creation_date\":\"2023-08-01T06:42:35-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 11:45:09','2023-08-01 11:45:09'),(7156,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T07:00:51-05:00\",\"transaction\":{\"id\":\"trvvdigx1st8jsoc4mb2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T07:00:07-05:00\",\"operation_date\":\"2023-08-01T07:00:07-05:00\",\"description\":\"Pago Mensual academia: Antonio Pelaez Rojas (1038875760)\",\"error_message\":null,\"order_id\":\"7A98AF17E63A0AC09CE2E96D03992FBC_K1UAXR5MYZ_1690891203.9789\",\"due_date\":\"2023-08-01T19:00:07-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juliana\",\"last_name\":\"Rojas\",\"email\":\"julyrm2011@hotmail.com\",\"phone_number\":\"3225044943\",\"address\":null,\"creation_date\":\"2023-08-01T07:00:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvvdigx1st8jsoc4mb2/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 12:00:52','2023-08-01 12:00:52'),(7157,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  796\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T07:02:20-05:00\",\"transaction\":{\"id\":\"trvvdigx1st8jsoc4mb2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"77266015\",\"creation_date\":\"2023-08-01T07:00:07-05:00\",\"operation_date\":\"2023-08-01T07:01:51-05:00\",\"description\":\"Pago Mensual academia: Antonio Pelaez Rojas (1038875760)\",\"error_message\":null,\"order_id\":\"7A98AF17E63A0AC09CE2E96D03992FBC_K1UAXR5MYZ_1690891203.9789\",\"due_date\":\"2023-08-01T19:00:07-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juliana\",\"last_name\":\"Rojas\",\"email\":\"julyrm2011@hotmail.com\",\"phone_number\":\"3225044943\",\"address\":null,\"creation_date\":\"2023-08-01T07:00:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 12:02:21','2023-08-01 12:02:21'),(7158,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T07:15:01-05:00\",\"transaction\":{\"id\":\"trswauaeyu6knqa3ds3s\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T07:14:06-05:00\",\"operation_date\":\"2023-08-01T07:14:06-05:00\",\"description\":\"Pago Mensual academia: Juan Miguel Ospina Velasquez (1021934278)\",\"error_message\":null,\"order_id\":\"73E5080F0F3804CB9CF470A8CE895DAC_30TE8BK6FD_1690892043.5584\",\"due_date\":\"2023-08-01T19:14:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Michel Alhekine\",\"last_name\":\"Ospina Zapata\",\"email\":\"michelv10@hotmail.com\",\"phone_number\":\"3122103314\",\"address\":null,\"creation_date\":\"2023-08-01T07:14:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trswauaeyu6knqa3ds3s/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 12:15:02','2023-08-01 12:15:02'),(7159,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T06:18:13-06:00\",\"transaction\":{\"id\":\"trswauaeyu6knqa3ds3s\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"77286582\",\"creation_date\":\"2023-08-01T07:14:06-06:00\",\"operation_date\":\"2023-08-01T07:15:53-06:00\",\"description\":\"Pago Mensual academia: Juan Miguel Ospina Velasquez (1021934278)\",\"error_message\":null,\"order_id\":\"73E5080F0F3804CB9CF470A8CE895DAC_30TE8BK6FD_1690892043.5584\",\"due_date\":\"2023-08-01T19:14:06-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Michel Alhekine\",\"last_name\":\"Ospina Zapata\",\"email\":\"michelv10@hotmail.com\",\"phone_number\":\"3122103314\",\"address\":null,\"creation_date\":\"2023-08-01T07:14:06-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 12:18:13','2023-08-01 12:18:13'),(7160,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T07:23:13-05:00\",\"transaction\":{\"id\":\"trvdv5kl7h89e8n1fzce\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T07:21:34-05:00\",\"operation_date\":\"2023-08-01T07:21:34-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda jaramillo (1038264565)\",\"error_message\":null,\"order_id\":\"976ABF49974D4686F87192EFA0513AE0_BN5S71J9HZ_1690892471.2786\",\"due_date\":\"2023-08-01T19:21:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"didier\",\"last_name\":\"marulanda bran\",\"email\":\"emiliogp12@gmail.com\",\"phone_number\":\"3165522973\",\"address\":null,\"creation_date\":\"2023-08-01T07:21:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvdv5kl7h89e8n1fzce/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 12:23:14','2023-08-01 12:23:14'),(7161,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T07:26:49-05:00\",\"transaction\":{\"id\":\"trvdv5kl7h89e8n1fzce\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"77300309\",\"creation_date\":\"2023-08-01T07:21:34-05:00\",\"operation_date\":\"2023-08-01T07:26:09-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda jaramillo (1038264565)\",\"error_message\":null,\"order_id\":\"976ABF49974D4686F87192EFA0513AE0_BN5S71J9HZ_1690892471.2786\",\"due_date\":\"2023-08-01T19:21:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"didier\",\"last_name\":\"marulanda bran\",\"email\":\"emiliogp12@gmail.com\",\"phone_number\":\"3165522973\",\"address\":null,\"creation_date\":\"2023-08-01T07:21:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 12:26:49','2023-08-01 12:26:49'),(7162,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T07:36:12-05:00\",\"transaction\":{\"id\":\"tri12jmlbrmremnotiuv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T07:35:26-05:00\",\"operation_date\":\"2023-08-01T07:35:26-05:00\",\"description\":\"Pago Mensual academia: Martin Sierra Carmona (1056132253)\",\"error_message\":null,\"order_id\":\"E25CFA90F04351958216F97E3EFDABE9_XUNM98023P_1690893321.4936\",\"due_date\":\"2023-08-01T19:35:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Sierra Marín\",\"email\":\"sierramjc@gmail.com\",\"phone_number\":\"3007544651\",\"address\":null,\"creation_date\":\"2023-08-01T07:35:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tri12jmlbrmremnotiuv/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 12:36:13','2023-08-01 12:36:13'),(7163,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T07:37:08-05:00\",\"transaction\":{\"id\":\"tri12jmlbrmremnotiuv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"77323476\",\"creation_date\":\"2023-08-01T07:35:26-05:00\",\"operation_date\":\"2023-08-01T07:37:01-05:00\",\"description\":\"Pago Mensual academia: Martin Sierra Carmona (1056132253)\",\"error_message\":null,\"order_id\":\"E25CFA90F04351958216F97E3EFDABE9_XUNM98023P_1690893321.4936\",\"due_date\":\"2023-08-01T19:35:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Sierra Marín\",\"email\":\"sierramjc@gmail.com\",\"phone_number\":\"3007544651\",\"address\":null,\"creation_date\":\"2023-08-01T07:35:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 12:37:08','2023-08-01 12:37:08'),(7164,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  913\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T08:55:55-05:00\",\"transaction\":{\"id\":\"trxcg6ai4ccpmejabjmn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T08:54:44-05:00\",\"operation_date\":\"2023-08-01T08:54:44-05:00\",\"description\":\"Pago Mensual academia: Isabella Jones Sanin (1035001858)\",\"error_message\":null,\"order_id\":\"E8258E5140317FF36C7F8225A3BF9590_XB9PS4671M_1690898059.0432\",\"due_date\":\"2023-08-01T20:54:44-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Camilo\",\"last_name\":\"Jones\",\"email\":\"camilojones@gmail.com\",\"phone_number\":\"3116094343\",\"address\":null,\"creation_date\":\"2023-08-01T08:54:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxcg6ai4ccpmejabjmn/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 13:55:56','2023-08-01 13:55:56'),(7165,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  795\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T08:58:11-05:00\",\"transaction\":{\"id\":\"trxcg6ai4ccpmejabjmn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"77525101\",\"creation_date\":\"2023-08-01T08:54:44-05:00\",\"operation_date\":\"2023-08-01T08:57:49-05:00\",\"description\":\"Pago Mensual academia: Isabella Jones Sanin (1035001858)\",\"error_message\":null,\"order_id\":\"E8258E5140317FF36C7F8225A3BF9590_XB9PS4671M_1690898059.0432\",\"due_date\":\"2023-08-01T20:54:44-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Camilo\",\"last_name\":\"Jones\",\"email\":\"camilojones@gmail.com\",\"phone_number\":\"3116094343\",\"address\":null,\"creation_date\":\"2023-08-01T08:54:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 13:58:11','2023-08-01 13:58:11'),(7166,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T09:33:03-05:00\",\"transaction\":{\"id\":\"trizovjmhun7jwlypr5k\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T09:32:15-05:00\",\"operation_date\":\"2023-08-01T09:32:15-05:00\",\"description\":\"Pago Mensual academia: Pedro Osorio Moreno (1027811391)\",\"error_message\":null,\"order_id\":\"C5D9256689C43036581F781C61F26E50_1XQK75APR2_1690900329.6443\",\"due_date\":\"2023-08-01T21:32:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Moreno\",\"email\":\"mdaleja@hotmail.com\",\"phone_number\":\"3218002631\",\"address\":null,\"creation_date\":\"2023-08-01T09:32:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trizovjmhun7jwlypr5k/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 14:33:04','2023-08-01 14:33:04'),(7167,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T09:34:02-05:00\",\"transaction\":{\"id\":\"trizovjmhun7jwlypr5k\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"77643729\",\"creation_date\":\"2023-08-01T09:32:15-05:00\",\"operation_date\":\"2023-08-01T09:33:51-05:00\",\"description\":\"Pago Mensual academia: Pedro Osorio Moreno (1027811391)\",\"error_message\":null,\"order_id\":\"C5D9256689C43036581F781C61F26E50_1XQK75APR2_1690900329.6443\",\"due_date\":\"2023-08-01T21:32:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Moreno\",\"email\":\"mdaleja@hotmail.com\",\"phone_number\":\"3218002631\",\"address\":null,\"creation_date\":\"2023-08-01T09:32:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 14:34:03','2023-08-01 14:34:03'),(7168,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T09:40:27-05:00\",\"transaction\":{\"id\":\"tr8wt6dmdg67z57av6lu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T09:39:04-05:00\",\"operation_date\":\"2023-08-01T09:39:04-05:00\",\"description\":\"Pago Mensual academia: Adrián Mendoza Ríos (1125351827)\",\"error_message\":null,\"order_id\":\"45C166D697D65080D54501403B433256_H0S71ICZGT_1690900741.7567\",\"due_date\":\"2023-08-01T21:39:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Oscar\",\"last_name\":\"Mendoza Cánepa\",\"email\":\"oscarmendozacanepa@gmail.com\",\"phone_number\":\"3005963217\",\"address\":null,\"creation_date\":\"2023-08-01T09:39:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8wt6dmdg67z57av6lu/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 14:40:28','2023-08-01 14:40:28'),(7169,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T09:41:49-05:00\",\"transaction\":{\"id\":\"tr8wt6dmdg67z57av6lu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"77667587\",\"creation_date\":\"2023-08-01T09:39:04-05:00\",\"operation_date\":\"2023-08-01T09:41:31-05:00\",\"description\":\"Pago Mensual academia: Adrián Mendoza Ríos (1125351827)\",\"error_message\":null,\"order_id\":\"45C166D697D65080D54501403B433256_H0S71ICZGT_1690900741.7567\",\"due_date\":\"2023-08-01T21:39:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Oscar\",\"last_name\":\"Mendoza Cánepa\",\"email\":\"oscarmendozacanepa@gmail.com\",\"phone_number\":\"3005963217\",\"address\":null,\"creation_date\":\"2023-08-01T09:39:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 14:41:50','2023-08-01 14:41:50'),(7170,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T09:44:52-05:00\",\"transaction\":{\"id\":\"trhzwy9v3sapfyic1nwr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T09:43:45-05:00\",\"operation_date\":\"2023-08-01T09:43:45-05:00\",\"description\":\"Pago Mensual academia: matias jerez mantilla (1040576751)\",\"error_message\":null,\"order_id\":\"CE47BE4ABD80AC324C645FD57A27FC73_45G983VS1E_1690901021.3892\",\"due_date\":\"2023-08-01T21:43:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yolima\",\"last_name\":\"mantilla cañas\",\"email\":\"yolimamantilla1991@gmail.com\",\"phone_number\":\"3115268827\",\"address\":null,\"creation_date\":\"2023-08-01T09:43:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhzwy9v3sapfyic1nwr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 14:44:53','2023-08-01 14:44:53'),(7171,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T08:48:29-06:00\",\"transaction\":{\"id\":\"trhzwy9v3sapfyic1nwr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"77682269\",\"creation_date\":\"2023-08-01T09:43:45-06:00\",\"operation_date\":\"2023-08-01T00:00:00-06:00\",\"description\":\"Pago Mensual academia: matias jerez mantilla (1040576751)\",\"error_message\":null,\"order_id\":\"CE47BE4ABD80AC324C645FD57A27FC73_45G983VS1E_1690901021.3892\",\"due_date\":\"2023-08-01T21:43:45-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yolima\",\"last_name\":\"mantilla cañas\",\"email\":\"yolimamantilla1991@gmail.com\",\"phone_number\":\"3115268827\",\"address\":null,\"creation_date\":\"2023-08-01T09:43:45-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 14:48:30','2023-08-01 14:48:30'),(7172,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T10:07:41-05:00\",\"transaction\":{\"id\":\"trdaclt4nsafkk2ymftq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T10:06:33-05:00\",\"operation_date\":\"2023-08-01T10:06:33-05:00\",\"description\":\"Pago Mensual academia: JUAN DAVID RIVERA BOHORQUEZ (1020308065)\",\"error_message\":null,\"order_id\":\"59DFA2DF42D9E3D41F5B02BFC32229DD_KJHITBC5SV_1690902390.7899\",\"due_date\":\"2023-08-01T22:06:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN DAVID\",\"last_name\":\"RIVERA BOHORQUEZ\",\"email\":\"durley374@yahoo.es\",\"phone_number\":\"3012429864\",\"address\":null,\"creation_date\":\"2023-08-01T10:06:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdaclt4nsafkk2ymftq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 15:07:42','2023-08-01 15:07:42'),(7173,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T10:08:48-05:00\",\"transaction\":{\"id\":\"trdaclt4nsafkk2ymftq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"77758446\",\"creation_date\":\"2023-08-01T10:06:33-05:00\",\"operation_date\":\"2023-08-01T10:08:32-05:00\",\"description\":\"Pago Mensual academia: JUAN DAVID RIVERA BOHORQUEZ (1020308065)\",\"error_message\":null,\"order_id\":\"59DFA2DF42D9E3D41F5B02BFC32229DD_KJHITBC5SV_1690902390.7899\",\"due_date\":\"2023-08-01T22:06:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN DAVID\",\"last_name\":\"RIVERA BOHORQUEZ\",\"email\":\"durley374@yahoo.es\",\"phone_number\":\"3012429864\",\"address\":null,\"creation_date\":\"2023-08-01T10:06:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 15:08:48','2023-08-01 15:08:48'),(7174,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T10:16:08-05:00\",\"transaction\":{\"id\":\"trgdwh0c4tkpurtx20gs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-01T10:16:08-05:00\",\"operation_date\":\"2023-08-01T10:16:08-05:00\",\"description\":\"Pago Mensual academia: Emiliano Restrepo Cardona (1023555371)\",\"error_message\":null,\"order_id\":\"D3630410C51E60941A9001A46871070E_C5TKQNASJ1_1690902962.3123\",\"amount\":105000.00,\"customer\":{\"name\":\"veronica\",\"last_name\":\"cardona\",\"email\":\"Veronicacardona949@gmail.com\",\"phone_number\":\"3013320074\",\"address\":null,\"creation_date\":\"2023-08-01T10:16:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgdwh0c4tkpurtx20gs/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-01 15:16:08','2023-08-01 15:16:08'),(7175,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1150\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T10:19:02-05:00\",\"transaction\":{\"id\":\"trgdwh0c4tkpurtx20gs\",\"authorization\":\"R00349\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-01T10:16:08-05:00\",\"operation_date\":\"2023-08-01T10:19:02-05:00\",\"description\":\"Pago Mensual academia: Emiliano Restrepo Cardona (1023555371)\",\"error_message\":null,\"order_id\":\"D3630410C51E60941A9001A46871070E_C5TKQNASJ1_1690902962.3123\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"512069XXXXXX1415\",\"holder_name\":\"Veronica cardona \",\"expiration_year\":\"27\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"veronica\",\"last_name\":\"cardona\",\"email\":\"Veronicacardona949@gmail.com\",\"phone_number\":\"3013320074\",\"address\":null,\"creation_date\":\"2023-08-01T10:16:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgdwh0c4tkpurtx20gs/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-01 15:19:03','2023-08-01 15:19:03'),(7176,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T10:19:31-05:00\",\"transaction\":{\"id\":\"trxfaocaxo0vp3fpyxam\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-01T10:19:31-05:00\",\"operation_date\":\"2023-08-01T10:19:31-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Garcia Cardona (1141519149)\",\"error_message\":null,\"order_id\":\"639D79CC857A6C76C2723B7E014FCCB0_US0HB6LAJ1_1690903169.4737\",\"amount\":165900.00,\"customer\":{\"name\":\"veronica\",\"last_name\":\"cardona\",\"email\":\"Veronicacardona949@gmail.com\",\"phone_number\":\"3013320074\",\"address\":null,\"creation_date\":\"2023-08-01T10:19:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxfaocaxo0vp3fpyxam/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-01 15:19:32','2023-08-01 15:19:32'),(7177,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1152\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T10:20:13-05:00\",\"transaction\":{\"id\":\"trxfaocaxo0vp3fpyxam\",\"authorization\":\"R01051\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-01T10:19:31-05:00\",\"operation_date\":\"2023-08-01T10:20:12-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Garcia Cardona (1141519149)\",\"error_message\":null,\"order_id\":\"639D79CC857A6C76C2723B7E014FCCB0_US0HB6LAJ1_1690903169.4737\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"512069XXXXXX1415\",\"holder_name\":\"Veronica cardona \",\"expiration_year\":\"27\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"veronica\",\"last_name\":\"cardona\",\"email\":\"Veronicacardona949@gmail.com\",\"phone_number\":\"3013320074\",\"address\":null,\"creation_date\":\"2023-08-01T10:19:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxfaocaxo0vp3fpyxam/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-01 15:20:14','2023-08-01 15:20:14'),(7178,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T10:20:54-05:00\",\"transaction\":{\"id\":\"tre4zbmlatuqhdsvpfdj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-01T10:20:54-05:00\",\"operation_date\":\"2023-08-01T10:20:54-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Garcia Cardona (1141519149)\",\"error_message\":null,\"order_id\":\"BA95D78A7C942571185308775A97A3A0_BF3SG2WZOL_1690903252.3166\",\"amount\":165900.00,\"customer\":{\"name\":\"veronica\",\"last_name\":\"cardona\",\"email\":\"Veronicacardona949@gmail.com\",\"phone_number\":\"3013320074\",\"address\":null,\"creation_date\":\"2023-08-01T10:20:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre4zbmlatuqhdsvpfdj/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-01 15:20:55','2023-08-01 15:20:55'),(7179,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1152\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T10:21:36-05:00\",\"transaction\":{\"id\":\"tre4zbmlatuqhdsvpfdj\",\"authorization\":\"R01877\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-01T10:20:54-05:00\",\"operation_date\":\"2023-08-01T10:21:36-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Garcia Cardona (1141519149)\",\"error_message\":null,\"order_id\":\"BA95D78A7C942571185308775A97A3A0_BF3SG2WZOL_1690903252.3166\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"512069XXXXXX1415\",\"holder_name\":\"Veronica cardona \",\"expiration_year\":\"27\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"veronica\",\"last_name\":\"cardona\",\"email\":\"Veronicacardona949@gmail.com\",\"phone_number\":\"3013320074\",\"address\":null,\"creation_date\":\"2023-08-01T10:20:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre4zbmlatuqhdsvpfdj/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-01 15:21:37','2023-08-01 15:21:37'),(7180,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T11:22:30-05:00\",\"transaction\":{\"id\":\"trjbhr4pyn67nr0vcglg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T11:20:30-05:00\",\"operation_date\":\"2023-08-01T11:20:30-05:00\",\"description\":\"Pago Mensual academia: ivan del rio zuluaga (1035002157)\",\"error_message\":null,\"order_id\":\"91378B331327B40E564390C43CD6B2BE_9MITGH04QY_1690906827.7214\",\"due_date\":\"2023-08-01T23:20:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"oscar ivan\",\"last_name\":\"del rio del rio\",\"email\":\"gerencia@abarrotesdelrio.com\",\"phone_number\":\"3163283923\",\"address\":null,\"creation_date\":\"2023-08-01T11:20:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjbhr4pyn67nr0vcglg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:22:31','2023-08-01 16:22:31'),(7181,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T11:23:39-05:00\",\"transaction\":{\"id\":\"tr6lrbukn6ij30m46ejj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T11:22:07-05:00\",\"operation_date\":\"2023-08-01T11:22:07-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Roldan Garcia (1020315369)\",\"error_message\":null,\"order_id\":\"C20A7CE2A627BA838CFBFF082DB35197_9K05FAUT2P_1690906922.7881\",\"due_date\":\"2023-08-01T23:22:07-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Flavio\",\"last_name\":\"Roldan Ospina\",\"email\":\"flavioroldan@gmail.com\",\"phone_number\":\"3104444641\",\"address\":null,\"creation_date\":\"2023-08-01T11:22:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6lrbukn6ij30m46ejj/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:23:40','2023-08-01 16:23:40'),(7182,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T10:24:36-06:00\",\"transaction\":{\"id\":\"tr6lrbukn6ij30m46ejj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78020718\",\"creation_date\":\"2023-08-01T11:22:07-06:00\",\"operation_date\":\"2023-08-01T11:24:33-06:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Roldan Garcia (1020315369)\",\"error_message\":null,\"order_id\":\"C20A7CE2A627BA838CFBFF082DB35197_9K05FAUT2P_1690906922.7881\",\"due_date\":\"2023-08-01T23:22:07-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Flavio\",\"last_name\":\"Roldan Ospina\",\"email\":\"flavioroldan@gmail.com\",\"phone_number\":\"3104444641\",\"address\":null,\"creation_date\":\"2023-08-01T11:22:07-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:24:37','2023-08-01 16:24:37'),(7183,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T10:27:18-06:00\",\"transaction\":{\"id\":\"trjbhr4pyn67nr0vcglg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78017035\",\"creation_date\":\"2023-08-01T11:20:30-06:00\",\"operation_date\":\"2023-08-01T11:24:36-06:00\",\"description\":\"Pago Mensual academia: ivan del rio zuluaga (1035002157)\",\"error_message\":null,\"order_id\":\"91378B331327B40E564390C43CD6B2BE_9MITGH04QY_1690906827.7214\",\"due_date\":\"2023-08-01T23:20:30-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"oscar ivan\",\"last_name\":\"del rio del rio\",\"email\":\"gerencia@abarrotesdelrio.com\",\"phone_number\":\"3163283923\",\"address\":null,\"creation_date\":\"2023-08-01T11:20:30-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:27:18','2023-08-01 16:27:18'),(7184,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T11:30:16-05:00\",\"transaction\":{\"id\":\"trauzehqxmpzh90qge07\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T11:29:03-05:00\",\"operation_date\":\"2023-08-01T11:29:03-05:00\",\"description\":\"Pago Mensual academia: miguel parra perez (1036458287)\",\"error_message\":null,\"order_id\":\"8051A3C40561002834E59D566B7430CF_9V0WG4QIMH_1690907334.9994\",\"due_date\":\"2023-08-01T23:29:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"miguel\",\"last_name\":\"parra perez\",\"email\":\"yolipc29@gmail.com\",\"phone_number\":\"3104735871\",\"address\":null,\"creation_date\":\"2023-08-01T11:29:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trauzehqxmpzh90qge07/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:30:17','2023-08-01 16:30:17'),(7185,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  796\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T11:32:50-05:00\",\"transaction\":{\"id\":\"trauzehqxmpzh90qge07\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78042881\",\"creation_date\":\"2023-08-01T11:29:03-05:00\",\"operation_date\":\"2023-08-01T11:31:53-05:00\",\"description\":\"Pago Mensual academia: miguel parra perez (1036458287)\",\"error_message\":null,\"order_id\":\"8051A3C40561002834E59D566B7430CF_9V0WG4QIMH_1690907334.9994\",\"due_date\":\"2023-08-01T23:29:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"miguel\",\"last_name\":\"parra perez\",\"email\":\"yolipc29@gmail.com\",\"phone_number\":\"3104735871\",\"address\":null,\"creation_date\":\"2023-08-01T11:29:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:32:51','2023-08-01 16:32:51'),(7186,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T11:35:03-05:00\",\"transaction\":{\"id\":\"tre74iicrpcyufereuwf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T11:34:33-05:00\",\"operation_date\":\"2023-08-01T11:34:33-05:00\",\"description\":\"Pago Mensual academia: Isaac Calle Giraldo (1038267000)\",\"error_message\":null,\"order_id\":\"3EB414BF1C2A66A09C185D60553417B8_6GA9FNZS17_1690907670.8294\",\"due_date\":\"2023-08-01T23:34:33-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Catherine\",\"last_name\":\"Giraldo\",\"email\":\"cathe.giraldo@hotmail.com\",\"phone_number\":\"3104745144\",\"address\":null,\"creation_date\":\"2023-08-01T11:34:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre74iicrpcyufereuwf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:35:04','2023-08-01 16:35:04'),(7187,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T11:36:08-05:00\",\"transaction\":{\"id\":\"tre74iicrpcyufereuwf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78058915\",\"creation_date\":\"2023-08-01T11:34:33-05:00\",\"operation_date\":\"2023-08-01T11:35:50-05:00\",\"description\":\"Pago Mensual academia: Isaac Calle Giraldo (1038267000)\",\"error_message\":null,\"order_id\":\"3EB414BF1C2A66A09C185D60553417B8_6GA9FNZS17_1690907670.8294\",\"due_date\":\"2023-08-01T23:34:33-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Catherine\",\"last_name\":\"Giraldo\",\"email\":\"cathe.giraldo@hotmail.com\",\"phone_number\":\"3104745144\",\"address\":null,\"creation_date\":\"2023-08-01T11:34:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:36:09','2023-08-01 16:36:09'),(7188,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T11:46:53-05:00\",\"transaction\":{\"id\":\"trlzneprx1jywq2lmv7d\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T11:45:50-05:00\",\"operation_date\":\"2023-08-01T11:45:50-05:00\",\"description\":\"Pago Mensual academia: isaac maya valencia (1155717119)\",\"error_message\":null,\"order_id\":\"39AE2ED11B14A4CCB41D35E9D1BA5D11_CHJ3OB4L0S_1690908345.2789\",\"due_date\":\"2023-08-01T23:45:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"maya barrera\",\"email\":\"felipemaya318@gmail.com\",\"phone_number\":\"3155880709\",\"address\":null,\"creation_date\":\"2023-08-01T11:45:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlzneprx1jywq2lmv7d/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:46:54','2023-08-01 16:46:54'),(7189,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T11:49:45-05:00\",\"transaction\":{\"id\":\"trvdvw18plopnvbeydmz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-01T11:49:45-05:00\",\"operation_date\":\"2023-08-01T11:49:45-05:00\",\"description\":\"Pago Mensual academia: Samuel David Toro Pérez (1013362067)\",\"error_message\":null,\"order_id\":\"D9896106CA98D3D05B8CBDF4FD8B13A1_J5Q6XOT39K_1690907357.1819\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Pérez Ortega\",\"email\":\"leidyssd09@gmail.com\",\"phone_number\":\"304 1315479\",\"address\":null,\"creation_date\":\"2023-08-01T11:49:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvdvw18plopnvbeydmz/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-01 16:49:46','2023-08-01 16:49:46'),(7190,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T10:49:51-06:00\",\"transaction\":{\"id\":\"trlzneprx1jywq2lmv7d\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78098486\",\"creation_date\":\"2023-08-01T11:45:50-06:00\",\"operation_date\":\"2023-08-01T11:47:48-06:00\",\"description\":\"Pago Mensual academia: isaac maya valencia (1155717119)\",\"error_message\":null,\"order_id\":\"39AE2ED11B14A4CCB41D35E9D1BA5D11_CHJ3OB4L0S_1690908345.2789\",\"due_date\":\"2023-08-01T23:45:50-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"maya barrera\",\"email\":\"felipemaya318@gmail.com\",\"phone_number\":\"3155880709\",\"address\":null,\"creation_date\":\"2023-08-01T11:45:50-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:49:52','2023-08-01 16:49:52'),(7191,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1132\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T11:50:59-05:00\",\"transaction\":{\"id\":\"trvdvw18plopnvbeydmz\",\"authorization\":\"01772D\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-01T11:49:45-05:00\",\"operation_date\":\"2023-08-01T11:50:58-05:00\",\"description\":\"Pago Mensual academia: Samuel David Toro Pérez (1013362067)\",\"error_message\":null,\"order_id\":\"D9896106CA98D3D05B8CBDF4FD8B13A1_J5Q6XOT39K_1690907357.1819\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"426684XXXXXX7979\",\"holder_name\":\"Visa \",\"expiration_year\":\"27\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CHASE BANK USA, N.A.\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Pérez Ortega\",\"email\":\"leidyssd09@gmail.com\",\"phone_number\":\"304 1315479\",\"address\":null,\"creation_date\":\"2023-08-01T11:49:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvdvw18plopnvbeydmz/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-01 16:51:00','2023-08-01 16:51:00'),(7192,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T10:51:23-06:00\",\"transaction\":{\"id\":\"trlzneprx1jywq2lmv7d\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78098486\",\"creation_date\":\"2023-08-01T11:45:50-06:00\",\"operation_date\":\"2023-08-01T11:47:48-06:00\",\"description\":\"Pago Mensual academia: isaac maya valencia (1155717119)\",\"error_message\":null,\"order_id\":\"39AE2ED11B14A4CCB41D35E9D1BA5D11_CHJ3OB4L0S_1690908345.2789\",\"due_date\":\"2023-08-01T23:45:50-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"maya barrera\",\"email\":\"felipemaya318@gmail.com\",\"phone_number\":\"3155880709\",\"address\":null,\"creation_date\":\"2023-08-01T11:45:50-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:51:24','2023-08-01 16:51:24'),(7193,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T10:54:26-06:00\",\"transaction\":{\"id\":\"trlzneprx1jywq2lmv7d\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78098486\",\"creation_date\":\"2023-08-01T11:45:50-06:00\",\"operation_date\":\"2023-08-01T11:47:48-06:00\",\"description\":\"Pago Mensual academia: isaac maya valencia (1155717119)\",\"error_message\":null,\"order_id\":\"39AE2ED11B14A4CCB41D35E9D1BA5D11_CHJ3OB4L0S_1690908345.2789\",\"due_date\":\"2023-08-01T23:45:50-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"maya barrera\",\"email\":\"felipemaya318@gmail.com\",\"phone_number\":\"3155880709\",\"address\":null,\"creation_date\":\"2023-08-01T11:45:50-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 16:54:26','2023-08-01 16:54:26'),(7194,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T13:06:51-05:00\",\"transaction\":{\"id\":\"tr54urfezfhlwf3vgozo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T13:06:06-05:00\",\"operation_date\":\"2023-08-01T13:06:06-05:00\",\"description\":\"Pago Mensual academia: Emiliano Pamplona Echavarria (1033201902)\",\"error_message\":null,\"order_id\":\"31C0C178A9FC26FFECFFD8670E6D746D_4Q5VP2KI6Z_1690913159.3309\",\"due_date\":\"2023-08-02T01:06:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lisbeth\",\"last_name\":\"Echavarria\",\"email\":\"lismaret@gmail.com\",\"phone_number\":\"3128156663\",\"address\":null,\"creation_date\":\"2023-08-01T13:06:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr54urfezfhlwf3vgozo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 18:06:52','2023-08-01 18:06:52'),(7195,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T13:07:51-05:00\",\"transaction\":{\"id\":\"tr54urfezfhlwf3vgozo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78335181\",\"creation_date\":\"2023-08-01T13:06:06-05:00\",\"operation_date\":\"2023-08-01T13:07:45-05:00\",\"description\":\"Pago Mensual academia: Emiliano Pamplona Echavarria (1033201902)\",\"error_message\":null,\"order_id\":\"31C0C178A9FC26FFECFFD8670E6D746D_4Q5VP2KI6Z_1690913159.3309\",\"due_date\":\"2023-08-02T01:06:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lisbeth\",\"last_name\":\"Echavarria\",\"email\":\"lismaret@gmail.com\",\"phone_number\":\"3128156663\",\"address\":null,\"creation_date\":\"2023-08-01T13:06:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 18:07:52','2023-08-01 18:07:52'),(7196,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T13:21:09-05:00\",\"transaction\":{\"id\":\"tra0mnwqhvuvyfottmgy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T13:19:52-05:00\",\"operation_date\":\"2023-08-01T13:19:52-05:00\",\"description\":\"Pago Mensual academia: Felipe Gallego Sepulveda (1020325504)\",\"error_message\":null,\"order_id\":\"8D30AA96E72440759F74BD2306C1FA3D_RUZY174X8I_1690913988.0958\",\"due_date\":\"2023-08-02T01:19:52-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Felipe\",\"last_name\":\"Gallego Sepulveda\",\"email\":\"yandreas86@hotmail.com\",\"phone_number\":\"3015668969\",\"address\":null,\"creation_date\":\"2023-08-01T13:19:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tra0mnwqhvuvyfottmgy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 18:21:10','2023-08-01 18:21:10'),(7197,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T13:22:30-05:00\",\"transaction\":{\"id\":\"trbbtqc8hhmblgqjafom\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T13:21:24-05:00\",\"operation_date\":\"2023-08-01T13:21:24-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":null,\"order_id\":\"8832AE39136FB470B3FBBF9F47B4570D_DLQ4BAMNW6_1690914082.0114\",\"due_date\":\"2023-08-02T01:21:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-08-01T13:21:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbbtqc8hhmblgqjafom/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 18:22:31','2023-08-01 18:22:31'),(7198,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T13:22:44-05:00\",\"transaction\":{\"id\":\"tra0mnwqhvuvyfottmgy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78374287\",\"creation_date\":\"2023-08-01T13:19:52-05:00\",\"operation_date\":\"2023-08-01T13:22:23-05:00\",\"description\":\"Pago Mensual academia: Felipe Gallego Sepulveda (1020325504)\",\"error_message\":null,\"order_id\":\"8D30AA96E72440759F74BD2306C1FA3D_RUZY174X8I_1690913988.0958\",\"due_date\":\"2023-08-02T01:19:52-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Felipe\",\"last_name\":\"Gallego Sepulveda\",\"email\":\"yandreas86@hotmail.com\",\"phone_number\":\"3015668969\",\"address\":null,\"creation_date\":\"2023-08-01T13:19:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 18:22:44','2023-08-01 18:22:44'),(7199,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  849\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-01T13:23:40-05:00\",\"transaction\":{\"id\":\"trbbtqc8hhmblgqjafom\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-01T13:21:24-05:00\",\"operation_date\":\"2023-08-01T13:21:24-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":\"Gateway rejected the operation: FAILED\",\"order_id\":\"8832AE39136FB470B3FBBF9F47B4570D_DLQ4BAMNW6_1690914082.0114\",\"due_date\":\"2023-08-02T01:21:24-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-08-01T13:21:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 18:23:41','2023-08-01 18:23:41'),(7200,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T13:47:11-05:00\",\"transaction\":{\"id\":\"trz6eqkufjqejbmoimnc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-01T13:47:11-05:00\",\"operation_date\":\"2023-08-01T13:47:11-05:00\",\"description\":\"Pago Mensual academia: JACOBO ACERO ECHEVERRI (1021809700)\",\"error_message\":null,\"order_id\":\"07C4B1FDD1EF8DA2D7E9393071204B71_85746YH2CF_1690915624.9856\",\"amount\":165900.00,\"customer\":{\"name\":\"ANDRÉS\",\"last_name\":\"ACERO GIRALDO\",\"email\":\"maroacero@gmail.com\",\"phone_number\":\"3164741346\",\"address\":null,\"creation_date\":\"2023-08-01T13:47:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz6eqkufjqejbmoimnc/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-01 18:47:12','2023-08-01 18:47:12'),(7201,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1137\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T13:48:22-05:00\",\"transaction\":{\"id\":\"trz6eqkufjqejbmoimnc\",\"authorization\":\"055361\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-01T13:47:11-05:00\",\"operation_date\":\"2023-08-01T13:48:19-05:00\",\"description\":\"Pago Mensual academia: JACOBO ACERO ECHEVERRI (1021809700)\",\"error_message\":null,\"order_id\":\"07C4B1FDD1EF8DA2D7E9393071204B71_85746YH2CF_1690915624.9856\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"513689XXXXXX0384\",\"holder_name\":\"DIANA ECHEVERRI V\",\"expiration_year\":\"28\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"FALABELLA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"ANDRÉS\",\"last_name\":\"ACERO GIRALDO\",\"email\":\"maroacero@gmail.com\",\"phone_number\":\"3164741346\",\"address\":null,\"creation_date\":\"2023-08-01T13:47:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz6eqkufjqejbmoimnc/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-01 18:48:23','2023-08-01 18:48:23'),(7202,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T14:05:29-05:00\",\"transaction\":{\"id\":\"tryqsozyyto0is5v5ebd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-01T14:05:29-05:00\",\"operation_date\":\"2023-08-01T14:05:29-05:00\",\"description\":\"Pago Mensual academia: EMMANUEL LOMBANA  DELGADO (1027742111)\",\"error_message\":null,\"order_id\":\"F023559C6D59C04E3804209F573DBFF9_BPYKNX9AI5_1690916723.0481\",\"amount\":165900.00,\"customer\":{\"name\":\"EMMANUEL\",\"last_name\":\"LOMBANA DELGADO\",\"email\":\"Mlombana@une.net.co\",\"phone_number\":\"3117643357\",\"address\":null,\"creation_date\":\"2023-08-01T14:05:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryqsozyyto0is5v5ebd/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-01 19:05:30','2023-08-01 19:05:30'),(7203,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1151\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T14:07:05-05:00\",\"transaction\":{\"id\":\"tryqsozyyto0is5v5ebd\",\"authorization\":\"140705\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-01T14:05:29-05:00\",\"operation_date\":\"2023-08-01T14:07:04-05:00\",\"description\":\"Pago Mensual academia: EMMANUEL LOMBANA  DELGADO (1027742111)\",\"error_message\":null,\"order_id\":\"F023559C6D59C04E3804209F573DBFF9_BPYKNX9AI5_1690916723.0481\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX8085\",\"holder_name\":\"Javier Lombana Gomez\",\"expiration_year\":\"26\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"EMMANUEL\",\"last_name\":\"LOMBANA DELGADO\",\"email\":\"Mlombana@une.net.co\",\"phone_number\":\"3117643357\",\"address\":null,\"creation_date\":\"2023-08-01T14:05:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryqsozyyto0is5v5ebd/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-01 19:07:06','2023-08-01 19:07:06'),(7204,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T14:38:33-05:00\",\"transaction\":{\"id\":\"trkh66pzr7fusbkvy2p5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T14:37:55-05:00\",\"operation_date\":\"2023-08-01T14:37:55-05:00\",\"description\":\"Pago Mensual academia: Nicolás Jaimes Londoño (1019993636)\",\"error_message\":null,\"order_id\":\"766E428D1E232BBDD58664B41346196C_8JYS0B7WMG_1690918671.7058\",\"due_date\":\"2023-08-02T02:37:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Jaimes Londoño\",\"email\":\"dianam0927@hotmail.com\",\"phone_number\":\"3158136416\",\"address\":null,\"creation_date\":\"2023-08-01T14:37:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkh66pzr7fusbkvy2p5/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 19:38:34','2023-08-01 19:38:34'),(7205,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T14:39:43-05:00\",\"transaction\":{\"id\":\"trkh66pzr7fusbkvy2p5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78597382\",\"creation_date\":\"2023-08-01T14:37:55-05:00\",\"operation_date\":\"2023-08-01T14:39:22-05:00\",\"description\":\"Pago Mensual academia: Nicolás Jaimes Londoño (1019993636)\",\"error_message\":null,\"order_id\":\"766E428D1E232BBDD58664B41346196C_8JYS0B7WMG_1690918671.7058\",\"due_date\":\"2023-08-02T02:37:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Jaimes Londoño\",\"email\":\"dianam0927@hotmail.com\",\"phone_number\":\"3158136416\",\"address\":null,\"creation_date\":\"2023-08-01T14:37:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 19:39:44','2023-08-01 19:39:44'),(7206,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T14:45:52-05:00\",\"transaction\":{\"id\":\"treuq9san24mmh9wi3pa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T14:45:12-05:00\",\"operation_date\":\"2023-08-01T14:45:12-05:00\",\"description\":\"Pago Mensual academia: juan andres muñoz roldan (1035000037)\",\"error_message\":null,\"order_id\":\"68A9750337A418A86FE06C1991A1D64C_OBJSHTLI51_1690919109.3216\",\"due_date\":\"2023-08-02T02:45:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula andrea\",\"last_name\":\"Roldan Rios\",\"email\":\"paularoldan1680@gmail.com\",\"phone_number\":\"3185346104\",\"address\":null,\"creation_date\":\"2023-08-01T14:45:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treuq9san24mmh9wi3pa/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 19:45:53','2023-08-01 19:45:53'),(7207,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T13:48:19-06:00\",\"transaction\":{\"id\":\"treuq9san24mmh9wi3pa\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78619424\",\"creation_date\":\"2023-08-01T14:45:12-06:00\",\"operation_date\":\"2023-08-01T14:46:37-06:00\",\"description\":\"Pago Mensual academia: juan andres muñoz roldan (1035000037)\",\"error_message\":null,\"order_id\":\"68A9750337A418A86FE06C1991A1D64C_OBJSHTLI51_1690919109.3216\",\"due_date\":\"2023-08-02T02:45:12-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula andrea\",\"last_name\":\"Roldan Rios\",\"email\":\"paularoldan1680@gmail.com\",\"phone_number\":\"3185346104\",\"address\":null,\"creation_date\":\"2023-08-01T14:45:12-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 19:48:19','2023-08-01 19:48:19'),(7208,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T16:05:54-05:00\",\"transaction\":{\"id\":\"tronf6fgcdtletnm5wzs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-01T16:05:54-05:00\",\"operation_date\":\"2023-08-01T16:05:54-05:00\",\"description\":\"Pago Mensual academia: MARTIN SIERRA ARCOS (1034670360)\",\"error_message\":null,\"order_id\":\"563CA5E068BC78B807910338BB4D4279_AJGMCPQ6UI_1690923940.6441\",\"amount\":165900.00,\"customer\":{\"name\":\"DIANA CAROLINA\",\"last_name\":\"ARCOS OSORIO\",\"email\":\"dianitaarcos04@gmail.com\",\"phone_number\":\"3207900805\",\"address\":null,\"creation_date\":\"2023-08-01T16:05:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tronf6fgcdtletnm5wzs/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-01 21:05:55','2023-08-01 21:05:55'),(7209,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1144\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T16:08:04-05:00\",\"transaction\":{\"id\":\"tronf6fgcdtletnm5wzs\",\"authorization\":\"097644\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-01T16:05:54-05:00\",\"operation_date\":\"2023-08-01T16:08:03-05:00\",\"description\":\"Pago Mensual academia: MARTIN SIERRA ARCOS (1034670360)\",\"error_message\":null,\"order_id\":\"563CA5E068BC78B807910338BB4D4279_AJGMCPQ6UI_1690923940.6441\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555825XXXXXX7049\",\"holder_name\":\"Juan Antonio Sierra\",\"expiration_year\":\"31\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NUBANK\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"DIANA CAROLINA\",\"last_name\":\"ARCOS OSORIO\",\"email\":\"dianitaarcos04@gmail.com\",\"phone_number\":\"3207900805\",\"address\":null,\"creation_date\":\"2023-08-01T16:05:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tronf6fgcdtletnm5wzs/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-01 21:08:05','2023-08-01 21:08:05'),(7210,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T16:18:39-05:00\",\"transaction\":{\"id\":\"trjgago09tx5wuybgdb6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T16:17:49-05:00\",\"operation_date\":\"2023-08-01T16:17:49-05:00\",\"description\":\"Pago Mensual academia: Martin Gonzalez Gallego (1035011968)\",\"error_message\":null,\"order_id\":\"6C4BB406B3E7CD5447F7A76FD7008806_V6TUIP2QJ7_1690924665.512\",\"due_date\":\"2023-08-02T04:17:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Marcela\",\"last_name\":\"Gallego Salazar\",\"email\":\"marcela440@hotmail.com\",\"phone_number\":\"3218310501\",\"address\":null,\"creation_date\":\"2023-08-01T16:17:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjgago09tx5wuybgdb6/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 21:18:40','2023-08-01 21:18:40'),(7211,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T16:19:57-05:00\",\"transaction\":{\"id\":\"trjgago09tx5wuybgdb6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78902776\",\"creation_date\":\"2023-08-01T16:17:49-05:00\",\"operation_date\":\"2023-08-01T16:19:33-05:00\",\"description\":\"Pago Mensual academia: Martin Gonzalez Gallego (1035011968)\",\"error_message\":null,\"order_id\":\"6C4BB406B3E7CD5447F7A76FD7008806_V6TUIP2QJ7_1690924665.512\",\"due_date\":\"2023-08-02T04:17:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Marcela\",\"last_name\":\"Gallego Salazar\",\"email\":\"marcela440@hotmail.com\",\"phone_number\":\"3218310501\",\"address\":null,\"creation_date\":\"2023-08-01T16:17:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 21:19:58','2023-08-01 21:19:58'),(7212,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T16:50:26-05:00\",\"transaction\":{\"id\":\"tr7awqd7vw78qe5mkz26\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T16:49:21-05:00\",\"operation_date\":\"2023-08-01T16:49:21-05:00\",\"description\":\"Pago Mensual academia: Thiago Cespedes Perez (1023559490)\",\"error_message\":null,\"order_id\":\"663772EA088360F95BAC3DC7FFB841BE_UCJHBIT9V5_1690926558.1553\",\"due_date\":\"2023-08-02T04:49:21-05:00\",\"amount\":47500.00,\"customer\":{\"name\":\"Yenifer\",\"last_name\":\"Perez Acero\",\"email\":\"jennifer_perez_a@hotmail.com\",\"phone_number\":\"3216136820\",\"address\":null,\"creation_date\":\"2023-08-01T16:49:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7awqd7vw78qe5mkz26/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 21:50:27','2023-08-01 21:50:27'),(7213,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T15:54:26-06:00\",\"transaction\":{\"id\":\"tr7awqd7vw78qe5mkz26\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"78996172\",\"creation_date\":\"2023-08-01T16:49:21-06:00\",\"operation_date\":\"2023-08-01T16:52:23-06:00\",\"description\":\"Pago Mensual academia: Thiago Cespedes Perez (1023559490)\",\"error_message\":null,\"order_id\":\"663772EA088360F95BAC3DC7FFB841BE_UCJHBIT9V5_1690926558.1553\",\"due_date\":\"2023-08-02T04:49:21-06:00\",\"amount\":47500.00,\"customer\":{\"name\":\"Yenifer\",\"last_name\":\"Perez Acero\",\"email\":\"jennifer_perez_a@hotmail.com\",\"phone_number\":\"3216136820\",\"address\":null,\"creation_date\":\"2023-08-01T16:49:21-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 21:54:26','2023-08-01 21:54:26'),(7214,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T17:00:08-05:00\",\"transaction\":{\"id\":\"trse7cjzecuibtkzstlt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T16:59:34-05:00\",\"operation_date\":\"2023-08-01T16:59:34-05:00\",\"description\":\"Pago Mensual academia: Miguel Ospina Gómez (1021810313)\",\"error_message\":null,\"order_id\":\"B08354F3688C4E4E8C52C207D7D5B8C3_WBOET7MXG1_1690927170.4429\",\"due_date\":\"2023-08-02T04:59:34-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Ospina Marín\",\"email\":\"Danielospinam@gmail.com\",\"phone_number\":\"3223493589\",\"address\":null,\"creation_date\":\"2023-08-01T16:59:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trse7cjzecuibtkzstlt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:00:09','2023-08-01 22:00:09'),(7215,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T17:02:10-05:00\",\"transaction\":{\"id\":\"trvtgjgiicjp2huuyqid\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T17:00:30-05:00\",\"operation_date\":\"2023-08-01T17:00:30-05:00\",\"description\":\"Pago Mensual academia: Matías Arango Gutiérrez (1031942381)\",\"error_message\":null,\"order_id\":\"B59307FDACF7B2DB12EC4BD5CA1CABA8_EUDO5JP08N_1690927227.8938\",\"due_date\":\"2023-08-02T05:00:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julián Andres\",\"last_name\":\"Arango Castrillon\",\"email\":\"arajulian@gmail.com\",\"phone_number\":\"3206207280\",\"address\":null,\"creation_date\":\"2023-08-01T17:00:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvtgjgiicjp2huuyqid/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:02:10','2023-08-01 22:02:10'),(7216,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T17:03:23-05:00\",\"transaction\":{\"id\":\"trvtgjgiicjp2huuyqid\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79028737\",\"creation_date\":\"2023-08-01T17:00:30-05:00\",\"operation_date\":\"2023-08-01T17:03:10-05:00\",\"description\":\"Pago Mensual academia: Matías Arango Gutiérrez (1031942381)\",\"error_message\":null,\"order_id\":\"B59307FDACF7B2DB12EC4BD5CA1CABA8_EUDO5JP08N_1690927227.8938\",\"due_date\":\"2023-08-02T05:00:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julián Andres\",\"last_name\":\"Arango Castrillon\",\"email\":\"arajulian@gmail.com\",\"phone_number\":\"3206207280\",\"address\":null,\"creation_date\":\"2023-08-01T17:00:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:03:24','2023-08-01 22:03:24'),(7217,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T17:04:02-05:00\",\"transaction\":{\"id\":\"tr2sadzcl7p8xd3je1oh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T17:01:19-05:00\",\"operation_date\":\"2023-08-01T17:01:19-05:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"731AE30AF8750C2D28720EA3C1F8C2B1_G0UTBI7S9V_1690927273.1581\",\"due_date\":\"2023-08-02T05:01:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel matias\",\"last_name\":\"caro jimenez\",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-08-01T17:01:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2sadzcl7p8xd3je1oh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:04:03','2023-08-01 22:04:03'),(7218,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T16:06:18-06:00\",\"transaction\":{\"id\":\"tr2sadzcl7p8xd3je1oh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79033606\",\"creation_date\":\"2023-08-01T17:01:19-06:00\",\"operation_date\":\"2023-08-01T17:06:17-06:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"731AE30AF8750C2D28720EA3C1F8C2B1_G0UTBI7S9V_1690927273.1581\",\"due_date\":\"2023-08-02T05:01:19-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel matias\",\"last_name\":\"caro jimenez\",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-08-01T17:01:19-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:06:19','2023-08-01 22:06:19'),(7219,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T17:09:25-05:00\",\"transaction\":{\"id\":\"troamvneq7s3jvhy9ywo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T17:08:01-05:00\",\"operation_date\":\"2023-08-01T17:08:01-05:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"24EC8468B67314C2013D215B77034476_2P5QN7UKSJ_1690927676.8145\",\"due_date\":\"2023-08-02T05:08:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matias\",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-08-01T17:08:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troamvneq7s3jvhy9ywo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:09:26','2023-08-01 22:09:26'),(7220,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T17:11:16-05:00\",\"transaction\":{\"id\":\"troamvneq7s3jvhy9ywo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79047698\",\"creation_date\":\"2023-08-01T17:08:01-05:00\",\"operation_date\":\"2023-08-01T17:10:45-05:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"24EC8468B67314C2013D215B77034476_2P5QN7UKSJ_1690927676.8145\",\"due_date\":\"2023-08-02T05:08:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matias\",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-08-01T17:08:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:11:17','2023-08-01 22:11:17'),(7221,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T17:13:02-05:00\",\"transaction\":{\"id\":\"tr8wycvfanlvw8isvrgm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T17:11:38-05:00\",\"operation_date\":\"2023-08-01T17:11:38-05:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"7486CEF2522EE03547CFB970A404A874_AVCJ0YEFIN_1690927896.2471\",\"due_date\":\"2023-08-02T05:11:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matías \",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-08-01T17:11:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8wycvfanlvw8isvrgm/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:13:02','2023-08-01 22:13:02'),(7222,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T17:14:47-05:00\",\"transaction\":{\"id\":\"tr8wycvfanlvw8isvrgm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79057063\",\"creation_date\":\"2023-08-01T17:11:38-05:00\",\"operation_date\":\"2023-08-01T17:14:19-05:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"7486CEF2522EE03547CFB970A404A874_AVCJ0YEFIN_1690927896.2471\",\"due_date\":\"2023-08-02T05:11:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matías \",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-08-01T17:11:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:14:48','2023-08-01 22:14:48'),(7223,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T17:17:59-05:00\",\"transaction\":{\"id\":\"trplgknqffwbcdexhsl0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T17:15:34-05:00\",\"operation_date\":\"2023-08-01T17:15:34-05:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"799DE6D3DAE4C924142CF245A1D7F703_IEV67FP53B_1690928126.3361\",\"due_date\":\"2023-08-02T05:15:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matías \",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-08-01T17:15:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trplgknqffwbcdexhsl0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:17:59','2023-08-01 22:17:59'),(7224,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  859\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-01T16:19:25-06:00\",\"transaction\":{\"id\":\"trplgknqffwbcdexhsl0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-01T17:15:34-06:00\",\"operation_date\":\"2023-08-01T17:15:34-06:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":\"Gateway rejected the operation: FAILED\",\"order_id\":\"799DE6D3DAE4C924142CF245A1D7F703_IEV67FP53B_1690928126.3361\",\"due_date\":\"2023-08-02T05:15:34-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matías \",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-08-01T17:15:34-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:19:26','2023-08-01 22:19:26'),(7225,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  844\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-01T16:21:09-06:00\",\"transaction\":{\"id\":\"trse7cjzecuibtkzstlt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-01T16:59:34-06:00\",\"operation_date\":\"2023-08-01T17:00:18-06:00\",\"description\":\"Pago Mensual academia: Miguel Ospina Gómez (1021810313)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"B08354F3688C4E4E8C52C207D7D5B8C3_WBOET7MXG1_1690927170.4429\",\"due_date\":\"2023-08-02T04:59:34-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Ospina Marín\",\"email\":\"Danielospinam@gmail.com\",\"phone_number\":\"3223493589\",\"address\":null,\"creation_date\":\"2023-08-01T16:59:34-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:21:10','2023-08-01 22:21:10'),(7226,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T17:23:28-05:00\",\"transaction\":{\"id\":\"trsebcfxjum3tzbpyq7b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T17:22:03-05:00\",\"operation_date\":\"2023-08-01T17:22:03-05:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"799DE6D3DAE4C924142CF245A1D7F703_IEV67FP53B_1690928514.0833\",\"due_date\":\"2023-08-02T05:22:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matías \",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-08-01T17:22:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsebcfxjum3tzbpyq7b/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:23:29','2023-08-01 22:23:29'),(7227,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T17:26:21-05:00\",\"transaction\":{\"id\":\"trsebcfxjum3tzbpyq7b\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79084209\",\"creation_date\":\"2023-08-01T17:22:03-05:00\",\"operation_date\":\"2023-08-01T17:25:42-05:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"799DE6D3DAE4C924142CF245A1D7F703_IEV67FP53B_1690928514.0833\",\"due_date\":\"2023-08-02T05:22:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matías \",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-08-01T17:22:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:26:22','2023-08-01 22:26:22'),(7228,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T17:57:27-05:00\",\"transaction\":{\"id\":\"trciocg1flhafdjpjlbr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T17:56:51-05:00\",\"operation_date\":\"2023-08-01T17:56:51-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":null,\"order_id\":\"8832AE39136FB470B3FBBF9F47B4570D_DLQ4BAMNW6_1690930609.3832\",\"due_date\":\"2023-08-02T05:56:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-08-01T17:56:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trciocg1flhafdjpjlbr/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 22:57:28','2023-08-01 22:57:28'),(7229,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  857\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-01T17:00:18-06:00\",\"transaction\":{\"id\":\"trciocg1flhafdjpjlbr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-01T17:56:51-06:00\",\"operation_date\":\"2023-08-01T17:57:34-06:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"8832AE39136FB470B3FBBF9F47B4570D_DLQ4BAMNW6_1690930609.3832\",\"due_date\":\"2023-08-02T05:56:51-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-08-01T17:56:51-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:00:19','2023-08-01 23:00:19'),(7230,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T18:02:59-05:00\",\"transaction\":{\"id\":\"trhbztz43bcqopjdfs8m\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T17:59:09-05:00\",\"operation_date\":\"2023-08-01T17:59:09-05:00\",\"description\":\"Pago Mensual academia: Juan pablo ceballos londoño (1032022715)\",\"error_message\":null,\"order_id\":\"640258597CBC50037072712F964CF5D8_JPLQMT3KFE_1690930745.1826\",\"due_date\":\"2023-08-02T05:59:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuela \",\"last_name\":\"Londoño\",\"email\":\"yennylondono75@gmail.com\",\"phone_number\":\"3007349688\",\"address\":null,\"creation_date\":\"2023-08-01T17:59:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhbztz43bcqopjdfs8m/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:03:00','2023-08-01 23:03:00'),(7231,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T17:06:16-06:00\",\"transaction\":{\"id\":\"trhbztz43bcqopjdfs8m\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79185467\",\"creation_date\":\"2023-08-01T17:59:09-06:00\",\"operation_date\":\"2023-08-01T18:04:51-06:00\",\"description\":\"Pago Mensual academia: Juan pablo ceballos londoño (1032022715)\",\"error_message\":null,\"order_id\":\"640258597CBC50037072712F964CF5D8_JPLQMT3KFE_1690930745.1826\",\"due_date\":\"2023-08-02T05:59:09-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuela \",\"last_name\":\"Londoño\",\"email\":\"yennylondono75@gmail.com\",\"phone_number\":\"3007349688\",\"address\":null,\"creation_date\":\"2023-08-01T17:59:09-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:06:17','2023-08-01 23:06:17'),(7232,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T18:13:52-05:00\",\"transaction\":{\"id\":\"trgk0gnungdyedk3u7wu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T18:11:44-05:00\",\"operation_date\":\"2023-08-01T18:11:44-05:00\",\"description\":\"Pago Mensual academia: Nicolas Peñuela Gomez (1011513305)\",\"error_message\":null,\"order_id\":\"9EF2ED4B7FD2C810847FFA5FA85BCE38_KB8ET1O9HG_1690931486.4414\",\"due_date\":\"2023-08-02T06:11:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Gomez Mora\",\"email\":\"cgmora2442@gmail.com\",\"phone_number\":\"3008110459\",\"address\":null,\"creation_date\":\"2023-08-01T18:11:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgk0gnungdyedk3u7wu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:13:53','2023-08-01 23:13:53'),(7233,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T18:17:11-05:00\",\"transaction\":{\"id\":\"trgk0gnungdyedk3u7wu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79212632\",\"creation_date\":\"2023-08-01T18:11:44-05:00\",\"operation_date\":\"2023-08-01T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Nicolas Peñuela Gomez (1011513305)\",\"error_message\":null,\"order_id\":\"9EF2ED4B7FD2C810847FFA5FA85BCE38_KB8ET1O9HG_1690931486.4414\",\"due_date\":\"2023-08-02T06:11:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Gomez Mora\",\"email\":\"cgmora2442@gmail.com\",\"phone_number\":\"3008110459\",\"address\":null,\"creation_date\":\"2023-08-01T18:11:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:17:12','2023-08-01 23:17:12'),(7234,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T18:21:05-05:00\",\"transaction\":{\"id\":\"tr5gdgb6rw2vick3x86x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T18:19:46-05:00\",\"operation_date\":\"2023-08-01T18:19:46-05:00\",\"description\":\"Pago Mensual academia: mathias restrepo villegas (1034992992)\",\"error_message\":null,\"order_id\":\"211ED78FE91938B90F84A51944B08D5A_5UWOCH0BLD_1690931981.9462\",\"due_date\":\"2023-08-02T06:19:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN GUILLERMO\",\"last_name\":\"RESTREPO OBANDO\",\"email\":\"juanguigui79@hotmail.com\",\"phone_number\":\"3162236926\",\"address\":null,\"creation_date\":\"2023-08-01T18:19:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5gdgb6rw2vick3x86x/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:21:05','2023-08-01 23:21:05'),(7235,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T18:22:18-05:00\",\"transaction\":{\"id\":\"trurd7f17relfdcczgsx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T18:21:10-05:00\",\"operation_date\":\"2023-08-01T18:21:10-05:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Mesa Henao (1034925834)\",\"error_message\":null,\"order_id\":\"D77E68596C15C53C2A33AD143739902D_7HFV03S1ZC_1690932066.8824\",\"due_date\":\"2023-08-02T06:21:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Ángel\",\"last_name\":\"mesa henao\",\"email\":\"zuletaesneider22@gmail.com\",\"phone_number\":\"3205407863\",\"address\":null,\"creation_date\":\"2023-08-01T18:21:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trurd7f17relfdcczgsx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:22:18','2023-08-01 23:22:18'),(7236,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T18:22:35-05:00\",\"transaction\":{\"id\":\"tr5gdgb6rw2vick3x86x\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79231023\",\"creation_date\":\"2023-08-01T18:19:46-05:00\",\"operation_date\":\"2023-08-01T18:21:55-05:00\",\"description\":\"Pago Mensual academia: mathias restrepo villegas (1034992992)\",\"error_message\":null,\"order_id\":\"211ED78FE91938B90F84A51944B08D5A_5UWOCH0BLD_1690931981.9462\",\"due_date\":\"2023-08-02T06:19:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN GUILLERMO\",\"last_name\":\"RESTREPO OBANDO\",\"email\":\"juanguigui79@hotmail.com\",\"phone_number\":\"3162236926\",\"address\":null,\"creation_date\":\"2023-08-01T18:19:46-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:22:36','2023-08-01 23:22:36'),(7237,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T18:22:52-05:00\",\"transaction\":{\"id\":\"trv7gsaxaw7k5ixehqku\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T18:20:52-05:00\",\"operation_date\":\"2023-08-01T18:20:52-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":null,\"order_id\":\"8832AE39136FB470B3FBBF9F47B4570D_DLQ4BAMNW6_1690932050.0326\",\"due_date\":\"2023-08-02T06:20:52-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-08-01T18:20:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trv7gsaxaw7k5ixehqku/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:22:53','2023-08-01 23:22:53'),(7238,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T17:24:20-06:00\",\"transaction\":{\"id\":\"trv7gsaxaw7k5ixehqku\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79235627\",\"creation_date\":\"2023-08-01T18:20:52-06:00\",\"operation_date\":\"2023-08-01T18:24:08-06:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":null,\"order_id\":\"8832AE39136FB470B3FBBF9F47B4570D_DLQ4BAMNW6_1690932050.0326\",\"due_date\":\"2023-08-02T06:20:52-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-08-01T18:20:52-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:24:20','2023-08-01 23:24:20'),(7239,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T17:24:21-06:00\",\"transaction\":{\"id\":\"trurd7f17relfdcczgsx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79234110\",\"creation_date\":\"2023-08-01T18:21:10-06:00\",\"operation_date\":\"2023-08-01T18:23:39-06:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Mesa Henao (1034925834)\",\"error_message\":null,\"order_id\":\"D77E68596C15C53C2A33AD143739902D_7HFV03S1ZC_1690932066.8824\",\"due_date\":\"2023-08-02T06:21:10-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Ángel\",\"last_name\":\"mesa henao\",\"email\":\"zuletaesneider22@gmail.com\",\"phone_number\":\"3205407863\",\"address\":null,\"creation_date\":\"2023-08-01T18:21:10-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:24:22','2023-08-01 23:24:22'),(7240,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T18:40:01-05:00\",\"transaction\":{\"id\":\"trsyglrct4punl3zjybf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T18:38:25-05:00\",\"operation_date\":\"2023-08-01T18:38:25-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Duque Alvarez (1033189257)\",\"error_message\":null,\"order_id\":\"1271A7029C9DF08643B631B02CF9E116_LTABPFODCW_1690933100.8622\",\"due_date\":\"2023-08-02T06:38:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eduardo\",\"last_name\":\"Duque Higuita\",\"email\":\"duqueedward@gmail.com\",\"phone_number\":\"3122383147\",\"address\":null,\"creation_date\":\"2023-08-01T18:38:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsyglrct4punl3zjybf/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:40:02','2023-08-01 23:40:02'),(7241,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T18:42:04-05:00\",\"transaction\":{\"id\":\"trsyglrct4punl3zjybf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79281110\",\"creation_date\":\"2023-08-01T18:38:25-05:00\",\"operation_date\":\"2023-08-01T18:41:37-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Duque Alvarez (1033189257)\",\"error_message\":null,\"order_id\":\"1271A7029C9DF08643B631B02CF9E116_LTABPFODCW_1690933100.8622\",\"due_date\":\"2023-08-02T06:38:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eduardo\",\"last_name\":\"Duque Higuita\",\"email\":\"duqueedward@gmail.com\",\"phone_number\":\"3122383147\",\"address\":null,\"creation_date\":\"2023-08-01T18:38:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:42:05','2023-08-01 23:42:05'),(7242,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T18:46:21-05:00\",\"transaction\":{\"id\":\"tr5wxw37xeflybfph9mn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T18:45:23-05:00\",\"operation_date\":\"2023-08-01T18:45:23-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN LONDOÑO PEREAÑEZ (1020303276)\",\"error_message\":null,\"order_id\":\"7F01C939761597F9B832694D4C381512_0W3T8KU7B1_1690933520.1525\",\"due_date\":\"2023-08-02T06:45:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ELIANA\",\"last_name\":\"PEREAÑEZ PATIÑO\",\"email\":\"eliana.pereanez@gmail.com\",\"phone_number\":\"3117737115\",\"address\":null,\"creation_date\":\"2023-08-01T18:45:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5wxw37xeflybfph9mn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:46:22','2023-08-01 23:46:22'),(7243,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T18:47:24-05:00\",\"transaction\":{\"id\":\"tr5wxw37xeflybfph9mn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79298165\",\"creation_date\":\"2023-08-01T18:45:23-05:00\",\"operation_date\":\"2023-08-01T18:47:18-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN LONDOÑO PEREAÑEZ (1020303276)\",\"error_message\":null,\"order_id\":\"7F01C939761597F9B832694D4C381512_0W3T8KU7B1_1690933520.1525\",\"due_date\":\"2023-08-02T06:45:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ELIANA\",\"last_name\":\"PEREAÑEZ PATIÑO\",\"email\":\"eliana.pereanez@gmail.com\",\"phone_number\":\"3117737115\",\"address\":null,\"creation_date\":\"2023-08-01T18:45:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:47:25','2023-08-01 23:47:25'),(7244,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T18:50:32-05:00\",\"transaction\":{\"id\":\"trvrodnsageonau5ihgn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T18:49:34-05:00\",\"operation_date\":\"2023-08-01T18:49:34-05:00\",\"description\":\"Pago Mensual academia: Nicolas Ortiz Cadavid (1035013795)\",\"error_message\":null,\"order_id\":\"731309C4BB223491A9F67EAC5214FB2E_FJERQLA15B_1690933769.2888\",\"due_date\":\"2023-08-02T06:49:34-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Cadavid Cardenas\",\"email\":\"ana.cadavidc@gmail.com\",\"phone_number\":\"3104623991\",\"address\":null,\"creation_date\":\"2023-08-01T18:49:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvrodnsageonau5ihgn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:50:32','2023-08-01 23:50:32'),(7245,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T18:53:11-05:00\",\"transaction\":{\"id\":\"trvrodnsageonau5ihgn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79309618\",\"creation_date\":\"2023-08-01T18:49:34-05:00\",\"operation_date\":\"2023-08-01T18:53:00-05:00\",\"description\":\"Pago Mensual academia: Nicolas Ortiz Cadavid (1035013795)\",\"error_message\":null,\"order_id\":\"731309C4BB223491A9F67EAC5214FB2E_FJERQLA15B_1690933769.2888\",\"due_date\":\"2023-08-02T06:49:34-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Cadavid Cardenas\",\"email\":\"ana.cadavidc@gmail.com\",\"phone_number\":\"3104623991\",\"address\":null,\"creation_date\":\"2023-08-01T18:49:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-01 23:53:12','2023-08-01 23:53:12'),(7246,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T19:44:42-05:00\",\"transaction\":{\"id\":\"trjkcbwo06qyz5ruoo7i\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T19:43:49-05:00\",\"operation_date\":\"2023-08-01T19:43:49-05:00\",\"description\":\"Pago Mensual academia: Josias Rave Rodríguez (1036453412)\",\"error_message\":null,\"order_id\":\"6B620AEDFA4CF153467265629501DD61_PH8SYQ7IX6_1690937024.879\",\"due_date\":\"2023-08-02T07:43:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Rave\",\"email\":\"carlosmariorave71@gmail.com\",\"phone_number\":\"3216136223\",\"address\":null,\"creation_date\":\"2023-08-01T19:43:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjkcbwo06qyz5ruoo7i/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 00:44:42','2023-08-02 00:44:42'),(7247,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T19:47:28-05:00\",\"transaction\":{\"id\":\"trjkcbwo06qyz5ruoo7i\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79451789\",\"creation_date\":\"2023-08-01T19:43:49-05:00\",\"operation_date\":\"2023-08-01T19:47:14-05:00\",\"description\":\"Pago Mensual academia: Josias Rave Rodríguez (1036453412)\",\"error_message\":null,\"order_id\":\"6B620AEDFA4CF153467265629501DD61_PH8SYQ7IX6_1690937024.879\",\"due_date\":\"2023-08-02T07:43:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Rave\",\"email\":\"carlosmariorave71@gmail.com\",\"phone_number\":\"3216136223\",\"address\":null,\"creation_date\":\"2023-08-01T19:43:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 00:47:29','2023-08-02 00:47:29'),(7248,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  912\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T20:13:11-05:00\",\"transaction\":{\"id\":\"trbeuhielzfmowpuq1wr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-01T20:13:11-05:00\",\"operation_date\":\"2023-08-01T20:13:11-05:00\",\"description\":\"Pago Mensual academia: Thomas Alejandro Garcia Garcia (1093599202)\",\"error_message\":null,\"order_id\":\"0AAE0FEDE9A4D278E2F9A171E62FC76B_LWV1KI432E_1690938786.0139\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexandra\",\"last_name\":\"Garcia Ospina\",\"email\":\"alexandragarciaospina@hotmail.com\",\"phone_number\":\"3185201241\",\"address\":null,\"creation_date\":\"2023-08-01T20:13:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbeuhielzfmowpuq1wr/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-02 01:13:12','2023-08-02 01:13:12'),(7249,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1152\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T20:14:29-05:00\",\"transaction\":{\"id\":\"trbeuhielzfmowpuq1wr\",\"authorization\":\"668751\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-01T20:13:11-05:00\",\"operation_date\":\"2023-08-01T20:14:28-05:00\",\"description\":\"Pago Mensual academia: Thomas Alejandro Garcia Garcia (1093599202)\",\"error_message\":null,\"order_id\":\"0AAE0FEDE9A4D278E2F9A171E62FC76B_LWV1KI432E_1690938786.0139\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491268XXXXXX5021\",\"holder_name\":\"Alexandra garcia \",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"amount\":165900.00,\"customer\":{\"name\":\"Alexandra\",\"last_name\":\"Garcia Ospina\",\"email\":\"alexandragarciaospina@hotmail.com\",\"phone_number\":\"3185201241\",\"address\":null,\"creation_date\":\"2023-08-01T20:13:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbeuhielzfmowpuq1wr/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 01:14:30','2023-08-02 01:14:30'),(7250,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T20:45:05-05:00\",\"transaction\":{\"id\":\"trq7p6dhrtu6xayacwvz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-01T20:45:04-05:00\",\"operation_date\":\"2023-08-01T20:45:04-05:00\",\"description\":\"Pago Mensual academia: santiago lotero castro (1034923449)\",\"error_message\":null,\"order_id\":\"9BD5EE6FE55AAEB673025DBCB8F939C1_FXYJR9EPD4_1690940687.257\",\"amount\":165900.00,\"customer\":{\"name\":\"tatiana\",\"last_name\":\"castro arenas\",\"email\":\"tatianacastro461@gmail.com\",\"phone_number\":\"3123947745\",\"address\":null,\"creation_date\":\"2023-08-01T20:45:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq7p6dhrtu6xayacwvz/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-02 01:45:05','2023-08-02 01:45:05'),(7251,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T20:56:15-05:00\",\"transaction\":{\"id\":\"trbgmkmhllhm8n4svkwp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T20:54:34-05:00\",\"operation_date\":\"2023-08-01T20:54:34-05:00\",\"description\":\"Pago Mensual academia: Luis Fernando Guerrero Palacios (1025766751)\",\"error_message\":null,\"order_id\":\"89D4402DC03D3B7318BBAC10203034AB_VURM975A6E_1690941267.5178\",\"due_date\":\"2023-08-02T08:54:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luis Hernando\",\"last_name\":\"Guerrero Renteria\",\"email\":\"luishg3535@gmail.com\",\"phone_number\":\"3137669507\",\"address\":null,\"creation_date\":\"2023-08-01T20:54:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbgmkmhllhm8n4svkwp/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 01:56:16','2023-08-02 01:56:16'),(7252,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T20:59:18-05:00\",\"transaction\":{\"id\":\"trqo29rj9yfrfczyplro\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T20:58:15-05:00\",\"operation_date\":\"2023-08-01T20:58:15-05:00\",\"description\":\"Pago Mensual academia: juan jose muñoz tamayo (1020315336)\",\"error_message\":null,\"order_id\":\"E2EACAFF46787BFEEFCAA24CF35264C7_NGFPU2AYO6_1690941492.0975\",\"due_date\":\"2023-08-02T08:58:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan jose\",\"last_name\":\"muñoz tamayo\",\"email\":\"leidytamayog@hotmail.com\",\"phone_number\":\"3128975759\",\"address\":null,\"creation_date\":\"2023-08-01T20:58:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqo29rj9yfrfczyplro/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 01:59:18','2023-08-02 01:59:18'),(7253,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T20:00:21-06:00\",\"transaction\":{\"id\":\"trbgmkmhllhm8n4svkwp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79633606\",\"creation_date\":\"2023-08-01T20:54:34-06:00\",\"operation_date\":\"2023-08-01T20:59:03-06:00\",\"description\":\"Pago Mensual academia: Luis Fernando Guerrero Palacios (1025766751)\",\"error_message\":null,\"order_id\":\"89D4402DC03D3B7318BBAC10203034AB_VURM975A6E_1690941267.5178\",\"due_date\":\"2023-08-02T08:54:34-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luis Hernando\",\"last_name\":\"Guerrero Renteria\",\"email\":\"luishg3535@gmail.com\",\"phone_number\":\"3137669507\",\"address\":null,\"creation_date\":\"2023-08-01T20:54:34-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:00:22','2023-08-02 02:00:22'),(7254,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T20:03:14-06:00\",\"transaction\":{\"id\":\"trqo29rj9yfrfczyplro\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79640991\",\"creation_date\":\"2023-08-01T20:58:15-06:00\",\"operation_date\":\"2023-08-01T21:00:46-06:00\",\"description\":\"Pago Mensual academia: juan jose muñoz tamayo (1020315336)\",\"error_message\":null,\"order_id\":\"E2EACAFF46787BFEEFCAA24CF35264C7_NGFPU2AYO6_1690941492.0975\",\"due_date\":\"2023-08-02T08:58:15-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan jose\",\"last_name\":\"muñoz tamayo\",\"email\":\"leidytamayog@hotmail.com\",\"phone_number\":\"3128975759\",\"address\":null,\"creation_date\":\"2023-08-01T20:58:15-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:03:14','2023-08-02 02:03:14'),(7255,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T21:05:08-05:00\",\"transaction\":{\"id\":\"trmnbeplrvcozqkivf9l\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T21:03:27-05:00\",\"operation_date\":\"2023-08-01T21:03:27-05:00\",\"description\":\"Pago Mensual academia: Emmanuel perez Restrepo (1034999806)\",\"error_message\":null,\"order_id\":\"133B3752E52BAE42230364CB720F81F7_4HO57MV9E1_1690941804.6397\",\"due_date\":\"2023-08-02T09:03:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ferney Alfonso\",\"last_name\":\"perez Arango\",\"email\":\"hue.so@hotmail.com\",\"phone_number\":\"3122510356\",\"address\":null,\"creation_date\":\"2023-08-01T21:03:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmnbeplrvcozqkivf9l/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:05:08','2023-08-02 02:05:08'),(7256,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T21:06:33-05:00\",\"transaction\":{\"id\":\"trmnbeplrvcozqkivf9l\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79654931\",\"creation_date\":\"2023-08-01T21:03:27-05:00\",\"operation_date\":\"2023-08-01T21:06:24-05:00\",\"description\":\"Pago Mensual academia: Emmanuel perez Restrepo (1034999806)\",\"error_message\":null,\"order_id\":\"133B3752E52BAE42230364CB720F81F7_4HO57MV9E1_1690941804.6397\",\"due_date\":\"2023-08-02T09:03:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ferney Alfonso\",\"last_name\":\"perez Arango\",\"email\":\"hue.so@hotmail.com\",\"phone_number\":\"3122510356\",\"address\":null,\"creation_date\":\"2023-08-01T21:03:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:06:33','2023-08-02 02:06:33'),(7257,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T21:34:16-05:00\",\"transaction\":{\"id\":\"traco4ytbgprh0xaej5u\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T21:33:31-05:00\",\"operation_date\":\"2023-08-01T21:33:31-05:00\",\"description\":\"Pago Mensual academia: Miguel Ospina Gómez (1021810313)\",\"error_message\":null,\"order_id\":\"B08354F3688C4E4E8C52C207D7D5B8C3_WBOET7MXG1_1690943608.0966\",\"due_date\":\"2023-08-02T09:33:31-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Ospina Marín\",\"email\":\"Danielospinam@gmail.com\",\"phone_number\":\"3223493589\",\"address\":null,\"creation_date\":\"2023-08-01T21:33:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traco4ytbgprh0xaej5u/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:34:17','2023-08-02 02:34:17'),(7258,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T21:35:51-05:00\",\"transaction\":{\"id\":\"traco4ytbgprh0xaej5u\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79723532\",\"creation_date\":\"2023-08-01T21:33:31-05:00\",\"operation_date\":\"2023-08-01T21:35:27-05:00\",\"description\":\"Pago Mensual academia: Miguel Ospina Gómez (1021810313)\",\"error_message\":null,\"order_id\":\"B08354F3688C4E4E8C52C207D7D5B8C3_WBOET7MXG1_1690943608.0966\",\"due_date\":\"2023-08-02T09:33:31-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Ospina Marín\",\"email\":\"Danielospinam@gmail.com\",\"phone_number\":\"3223493589\",\"address\":null,\"creation_date\":\"2023-08-01T21:33:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:35:52','2023-08-02 02:35:52'),(7259,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T21:39:33-05:00\",\"transaction\":{\"id\":\"tr5cf6pp1cwpzijjohls\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T21:38:29-05:00\",\"operation_date\":\"2023-08-01T21:38:29-05:00\",\"description\":\"Pago Mensual academia: Emiliano Velasquez Garcia (1027814924)\",\"error_message\":null,\"order_id\":\"52EDC4A5890ADC59CEC82CB60F8AF691_E6LMJUI5K4_1690943906.5006\",\"due_date\":\"2023-08-02T09:38:29-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Gabriel\",\"last_name\":\"Velasquez Leon\",\"email\":\"juan20092@gmail.com\",\"phone_number\":\"3127835658\",\"address\":null,\"creation_date\":\"2023-08-01T21:38:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5cf6pp1cwpzijjohls/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:39:33','2023-08-02 02:39:33'),(7260,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T21:40:36-05:00\",\"transaction\":{\"id\":\"tr5cf6pp1cwpzijjohls\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79735229\",\"creation_date\":\"2023-08-01T21:38:29-05:00\",\"operation_date\":\"2023-08-01T21:40:28-05:00\",\"description\":\"Pago Mensual academia: Emiliano Velasquez Garcia (1027814924)\",\"error_message\":null,\"order_id\":\"52EDC4A5890ADC59CEC82CB60F8AF691_E6LMJUI5K4_1690943906.5006\",\"due_date\":\"2023-08-02T09:38:29-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Gabriel\",\"last_name\":\"Velasquez Leon\",\"email\":\"juan20092@gmail.com\",\"phone_number\":\"3127835658\",\"address\":null,\"creation_date\":\"2023-08-01T21:38:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:40:37','2023-08-02 02:40:37'),(7261,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T21:44:53-05:00\",\"transaction\":{\"id\":\"tr0odja73ebwfujwtenl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T21:44:13-05:00\",\"operation_date\":\"2023-08-01T21:44:13-05:00\",\"description\":\"Pago Mensual academia: emilio restrepo moscoso (1022008070)\",\"error_message\":null,\"order_id\":\"B0169350CD35566C47BA83C6EC1D6F82_TEUK5ZYQ1C_1690944250.2001\",\"due_date\":\"2023-08-02T09:44:13-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"EMILIO\",\"last_name\":\"RESTREPO MOSCOSO\",\"email\":\"maite.mos@hotmail.com\",\"phone_number\":\"3012736979\",\"address\":null,\"creation_date\":\"2023-08-01T21:44:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0odja73ebwfujwtenl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:44:54','2023-08-02 02:44:54'),(7262,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T21:46:34-05:00\",\"transaction\":{\"id\":\"tr0odja73ebwfujwtenl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79746593\",\"creation_date\":\"2023-08-01T21:44:13-05:00\",\"operation_date\":\"2023-08-01T21:46:18-05:00\",\"description\":\"Pago Mensual academia: emilio restrepo moscoso (1022008070)\",\"error_message\":null,\"order_id\":\"B0169350CD35566C47BA83C6EC1D6F82_TEUK5ZYQ1C_1690944250.2001\",\"due_date\":\"2023-08-02T09:44:13-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"EMILIO\",\"last_name\":\"RESTREPO MOSCOSO\",\"email\":\"maite.mos@hotmail.com\",\"phone_number\":\"3012736979\",\"address\":null,\"creation_date\":\"2023-08-01T21:44:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:46:35','2023-08-02 02:46:35'),(7263,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-01T21:49:29-05:00\",\"transaction\":{\"id\":\"tri77y3tkhhlo8kxcd0q\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-01T21:48:30-05:00\",\"operation_date\":\"2023-08-01T21:48:30-05:00\",\"description\":\"Pago Mensual academia: jeronimo agudelo aguilar (1020230403)\",\"error_message\":null,\"order_id\":\"94B5BDE6DE888DDF9CDE6748AD2523D1_9VANH23ZIW_1690944505.5989\",\"due_date\":\"2023-08-02T09:48:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"brayan antonio\",\"last_name\":\"agudelo sanchez\",\"email\":\"brayan.agudelo26@gmail.com\",\"phone_number\":\"3113643596\",\"address\":null,\"creation_date\":\"2023-08-01T21:48:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tri77y3tkhhlo8kxcd0q/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:49:29','2023-08-02 02:49:29'),(7264,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-01T21:50:33-05:00\",\"transaction\":{\"id\":\"tri77y3tkhhlo8kxcd0q\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"79756211\",\"creation_date\":\"2023-08-01T21:48:30-05:00\",\"operation_date\":\"2023-08-01T21:50:22-05:00\",\"description\":\"Pago Mensual academia: jeronimo agudelo aguilar (1020230403)\",\"error_message\":null,\"order_id\":\"94B5BDE6DE888DDF9CDE6748AD2523D1_9VANH23ZIW_1690944505.5989\",\"due_date\":\"2023-08-02T09:48:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"brayan antonio\",\"last_name\":\"agudelo sanchez\",\"email\":\"brayan.agudelo26@gmail.com\",\"phone_number\":\"3113643596\",\"address\":null,\"creation_date\":\"2023-08-01T21:48:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 02:50:33','2023-08-02 02:50:33'),(7265,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-02T02:17:03-06:00\",\"transaction\":{\"id\":\"trnmo2kimny3cb7pwaa7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-31T17:15:01-06:00\",\"operation_date\":\"2023-07-31T17:15:01-06:00\",\"description\":\"Pago Mensual academia: ANTONIO JIMENEZ AGUDELO (1020235872)\",\"error_message\":null,\"order_id\":\"B299AD862B6F12CB57679F0538ECA514_8JVTNWI0LO_1690841693.7566\",\"due_date\":\"2023-08-01T05:15:01-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Agudelo\",\"email\":\"lauraagudelo01@gmail.com\",\"phone_number\":\"3197690545\",\"address\":null,\"creation_date\":\"2023-07-31T17:15:01-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnmo2kimny3cb7pwaa7/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 08:17:04','2023-08-02 08:17:04'),(7266,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-02T02:17:15-06:00\",\"transaction\":{\"id\":\"tri5mofz0pgspenhixuh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-07-31T12:38:09-06:00\",\"operation_date\":\"2023-07-31T12:38:09-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"0336DCBAB05B9D5AD24F4333C7658A0E_E-64C53829-53_1690825087.2008\",\"due_date\":\"2023-08-01T00:38:09-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Gomez\",\"email\":\"gomez.sebastian@gmail.com\",\"phone_number\":\"3163561484\",\"address\":null,\"creation_date\":\"2023-07-31T12:38:09-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tri5mofz0pgspenhixuh/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 08:17:16','2023-08-02 08:17:16'),(7267,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T04:58:15-05:00\",\"transaction\":{\"id\":\"trac4gxgkwy9iv5tjbni\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-02T04:58:15-05:00\",\"operation_date\":\"2023-08-02T04:58:15-05:00\",\"description\":\"Pago Mensual academia: Thomas Ballesteros Jaramillo (1145124312)\",\"error_message\":null,\"order_id\":\"F5C150AFBFBCEF941DEF203E85CF40BC_E9FCZYQGOP_1690970288.2533\",\"amount\":165900.00,\"customer\":{\"name\":\"Ricardo\",\"last_name\":\"Ballesteros\",\"email\":\"rballesteros296@gmail.com\",\"phone_number\":\"3005091099\",\"address\":null,\"creation_date\":\"2023-08-02T04:58:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trac4gxgkwy9iv5tjbni/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-02 09:58:16','2023-08-02 09:58:16'),(7268,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1154\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T05:01:16-05:00\",\"transaction\":{\"id\":\"trac4gxgkwy9iv5tjbni\",\"authorization\":\"050116\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-02T04:58:15-05:00\",\"operation_date\":\"2023-08-02T05:01:16-05:00\",\"description\":\"Pago Mensual academia: Thomas Ballesteros Jaramillo (1145124312)\",\"error_message\":null,\"order_id\":\"F5C150AFBFBCEF941DEF203E85CF40BC_E9FCZYQGOP_1690970288.2533\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX4174\",\"holder_name\":\"RICARDO BALLESTEROS\",\"expiration_year\":\"26\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Ricardo\",\"last_name\":\"Ballesteros\",\"email\":\"rballesteros296@gmail.com\",\"phone_number\":\"3005091099\",\"address\":null,\"creation_date\":\"2023-08-02T04:58:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trac4gxgkwy9iv5tjbni/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-02 10:01:17','2023-08-02 10:01:17'),(7269,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T06:41:01-05:00\",\"transaction\":{\"id\":\"trwgr0qdw8evsb86lojt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T06:40:11-05:00\",\"operation_date\":\"2023-08-02T06:40:11-05:00\",\"description\":\"Pago Mensual academia: Juan José Ruiz Montoya (1020123660)\",\"error_message\":null,\"order_id\":\"687FD5C7E0142DFB2DA70E5083B3C6A7_MDGLNEAP79_1690976408.5507\",\"due_date\":\"2023-08-02T18:40:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan José\",\"last_name\":\"Ruiz Montoya\",\"email\":\"meli.montoya0226@gmail.com\",\"phone_number\":\"3105278051\",\"address\":null,\"creation_date\":\"2023-08-02T06:40:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwgr0qdw8evsb86lojt/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 11:41:02','2023-08-02 11:41:02'),(7270,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T06:42:09-05:00\",\"transaction\":{\"id\":\"trwgr0qdw8evsb86lojt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80004434\",\"creation_date\":\"2023-08-02T06:40:11-05:00\",\"operation_date\":\"2023-08-02T06:42:04-05:00\",\"description\":\"Pago Mensual academia: Juan José Ruiz Montoya (1020123660)\",\"error_message\":null,\"order_id\":\"687FD5C7E0142DFB2DA70E5083B3C6A7_MDGLNEAP79_1690976408.5507\",\"due_date\":\"2023-08-02T18:40:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan José\",\"last_name\":\"Ruiz Montoya\",\"email\":\"meli.montoya0226@gmail.com\",\"phone_number\":\"3105278051\",\"address\":null,\"creation_date\":\"2023-08-02T06:40:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 11:42:10','2023-08-02 11:42:10'),(7271,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T07:19:33-05:00\",\"transaction\":{\"id\":\"trbjpiwqmdjtqebbzbbr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T07:18:58-05:00\",\"operation_date\":\"2023-08-02T07:18:58-05:00\",\"description\":\"Pago Mensual academia: Martin Perez Saldarriaga (1021946968)\",\"error_message\":null,\"order_id\":\"94AEF38441EFA3380A3BED3FAF1F9D5D_EJZ6C5M21N_1690978734.6196\",\"due_date\":\"2023-08-02T19:18:58-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Perez Saldarriaga\",\"email\":\"angela.s15@hotmail.com\",\"phone_number\":\"3215616185\",\"address\":null,\"creation_date\":\"2023-08-02T07:18:58-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbjpiwqmdjtqebbzbbr/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 12:19:34','2023-08-02 12:19:34'),(7272,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T07:21:00-05:00\",\"transaction\":{\"id\":\"trbjpiwqmdjtqebbzbbr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80047083\",\"creation_date\":\"2023-08-02T07:18:58-05:00\",\"operation_date\":\"2023-08-02T07:20:37-05:00\",\"description\":\"Pago Mensual academia: Martin Perez Saldarriaga (1021946968)\",\"error_message\":null,\"order_id\":\"94AEF38441EFA3380A3BED3FAF1F9D5D_EJZ6C5M21N_1690978734.6196\",\"due_date\":\"2023-08-02T19:18:58-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Perez Saldarriaga\",\"email\":\"angela.s15@hotmail.com\",\"phone_number\":\"3215616185\",\"address\":null,\"creation_date\":\"2023-08-02T07:18:58-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 12:21:00','2023-08-02 12:21:00'),(7273,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T07:38:59-05:00\",\"transaction\":{\"id\":\"tr1ffqtplc1ge9l4ocui\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T07:38:09-05:00\",\"operation_date\":\"2023-08-02T07:38:09-05:00\",\"description\":\"Pago Mensual academia: samir restrepo jimenez (1031946292)\",\"error_message\":null,\"order_id\":\"DF83971673DE5C8E71CA1E2645718DAD_64UDJRZSHT_1690979886.5756\",\"due_date\":\"2023-08-02T19:38:09-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"samir\",\"last_name\":\"restrepo jimenez\",\"email\":\"elizabethjimenezzuluaga@gmail.com\",\"phone_number\":\"3045928569\",\"address\":null,\"creation_date\":\"2023-08-02T07:38:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1ffqtplc1ge9l4ocui/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 12:39:00','2023-08-02 12:39:00'),(7274,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T06:42:13-06:00\",\"transaction\":{\"id\":\"tr1ffqtplc1ge9l4ocui\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80075508\",\"creation_date\":\"2023-08-02T07:38:09-06:00\",\"operation_date\":\"2023-08-02T07:39:48-06:00\",\"description\":\"Pago Mensual academia: samir restrepo jimenez (1031946292)\",\"error_message\":null,\"order_id\":\"DF83971673DE5C8E71CA1E2645718DAD_64UDJRZSHT_1690979886.5756\",\"due_date\":\"2023-08-02T19:38:09-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"samir\",\"last_name\":\"restrepo jimenez\",\"email\":\"elizabethjimenezzuluaga@gmail.com\",\"phone_number\":\"3045928569\",\"address\":null,\"creation_date\":\"2023-08-02T07:38:09-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 12:42:13','2023-08-02 12:42:13'),(7275,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T08:19:02-05:00\",\"transaction\":{\"id\":\"tre9ztzl3b56kns7prvn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T08:18:03-05:00\",\"operation_date\":\"2023-08-02T08:18:03-05:00\",\"description\":\"Pago Mensual academia: Martin Ospina Velez (1021933640)\",\"error_message\":null,\"order_id\":\"0D352B4D3A317E3EAE221199FDB49651_GZRQVHWDTJ_1690982280.282\",\"due_date\":\"2023-08-02T20:18:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"ospina velez\",\"email\":\"luiscarlosospinasierra@hotmail.com\",\"phone_number\":\"3163197979\",\"address\":null,\"creation_date\":\"2023-08-02T08:18:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre9ztzl3b56kns7prvn/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 13:19:03','2023-08-02 13:19:03'),(7276,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T08:19:54-05:00\",\"transaction\":{\"id\":\"tre9ztzl3b56kns7prvn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80149032\",\"creation_date\":\"2023-08-02T08:18:03-05:00\",\"operation_date\":\"2023-08-02T08:19:47-05:00\",\"description\":\"Pago Mensual academia: Martin Ospina Velez (1021933640)\",\"error_message\":null,\"order_id\":\"0D352B4D3A317E3EAE221199FDB49651_GZRQVHWDTJ_1690982280.282\",\"due_date\":\"2023-08-02T20:18:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"ospina velez\",\"email\":\"luiscarlosospinasierra@hotmail.com\",\"phone_number\":\"3163197979\",\"address\":null,\"creation_date\":\"2023-08-02T08:18:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 13:19:54','2023-08-02 13:19:54'),(7277,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T08:28:03-05:00\",\"transaction\":{\"id\":\"traijieziozkeavgjau4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T08:27:24-05:00\",\"operation_date\":\"2023-08-02T08:27:24-05:00\",\"description\":\"Pago Mensual academia: Santiago Marquez Millán (1239489330)\",\"error_message\":null,\"order_id\":\"907EDB0AA6986220DBFFB79A788596EE_EPO8WB5102_1690982836.8949\",\"due_date\":\"2023-08-02T20:27:24-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Alicia\",\"last_name\":\"Millán Villanueva\",\"email\":\"amillanv@gmail.com\",\"phone_number\":\"3016685074\",\"address\":null,\"creation_date\":\"2023-08-02T08:27:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traijieziozkeavgjau4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 13:28:03','2023-08-02 13:28:03'),(7278,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T08:28:56-05:00\",\"transaction\":{\"id\":\"traijieziozkeavgjau4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80169724\",\"creation_date\":\"2023-08-02T08:27:24-05:00\",\"operation_date\":\"2023-08-02T08:28:52-05:00\",\"description\":\"Pago Mensual academia: Santiago Marquez Millán (1239489330)\",\"error_message\":null,\"order_id\":\"907EDB0AA6986220DBFFB79A788596EE_EPO8WB5102_1690982836.8949\",\"due_date\":\"2023-08-02T20:27:24-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Alicia\",\"last_name\":\"Millán Villanueva\",\"email\":\"amillanv@gmail.com\",\"phone_number\":\"3016685074\",\"address\":null,\"creation_date\":\"2023-08-02T08:27:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 13:28:57','2023-08-02 13:28:57'),(7279,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  953\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T09:12:31-05:00\",\"transaction\":{\"id\":\"truhq49pc5icvassg489\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T09:11:02-05:00\",\"operation_date\":\"2023-08-02T09:11:02-05:00\",\"description\":\"Pago Mensual academia: Dylan Alexander Grajales Castañeda (1032015427)\",\"error_message\":null,\"order_id\":\"6DFE08EDA761BD321F8A9B239F6F4EC3_DKFW7E4AN3_1690985460.1358\",\"due_date\":\"2023-08-02T21:11:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dylan Alexander\",\"last_name\":\"Grajales Castañeda\",\"email\":\"yesseniacas06@gmail.com\",\"phone_number\":\"3023306452\",\"address\":null,\"creation_date\":\"2023-08-02T09:11:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truhq49pc5icvassg489/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 14:12:32','2023-08-02 14:12:32'),(7280,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  835\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T08:15:17-06:00\",\"transaction\":{\"id\":\"truhq49pc5icvassg489\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80282325\",\"creation_date\":\"2023-08-02T09:11:02-06:00\",\"operation_date\":\"2023-08-02T09:14:00-06:00\",\"description\":\"Pago Mensual academia: Dylan Alexander Grajales Castañeda (1032015427)\",\"error_message\":null,\"order_id\":\"6DFE08EDA761BD321F8A9B239F6F4EC3_DKFW7E4AN3_1690985460.1358\",\"due_date\":\"2023-08-02T21:11:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dylan Alexander\",\"last_name\":\"Grajales Castañeda\",\"email\":\"yesseniacas06@gmail.com\",\"phone_number\":\"3023306452\",\"address\":null,\"creation_date\":\"2023-08-02T09:11:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 14:15:18','2023-08-02 14:15:18'),(7281,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T09:20:15-05:00\",\"transaction\":{\"id\":\"tr4mlujjw7nnxknxzkm1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T09:18:41-05:00\",\"operation_date\":\"2023-08-02T09:18:41-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Garcia Vargas (1027664631)\",\"error_message\":null,\"order_id\":\"AAC61539FD1FB209B44B9F9D0D8D28AC_034AFKOPN5_1690985908.4292\",\"due_date\":\"2023-08-02T21:18:41-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Vargas Rivillas\",\"email\":\"vargas.ana@gmail.com\",\"phone_number\":\"3108741568\",\"address\":null,\"creation_date\":\"2023-08-02T09:18:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4mlujjw7nnxknxzkm1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 14:20:15','2023-08-02 14:20:15'),(7282,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T08:21:20-06:00\",\"transaction\":{\"id\":\"tr4mlujjw7nnxknxzkm1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80303607\",\"creation_date\":\"2023-08-02T09:18:41-06:00\",\"operation_date\":\"2023-08-02T09:21:19-06:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Garcia Vargas (1027664631)\",\"error_message\":null,\"order_id\":\"AAC61539FD1FB209B44B9F9D0D8D28AC_034AFKOPN5_1690985908.4292\",\"due_date\":\"2023-08-02T21:18:41-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Vargas Rivillas\",\"email\":\"vargas.ana@gmail.com\",\"phone_number\":\"3108741568\",\"address\":null,\"creation_date\":\"2023-08-02T09:18:41-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 14:21:20','2023-08-02 14:21:20'),(7283,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  881\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T09:32:38-05:00\",\"transaction\":{\"id\":\"trjqjndwdb6ybf7lvhff\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-02T09:32:38-05:00\",\"operation_date\":\"2023-08-02T09:32:38-05:00\",\"description\":\"Pago Mensual academia: Joaquin Palacios Calle (1033265847)\",\"error_message\":null,\"order_id\":\"3837A451CD0ABC5CE4069304C5442C87_FQG9RHLP87_1690986755.0371\",\"amount\":132720.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Calle\",\"email\":\"marcal1384@hotmail.com\",\"phone_number\":\"3012635012\",\"address\":null,\"creation_date\":\"2023-08-02T09:32:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjqjndwdb6ybf7lvhff/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 14:32:39','2023-08-02 14:32:39'),(7284,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1203\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T09:33:47-05:00\",\"transaction\":{\"id\":\"trjqjndwdb6ybf7lvhff\",\"authorization\":\"093355\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-08-02T09:32:38-05:00\",\"operation_date\":\"2023-08-02T09:33:46-05:00\",\"description\":\"Pago Mensual academia: Joaquin Palacios Calle (1033265847)\",\"error_message\":null,\"order_id\":\"3837A451CD0ABC5CE4069304C5442C87_FQG9RHLP87_1690986755.0371\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"428389XXXXXX4170\",\"holder_name\":\"Diana Calle\",\"expiration_year\":\"27\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":132720.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Calle\",\"email\":\"marcal1384@hotmail.com\",\"phone_number\":\"3012635012\",\"address\":null,\"creation_date\":\"2023-08-02T09:32:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjqjndwdb6ybf7lvhff/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 14:33:48','2023-08-02 14:33:48'),(7285,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T09:47:39-05:00\",\"transaction\":{\"id\":\"trwkwqz5ihfa7jw5gbdv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T09:46:36-05:00\",\"operation_date\":\"2023-08-02T09:46:36-05:00\",\"description\":\"Pago Mensual academia: Antonio Orozco Arcila (1036460970)\",\"error_message\":null,\"order_id\":\"040A99F23E8960763E680041C601ACAB_QUFBPMS3OT_1690987593.5547\",\"due_date\":\"2023-08-02T21:46:36-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jorge Eliecer\",\"last_name\":\"Orozco Valencia\",\"email\":\"jorgeorozcovalencia@gmail.com\",\"phone_number\":\"3117603631\",\"address\":null,\"creation_date\":\"2023-08-02T09:46:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwkwqz5ihfa7jw5gbdv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 14:47:40','2023-08-02 14:47:40'),(7286,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T08:54:22-06:00\",\"transaction\":{\"id\":\"trwkwqz5ihfa7jw5gbdv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80381736\",\"creation_date\":\"2023-08-02T09:46:36-06:00\",\"operation_date\":\"2023-08-02T09:51:20-06:00\",\"description\":\"Pago Mensual academia: Antonio Orozco Arcila (1036460970)\",\"error_message\":null,\"order_id\":\"040A99F23E8960763E680041C601ACAB_QUFBPMS3OT_1690987593.5547\",\"due_date\":\"2023-08-02T21:46:36-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jorge Eliecer\",\"last_name\":\"Orozco Valencia\",\"email\":\"jorgeorozcovalencia@gmail.com\",\"phone_number\":\"3117603631\",\"address\":null,\"creation_date\":\"2023-08-02T09:46:36-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 14:54:23','2023-08-02 14:54:23'),(7287,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T11:15:04-05:00\",\"transaction\":{\"id\":\"tri4jarhgj3zzisxf0qw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T11:13:55-05:00\",\"operation_date\":\"2023-08-02T11:13:55-05:00\",\"description\":\"Pago Mensual academia: Mario Jose Arango Cedeño (1035013666)\",\"error_message\":null,\"order_id\":\"85AE750AD1DBDC5C2703BCFE97E77152_5QOV2IAGRY_1690992827.5973\",\"due_date\":\"2023-08-02T23:13:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Arango Rueda\",\"email\":\"arangorueda77@gmail.com\",\"phone_number\":\"3217465380\",\"address\":null,\"creation_date\":\"2023-08-02T11:13:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tri4jarhgj3zzisxf0qw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 16:15:05','2023-08-02 16:15:05'),(7288,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T11:17:34-05:00\",\"transaction\":{\"id\":\"tri4jarhgj3zzisxf0qw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80648227\",\"creation_date\":\"2023-08-02T11:13:55-05:00\",\"operation_date\":\"2023-08-02T11:16:09-05:00\",\"description\":\"Pago Mensual academia: Mario Jose Arango Cedeño (1035013666)\",\"error_message\":null,\"order_id\":\"85AE750AD1DBDC5C2703BCFE97E77152_5QOV2IAGRY_1690992827.5973\",\"due_date\":\"2023-08-02T23:13:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Arango Rueda\",\"email\":\"arangorueda77@gmail.com\",\"phone_number\":\"3217465380\",\"address\":null,\"creation_date\":\"2023-08-02T11:13:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 16:17:35','2023-08-02 16:17:35'),(7289,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T12:19:14-05:00\",\"transaction\":{\"id\":\"tr7xrzqm0hjwrp6fmxrh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T12:18:09-05:00\",\"operation_date\":\"2023-08-02T12:18:09-05:00\",\"description\":\"Pago Inscripción academia: Martin Muñoz Gonzalez (1021945789)\",\"error_message\":null,\"order_id\":\"C12706A7C6E8D6476C3D2B6AE0042A82_H0QRAK7CZ1_1690996686.1075\",\"due_date\":\"2023-08-03T00:18:09-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Muñoz Gonzalez\",\"email\":\"ngonzalezfranco@gmail.com\",\"phone_number\":\"3113038003\",\"address\":null,\"creation_date\":\"2023-08-02T12:18:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7xrzqm0hjwrp6fmxrh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 17:19:15','2023-08-02 17:19:15'),(7290,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T12:21:18-05:00\",\"transaction\":{\"id\":\"tr7xrzqm0hjwrp6fmxrh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80839318\",\"creation_date\":\"2023-08-02T12:18:09-05:00\",\"operation_date\":\"2023-08-02T12:20:29-05:00\",\"description\":\"Pago Inscripción academia: Martin Muñoz Gonzalez (1021945789)\",\"error_message\":null,\"order_id\":\"C12706A7C6E8D6476C3D2B6AE0042A82_H0QRAK7CZ1_1690996686.1075\",\"due_date\":\"2023-08-03T00:18:09-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Muñoz Gonzalez\",\"email\":\"ngonzalezfranco@gmail.com\",\"phone_number\":\"3113038003\",\"address\":null,\"creation_date\":\"2023-08-02T12:18:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 17:21:19','2023-08-02 17:21:19'),(7291,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T12:25:05-05:00\",\"transaction\":{\"id\":\"trwmo1eskn4ya54f5ynh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T12:24:18-05:00\",\"operation_date\":\"2023-08-02T12:24:18-05:00\",\"description\":\"Pago Mensual academia: Martin Muñoz Gonzalez (1021945789)\",\"error_message\":null,\"order_id\":\"C3D377D10B13F8B39BF1218A60FE77B1_SDCULB5A46_1690997055.691\",\"due_date\":\"2023-08-03T00:24:18-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Muñoz Gonzalez\",\"email\":\"ngonzalezfranco@gmail.com\",\"phone_number\":\"3113038003\",\"address\":null,\"creation_date\":\"2023-08-02T12:24:17-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwmo1eskn4ya54f5ynh/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 17:25:06','2023-08-02 17:25:06'),(7292,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T12:26:18-05:00\",\"transaction\":{\"id\":\"trwmo1eskn4ya54f5ynh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80855286\",\"creation_date\":\"2023-08-02T12:24:18-05:00\",\"operation_date\":\"2023-08-02T12:25:53-05:00\",\"description\":\"Pago Mensual academia: Martin Muñoz Gonzalez (1021945789)\",\"error_message\":null,\"order_id\":\"C3D377D10B13F8B39BF1218A60FE77B1_SDCULB5A46_1690997055.691\",\"due_date\":\"2023-08-03T00:24:18-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Muñoz Gonzalez\",\"email\":\"ngonzalezfranco@gmail.com\",\"phone_number\":\"3113038003\",\"address\":null,\"creation_date\":\"2023-08-02T12:24:17-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 17:26:19','2023-08-02 17:26:19'),(7293,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T12:39:44-05:00\",\"transaction\":{\"id\":\"trvd2hnozxtchc8miulb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-02T12:39:44-05:00\",\"operation_date\":\"2023-08-02T12:39:44-05:00\",\"description\":\"Pago Inscripción academia: Isaias Pineda Perez (1038876223)\",\"error_message\":null,\"order_id\":\"12E086066892A311B752673A28583D3F_4JRSITQ0UA_1690997979.0318\",\"amount\":286000.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Pineda Adarve\",\"email\":\"juandavid_023@hotmail.com\",\"phone_number\":\"3187676787\",\"address\":null,\"creation_date\":\"2023-08-02T12:39:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvd2hnozxtchc8miulb/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 17:39:45','2023-08-02 17:39:45'),(7294,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1155\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T12:42:26-05:00\",\"transaction\":{\"id\":\"trvd2hnozxtchc8miulb\",\"authorization\":\"R01994\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-02T12:39:44-05:00\",\"operation_date\":\"2023-08-02T12:42:25-05:00\",\"description\":\"Pago Inscripción academia: Isaias Pineda Perez (1038876223)\",\"error_message\":null,\"order_id\":\"12E086066892A311B752673A28583D3F_4JRSITQ0UA_1690997979.0318\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX3113\",\"holder_name\":\"Juan David Pineda\",\"expiration_year\":\"26\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":286000.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Pineda Adarve\",\"email\":\"juandavid_023@hotmail.com\",\"phone_number\":\"3187676787\",\"address\":null,\"creation_date\":\"2023-08-02T12:39:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvd2hnozxtchc8miulb/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 17:42:27','2023-08-02 17:42:27'),(7295,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T12:43:30-05:00\",\"transaction\":{\"id\":\"triz7nnfnlv5uxzleo3s\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T12:42:46-05:00\",\"operation_date\":\"2023-08-02T12:42:46-05:00\",\"description\":\"Pago Mensual academia: Cristian Andres Cruz Salinas (1025664599)\",\"error_message\":null,\"order_id\":\"B6D67A24906E8A8541291882F81D31CA_OG9NTEM2V7_1690998163.7511\",\"due_date\":\"2023-08-03T00:42:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cristian Andres\",\"last_name\":\"Cruz Salinas\",\"email\":\"siendouno_@hotmail.com\",\"phone_number\":\"3146167489\",\"address\":null,\"creation_date\":\"2023-08-02T12:42:46-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triz7nnfnlv5uxzleo3s/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 17:43:31','2023-08-02 17:43:31'),(7296,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T12:43:43-05:00\",\"transaction\":{\"id\":\"trorgijsz7tnhrvvljan\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-02T12:43:43-05:00\",\"operation_date\":\"2023-08-02T12:43:43-05:00\",\"description\":\"Pago Mensual academia: Isaias Pineda Perez (1038876223)\",\"error_message\":null,\"order_id\":\"C5658C711BA9170700FC7D3EE3F63E40_HKMXVZQESY_1690998217.4559\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Pineda Adarve\",\"email\":\"juandavid_023@hotmail.com\",\"phone_number\":\"3187676787\",\"address\":null,\"creation_date\":\"2023-08-02T12:43:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trorgijsz7tnhrvvljan/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-02 17:43:44','2023-08-02 17:43:44'),(7297,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1149\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T12:44:23-05:00\",\"transaction\":{\"id\":\"trorgijsz7tnhrvvljan\",\"authorization\":\"R02960\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-02T12:43:43-05:00\",\"operation_date\":\"2023-08-02T12:44:22-05:00\",\"description\":\"Pago Mensual academia: Isaias Pineda Perez (1038876223)\",\"error_message\":null,\"order_id\":\"C5658C711BA9170700FC7D3EE3F63E40_HKMXVZQESY_1690998217.4559\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX3113\",\"holder_name\":\"Juan David Pineda\",\"expiration_year\":\"26\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":95000.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Pineda Adarve\",\"email\":\"juandavid_023@hotmail.com\",\"phone_number\":\"3187676787\",\"address\":null,\"creation_date\":\"2023-08-02T12:43:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trorgijsz7tnhrvvljan/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 17:44:24','2023-08-02 17:44:24'),(7298,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T12:44:33-05:00\",\"transaction\":{\"id\":\"triz7nnfnlv5uxzleo3s\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"80904611\",\"creation_date\":\"2023-08-02T12:42:46-05:00\",\"operation_date\":\"2023-08-02T12:44:25-05:00\",\"description\":\"Pago Mensual academia: Cristian Andres Cruz Salinas (1025664599)\",\"error_message\":null,\"order_id\":\"B6D67A24906E8A8541291882F81D31CA_OG9NTEM2V7_1690998163.7511\",\"due_date\":\"2023-08-03T00:42:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cristian Andres\",\"last_name\":\"Cruz Salinas\",\"email\":\"siendouno_@hotmail.com\",\"phone_number\":\"3146167489\",\"address\":null,\"creation_date\":\"2023-08-02T12:42:46-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 17:44:34','2023-08-02 17:44:34'),(7299,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T13:39:07-05:00\",\"transaction\":{\"id\":\"trgmb5mfonyzg3d9bpoy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-02T13:39:07-05:00\",\"operation_date\":\"2023-08-02T13:39:07-05:00\",\"description\":\"Pago Mensual academia: Juan Esteban Rios Vargas (1041534228)\",\"error_message\":null,\"order_id\":\"F87522788A2BE2D171666752F97DDEBB_2BNX17CKGJ_1691001541.9339\",\"amount\":165900.00,\"customer\":{\"name\":\"Orfidia Maria\",\"last_name\":\"Vargas Vargas\",\"email\":\"orfidiavargasvargas@gmail.com\",\"phone_number\":\"3114169625\",\"address\":null,\"creation_date\":\"2023-08-02T13:39:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgmb5mfonyzg3d9bpoy/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 18:39:08','2023-08-02 18:39:08'),(7300,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1164\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T13:41:01-05:00\",\"transaction\":{\"id\":\"trgmb5mfonyzg3d9bpoy\",\"authorization\":\"134100\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-02T13:39:07-05:00\",\"operation_date\":\"2023-08-02T13:41:00-05:00\",\"description\":\"Pago Mensual academia: Juan Esteban Rios Vargas (1041534228)\",\"error_message\":null,\"order_id\":\"F87522788A2BE2D171666752F97DDEBB_2BNX17CKGJ_1691001541.9339\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5782\",\"holder_name\":\"Orfidia Vargas Vargas\",\"expiration_year\":\"26\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Orfidia Maria\",\"last_name\":\"Vargas Vargas\",\"email\":\"orfidiavargasvargas@gmail.com\",\"phone_number\":\"3114169625\",\"address\":null,\"creation_date\":\"2023-08-02T13:39:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgmb5mfonyzg3d9bpoy/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-02 18:41:01','2023-08-02 18:41:01'),(7301,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  909\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T14:01:34-05:00\",\"transaction\":{\"id\":\"trcant66h9zctptpobcs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-02T14:01:33-05:00\",\"operation_date\":\"2023-08-02T14:01:33-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Hidalgo Londoño (1023639863)\",\"error_message\":null,\"order_id\":\"544A4F59F691574154A60B8539EBF914_AM5N4THSRY_1691002890.4352\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres Felipe\",\"last_name\":\"Hidalgo Londoño\",\"email\":\"luisachica.12@gmail.com\",\"phone_number\":\"3194402621\",\"address\":null,\"creation_date\":\"2023-08-02T14:01:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcant66h9zctptpobcs/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 19:01:34','2023-08-02 19:01:34'),(7302,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1160\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T14:02:50-05:00\",\"transaction\":{\"id\":\"trcant66h9zctptpobcs\",\"authorization\":\"140249\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-02T14:01:33-05:00\",\"operation_date\":\"2023-08-02T14:02:49-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Hidalgo Londoño (1023639863)\",\"error_message\":null,\"order_id\":\"544A4F59F691574154A60B8539EBF914_AM5N4THSRY_1691002890.4352\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1748\",\"holder_name\":\"Byron Bastidas\",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Andres Felipe\",\"last_name\":\"Hidalgo Londoño\",\"email\":\"luisachica.12@gmail.com\",\"phone_number\":\"3194402621\",\"address\":null,\"creation_date\":\"2023-08-02T14:01:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcant66h9zctptpobcs/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-02 19:02:50','2023-08-02 19:02:50'),(7303,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T14:12:39-05:00\",\"transaction\":{\"id\":\"trfrjxln6tqjlixw7dmb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T14:11:30-05:00\",\"operation_date\":\"2023-08-02T14:11:30-05:00\",\"description\":\"Pago Mensual academia: Thiago Hinestroza Rengifo (1017939994)\",\"error_message\":null,\"order_id\":\"528AECDF9CF67E516DFD5EAA675CCFD9_IGMNVR6XZW_1691003485.6784\",\"due_date\":\"2023-08-03T02:11:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dorian\",\"last_name\":\"Hinestroza Mosquera\",\"email\":\"afrito@gmail.com\",\"phone_number\":\"3147917163\",\"address\":null,\"creation_date\":\"2023-08-02T14:11:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfrjxln6tqjlixw7dmb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 19:12:40','2023-08-02 19:12:40'),(7304,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T14:13:45-05:00\",\"transaction\":{\"id\":\"trfrjxln6tqjlixw7dmb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"81136184\",\"creation_date\":\"2023-08-02T14:11:30-05:00\",\"operation_date\":\"2023-08-02T14:13:27-05:00\",\"description\":\"Pago Mensual academia: Thiago Hinestroza Rengifo (1017939994)\",\"error_message\":null,\"order_id\":\"528AECDF9CF67E516DFD5EAA675CCFD9_IGMNVR6XZW_1691003485.6784\",\"due_date\":\"2023-08-03T02:11:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dorian\",\"last_name\":\"Hinestroza Mosquera\",\"email\":\"afrito@gmail.com\",\"phone_number\":\"3147917163\",\"address\":null,\"creation_date\":\"2023-08-02T14:11:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 19:13:45','2023-08-02 19:13:45'),(7305,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T14:26:55-05:00\",\"transaction\":{\"id\":\"trkis6lssajld1toliw9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T14:24:50-05:00\",\"operation_date\":\"2023-08-02T14:24:50-05:00\",\"description\":\"Pago Mensual academia: samuel aristizabal patiño (1035015540)\",\"error_message\":null,\"order_id\":\"AE3539867AAEEC609A4260C6FEB725F4_3FUE65JRYC_1691004283.5724\",\"due_date\":\"2023-08-03T02:24:50-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"fredy alexander\",\"last_name\":\"aristizabal martinez\",\"email\":\"alexoceantex@gmail.com\",\"phone_number\":\"3148940916\",\"address\":null,\"creation_date\":\"2023-08-02T14:24:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkis6lssajld1toliw9/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 19:26:56','2023-08-02 19:26:56'),(7306,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T14:28:17-05:00\",\"transaction\":{\"id\":\"trkis6lssajld1toliw9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"81176400\",\"creation_date\":\"2023-08-02T14:24:50-05:00\",\"operation_date\":\"2023-08-02T14:28:04-05:00\",\"description\":\"Pago Mensual academia: samuel aristizabal patiño (1035015540)\",\"error_message\":null,\"order_id\":\"AE3539867AAEEC609A4260C6FEB725F4_3FUE65JRYC_1691004283.5724\",\"due_date\":\"2023-08-03T02:24:50-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"fredy alexander\",\"last_name\":\"aristizabal martinez\",\"email\":\"alexoceantex@gmail.com\",\"phone_number\":\"3148940916\",\"address\":null,\"creation_date\":\"2023-08-02T14:24:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 19:28:17','2023-08-02 19:28:17'),(7307,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T14:46:05-05:00\",\"transaction\":{\"id\":\"trpxz6aftofceutyratq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-02T14:46:05-05:00\",\"operation_date\":\"2023-08-02T14:46:05-05:00\",\"description\":\"Pago Mensual academia: Jacobo Giraldo Avendaño (1025902562)\",\"error_message\":null,\"order_id\":\"D15426B9C324676610FBB01360473ED8_CENIWYUPOJ_1691005558.9346\",\"amount\":165900.00,\"customer\":{\"name\":\"katherin\",\"last_name\":\"Avendaño Vasquez\",\"email\":\"katherinavendanova@gmail.com\",\"phone_number\":\"3012176889\",\"address\":null,\"creation_date\":\"2023-08-02T14:46:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpxz6aftofceutyratq/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-02 19:46:06','2023-08-02 19:46:06'),(7308,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1155\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T14:47:31-05:00\",\"transaction\":{\"id\":\"trpxz6aftofceutyratq\",\"authorization\":\"097326\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-02T14:46:05-05:00\",\"operation_date\":\"2023-08-02T14:47:29-05:00\",\"description\":\"Pago Mensual academia: Jacobo Giraldo Avendaño (1025902562)\",\"error_message\":null,\"order_id\":\"D15426B9C324676610FBB01360473ED8_CENIWYUPOJ_1691005558.9346\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"409355XXXXXX5345\",\"holder_name\":\"Katherin avendano\",\"expiration_year\":\"27\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOLOMBIA -NEQUI\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"katherin\",\"last_name\":\"Avendaño Vasquez\",\"email\":\"katherinavendanova@gmail.com\",\"phone_number\":\"3012176889\",\"address\":null,\"creation_date\":\"2023-08-02T14:46:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpxz6aftofceutyratq/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-02 19:47:32','2023-08-02 19:47:32'),(7309,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T16:46:23-05:00\",\"transaction\":{\"id\":\"trtf9kpg8ox5ibydeava\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-02T16:46:23-05:00\",\"operation_date\":\"2023-08-02T16:46:23-05:00\",\"description\":\"Pago Mensual academia: Alejandro Alonso Vargas (1023646217)\",\"error_message\":null,\"order_id\":\"A64BD53139F71961C5C31A9AF03D775E_ZXL3E5VRK1_1691012778.5042\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Alonso\",\"email\":\"alexanderalonso1789@gmail.com\",\"phone_number\":\"3136451651\",\"address\":null,\"creation_date\":\"2023-08-02T16:46:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtf9kpg8ox5ibydeava/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-02 21:46:24','2023-08-02 21:46:24'),(7310,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1143\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T16:47:42-05:00\",\"transaction\":{\"id\":\"trtf9kpg8ox5ibydeava\",\"authorization\":\"309002\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-02T16:46:23-05:00\",\"operation_date\":\"2023-08-02T16:47:41-05:00\",\"description\":\"Pago Mensual academia: Alejandro Alonso Vargas (1023646217)\",\"error_message\":null,\"order_id\":\"A64BD53139F71961C5C31A9AF03D775E_ZXL3E5VRK1_1691012778.5042\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"411054XXXXXX6082\",\"holder_name\":\"Alexander Alonso\",\"expiration_year\":\"26\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Alonso\",\"email\":\"alexanderalonso1789@gmail.com\",\"phone_number\":\"3136451651\",\"address\":null,\"creation_date\":\"2023-08-02T16:46:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtf9kpg8ox5ibydeava/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 21:47:43','2023-08-02 21:47:43'),(7311,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T16:48:41-05:00\",\"transaction\":{\"id\":\"trtiwjt7dh8mhgueuljy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-02T16:48:41-05:00\",\"operation_date\":\"2023-08-02T16:48:41-05:00\",\"description\":\"Pago Mensual academia: Alejandro Alonso Vargas (1023646217)\",\"error_message\":null,\"order_id\":\"032DD17B77FAB7D51A476C5FF2B5659C_L4F5Z8TWG1_1691012918.5639\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Alonso\",\"email\":\"alexanderalonso1789@gmail.com\",\"phone_number\":\"3136451651\",\"address\":null,\"creation_date\":\"2023-08-02T16:48:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtiwjt7dh8mhgueuljy/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 21:48:42','2023-08-02 21:48:42'),(7312,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1155\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T16:50:53-05:00\",\"transaction\":{\"id\":\"trtiwjt7dh8mhgueuljy\",\"authorization\":\"310577\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-02T16:48:41-05:00\",\"operation_date\":\"2023-08-02T16:50:52-05:00\",\"description\":\"Pago Mensual academia: Alejandro Alonso Vargas (1023646217)\",\"error_message\":null,\"order_id\":\"032DD17B77FAB7D51A476C5FF2B5659C_L4F5Z8TWG1_1691012918.5639\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"411054XXXXXX6082\",\"holder_name\":\"Alexander Alonso Encarnacion\",\"expiration_year\":\"26\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Alonso\",\"email\":\"alexanderalonso1789@gmail.com\",\"phone_number\":\"3136451651\",\"address\":null,\"creation_date\":\"2023-08-02T16:48:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtiwjt7dh8mhgueuljy/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 21:50:54','2023-08-02 21:50:54'),(7313,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T17:22:39-05:00\",\"transaction\":{\"id\":\"tr3qvmegg4tltvoyjlbr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T17:21:23-05:00\",\"operation_date\":\"2023-08-02T17:21:23-05:00\",\"description\":\"Pago Mensual academia: sara López betancur (1020315986)\",\"error_message\":null,\"order_id\":\"38811C5285E34E2E3319AB7D9F2CFA5B_GZIPX9FU2E_1691014810.8118\",\"due_date\":\"2023-08-03T05:21:23-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Angela María\",\"last_name\":\"betancur ospina\",\"email\":\"angelabetancur.7@hotmail.com\",\"phone_number\":\"3053911750\",\"address\":null,\"creation_date\":\"2023-08-02T17:21:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3qvmegg4tltvoyjlbr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 22:22:40','2023-08-02 22:22:40'),(7314,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T17:22:51-05:00\",\"transaction\":{\"id\":\"trydfqg58rmbyvjxh7ed\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T17:20:39-05:00\",\"operation_date\":\"2023-08-02T17:20:39-05:00\",\"description\":\"Pago Mensual academia: ISAAC QUINCHIA MEJIA (1036457456)\",\"error_message\":null,\"order_id\":\"EF72D53990BC4805684C9B61FA64A102_0C9BG1UJOL_1691014836.1595\",\"due_date\":\"2023-08-03T05:20:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ISABEL CRISTINA\",\"last_name\":\"MEJIA\",\"email\":\"cristinemejia@hotmail.com\",\"phone_number\":\"3053765353\",\"address\":null,\"creation_date\":\"2023-08-02T17:20:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trydfqg58rmbyvjxh7ed/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 22:22:52','2023-08-02 22:22:52'),(7315,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T17:23:39-05:00\",\"transaction\":{\"id\":\"trzyz7mwmgiqhqnzwvc9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T17:22:17-05:00\",\"operation_date\":\"2023-08-02T17:22:17-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Gómez Padilla (1020314565)\",\"error_message\":null,\"order_id\":\"88E1CE84F9FEEF5A08D0DF0334C53468_NUJX8GTZKW_1691014933.6601\",\"due_date\":\"2023-08-03T05:22:17-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Gomez Padilla\",\"email\":\"lilianapad22@gmail.com\",\"phone_number\":\"3126163463\",\"address\":null,\"creation_date\":\"2023-08-02T17:22:17-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzyz7mwmgiqhqnzwvc9/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 22:23:39','2023-08-02 22:23:39'),(7316,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T17:24:08-05:00\",\"transaction\":{\"id\":\"tr3qvmegg4tltvoyjlbr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"81661740\",\"creation_date\":\"2023-08-02T17:21:23-05:00\",\"operation_date\":\"2023-08-02T17:24:01-05:00\",\"description\":\"Pago Mensual academia: sara López betancur (1020315986)\",\"error_message\":null,\"order_id\":\"38811C5285E34E2E3319AB7D9F2CFA5B_GZIPX9FU2E_1691014810.8118\",\"due_date\":\"2023-08-03T05:21:23-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Angela María\",\"last_name\":\"betancur ospina\",\"email\":\"angelabetancur.7@hotmail.com\",\"phone_number\":\"3053911750\",\"address\":null,\"creation_date\":\"2023-08-02T17:21:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 22:24:09','2023-08-02 22:24:09'),(7317,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T17:24:43-05:00\",\"transaction\":{\"id\":\"trydfqg58rmbyvjxh7ed\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"81662190\",\"creation_date\":\"2023-08-02T17:20:39-05:00\",\"operation_date\":\"2023-08-02T17:24:32-05:00\",\"description\":\"Pago Mensual academia: ISAAC QUINCHIA MEJIA (1036457456)\",\"error_message\":null,\"order_id\":\"EF72D53990BC4805684C9B61FA64A102_0C9BG1UJOL_1691014836.1595\",\"due_date\":\"2023-08-03T05:20:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ISABEL CRISTINA\",\"last_name\":\"MEJIA\",\"email\":\"cristinemejia@hotmail.com\",\"phone_number\":\"3053765353\",\"address\":null,\"creation_date\":\"2023-08-02T17:20:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 22:24:44','2023-08-02 22:24:44'),(7318,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T17:25:05-05:00\",\"transaction\":{\"id\":\"trzyz7mwmgiqhqnzwvc9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"81663982\",\"creation_date\":\"2023-08-02T17:22:17-05:00\",\"operation_date\":\"2023-08-02T17:24:46-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Gómez Padilla (1020314565)\",\"error_message\":null,\"order_id\":\"88E1CE84F9FEEF5A08D0DF0334C53468_NUJX8GTZKW_1691014933.6601\",\"due_date\":\"2023-08-03T05:22:17-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Gomez Padilla\",\"email\":\"lilianapad22@gmail.com\",\"phone_number\":\"3126163463\",\"address\":null,\"creation_date\":\"2023-08-02T17:22:17-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 22:25:06','2023-08-02 22:25:06'),(7319,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T18:24:49-05:00\",\"transaction\":{\"id\":\"tre5p5raia1tvqbo6gus\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-02T18:24:49-05:00\",\"operation_date\":\"2023-08-02T18:24:49-05:00\",\"description\":\"Pago Mensual academia: tomas iregui muñoz (1035006310)\",\"error_message\":null,\"order_id\":\"3F4366AEB9C157CF9A30C90693EAFC55_SLIJF80X4T_1691018684.7837\",\"amount\":165900.00,\"customer\":{\"name\":\"LINA MARIA\",\"last_name\":\"MUÑOZ CAICEDO\",\"email\":\"linamunoz576@hotmail.com\",\"phone_number\":\"3122474469\",\"address\":null,\"creation_date\":\"2023-08-02T18:24:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre5p5raia1tvqbo6gus/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 23:24:50','2023-08-02 23:24:50'),(7320,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1222\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T18:26:04-05:00\",\"transaction\":{\"id\":\"tre5p5raia1tvqbo6gus\",\"authorization\":\"182611\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":3,\"conciliated\":true,\"creation_date\":\"2023-08-02T18:24:49-05:00\",\"operation_date\":\"2023-08-02T18:26:03-05:00\",\"description\":\"Pago Mensual academia: tomas iregui muñoz (1035006310)\",\"error_message\":null,\"order_id\":\"3F4366AEB9C157CF9A30C90693EAFC55_SLIJF80X4T_1691018684.7837\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"423150XXXXXX0878\",\"holder_name\":\"Beatriz e munoz c\",\"expiration_year\":\"27\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":3,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"LINA MARIA\",\"last_name\":\"MUÑOZ CAICEDO\",\"email\":\"linamunoz576@hotmail.com\",\"phone_number\":\"3122474469\",\"address\":null,\"creation_date\":\"2023-08-02T18:24:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre5p5raia1tvqbo6gus/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-02 23:26:05','2023-08-02 23:26:05'),(7321,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T18:26:18-05:00\",\"transaction\":{\"id\":\"trn02i1e0rqe4azcgar8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T18:25:33-05:00\",\"operation_date\":\"2023-08-02T18:25:33-05:00\",\"description\":\"Pago Mensual academia: Isaac Iral Hoyos (1038875814)\",\"error_message\":null,\"order_id\":\"0E1EBAD68AF7F0AE4830B7AC92BC3C6F_4WLYRBN9I7_1691018722.306\",\"due_date\":\"2023-08-03T06:25:33-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maria Cristina\",\"last_name\":\"Hoyos Gomez\",\"email\":\"cristi1128@hotmail.com\",\"phone_number\":\"3008235802\",\"address\":null,\"creation_date\":\"2023-08-02T18:25:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trn02i1e0rqe4azcgar8/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 23:26:19','2023-08-02 23:26:19'),(7322,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T18:26:57-05:00\",\"transaction\":{\"id\":\"trn02i1e0rqe4azcgar8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"81807788\",\"creation_date\":\"2023-08-02T18:25:33-05:00\",\"operation_date\":\"2023-08-02T18:26:53-05:00\",\"description\":\"Pago Mensual academia: Isaac Iral Hoyos (1038875814)\",\"error_message\":null,\"order_id\":\"0E1EBAD68AF7F0AE4830B7AC92BC3C6F_4WLYRBN9I7_1691018722.306\",\"due_date\":\"2023-08-03T06:25:33-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maria Cristina\",\"last_name\":\"Hoyos Gomez\",\"email\":\"cristi1128@hotmail.com\",\"phone_number\":\"3008235802\",\"address\":null,\"creation_date\":\"2023-08-02T18:25:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-02 23:26:58','2023-08-02 23:26:58'),(7323,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T19:51:27-05:00\",\"transaction\":{\"id\":\"trtz7vsw8usqjxjhnopm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T19:48:48-05:00\",\"operation_date\":\"2023-08-02T19:48:48-05:00\",\"description\":\"Pago Mensual academia: Santiago Betancur Cardona (1035009112)\",\"error_message\":null,\"order_id\":\"D309CD6396E744600C943FADA20F686A_EWSMA4NQXD_1691023725.1633\",\"due_date\":\"2023-08-03T07:48:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-02T19:48:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtz7vsw8usqjxjhnopm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 00:51:28','2023-08-03 00:51:28'),(7324,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T19:54:13-05:00\",\"transaction\":{\"id\":\"trtz7vsw8usqjxjhnopm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82006896\",\"creation_date\":\"2023-08-02T19:48:48-05:00\",\"operation_date\":\"2023-08-02T19:54:01-05:00\",\"description\":\"Pago Mensual academia: Santiago Betancur Cardona (1035009112)\",\"error_message\":null,\"order_id\":\"D309CD6396E744600C943FADA20F686A_EWSMA4NQXD_1691023725.1633\",\"due_date\":\"2023-08-03T07:48:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-02T19:48:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 00:54:14','2023-08-03 00:54:14'),(7325,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T19:55:56-05:00\",\"transaction\":{\"id\":\"trmrebuik5mfcqa4flwz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T19:55:01-05:00\",\"operation_date\":\"2023-08-02T19:55:01-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Betancur Cardona (1035013213)\",\"error_message\":null,\"order_id\":\"AC45088DF2E8D3CD2D8FBAFCEB920878_H94YAB57O0_1691024099.3037\",\"due_date\":\"2023-08-03T07:55:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-02T19:55:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmrebuik5mfcqa4flwz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 00:55:57','2023-08-03 00:55:57'),(7326,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T19:58:03-05:00\",\"transaction\":{\"id\":\"trpwlhxagww3ncly8n2w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T19:56:55-05:00\",\"operation_date\":\"2023-08-02T19:56:55-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Betancur Cardona (1035013213)\",\"error_message\":null,\"order_id\":\"AC45088DF2E8D3CD2D8FBAFCEB920878_H94YAB57O0_1691024213.2952\",\"due_date\":\"2023-08-03T07:56:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-02T19:56:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpwlhxagww3ncly8n2w/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 00:58:04','2023-08-03 00:58:04'),(7327,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T19:59:06-05:00\",\"transaction\":{\"id\":\"trpwlhxagww3ncly8n2w\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82021434\",\"creation_date\":\"2023-08-02T19:56:55-05:00\",\"operation_date\":\"2023-08-02T19:59:00-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Betancur Cardona (1035013213)\",\"error_message\":null,\"order_id\":\"AC45088DF2E8D3CD2D8FBAFCEB920878_H94YAB57O0_1691024213.2952\",\"due_date\":\"2023-08-03T07:56:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-02T19:56:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 00:59:07','2023-08-03 00:59:07'),(7328,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  848\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-02T19:18:11-06:00\",\"transaction\":{\"id\":\"trmrebuik5mfcqa4flwz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-02T19:55:01-06:00\",\"operation_date\":\"2023-08-02T19:56:01-06:00\",\"description\":\"Pago Mensual academia: Juan Martín Betancur Cardona (1035013213)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"AC45088DF2E8D3CD2D8FBAFCEB920878_H94YAB57O0_1691024099.3037\",\"due_date\":\"2023-08-03T07:55:01-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-02T19:55:01-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 01:18:12','2023-08-03 01:18:12'),(7329,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  911\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T21:11:30-05:00\",\"transaction\":{\"id\":\"tr38imkq7oj2fs1kl4iv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T21:10:53-05:00\",\"operation_date\":\"2023-08-02T21:10:53-05:00\",\"description\":\"Pago Mensual academia: JERONIMO CANO TORO (1020325226)\",\"error_message\":null,\"order_id\":\"4EBD440D99504722D80DE606EA8507DA_A05FVLQIWS_1691028650.8315\",\"due_date\":\"2023-08-03T09:10:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"YENNI\",\"last_name\":\"TORO CELIS\",\"email\":\"yeniceto@yahoo.es\",\"phone_number\":\"3103701113\",\"address\":null,\"creation_date\":\"2023-08-02T21:10:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr38imkq7oj2fs1kl4iv/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 02:11:31','2023-08-03 02:11:31'),(7330,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  793\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T20:15:13-06:00\",\"transaction\":{\"id\":\"tr38imkq7oj2fs1kl4iv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82177969\",\"creation_date\":\"2023-08-02T21:10:53-06:00\",\"operation_date\":\"2023-08-02T21:12:28-06:00\",\"description\":\"Pago Mensual academia: JERONIMO CANO TORO (1020325226)\",\"error_message\":null,\"order_id\":\"4EBD440D99504722D80DE606EA8507DA_A05FVLQIWS_1691028650.8315\",\"due_date\":\"2023-08-03T09:10:53-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"YENNI\",\"last_name\":\"TORO CELIS\",\"email\":\"yeniceto@yahoo.es\",\"phone_number\":\"3103701113\",\"address\":null,\"creation_date\":\"2023-08-02T21:10:53-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 02:15:14','2023-08-03 02:15:14'),(7331,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T22:23:52-05:00\",\"transaction\":{\"id\":\"trep8lnubiokqwkfzuje\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-02T22:23:52-05:00\",\"operation_date\":\"2023-08-02T22:23:52-05:00\",\"description\":\"Pago Mensual academia: Mateo Andres Montoya Quinchia (1021808921)\",\"error_message\":null,\"order_id\":\"0613239E122094ABB4EF998C01D16958_C0J38R94N7_1691033026.324\",\"amount\":165900.00,\"customer\":{\"name\":\"Arisbey\",\"last_name\":\"Montoya Llanos\",\"email\":\"aris.80llanos@gmail.com\",\"phone_number\":\"3158109825\",\"address\":null,\"creation_date\":\"2023-08-02T22:23:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trep8lnubiokqwkfzuje/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-03 03:23:52','2023-08-03 03:23:52'),(7332,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1143\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T22:25:55-05:00\",\"transaction\":{\"id\":\"trep8lnubiokqwkfzuje\",\"authorization\":\"R08554\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-02T22:23:52-05:00\",\"operation_date\":\"2023-08-02T22:25:54-05:00\",\"description\":\"Pago Mensual academia: Mateo Andres Montoya Quinchia (1021808921)\",\"error_message\":null,\"order_id\":\"0613239E122094ABB4EF998C01D16958_C0J38R94N7_1691033026.324\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"521897XXXXXX5857\",\"holder_name\":\"Arisbey Montoya \",\"expiration_year\":\"25\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"EXITO\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Arisbey\",\"last_name\":\"Montoya Llanos\",\"email\":\"aris.80llanos@gmail.com\",\"phone_number\":\"3158109825\",\"address\":null,\"creation_date\":\"2023-08-02T22:23:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trep8lnubiokqwkfzuje/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-03 03:25:56','2023-08-03 03:25:56'),(7333,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T22:33:22-05:00\",\"transaction\":{\"id\":\"trih6adcixwhmrniyeab\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T22:32:22-05:00\",\"operation_date\":\"2023-08-02T22:32:22-05:00\",\"description\":\"Pago Mensual academia: Pedro Garcia Gutierrez (1035002525)\",\"error_message\":null,\"order_id\":\"326FB04C3ABF030FE3F4E341F39B573F_M28LJB5SQ4_1691033538.0469\",\"due_date\":\"2023-08-03T10:32:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Garcia Gutierrez\",\"email\":\"cmarcelapedro@gmail.com\",\"phone_number\":\"3006093720\",\"address\":null,\"creation_date\":\"2023-08-02T22:32:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trih6adcixwhmrniyeab/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 03:33:23','2023-08-03 03:33:23'),(7334,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T22:34:40-05:00\",\"transaction\":{\"id\":\"trih6adcixwhmrniyeab\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82316306\",\"creation_date\":\"2023-08-02T22:32:22-05:00\",\"operation_date\":\"2023-08-02T22:34:16-05:00\",\"description\":\"Pago Mensual academia: Pedro Garcia Gutierrez (1035002525)\",\"error_message\":null,\"order_id\":\"326FB04C3ABF030FE3F4E341F39B573F_M28LJB5SQ4_1691033538.0469\",\"due_date\":\"2023-08-03T10:32:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Garcia Gutierrez\",\"email\":\"cmarcelapedro@gmail.com\",\"phone_number\":\"3006093720\",\"address\":null,\"creation_date\":\"2023-08-02T22:32:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 03:34:41','2023-08-03 03:34:41'),(7335,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-02T23:39:25-05:00\",\"transaction\":{\"id\":\"trs809dychsif6dctfly\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-02T23:38:29-05:00\",\"operation_date\":\"2023-08-02T23:38:29-05:00\",\"description\":\"Pago Mensual academia: Samuel Cardona Gallego (1035008672)\",\"error_message\":null,\"order_id\":\"504C296F8EB5FD521E744DA4E8371F28_JGOLMY1A9P_1691037505.6259\",\"due_date\":\"2023-08-03T11:38:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Gallego  Fernández\",\"email\":\"diana-gallego@hotmail.com\",\"phone_number\":\"3116368634\",\"address\":null,\"creation_date\":\"2023-08-02T23:38:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trs809dychsif6dctfly/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 04:39:26','2023-08-03 04:39:26'),(7336,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-02T23:40:42-05:00\",\"transaction\":{\"id\":\"trs809dychsif6dctfly\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82373986\",\"creation_date\":\"2023-08-02T23:38:29-05:00\",\"operation_date\":\"2023-08-02T23:40:24-05:00\",\"description\":\"Pago Mensual academia: Samuel Cardona Gallego (1035008672)\",\"error_message\":null,\"order_id\":\"504C296F8EB5FD521E744DA4E8371F28_JGOLMY1A9P_1691037505.6259\",\"due_date\":\"2023-08-03T11:38:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Gallego  Fernández\",\"email\":\"diana-gallego@hotmail.com\",\"phone_number\":\"3116368634\",\"address\":null,\"creation_date\":\"2023-08-02T23:38:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 04:40:43','2023-08-03 04:40:43'),(7337,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-03T02:21:11-06:00\",\"transaction\":{\"id\":\"trckzqdbz6emdsbhlc7g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-01T12:01:42-06:00\",\"operation_date\":\"2023-08-01T12:01:42-06:00\",\"description\":\"Pago Mensual academia: tomas iregui muñoz (1035006310)\",\"error_message\":null,\"order_id\":\"3F4366AEB9C157CF9A30C90693EAFC55_SLIJF80X4T_1690909286.7379\",\"due_date\":\"2023-08-02T00:01:42-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"LINA MARIA\",\"last_name\":\"MUÑOZ CAICEDO\",\"email\":\"linamunoz576@hotmail.com\",\"phone_number\":\"3122474469\",\"address\":null,\"creation_date\":\"2023-08-01T12:01:42-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trckzqdbz6emdsbhlc7g/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 08:21:12','2023-08-03 08:21:12'),(7338,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-03T02:21:11-06:00\",\"transaction\":{\"id\":\"tr77cciay7bdvo7h50w3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-01T16:07:40-06:00\",\"operation_date\":\"2023-08-01T16:07:40-06:00\",\"description\":\"Pago Mensual academia: SEBASTIAN LONDOÑO PEREAÑEZ (1020303276)\",\"error_message\":null,\"order_id\":\"7F01C939761597F9B832694D4C381512_0W3T8KU7B1_1690924057.2829\",\"due_date\":\"2023-08-02T04:07:40-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ELIANA\",\"last_name\":\"PEREAÑEZ PATIÑO\",\"email\":\"eliana.pereanez@gmail.com\",\"phone_number\":\"3117737115\",\"address\":null,\"creation_date\":\"2023-08-01T16:07:40-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr77cciay7bdvo7h50w3/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 08:21:12','2023-08-03 08:21:12'),(7339,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  957\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-03T02:21:11-06:00\",\"transaction\":{\"id\":\"tr9yxalv9xq3medech61\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-02T08:27:16-06:00\",\"operation_date\":\"2023-08-02T08:27:16-06:00\",\"description\":\"Pago Mensual academia: Dylan Alexander Grajales Castañeda (1032015427)\",\"error_message\":null,\"order_id\":\"6DFE08EDA761BD321F8A9B239F6F4EC3_DKFW7E4AN3_1690982831.3701\",\"due_date\":\"2023-08-02T20:27:16-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dylan Alexander\",\"last_name\":\"Grajales Castañeda\",\"email\":\"yesseniacas06@gmail.com\",\"phone_number\":\"3023306452\",\"address\":null,\"creation_date\":\"2023-08-02T08:27:16-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9yxalv9xq3medech61/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 08:21:12','2023-08-03 08:21:12'),(7340,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-03T02:21:39-06:00\",\"transaction\":{\"id\":\"tri4q1fz24dnyojzoyaf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-01T18:34:28-06:00\",\"operation_date\":\"2023-08-01T18:34:28-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"0336DCBAB05B9D5AD24F4333C7658A0E_E-64C53829-53_1690932811.4575\",\"due_date\":\"2023-08-02T06:34:28-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Paola\",\"last_name\":\"Luna\",\"email\":\"gomez.sebastian@gmail.com\",\"phone_number\":\"3163561484\",\"address\":null,\"creation_date\":\"2023-08-01T18:34:28-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tri4q1fz24dnyojzoyaf/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 08:21:39','2023-08-03 08:21:39'),(7341,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T06:30:54-05:00\",\"transaction\":{\"id\":\"tr8zpifesyhjbtogdv57\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T06:29:10-05:00\",\"operation_date\":\"2023-08-03T06:29:10-05:00\",\"description\":\"Pago Mensual academia: Thomás Diosa Sierra (1023560772)\",\"error_message\":null,\"order_id\":\"1E3B21CB226C39B6AA4634F820B372F3_3FQ4GUTLXV_1691062145.413\",\"due_date\":\"2023-08-03T18:29:10-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Diosa Arrubla\",\"email\":\"juan.hz@hotmail.com\",\"phone_number\":\"3226196131\",\"address\":null,\"creation_date\":\"2023-08-03T06:29:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8zpifesyhjbtogdv57/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 11:30:55','2023-08-03 11:30:55'),(7342,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T06:33:29-05:00\",\"transaction\":{\"id\":\"tr8zpifesyhjbtogdv57\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82468466\",\"creation_date\":\"2023-08-03T06:29:10-05:00\",\"operation_date\":\"2023-08-03T06:33:14-05:00\",\"description\":\"Pago Mensual academia: Thomás Diosa Sierra (1023560772)\",\"error_message\":null,\"order_id\":\"1E3B21CB226C39B6AA4634F820B372F3_3FQ4GUTLXV_1691062145.413\",\"due_date\":\"2023-08-03T18:29:10-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Diosa Arrubla\",\"email\":\"juan.hz@hotmail.com\",\"phone_number\":\"3226196131\",\"address\":null,\"creation_date\":\"2023-08-03T06:29:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 11:33:29','2023-08-03 11:33:29'),(7343,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T06:57:47-05:00\",\"transaction\":{\"id\":\"trlvdnj8x1ssguzd608i\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T06:56:53-05:00\",\"operation_date\":\"2023-08-03T06:56:53-05:00\",\"description\":\"Pago Mensual academia: Mateo Suarez Salazar (1040574340)\",\"error_message\":null,\"order_id\":\"4AD13F04EF4373992C9D3046200AA350_VJCOBG67LR_1691063808.8048\",\"due_date\":\"2023-08-03T18:56:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Salazar Cardona\",\"email\":\"carito-900@hotmail.com\",\"phone_number\":\"3006393961\",\"address\":null,\"creation_date\":\"2023-08-03T06:56:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlvdnj8x1ssguzd608i/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 11:57:47','2023-08-03 11:57:47'),(7344,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T06:58:57-05:00\",\"transaction\":{\"id\":\"trlvdnj8x1ssguzd608i\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82489887\",\"creation_date\":\"2023-08-03T06:56:53-05:00\",\"operation_date\":\"2023-08-03T06:58:43-05:00\",\"description\":\"Pago Mensual academia: Mateo Suarez Salazar (1040574340)\",\"error_message\":null,\"order_id\":\"4AD13F04EF4373992C9D3046200AA350_VJCOBG67LR_1691063808.8048\",\"due_date\":\"2023-08-03T18:56:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Salazar Cardona\",\"email\":\"carito-900@hotmail.com\",\"phone_number\":\"3006393961\",\"address\":null,\"creation_date\":\"2023-08-03T06:56:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 11:58:58','2023-08-03 11:58:58'),(7345,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T07:27:37-05:00\",\"transaction\":{\"id\":\"trcdgpbykjirbmqcxspn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T07:26:48-05:00\",\"operation_date\":\"2023-08-03T07:26:48-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Ospina Zapata (1020312861)\",\"error_message\":null,\"order_id\":\"8DEB8D1DD92840F975B6931AB3A3C61E_6FLZ80GK14_1691065605.6884\",\"due_date\":\"2023-08-03T19:26:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Zapata Sierra\",\"email\":\"paulazapata78@hotmail.com\",\"phone_number\":\"3013400537\",\"address\":null,\"creation_date\":\"2023-08-03T07:26:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcdgpbykjirbmqcxspn/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 12:27:38','2023-08-03 12:27:38'),(7346,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T07:28:39-05:00\",\"transaction\":{\"id\":\"trcdgpbykjirbmqcxspn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82521459\",\"creation_date\":\"2023-08-03T07:26:48-05:00\",\"operation_date\":\"2023-08-03T07:28:15-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Ospina Zapata (1020312861)\",\"error_message\":null,\"order_id\":\"8DEB8D1DD92840F975B6931AB3A3C61E_6FLZ80GK14_1691065605.6884\",\"due_date\":\"2023-08-03T19:26:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Zapata Sierra\",\"email\":\"paulazapata78@hotmail.com\",\"phone_number\":\"3013400537\",\"address\":null,\"creation_date\":\"2023-08-03T07:26:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 12:28:39','2023-08-03 12:28:39'),(7347,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T07:38:21-05:00\",\"transaction\":{\"id\":\"trqirb5qpzanbmncvjjo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T07:37:18-05:00\",\"operation_date\":\"2023-08-03T07:37:18-05:00\",\"description\":\"Pago Inscripción academia: valentin gomez tapia (1035014264)\",\"error_message\":null,\"order_id\":\"2067E2650CD701AE71C68080F9DBBDC1_JVIXCY84P2_1691066234.549\",\"due_date\":\"2023-08-03T19:37:18-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"valentin\",\"last_name\":\"gomez tapia\",\"email\":\"sandratapia1983@hotmail.com\",\"phone_number\":\"3188278218\",\"address\":null,\"creation_date\":\"2023-08-03T07:37:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqirb5qpzanbmncvjjo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 12:38:21','2023-08-03 12:38:21'),(7348,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T07:55:37-05:00\",\"transaction\":{\"id\":\"troj8hmxe6uudivhtanr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T07:54:29-05:00\",\"operation_date\":\"2023-08-03T07:54:29-05:00\",\"description\":\"Pago Mensual academia: Jerónimo molina muñetón (1013464337)\",\"error_message\":null,\"order_id\":\"2131F8ECF18DB66A758F718DC729E00E_20EZCIT9F7_1691067262.6096\",\"due_date\":\"2023-08-03T19:54:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"muñeton agudelo\",\"email\":\"johana032690@hotmail.com\",\"phone_number\":\"3108325627\",\"address\":null,\"creation_date\":\"2023-08-03T07:54:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troj8hmxe6uudivhtanr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 12:55:38','2023-08-03 12:55:38'),(7349,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T07:58:06-05:00\",\"transaction\":{\"id\":\"troj8hmxe6uudivhtanr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82560360\",\"creation_date\":\"2023-08-03T07:54:29-05:00\",\"operation_date\":\"2023-08-03T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Jerónimo molina muñetón (1013464337)\",\"error_message\":null,\"order_id\":\"2131F8ECF18DB66A758F718DC729E00E_20EZCIT9F7_1691067262.6096\",\"due_date\":\"2023-08-03T19:54:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"muñeton agudelo\",\"email\":\"johana032690@hotmail.com\",\"phone_number\":\"3108325627\",\"address\":null,\"creation_date\":\"2023-08-03T07:54:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 12:58:06','2023-08-03 12:58:06'),(7350,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  853\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-03T07:00:09-06:00\",\"transaction\":{\"id\":\"trqirb5qpzanbmncvjjo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-03T07:37:18-06:00\",\"operation_date\":\"2023-08-03T07:38:27-06:00\",\"description\":\"Pago Inscripción academia: valentin gomez tapia (1035014264)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"2067E2650CD701AE71C68080F9DBBDC1_JVIXCY84P2_1691066234.549\",\"due_date\":\"2023-08-03T19:37:18-06:00\",\"error_code\":1007,\"amount\":286000.00,\"customer\":{\"name\":\"valentin\",\"last_name\":\"gomez tapia\",\"email\":\"sandratapia1983@hotmail.com\",\"phone_number\":\"3188278218\",\"address\":null,\"creation_date\":\"2023-08-03T07:37:18-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 13:00:11','2023-08-03 13:00:11'),(7351,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T08:08:45-05:00\",\"transaction\":{\"id\":\"trgmm6ju4pdt7me09t1q\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-03T08:08:45-05:00\",\"operation_date\":\"2023-08-03T08:08:45-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"918317B57931B6B7A7D29490FE5EC9F9_J4W26BI5AT_1691068119.1241\",\"amount\":200000.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Betancur Posso\",\"email\":\"danibp18@hotmail.com\",\"phone_number\":\"3205719270\",\"address\":null,\"creation_date\":\"2023-08-03T08:08:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trgmm6ju4pdt7me09t1q/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-03 13:08:46','2023-08-03 13:08:46'),(7352,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  853\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T08:18:59-05:00\",\"transaction\":{\"id\":\"trdjgjxsxx7ilvcykqqs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-03T08:18:59-05:00\",\"operation_date\":\"2023-08-03T08:18:59-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"839AB46820B524AFDA05122893C2FE8E_S3I68ZBOW4_1691068735.809\",\"amount\":200000.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Betancur Posso\",\"email\":\"danibp18@hotmail.com\",\"phone_number\":\"3205719270\",\"address\":null,\"creation_date\":\"2023-08-03T08:18:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trdjgjxsxx7ilvcykqqs/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-03 13:19:00','2023-08-03 13:19:00'),(7353,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  953\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T08:23:01-05:00\",\"transaction\":{\"id\":\"trur6axgxg8ydadddpx1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T08:22:21-05:00\",\"operation_date\":\"2023-08-03T08:22:21-05:00\",\"description\":\"Pago Mensual academia: Juan Alejandro Valencia Aguirre (1011244362)\",\"error_message\":null,\"order_id\":\"4EA83D951990D8BF07A68EC3E50F9156_FS2BJ5MYD6_1691068938.3529\",\"due_date\":\"2023-08-03T20:22:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paola Alejandra\",\"last_name\":\"Aguirre Gutiérrez\",\"email\":\"paoalejandra0209@hotmail.com\",\"phone_number\":\"3146726928\",\"address\":null,\"creation_date\":\"2023-08-03T08:22:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trur6axgxg8ydadddpx1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 13:23:02','2023-08-03 13:23:02'),(7354,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  835\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T08:25:45-05:00\",\"transaction\":{\"id\":\"trur6axgxg8ydadddpx1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82603788\",\"creation_date\":\"2023-08-03T08:22:21-05:00\",\"operation_date\":\"2023-08-03T08:25:40-05:00\",\"description\":\"Pago Mensual academia: Juan Alejandro Valencia Aguirre (1011244362)\",\"error_message\":null,\"order_id\":\"4EA83D951990D8BF07A68EC3E50F9156_FS2BJ5MYD6_1691068938.3529\",\"due_date\":\"2023-08-03T20:22:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paola Alejandra\",\"last_name\":\"Aguirre Gutiérrez\",\"email\":\"paoalejandra0209@hotmail.com\",\"phone_number\":\"3146726928\",\"address\":null,\"creation_date\":\"2023-08-03T08:22:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 13:25:46','2023-08-03 13:25:46'),(7355,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  860\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T08:25:50-05:00\",\"transaction\":{\"id\":\"trtwdv6qfri9cnwpsowx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-03T08:25:50-05:00\",\"operation_date\":\"2023-08-03T08:25:50-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"F90F2ACA5C640289D0A29417BCB63A37_I6BQSGTV1W_1691069144.7618\",\"amount\":200000.00,\"customer\":{\"name\":\"Juan Ramón\",\"last_name\":\"Bolívar Rendón\",\"email\":\"beto7121@hotmail.com\",\"phone_number\":\"3043617243\",\"address\":null,\"creation_date\":\"2023-08-03T08:25:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trtwdv6qfri9cnwpsowx/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-03 13:25:50','2023-08-03 13:25:50'),(7356,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1115\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T08:27:38-05:00\",\"transaction\":{\"id\":\"trtwdv6qfri9cnwpsowx\",\"authorization\":\"082738\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-03T08:25:50-05:00\",\"operation_date\":\"2023-08-03T08:27:37-05:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"F90F2ACA5C640289D0A29417BCB63A37_I6BQSGTV1W_1691069144.7618\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX6295\",\"holder_name\":\"Juan ramon Bolivar\",\"expiration_year\":\"27\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":200000.00,\"customer\":{\"name\":\"Juan Ramón\",\"last_name\":\"Bolívar Rendón\",\"email\":\"beto7121@hotmail.com\",\"phone_number\":\"3043617243\",\"address\":null,\"creation_date\":\"2023-08-03T08:25:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trtwdv6qfri9cnwpsowx/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-03 13:27:39','2023-08-03 13:27:39'),(7357,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T09:13:11-05:00\",\"transaction\":{\"id\":\"tryo5wuq6ywwmqe1xszm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T09:12:13-05:00\",\"operation_date\":\"2023-08-03T09:12:13-05:00\",\"description\":\"Pago Mensual academia: Santiago Hernandez palomino (1018255925)\",\"error_message\":null,\"order_id\":\"485843481A7EDACBFCE101ECB1E4D2A8_4OT16JM7DE_1691071930.2792\",\"due_date\":\"2023-08-03T21:12:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sergio andres\",\"last_name\":\"Hernandez jaramillo\",\"email\":\"sahj00@gmail.com\",\"phone_number\":\"3106635700\",\"address\":null,\"creation_date\":\"2023-08-03T09:12:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryo5wuq6ywwmqe1xszm/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 14:13:12','2023-08-03 14:13:12'),(7358,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T09:16:21-05:00\",\"transaction\":{\"id\":\"tredo3irhmmjjj2cidum\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T09:15:42-05:00\",\"operation_date\":\"2023-08-03T09:15:42-05:00\",\"description\":\"Pago Mensual academia: Santiago Hernandez palomino (1018255925)\",\"error_message\":null,\"order_id\":\"A87D27F712DF362CD22C7A8EF823E987_Y49RMLJCT2_1691072140.0586\",\"due_date\":\"2023-08-03T21:15:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sergio andres\",\"last_name\":\"Hernandez jaramillo\",\"email\":\"sahj00@gmail.com\",\"phone_number\":\"3106635700\",\"address\":null,\"creation_date\":\"2023-08-03T09:15:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tredo3irhmmjjj2cidum/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 14:16:22','2023-08-03 14:16:22'),(7359,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-03T08:24:15-06:00\",\"transaction\":{\"id\":\"tryo5wuq6ywwmqe1xszm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-03T09:12:13-06:00\",\"operation_date\":\"2023-08-03T09:12:13-06:00\",\"description\":\"Pago Mensual academia: Santiago Hernandez palomino (1018255925)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"485843481A7EDACBFCE101ECB1E4D2A8_4OT16JM7DE_1691071930.2792\",\"due_date\":\"2023-08-03T21:12:13-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Sergio andres\",\"last_name\":\"Hernandez jaramillo\",\"email\":\"sahj00@gmail.com\",\"phone_number\":\"3106635700\",\"address\":null,\"creation_date\":\"2023-08-03T09:12:13-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 14:24:16','2023-08-03 14:24:16'),(7360,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-03T08:33:11-06:00\",\"transaction\":{\"id\":\"tredo3irhmmjjj2cidum\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-03T09:15:42-06:00\",\"operation_date\":\"2023-08-03T09:31:42-06:00\",\"description\":\"Pago Mensual academia: Santiago Hernandez palomino (1018255925)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"A87D27F712DF362CD22C7A8EF823E987_Y49RMLJCT2_1691072140.0586\",\"due_date\":\"2023-08-03T21:15:42-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Sergio andres\",\"last_name\":\"Hernandez jaramillo\",\"email\":\"sahj00@gmail.com\",\"phone_number\":\"3106635700\",\"address\":null,\"creation_date\":\"2023-08-03T09:15:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 14:33:11','2023-08-03 14:33:11'),(7361,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  910\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T10:18:47-05:00\",\"transaction\":{\"id\":\"trmzlgxja8n5w4of1euo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T10:17:59-05:00\",\"operation_date\":\"2023-08-03T10:17:59-05:00\",\"description\":\"Pago Mensual academia: Lorenzo Turizo Vasco (1027665082)\",\"error_message\":null,\"order_id\":\"8A50BAE297807DA9E97722A0B3FD8F27_2LKY4FPE7C_1691075875.7993\",\"due_date\":\"2023-08-03T22:17:59-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Turizo\",\"email\":\"jeturizog@gmail.com\",\"phone_number\":\"3156320944\",\"address\":null,\"creation_date\":\"2023-08-03T10:17:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmzlgxja8n5w4of1euo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 15:18:48','2023-08-03 15:18:48'),(7362,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  792\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T10:20:16-05:00\",\"transaction\":{\"id\":\"trmzlgxja8n5w4of1euo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82872811\",\"creation_date\":\"2023-08-03T10:17:59-05:00\",\"operation_date\":\"2023-08-03T10:19:41-05:00\",\"description\":\"Pago Mensual academia: Lorenzo Turizo Vasco (1027665082)\",\"error_message\":null,\"order_id\":\"8A50BAE297807DA9E97722A0B3FD8F27_2LKY4FPE7C_1691075875.7993\",\"due_date\":\"2023-08-03T22:17:59-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Turizo\",\"email\":\"jeturizog@gmail.com\",\"phone_number\":\"3156320944\",\"address\":null,\"creation_date\":\"2023-08-03T10:17:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 15:20:16','2023-08-03 15:20:16'),(7363,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T10:36:04-05:00\",\"transaction\":{\"id\":\"trjfregtllgmlhwaxzar\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T10:34:13-05:00\",\"operation_date\":\"2023-08-03T10:34:13-05:00\",\"description\":\"Pago Inscripción academia: valentin gomez tapia (1035014264)\",\"error_message\":null,\"order_id\":\"2067E2650CD701AE71C68080F9DBBDC1_JVIXCY84P2_1691076849.9048\",\"due_date\":\"2023-08-03T22:34:13-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"valentin\",\"last_name\":\"gomez tapia\",\"email\":\"sandratapia1983@hotmail.com\",\"phone_number\":\"3188278218\",\"address\":null,\"creation_date\":\"2023-08-03T10:34:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjfregtllgmlhwaxzar/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 15:36:05','2023-08-03 15:36:05'),(7364,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T09:39:16-06:00\",\"transaction\":{\"id\":\"trjfregtllgmlhwaxzar\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82920626\",\"creation_date\":\"2023-08-03T10:34:13-06:00\",\"operation_date\":\"2023-08-03T10:37:40-06:00\",\"description\":\"Pago Inscripción academia: valentin gomez tapia (1035014264)\",\"error_message\":null,\"order_id\":\"2067E2650CD701AE71C68080F9DBBDC1_JVIXCY84P2_1691076849.9048\",\"due_date\":\"2023-08-03T22:34:13-06:00\",\"amount\":286000.00,\"customer\":{\"name\":\"valentin\",\"last_name\":\"gomez tapia\",\"email\":\"sandratapia1983@hotmail.com\",\"phone_number\":\"3188278218\",\"address\":null,\"creation_date\":\"2023-08-03T10:34:13-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 15:39:17','2023-08-03 15:39:17'),(7365,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T11:04:35-05:00\",\"transaction\":{\"id\":\"trlzxz929tmrogqw2dh4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T11:03:38-05:00\",\"operation_date\":\"2023-08-03T11:03:38-05:00\",\"description\":\"Pago Mensual academia: Pedro Escobar Acosta (1035003260)\",\"error_message\":null,\"order_id\":\"F0EAF559F89CA17022783964EBE9CDFD_OKSC3NQ4WE_1691078614.4156\",\"due_date\":\"2023-08-03T23:03:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jairo\",\"last_name\":\"Escobar Jaramillo\",\"email\":\"jaironcha@yahoo.com\",\"phone_number\":\"3155949427\",\"address\":null,\"creation_date\":\"2023-08-03T11:03:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlzxz929tmrogqw2dh4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 16:04:36','2023-08-03 16:04:36'),(7366,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T11:05:55-05:00\",\"transaction\":{\"id\":\"trlzxz929tmrogqw2dh4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"82999570\",\"creation_date\":\"2023-08-03T11:03:38-05:00\",\"operation_date\":\"2023-08-03T11:05:49-05:00\",\"description\":\"Pago Mensual academia: Pedro Escobar Acosta (1035003260)\",\"error_message\":null,\"order_id\":\"F0EAF559F89CA17022783964EBE9CDFD_OKSC3NQ4WE_1691078614.4156\",\"due_date\":\"2023-08-03T23:03:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jairo\",\"last_name\":\"Escobar Jaramillo\",\"email\":\"jaironcha@yahoo.com\",\"phone_number\":\"3155949427\",\"address\":null,\"creation_date\":\"2023-08-03T11:03:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 16:05:56','2023-08-03 16:05:56'),(7367,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T11:33:45-05:00\",\"transaction\":{\"id\":\"trntqsmftvfqo0xeosao\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-03T11:33:45-05:00\",\"operation_date\":\"2023-08-03T11:33:45-05:00\",\"description\":\"Pago Mensual academia: lucio gaviria uribe (1035010951)\",\"error_message\":null,\"order_id\":\"D54CE9DE9DF77C579775A7B6B1A4BDC0_52UKOGR4TN_1691080422.8279\",\"amount\":165900.00,\"customer\":{\"name\":\"sebastian\",\"last_name\":\"gaviria\",\"email\":\"sebastiangaviria@centrosur.co\",\"phone_number\":\"3168763936\",\"address\":null,\"creation_date\":\"2023-08-03T11:33:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trntqsmftvfqo0xeosao/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-03 16:33:45','2023-08-03 16:33:45'),(7368,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T13:31:53-05:00\",\"transaction\":{\"id\":\"trm1e5g7wur0i6pxlc5s\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-03T13:31:53-05:00\",\"operation_date\":\"2023-08-03T13:31:53-05:00\",\"description\":\"Pago Mensual academia: miguel angel velez restrepo (1013465944)\",\"error_message\":null,\"order_id\":\"D3AEEC875C479E55D1CDEEA161842EC6_RV6KWQS5ML_1691087502.6853\",\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"velez Restrepo\",\"email\":\"laurapaisa0422@hotmail.com\",\"phone_number\":\"3104894154\",\"address\":null,\"creation_date\":\"2023-08-03T13:31:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm1e5g7wur0i6pxlc5s/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-03 18:31:54','2023-08-03 18:31:54'),(7369,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1170\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T13:33:19-05:00\",\"transaction\":{\"id\":\"trm1e5g7wur0i6pxlc5s\",\"authorization\":\"133319\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-03T13:31:53-05:00\",\"operation_date\":\"2023-08-03T13:33:18-05:00\",\"description\":\"Pago Mensual academia: miguel angel velez restrepo (1013465944)\",\"error_message\":null,\"order_id\":\"D3AEEC875C479E55D1CDEEA161842EC6_RV6KWQS5ML_1691087502.6853\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5920\",\"holder_name\":\"Sebastian restrepo monsalve\",\"expiration_year\":\"26\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"velez Restrepo\",\"email\":\"laurapaisa0422@hotmail.com\",\"phone_number\":\"3104894154\",\"address\":null,\"creation_date\":\"2023-08-03T13:31:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm1e5g7wur0i6pxlc5s/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-03 18:33:20','2023-08-03 18:33:20'),(7370,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T13:47:34-05:00\",\"transaction\":{\"id\":\"trug2ntiuqogbpygiyhq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T13:46:35-05:00\",\"operation_date\":\"2023-08-03T13:46:35-05:00\",\"description\":\"Pago Mensual academia: Nicolas Cueto Arango (1036461020)\",\"error_message\":null,\"order_id\":\"F4334C131C781E2A6F0A5E34814C8147_17HRLWPS35_1691088384.5141\",\"due_date\":\"2023-08-04T01:46:35-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Cueto Arango\",\"email\":\"yesidcueto@hotmail.com\",\"phone_number\":\"3005569903\",\"address\":null,\"creation_date\":\"2023-08-03T13:46:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trug2ntiuqogbpygiyhq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 18:47:34','2023-08-03 18:47:34'),(7371,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T13:48:36-05:00\",\"transaction\":{\"id\":\"trug2ntiuqogbpygiyhq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"83396359\",\"creation_date\":\"2023-08-03T13:46:35-05:00\",\"operation_date\":\"2023-08-03T13:48:18-05:00\",\"description\":\"Pago Mensual academia: Nicolas Cueto Arango (1036461020)\",\"error_message\":null,\"order_id\":\"F4334C131C781E2A6F0A5E34814C8147_17HRLWPS35_1691088384.5141\",\"due_date\":\"2023-08-04T01:46:35-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Cueto Arango\",\"email\":\"yesidcueto@hotmail.com\",\"phone_number\":\"3005569903\",\"address\":null,\"creation_date\":\"2023-08-03T13:46:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 18:48:37','2023-08-03 18:48:37'),(7372,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T13:51:28-05:00\",\"transaction\":{\"id\":\"trff0n3tztwfpf5ok7r2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T13:50:51-05:00\",\"operation_date\":\"2023-08-03T13:50:51-05:00\",\"description\":\"Pago Mensual academia: Nicolas Cueto Arango (1036461020)\",\"error_message\":null,\"order_id\":\"AC73001B1D44F4925449CE09D9F5D5CA_6SYKN8W0IC_1691088602.0431\",\"due_date\":\"2023-08-04T01:50:51-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Cueto Arango\",\"email\":\"yesidcueto@hotmail.com\",\"phone_number\":\"3005569903\",\"address\":null,\"creation_date\":\"2023-08-03T13:50:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trff0n3tztwfpf5ok7r2/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 18:51:29','2023-08-03 18:51:29'),(7373,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T13:52:36-05:00\",\"transaction\":{\"id\":\"trff0n3tztwfpf5ok7r2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"83405304\",\"creation_date\":\"2023-08-03T13:50:51-05:00\",\"operation_date\":\"2023-08-03T13:52:31-05:00\",\"description\":\"Pago Mensual academia: Nicolas Cueto Arango (1036461020)\",\"error_message\":null,\"order_id\":\"AC73001B1D44F4925449CE09D9F5D5CA_6SYKN8W0IC_1691088602.0431\",\"due_date\":\"2023-08-04T01:50:51-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Cueto Arango\",\"email\":\"yesidcueto@hotmail.com\",\"phone_number\":\"3005569903\",\"address\":null,\"creation_date\":\"2023-08-03T13:50:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 18:52:37','2023-08-03 18:52:37'),(7374,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T14:19:01-05:00\",\"transaction\":{\"id\":\"triehacfzfhnoiylsf2u\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T14:16:26-05:00\",\"operation_date\":\"2023-08-03T14:16:26-05:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":null,\"order_id\":\"95177E528F8D6C7C28A5473FD5A471B6_296K0V14JQ_1691090183.8297\",\"due_date\":\"2023-08-04T02:16:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz Jaramillo \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3006934069\",\"address\":null,\"creation_date\":\"2023-08-03T14:16:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triehacfzfhnoiylsf2u/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 19:19:02','2023-08-03 19:19:02'),(7375,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-03T13:36:09-06:00\",\"transaction\":{\"id\":\"triehacfzfhnoiylsf2u\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-03T14:16:26-06:00\",\"operation_date\":\"2023-08-03T14:35:19-06:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"95177E528F8D6C7C28A5473FD5A471B6_296K0V14JQ_1691090183.8297\",\"due_date\":\"2023-08-04T02:16:26-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz Jaramillo \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3006934069\",\"address\":null,\"creation_date\":\"2023-08-03T14:16:26-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 19:36:10','2023-08-03 19:36:10'),(7376,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T15:06:13-05:00\",\"transaction\":{\"id\":\"tr4r9qwdcyoh0hhmn41w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T15:05:33-05:00\",\"operation_date\":\"2023-08-03T15:05:33-05:00\",\"description\":\"Pago Mensual academia: Benjamín Salazar Martínez (1020326813)\",\"error_message\":null,\"order_id\":\"073B00AB99487B74B63C9A6D2B962DDC_JKDWTQA1Z2_1691093130.043\",\"due_date\":\"2023-08-04T03:05:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julieth\",\"last_name\":\"Martinez Ocampo\",\"email\":\"Juliethamartinez@gmail.com\",\"phone_number\":\"3017430983\",\"address\":null,\"creation_date\":\"2023-08-03T15:05:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4r9qwdcyoh0hhmn41w/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 20:06:13','2023-08-03 20:06:13'),(7377,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T15:07:16-05:00\",\"transaction\":{\"id\":\"tr4r9qwdcyoh0hhmn41w\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"83592602\",\"creation_date\":\"2023-08-03T15:05:33-05:00\",\"operation_date\":\"2023-08-03T15:07:11-05:00\",\"description\":\"Pago Mensual academia: Benjamín Salazar Martínez (1020326813)\",\"error_message\":null,\"order_id\":\"073B00AB99487B74B63C9A6D2B962DDC_JKDWTQA1Z2_1691093130.043\",\"due_date\":\"2023-08-04T03:05:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julieth\",\"last_name\":\"Martinez Ocampo\",\"email\":\"Juliethamartinez@gmail.com\",\"phone_number\":\"3017430983\",\"address\":null,\"creation_date\":\"2023-08-03T15:05:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 20:07:17','2023-08-03 20:07:17'),(7378,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T15:21:49-05:00\",\"transaction\":{\"id\":\"tresgnpxfbkphkrp7xzg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T15:20:47-05:00\",\"operation_date\":\"2023-08-03T15:20:47-05:00\",\"description\":\"Pago Mensual academia: Emiliano Guzman Acosta (1035010754)\",\"error_message\":null,\"order_id\":\"A4D92E2CD541FCA87E4620ABA658316D_XOERYJLH5G_1691094044.6361\",\"due_date\":\"2023-08-04T03:20:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"javier\",\"last_name\":\"Guzman\",\"email\":\"javierguzman0713@gmail.com\",\"phone_number\":\"3123788166\",\"address\":null,\"creation_date\":\"2023-08-03T15:20:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tresgnpxfbkphkrp7xzg/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 20:21:50','2023-08-03 20:21:50'),(7379,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T15:23:00-05:00\",\"transaction\":{\"id\":\"tresgnpxfbkphkrp7xzg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"83632671\",\"creation_date\":\"2023-08-03T15:20:47-05:00\",\"operation_date\":\"2023-08-03T15:22:51-05:00\",\"description\":\"Pago Mensual academia: Emiliano Guzman Acosta (1035010754)\",\"error_message\":null,\"order_id\":\"A4D92E2CD541FCA87E4620ABA658316D_XOERYJLH5G_1691094044.6361\",\"due_date\":\"2023-08-04T03:20:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"javier\",\"last_name\":\"Guzman\",\"email\":\"javierguzman0713@gmail.com\",\"phone_number\":\"3123788166\",\"address\":null,\"creation_date\":\"2023-08-03T15:20:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 20:23:01','2023-08-03 20:23:01'),(7380,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T15:28:42-05:00\",\"transaction\":{\"id\":\"trwvlvsiubb4ku9uav6w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T15:26:06-05:00\",\"operation_date\":\"2023-08-03T15:26:06-05:00\",\"description\":\"Pago Mensual academia: julian Solórzano Munera (1017934722)\",\"error_message\":null,\"order_id\":\"C91E3483CF4F90057D02AA492D2B25B1_Z6BS0V235L_1691094361.1638\",\"due_date\":\"2023-08-04T03:26:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julian\",\"last_name\":\"Solorzano\",\"email\":\"solojulio@yahoo.com\",\"phone_number\":\"3132965088\",\"address\":null,\"creation_date\":\"2023-08-03T15:26:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwvlvsiubb4ku9uav6w/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 20:28:43','2023-08-03 20:28:43'),(7381,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T14:30:23-06:00\",\"transaction\":{\"id\":\"trwvlvsiubb4ku9uav6w\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"83650517\",\"creation_date\":\"2023-08-03T15:26:06-06:00\",\"operation_date\":\"2023-08-03T15:30:07-06:00\",\"description\":\"Pago Mensual academia: julian Solórzano Munera (1017934722)\",\"error_message\":null,\"order_id\":\"C91E3483CF4F90057D02AA492D2B25B1_Z6BS0V235L_1691094361.1638\",\"due_date\":\"2023-08-04T03:26:06-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julian\",\"last_name\":\"Solorzano\",\"email\":\"solojulio@yahoo.com\",\"phone_number\":\"3132965088\",\"address\":null,\"creation_date\":\"2023-08-03T15:26:06-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 20:30:24','2023-08-03 20:30:24'),(7382,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T15:54:16-05:00\",\"transaction\":{\"id\":\"trvfjq9f2ggzfdir6rtt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T15:51:24-05:00\",\"operation_date\":\"2023-08-03T15:51:24-05:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":null,\"order_id\":\"95177E528F8D6C7C28A5473FD5A471B6_296K0V14JQ_1691095881.7827\",\"due_date\":\"2023-08-04T03:51:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz Jaramillo \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3104803815\",\"address\":null,\"creation_date\":\"2023-08-03T15:51:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvfjq9f2ggzfdir6rtt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 20:54:17','2023-08-03 20:54:17'),(7383,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T15:56:26-05:00\",\"transaction\":{\"id\":\"trvfjq9f2ggzfdir6rtt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"83718530\",\"creation_date\":\"2023-08-03T15:51:24-05:00\",\"operation_date\":\"2023-08-03T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":null,\"order_id\":\"95177E528F8D6C7C28A5473FD5A471B6_296K0V14JQ_1691095881.7827\",\"due_date\":\"2023-08-04T03:51:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz Jaramillo \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3104803815\",\"address\":null,\"creation_date\":\"2023-08-03T15:51:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 20:56:27','2023-08-03 20:56:27'),(7384,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  901\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T17:07:26-05:00\",\"transaction\":{\"id\":\"trsqxcymmeznwuqwulqm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-03T17:07:26-05:00\",\"operation_date\":\"2023-08-03T17:07:26-05:00\",\"description\":\"Pago Mensual academia: Agustin Cespedes Escobar (1035014802)\",\"error_message\":null,\"order_id\":\"3F7BCD0B3EA822683BBA8FC530F151BD_X4MDJVLI28_1691100443.7266\",\"amount\":105000.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Cespedes Gutierrez\",\"email\":\"manuelcespedes08@gmail.com\",\"phone_number\":\"3135218151\",\"address\":null,\"creation_date\":\"2023-08-03T17:07:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsqxcymmeznwuqwulqm/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-03 22:07:27','2023-08-03 22:07:27'),(7385,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1160\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T17:09:46-05:00\",\"transaction\":{\"id\":\"trsqxcymmeznwuqwulqm\",\"authorization\":\"239792\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-03T17:07:26-05:00\",\"operation_date\":\"2023-08-03T17:09:45-05:00\",\"description\":\"Pago Mensual academia: Agustin Cespedes Escobar (1035014802)\",\"error_message\":null,\"order_id\":\"3F7BCD0B3EA822683BBA8FC530F151BD_X4MDJVLI28_1691100443.7266\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"534271XXXXXX5639\",\"holder_name\":\"Manuel Cespedes\",\"expiration_year\":\"29\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CHOICE FINANCIAL GROUP\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Cespedes Gutierrez\",\"email\":\"manuelcespedes08@gmail.com\",\"phone_number\":\"3135218151\",\"address\":null,\"creation_date\":\"2023-08-03T17:07:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsqxcymmeznwuqwulqm/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-03 22:09:48','2023-08-03 22:09:48'),(7386,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T17:15:49-05:00\",\"transaction\":{\"id\":\"triolmwmt2sddxr7upaw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T17:15:03-05:00\",\"operation_date\":\"2023-08-03T17:15:03-05:00\",\"description\":\"Pago Mensual academia: samuel henao valencia (1017938015)\",\"error_message\":null,\"order_id\":\"BFBB56BEE68D99AFFAA64F189045D5F2_0RSHX7ET4N_1691100899.8641\",\"due_date\":\"2023-08-04T05:15:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maria\",\"last_name\":\"valencia\",\"email\":\"tatica2784@hotmail.com\",\"phone_number\":\"3147413566\",\"address\":null,\"creation_date\":\"2023-08-03T17:15:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triolmwmt2sddxr7upaw/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 22:15:49','2023-08-03 22:15:49'),(7387,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T17:17:06-05:00\",\"transaction\":{\"id\":\"triolmwmt2sddxr7upaw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"83911765\",\"creation_date\":\"2023-08-03T17:15:03-05:00\",\"operation_date\":\"2023-08-03T17:16:57-05:00\",\"description\":\"Pago Mensual academia: samuel henao valencia (1017938015)\",\"error_message\":null,\"order_id\":\"BFBB56BEE68D99AFFAA64F189045D5F2_0RSHX7ET4N_1691100899.8641\",\"due_date\":\"2023-08-04T05:15:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maria\",\"last_name\":\"valencia\",\"email\":\"tatica2784@hotmail.com\",\"phone_number\":\"3147413566\",\"address\":null,\"creation_date\":\"2023-08-03T17:15:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-03 22:17:07','2023-08-03 22:17:07'),(7388,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  905\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T17:29:31-05:00\",\"transaction\":{\"id\":\"trptgvzpx7dznqj52gxt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-03T17:29:31-05:00\",\"operation_date\":\"2023-08-03T17:29:31-05:00\",\"description\":\"Pago Mensual academia: Jerónimo Quiñonez Raigoza (1023547001)\",\"error_message\":null,\"order_id\":\"79514E888B8F2ACACC68738D0CBB803E_NV013MOBW5_1691101767.2306\",\"amount\":165900.00,\"customer\":{\"name\":\"Evelin Yuliana\",\"last_name\":\"Raigoza Montoya\",\"email\":\"evelin0118@hotmail.com\",\"phone_number\":\"3007454999\",\"address\":null,\"creation_date\":\"2023-08-03T17:29:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trptgvzpx7dznqj52gxt/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-03 22:29:31','2023-08-03 22:29:31'),(7389,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1158\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T17:31:13-05:00\",\"transaction\":{\"id\":\"trptgvzpx7dznqj52gxt\",\"authorization\":\"173112\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-03T17:29:31-05:00\",\"operation_date\":\"2023-08-03T17:31:12-05:00\",\"description\":\"Pago Mensual academia: Jerónimo Quiñonez Raigoza (1023547001)\",\"error_message\":null,\"order_id\":\"79514E888B8F2ACACC68738D0CBB803E_NV013MOBW5_1691101767.2306\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX8031\",\"holder_name\":\"EVELIN RAIGOZA M\",\"expiration_year\":\"25\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Evelin Yuliana\",\"last_name\":\"Raigoza Montoya\",\"email\":\"evelin0118@hotmail.com\",\"phone_number\":\"3007454999\",\"address\":null,\"creation_date\":\"2023-08-03T17:29:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trptgvzpx7dznqj52gxt/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-03 22:31:14','2023-08-03 22:31:14'),(7390,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T19:47:29-05:00\",\"transaction\":{\"id\":\"tr0xdk06nlhtdjh1r9wi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T19:46:39-05:00\",\"operation_date\":\"2023-08-03T19:46:39-05:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Ruiz Linares (1239490468)\",\"error_message\":null,\"order_id\":\"9C8661BEFAE6DBCD08304DBF4DCAF0DB_NC0G1K6QE9_1691109997.1861\",\"due_date\":\"2023-08-04T07:46:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mavis\",\"last_name\":\"linares\",\"email\":\"mavis.linares@gmail.com\",\"phone_number\":\"3042543407\",\"address\":null,\"creation_date\":\"2023-08-03T19:46:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0xdk06nlhtdjh1r9wi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 00:47:30','2023-08-04 00:47:30'),(7391,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T19:48:32-05:00\",\"transaction\":{\"id\":\"tr0xdk06nlhtdjh1r9wi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84224958\",\"creation_date\":\"2023-08-03T19:46:39-05:00\",\"operation_date\":\"2023-08-03T19:48:26-05:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Ruiz Linares (1239490468)\",\"error_message\":null,\"order_id\":\"9C8661BEFAE6DBCD08304DBF4DCAF0DB_NC0G1K6QE9_1691109997.1861\",\"due_date\":\"2023-08-04T07:46:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mavis\",\"last_name\":\"linares\",\"email\":\"mavis.linares@gmail.com\",\"phone_number\":\"3042543407\",\"address\":null,\"creation_date\":\"2023-08-03T19:46:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 00:48:33','2023-08-04 00:48:33'),(7392,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T20:06:17-05:00\",\"transaction\":{\"id\":\"trmns96psuwtabsw6cfu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T20:05:02-05:00\",\"operation_date\":\"2023-08-03T20:05:02-05:00\",\"description\":\"Pago Mensual academia: jeronimo pineda montoya (1032019947)\",\"error_message\":null,\"order_id\":\"2B323D6EB28422CEF49B266557DD31AD_8BCKJYEZV1_1691111092.0826\",\"due_date\":\"2023-08-04T08:05:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"pineda montoya\",\"email\":\"yeisonpinedasaenz85@gmail.com\",\"phone_number\":\"3113244126\",\"address\":null,\"creation_date\":\"2023-08-03T20:05:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmns96psuwtabsw6cfu/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 01:06:18','2023-08-04 01:06:18'),(7393,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T19:09:12-06:00\",\"transaction\":{\"id\":\"trmns96psuwtabsw6cfu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84260827\",\"creation_date\":\"2023-08-03T20:05:02-06:00\",\"operation_date\":\"2023-08-03T20:07:52-06:00\",\"description\":\"Pago Mensual academia: jeronimo pineda montoya (1032019947)\",\"error_message\":null,\"order_id\":\"2B323D6EB28422CEF49B266557DD31AD_8BCKJYEZV1_1691111092.0826\",\"due_date\":\"2023-08-04T08:05:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"pineda montoya\",\"email\":\"yeisonpinedasaenz85@gmail.com\",\"phone_number\":\"3113244126\",\"address\":null,\"creation_date\":\"2023-08-03T20:05:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 01:09:13','2023-08-04 01:09:13'),(7394,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T19:12:10-06:00\",\"transaction\":{\"id\":\"trmns96psuwtabsw6cfu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84260827\",\"creation_date\":\"2023-08-03T20:05:02-06:00\",\"operation_date\":\"2023-08-03T20:07:52-06:00\",\"description\":\"Pago Mensual academia: jeronimo pineda montoya (1032019947)\",\"error_message\":null,\"order_id\":\"2B323D6EB28422CEF49B266557DD31AD_8BCKJYEZV1_1691111092.0826\",\"due_date\":\"2023-08-04T08:05:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"pineda montoya\",\"email\":\"yeisonpinedasaenz85@gmail.com\",\"phone_number\":\"3113244126\",\"address\":null,\"creation_date\":\"2023-08-03T20:05:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 01:12:11','2023-08-04 01:12:11'),(7395,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T20:44:25-05:00\",\"transaction\":{\"id\":\"trmq6cygxh8yguecnsmz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T20:43:23-05:00\",\"operation_date\":\"2023-08-03T20:43:23-05:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":null,\"order_id\":\"52B738B303D90A884137546353E09EBB_QK2OVR9DE7_1691113399.8491\",\"due_date\":\"2023-08-04T08:43:23-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-08-03T20:43:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmq6cygxh8yguecnsmz/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 01:44:27','2023-08-04 01:44:27'),(7396,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T20:46:10-05:00\",\"transaction\":{\"id\":\"trmq6cygxh8yguecnsmz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84332216\",\"creation_date\":\"2023-08-03T20:43:23-05:00\",\"operation_date\":\"2023-08-03T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":null,\"order_id\":\"52B738B303D90A884137546353E09EBB_QK2OVR9DE7_1691113399.8491\",\"due_date\":\"2023-08-04T08:43:23-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-08-03T20:43:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 01:46:10','2023-08-04 01:46:10'),(7397,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T21:15:20-05:00\",\"transaction\":{\"id\":\"trurdruvgroql7jtng2g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T21:13:59-05:00\",\"operation_date\":\"2023-08-03T21:13:59-05:00\",\"description\":\"Pago Mensual academia: Alejandro Alonso Vargas (1023646217)\",\"error_message\":null,\"order_id\":\"_1691115235.6768\",\"due_date\":\"2023-08-04T09:13:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Alonso\",\"email\":\"alexanderalonso1789@gmail.com\",\"phone_number\":\"3136451651\",\"address\":null,\"creation_date\":\"2023-08-03T21:13:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trurdruvgroql7jtng2g/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 02:15:21','2023-08-04 02:15:21'),(7398,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  767\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T21:16:35-05:00\",\"transaction\":{\"id\":\"trurdruvgroql7jtng2g\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84386511\",\"creation_date\":\"2023-08-03T21:13:59-05:00\",\"operation_date\":\"2023-08-03T21:16:30-05:00\",\"description\":\"Pago Mensual academia: Alejandro Alonso Vargas (1023646217)\",\"error_message\":null,\"order_id\":\"_1691115235.6768\",\"due_date\":\"2023-08-04T09:13:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Alonso\",\"email\":\"alexanderalonso1789@gmail.com\",\"phone_number\":\"3136451651\",\"address\":null,\"creation_date\":\"2023-08-03T21:13:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 02:16:36','2023-08-04 02:16:36'),(7399,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T21:42:12-05:00\",\"transaction\":{\"id\":\"trxbuew896tslxehtovj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T21:41:39-05:00\",\"operation_date\":\"2023-08-03T21:41:39-05:00\",\"description\":\"Pago Mensual academia: Tomás Enrique Contreras Gómez (1037672749)\",\"error_message\":null,\"order_id\":\"B58AC8403EB9CF17FAE1DCD16DF71FDE_4K2Q3DOSAU_1691116896.7124\",\"due_date\":\"2023-08-04T09:41:39-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Enrique Antonio\",\"last_name\":\"Contreras Pereira\",\"email\":\"enriqueac54@gmail.com\",\"phone_number\":\"3177817335\",\"address\":null,\"creation_date\":\"2023-08-03T21:41:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxbuew896tslxehtovj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 02:42:12','2023-08-04 02:42:12'),(7400,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T21:43:14-05:00\",\"transaction\":{\"id\":\"trxbuew896tslxehtovj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84430611\",\"creation_date\":\"2023-08-03T21:41:39-05:00\",\"operation_date\":\"2023-08-03T21:43:01-05:00\",\"description\":\"Pago Mensual academia: Tomás Enrique Contreras Gómez (1037672749)\",\"error_message\":null,\"order_id\":\"B58AC8403EB9CF17FAE1DCD16DF71FDE_4K2Q3DOSAU_1691116896.7124\",\"due_date\":\"2023-08-04T09:41:39-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Enrique Antonio\",\"last_name\":\"Contreras Pereira\",\"email\":\"enriqueac54@gmail.com\",\"phone_number\":\"3177817335\",\"address\":null,\"creation_date\":\"2023-08-03T21:41:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 02:43:15','2023-08-04 02:43:15'),(7401,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T22:05:52-05:00\",\"transaction\":{\"id\":\"trunx5duwvfare5k35w3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T22:03:59-05:00\",\"operation_date\":\"2023-08-03T22:03:59-05:00\",\"description\":\"Pago Mensual academia: Emiliano Soto Cardona (1027663640)\",\"error_message\":null,\"order_id\":\"FD8C07A31F8A85910AD8476F5F7EFB27_FIPXOEHYB2_1691118234.4526\",\"due_date\":\"2023-08-04T10:03:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Milena\",\"last_name\":\"Cardona Rios\",\"email\":\"milenacardona614@gmail.com\",\"phone_number\":\"3046204578\",\"address\":null,\"creation_date\":\"2023-08-03T22:03:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trunx5duwvfare5k35w3/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 03:05:52','2023-08-04 03:05:52'),(7402,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T21:09:11-06:00\",\"transaction\":{\"id\":\"trunx5duwvfare5k35w3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84465264\",\"creation_date\":\"2023-08-03T22:03:59-06:00\",\"operation_date\":\"2023-08-03T22:09:02-06:00\",\"description\":\"Pago Mensual academia: Emiliano Soto Cardona (1027663640)\",\"error_message\":null,\"order_id\":\"FD8C07A31F8A85910AD8476F5F7EFB27_FIPXOEHYB2_1691118234.4526\",\"due_date\":\"2023-08-04T10:03:59-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Milena\",\"last_name\":\"Cardona Rios\",\"email\":\"milenacardona614@gmail.com\",\"phone_number\":\"3046204578\",\"address\":null,\"creation_date\":\"2023-08-03T22:03:59-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 03:09:12','2023-08-04 03:09:12'),(7403,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  951\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T22:17:29-05:00\",\"transaction\":{\"id\":\"trujd29kg2k1ek2s5kr8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T22:16:13-05:00\",\"operation_date\":\"2023-08-03T22:16:13-05:00\",\"description\":\"Pago Mensual academia: José Angel Londoño Barrientos (1018244113)\",\"error_message\":null,\"order_id\":\"F507783927F2EC2737BA40AFBD17EFB5_NYDK7AQTLO_1691118964.4187\",\"due_date\":\"2023-08-04T10:16:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"OMAIRA MARGARITA\",\"last_name\":\"BARRIENTOS MORA\",\"email\":\"omairabarrientos@hotmail.com\",\"phone_number\":\"3128832937\",\"address\":null,\"creation_date\":\"2023-08-03T22:16:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trujd29kg2k1ek2s5kr8/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 03:17:30','2023-08-04 03:17:30'),(7404,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  833\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T22:20:14-05:00\",\"transaction\":{\"id\":\"trujd29kg2k1ek2s5kr8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84479490\",\"creation_date\":\"2023-08-03T22:16:13-05:00\",\"operation_date\":\"2023-08-03T22:19:36-05:00\",\"description\":\"Pago Mensual academia: José Angel Londoño Barrientos (1018244113)\",\"error_message\":null,\"order_id\":\"F507783927F2EC2737BA40AFBD17EFB5_NYDK7AQTLO_1691118964.4187\",\"due_date\":\"2023-08-04T10:16:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"OMAIRA MARGARITA\",\"last_name\":\"BARRIENTOS MORA\",\"email\":\"omairabarrientos@hotmail.com\",\"phone_number\":\"3128832937\",\"address\":null,\"creation_date\":\"2023-08-03T22:16:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 03:20:14','2023-08-04 03:20:14'),(7405,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-03T22:25:19-05:00\",\"transaction\":{\"id\":\"trse5kbrwvtl48ojzvhu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-03T22:23:22-05:00\",\"operation_date\":\"2023-08-03T22:23:22-05:00\",\"description\":\"Pago Mensual academia: emanuel zuluaga henao (1027806389)\",\"error_message\":null,\"order_id\":\"706608CFDBCC1886BB7EEA5513F90133_OLU245KWRZ_1691119399.7668\",\"due_date\":\"2023-08-04T10:23:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"emanuel\",\"last_name\":\"zuluaga henao\",\"email\":\"jackehc03@gmail.com\",\"phone_number\":\"3215387431\",\"address\":null,\"creation_date\":\"2023-08-03T22:23:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trse5kbrwvtl48ojzvhu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 03:25:20','2023-08-04 03:25:20'),(7406,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-03T21:27:10-06:00\",\"transaction\":{\"id\":\"trse5kbrwvtl48ojzvhu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84488688\",\"creation_date\":\"2023-08-03T22:23:22-06:00\",\"operation_date\":\"2023-08-03T22:26:03-06:00\",\"description\":\"Pago Mensual academia: emanuel zuluaga henao (1027806389)\",\"error_message\":null,\"order_id\":\"706608CFDBCC1886BB7EEA5513F90133_OLU245KWRZ_1691119399.7668\",\"due_date\":\"2023-08-04T10:23:22-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"emanuel\",\"last_name\":\"zuluaga henao\",\"email\":\"jackehc03@gmail.com\",\"phone_number\":\"3215387431\",\"address\":null,\"creation_date\":\"2023-08-03T22:23:22-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 03:27:11','2023-08-04 03:27:11'),(7407,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-04T02:11:02-06:00\",\"transaction\":{\"id\":\"trvyyv7amo7pz9vcazom\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-03T09:46:21-06:00\",\"operation_date\":\"2023-08-03T09:46:21-06:00\",\"description\":\"Pago Mensual academia: lucio gaviria uribe (1035010951)\",\"error_message\":null,\"order_id\":\"D54CE9DE9DF77C579775A7B6B1A4BDC0_52UKOGR4TN_1691073976.376\",\"due_date\":\"2023-08-03T21:46:21-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"gaviria\",\"email\":\"sebastiangaviria@centrosur.co\",\"phone_number\":\"3168763936\",\"address\":null,\"creation_date\":\"2023-08-03T09:46:21-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvyyv7amo7pz9vcazom/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 08:11:03','2023-08-04 08:11:03'),(7408,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-04T02:11:02-06:00\",\"transaction\":{\"id\":\"troymfhfrddujfqolxpi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-02T16:45:48-06:00\",\"operation_date\":\"2023-08-02T16:45:48-06:00\",\"description\":\"Pago Mensual academia: Alejandro Alonso Vargas (1023646217)\",\"error_message\":null,\"order_id\":\"_1691012745.2956\",\"due_date\":\"2023-08-03T04:45:48-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Alonso\",\"email\":\"alexanderalonso1789@gmail.com\",\"phone_number\":\"3136451651\",\"address\":null,\"creation_date\":\"2023-08-02T16:45:48-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troymfhfrddujfqolxpi/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 08:11:03','2023-08-04 08:11:03'),(7409,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-04T02:11:02-06:00\",\"transaction\":{\"id\":\"trhjtsbx8c7ldazoz4rp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-03T09:51:02-06:00\",\"operation_date\":\"2023-08-03T09:51:02-06:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":null,\"order_id\":\"95177E528F8D6C7C28A5473FD5A471B6_296K0V14JQ_1691074249.6191\",\"due_date\":\"2023-08-03T21:51:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lina maria\",\"last_name\":\"jaramillo sanmartin\",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3006934069\",\"address\":null,\"creation_date\":\"2023-08-03T09:51:02-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhjtsbx8c7ldazoz4rp/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 08:11:03','2023-08-04 08:11:03'),(7410,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-04T02:11:02-06:00\",\"transaction\":{\"id\":\"trfuefv2dyek9mupdyr6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-02T21:15:13-06:00\",\"operation_date\":\"2023-08-02T21:15:13-06:00\",\"description\":\"Pago Mensual academia: JERONIMO CANO TORO (1020325226)\",\"error_message\":null,\"order_id\":\"C57ABE86DE4E516E12DFA386053FBFE2_CSUKEXPMAJ_1691028911.5294\",\"due_date\":\"2023-08-03T09:15:13-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"YENNI\",\"last_name\":\"TORO CELIS\",\"email\":\"yeniceto@yahoo.es\",\"phone_number\":\"3103701113\",\"address\":null,\"creation_date\":\"2023-08-02T21:15:13-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfuefv2dyek9mupdyr6/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 08:11:03','2023-08-04 08:11:03'),(7411,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-04T02:11:16-06:00\",\"transaction\":{\"id\":\"trs9brceszy3wtoh3641\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-03T08:10:13-06:00\",\"operation_date\":\"2023-08-03T08:10:13-06:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"48AEDB8880CAB8C45637ABC7493ECDDD_XV5EHSBW9U_1691068209.6239\",\"due_date\":\"2023-08-03T20:10:13-06:00\",\"amount\":200000.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Betancur Posso\",\"email\":\"danibp18@hotmail.com\",\"phone_number\":\"3205719270\",\"address\":null,\"creation_date\":\"2023-08-03T08:10:13-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trs9brceszy3wtoh3641/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 08:11:17','2023-08-04 08:11:17'),(7412,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-04T02:11:16-06:00\",\"transaction\":{\"id\":\"trsayaogo4oacsxcvt7g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-03T08:03:24-06:00\",\"operation_date\":\"2023-08-03T08:03:24-06:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"16A5CDAE362B8D27A1D8F8C7B78B4330_S9AQXBFK62_1691067800.5051\",\"due_date\":\"2023-08-03T20:03:24-06:00\",\"amount\":200000.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Betancur Posso\",\"email\":\"danibp18@hotmail.com\",\"phone_number\":\"3205719270\",\"address\":null,\"creation_date\":\"2023-08-03T08:03:24-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trsayaogo4oacsxcvt7g/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 08:11:17','2023-08-04 08:11:17'),(7413,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-04T02:11:16-06:00\",\"transaction\":{\"id\":\"trplzzxnipllzvy4hpcm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-03T07:52:59-06:00\",\"operation_date\":\"2023-08-03T07:52:59-06:00\",\"description\":\"Pago de boleta o abono\",\"error_message\":null,\"order_id\":\"0E01938FC48A2CFB5F2217FBFB00722D_GPZLO5V067_1691067173.967\",\"due_date\":\"2023-08-03T19:52:59-06:00\",\"amount\":200000.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Betancur Posso\",\"email\":\"danibp18@hotmail.com\",\"phone_number\":\"3205719270\",\"address\":null,\"creation_date\":\"2023-08-03T07:52:59-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trplzzxnipllzvy4hpcm/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 08:11:17','2023-08-04 08:11:17'),(7414,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T07:13:53-05:00\",\"transaction\":{\"id\":\"trqsb7vi4gpgq3i3krf4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T07:12:59-05:00\",\"operation_date\":\"2023-08-04T07:12:59-05:00\",\"description\":\"Pago Mensual academia: Martin Hernandez Gomez (1033267201)\",\"error_message\":null,\"order_id\":\"CC9657884708170E160C8372D92F3535_40E7FHK5AI_1691151175.7626\",\"due_date\":\"2023-08-04T19:12:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Francisco\",\"last_name\":\"Hernandez\",\"email\":\"pacho8612@gmail.com\",\"phone_number\":\"3117897533\",\"address\":null,\"creation_date\":\"2023-08-04T07:12:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqsb7vi4gpgq3i3krf4/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 12:13:54','2023-08-04 12:13:54'),(7415,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T07:14:43-05:00\",\"transaction\":{\"id\":\"trqsb7vi4gpgq3i3krf4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84658665\",\"creation_date\":\"2023-08-04T07:12:59-05:00\",\"operation_date\":\"2023-08-04T07:14:32-05:00\",\"description\":\"Pago Mensual academia: Martin Hernandez Gomez (1033267201)\",\"error_message\":null,\"order_id\":\"CC9657884708170E160C8372D92F3535_40E7FHK5AI_1691151175.7626\",\"due_date\":\"2023-08-04T19:12:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Francisco\",\"last_name\":\"Hernandez\",\"email\":\"pacho8612@gmail.com\",\"phone_number\":\"3117897533\",\"address\":null,\"creation_date\":\"2023-08-04T07:12:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 12:14:44','2023-08-04 12:14:44'),(7416,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T07:22:48-05:00\",\"transaction\":{\"id\":\"trc3wgjmkzww7zf7jo07\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T07:22:16-05:00\",\"operation_date\":\"2023-08-04T07:22:16-05:00\",\"description\":\"Pago Mensual academia: Santiago Hernandez palomino (1018255925)\",\"error_message\":null,\"order_id\":\"485843481A7EDACBFCE101ECB1E4D2A8_4OT16JM7DE_1691151731.0624\",\"due_date\":\"2023-08-04T19:22:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sergio andres\",\"last_name\":\"Hernandez jaramillo\",\"email\":\"sahj00@gmail.com\",\"phone_number\":\"3106635700\",\"address\":null,\"creation_date\":\"2023-08-04T07:22:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc3wgjmkzww7zf7jo07/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 12:22:49','2023-08-04 12:22:49'),(7417,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T07:25:33-05:00\",\"transaction\":{\"id\":\"tr4m5n6jqknaubciuzah\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T07:25:06-05:00\",\"operation_date\":\"2023-08-04T07:25:06-05:00\",\"description\":\"Pago Mensual academia: Santiago Hernandez palomino (1018255925)\",\"error_message\":null,\"order_id\":\"A87D27F712DF362CD22C7A8EF823E987_Y49RMLJCT2_1691151903.857\",\"due_date\":\"2023-08-04T19:25:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sergio andres\",\"last_name\":\"Hernandez jaramillo\",\"email\":\"sahj00@gmail.com\",\"phone_number\":\"3106635700\",\"address\":null,\"creation_date\":\"2023-08-04T07:25:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4m5n6jqknaubciuzah/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 12:25:34','2023-08-04 12:25:34'),(7418,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T07:29:07-05:00\",\"transaction\":{\"id\":\"tr4m5n6jqknaubciuzah\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84671765\",\"creation_date\":\"2023-08-04T07:25:06-05:00\",\"operation_date\":\"2023-08-04T07:28:39-05:00\",\"description\":\"Pago Mensual academia: Santiago Hernandez palomino (1018255925)\",\"error_message\":null,\"order_id\":\"A87D27F712DF362CD22C7A8EF823E987_Y49RMLJCT2_1691151903.857\",\"due_date\":\"2023-08-04T19:25:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sergio andres\",\"last_name\":\"Hernandez jaramillo\",\"email\":\"sahj00@gmail.com\",\"phone_number\":\"3106635700\",\"address\":null,\"creation_date\":\"2023-08-04T07:25:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 12:29:08','2023-08-04 12:29:08'),(7419,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-04T06:39:08-06:00\",\"transaction\":{\"id\":\"trc3wgjmkzww7zf7jo07\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-04T07:22:16-06:00\",\"operation_date\":\"2023-08-04T07:38:24-06:00\",\"description\":\"Pago Mensual academia: Santiago Hernandez palomino (1018255925)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"485843481A7EDACBFCE101ECB1E4D2A8_4OT16JM7DE_1691151731.0624\",\"due_date\":\"2023-08-04T19:22:16-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Sergio andres\",\"last_name\":\"Hernandez jaramillo\",\"email\":\"sahj00@gmail.com\",\"phone_number\":\"3106635700\",\"address\":null,\"creation_date\":\"2023-08-04T07:22:16-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 12:39:09','2023-08-04 12:39:09'),(7420,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T07:54:02-05:00\",\"transaction\":{\"id\":\"trq780cs7kf5mgynoggs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T07:53:20-05:00\",\"operation_date\":\"2023-08-04T07:53:20-05:00\",\"description\":\"Pago Mensual academia: Josue Paternina Bohorquez (1011405994)\",\"error_message\":null,\"order_id\":\"60A70BB05B08D6CD95DEB3BDB750DCE8_QSJLFA3V58_1691153595.6424\",\"due_date\":\"2023-08-04T19:53:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sebastian\",\"last_name\":\"gutierrez montoya\",\"email\":\"guti0872@gmail.com\",\"phone_number\":\"3206572642\",\"address\":null,\"creation_date\":\"2023-08-04T07:53:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq780cs7kf5mgynoggs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 12:54:03','2023-08-04 12:54:03'),(7421,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T07:55:20-05:00\",\"transaction\":{\"id\":\"trq780cs7kf5mgynoggs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84709023\",\"creation_date\":\"2023-08-04T07:53:20-05:00\",\"operation_date\":\"2023-08-04T07:55:14-05:00\",\"description\":\"Pago Mensual academia: Josue Paternina Bohorquez (1011405994)\",\"error_message\":null,\"order_id\":\"60A70BB05B08D6CD95DEB3BDB750DCE8_QSJLFA3V58_1691153595.6424\",\"due_date\":\"2023-08-04T19:53:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sebastian\",\"last_name\":\"gutierrez montoya\",\"email\":\"guti0872@gmail.com\",\"phone_number\":\"3206572642\",\"address\":null,\"creation_date\":\"2023-08-04T07:53:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 12:55:21','2023-08-04 12:55:21'),(7422,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T07:57:36-05:00\",\"transaction\":{\"id\":\"trmau4mexv2dhnfurqfx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T07:55:57-05:00\",\"operation_date\":\"2023-08-04T07:55:57-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Mejía Arias (1036454391)\",\"error_message\":null,\"order_id\":\"A495EEBBFA243B79C5B9B224C482D0C2_04728MZK5P_1691153752.0089\",\"due_date\":\"2023-08-04T19:55:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cesar Augusto\",\"last_name\":\"Mejía Mejia\",\"email\":\"cesarm.cm417@gmail.com\",\"phone_number\":\"3052671413\",\"address\":null,\"creation_date\":\"2023-08-04T07:55:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmau4mexv2dhnfurqfx/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 12:57:36','2023-08-04 12:57:36'),(7423,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T07:59:58-05:00\",\"transaction\":{\"id\":\"trmau4mexv2dhnfurqfx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84714161\",\"creation_date\":\"2023-08-04T07:55:57-05:00\",\"operation_date\":\"2023-08-04T07:59:13-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Mejía Arias (1036454391)\",\"error_message\":null,\"order_id\":\"A495EEBBFA243B79C5B9B224C482D0C2_04728MZK5P_1691153752.0089\",\"due_date\":\"2023-08-04T19:55:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cesar Augusto\",\"last_name\":\"Mejía Mejia\",\"email\":\"cesarm.cm417@gmail.com\",\"phone_number\":\"3052671413\",\"address\":null,\"creation_date\":\"2023-08-04T07:55:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 12:59:59','2023-08-04 12:59:59'),(7424,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T08:53:00-05:00\",\"transaction\":{\"id\":\"trps7qfk1cprnn5sxgw9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T08:52:13-05:00\",\"operation_date\":\"2023-08-04T08:52:13-05:00\",\"description\":\"Pago Mensual academia: Emilio Alzate Alzate (1035008774)\",\"error_message\":null,\"order_id\":\"C819904DDE95535C60452B16C1C494F6_6SK028VAZL_1691157131.1757\",\"due_date\":\"2023-08-04T20:52:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Esteban\",\"last_name\":\"Alzate Saldarriaga\",\"email\":\"alzate83@hotmail.com\",\"phone_number\":\"3104449162\",\"address\":null,\"creation_date\":\"2023-08-04T08:52:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trps7qfk1cprnn5sxgw9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 13:53:01','2023-08-04 13:53:01'),(7425,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T08:53:53-05:00\",\"transaction\":{\"id\":\"trps7qfk1cprnn5sxgw9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84818313\",\"creation_date\":\"2023-08-04T08:52:13-05:00\",\"operation_date\":\"2023-08-04T08:53:47-05:00\",\"description\":\"Pago Mensual academia: Emilio Alzate Alzate (1035008774)\",\"error_message\":null,\"order_id\":\"C819904DDE95535C60452B16C1C494F6_6SK028VAZL_1691157131.1757\",\"due_date\":\"2023-08-04T20:52:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Esteban\",\"last_name\":\"Alzate Saldarriaga\",\"email\":\"alzate83@hotmail.com\",\"phone_number\":\"3104449162\",\"address\":null,\"creation_date\":\"2023-08-04T08:52:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 13:53:53','2023-08-04 13:53:53'),(7426,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T08:55:23-05:00\",\"transaction\":{\"id\":\"trroqqvou46l1nrqonou\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T08:54:35-05:00\",\"operation_date\":\"2023-08-04T08:54:35-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Alzate Alzate (1021931601)\",\"error_message\":null,\"order_id\":\"C1D0F19C3F827DAF0EDD3E69C3B195A9_W8ZSV3Y41N_1691157272.9783\",\"due_date\":\"2023-08-04T20:54:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Esteban\",\"last_name\":\"Alzate Saldarriaga\",\"email\":\"alzate83@hotmail.com\",\"phone_number\":\"3104449162\",\"address\":null,\"creation_date\":\"2023-08-04T08:54:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trroqqvou46l1nrqonou/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 13:55:24','2023-08-04 13:55:24'),(7427,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1147\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T08:55:36-05:00\",\"transaction\":{\"id\":\"trntqsmftvfqo0xeosao\",\"authorization\":\"R05432\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-03T11:33:45-05:00\",\"operation_date\":\"2023-08-04T08:55:35-05:00\",\"description\":\"Pago Mensual academia: lucio gaviria uribe (1035010951)\",\"error_message\":null,\"order_id\":\"D54CE9DE9DF77C579775A7B6B1A4BDC0_52UKOGR4TN_1691080422.8279\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX0348\",\"holder_name\":\"Sebastian Gaviria\",\"expiration_year\":\"27\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"sebastian\",\"last_name\":\"gaviria\",\"email\":\"sebastiangaviria@centrosur.co\",\"phone_number\":\"3168763936\",\"address\":null,\"creation_date\":\"2023-08-03T11:33:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trntqsmftvfqo0xeosao/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-04 13:55:36','2023-08-04 13:55:36'),(7428,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T08:56:41-05:00\",\"transaction\":{\"id\":\"trroqqvou46l1nrqonou\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"84823505\",\"creation_date\":\"2023-08-04T08:54:35-05:00\",\"operation_date\":\"2023-08-04T08:56:34-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Alzate Alzate (1021931601)\",\"error_message\":null,\"order_id\":\"C1D0F19C3F827DAF0EDD3E69C3B195A9_W8ZSV3Y41N_1691157272.9783\",\"due_date\":\"2023-08-04T20:54:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Esteban\",\"last_name\":\"Alzate Saldarriaga\",\"email\":\"alzate83@hotmail.com\",\"phone_number\":\"3104449162\",\"address\":null,\"creation_date\":\"2023-08-04T08:54:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 13:56:42','2023-08-04 13:56:42'),(7429,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T09:19:56-05:00\",\"transaction\":{\"id\":\"trkbtfutvjue3ziy8yru\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-04T09:19:56-05:00\",\"operation_date\":\"2023-08-04T09:19:56-05:00\",\"description\":\"Pago Inscripción academia: Gabriel Gómez Rendón (1040578581)\",\"error_message\":null,\"order_id\":\"72B386224056BF940CD5B01341F65E9D_9ALO87XUV2_1691158790.9948\",\"amount\":301000.00,\"customer\":{\"name\":\"Gabriel\",\"last_name\":\"Gómez Rendón\",\"email\":\"krendon54@gmail.com\",\"phone_number\":\"3022945868\",\"address\":null,\"creation_date\":\"2023-08-04T09:19:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkbtfutvjue3ziy8yru/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-04 14:19:57','2023-08-04 14:19:57'),(7430,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1218\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T09:21:00-05:00\",\"transaction\":{\"id\":\"trkbtfutvjue3ziy8yru\",\"authorization\":\"557414\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-08-04T09:19:56-05:00\",\"operation_date\":\"2023-08-04T09:20:57-05:00\",\"description\":\"Pago Inscripción academia: Gabriel Gómez Rendón (1040578581)\",\"error_message\":null,\"order_id\":\"72B386224056BF940CD5B01341F65E9D_9ALO87XUV2_1691158790.9948\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"528209XXXXXX1100\",\"holder_name\":\"Karen Rendón \",\"expiration_year\":\"28\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"FALABELLA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":301000.00,\"customer\":{\"name\":\"Gabriel\",\"last_name\":\"Gómez Rendón\",\"email\":\"krendon54@gmail.com\",\"phone_number\":\"3022945868\",\"address\":null,\"creation_date\":\"2023-08-04T09:19:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkbtfutvjue3ziy8yru/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-04 14:21:00','2023-08-04 14:21:00'),(7431,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T09:21:55-05:00\",\"transaction\":{\"id\":\"trybfkcyqgcnlcdyehe8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-04T09:21:55-05:00\",\"operation_date\":\"2023-08-04T09:21:55-05:00\",\"description\":\"Pago Mensual academia: NICOLAS RIVERA ARANGO (1013019876)\",\"error_message\":null,\"order_id\":\"9DDB9DD5D8AEE9A76BF217A2A3C54833_MNZA26U4XL_1691158912.0767\",\"amount\":165900.00,\"customer\":{\"name\":\"SERGIO\",\"last_name\":\"RIVERA CELIS\",\"email\":\"chechocum@hotmail.com\",\"phone_number\":\"3124397825\",\"address\":null,\"creation_date\":\"2023-08-04T09:21:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trybfkcyqgcnlcdyehe8/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-04 14:21:55','2023-08-04 14:21:55'),(7432,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1131\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T09:22:30-05:00\",\"transaction\":{\"id\":\"trybfkcyqgcnlcdyehe8\",\"authorization\":\"749978\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-04T09:21:55-05:00\",\"operation_date\":\"2023-08-04T09:22:29-05:00\",\"description\":\"Pago Mensual academia: NICOLAS RIVERA ARANGO (1013019876)\",\"error_message\":null,\"order_id\":\"9DDB9DD5D8AEE9A76BF217A2A3C54833_MNZA26U4XL_1691158912.0767\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"450418XXXXXX7576\",\"holder_name\":\"Sergio rivera celis\",\"expiration_year\":\"24\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"amount\":165900.00,\"customer\":{\"name\":\"SERGIO\",\"last_name\":\"RIVERA CELIS\",\"email\":\"chechocum@hotmail.com\",\"phone_number\":\"3124397825\",\"address\":null,\"creation_date\":\"2023-08-04T09:21:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trybfkcyqgcnlcdyehe8/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-04 14:22:31','2023-08-04 14:22:31'),(7433,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T09:22:48-05:00\",\"transaction\":{\"id\":\"trew5qabv1zd9tkxn5kf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-04T09:22:48-05:00\",\"operation_date\":\"2023-08-04T09:22:48-05:00\",\"description\":\"Pago Mensual academia: NICOLAS RIVERA ARANGO (1013019876)\",\"error_message\":null,\"order_id\":\"946E3ECE1FC8B24BD656449D88ECA941_917EKU0DI8_1691158965.7009\",\"amount\":165900.00,\"customer\":{\"name\":\"SERGIO\",\"last_name\":\"RIVERA CELIS\",\"email\":\"chechocum@hotmail.com\",\"phone_number\":\"3124397825\",\"address\":null,\"creation_date\":\"2023-08-04T09:22:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trew5qabv1zd9tkxn5kf/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-04 14:22:49','2023-08-04 14:22:49'),(7434,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T09:23:01-05:00\",\"transaction\":{\"id\":\"tre40ihezb6gjlxrpxio\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-04T09:23:01-05:00\",\"operation_date\":\"2023-08-04T09:23:01-05:00\",\"description\":\"Pago Mensual academia: Gabriel Gómez Rendón (1040578581)\",\"error_message\":null,\"order_id\":\"B98249B38337C5088BBC660D8F872D6A_NWG0J6ODCB_1691158979.2739\",\"amount\":95000.00,\"customer\":{\"name\":\"Gabriel\",\"last_name\":\"Gómez Rendón\",\"email\":\"krendon54@gmail.com\",\"phone_number\":\"3022945868\",\"address\":null,\"creation_date\":\"2023-08-04T09:23:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre40ihezb6gjlxrpxio/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-04 14:23:02','2023-08-04 14:23:02'),(7435,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1131\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T09:23:26-05:00\",\"transaction\":{\"id\":\"trew5qabv1zd9tkxn5kf\",\"authorization\":\"806039\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-04T09:22:48-05:00\",\"operation_date\":\"2023-08-04T09:23:25-05:00\",\"description\":\"Pago Mensual academia: NICOLAS RIVERA ARANGO (1013019876)\",\"error_message\":null,\"order_id\":\"946E3ECE1FC8B24BD656449D88ECA941_917EKU0DI8_1691158965.7009\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"450418XXXXXX7576\",\"holder_name\":\"Sergio rivera celis\",\"expiration_year\":\"24\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"amount\":165900.00,\"customer\":{\"name\":\"SERGIO\",\"last_name\":\"RIVERA CELIS\",\"email\":\"chechocum@hotmail.com\",\"phone_number\":\"3124397825\",\"address\":null,\"creation_date\":\"2023-08-04T09:22:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trew5qabv1zd9tkxn5kf/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-04 14:23:27','2023-08-04 14:23:27'),(7436,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1212\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T09:23:48-05:00\",\"transaction\":{\"id\":\"tre40ihezb6gjlxrpxio\",\"authorization\":\"549318\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-08-04T09:23:01-05:00\",\"operation_date\":\"2023-08-04T09:23:46-05:00\",\"description\":\"Pago Mensual academia: Gabriel Gómez Rendón (1040578581)\",\"error_message\":null,\"order_id\":\"B98249B38337C5088BBC660D8F872D6A_NWG0J6ODCB_1691158979.2739\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"528209XXXXXX1100\",\"holder_name\":\"Karen Rendón \",\"expiration_year\":\"28\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"FALABELLA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":95000.00,\"customer\":{\"name\":\"Gabriel\",\"last_name\":\"Gómez Rendón\",\"email\":\"krendon54@gmail.com\",\"phone_number\":\"3022945868\",\"address\":null,\"creation_date\":\"2023-08-04T09:23:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre40ihezb6gjlxrpxio/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-04 14:23:49','2023-08-04 14:23:49'),(7437,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T10:09:54-05:00\",\"transaction\":{\"id\":\"trwncocodfan4nv9glpk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T10:08:02-05:00\",\"operation_date\":\"2023-08-04T10:08:02-05:00\",\"description\":\"Pago Mensual academia: Jeronimo Espinosa Caballero (1019913798)\",\"error_message\":null,\"order_id\":\"645E6BFDD05D1A69C5E47B20F0A91D46_WK85H4V2PC_1691161668.137\",\"due_date\":\"2023-08-04T22:08:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge Espinosa\",\"last_name\":\"Espinosa \",\"email\":\"jorgehdoespinosa@gmail.com\",\"phone_number\":\"3164946292\",\"address\":null,\"creation_date\":\"2023-08-04T10:08:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwncocodfan4nv9glpk/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 15:09:55','2023-08-04 15:09:55'),(7438,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-04T09:21:13-06:00\",\"transaction\":{\"id\":\"trwncocodfan4nv9glpk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-04T10:08:02-06:00\",\"operation_date\":\"2023-08-04T10:08:02-06:00\",\"description\":\"Pago Mensual academia: Jeronimo Espinosa Caballero (1019913798)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"645E6BFDD05D1A69C5E47B20F0A91D46_WK85H4V2PC_1691161668.137\",\"due_date\":\"2023-08-04T22:08:02-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Jorge Espinosa\",\"last_name\":\"Espinosa \",\"email\":\"jorgehdoespinosa@gmail.com\",\"phone_number\":\"3164946292\",\"address\":null,\"creation_date\":\"2023-08-04T10:08:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 15:21:13','2023-08-04 15:21:13'),(7439,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T11:10:42-05:00\",\"transaction\":{\"id\":\"treedcqnrfh7qxsfswmk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T11:09:58-05:00\",\"operation_date\":\"2023-08-04T11:09:58-05:00\",\"description\":\"Pago Mensual academia: Jeronimo Espinosa Caballero (1019913798)\",\"error_message\":null,\"order_id\":\"645E6BFDD05D1A69C5E47B20F0A91D46_WK85H4V2PC_1691165396.0739\",\"due_date\":\"2023-08-04T23:09:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Carolina\",\"last_name\":\"Caballero Roa\",\"email\":\"sandracaballeroster@gmail.com\",\"phone_number\":\"3188272099\",\"address\":null,\"creation_date\":\"2023-08-04T11:09:58-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treedcqnrfh7qxsfswmk/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 16:10:43','2023-08-04 16:10:43'),(7440,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T10:12:44-06:00\",\"transaction\":{\"id\":\"treedcqnrfh7qxsfswmk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"85172184\",\"creation_date\":\"2023-08-04T11:09:58-06:00\",\"operation_date\":\"2023-08-04T00:00:00-06:00\",\"description\":\"Pago Mensual academia: Jeronimo Espinosa Caballero (1019913798)\",\"error_message\":null,\"order_id\":\"645E6BFDD05D1A69C5E47B20F0A91D46_WK85H4V2PC_1691165396.0739\",\"due_date\":\"2023-08-04T23:09:58-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Carolina\",\"last_name\":\"Caballero Roa\",\"email\":\"sandracaballeroster@gmail.com\",\"phone_number\":\"3188272099\",\"address\":null,\"creation_date\":\"2023-08-04T11:09:58-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 16:12:45','2023-08-04 16:12:45'),(7441,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T11:48:35-05:00\",\"transaction\":{\"id\":\"trvuj7aadfr7zkfgyk1x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T11:47:44-05:00\",\"operation_date\":\"2023-08-04T11:47:44-05:00\",\"description\":\"Pago Mensual academia: Josué Blandón Ospina (1036454829)\",\"error_message\":null,\"order_id\":\"CFCCE0621B49C983991EAD4C3D4D3B6B_85TNYPRWZE_1691167660.1498\",\"due_date\":\"2023-08-04T23:47:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Josue\",\"last_name\":\"Blandon Ospina\",\"email\":\"gospinab@gmail.com\",\"phone_number\":\"3003642004\",\"address\":null,\"creation_date\":\"2023-08-04T11:47:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvuj7aadfr7zkfgyk1x/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 16:48:36','2023-08-04 16:48:36'),(7442,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  842\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-04T11:09:11-06:00\",\"transaction\":{\"id\":\"trvuj7aadfr7zkfgyk1x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-04T11:47:44-06:00\",\"operation_date\":\"2023-08-04T11:48:42-06:00\",\"description\":\"Pago Mensual academia: Josué Blandón Ospina (1036454829)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"CFCCE0621B49C983991EAD4C3D4D3B6B_85TNYPRWZE_1691167660.1498\",\"due_date\":\"2023-08-04T23:47:44-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Josue\",\"last_name\":\"Blandon Ospina\",\"email\":\"gospinab@gmail.com\",\"phone_number\":\"3003642004\",\"address\":null,\"creation_date\":\"2023-08-04T11:47:44-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 17:09:12','2023-08-04 17:09:12'),(7443,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  842\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-04T11:12:09-06:00\",\"transaction\":{\"id\":\"trvuj7aadfr7zkfgyk1x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-04T11:47:44-06:00\",\"operation_date\":\"2023-08-04T11:48:42-06:00\",\"description\":\"Pago Mensual academia: Josué Blandón Ospina (1036454829)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"CFCCE0621B49C983991EAD4C3D4D3B6B_85TNYPRWZE_1691167660.1498\",\"due_date\":\"2023-08-04T23:47:44-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Josue\",\"last_name\":\"Blandon Ospina\",\"email\":\"gospinab@gmail.com\",\"phone_number\":\"3003642004\",\"address\":null,\"creation_date\":\"2023-08-04T11:47:44-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 17:12:10','2023-08-04 17:12:10'),(7444,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T13:02:22-05:00\",\"transaction\":{\"id\":\"tr2up9ur4qdsr1mqrokx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T13:00:40-05:00\",\"operation_date\":\"2023-08-04T13:00:40-05:00\",\"description\":\"Pago Mensual academia: isaac marin chica (1033270352)\",\"error_message\":null,\"order_id\":\"CA3EC598002D2E7662E2EF4BDD58278B_5JAV62PNXF_1691172037.3455\",\"due_date\":\"2023-08-05T01:00:40-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"oscar\",\"last_name\":\"marin carvajal\",\"email\":\"marinozkar20@gmail.com\",\"phone_number\":\"3015171110\",\"address\":null,\"creation_date\":\"2023-08-04T13:00:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2up9ur4qdsr1mqrokx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 18:02:22','2023-08-04 18:02:22'),(7445,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T13:04:18-05:00\",\"transaction\":{\"id\":\"tr2up9ur4qdsr1mqrokx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"85457523\",\"creation_date\":\"2023-08-04T13:00:40-05:00\",\"operation_date\":\"2023-08-04T13:04:03-05:00\",\"description\":\"Pago Mensual academia: isaac marin chica (1033270352)\",\"error_message\":null,\"order_id\":\"CA3EC598002D2E7662E2EF4BDD58278B_5JAV62PNXF_1691172037.3455\",\"due_date\":\"2023-08-05T01:00:40-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"oscar\",\"last_name\":\"marin carvajal\",\"email\":\"marinozkar20@gmail.com\",\"phone_number\":\"3015171110\",\"address\":null,\"creation_date\":\"2023-08-04T13:00:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 18:04:18','2023-08-04 18:04:18'),(7446,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T13:29:05-05:00\",\"transaction\":{\"id\":\"trq9m3vd8jmxj5v1gs9x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T13:28:07-05:00\",\"operation_date\":\"2023-08-04T13:28:07-05:00\",\"description\":\"Pago Mensual academia: Lucas Barrera Betancur (1028441382)\",\"error_message\":null,\"order_id\":\"A3788C8C64FD65C470E23E7534C3EBC8_CGIDR2KXTW_1691173678.6601\",\"due_date\":\"2023-08-05T01:28:07-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Betancur Ortiz\",\"email\":\"ivandariobarrerar@gmail.com\",\"phone_number\":\"3126341681\",\"address\":null,\"creation_date\":\"2023-08-04T13:28:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq9m3vd8jmxj5v1gs9x/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 18:29:06','2023-08-04 18:29:06'),(7447,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T12:30:24-06:00\",\"transaction\":{\"id\":\"trq9m3vd8jmxj5v1gs9x\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"85518501\",\"creation_date\":\"2023-08-04T13:28:07-06:00\",\"operation_date\":\"2023-08-04T13:30:21-06:00\",\"description\":\"Pago Mensual academia: Lucas Barrera Betancur (1028441382)\",\"error_message\":null,\"order_id\":\"A3788C8C64FD65C470E23E7534C3EBC8_CGIDR2KXTW_1691173678.6601\",\"due_date\":\"2023-08-05T01:28:07-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Betancur Ortiz\",\"email\":\"ivandariobarrerar@gmail.com\",\"phone_number\":\"3126341681\",\"address\":null,\"creation_date\":\"2023-08-04T13:28:07-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 18:30:25','2023-08-04 18:30:25'),(7448,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T13:40:31-05:00\",\"transaction\":{\"id\":\"trd1csavazy5xmwlvjpx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T13:39:47-05:00\",\"operation_date\":\"2023-08-04T13:39:47-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Montoya Restrepo (1020226839)\",\"error_message\":null,\"order_id\":\"7A430339C10C642C4B2251756FD1B484_EVPUOIACY5_1691174382.2071\",\"due_date\":\"2023-08-05T01:39:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Montoya\",\"email\":\"juancamont@gmail.com\",\"phone_number\":\"3122459571\",\"address\":null,\"creation_date\":\"2023-08-04T13:39:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trd1csavazy5xmwlvjpx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 18:40:32','2023-08-04 18:40:32'),(7449,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T13:41:27-05:00\",\"transaction\":{\"id\":\"trd1csavazy5xmwlvjpx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"85544379\",\"creation_date\":\"2023-08-04T13:39:47-05:00\",\"operation_date\":\"2023-08-04T13:41:22-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Montoya Restrepo (1020226839)\",\"error_message\":null,\"order_id\":\"7A430339C10C642C4B2251756FD1B484_EVPUOIACY5_1691174382.2071\",\"due_date\":\"2023-08-05T01:39:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Montoya\",\"email\":\"juancamont@gmail.com\",\"phone_number\":\"3122459571\",\"address\":null,\"creation_date\":\"2023-08-04T13:39:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 18:41:28','2023-08-04 18:41:28'),(7450,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T13:42:29-05:00\",\"transaction\":{\"id\":\"trbrvvj1vrmo9x87viuv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T13:41:54-05:00\",\"operation_date\":\"2023-08-04T13:41:54-05:00\",\"description\":\"Pago Mensual academia: Tomas Montoya Restrepo (1020228427)\",\"error_message\":null,\"order_id\":\"D5D7F5BBA709F5CBBE1F74977096FEB3_6RZHL0K872_1691174511.7041\",\"due_date\":\"2023-08-05T01:41:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Montoya\",\"email\":\"juancamont@gmail.com\",\"phone_number\":\"3122459571\",\"address\":null,\"creation_date\":\"2023-08-04T13:41:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbrvvj1vrmo9x87viuv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 18:42:29','2023-08-04 18:42:29'),(7451,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T13:43:27-05:00\",\"transaction\":{\"id\":\"trbrvvj1vrmo9x87viuv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"85549046\",\"creation_date\":\"2023-08-04T13:41:54-05:00\",\"operation_date\":\"2023-08-04T13:43:23-05:00\",\"description\":\"Pago Mensual academia: Tomas Montoya Restrepo (1020228427)\",\"error_message\":null,\"order_id\":\"D5D7F5BBA709F5CBBE1F74977096FEB3_6RZHL0K872_1691174511.7041\",\"due_date\":\"2023-08-05T01:41:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Montoya\",\"email\":\"juancamont@gmail.com\",\"phone_number\":\"3122459571\",\"address\":null,\"creation_date\":\"2023-08-04T13:41:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 18:43:28','2023-08-04 18:43:28'),(7452,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T13:54:09-05:00\",\"transaction\":{\"id\":\"trn8x1rrarfq0xydh2cf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T13:53:22-05:00\",\"operation_date\":\"2023-08-04T13:53:22-05:00\",\"description\":\"Pago Mensual academia: Josué Blandón Ospina (1036454829)\",\"error_message\":null,\"order_id\":\"CFCCE0621B49C983991EAD4C3D4D3B6B_85TNYPRWZE_1691175199.0481\",\"due_date\":\"2023-08-05T01:53:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Josue\",\"last_name\":\"Blandon Ospina\",\"email\":\"gospinab@gmail.com\",\"phone_number\":\"3003642004\",\"address\":null,\"creation_date\":\"2023-08-04T13:53:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trn8x1rrarfq0xydh2cf/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 18:54:10','2023-08-04 18:54:10'),(7453,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T13:55:36-05:00\",\"transaction\":{\"id\":\"trn8x1rrarfq0xydh2cf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"85575652\",\"creation_date\":\"2023-08-04T13:53:22-05:00\",\"operation_date\":\"2023-08-04T13:55:07-05:00\",\"description\":\"Pago Mensual academia: Josué Blandón Ospina (1036454829)\",\"error_message\":null,\"order_id\":\"CFCCE0621B49C983991EAD4C3D4D3B6B_85TNYPRWZE_1691175199.0481\",\"due_date\":\"2023-08-05T01:53:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Josue\",\"last_name\":\"Blandon Ospina\",\"email\":\"gospinab@gmail.com\",\"phone_number\":\"3003642004\",\"address\":null,\"creation_date\":\"2023-08-04T13:53:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 18:55:36','2023-08-04 18:55:36'),(7454,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T13:57:28-05:00\",\"transaction\":{\"id\":\"trjgby1vrq0bmpficzpf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T13:56:27-05:00\",\"operation_date\":\"2023-08-04T13:56:27-05:00\",\"description\":\"Pago Mensual academia: Alejandro Espinosa Agudelo (1038872293)\",\"error_message\":null,\"order_id\":\"42CD63CB189C30ED03E42CE2C069566C_1W907QRVE6_1691175384.8245\",\"due_date\":\"2023-08-05T01:56:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Oscar Alejandro\",\"last_name\":\"Espinosa rios\",\"email\":\"osaler10@gmail.com\",\"phone_number\":\"3113005070\",\"address\":null,\"creation_date\":\"2023-08-04T13:56:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjgby1vrq0bmpficzpf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 18:57:28','2023-08-04 18:57:28'),(7455,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  855\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-04T13:00:14-06:00\",\"transaction\":{\"id\":\"trjgby1vrq0bmpficzpf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-04T13:56:27-06:00\",\"operation_date\":\"2023-08-04T13:59:01-06:00\",\"description\":\"Pago Mensual academia: Alejandro Espinosa Agudelo (1038872293)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"42CD63CB189C30ED03E42CE2C069566C_1W907QRVE6_1691175384.8245\",\"due_date\":\"2023-08-05T01:56:27-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Oscar Alejandro\",\"last_name\":\"Espinosa rios\",\"email\":\"osaler10@gmail.com\",\"phone_number\":\"3113005070\",\"address\":null,\"creation_date\":\"2023-08-04T13:56:27-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 19:00:14','2023-08-04 19:00:14'),(7456,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T14:12:31-05:00\",\"transaction\":{\"id\":\"trffundkk8ymznub0rlj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T14:11:52-05:00\",\"operation_date\":\"2023-08-04T14:11:52-05:00\",\"description\":\"Pago Mensual academia: Gabriel Serna Congote (1239489821)\",\"error_message\":null,\"order_id\":\"7A4BF9BA2BD774068AD50351FB898076_3QFDNJCU2S_1691176302.8324\",\"due_date\":\"2023-08-05T02:11:52-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Gabriel\",\"last_name\":\"Serna congote\",\"email\":\"odserna32@hotmail.com\",\"phone_number\":\"3104933364\",\"address\":null,\"creation_date\":\"2023-08-04T14:11:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trffundkk8ymznub0rlj/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 19:12:32','2023-08-04 19:12:32'),(7457,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T13:18:16-06:00\",\"transaction\":{\"id\":\"trffundkk8ymznub0rlj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"85619251\",\"creation_date\":\"2023-08-04T14:11:52-06:00\",\"operation_date\":\"2023-08-04T14:15:21-06:00\",\"description\":\"Pago Mensual academia: Gabriel Serna Congote (1239489821)\",\"error_message\":null,\"order_id\":\"7A4BF9BA2BD774068AD50351FB898076_3QFDNJCU2S_1691176302.8324\",\"due_date\":\"2023-08-05T02:11:52-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Gabriel\",\"last_name\":\"Serna congote\",\"email\":\"odserna32@hotmail.com\",\"phone_number\":\"3104933364\",\"address\":null,\"creation_date\":\"2023-08-04T14:11:52-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 19:18:16','2023-08-04 19:18:16'),(7458,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  886\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T14:53:26-05:00\",\"transaction\":{\"id\":\"trffbqnmt2ipemrlpcfh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-04T14:53:26-05:00\",\"operation_date\":\"2023-08-04T14:53:26-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"7371364B3D72AC9A3ED8638E6F0BE2C9_NEI8TKS7HZ_1691178795.2356\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-08-04T14:53:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trffbqnmt2ipemrlpcfh/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-04 19:53:27','2023-08-04 19:53:27'),(7459,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  576\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-04T14:55:28-05:00\",\"transaction\":{\"id\":\"trvf3rp008svfhfhh7le\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-08-04T14:55:28-05:00\",\"operation_date\":\"2023-08-04T14:55:28-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"7371364B3D72AC9A3ED8638E6F0BE2C9_NEI8TKS7HZ_1691178795.2356\",\"error_code\":3001,\"amount\":95000.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-04 19:55:29','2023-08-04 19:55:29'),(7460,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T16:04:19-05:00\",\"transaction\":{\"id\":\"tro0x40ct09tfr6o7wx6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-04T16:04:19-05:00\",\"operation_date\":\"2023-08-04T16:04:19-05:00\",\"description\":\"Pago Mensual academia: Emiliano Morales Rios (1038874755)\",\"error_message\":null,\"order_id\":\"FA84632D742F2729DC32CE8CB5D49733_47P8O3RM0S_1691183053.1247\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Morales Rios\",\"email\":\"stefar0210@gmail.com\",\"phone_number\":\"3136979739\",\"address\":null,\"creation_date\":\"2023-08-04T16:04:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro0x40ct09tfr6o7wx6/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-04 21:04:19','2023-08-04 21:04:19'),(7461,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T16:47:57-05:00\",\"transaction\":{\"id\":\"tr3no3ubbbqe4eeyxi1e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T16:47:07-05:00\",\"operation_date\":\"2023-08-04T16:47:07-05:00\",\"description\":\"Pago Mensual academia: martin sierra mesa (1123972382)\",\"error_message\":null,\"order_id\":\"8217BB4E7FA0541E0F5E04FEA764AB91_VIQUK6WRF0_1691185609.8526\",\"due_date\":\"2023-08-05T04:47:07-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"sierra mesa\",\"email\":\"haroldsipe@hotmail.com\",\"phone_number\":\"3147218029\",\"address\":null,\"creation_date\":\"2023-08-04T16:47:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3no3ubbbqe4eeyxi1e/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 21:47:58','2023-08-04 21:47:58'),(7462,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T16:49:00-05:00\",\"transaction\":{\"id\":\"tr3no3ubbbqe4eeyxi1e\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86032098\",\"creation_date\":\"2023-08-04T16:47:07-05:00\",\"operation_date\":\"2023-08-04T16:48:55-05:00\",\"description\":\"Pago Mensual academia: martin sierra mesa (1123972382)\",\"error_message\":null,\"order_id\":\"8217BB4E7FA0541E0F5E04FEA764AB91_VIQUK6WRF0_1691185609.8526\",\"due_date\":\"2023-08-05T04:47:07-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"sierra mesa\",\"email\":\"haroldsipe@hotmail.com\",\"phone_number\":\"3147218029\",\"address\":null,\"creation_date\":\"2023-08-04T16:47:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 21:49:01','2023-08-04 21:49:01'),(7463,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T16:56:35-05:00\",\"transaction\":{\"id\":\"trbs9bplcbzrkuxmaeje\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T16:55:38-05:00\",\"operation_date\":\"2023-08-04T16:55:38-05:00\",\"description\":\"Pago Mensual academia: alejandro lopez rios (1021933632)\",\"error_message\":null,\"order_id\":\"6FAB6E3AA34248EC1E34A4AEEDECDDC8_W9HNO3TY7S_1691186129.5743\",\"due_date\":\"2023-08-05T04:55:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johanna\",\"last_name\":\"rios rios\",\"email\":\"joha.8606@hotmail.com\",\"phone_number\":\"3147496936\",\"address\":null,\"creation_date\":\"2023-08-04T16:55:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbs9bplcbzrkuxmaeje/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 21:56:36','2023-08-04 21:56:36'),(7464,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T16:00:16-06:00\",\"transaction\":{\"id\":\"trbs9bplcbzrkuxmaeje\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86051992\",\"creation_date\":\"2023-08-04T16:55:38-06:00\",\"operation_date\":\"2023-08-04T16:57:34-06:00\",\"description\":\"Pago Mensual academia: alejandro lopez rios (1021933632)\",\"error_message\":null,\"order_id\":\"6FAB6E3AA34248EC1E34A4AEEDECDDC8_W9HNO3TY7S_1691186129.5743\",\"due_date\":\"2023-08-05T04:55:38-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johanna\",\"last_name\":\"rios rios\",\"email\":\"joha.8606@hotmail.com\",\"phone_number\":\"3147496936\",\"address\":null,\"creation_date\":\"2023-08-04T16:55:38-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 22:00:17','2023-08-04 22:00:17'),(7465,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T17:17:15-05:00\",\"transaction\":{\"id\":\"trta8nsf5csgdsabvgsa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T17:16:31-05:00\",\"operation_date\":\"2023-08-04T17:16:31-05:00\",\"description\":\"Pago Mensual academia: Alan David Córdoba Orozco (1032029565)\",\"error_message\":null,\"order_id\":\"F24AD6F72D6CC4CB51464F2B29AB69D3_F046W5A8XD_1691187388.867\",\"due_date\":\"2023-08-05T05:16:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Henao\",\"email\":\"jorgehecor@gmail.com\",\"phone_number\":\"3246489931\",\"address\":null,\"creation_date\":\"2023-08-04T17:16:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trta8nsf5csgdsabvgsa/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 22:17:16','2023-08-04 22:17:16'),(7466,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T17:19:24-05:00\",\"transaction\":{\"id\":\"trta8nsf5csgdsabvgsa\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86098375\",\"creation_date\":\"2023-08-04T17:16:31-05:00\",\"operation_date\":\"2023-08-04T17:18:43-05:00\",\"description\":\"Pago Mensual academia: Alan David Córdoba Orozco (1032029565)\",\"error_message\":null,\"order_id\":\"F24AD6F72D6CC4CB51464F2B29AB69D3_F046W5A8XD_1691187388.867\",\"due_date\":\"2023-08-05T05:16:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Henao\",\"email\":\"jorgehecor@gmail.com\",\"phone_number\":\"3246489931\",\"address\":null,\"creation_date\":\"2023-08-04T17:16:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 22:19:25','2023-08-04 22:19:25'),(7467,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  853\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T17:27:09-05:00\",\"transaction\":{\"id\":\"tr1e3phvkzzrztvcazdo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-04T17:27:09-05:00\",\"operation_date\":\"2023-08-04T17:27:09-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"0E65972DCE68DAD4D52D063967F0A705_E-64CD6CF3-35_1691184896.8431\",\"amount\":146900.00,\"customer\":{\"name\":\"juan\",\"last_name\":\"herrera\",\"email\":\"juancho-98@hotmail.com\",\"phone_number\":\"3213046885\",\"address\":null,\"creation_date\":\"2023-08-04T17:27:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr1e3phvkzzrztvcazdo/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-04 22:27:10','2023-08-04 22:27:10'),(7468,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T17:36:08-05:00\",\"transaction\":{\"id\":\"trrlzjerqxafknk6cifx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T17:35:34-05:00\",\"operation_date\":\"2023-08-04T17:35:34-05:00\",\"description\":\"Pago Mensual academia: Emiliano Dávila Moná (1020316845)\",\"error_message\":null,\"order_id\":\"0E9D935F7E3F2B502450C049DDBC7C92_KBQD8SN3GA_1691188531.9796\",\"due_date\":\"2023-08-05T05:35:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-08-04T17:35:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrlzjerqxafknk6cifx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 22:36:09','2023-08-04 22:36:09'),(7469,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T17:37:19-05:00\",\"transaction\":{\"id\":\"trrlzjerqxafknk6cifx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86139648\",\"creation_date\":\"2023-08-04T17:35:34-05:00\",\"operation_date\":\"2023-08-04T17:36:59-05:00\",\"description\":\"Pago Mensual academia: Emiliano Dávila Moná (1020316845)\",\"error_message\":null,\"order_id\":\"0E9D935F7E3F2B502450C049DDBC7C92_KBQD8SN3GA_1691188531.9796\",\"due_date\":\"2023-08-05T05:35:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-08-04T17:35:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 22:37:20','2023-08-04 22:37:20'),(7470,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T17:38:27-05:00\",\"transaction\":{\"id\":\"tr9sod0gniv16la5i3ze\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T17:37:54-05:00\",\"operation_date\":\"2023-08-04T17:37:54-05:00\",\"description\":\"Pago Mensual academia: Cristóbal Dávila Moná (1035007965)\",\"error_message\":null,\"order_id\":\"B848EDAE25876384476F8970B8491160_WXKFBR83OE_1691188672.0928\",\"due_date\":\"2023-08-05T05:37:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-08-04T17:37:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9sod0gniv16la5i3ze/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 22:38:28','2023-08-04 22:38:28'),(7471,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T17:40:59-05:00\",\"transaction\":{\"id\":\"tr6brqtvwu6d3rlr410p\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T17:39:40-05:00\",\"operation_date\":\"2023-08-04T17:39:40-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Ramirez Gomez (1035986816)\",\"error_message\":null,\"order_id\":\"16FC18D787294AD5171100E33D05D4E2_XC827SJ4KY_1691188777.3624\",\"due_date\":\"2023-08-05T05:39:40-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Jose\",\"last_name\":\"Ramirez Gomez\",\"email\":\"sebas.181@hotmail.com\",\"phone_number\":\"3178754777\",\"address\":null,\"creation_date\":\"2023-08-04T17:39:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6brqtvwu6d3rlr410p/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 22:41:00','2023-08-04 22:41:00'),(7472,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T17:42:09-05:00\",\"transaction\":{\"id\":\"tr6brqtvwu6d3rlr410p\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86150151\",\"creation_date\":\"2023-08-04T17:39:40-05:00\",\"operation_date\":\"2023-08-04T17:41:49-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Ramirez Gomez (1035986816)\",\"error_message\":null,\"order_id\":\"16FC18D787294AD5171100E33D05D4E2_XC827SJ4KY_1691188777.3624\",\"due_date\":\"2023-08-05T05:39:40-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Jose\",\"last_name\":\"Ramirez Gomez\",\"email\":\"sebas.181@hotmail.com\",\"phone_number\":\"3178754777\",\"address\":null,\"creation_date\":\"2023-08-04T17:39:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 22:42:10','2023-08-04 22:42:10'),(7473,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  859\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-04T16:51:10-06:00\",\"transaction\":{\"id\":\"tr9sod0gniv16la5i3ze\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-04T17:37:54-06:00\",\"operation_date\":\"2023-08-04T17:37:54-06:00\",\"description\":\"Pago Mensual academia: Cristóbal Dávila Moná (1035007965)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"B848EDAE25876384476F8970B8491160_WXKFBR83OE_1691188672.0928\",\"due_date\":\"2023-08-05T05:37:54-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-08-04T17:37:54-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 22:51:11','2023-08-04 22:51:11'),(7474,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T18:06:03-05:00\",\"transaction\":{\"id\":\"trexb7epxlixqbnur52e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T18:05:28-05:00\",\"operation_date\":\"2023-08-04T18:05:28-05:00\",\"description\":\"Pago Mensual academia: Sebastián Restrepo Londoño (1017938601)\",\"error_message\":null,\"order_id\":\"D7AAB42E6B85C49C0F1D3A115E939C74_FO2WH976QN_1691190325.2587\",\"due_date\":\"2023-08-05T06:05:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Astrid\",\"last_name\":\"Londoño Zapata\",\"email\":\"astro_1218@hotmail.com\",\"phone_number\":\"3113377769\",\"address\":null,\"creation_date\":\"2023-08-04T18:05:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trexb7epxlixqbnur52e/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 23:06:04','2023-08-04 23:06:04'),(7475,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T18:07:33-05:00\",\"transaction\":{\"id\":\"trexb7epxlixqbnur52e\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86203646\",\"creation_date\":\"2023-08-04T18:05:28-05:00\",\"operation_date\":\"2023-08-04T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Sebastián Restrepo Londoño (1017938601)\",\"error_message\":null,\"order_id\":\"D7AAB42E6B85C49C0F1D3A115E939C74_FO2WH976QN_1691190325.2587\",\"due_date\":\"2023-08-05T06:05:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Astrid\",\"last_name\":\"Londoño Zapata\",\"email\":\"astro_1218@hotmail.com\",\"phone_number\":\"3113377769\",\"address\":null,\"creation_date\":\"2023-08-04T18:05:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 23:07:33','2023-08-04 23:07:33'),(7476,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T18:19:21-05:00\",\"transaction\":{\"id\":\"triirjrae01rgirpbtgq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T18:18:35-05:00\",\"operation_date\":\"2023-08-04T18:18:35-05:00\",\"description\":\"Pago Mensual academia: John Sebastián Gómez castaño (1015191978)\",\"error_message\":null,\"order_id\":\"C4B43AE017AF4001C5193D310BF00942_NUB93HYQRI_1691191112.0107\",\"due_date\":\"2023-08-05T06:18:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-08-04T18:18:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triirjrae01rgirpbtgq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 23:19:22','2023-08-04 23:19:22'),(7477,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T18:20:35-05:00\",\"transaction\":{\"id\":\"triirjrae01rgirpbtgq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86231313\",\"creation_date\":\"2023-08-04T18:18:35-05:00\",\"operation_date\":\"2023-08-04T18:20:22-05:00\",\"description\":\"Pago Mensual academia: John Sebastián Gómez castaño (1015191978)\",\"error_message\":null,\"order_id\":\"C4B43AE017AF4001C5193D310BF00942_NUB93HYQRI_1691191112.0107\",\"due_date\":\"2023-08-05T06:18:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-08-04T18:18:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 23:20:36','2023-08-04 23:20:36'),(7478,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T18:21:53-05:00\",\"transaction\":{\"id\":\"trwmgvuwfehdtmi3v6vr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T18:21:14-05:00\",\"operation_date\":\"2023-08-04T18:21:14-05:00\",\"description\":\"Pago Mensual academia: Matías Gómez castaño (1015194560)\",\"error_message\":null,\"order_id\":\"2B7B82A7EC6DE40781FD6EF338B41892_N03KY8SUCO_1691191271.7539\",\"due_date\":\"2023-08-05T06:21:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-08-04T18:21:14-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwmgvuwfehdtmi3v6vr/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 23:21:54','2023-08-04 23:21:54'),(7479,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T18:22:57-05:00\",\"transaction\":{\"id\":\"trwmgvuwfehdtmi3v6vr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86236379\",\"creation_date\":\"2023-08-04T18:21:14-05:00\",\"operation_date\":\"2023-08-04T18:22:46-05:00\",\"description\":\"Pago Mensual academia: Matías Gómez castaño (1015194560)\",\"error_message\":null,\"order_id\":\"2B7B82A7EC6DE40781FD6EF338B41892_N03KY8SUCO_1691191271.7539\",\"due_date\":\"2023-08-05T06:21:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-08-04T18:21:14-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 23:22:58','2023-08-04 23:22:58'),(7480,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T18:50:02-05:00\",\"transaction\":{\"id\":\"tryomsjoonsdqiyr4nue\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T18:49:17-05:00\",\"operation_date\":\"2023-08-04T18:49:17-05:00\",\"description\":\"Pago Mensual academia: Luciana Duarte Velez (1025662862)\",\"error_message\":null,\"order_id\":\"A0B83C02D720415DADA82E08BC09E9F3_A65V0GFBPQ_1691192953.8851\",\"due_date\":\"2023-08-05T06:49:17-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Pablo\",\"last_name\":\"Duarte Osorio\",\"email\":\"jpsolucionesintegralese@gmail.com\",\"phone_number\":\"3104733679\",\"address\":null,\"creation_date\":\"2023-08-04T18:49:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryomsjoonsdqiyr4nue/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 23:50:03','2023-08-04 23:50:03'),(7481,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T17:51:13-06:00\",\"transaction\":{\"id\":\"tryomsjoonsdqiyr4nue\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86295356\",\"creation_date\":\"2023-08-04T18:49:17-06:00\",\"operation_date\":\"2023-08-04T18:50:40-06:00\",\"description\":\"Pago Mensual academia: Luciana Duarte Velez (1025662862)\",\"error_message\":null,\"order_id\":\"A0B83C02D720415DADA82E08BC09E9F3_A65V0GFBPQ_1691192953.8851\",\"due_date\":\"2023-08-05T06:49:17-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Pablo\",\"last_name\":\"Duarte Osorio\",\"email\":\"jpsolucionesintegralese@gmail.com\",\"phone_number\":\"3104733679\",\"address\":null,\"creation_date\":\"2023-08-04T18:49:17-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 23:51:14','2023-08-04 23:51:14'),(7482,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T18:54:04-05:00\",\"transaction\":{\"id\":\"trsxim6fevzo9schzqor\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T18:53:11-05:00\",\"operation_date\":\"2023-08-04T18:53:11-05:00\",\"description\":\"Pago Mensual academia: mathias betancur arango (1036456981)\",\"error_message\":null,\"order_id\":\"69386F6BB1DFED68692A24C8686939B9_HF0CA871J4_1691193188.1569\",\"due_date\":\"2023-08-05T06:53:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"arango rodriguez\",\"email\":\"juliarango20@hotmail.com\",\"phone_number\":\"3004419025\",\"address\":null,\"creation_date\":\"2023-08-04T18:53:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsxim6fevzo9schzqor/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 23:54:05','2023-08-04 23:54:05'),(7483,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T18:54:46-05:00\",\"transaction\":{\"id\":\"trsxim6fevzo9schzqor\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86303543\",\"creation_date\":\"2023-08-04T18:53:11-05:00\",\"operation_date\":\"2023-08-04T18:54:42-05:00\",\"description\":\"Pago Mensual academia: mathias betancur arango (1036456981)\",\"error_message\":null,\"order_id\":\"69386F6BB1DFED68692A24C8686939B9_HF0CA871J4_1691193188.1569\",\"due_date\":\"2023-08-05T06:53:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"arango rodriguez\",\"email\":\"juliarango20@hotmail.com\",\"phone_number\":\"3004419025\",\"address\":null,\"creation_date\":\"2023-08-04T18:53:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-04 23:54:47','2023-08-04 23:54:47'),(7484,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T19:08:32-05:00\",\"transaction\":{\"id\":\"tr8ix9rskcc3x929xw86\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T19:07:31-05:00\",\"operation_date\":\"2023-08-04T19:07:31-05:00\",\"description\":\"Pago Mensual academia: jose Gabriel Quintero hoyos (1013365886)\",\"error_message\":null,\"order_id\":\"980A875FF6EF9C2D75E74307CBF5D205_IUT2SJ7695_1691194049.2338\",\"due_date\":\"2023-08-05T07:07:31-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jose Gabriel\",\"last_name\":\"quintero hoyos\",\"email\":\"matiasygabriel0409@hotmail.com\",\"phone_number\":\"3022012454\",\"address\":null,\"creation_date\":\"2023-08-04T19:07:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8ix9rskcc3x929xw86/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 00:08:33','2023-08-05 00:08:33'),(7485,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T19:10:15-05:00\",\"transaction\":{\"id\":\"tr8ix9rskcc3x929xw86\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86331798\",\"creation_date\":\"2023-08-04T19:07:31-05:00\",\"operation_date\":\"2023-08-04T19:09:46-05:00\",\"description\":\"Pago Mensual academia: jose Gabriel Quintero hoyos (1013365886)\",\"error_message\":null,\"order_id\":\"980A875FF6EF9C2D75E74307CBF5D205_IUT2SJ7695_1691194049.2338\",\"due_date\":\"2023-08-05T07:07:31-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jose Gabriel\",\"last_name\":\"quintero hoyos\",\"email\":\"matiasygabriel0409@hotmail.com\",\"phone_number\":\"3022012454\",\"address\":null,\"creation_date\":\"2023-08-04T19:07:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 00:10:15','2023-08-05 00:10:15'),(7486,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T20:30:04-05:00\",\"transaction\":{\"id\":\"trkezsp6rfiq48pv524m\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-04T20:30:03-05:00\",\"operation_date\":\"2023-08-04T20:30:03-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Hernandez Berrio (1041461298)\",\"error_message\":null,\"order_id\":\"63BFD6E8F26D1D3537F4C5038264EF36_XT8NZQEK4V_1691198994.419\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge Mario\",\"last_name\":\"Berrio\",\"email\":\"g-orbe@hotmail.com\",\"phone_number\":\"3008850836\",\"address\":null,\"creation_date\":\"2023-08-04T20:30:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkezsp6rfiq48pv524m/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-05 01:30:04','2023-08-05 01:30:04'),(7487,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1125\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T20:32:31-05:00\",\"transaction\":{\"id\":\"trkezsp6rfiq48pv524m\",\"authorization\":\"074378\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-04T20:30:03-05:00\",\"operation_date\":\"2023-08-04T20:32:30-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Hernandez Berrio (1041461298)\",\"error_message\":null,\"order_id\":\"63BFD6E8F26D1D3537F4C5038264EF36_XT8NZQEK4V_1691198994.419\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"457021XXXXXX8497\",\"holder_name\":\"Jorge m. Berrio\",\"expiration_year\":\"26\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BCSC\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Jorge Mario\",\"last_name\":\"Berrio\",\"email\":\"g-orbe@hotmail.com\",\"phone_number\":\"3008850836\",\"address\":null,\"creation_date\":\"2023-08-04T20:30:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkezsp6rfiq48pv524m/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-05 01:32:32','2023-08-05 01:32:32'),(7488,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T21:14:11-05:00\",\"transaction\":{\"id\":\"trlhuv03koth2xa6xnhp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T21:11:16-05:00\",\"operation_date\":\"2023-08-04T21:11:16-05:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":null,\"order_id\":\"09060616068D2B9544DC33F2FBE4CE2D_5QVODIN16A_1691201473.8269\",\"due_date\":\"2023-08-05T09:11:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-08-04T21:11:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlhuv03koth2xa6xnhp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 02:14:11','2023-08-05 02:14:11'),(7489,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  839\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-04T21:18:23-05:00\",\"transaction\":{\"id\":\"trlhuv03koth2xa6xnhp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-04T21:11:16-05:00\",\"operation_date\":\"2023-08-04T21:14:16-05:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"09060616068D2B9544DC33F2FBE4CE2D_5QVODIN16A_1691201473.8269\",\"due_date\":\"2023-08-05T09:11:16-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-08-04T21:11:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 02:18:25','2023-08-05 02:18:25'),(7490,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T21:21:19-05:00\",\"transaction\":{\"id\":\"tre8mfteftuj5ghmf155\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T21:18:56-05:00\",\"operation_date\":\"2023-08-04T21:18:56-05:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":null,\"order_id\":\"09060616068D2B9544DC33F2FBE4CE2D_5QVODIN16A_1691201929.7271\",\"due_date\":\"2023-08-05T09:18:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-08-04T21:18:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre8mfteftuj5ghmf155/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 02:21:19','2023-08-05 02:21:19'),(7491,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  839\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-04T20:42:09-06:00\",\"transaction\":{\"id\":\"tre8mfteftuj5ghmf155\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-04T21:18:56-06:00\",\"operation_date\":\"2023-08-04T21:21:24-06:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"09060616068D2B9544DC33F2FBE4CE2D_5QVODIN16A_1691201929.7271\",\"due_date\":\"2023-08-05T09:18:56-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-08-04T21:18:56-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 02:42:09','2023-08-05 02:42:09'),(7492,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T21:44:47-05:00\",\"transaction\":{\"id\":\"tr54sxp6u2r3sc0eo0is\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T21:43:06-05:00\",\"operation_date\":\"2023-08-04T21:43:06-05:00\",\"description\":\"Pago Mensual academia: MATIAS URIBE CASTAÑEDA (1035015682)\",\"error_message\":null,\"order_id\":\"C46482DD5D39742F0BFD417B492D0E8E_OBJF5WXEUP_1691203383.8819\",\"due_date\":\"2023-08-05T09:43:06-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"VIVIANA\",\"last_name\":\"CASTANEDA ECHEVERRI\",\"email\":\"vivice028@yahoo.es\",\"phone_number\":\"3117841247\",\"address\":null,\"creation_date\":\"2023-08-04T21:43:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr54sxp6u2r3sc0eo0is/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 02:44:47','2023-08-05 02:44:47'),(7493,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T21:46:30-05:00\",\"transaction\":{\"id\":\"tr54sxp6u2r3sc0eo0is\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86596574\",\"creation_date\":\"2023-08-04T21:43:06-05:00\",\"operation_date\":\"2023-08-04T21:46:11-05:00\",\"description\":\"Pago Mensual academia: MATIAS URIBE CASTAÑEDA (1035015682)\",\"error_message\":null,\"order_id\":\"C46482DD5D39742F0BFD417B492D0E8E_OBJF5WXEUP_1691203383.8819\",\"due_date\":\"2023-08-05T09:43:06-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"VIVIANA\",\"last_name\":\"CASTANEDA ECHEVERRI\",\"email\":\"vivice028@yahoo.es\",\"phone_number\":\"3117841247\",\"address\":null,\"creation_date\":\"2023-08-04T21:43:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 02:46:31','2023-08-05 02:46:31'),(7494,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-04T22:16:02-05:00\",\"transaction\":{\"id\":\"trifjakl2dhz96y9hzia\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-04T22:15:20-05:00\",\"operation_date\":\"2023-08-04T22:15:20-05:00\",\"description\":\"Pago Mensual academia: thomas jeronimo galeano tobon (1032014996)\",\"error_message\":null,\"order_id\":\"62DAD6E273D32235AE02B7D321578EE8_TK1E3F5AXS_1691205317.393\",\"due_date\":\"2023-08-05T10:15:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"michael\",\"last_name\":\"galeano\",\"email\":\"migalca2017@hotmail.com\",\"phone_number\":\"3012230146\",\"address\":null,\"creation_date\":\"2023-08-04T22:15:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trifjakl2dhz96y9hzia/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 03:16:03','2023-08-05 03:16:03'),(7495,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-04T22:17:19-05:00\",\"transaction\":{\"id\":\"trifjakl2dhz96y9hzia\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86634154\",\"creation_date\":\"2023-08-04T22:15:20-05:00\",\"operation_date\":\"2023-08-04T22:17:01-05:00\",\"description\":\"Pago Mensual academia: thomas jeronimo galeano tobon (1032014996)\",\"error_message\":null,\"order_id\":\"62DAD6E273D32235AE02B7D321578EE8_TK1E3F5AXS_1691205317.393\",\"due_date\":\"2023-08-05T10:15:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"michael\",\"last_name\":\"galeano\",\"email\":\"migalca2017@hotmail.com\",\"phone_number\":\"3012230146\",\"address\":null,\"creation_date\":\"2023-08-04T22:15:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 03:17:20','2023-08-05 03:17:20'),(7496,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-05T07:24:31-05:00\",\"transaction\":{\"id\":\"trhb0obi2yhowpvwglel\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-05T07:23:18-05:00\",\"operation_date\":\"2023-08-05T07:23:18-05:00\",\"description\":\"Pago Mensual academia: santiago blandon gomez (1021927796)\",\"error_message\":null,\"order_id\":\"2BD235C31C97855B7EF2DC8B414779AF_HB6PU1SQ05_1691238195.5597\",\"due_date\":\"2023-08-05T19:23:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"santiago\",\"last_name\":\"blandon gomez\",\"email\":\"marcegchava29@gmail.com\",\"phone_number\":\"3043515784\",\"address\":null,\"creation_date\":\"2023-08-05T07:23:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhb0obi2yhowpvwglel/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 12:24:32','2023-08-05 12:24:32'),(7497,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-05T07:27:56-05:00\",\"transaction\":{\"id\":\"trhb0obi2yhowpvwglel\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"86812129\",\"creation_date\":\"2023-08-05T07:23:18-05:00\",\"operation_date\":\"2023-08-05T07:27:44-05:00\",\"description\":\"Pago Mensual academia: santiago blandon gomez (1021927796)\",\"error_message\":null,\"order_id\":\"2BD235C31C97855B7EF2DC8B414779AF_HB6PU1SQ05_1691238195.5597\",\"due_date\":\"2023-08-05T19:23:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"santiago\",\"last_name\":\"blandon gomez\",\"email\":\"marcegchava29@gmail.com\",\"phone_number\":\"3043515784\",\"address\":null,\"creation_date\":\"2023-08-05T07:23:18-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 12:27:57','2023-08-05 12:27:57'),(7498,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-05T08:59:52-05:00\",\"transaction\":{\"id\":\"tr4uocatenu7zftwmgzn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-05T08:58:35-05:00\",\"operation_date\":\"2023-08-05T08:58:35-05:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":null,\"order_id\":\"09060616068D2B9544DC33F2FBE4CE2D_5QVODIN16A_1691243907.1164\",\"due_date\":\"2023-08-05T20:58:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-08-05T08:58:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4uocatenu7zftwmgzn/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 13:59:53','2023-08-05 13:59:53'),(7499,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  839\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-05T08:21:09-06:00\",\"transaction\":{\"id\":\"tr4uocatenu7zftwmgzn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-05T08:58:35-06:00\",\"operation_date\":\"2023-08-05T09:00:00-06:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"09060616068D2B9544DC33F2FBE4CE2D_5QVODIN16A_1691243907.1164\",\"due_date\":\"2023-08-05T20:58:35-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-08-05T08:58:35-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 14:21:10','2023-08-05 14:21:10'),(7500,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-05T10:02:56-05:00\",\"transaction\":{\"id\":\"trrtz5e4hf6mvj8voxm5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-05T10:02:00-05:00\",\"operation_date\":\"2023-08-05T10:02:00-05:00\",\"description\":\"Pago Mensual academia: Manuel Rendon Ángel (1034995147)\",\"error_message\":null,\"order_id\":\"8CE5D989374D216A867CDC8871484B43_PQ6GLFXKIS_1691247717.0385\",\"due_date\":\"2023-08-05T22:02:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Rendon Angel\",\"email\":\"caroangelh@yahoo.com\",\"phone_number\":\"3174371479\",\"address\":null,\"creation_date\":\"2023-08-05T10:02:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrtz5e4hf6mvj8voxm5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 15:02:57','2023-08-05 15:02:57'),(7501,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-05T10:04:11-05:00\",\"transaction\":{\"id\":\"trrtz5e4hf6mvj8voxm5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"87044619\",\"creation_date\":\"2023-08-05T10:02:00-05:00\",\"operation_date\":\"2023-08-05T10:03:45-05:00\",\"description\":\"Pago Mensual academia: Manuel Rendon Ángel (1034995147)\",\"error_message\":null,\"order_id\":\"8CE5D989374D216A867CDC8871484B43_PQ6GLFXKIS_1691247717.0385\",\"due_date\":\"2023-08-05T22:02:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Rendon Angel\",\"email\":\"caroangelh@yahoo.com\",\"phone_number\":\"3174371479\",\"address\":null,\"creation_date\":\"2023-08-05T10:02:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 15:04:12','2023-08-05 15:04:12'),(7502,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-05T10:23:14-05:00\",\"transaction\":{\"id\":\"trhru3tw52h8iud1n0c7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-05T10:22:04-05:00\",\"operation_date\":\"2023-08-05T10:22:04-05:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":null,\"order_id\":\"09060616068D2B9544DC33F2FBE4CE2D_5QVODIN16A_1691248922.6014\",\"due_date\":\"2023-08-05T22:22:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-08-05T10:22:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhru3tw52h8iud1n0c7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 15:23:15','2023-08-05 15:23:15'),(7503,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  839\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-05T09:45:10-06:00\",\"transaction\":{\"id\":\"trhru3tw52h8iud1n0c7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-05T10:22:04-06:00\",\"operation_date\":\"2023-08-05T10:23:20-06:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"09060616068D2B9544DC33F2FBE4CE2D_5QVODIN16A_1691248922.6014\",\"due_date\":\"2023-08-05T22:22:04-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-08-05T10:22:04-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 15:45:10','2023-08-05 15:45:10'),(7504,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-05T13:34:43-05:00\",\"transaction\":{\"id\":\"trc8fhpjyjyopuxvdbeh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-05T13:33:18-05:00\",\"operation_date\":\"2023-08-05T13:33:18-05:00\",\"description\":\"Pago Mensual academia: Valentin Correa Betancur (1034004886)\",\"error_message\":null,\"order_id\":\"2C758933AF02C0B301906F2819AE1268_ODEU10KHJA_1691260392.8938\",\"due_date\":\"2023-08-06T01:33:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Betancur Florez\",\"email\":\"dany_bflorez16@hotmail.com\",\"phone_number\":\"3013872888\",\"address\":null,\"creation_date\":\"2023-08-05T13:33:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc8fhpjyjyopuxvdbeh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 18:34:44','2023-08-05 18:34:44'),(7505,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-05T13:35:42-05:00\",\"transaction\":{\"id\":\"trc8fhpjyjyopuxvdbeh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"87463450\",\"creation_date\":\"2023-08-05T13:33:18-05:00\",\"operation_date\":\"2023-08-05T13:35:30-05:00\",\"description\":\"Pago Mensual academia: Valentin Correa Betancur (1034004886)\",\"error_message\":null,\"order_id\":\"2C758933AF02C0B301906F2819AE1268_ODEU10KHJA_1691260392.8938\",\"due_date\":\"2023-08-06T01:33:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Betancur Florez\",\"email\":\"dany_bflorez16@hotmail.com\",\"phone_number\":\"3013872888\",\"address\":null,\"creation_date\":\"2023-08-05T13:33:18-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-05 18:35:43','2023-08-05 18:35:43'),(7506,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-05T14:00:34-05:00\",\"transaction\":{\"id\":\"trvhwazgwbrsixl86wvu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-05T14:00:34-05:00\",\"operation_date\":\"2023-08-05T14:00:34-05:00\",\"description\":\"Pago Mensual academia: santiago lotero castro (1034923449)\",\"error_message\":null,\"order_id\":\"9BD5EE6FE55AAEB673025DBCB8F939C1_FXYJR9EPD4_1691262002.8333\",\"amount\":165900.00,\"customer\":{\"name\":\"tatiana\",\"last_name\":\"castro arenas\",\"email\":\"tatianacastro461@gmail.com\",\"phone_number\":\"3123947745\",\"address\":null,\"creation_date\":\"2023-08-05T14:00:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvhwazgwbrsixl86wvu/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-05 19:00:35','2023-08-05 19:00:35'),(7507,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1227\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-05T14:03:24-05:00\",\"transaction\":{\"id\":\"trvhwazgwbrsixl86wvu\",\"authorization\":\"195896\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":15,\"conciliated\":true,\"creation_date\":\"2023-08-05T14:00:34-05:00\",\"operation_date\":\"2023-08-05T14:03:22-05:00\",\"description\":\"Pago Mensual academia: santiago lotero castro (1034923449)\",\"error_message\":null,\"order_id\":\"9BD5EE6FE55AAEB673025DBCB8F939C1_FXYJR9EPD4_1691262002.8333\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491617XXXXXX1924\",\"holder_name\":\"Andres lotero galvis\",\"expiration_year\":\"27\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":15,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"tatiana\",\"last_name\":\"castro arenas\",\"email\":\"tatianacastro461@gmail.com\",\"phone_number\":\"3123947745\",\"address\":null,\"creation_date\":\"2023-08-05T14:00:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvhwazgwbrsixl86wvu/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-05 19:03:24','2023-08-05 19:03:24'),(7508,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  910\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-05T16:52:26-05:00\",\"transaction\":{\"id\":\"trozxygbwgqybdiuzzby\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-05T16:52:26-05:00\",\"operation_date\":\"2023-08-05T16:52:26-05:00\",\"description\":\"Pago Mensual academia: Michael Stiward Salcedo Hernandez (1038872790)\",\"error_message\":null,\"order_id\":\"831B1AC54CC8DB480E3BABAC5FA2256B_D6YAXQ21IC_1691272343.4553\",\"amount\":165900.00,\"customer\":{\"name\":\"victor Alfonso\",\"last_name\":\"Salcedo Arias\",\"email\":\"victor88asa@hotmail.com\",\"phone_number\":\"3108331051\",\"address\":null,\"creation_date\":\"2023-08-05T16:52:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trozxygbwgqybdiuzzby/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-05 21:52:27','2023-08-05 21:52:27'),(7509,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1159\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-05T16:54:29-05:00\",\"transaction\":{\"id\":\"trozxygbwgqybdiuzzby\",\"authorization\":\"165429\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-05T16:52:26-05:00\",\"operation_date\":\"2023-08-05T16:54:28-05:00\",\"description\":\"Pago Mensual academia: Michael Stiward Salcedo Hernandez (1038872790)\",\"error_message\":null,\"order_id\":\"831B1AC54CC8DB480E3BABAC5FA2256B_D6YAXQ21IC_1691272343.4553\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX8958\",\"holder_name\":\"Victor arias\",\"expiration_year\":\"27\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"victor Alfonso\",\"last_name\":\"Salcedo Arias\",\"email\":\"victor88asa@hotmail.com\",\"phone_number\":\"3108331051\",\"address\":null,\"creation_date\":\"2023-08-05T16:52:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trozxygbwgqybdiuzzby/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-05 21:54:30','2023-08-05 21:54:30'),(7510,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  880\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-05T17:01:55-05:00\",\"transaction\":{\"id\":\"traewzbhur5ae0xqlium\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-05T17:01:55-05:00\",\"operation_date\":\"2023-08-05T17:01:55-05:00\",\"description\":\"Pago Mensual academia: isaac rojas pineda (1018252036)\",\"error_message\":null,\"order_id\":\"8A1D694707EB0FEFE65871369074926D_WEH9G6IZ7V_1691272913.1847\",\"amount\":165900.00,\"customer\":{\"name\":\"Luisa\",\"last_name\":\"Nuñez\",\"email\":\"luisanunez1697@gmail.com\",\"phone_number\":\"3042901783\",\"address\":null,\"creation_date\":\"2023-08-05T17:01:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traewzbhur5ae0xqlium/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-05 22:01:56','2023-08-05 22:01:56'),(7511,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1130\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-05T17:02:50-05:00\",\"transaction\":{\"id\":\"traewzbhur5ae0xqlium\",\"authorization\":\"170250\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-05T17:01:55-05:00\",\"operation_date\":\"2023-08-05T17:02:49-05:00\",\"description\":\"Pago Mensual academia: isaac rojas pineda (1018252036)\",\"error_message\":null,\"order_id\":\"8A1D694707EB0FEFE65871369074926D_WEH9G6IZ7V_1691272913.1847\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX7170\",\"holder_name\":\"Tatiana Rojas\",\"expiration_year\":\"26\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Luisa\",\"last_name\":\"Nuñez\",\"email\":\"luisanunez1697@gmail.com\",\"phone_number\":\"3042901783\",\"address\":null,\"creation_date\":\"2023-08-05T17:01:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traewzbhur5ae0xqlium/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-05 22:02:51','2023-08-05 22:02:51'),(7512,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-06T05:12:45-05:00\",\"transaction\":{\"id\":\"trdwlmzfjxtdjxuqztsq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-06T05:11:33-05:00\",\"operation_date\":\"2023-08-06T05:11:33-05:00\",\"description\":\"Pago Mensual academia: Martin Peña Bustamante (1035006293)\",\"error_message\":null,\"order_id\":\"36ED197B3F31618FDBADB3DF86F804BD_IOLASZJN0C_1691316686.6472\",\"due_date\":\"2023-08-06T17:11:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Peña  Bustamante\",\"email\":\"sandrabustamante5@hotmail.com\",\"phone_number\":\"3216792265\",\"address\":null,\"creation_date\":\"2023-08-06T05:11:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdwlmzfjxtdjxuqztsq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-06 10:12:46','2023-08-06 10:12:46'),(7513,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-06T04:15:08-06:00\",\"transaction\":{\"id\":\"trdwlmzfjxtdjxuqztsq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"88262136\",\"creation_date\":\"2023-08-06T05:11:33-06:00\",\"operation_date\":\"2023-08-06T05:14:26-06:00\",\"description\":\"Pago Mensual academia: Martin Peña Bustamante (1035006293)\",\"error_message\":null,\"order_id\":\"36ED197B3F31618FDBADB3DF86F804BD_IOLASZJN0C_1691316686.6472\",\"due_date\":\"2023-08-06T17:11:33-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Peña  Bustamante\",\"email\":\"sandrabustamante5@hotmail.com\",\"phone_number\":\"3216792265\",\"address\":null,\"creation_date\":\"2023-08-06T05:11:33-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-06 10:15:09','2023-08-06 10:15:09'),(7514,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  883\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-06T09:45:24-05:00\",\"transaction\":{\"id\":\"trjbvoikapariugurncj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-06T09:45:24-05:00\",\"operation_date\":\"2023-08-06T09:45:24-05:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Valencia (1023554895)\",\"error_message\":null,\"order_id\":\"3CFBDF468F0A03187F6CEE51A25E5E9A_ZQA14C025M_1691333120.9927\",\"amount\":105000.00,\"customer\":{\"name\":\"Jaime\",\"last_name\":\"Giraldo\",\"email\":\"jaime2406@hotmail.com\",\"phone_number\":\"3002037003\",\"address\":null,\"creation_date\":\"2023-08-06T09:45:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjbvoikapariugurncj/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-06 14:45:25','2023-08-06 14:45:25'),(7515,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1135\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-06T09:50:21-05:00\",\"transaction\":{\"id\":\"trjbvoikapariugurncj\",\"authorization\":\"R01705\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-06T09:45:24-05:00\",\"operation_date\":\"2023-08-06T09:50:20-05:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Valencia (1023554895)\",\"error_message\":null,\"order_id\":\"3CFBDF468F0A03187F6CEE51A25E5E9A_ZQA14C025M_1691333120.9927\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX8735\",\"holder_name\":\"Jaime Giraldo\",\"expiration_year\":\"26\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":105000.00,\"customer\":{\"name\":\"Jaime\",\"last_name\":\"Giraldo\",\"email\":\"jaime2406@hotmail.com\",\"phone_number\":\"3002037003\",\"address\":null,\"creation_date\":\"2023-08-06T09:45:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjbvoikapariugurncj/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-06 14:50:22','2023-08-06 14:50:22'),(7516,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-06T09:58:33-05:00\",\"transaction\":{\"id\":\"trcnrqeirfbtlsbupoxb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-06T09:57:15-05:00\",\"operation_date\":\"2023-08-06T09:57:15-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Aristizábal Colorado (1015074954)\",\"error_message\":null,\"order_id\":\"F7CFDDE9DB36AF8E0D9A6D123D5C385E_8E9A2BJXCS_1691333832.1136\",\"due_date\":\"2023-08-06T21:57:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeioson\",\"last_name\":\"Aristizábal Colorado\",\"email\":\"jenny24pablo@yahoo.com\",\"phone_number\":\"3004303882\",\"address\":null,\"creation_date\":\"2023-08-06T09:57:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcnrqeirfbtlsbupoxb/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-06 14:58:33','2023-08-06 14:58:33'),(7517,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-06T09:00:10-06:00\",\"transaction\":{\"id\":\"trcnrqeirfbtlsbupoxb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"88408600\",\"creation_date\":\"2023-08-06T09:57:15-06:00\",\"operation_date\":\"2023-08-06T09:59:55-06:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Aristizábal Colorado (1015074954)\",\"error_message\":null,\"order_id\":\"F7CFDDE9DB36AF8E0D9A6D123D5C385E_8E9A2BJXCS_1691333832.1136\",\"due_date\":\"2023-08-06T21:57:15-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeioson\",\"last_name\":\"Aristizábal Colorado\",\"email\":\"jenny24pablo@yahoo.com\",\"phone_number\":\"3004303882\",\"address\":null,\"creation_date\":\"2023-08-06T09:57:15-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-06 15:00:10','2023-08-06 15:00:10'),(7518,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-06T11:10:17-05:00\",\"transaction\":{\"id\":\"tr39xomhosjwxlrcwble\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-06T11:09:24-05:00\",\"operation_date\":\"2023-08-06T11:09:24-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Dávila Morales (1017942344)\",\"error_message\":null,\"order_id\":\"A4351B79D9EA3D842EFA89FAE5D02B24_8BRU12SC7W_1691338160.7359\",\"due_date\":\"2023-08-06T23:09:24-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Dávila Osorio\",\"email\":\"juancdavilao@gmail.com\",\"phone_number\":\"3104384569\",\"address\":null,\"creation_date\":\"2023-08-06T11:09:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr39xomhosjwxlrcwble/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-06 16:10:18','2023-08-06 16:10:18'),(7519,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-06T11:11:07-05:00\",\"transaction\":{\"id\":\"tr39xomhosjwxlrcwble\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"88492580\",\"creation_date\":\"2023-08-06T11:09:24-05:00\",\"operation_date\":\"2023-08-06T11:11:00-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Dávila Morales (1017942344)\",\"error_message\":null,\"order_id\":\"A4351B79D9EA3D842EFA89FAE5D02B24_8BRU12SC7W_1691338160.7359\",\"due_date\":\"2023-08-06T23:09:24-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Dávila Osorio\",\"email\":\"juancdavilao@gmail.com\",\"phone_number\":\"3104384569\",\"address\":null,\"creation_date\":\"2023-08-06T11:09:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-06 16:11:07','2023-08-06 16:11:07'),(7520,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-06T15:06:09-05:00\",\"transaction\":{\"id\":\"tr0chucqsexfgwm4u7tx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-06T15:05:22-05:00\",\"operation_date\":\"2023-08-06T15:05:22-05:00\",\"description\":\"Pago Mensual academia: Simon Ruiz Restrepo (1035016205)\",\"error_message\":null,\"order_id\":\"3CE6D3C8830D27EC2E6A1936ECBAA514_DLO0M8IEVF_1691352319.8716\",\"due_date\":\"2023-08-07T03:05:22-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Laura Catalina\",\"last_name\":\"Restrepo Perez\",\"email\":\"lauris-0108@hotmail.com\",\"phone_number\":\"3014090445\",\"address\":null,\"creation_date\":\"2023-08-06T15:05:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0chucqsexfgwm4u7tx/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-06 20:06:10','2023-08-06 20:06:10'),(7521,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-06T15:07:42-05:00\",\"transaction\":{\"id\":\"tr0chucqsexfgwm4u7tx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"88745549\",\"creation_date\":\"2023-08-06T15:05:22-05:00\",\"operation_date\":\"2023-08-06T15:07:36-05:00\",\"description\":\"Pago Mensual academia: Simon Ruiz Restrepo (1035016205)\",\"error_message\":null,\"order_id\":\"3CE6D3C8830D27EC2E6A1936ECBAA514_DLO0M8IEVF_1691352319.8716\",\"due_date\":\"2023-08-07T03:05:22-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Laura Catalina\",\"last_name\":\"Restrepo Perez\",\"email\":\"lauris-0108@hotmail.com\",\"phone_number\":\"3014090445\",\"address\":null,\"creation_date\":\"2023-08-06T15:05:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-06 20:07:43','2023-08-06 20:07:43'),(7522,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  950\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-07T02:13:23-06:00\",\"transaction\":{\"id\":\"trs3fw5phcnvocdoamao\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-04T11:25:45-06:00\",\"operation_date\":\"2023-08-04T11:25:45-06:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rueda Cardozo (1016913762)\",\"error_message\":null,\"order_id\":\"3A30BE93EB45566A90F4E95EE72A089A_Q862GSRU5W_1691166342.5625\",\"due_date\":\"2023-08-04T23:25:45-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carol Andrea\",\"last_name\":\"Cardozo Rodriguez\",\"email\":\"carolandreacardozo@gmail.com\",\"phone_number\":\"3233940563\",\"address\":null,\"creation_date\":\"2023-08-04T11:25:45-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trs3fw5phcnvocdoamao/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-07 08:13:24','2023-08-07 08:13:24'),(7523,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-07T10:24:34-05:00\",\"transaction\":{\"id\":\"trv6prugia93uz7ibsqd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-07T10:23:08-05:00\",\"operation_date\":\"2023-08-07T10:23:08-05:00\",\"description\":\"Pago Mensual academia: Samuel Loaiza Toro (1038267129)\",\"error_message\":null,\"order_id\":\"936824C0191953647EC609B4F49BC964_8SITK9XQ2C_1691421786.1954\",\"due_date\":\"2023-08-07T22:23:08-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"sandra\",\"last_name\":\"toro acevedo\",\"email\":\"sandristoro@gmail.com\",\"phone_number\":\"3185222868\",\"address\":null,\"creation_date\":\"2023-08-07T10:23:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trv6prugia93uz7ibsqd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-07 15:24:35','2023-08-07 15:24:35'),(7524,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-07T09:27:10-06:00\",\"transaction\":{\"id\":\"trv6prugia93uz7ibsqd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"89361130\",\"creation_date\":\"2023-08-07T10:23:08-06:00\",\"operation_date\":\"2023-08-07T10:27:06-06:00\",\"description\":\"Pago Mensual academia: Samuel Loaiza Toro (1038267129)\",\"error_message\":null,\"order_id\":\"936824C0191953647EC609B4F49BC964_8SITK9XQ2C_1691421786.1954\",\"due_date\":\"2023-08-07T22:23:08-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"sandra\",\"last_name\":\"toro acevedo\",\"email\":\"sandristoro@gmail.com\",\"phone_number\":\"3185222868\",\"address\":null,\"creation_date\":\"2023-08-07T10:23:08-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-07 15:27:10','2023-08-07 15:27:10'),(7525,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-07T09:30:10-06:00\",\"transaction\":{\"id\":\"trv6prugia93uz7ibsqd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"89361130\",\"creation_date\":\"2023-08-07T10:23:08-06:00\",\"operation_date\":\"2023-08-07T10:27:06-06:00\",\"description\":\"Pago Mensual academia: Samuel Loaiza Toro (1038267129)\",\"error_message\":null,\"order_id\":\"936824C0191953647EC609B4F49BC964_8SITK9XQ2C_1691421786.1954\",\"due_date\":\"2023-08-07T22:23:08-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"sandra\",\"last_name\":\"toro acevedo\",\"email\":\"sandristoro@gmail.com\",\"phone_number\":\"3185222868\",\"address\":null,\"creation_date\":\"2023-08-07T10:23:08-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-07 15:30:10','2023-08-07 15:30:10'),(7526,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-07T15:09:51-05:00\",\"transaction\":{\"id\":\"trl0mxea5is1tvhgsitu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-07T15:09:16-05:00\",\"operation_date\":\"2023-08-07T15:09:16-05:00\",\"description\":\"Pago Mensual academia: JERONIMO MOLINA GARCIA (1020322545)\",\"error_message\":null,\"order_id\":\"_1691438942.3714\",\"due_date\":\"2023-08-08T03:09:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JORGE LUIS\",\"last_name\":\"MOLINA VELEZ\",\"email\":\"jorgeluismolinavelez@gmail.com\",\"phone_number\":\"3125097819\",\"address\":null,\"creation_date\":\"2023-08-07T15:09:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl0mxea5is1tvhgsitu/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-07 20:09:52','2023-08-07 20:09:52'),(7527,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  774\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-07T14:12:11-06:00\",\"transaction\":{\"id\":\"trl0mxea5is1tvhgsitu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"89708307\",\"creation_date\":\"2023-08-07T15:09:16-06:00\",\"operation_date\":\"2023-08-07T00:00:00-06:00\",\"description\":\"Pago Mensual academia: JERONIMO MOLINA GARCIA (1020322545)\",\"error_message\":null,\"order_id\":\"_1691438942.3714\",\"due_date\":\"2023-08-08T03:09:16-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JORGE LUIS\",\"last_name\":\"MOLINA VELEZ\",\"email\":\"jorgeluismolinavelez@gmail.com\",\"phone_number\":\"3125097819\",\"address\":null,\"creation_date\":\"2023-08-07T15:09:16-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-07 20:12:12','2023-08-07 20:12:12'),(7528,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  853\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-07T15:12:31-05:00\",\"transaction\":{\"id\":\"trvgbrp8elawkpacmwkv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-07T15:12:31-05:00\",\"operation_date\":\"2023-08-07T15:12:31-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"757B505CFD34C64C85CA5B5690EE5293_E-64D15015-33_1691439149.9518\",\"amount\":146900.00,\"customer\":{\"name\":\"Andres\",\"last_name\":\"Villabona\",\"email\":\"anfevigi@gmail.com\",\"phone_number\":\"3158193134\",\"address\":null,\"creation_date\":\"2023-08-07T15:12:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trvgbrp8elawkpacmwkv/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-07 20:12:32','2023-08-07 20:12:32'),(7529,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1108\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-07T15:14:05-05:00\",\"transaction\":{\"id\":\"trvgbrp8elawkpacmwkv\",\"authorization\":\"151404\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-07T15:12:31-05:00\",\"operation_date\":\"2023-08-07T15:14:04-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"757B505CFD34C64C85CA5B5690EE5293_E-64D15015-33_1691439149.9518\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX0922\",\"holder_name\":\"Andres Villabona G\",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":146900.00,\"customer\":{\"name\":\"Andres\",\"last_name\":\"Villabona\",\"email\":\"anfevigi@gmail.com\",\"phone_number\":\"3158193134\",\"address\":null,\"creation_date\":\"2023-08-07T15:12:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trvgbrp8elawkpacmwkv/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-07 20:14:06','2023-08-07 20:14:06'),(7530,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-07T16:36:56-05:00\",\"transaction\":{\"id\":\"tr2fjrz02jibi6nrvssb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-07T16:36:01-05:00\",\"operation_date\":\"2023-08-07T16:36:01-05:00\",\"description\":\"Pago Mensual academia: Juan Felipe Estrada Arboleda (1018242654)\",\"error_message\":null,\"order_id\":\"20B02DC95171540BC52912BAF3AA709D_3QSIG9EN4H_1691444158.4497\",\"due_date\":\"2023-08-08T04:36:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Estrada\",\"email\":\"felipeestradaarboleda@gmail.com\",\"phone_number\":\"3193821294\",\"address\":null,\"creation_date\":\"2023-08-07T16:36:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2fjrz02jibi6nrvssb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-07 21:36:57','2023-08-07 21:36:57'),(7531,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-07T16:38:01-05:00\",\"transaction\":{\"id\":\"tr2fjrz02jibi6nrvssb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"89802607\",\"creation_date\":\"2023-08-07T16:36:01-05:00\",\"operation_date\":\"2023-08-07T16:37:55-05:00\",\"description\":\"Pago Mensual academia: Juan Felipe Estrada Arboleda (1018242654)\",\"error_message\":null,\"order_id\":\"20B02DC95171540BC52912BAF3AA709D_3QSIG9EN4H_1691444158.4497\",\"due_date\":\"2023-08-08T04:36:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Estrada\",\"email\":\"felipeestradaarboleda@gmail.com\",\"phone_number\":\"3193821294\",\"address\":null,\"creation_date\":\"2023-08-07T16:36:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-07 21:38:02','2023-08-07 21:38:02'),(7532,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-07T17:12:45-05:00\",\"transaction\":{\"id\":\"tro9ycrffm5adaa9cr3z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-07T17:11:52-05:00\",\"operation_date\":\"2023-08-07T17:11:52-05:00\",\"description\":\"Pago Mensual academia: Jacobo Palacios Morales (1023595586)\",\"error_message\":null,\"order_id\":\"AC8CD1808DC30460A81CAB1B0E6652FA_L5PYBTHAUO_1691446309.7506\",\"due_date\":\"2023-08-08T05:11:52-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Sandra\",\"last_name\":\"Morales\",\"email\":\"crismo0304@gmail.com\",\"phone_number\":\"3147456601\",\"address\":null,\"creation_date\":\"2023-08-07T17:11:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro9ycrffm5adaa9cr3z/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-07 22:12:46','2023-08-07 22:12:46'),(7533,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-07T17:15:04-05:00\",\"transaction\":{\"id\":\"tro9ycrffm5adaa9cr3z\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"89842299\",\"creation_date\":\"2023-08-07T17:11:52-05:00\",\"operation_date\":\"2023-08-07T17:14:48-05:00\",\"description\":\"Pago Mensual academia: Jacobo Palacios Morales (1023595586)\",\"error_message\":null,\"order_id\":\"AC8CD1808DC30460A81CAB1B0E6652FA_L5PYBTHAUO_1691446309.7506\",\"due_date\":\"2023-08-08T05:11:52-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Sandra\",\"last_name\":\"Morales\",\"email\":\"crismo0304@gmail.com\",\"phone_number\":\"3147456601\",\"address\":null,\"creation_date\":\"2023-08-07T17:11:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-07 22:15:05','2023-08-07 22:15:05'),(7534,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-07T19:24:38-05:00\",\"transaction\":{\"id\":\"trdh8bosbfxqon3h41gk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-07T19:23:50-05:00\",\"operation_date\":\"2023-08-07T19:23:50-05:00\",\"description\":\"Pago Mensual academia: Santiago Bilbao Lopez (1036456780)\",\"error_message\":null,\"order_id\":\"2996962656838A97AF4C5F926FE6F1B0_UYOHX2KSAG_1691454227.8587\",\"due_date\":\"2023-08-08T07:23:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gustavo\",\"last_name\":\"Bilbao Cortes\",\"email\":\"gbilbao.gb@gmail.com\",\"phone_number\":\"3002033557\",\"address\":null,\"creation_date\":\"2023-08-07T19:23:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdh8bosbfxqon3h41gk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 00:24:39','2023-08-08 00:24:39'),(7535,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-07T19:25:31-05:00\",\"transaction\":{\"id\":\"trdh8bosbfxqon3h41gk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"90001868\",\"creation_date\":\"2023-08-07T19:23:50-05:00\",\"operation_date\":\"2023-08-07T19:25:26-05:00\",\"description\":\"Pago Mensual academia: Santiago Bilbao Lopez (1036456780)\",\"error_message\":null,\"order_id\":\"2996962656838A97AF4C5F926FE6F1B0_UYOHX2KSAG_1691454227.8587\",\"due_date\":\"2023-08-08T07:23:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gustavo\",\"last_name\":\"Bilbao Cortes\",\"email\":\"gbilbao.gb@gmail.com\",\"phone_number\":\"3002033557\",\"address\":null,\"creation_date\":\"2023-08-07T19:23:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 00:25:32','2023-08-08 00:25:32'),(7536,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-07T20:11:48-05:00\",\"transaction\":{\"id\":\"trbnynne4xv56hljj7rr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-07T20:10:23-05:00\",\"operation_date\":\"2023-08-07T20:10:23-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Guzman Villa (1034998389)\",\"error_message\":null,\"order_id\":\"0A2A51DAC6138826127F093500461D91_BL7QYGITSU_1691457019.3128\",\"due_date\":\"2023-08-08T08:10:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Villa\",\"email\":\"ternerita26@hotmail.com\",\"phone_number\":\"3206998001\",\"address\":null,\"creation_date\":\"2023-08-07T20:10:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbnynne4xv56hljj7rr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 01:11:48','2023-08-08 01:11:48'),(7537,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-07T20:13:24-05:00\",\"transaction\":{\"id\":\"trbnynne4xv56hljj7rr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"90063098\",\"creation_date\":\"2023-08-07T20:10:23-05:00\",\"operation_date\":\"2023-08-07T20:12:51-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Guzman Villa (1034998389)\",\"error_message\":null,\"order_id\":\"0A2A51DAC6138826127F093500461D91_BL7QYGITSU_1691457019.3128\",\"due_date\":\"2023-08-08T08:10:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Villa\",\"email\":\"ternerita26@hotmail.com\",\"phone_number\":\"3206998001\",\"address\":null,\"creation_date\":\"2023-08-07T20:10:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 01:13:25','2023-08-08 01:13:25'),(7538,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  883\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-07T21:00:06-05:00\",\"transaction\":{\"id\":\"trswvwilcrbhbt9arvxq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-07T21:00:06-05:00\",\"operation_date\":\"2023-08-07T21:00:06-05:00\",\"description\":\"Pago Mensual academia: jeronimo vasquez vargas (1035012182)\",\"error_message\":null,\"order_id\":\"B0AB42FCB7133122B38521D13DA7120B_74XCYF19SR_1691459973.8722\",\"amount\":165900.00,\"customer\":{\"name\":\"david\",\"last_name\":\"vasquez\",\"email\":\"davidvg88@hotmail.com\",\"phone_number\":\"3146486117\",\"address\":null,\"creation_date\":\"2023-08-07T21:00:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trswvwilcrbhbt9arvxq/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 02:00:07','2023-08-08 02:00:07'),(7539,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  577\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-07T21:00:54-05:00\",\"transaction\":{\"id\":\"trkve8jxebsprp8mylej\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-08-07T21:00:53-05:00\",\"operation_date\":\"2023-08-07T21:00:53-05:00\",\"description\":\"Pago Mensual academia: jeronimo vasquez vargas (1035012182)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"B0AB42FCB7133122B38521D13DA7120B_74XCYF19SR_1691459973.8722\",\"error_code\":3001,\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 02:00:54','2023-08-08 02:00:54'),(7540,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1137\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-07T21:01:34-05:00\",\"transaction\":{\"id\":\"trswvwilcrbhbt9arvxq\",\"authorization\":\"R03168\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-07T21:00:06-05:00\",\"operation_date\":\"2023-08-07T21:01:33-05:00\",\"description\":\"Pago Mensual academia: jeronimo vasquez vargas (1035012182)\",\"error_message\":null,\"order_id\":\"B0AB42FCB7133122B38521D13DA7120B_74XCYF19SR_1691459973.8722\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX7640\",\"holder_name\":\"David vasquez g\",\"expiration_year\":\"24\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"david\",\"last_name\":\"vasquez\",\"email\":\"davidvg88@hotmail.com\",\"phone_number\":\"3146486117\",\"address\":null,\"creation_date\":\"2023-08-07T21:00:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trswvwilcrbhbt9arvxq/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-08 02:01:35','2023-08-08 02:01:35'),(7541,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-08T02:22:09-06:00\",\"transaction\":{\"id\":\"trrqowsscd6r7lx6vvw7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-04T14:33:41-06:00\",\"operation_date\":\"2023-08-04T14:33:41-06:00\",\"description\":\"Pago Mensual academia: Emiliano Morales Rios (1038874755)\",\"error_message\":null,\"order_id\":\"FA84632D742F2729DC32CE8CB5D49733_47P8O3RM0S_1691177616.8013\",\"due_date\":\"2023-08-05T02:33:41-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Morales Rios\",\"email\":\"stefar0210@gmail.com\",\"phone_number\":\"3136979739\",\"address\":null,\"creation_date\":\"2023-08-04T14:33:41-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrqowsscd6r7lx6vvw7/pse_capture\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 08:22:09','2023-08-08 08:22:09'),(7542,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-08T02:22:25-06:00\",\"transaction\":{\"id\":\"tra8wiywv9zaavhniqcn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-07T08:56:14-06:00\",\"operation_date\":\"2023-08-07T08:56:14-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"3644A684F98EA8FE223C713B77189A77_E-64D05C03-53_1691416560.7437\",\"due_date\":\"2023-08-07T20:56:14-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"jairo\",\"last_name\":\"chaverra serna\",\"email\":\"jairchas1@yahoo.es\",\"phone_number\":\"3117701766\",\"address\":null,\"creation_date\":\"2023-08-07T08:56:14-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tra8wiywv9zaavhniqcn/pse_capture\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 08:22:26','2023-08-08 08:22:26'),(7543,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-08T02:22:25-06:00\",\"transaction\":{\"id\":\"tr7wwnmcvyihcdjxgzhv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-06T21:51:05-06:00\",\"operation_date\":\"2023-08-06T21:51:05-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"3644A684F98EA8FE223C713B77189A77_E-64D05C03-53_1691376649.2468\",\"due_date\":\"2023-08-07T09:51:05-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"jairo\",\"last_name\":\"chaverra serna\",\"email\":\"jairchas1@yahoo.es\",\"phone_number\":\"3117701766\",\"address\":null,\"creation_date\":\"2023-08-06T21:51:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr7wwnmcvyihcdjxgzhv/pse_capture\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 08:22:26','2023-08-08 08:22:26'),(7544,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-08T02:22:25-06:00\",\"transaction\":{\"id\":\"trcj2zhosy0wnntlwnxj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-06T21:55:05-06:00\",\"operation_date\":\"2023-08-06T21:55:05-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"3644A684F98EA8FE223C713B77189A77_E-64D05C03-53_1691376896.7563\",\"due_date\":\"2023-08-07T09:55:05-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"jairo\",\"last_name\":\"chaverra serna\",\"email\":\"jairchas1@yahoo.es\",\"phone_number\":\"3117701766\",\"address\":null,\"creation_date\":\"2023-08-06T21:55:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trcj2zhosy0wnntlwnxj/pse_capture\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 08:22:26','2023-08-08 08:22:26'),(7545,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-08T02:22:25-06:00\",\"transaction\":{\"id\":\"trhpudphtjdwe5rtv4ut\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-04T16:28:03-06:00\",\"operation_date\":\"2023-08-04T16:28:03-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"0E65972DCE68DAD4D52D063967F0A705_E-64CD6CF3-35_1691184377.0962\",\"due_date\":\"2023-08-05T04:28:03-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"juan\",\"last_name\":\"herrera\",\"email\":\"juancho-98@hotmail.com\",\"phone_number\":\"3213046885\",\"address\":null,\"creation_date\":\"2023-08-04T16:28:03-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trhpudphtjdwe5rtv4ut/pse_capture\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 08:22:26','2023-08-08 08:22:26'),(7546,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  884\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T07:09:28-05:00\",\"transaction\":{\"id\":\"trjefce4t9ibf17nw9uw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T07:09:28-05:00\",\"operation_date\":\"2023-08-08T07:09:28-05:00\",\"description\":\"Pago Mensual academia: Isaac Vergara Perez (560661056)\",\"error_message\":null,\"order_id\":\"2BE9BD7A3434F7038CA27D1918DE58BD_Q9DZAIVFG1_1691496565.2479\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Perez Mesa\",\"email\":\"santi900325@gmail.com\",\"phone_number\":\"3234598000\",\"address\":null,\"creation_date\":\"2023-08-08T07:09:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjefce4t9ibf17nw9uw/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 12:09:28','2023-08-08 12:09:28'),(7547,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1139\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T07:11:05-05:00\",\"transaction\":{\"id\":\"trjefce4t9ibf17nw9uw\",\"authorization\":\"R07084\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T07:09:28-05:00\",\"operation_date\":\"2023-08-08T07:11:04-05:00\",\"description\":\"Pago Mensual academia: Isaac Vergara Perez (560661056)\",\"error_message\":null,\"order_id\":\"2BE9BD7A3434F7038CA27D1918DE58BD_Q9DZAIVFG1_1691496565.2479\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549157XXXXXX5264\",\"holder_name\":\"Santiago Perez M\",\"expiration_year\":\"27\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Perez Mesa\",\"email\":\"santi900325@gmail.com\",\"phone_number\":\"3234598000\",\"address\":null,\"creation_date\":\"2023-08-08T07:09:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjefce4t9ibf17nw9uw/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 12:11:06','2023-08-08 12:11:06'),(7548,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T07:30:00-05:00\",\"transaction\":{\"id\":\"tr3yak7v9cqb73vl1v9e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T07:28:23-05:00\",\"operation_date\":\"2023-08-08T07:28:23-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rueda Cardozo (1016913762)\",\"error_message\":null,\"order_id\":\"3A30BE93EB45566A90F4E95EE72A089A_Q862GSRU5W_1691497700.423\",\"due_date\":\"2023-08-08T19:28:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hernando\",\"last_name\":\"Rueda Ojeda\",\"email\":\"carolandreacardozo@gmail.com\",\"phone_number\":\"3013558382\",\"address\":null,\"creation_date\":\"2023-08-08T07:28:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3yak7v9cqb73vl1v9e/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 12:30:01','2023-08-08 12:30:01'),(7549,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T07:31:33-05:00\",\"transaction\":{\"id\":\"tr3yak7v9cqb73vl1v9e\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"90379584\",\"creation_date\":\"2023-08-08T07:28:23-05:00\",\"operation_date\":\"2023-08-08T07:31:15-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rueda Cardozo (1016913762)\",\"error_message\":null,\"order_id\":\"3A30BE93EB45566A90F4E95EE72A089A_Q862GSRU5W_1691497700.423\",\"due_date\":\"2023-08-08T19:28:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hernando\",\"last_name\":\"Rueda Ojeda\",\"email\":\"carolandreacardozo@gmail.com\",\"phone_number\":\"3013558382\",\"address\":null,\"creation_date\":\"2023-08-08T07:28:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 12:31:33','2023-08-08 12:31:33'),(7550,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T08:40:10-05:00\",\"transaction\":{\"id\":\"trw502uh1sxivukj2xch\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T08:39:13-05:00\",\"operation_date\":\"2023-08-08T08:39:13-05:00\",\"description\":\"Pago Mensual academia: Mattias David Henao Vasquez (1155713038)\",\"error_message\":null,\"order_id\":\"E94FE9AC8DC10DD8B9A239E6ABEE2848_E6J5P9MD8T_1691501949.9042\",\"due_date\":\"2023-08-08T20:39:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"vasquez bustos\",\"email\":\"sarawac@hotmail.com\",\"phone_number\":\"3004331580\",\"address\":null,\"creation_date\":\"2023-08-08T08:39:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trw502uh1sxivukj2xch/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 13:40:10','2023-08-08 13:40:10'),(7551,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T07:42:16-06:00\",\"transaction\":{\"id\":\"trw502uh1sxivukj2xch\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"90497060\",\"creation_date\":\"2023-08-08T08:39:13-06:00\",\"operation_date\":\"2023-08-08T08:42:12-06:00\",\"description\":\"Pago Mensual academia: Mattias David Henao Vasquez (1155713038)\",\"error_message\":null,\"order_id\":\"E94FE9AC8DC10DD8B9A239E6ABEE2848_E6J5P9MD8T_1691501949.9042\",\"due_date\":\"2023-08-08T20:39:13-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"vasquez bustos\",\"email\":\"sarawac@hotmail.com\",\"phone_number\":\"3004331580\",\"address\":null,\"creation_date\":\"2023-08-08T08:39:13-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 13:42:17','2023-08-08 13:42:17'),(7552,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T09:34:20-05:00\",\"transaction\":{\"id\":\"trjzyo1wg75iumpxkr5e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T09:33:28-05:00\",\"operation_date\":\"2023-08-08T09:33:28-05:00\",\"description\":\"Pago Mensual academia: Pedro Botero Montoya (1035003729)\",\"error_message\":null,\"order_id\":\"331316D4EFB44682092A006307B9AE3A_WYR43VK6FG_1691505205.3837\",\"due_date\":\"2023-08-08T21:33:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Botero Montoya\",\"email\":\"linamonty@hotmail.com\",\"phone_number\":\"3176567400\",\"address\":null,\"creation_date\":\"2023-08-08T09:33:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjzyo1wg75iumpxkr5e/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 14:34:21','2023-08-08 14:34:21'),(7553,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T08:36:25-06:00\",\"transaction\":{\"id\":\"trjzyo1wg75iumpxkr5e\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"90629685\",\"creation_date\":\"2023-08-08T09:33:28-06:00\",\"operation_date\":\"2023-08-08T09:36:14-06:00\",\"description\":\"Pago Mensual academia: Pedro Botero Montoya (1035003729)\",\"error_message\":null,\"order_id\":\"331316D4EFB44682092A006307B9AE3A_WYR43VK6FG_1691505205.3837\",\"due_date\":\"2023-08-08T21:33:28-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Botero Montoya\",\"email\":\"linamonty@hotmail.com\",\"phone_number\":\"3176567400\",\"address\":null,\"creation_date\":\"2023-08-08T09:33:28-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 14:36:25','2023-08-08 14:36:25'),(7554,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T09:39:33-05:00\",\"transaction\":{\"id\":\"trlgilpdhxxvbmcrommo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T09:38:41-05:00\",\"operation_date\":\"2023-08-08T09:38:41-05:00\",\"description\":\"Pago Mensual academia: Martin Botero Montoya (1034998616)\",\"error_message\":null,\"order_id\":\"59A3ADEA76FADCB6DD9E54C96FC155D1_HRM18ZIKO3_1691505519.035\",\"due_date\":\"2023-08-08T21:38:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Botero Montoya\",\"email\":\"linamonty@hotmail.com\",\"phone_number\":\"3176567400\",\"address\":null,\"creation_date\":\"2023-08-08T09:38:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlgilpdhxxvbmcrommo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 14:39:34','2023-08-08 14:39:34'),(7555,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T08:42:19-06:00\",\"transaction\":{\"id\":\"trlgilpdhxxvbmcrommo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"90643676\",\"creation_date\":\"2023-08-08T09:38:41-06:00\",\"operation_date\":\"2023-08-08T09:40:50-06:00\",\"description\":\"Pago Mensual academia: Martin Botero Montoya (1034998616)\",\"error_message\":null,\"order_id\":\"59A3ADEA76FADCB6DD9E54C96FC155D1_HRM18ZIKO3_1691505519.035\",\"due_date\":\"2023-08-08T21:38:41-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Botero Montoya\",\"email\":\"linamonty@hotmail.com\",\"phone_number\":\"3176567400\",\"address\":null,\"creation_date\":\"2023-08-08T09:38:41-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 14:42:19','2023-08-08 14:42:19'),(7556,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T10:02:28-05:00\",\"transaction\":{\"id\":\"trwbue1uyf1yj43e0hd3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T10:01:40-05:00\",\"operation_date\":\"2023-08-08T10:01:40-05:00\",\"description\":\"Pago Mensual academia: ANTHONY HINCAPIE CARDONA (1155714117)\",\"error_message\":null,\"order_id\":\"98BD65207EE83BFD17EBB0DB971EDDF9_UV4QO1LEC9_1691506896.4704\",\"due_date\":\"2023-08-08T22:01:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"YESID\",\"last_name\":\"HINCAPIE CASTRILLON\",\"email\":\"yesidhincapie268@gmail.com\",\"phone_number\":\"3016502735\",\"address\":null,\"creation_date\":\"2023-08-08T10:01:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwbue1uyf1yj43e0hd3/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 15:02:29','2023-08-08 15:02:29'),(7557,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T10:10:46-05:00\",\"transaction\":{\"id\":\"trwbue1uyf1yj43e0hd3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"90706141\",\"creation_date\":\"2023-08-08T10:01:40-05:00\",\"operation_date\":\"2023-08-08T10:10:29-05:00\",\"description\":\"Pago Mensual academia: ANTHONY HINCAPIE CARDONA (1155714117)\",\"error_message\":null,\"order_id\":\"98BD65207EE83BFD17EBB0DB971EDDF9_UV4QO1LEC9_1691506896.4704\",\"due_date\":\"2023-08-08T22:01:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"YESID\",\"last_name\":\"HINCAPIE CASTRILLON\",\"email\":\"yesidhincapie268@gmail.com\",\"phone_number\":\"3016502735\",\"address\":null,\"creation_date\":\"2023-08-08T10:01:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 15:10:46','2023-08-08 15:10:46'),(7558,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T10:40:19-05:00\",\"transaction\":{\"id\":\"truzpbgg8kmbsijjtvcg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T10:40:19-05:00\",\"operation_date\":\"2023-08-08T10:40:19-05:00\",\"description\":\"Pago Mensual academia: Cristobal Giraldo Ospina (1034993085)\",\"error_message\":null,\"order_id\":\"A4FA7175D4757E45EAC71A8487751F63_6PSLOJHAN4_1691509203.8082\",\"amount\":165900.00,\"customer\":{\"name\":\"Cristobal\",\"last_name\":\"Giraldo Ospina\",\"email\":\"carospina@hotmail.com\",\"phone_number\":\"3173659297\",\"address\":null,\"creation_date\":\"2023-08-08T10:40:18-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truzpbgg8kmbsijjtvcg/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-08 15:40:20','2023-08-08 15:40:20'),(7559,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1148\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T10:41:12-05:00\",\"transaction\":{\"id\":\"truzpbgg8kmbsijjtvcg\",\"authorization\":\"R08928\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T10:40:19-05:00\",\"operation_date\":\"2023-08-08T10:41:10-05:00\",\"description\":\"Pago Mensual academia: Cristobal Giraldo Ospina (1034993085)\",\"error_message\":null,\"order_id\":\"A4FA7175D4757E45EAC71A8487751F63_6PSLOJHAN4_1691509203.8082\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX5122\",\"holder_name\":\"LIZ C OSPINA G\",\"expiration_year\":\"26\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Cristobal\",\"last_name\":\"Giraldo Ospina\",\"email\":\"carospina@hotmail.com\",\"phone_number\":\"3173659297\",\"address\":null,\"creation_date\":\"2023-08-08T10:40:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truzpbgg8kmbsijjtvcg/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-08 15:41:12','2023-08-08 15:41:12'),(7560,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T11:01:30-05:00\",\"transaction\":{\"id\":\"trxy1bqwc0sme31rx3pm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T11:00:44-05:00\",\"operation_date\":\"2023-08-08T11:00:44-05:00\",\"description\":\"Pago Mensual academia: Emmanuel alvarez ramirez (32209206)\",\"error_message\":null,\"order_id\":\"2DE7CF2043693DB2EE898479A6E44529_VK7UB5ZIMN_1691510441.9492\",\"due_date\":\"2023-08-08T23:00:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isabel\",\"last_name\":\"ramirez arbelaez\",\"email\":\"Isabel.ramirez.arbelaez@hotmail.com\",\"phone_number\":\"3015830669\",\"address\":null,\"creation_date\":\"2023-08-08T11:00:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxy1bqwc0sme31rx3pm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 16:01:31','2023-08-08 16:01:31'),(7561,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T11:02:47-05:00\",\"transaction\":{\"id\":\"trxy1bqwc0sme31rx3pm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"90875211\",\"creation_date\":\"2023-08-08T11:00:44-05:00\",\"operation_date\":\"2023-08-08T11:02:41-05:00\",\"description\":\"Pago Mensual academia: Emmanuel alvarez ramirez (32209206)\",\"error_message\":null,\"order_id\":\"2DE7CF2043693DB2EE898479A6E44529_VK7UB5ZIMN_1691510441.9492\",\"due_date\":\"2023-08-08T23:00:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isabel\",\"last_name\":\"ramirez arbelaez\",\"email\":\"Isabel.ramirez.arbelaez@hotmail.com\",\"phone_number\":\"3015830669\",\"address\":null,\"creation_date\":\"2023-08-08T11:00:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 16:02:47','2023-08-08 16:02:47'),(7562,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T11:11:03-05:00\",\"transaction\":{\"id\":\"trk4bqvjtoid9ns7kdsa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T11:07:01-05:00\",\"operation_date\":\"2023-08-08T11:07:01-05:00\",\"description\":\"Pago Mensual academia: Steven David Jaramillo Pacheco (1038871796)\",\"error_message\":null,\"order_id\":\"7BA0691B7777B6581397456412A41390_LXBRIHCDWJ_1691510805.0736\",\"due_date\":\"2023-08-08T23:07:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Steven David\",\"last_name\":\"Jaramillo Pacheco\",\"email\":\"alex14271@hotmail.com\",\"phone_number\":\"3246027737\",\"address\":null,\"creation_date\":\"2023-08-08T11:07:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trk4bqvjtoid9ns7kdsa/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 16:11:04','2023-08-08 16:11:04'),(7563,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  863\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-08T10:33:10-06:00\",\"transaction\":{\"id\":\"trk4bqvjtoid9ns7kdsa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-08T11:07:01-06:00\",\"operation_date\":\"2023-08-08T11:11:10-06:00\",\"description\":\"Pago Mensual academia: Steven David Jaramillo Pacheco (1038871796)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"7BA0691B7777B6581397456412A41390_LXBRIHCDWJ_1691510805.0736\",\"due_date\":\"2023-08-08T23:07:01-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Steven David\",\"last_name\":\"Jaramillo Pacheco\",\"email\":\"alex14271@hotmail.com\",\"phone_number\":\"3246027737\",\"address\":null,\"creation_date\":\"2023-08-08T11:07:01-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 16:33:10','2023-08-08 16:33:10'),(7564,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  877\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T11:44:31-05:00\",\"transaction\":{\"id\":\"tr0dsnkmdzju4km076on\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T11:44:31-05:00\",\"operation_date\":\"2023-08-08T11:44:31-05:00\",\"description\":\"Pago Mensual academia: Isaac Bastidas (1040751513)\",\"error_message\":null,\"order_id\":\"F471223D1A1614B58A7DC45C9D01DF19_FZ6DP2R0S5_1691513066.6845\",\"amount\":165900.00,\"customer\":{\"name\":\"milena\",\"last_name\":\"Gonzalez\",\"email\":\"milego2122@hotmail.com\",\"phone_number\":\"3137509314\",\"address\":null,\"creation_date\":\"2023-08-08T11:44:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0dsnkmdzju4km076on/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 16:44:31','2023-08-08 16:44:31'),(7565,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1131\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T11:45:47-05:00\",\"transaction\":{\"id\":\"tr0dsnkmdzju4km076on\",\"authorization\":\"114547\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T11:44:31-05:00\",\"operation_date\":\"2023-08-08T11:45:46-05:00\",\"description\":\"Pago Mensual academia: Isaac Bastidas (1040751513)\",\"error_message\":null,\"order_id\":\"F471223D1A1614B58A7DC45C9D01DF19_FZ6DP2R0S5_1691513066.6845\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX6316\",\"holder_name\":\"Robeiro Bastidas \",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"milena\",\"last_name\":\"Gonzalez\",\"email\":\"milego2122@hotmail.com\",\"phone_number\":\"3137509314\",\"address\":null,\"creation_date\":\"2023-08-08T11:44:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0dsnkmdzju4km076on/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-08 16:45:48','2023-08-08 16:45:48'),(7566,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  877\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T11:46:41-05:00\",\"transaction\":{\"id\":\"trdtjlncaz81ex6tb19w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T11:46:40-05:00\",\"operation_date\":\"2023-08-08T11:46:40-05:00\",\"description\":\"Pago Mensual academia: Isaac Bastidas (1040751513)\",\"error_message\":null,\"order_id\":\"ACF06CDD9C744F969958E1F085554C8B_A8YIEQMUWG_1691513174.8563\",\"amount\":165900.00,\"customer\":{\"name\":\"milena\",\"last_name\":\"Gonzalez\",\"email\":\"milego2122@hotmail.com\",\"phone_number\":\"3137509314\",\"address\":null,\"creation_date\":\"2023-08-08T11:46:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdtjlncaz81ex6tb19w/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 16:46:41','2023-08-08 16:46:41'),(7567,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1131\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T11:47:28-05:00\",\"transaction\":{\"id\":\"trdtjlncaz81ex6tb19w\",\"authorization\":\"114728\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T11:46:40-05:00\",\"operation_date\":\"2023-08-08T11:47:27-05:00\",\"description\":\"Pago Mensual academia: Isaac Bastidas (1040751513)\",\"error_message\":null,\"order_id\":\"ACF06CDD9C744F969958E1F085554C8B_A8YIEQMUWG_1691513174.8563\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX6316\",\"holder_name\":\"Robeiro Bastidas \",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"milena\",\"last_name\":\"Gonzalez\",\"email\":\"milego2122@hotmail.com\",\"phone_number\":\"3137509314\",\"address\":null,\"creation_date\":\"2023-08-08T11:46:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdtjlncaz81ex6tb19w/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 16:47:29','2023-08-08 16:47:29'),(7568,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T11:52:28-05:00\",\"transaction\":{\"id\":\"trfkhd7sk2wvoydzme7f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T11:52:28-05:00\",\"operation_date\":\"2023-08-08T11:52:28-05:00\",\"description\":\"Pago Mensual academia: Matias Restrepo giraldo (1017935974)\",\"error_message\":null,\"order_id\":\"14491B756B3A51DAAC41C24863285549_VOG5QB2LS9_1691513539.9165\",\"amount\":165900.00,\"customer\":{\"name\":\"Johan Stiven\",\"last_name\":\"Restrepo Zapata\",\"email\":\"tmstivenrpo@gmail.com\",\"phone_number\":\"3136427474\",\"address\":null,\"creation_date\":\"2023-08-08T11:52:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfkhd7sk2wvoydzme7f/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 16:52:28','2023-08-08 16:52:28'),(7569,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1151\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T11:53:34-05:00\",\"transaction\":{\"id\":\"trfkhd7sk2wvoydzme7f\",\"authorization\":\"R00613\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T11:52:28-05:00\",\"operation_date\":\"2023-08-08T11:53:33-05:00\",\"description\":\"Pago Mensual academia: Matias Restrepo giraldo (1017935974)\",\"error_message\":null,\"order_id\":\"14491B756B3A51DAAC41C24863285549_VOG5QB2LS9_1691513539.9165\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"543862XXXXXX2485\",\"holder_name\":\"Banco de bogota\",\"expiration_year\":\"26\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Johan Stiven\",\"last_name\":\"Restrepo Zapata\",\"email\":\"tmstivenrpo@gmail.com\",\"phone_number\":\"3136427474\",\"address\":null,\"creation_date\":\"2023-08-08T11:52:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfkhd7sk2wvoydzme7f/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-08 16:53:35','2023-08-08 16:53:35'),(7570,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T12:01:15-05:00\",\"transaction\":{\"id\":\"tr1qkbe8nqat1igyffop\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T11:59:05-05:00\",\"operation_date\":\"2023-08-08T11:59:05-05:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":null,\"order_id\":\"09060616068D2B9544DC33F2FBE4CE2D_5QVODIN16A_1691513942.8806\",\"due_date\":\"2023-08-08T23:59:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-08-08T11:59:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1qkbe8nqat1igyffop/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:01:16','2023-08-08 17:01:16'),(7571,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T11:03:48-06:00\",\"transaction\":{\"id\":\"tr1qkbe8nqat1igyffop\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91048415\",\"creation_date\":\"2023-08-08T11:59:05-06:00\",\"operation_date\":\"2023-08-08T12:02:48-06:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":null,\"order_id\":\"09060616068D2B9544DC33F2FBE4CE2D_5QVODIN16A_1691513942.8806\",\"due_date\":\"2023-08-08T23:59:05-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-08-08T11:59:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:03:48','2023-08-08 17:03:48'),(7572,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T12:24:54-05:00\",\"transaction\":{\"id\":\"trrsj3g0sbtiope1pct0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T12:24:12-05:00\",\"operation_date\":\"2023-08-08T12:24:12-05:00\",\"description\":\"Pago Mensual academia: Steven David Jaramillo Pacheco (1038871796)\",\"error_message\":null,\"order_id\":\"7BA0691B7777B6581397456412A41390_LXBRIHCDWJ_1691515449.319\",\"due_date\":\"2023-08-09T00:24:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Steven David\",\"last_name\":\"Jaramillo Pacheco\",\"email\":\"alex14271@hotmail.com\",\"phone_number\":\"3246027737\",\"address\":null,\"creation_date\":\"2023-08-08T12:24:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrsj3g0sbtiope1pct0/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:24:54','2023-08-08 17:24:54'),(7573,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T12:25:56-05:00\",\"transaction\":{\"id\":\"trrsj3g0sbtiope1pct0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91113345\",\"creation_date\":\"2023-08-08T12:24:12-05:00\",\"operation_date\":\"2023-08-08T12:25:51-05:00\",\"description\":\"Pago Mensual academia: Steven David Jaramillo Pacheco (1038871796)\",\"error_message\":null,\"order_id\":\"7BA0691B7777B6581397456412A41390_LXBRIHCDWJ_1691515449.319\",\"due_date\":\"2023-08-09T00:24:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Steven David\",\"last_name\":\"Jaramillo Pacheco\",\"email\":\"alex14271@hotmail.com\",\"phone_number\":\"3246027737\",\"address\":null,\"creation_date\":\"2023-08-08T12:24:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:25:57','2023-08-08 17:25:57'),(7574,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T12:29:37-05:00\",\"transaction\":{\"id\":\"trpndlccmlt40pk3ie8i\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T12:28:43-05:00\",\"operation_date\":\"2023-08-08T12:28:43-05:00\",\"description\":\"Pago Mensual academia: Pedro Piedrahita (1021943243)\",\"error_message\":null,\"order_id\":\"38A77AA456FC813AF07BB428F2363C8D_HO63T1VGNK_1691515719.6226\",\"due_date\":\"2023-08-09T00:28:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Piedrahita Ruiz\",\"email\":\"jspiedrahita@hotmail.com\",\"phone_number\":\"3137637975\",\"address\":null,\"creation_date\":\"2023-08-08T12:28:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpndlccmlt40pk3ie8i/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:29:38','2023-08-08 17:29:38'),(7575,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T12:31:41-05:00\",\"transaction\":{\"id\":\"trpndlccmlt40pk3ie8i\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91126026\",\"creation_date\":\"2023-08-08T12:28:43-05:00\",\"operation_date\":\"2023-08-08T12:31:34-05:00\",\"description\":\"Pago Mensual academia: Pedro Piedrahita (1021943243)\",\"error_message\":null,\"order_id\":\"38A77AA456FC813AF07BB428F2363C8D_HO63T1VGNK_1691515719.6226\",\"due_date\":\"2023-08-09T00:28:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Piedrahita Ruiz\",\"email\":\"jspiedrahita@hotmail.com\",\"phone_number\":\"3137637975\",\"address\":null,\"creation_date\":\"2023-08-08T12:28:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:31:42','2023-08-08 17:31:42'),(7576,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T12:34:17-05:00\",\"transaction\":{\"id\":\"trm8uwzfjwqko9peeesv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T11:55:10-05:00\",\"operation_date\":\"2023-08-08T11:55:10-05:00\",\"description\":\"Pago Mensual academia: Thomas Cañaveral Mora (1023536002)\",\"error_message\":null,\"order_id\":\"21C5BBA1DD6AED9AB48C2B34C1A0ADDE_4HURXF17ZV_1691513693.6498\",\"due_date\":\"2023-08-08T23:55:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"julian\",\"last_name\":\"cañaveral\",\"email\":\"julian_canaveral@hotmail.com\",\"phone_number\":\"3147101466\",\"address\":null,\"creation_date\":\"2023-08-08T11:55:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm8uwzfjwqko9peeesv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:34:18','2023-08-08 17:34:18'),(7577,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T12:35:04-05:00\",\"transaction\":{\"id\":\"trm8uwzfjwqko9peeesv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91138218\",\"creation_date\":\"2023-08-08T11:55:10-05:00\",\"operation_date\":\"2023-08-08T12:35:00-05:00\",\"description\":\"Pago Mensual academia: Thomas Cañaveral Mora (1023536002)\",\"error_message\":null,\"order_id\":\"21C5BBA1DD6AED9AB48C2B34C1A0ADDE_4HURXF17ZV_1691513693.6498\",\"due_date\":\"2023-08-08T23:55:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"julian\",\"last_name\":\"cañaveral\",\"email\":\"julian_canaveral@hotmail.com\",\"phone_number\":\"3147101466\",\"address\":null,\"creation_date\":\"2023-08-08T11:55:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:35:05','2023-08-08 17:35:05'),(7578,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T12:40:16-05:00\",\"transaction\":{\"id\":\"trky2su0b2zgac4qrtsi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T12:35:10-05:00\",\"operation_date\":\"2023-08-08T12:35:10-05:00\",\"description\":\"Pago Mensual academia: JOSE LUIS RODRIGUEZ PABON (1155713386)\",\"error_message\":null,\"order_id\":\"0655F117444FC1911AB9C6F6B0139051_VJLC3ESPU8_1691516103.6414\",\"due_date\":\"2023-08-09T00:35:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JOSE LUIS\",\"last_name\":\"RODRIGUEZ \",\"email\":\"francirpabon@icloud.com\",\"phone_number\":\"3042931479\",\"address\":null,\"creation_date\":\"2023-08-08T12:35:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trky2su0b2zgac4qrtsi/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:40:17','2023-08-08 17:40:17'),(7579,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T11:42:18-06:00\",\"transaction\":{\"id\":\"trky2su0b2zgac4qrtsi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91153436\",\"creation_date\":\"2023-08-08T12:35:10-06:00\",\"operation_date\":\"2023-08-08T12:41:16-06:00\",\"description\":\"Pago Mensual academia: JOSE LUIS RODRIGUEZ PABON (1155713386)\",\"error_message\":null,\"order_id\":\"0655F117444FC1911AB9C6F6B0139051_VJLC3ESPU8_1691516103.6414\",\"due_date\":\"2023-08-09T00:35:10-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JOSE LUIS\",\"last_name\":\"RODRIGUEZ \",\"email\":\"francirpabon@icloud.com\",\"phone_number\":\"3042931479\",\"address\":null,\"creation_date\":\"2023-08-08T12:35:10-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:42:19','2023-08-08 17:42:19'),(7580,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  901\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T12:43:07-05:00\",\"transaction\":{\"id\":\"trmbepwayl7fdw6rs3rl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T12:43:07-05:00\",\"operation_date\":\"2023-08-08T12:43:07-05:00\",\"description\":\"Pago Mensual academia: Christopher Castaño Blandón (1023639803)\",\"error_message\":null,\"order_id\":\"69F268FB2BA1068615B3219C6E8F57E8_WXY2N4CA9I_1691516579.1449\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Blandón Acosta\",\"email\":\"tati.blandona@gmail.com\",\"phone_number\":\"3216570192\",\"address\":null,\"creation_date\":\"2023-08-08T12:43:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmbepwayl7fdw6rs3rl/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 17:43:08','2023-08-08 17:43:08'),(7581,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  583\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-08T12:43:39-05:00\",\"transaction\":{\"id\":\"trezcakijye0xra8wcve\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T12:43:39-05:00\",\"operation_date\":\"2023-08-08T12:43:39-05:00\",\"description\":\"Pago Mensual academia: Christopher Castaño Blandón (1023639803)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"69F268FB2BA1068615B3219C6E8F57E8_WXY2N4CA9I_1691516579.1449\",\"error_code\":3001,\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 17:43:40','2023-08-08 17:43:40'),(7582,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T12:45:14-05:00\",\"transaction\":{\"id\":\"triijyh3mktwipxs6ome\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T12:43:59-05:00\",\"operation_date\":\"2023-08-08T12:43:59-05:00\",\"description\":\"Pago Mensual academia: Christopher Castaño Blandón (1023639803)\",\"error_message\":null,\"order_id\":\"69F268FB2BA1068615B3219C6E8F57E8_WXY2N4CA9I_1691516637.5634\",\"due_date\":\"2023-08-09T00:43:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Blandon Acosta\",\"email\":\"tati.blandona@gmail.com\",\"phone_number\":\"3216570192\",\"address\":null,\"creation_date\":\"2023-08-08T12:43:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triijyh3mktwipxs6ome/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:45:15','2023-08-08 17:45:15'),(7583,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T12:46:49-05:00\",\"transaction\":{\"id\":\"triijyh3mktwipxs6ome\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91166022\",\"creation_date\":\"2023-08-08T12:43:59-05:00\",\"operation_date\":\"2023-08-08T12:46:26-05:00\",\"description\":\"Pago Mensual academia: Christopher Castaño Blandón (1023639803)\",\"error_message\":null,\"order_id\":\"69F268FB2BA1068615B3219C6E8F57E8_WXY2N4CA9I_1691516637.5634\",\"due_date\":\"2023-08-09T00:43:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Blandon Acosta\",\"email\":\"tati.blandona@gmail.com\",\"phone_number\":\"3216570192\",\"address\":null,\"creation_date\":\"2023-08-08T12:43:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 17:46:49','2023-08-08 17:46:49'),(7584,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T12:59:31-05:00\",\"transaction\":{\"id\":\"trvbh1osx59l5is8beku\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T12:59:31-05:00\",\"operation_date\":\"2023-08-08T12:59:31-05:00\",\"description\":\"Pago Mensual academia: Angel David Botero Montoya (1023538420)\",\"error_message\":null,\"order_id\":\"0987B8B338D6C90BBEDD8631BC499221_K3I81DAR7T_1691517563.0963\",\"amount\":165900.00,\"customer\":{\"name\":\"Yojan Adolfo\",\"last_name\":\"Botero Gomez\",\"email\":\"yadolfo@gmail.com\",\"phone_number\":\"3217000118\",\"address\":null,\"creation_date\":\"2023-08-08T12:59:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvbh1osx59l5is8beku/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 17:59:32','2023-08-08 17:59:32'),(7585,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T13:01:14-05:00\",\"transaction\":{\"id\":\"trgfbgfgac311boldxan\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T13:01:14-05:00\",\"operation_date\":\"2023-08-08T13:01:14-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"274AD4786C3ABCA69FA097B85867D9A4_E-64D28231-91_1691517665.3765\",\"amount\":146900.00,\"customer\":{\"name\":\"lizeth\",\"last_name\":\"rodriguez\",\"email\":\"liz.rood7@gmail.com\",\"phone_number\":\"3148392496\",\"address\":null,\"creation_date\":\"2023-08-08T13:01:14-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trgfbgfgac311boldxan/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-08 18:01:15','2023-08-08 18:01:15'),(7586,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1141\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T13:01:18-05:00\",\"transaction\":{\"id\":\"trvbh1osx59l5is8beku\",\"authorization\":\"478606\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T12:59:31-05:00\",\"operation_date\":\"2023-08-08T13:01:18-05:00\",\"description\":\"Pago Mensual academia: Angel David Botero Montoya (1023538420)\",\"error_message\":null,\"order_id\":\"0987B8B338D6C90BBEDD8631BC499221_K3I81DAR7T_1691517563.0963\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"518841XXXXXX9838\",\"holder_name\":\"YOJAN A BOTERO G\",\"expiration_year\":\"26\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"amount\":165900.00,\"customer\":{\"name\":\"Yojan Adolfo\",\"last_name\":\"Botero Gomez\",\"email\":\"yadolfo@gmail.com\",\"phone_number\":\"3217000118\",\"address\":null,\"creation_date\":\"2023-08-08T12:59:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvbh1osx59l5is8beku/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 18:01:19','2023-08-08 18:01:19'),(7587,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1113\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T13:02:13-05:00\",\"transaction\":{\"id\":\"trgfbgfgac311boldxan\",\"authorization\":\"R05396\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T13:01:14-05:00\",\"operation_date\":\"2023-08-08T13:02:12-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"274AD4786C3ABCA69FA097B85867D9A4_E-64D28231-91_1691517665.3765\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530371XXXXXX2773\",\"holder_name\":\"LIZETH P RODRIGUEZ S\",\"expiration_year\":\"25\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":146900.00,\"customer\":{\"name\":\"lizeth\",\"last_name\":\"rodriguez\",\"email\":\"liz.rood7@gmail.com\",\"phone_number\":\"3148392496\",\"address\":null,\"creation_date\":\"2023-08-08T13:01:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trgfbgfgac311boldxan/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 18:02:14','2023-08-08 18:02:14'),(7588,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T13:03:48-05:00\",\"transaction\":{\"id\":\"tr27jrenj7ljtjc7ohpz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T13:03:05-05:00\",\"operation_date\":\"2023-08-08T13:03:05-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gómez Loaiza (1025666604)\",\"error_message\":null,\"order_id\":\"8B9E7AB295E87570551DB122A04C6F7C_AVQZSJUTYH_1691517749.1684\",\"due_date\":\"2023-08-09T01:03:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Loaiza Marin\",\"email\":\"estefanialoaizamarin0927@gmail.com\",\"phone_number\":\"3003261902\",\"address\":null,\"creation_date\":\"2023-08-08T13:03:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr27jrenj7ljtjc7ohpz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 18:03:48','2023-08-08 18:03:48'),(7589,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  883\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T13:06:19-05:00\",\"transaction\":{\"id\":\"trcjxdnmykq9zolrhh6v\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T13:06:19-05:00\",\"operation_date\":\"2023-08-08T13:06:19-05:00\",\"description\":\"Pago Mensual academia: Anthony Ramirez Rendon (1038874697)\",\"error_message\":null,\"order_id\":\"CA793D8B79C1B6665CF109D6077A8277_JQZV3U8PXE_1691517975.1987\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Rendon\",\"email\":\"tatirendonc@gmail.com\",\"phone_number\":\"3008949106\",\"address\":null,\"creation_date\":\"2023-08-08T13:06:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcjxdnmykq9zolrhh6v/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-08 18:06:19','2023-08-08 18:06:19'),(7590,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T13:06:37-05:00\",\"transaction\":{\"id\":\"trmsjjhkepc5cfo41sfs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T13:05:43-05:00\",\"operation_date\":\"2023-08-08T13:05:43-05:00\",\"description\":\"Pago Mensual academia: martin perez castaño (1033200095)\",\"error_message\":null,\"order_id\":\"D2CD33E9C0236A8C2D8BD3FA91AD3ACF_IMQCRUFAYJ_1691517940.7078\",\"due_date\":\"2023-08-09T01:05:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"perez\",\"email\":\"lizethagudelo19@hotmail.com\",\"phone_number\":\"3017485555\",\"address\":null,\"creation_date\":\"2023-08-08T13:05:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmsjjhkepc5cfo41sfs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 18:06:38','2023-08-08 18:06:38'),(7591,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1134\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T13:07:45-05:00\",\"transaction\":{\"id\":\"trcjxdnmykq9zolrhh6v\",\"authorization\":\"130744\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T13:06:19-05:00\",\"operation_date\":\"2023-08-08T13:07:44-05:00\",\"description\":\"Pago Mensual academia: Anthony Ramirez Rendon (1038874697)\",\"error_message\":null,\"order_id\":\"CA793D8B79C1B6665CF109D6077A8277_JQZV3U8PXE_1691517975.1987\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX2149\",\"holder_name\":\"Tatiana Rendon\",\"expiration_year\":\"26\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Rendon\",\"email\":\"tatirendonc@gmail.com\",\"phone_number\":\"3008949106\",\"address\":null,\"creation_date\":\"2023-08-08T13:06:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcjxdnmykq9zolrhh6v/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-08 18:07:46','2023-08-08 18:07:46'),(7592,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T12:09:18-06:00\",\"transaction\":{\"id\":\"trmsjjhkepc5cfo41sfs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91219298\",\"creation_date\":\"2023-08-08T13:05:43-06:00\",\"operation_date\":\"2023-08-08T13:07:22-06:00\",\"description\":\"Pago Mensual academia: martin perez castaño (1033200095)\",\"error_message\":null,\"order_id\":\"D2CD33E9C0236A8C2D8BD3FA91AD3ACF_IMQCRUFAYJ_1691517940.7078\",\"due_date\":\"2023-08-09T01:05:43-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"perez\",\"email\":\"lizethagudelo19@hotmail.com\",\"phone_number\":\"3017485555\",\"address\":null,\"creation_date\":\"2023-08-08T13:05:43-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 18:09:19','2023-08-08 18:09:19'),(7593,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T12:12:18-06:00\",\"transaction\":{\"id\":\"trmsjjhkepc5cfo41sfs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91219298\",\"creation_date\":\"2023-08-08T13:05:43-06:00\",\"operation_date\":\"2023-08-08T13:07:22-06:00\",\"description\":\"Pago Mensual academia: martin perez castaño (1033200095)\",\"error_message\":null,\"order_id\":\"D2CD33E9C0236A8C2D8BD3FA91AD3ACF_IMQCRUFAYJ_1691517940.7078\",\"due_date\":\"2023-08-09T01:05:43-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"perez\",\"email\":\"lizethagudelo19@hotmail.com\",\"phone_number\":\"3017485555\",\"address\":null,\"creation_date\":\"2023-08-08T13:05:43-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 18:12:19','2023-08-08 18:12:19'),(7594,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T13:14:18-05:00\",\"transaction\":{\"id\":\"tr27jrenj7ljtjc7ohpz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91212172\",\"creation_date\":\"2023-08-08T13:03:05-05:00\",\"operation_date\":\"2023-08-08T13:14:06-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gómez Loaiza (1025666604)\",\"error_message\":null,\"order_id\":\"8B9E7AB295E87570551DB122A04C6F7C_AVQZSJUTYH_1691517749.1684\",\"due_date\":\"2023-08-09T01:03:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Loaiza Marin\",\"email\":\"estefanialoaizamarin0927@gmail.com\",\"phone_number\":\"3003261902\",\"address\":null,\"creation_date\":\"2023-08-08T13:03:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 18:14:19','2023-08-08 18:14:19'),(7595,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T14:21:56-05:00\",\"transaction\":{\"id\":\"trslkrsgjxtbvboy5rbt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T14:19:57-05:00\",\"operation_date\":\"2023-08-08T14:19:57-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Guzman Villa (1034998389)\",\"error_message\":null,\"order_id\":\"333CB763FACC6CE398FF83845F224D62_5IEBKATSVN_1691522394.9142\",\"due_date\":\"2023-08-09T02:19:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Villa\",\"email\":\"ternerita26@hotmail.com\",\"phone_number\":\"3206998001\",\"address\":null,\"creation_date\":\"2023-08-08T14:19:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trslkrsgjxtbvboy5rbt/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 19:21:57','2023-08-08 19:21:57'),(7596,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T14:23:12-05:00\",\"transaction\":{\"id\":\"trslkrsgjxtbvboy5rbt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91406998\",\"creation_date\":\"2023-08-08T14:19:57-05:00\",\"operation_date\":\"2023-08-08T14:23:00-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Guzman Villa (1034998389)\",\"error_message\":null,\"order_id\":\"333CB763FACC6CE398FF83845F224D62_5IEBKATSVN_1691522394.9142\",\"due_date\":\"2023-08-09T02:19:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Villa\",\"email\":\"ternerita26@hotmail.com\",\"phone_number\":\"3206998001\",\"address\":null,\"creation_date\":\"2023-08-08T14:19:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 19:23:13','2023-08-08 19:23:13'),(7597,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T14:33:11-05:00\",\"transaction\":{\"id\":\"trahgrvteixripkiw3cf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T14:31:53-05:00\",\"operation_date\":\"2023-08-08T14:31:53-05:00\",\"description\":\"Pago Mensual academia: Cristobal Choperena González (1020122976)\",\"error_message\":null,\"order_id\":\"A36B598ABB934E4528412E5A2127B931_02I4ZWVY3C_1691523110.0934\",\"due_date\":\"2023-08-09T02:31:53-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristobal\",\"last_name\":\"Choperena González\",\"email\":\"sandra0918@hotmail.com\",\"phone_number\":\"3218512057\",\"address\":null,\"creation_date\":\"2023-08-08T14:31:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trahgrvteixripkiw3cf/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 19:33:12','2023-08-08 19:33:12'),(7598,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T14:34:31-05:00\",\"transaction\":{\"id\":\"trahgrvteixripkiw3cf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91437446\",\"creation_date\":\"2023-08-08T14:31:53-05:00\",\"operation_date\":\"2023-08-08T14:34:11-05:00\",\"description\":\"Pago Mensual academia: Cristobal Choperena González (1020122976)\",\"error_message\":null,\"order_id\":\"A36B598ABB934E4528412E5A2127B931_02I4ZWVY3C_1691523110.0934\",\"due_date\":\"2023-08-09T02:31:53-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristobal\",\"last_name\":\"Choperena González\",\"email\":\"sandra0918@hotmail.com\",\"phone_number\":\"3218512057\",\"address\":null,\"creation_date\":\"2023-08-08T14:31:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 19:34:31','2023-08-08 19:34:31'),(7599,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T15:30:16-05:00\",\"transaction\":{\"id\":\"trc0yut3pqcpc4gzh0gh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T15:29:23-05:00\",\"operation_date\":\"2023-08-08T15:29:23-05:00\",\"description\":\"Pago Mensual academia: maximiliano florez henao (1023534063)\",\"error_message\":null,\"order_id\":\"0CD6A652ED1F7811192DB1F700C8F0E7_R3FKNJ6G1T_1691526559.913\",\"due_date\":\"2023-08-09T03:29:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"claudia maria\",\"last_name\":\"henao estrada\",\"email\":\"juans10311@gmail.com\",\"phone_number\":\"3016319874\",\"address\":null,\"creation_date\":\"2023-08-08T15:29:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc0yut3pqcpc4gzh0gh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 20:30:17','2023-08-08 20:30:17'),(7600,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T15:31:29-05:00\",\"transaction\":{\"id\":\"trc0yut3pqcpc4gzh0gh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91596212\",\"creation_date\":\"2023-08-08T15:29:23-05:00\",\"operation_date\":\"2023-08-08T00:00:00-05:00\",\"description\":\"Pago Mensual academia: maximiliano florez henao (1023534063)\",\"error_message\":null,\"order_id\":\"0CD6A652ED1F7811192DB1F700C8F0E7_R3FKNJ6G1T_1691526559.913\",\"due_date\":\"2023-08-09T03:29:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"claudia maria\",\"last_name\":\"henao estrada\",\"email\":\"juans10311@gmail.com\",\"phone_number\":\"3016319874\",\"address\":null,\"creation_date\":\"2023-08-08T15:29:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 20:31:29','2023-08-08 20:31:29'),(7601,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T16:02:17-05:00\",\"transaction\":{\"id\":\"trw2r8lyycjovz179fnn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T16:02:16-05:00\",\"operation_date\":\"2023-08-08T16:02:16-05:00\",\"description\":\"Pago Mensual academia: federico echeverri correa (1038265591)\",\"error_message\":null,\"order_id\":\"75DF63609809C7A2052FDFFE5C00A84E_D5L9OZPTYF_1691528532.5745\",\"amount\":165900.00,\"customer\":{\"name\":\"carlos arturo\",\"last_name\":\"echeverri rios\",\"email\":\"echeverririoscarlosarturo@gmail.com\",\"phone_number\":\"3148289231\",\"address\":null,\"creation_date\":\"2023-08-08T16:02:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trw2r8lyycjovz179fnn/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 21:02:17','2023-08-08 21:02:17'),(7602,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T16:03:42-05:00\",\"transaction\":{\"id\":\"truaimwoum5zfdxlpv0x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T16:02:16-05:00\",\"operation_date\":\"2023-08-08T16:02:16-05:00\",\"description\":\"Pago Mensual academia: santiago mercado gallego (1013463850)\",\"error_message\":null,\"order_id\":\"82B0639A82D0CC70B8F5830FD2B06868_65FDJUEC8T_1691528530.6958\",\"due_date\":\"2023-08-09T04:02:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"santiago\",\"last_name\":\"mercado gallego\",\"email\":\"agallegorivas23@gmail.com\",\"phone_number\":\"3004540902\",\"address\":null,\"creation_date\":\"2023-08-08T16:02:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truaimwoum5zfdxlpv0x/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 21:03:43','2023-08-08 21:03:43'),(7603,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T16:04:26-05:00\",\"transaction\":{\"id\":\"truaimwoum5zfdxlpv0x\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91690946\",\"creation_date\":\"2023-08-08T16:02:16-05:00\",\"operation_date\":\"2023-08-08T16:04:18-05:00\",\"description\":\"Pago Mensual academia: santiago mercado gallego (1013463850)\",\"error_message\":null,\"order_id\":\"82B0639A82D0CC70B8F5830FD2B06868_65FDJUEC8T_1691528530.6958\",\"due_date\":\"2023-08-09T04:02:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"santiago\",\"last_name\":\"mercado gallego\",\"email\":\"agallegorivas23@gmail.com\",\"phone_number\":\"3004540902\",\"address\":null,\"creation_date\":\"2023-08-08T16:02:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 21:04:26','2023-08-08 21:04:26'),(7604,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T16:05:12-05:00\",\"transaction\":{\"id\":\"tre7sxamdkcqtdhgvtkc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T16:03:24-05:00\",\"operation_date\":\"2023-08-08T16:03:24-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rendon Marin (1032100475)\",\"error_message\":null,\"order_id\":\"39CD7B469BEAE7C617C73E0D008195EF_VX3OSM4AP7_1691528584.0351\",\"due_date\":\"2023-08-09T04:03:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana carolina\",\"last_name\":\"marin arango\",\"email\":\"caritoiq@yahoo.com\",\"phone_number\":\"3202820297\",\"address\":null,\"creation_date\":\"2023-08-08T16:03:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre7sxamdkcqtdhgvtkc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 21:05:13','2023-08-08 21:05:13'),(7605,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T15:12:17-06:00\",\"transaction\":{\"id\":\"tre7sxamdkcqtdhgvtkc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91695184\",\"creation_date\":\"2023-08-08T16:03:24-06:00\",\"operation_date\":\"2023-08-08T16:10:14-06:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rendon Marin (1032100475)\",\"error_message\":null,\"order_id\":\"39CD7B469BEAE7C617C73E0D008195EF_VX3OSM4AP7_1691528584.0351\",\"due_date\":\"2023-08-09T04:03:24-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana carolina\",\"last_name\":\"marin arango\",\"email\":\"caritoiq@yahoo.com\",\"phone_number\":\"3202820297\",\"address\":null,\"creation_date\":\"2023-08-08T16:03:24-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 21:12:18','2023-08-08 21:12:18'),(7606,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1167\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T16:13:16-05:00\",\"transaction\":{\"id\":\"trw2r8lyycjovz179fnn\",\"authorization\":\"161315\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T16:02:16-05:00\",\"operation_date\":\"2023-08-08T16:13:15-05:00\",\"description\":\"Pago Mensual academia: federico echeverri correa (1038265591)\",\"error_message\":null,\"order_id\":\"75DF63609809C7A2052FDFFE5C00A84E_D5L9OZPTYF_1691528532.5745\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX8403\",\"holder_name\":\"Maricela correa \",\"expiration_year\":\"27\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"carlos arturo\",\"last_name\":\"echeverri rios\",\"email\":\"echeverririoscarlosarturo@gmail.com\",\"phone_number\":\"3148289231\",\"address\":null,\"creation_date\":\"2023-08-08T16:02:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trw2r8lyycjovz179fnn/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 21:13:16','2023-08-08 21:13:16'),(7607,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T16:47:24-05:00\",\"transaction\":{\"id\":\"tru3owgwdvnr9jf30wjo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T16:45:51-05:00\",\"operation_date\":\"2023-08-08T16:45:51-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Coronel Urrego (1198213007)\",\"error_message\":null,\"order_id\":\"B445E314138101EECC58503E98AA2B2D_26851GIJC3_1691531147.3025\",\"due_date\":\"2023-08-09T04:45:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luz marina\",\"last_name\":\"urrego ibarra\",\"email\":\"mariurrego05@gmail.com\",\"phone_number\":\"3148346797\",\"address\":null,\"creation_date\":\"2023-08-08T16:45:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru3owgwdvnr9jf30wjo/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 21:47:25','2023-08-08 21:47:25'),(7608,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-08T15:48:27-06:00\",\"transaction\":{\"id\":\"tru3owgwdvnr9jf30wjo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-08T16:45:51-06:00\",\"operation_date\":\"2023-08-08T16:47:32-06:00\",\"description\":\"Pago Mensual academia: Emmanuel Coronel Urrego (1198213007)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"B445E314138101EECC58503E98AA2B2D_26851GIJC3_1691531147.3025\",\"due_date\":\"2023-08-09T04:45:51-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Luz marina\",\"last_name\":\"urrego ibarra\",\"email\":\"mariurrego05@gmail.com\",\"phone_number\":\"3148346797\",\"address\":null,\"creation_date\":\"2023-08-08T16:45:51-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 21:48:27','2023-08-08 21:48:27'),(7609,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T16:50:22-05:00\",\"transaction\":{\"id\":\"trb9setstdnvoqpk6rq4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T16:49:40-05:00\",\"operation_date\":\"2023-08-08T16:49:40-05:00\",\"description\":\"Pago Mensual academia: Geronimo Paba Moreno (1023167804)\",\"error_message\":null,\"order_id\":\"07F75D9144912970DE5A09F5A305E10C_8DLZCJE2YR_1691531373.3989\",\"due_date\":\"2023-08-09T04:49:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Geronimo\",\"last_name\":\"Paba Moreno\",\"email\":\"magalymoreno10@hotmail.com\",\"phone_number\":\"3128358647\",\"address\":null,\"creation_date\":\"2023-08-08T16:49:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb9setstdnvoqpk6rq4/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 21:50:23','2023-08-08 21:50:23'),(7610,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T16:51:13-05:00\",\"transaction\":{\"id\":\"trb3t7trycjuhmgpvxmk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T16:50:23-05:00\",\"operation_date\":\"2023-08-08T16:50:23-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Coronel Urrego (1198213007)\",\"error_message\":null,\"order_id\":\"B445E314138101EECC58503E98AA2B2D_26851GIJC3_1691531419.3488\",\"due_date\":\"2023-08-09T04:50:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luz marina\",\"last_name\":\"urrego ibarra\",\"email\":\"mariurrego05@gmail.com\",\"phone_number\":\"3148346797\",\"address\":null,\"creation_date\":\"2023-08-08T16:50:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb3t7trycjuhmgpvxmk/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 21:51:14','2023-08-08 21:51:14'),(7611,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-08T15:51:25-06:00\",\"transaction\":{\"id\":\"tru3owgwdvnr9jf30wjo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-08T16:45:51-06:00\",\"operation_date\":\"2023-08-08T16:47:32-06:00\",\"description\":\"Pago Mensual academia: Emmanuel Coronel Urrego (1198213007)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"B445E314138101EECC58503E98AA2B2D_26851GIJC3_1691531147.3025\",\"due_date\":\"2023-08-09T04:45:51-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Luz marina\",\"last_name\":\"urrego ibarra\",\"email\":\"mariurrego05@gmail.com\",\"phone_number\":\"3148346797\",\"address\":null,\"creation_date\":\"2023-08-08T16:45:51-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 21:51:26','2023-08-08 21:51:26'),(7612,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T15:54:15-06:00\",\"transaction\":{\"id\":\"trb9setstdnvoqpk6rq4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91814705\",\"creation_date\":\"2023-08-08T16:49:40-06:00\",\"operation_date\":\"2023-08-08T16:54:05-06:00\",\"description\":\"Pago Mensual academia: Geronimo Paba Moreno (1023167804)\",\"error_message\":null,\"order_id\":\"07F75D9144912970DE5A09F5A305E10C_8DLZCJE2YR_1691531373.3989\",\"due_date\":\"2023-08-09T04:49:40-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Geronimo\",\"last_name\":\"Paba Moreno\",\"email\":\"magalymoreno10@hotmail.com\",\"phone_number\":\"3128358647\",\"address\":null,\"creation_date\":\"2023-08-08T16:49:40-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 21:54:16','2023-08-08 21:54:16'),(7613,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T15:54:19-06:00\",\"transaction\":{\"id\":\"trb3t7trycjuhmgpvxmk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"91816763\",\"creation_date\":\"2023-08-08T16:50:23-06:00\",\"operation_date\":\"2023-08-08T16:52:55-06:00\",\"description\":\"Pago Mensual academia: Emmanuel Coronel Urrego (1198213007)\",\"error_message\":null,\"order_id\":\"B445E314138101EECC58503E98AA2B2D_26851GIJC3_1691531419.3488\",\"due_date\":\"2023-08-09T04:50:23-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luz marina\",\"last_name\":\"urrego ibarra\",\"email\":\"mariurrego05@gmail.com\",\"phone_number\":\"3148346797\",\"address\":null,\"creation_date\":\"2023-08-08T16:50:23-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-08 21:54:19','2023-08-08 21:54:19'),(7614,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T17:44:41-05:00\",\"transaction\":{\"id\":\"tr4mi0izexr1l7nunjcc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T17:44:41-05:00\",\"operation_date\":\"2023-08-08T17:44:41-05:00\",\"description\":\"Pago Mensual academia: Pablo Campuzano Giraldo (1013464237)\",\"error_message\":null,\"order_id\":\"1A04F965818A8533F5613003C7DB243D_GW8YOM35FU_1691534679.0904\",\"amount\":331800.00,\"customer\":{\"name\":\"Luis Fernando\",\"last_name\":\"Campuzano Montoya\",\"email\":\"lf-campuzano@hotmail.com\",\"phone_number\":\"3116009087\",\"address\":null,\"creation_date\":\"2023-08-08T17:44:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4mi0izexr1l7nunjcc/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-08 22:44:42','2023-08-08 22:44:42'),(7615,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1151\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T17:46:09-05:00\",\"transaction\":{\"id\":\"tr4mi0izexr1l7nunjcc\",\"authorization\":\"281133\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T17:44:41-05:00\",\"operation_date\":\"2023-08-08T17:46:07-05:00\",\"description\":\"Pago Mensual academia: Pablo Campuzano Giraldo (1013464237)\",\"error_message\":null,\"order_id\":\"1A04F965818A8533F5613003C7DB243D_GW8YOM35FU_1691534679.0904\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"422274XXXXXX4580\",\"holder_name\":\"Luis Campuzano \",\"expiration_year\":\"26\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":331800.00,\"customer\":{\"name\":\"Luis Fernando\",\"last_name\":\"Campuzano Montoya\",\"email\":\"lf-campuzano@hotmail.com\",\"phone_number\":\"3116009087\",\"address\":null,\"creation_date\":\"2023-08-08T17:44:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4mi0izexr1l7nunjcc/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-08 22:46:09','2023-08-08 22:46:09'),(7616,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T17:46:45-05:00\",\"transaction\":{\"id\":\"trk4jjhbdq2eb8qptf8z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T17:46:45-05:00\",\"operation_date\":\"2023-08-08T17:46:45-05:00\",\"description\":\"Pago Mensual academia: Martin Correa Corredor (1142115157)\",\"error_message\":null,\"order_id\":\"8A1EE9F2B7ABE6E88D1A479AB6A42C5E_5JMXCEB20F_1691534799.6549\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Correa Corredor\",\"email\":\"davidricardocorrea@gmail.com\",\"phone_number\":\"3014477440\",\"address\":null,\"creation_date\":\"2023-08-08T17:46:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trk4jjhbdq2eb8qptf8z/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-08 22:46:46','2023-08-08 22:46:46'),(7617,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1141\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T17:48:25-05:00\",\"transaction\":{\"id\":\"trk4jjhbdq2eb8qptf8z\",\"authorization\":\"075085\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T17:46:45-05:00\",\"operation_date\":\"2023-08-08T17:48:25-05:00\",\"description\":\"Pago Mensual academia: Martin Correa Corredor (1142115157)\",\"error_message\":null,\"order_id\":\"8A1EE9F2B7ABE6E88D1A479AB6A42C5E_5JMXCEB20F_1691534799.6549\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"485991XXXXXX4132\",\"holder_name\":\"DAVID R CORREA F\",\"expiration_year\":\"28\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO ITAU\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Correa Corredor\",\"email\":\"davidricardocorrea@gmail.com\",\"phone_number\":\"3014477440\",\"address\":null,\"creation_date\":\"2023-08-08T17:46:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trk4jjhbdq2eb8qptf8z/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-08 22:48:26','2023-08-08 22:48:26'),(7618,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T19:16:18-05:00\",\"transaction\":{\"id\":\"trnbqhgn8ca0dtv3xthz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T19:15:21-05:00\",\"operation_date\":\"2023-08-08T19:15:21-05:00\",\"description\":\"Pago Mensual academia: juan pablo velez gomez (1025652882)\",\"error_message\":null,\"order_id\":\"0E7E05FA1026B0C5459267608AE320B8_RKXAHF26EZ_1691540118.6643\",\"due_date\":\"2023-08-09T07:15:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan pablo\",\"last_name\":\"velez gomez\",\"email\":\"djpvf@hotmail.com\",\"phone_number\":\"3103899470\",\"address\":null,\"creation_date\":\"2023-08-08T19:15:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnbqhgn8ca0dtv3xthz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 00:16:19','2023-08-09 00:16:19'),(7619,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T19:17:31-05:00\",\"transaction\":{\"id\":\"trnbqhgn8ca0dtv3xthz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"92136562\",\"creation_date\":\"2023-08-08T19:15:21-05:00\",\"operation_date\":\"2023-08-08T19:17:26-05:00\",\"description\":\"Pago Mensual academia: juan pablo velez gomez (1025652882)\",\"error_message\":null,\"order_id\":\"0E7E05FA1026B0C5459267608AE320B8_RKXAHF26EZ_1691540118.6643\",\"due_date\":\"2023-08-09T07:15:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan pablo\",\"last_name\":\"velez gomez\",\"email\":\"djpvf@hotmail.com\",\"phone_number\":\"3103899470\",\"address\":null,\"creation_date\":\"2023-08-08T19:15:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 00:17:32','2023-08-09 00:17:32'),(7620,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T19:39:01-05:00\",\"transaction\":{\"id\":\"trg6drucjentlkdbr97b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T19:39:01-05:00\",\"operation_date\":\"2023-08-08T19:39:01-05:00\",\"description\":\"Pago Mensual academia: Simón Gonzalez Murillo (1022148437)\",\"error_message\":null,\"order_id\":\"DDA99DE58FF020CFB57FEC1404C97003_BM3X7INGOV_1691541538.5185\",\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Gonzalez Murillo\",\"email\":\"negris1075@gmail.com\",\"phone_number\":\"3206407049\",\"address\":null,\"creation_date\":\"2023-08-08T19:39:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg6drucjentlkdbr97b/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-09 00:39:02','2023-08-09 00:39:02'),(7621,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T19:39:09-05:00\",\"transaction\":{\"id\":\"trbfolhrhod0yeo87gnw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T19:38:34-05:00\",\"operation_date\":\"2023-08-08T19:38:34-05:00\",\"description\":\"Pago Mensual academia: Juan Manuel Lopez Garcia (1027663083)\",\"error_message\":null,\"order_id\":\"165A59F7CF3B5C4396BA65953D679F17_FQM79HS0UC_1691541510.7338\",\"due_date\":\"2023-08-09T07:38:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Andrea\",\"last_name\":\"Garcia\",\"email\":\"valentina.garcia1605@gmail.com\",\"phone_number\":\"3113982541\",\"address\":null,\"creation_date\":\"2023-08-08T19:38:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbfolhrhod0yeo87gnw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 00:39:10','2023-08-09 00:39:10'),(7622,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1146\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T19:40:19-05:00\",\"transaction\":{\"id\":\"trg6drucjentlkdbr97b\",\"authorization\":\"194019\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-08T19:39:01-05:00\",\"operation_date\":\"2023-08-08T19:40:18-05:00\",\"description\":\"Pago Mensual academia: Simón Gonzalez Murillo (1022148437)\",\"error_message\":null,\"order_id\":\"DDA99DE58FF020CFB57FEC1404C97003_BM3X7INGOV_1691541538.5185\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX7134\",\"holder_name\":\"alba lucia murillo\",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Gonzalez Murillo\",\"email\":\"negris1075@gmail.com\",\"phone_number\":\"3206407049\",\"address\":null,\"creation_date\":\"2023-08-08T19:39:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg6drucjentlkdbr97b/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-09 00:40:20','2023-08-09 00:40:20'),(7623,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T19:40:22-05:00\",\"transaction\":{\"id\":\"trbfolhrhod0yeo87gnw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"92182918\",\"creation_date\":\"2023-08-08T19:38:34-05:00\",\"operation_date\":\"2023-08-08T19:40:18-05:00\",\"description\":\"Pago Mensual academia: Juan Manuel Lopez Garcia (1027663083)\",\"error_message\":null,\"order_id\":\"165A59F7CF3B5C4396BA65953D679F17_FQM79HS0UC_1691541510.7338\",\"due_date\":\"2023-08-09T07:38:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Andrea\",\"last_name\":\"Garcia\",\"email\":\"valentina.garcia1605@gmail.com\",\"phone_number\":\"3113982541\",\"address\":null,\"creation_date\":\"2023-08-08T19:38:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 00:40:23','2023-08-09 00:40:23'),(7624,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T19:59:22-05:00\",\"transaction\":{\"id\":\"trfdepaxvw1rdj9gpdjd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T19:59:22-05:00\",\"operation_date\":\"2023-08-08T19:59:22-05:00\",\"description\":\"Pago Mensual academia: Tomas Echavarria Urrea (1017933144)\",\"error_message\":null,\"order_id\":\"6917FF2A7B53421FF4066020E2D89EEC_EBJDVAKI60_1691542754.5384\",\"amount\":165900.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Urrea Uribe\",\"email\":\"aa.urrea@yahoo.com\",\"phone_number\":\"3155365343\",\"address\":null,\"creation_date\":\"2023-08-08T19:59:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfdepaxvw1rdj9gpdjd/card_capture\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-09 00:59:23','2023-08-09 00:59:23'),(7625,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T20:37:12-05:00\",\"transaction\":{\"id\":\"trgo29rvzfovrjjiyva0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T20:36:42-05:00\",\"operation_date\":\"2023-08-08T20:36:42-05:00\",\"description\":\"Pago Mensual academia: Emmanuel David Rincon Flores (1091374399)\",\"error_message\":null,\"order_id\":\"8D9766A69B764FEFC12F56739424D136_NGT2X69I4H_1691544999.2679\",\"due_date\":\"2023-08-09T08:36:42-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Rincon\",\"email\":\"nahoj28nahoj28@gmail.com\",\"phone_number\":\"3502027936\",\"address\":null,\"creation_date\":\"2023-08-08T20:36:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgo29rvzfovrjjiyva0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 01:37:13','2023-08-09 01:37:13'),(7626,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T20:38:07-05:00\",\"transaction\":{\"id\":\"trgo29rvzfovrjjiyva0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"92296356\",\"creation_date\":\"2023-08-08T20:36:42-05:00\",\"operation_date\":\"2023-08-08T20:37:57-05:00\",\"description\":\"Pago Mensual academia: Emmanuel David Rincon Flores (1091374399)\",\"error_message\":null,\"order_id\":\"8D9766A69B764FEFC12F56739424D136_NGT2X69I4H_1691544999.2679\",\"due_date\":\"2023-08-09T08:36:42-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Rincon\",\"email\":\"nahoj28nahoj28@gmail.com\",\"phone_number\":\"3502027936\",\"address\":null,\"creation_date\":\"2023-08-08T20:36:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 01:38:07','2023-08-09 01:38:07'),(7627,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T21:04:14-05:00\",\"transaction\":{\"id\":\"trubcxrkxfn1ye1m7ne7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T21:03:30-05:00\",\"operation_date\":\"2023-08-08T21:03:30-05:00\",\"description\":\"Pago Mensual academia: anthony gomez pulgarin (1033260344)\",\"error_message\":null,\"order_id\":\"900C563BFD2C48C16701ACCA83AD858A_UDCZ7XQ85R_1691546595.4735\",\"due_date\":\"2023-08-09T09:03:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"anthony\",\"last_name\":\"gomez pulgarin\",\"email\":\"anthonygp260208@gmail.com\",\"phone_number\":\"3105247712\",\"address\":null,\"creation_date\":\"2023-08-08T21:03:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trubcxrkxfn1ye1m7ne7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 02:04:15','2023-08-09 02:04:15'),(7628,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T20:06:14-06:00\",\"transaction\":{\"id\":\"trubcxrkxfn1ye1m7ne7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"92345550\",\"creation_date\":\"2023-08-08T21:03:30-06:00\",\"operation_date\":\"2023-08-08T21:05:43-06:00\",\"description\":\"Pago Mensual academia: anthony gomez pulgarin (1033260344)\",\"error_message\":null,\"order_id\":\"900C563BFD2C48C16701ACCA83AD858A_UDCZ7XQ85R_1691546595.4735\",\"due_date\":\"2023-08-09T09:03:30-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"anthony\",\"last_name\":\"gomez pulgarin\",\"email\":\"anthonygp260208@gmail.com\",\"phone_number\":\"3105247712\",\"address\":null,\"creation_date\":\"2023-08-08T21:03:30-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 02:06:15','2023-08-09 02:06:15'),(7629,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T21:07:40-05:00\",\"transaction\":{\"id\":\"tryodl1li3xrk9ddzdre\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-08T21:06:33-05:00\",\"operation_date\":\"2023-08-08T21:06:33-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Cordoba Lemos (1020322520)\",\"error_message\":null,\"order_id\":\"97108695BD93B6BE52FA0334874C8722_G9TDMUPL4Z_1691546790.2238\",\"due_date\":\"2023-08-09T09:06:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Cordoba Lemos\",\"email\":\"wesulebe@hotmail.com\",\"phone_number\":\"3105150656\",\"address\":null,\"creation_date\":\"2023-08-08T21:06:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryodl1li3xrk9ddzdre/redirect/\"},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 02:07:40','2023-08-09 02:07:40'),(7630,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T21:09:00-05:00\",\"transaction\":{\"id\":\"tryodl1li3xrk9ddzdre\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"92351370\",\"creation_date\":\"2023-08-08T21:06:33-05:00\",\"operation_date\":\"2023-08-08T21:08:39-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Cordoba Lemos (1020322520)\",\"error_message\":null,\"order_id\":\"97108695BD93B6BE52FA0334874C8722_G9TDMUPL4Z_1691546790.2238\",\"due_date\":\"2023-08-09T09:06:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Cordoba Lemos\",\"email\":\"wesulebe@hotmail.com\",\"phone_number\":\"3105150656\",\"address\":null,\"creation_date\":\"2023-08-08T21:06:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 02:09:00','2023-08-09 02:09:00'),(7631,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T22:07:55-05:00\",\"transaction\":{\"id\":\"trujxyx1p8n9jm5jjkd7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T22:07:55-05:00\",\"operation_date\":\"2023-08-08T22:07:55-05:00\",\"description\":\"Pago Mensual academia: Jeronimo castaño piñeros (1155718680)\",\"error_message\":null,\"order_id\":\"285DA2198B2B496C9D447CC4AC6B0734_O0YZQEL3IT_1691550466.764\",\"amount\":95000.00,\"customer\":{\"name\":\"melisa\",\"last_name\":\"piñeros osorio\",\"email\":\"melysa1037@gmail.com\",\"phone_number\":\"3015859977\",\"address\":null,\"creation_date\":\"2023-08-08T22:07:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trujxyx1p8n9jm5jjkd7/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-09 03:07:55','2023-08-09 03:07:55'),(7632,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1217\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T22:09:18-05:00\",\"transaction\":{\"id\":\"trujxyx1p8n9jm5jjkd7\",\"authorization\":\"906133\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":3,\"conciliated\":true,\"creation_date\":\"2023-08-08T22:07:55-05:00\",\"operation_date\":\"2023-08-08T22:09:17-05:00\",\"description\":\"Pago Mensual academia: Jeronimo castaño piñeros (1155718680)\",\"error_message\":null,\"order_id\":\"285DA2198B2B496C9D447CC4AC6B0734_O0YZQEL3IT_1691550466.764\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"543280XXXXXX3306\",\"holder_name\":\"Melisa pineros\",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"SERFINANSA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":3,\"payments_type\":\"without_interest\"},\"amount\":95000.00,\"customer\":{\"name\":\"melisa\",\"last_name\":\"piñeros osorio\",\"email\":\"melysa1037@gmail.com\",\"phone_number\":\"3015859977\",\"address\":null,\"creation_date\":\"2023-08-08T22:07:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trujxyx1p8n9jm5jjkd7/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-09 03:09:19','2023-08-09 03:09:19'),(7633,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  881\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-08T22:52:48-05:00\",\"transaction\":{\"id\":\"trjx8nybjtvtjolnxayc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-08T22:52:48-05:00\",\"operation_date\":\"2023-08-08T22:52:48-05:00\",\"description\":\"Pago Mensual academia: Santiago urrego Zapata (1020321239)\",\"error_message\":null,\"order_id\":\"0084AE4BC24C0795D1E6A4F58444D39B_GPVDU68TZ0_1691553164.6771\",\"amount\":165900.00,\"customer\":{\"name\":\"yhony\",\"last_name\":\"urrego\",\"email\":\"yhonyurrego@gmail.com\",\"phone_number\":\"3175122540\",\"address\":null,\"creation_date\":\"2023-08-08T22:52:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjx8nybjtvtjolnxayc/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-09 03:52:49','2023-08-09 03:52:49'),(7634,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1204\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-08T22:53:39-05:00\",\"transaction\":{\"id\":\"trjx8nybjtvtjolnxayc\",\"authorization\":\"225342\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":6,\"conciliated\":true,\"creation_date\":\"2023-08-08T22:52:48-05:00\",\"operation_date\":\"2023-08-08T22:53:38-05:00\",\"description\":\"Pago Mensual academia: Santiago urrego Zapata (1020321239)\",\"error_message\":null,\"order_id\":\"0084AE4BC24C0795D1E6A4F58444D39B_GPVDU68TZ0_1691553164.6771\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"423150XXXXXX5478\",\"holder_name\":\"Yhony Urrego\",\"expiration_year\":\"28\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":6,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"yhony\",\"last_name\":\"urrego\",\"email\":\"yhonyurrego@gmail.com\",\"phone_number\":\"3175122540\",\"address\":null,\"creation_date\":\"2023-08-08T22:52:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjx8nybjtvtjolnxayc/redirect/\"},\"method\":\"card\"}}',NULL,NULL,'2023-08-09 03:53:39','2023-08-09 03:53:39'),(7635,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-09T02:13:23-06:00\",\"transaction\":{\"id\":\"trbxzewdtlqzqi2mgvet\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-07T16:38:47-06:00\",\"operation_date\":\"2023-08-07T16:38:47-06:00\",\"description\":\"Pago Mensual academia: Mattias David Henao Vasquez (1155713038)\",\"error_message\":null,\"order_id\":\"E94FE9AC8DC10DD8B9A239E6ABEE2848_E6J5P9MD8T_1691444323.8629\",\"due_date\":\"2023-08-08T04:38:47-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"vasquez bustos\",\"email\":\"sarawac@hotmail.com\",\"phone_number\":\"3004331580\",\"address\":null,\"creation_date\":\"2023-08-07T16:38:47-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbxzewdtlqzqi2mgvet/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 08:13:24','2023-08-09 08:13:24'),(7636,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-09T02:13:34-06:00\",\"transaction\":{\"id\":\"trwxkkltlsvvtsy5qyup\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-08T07:55:58-06:00\",\"operation_date\":\"2023-08-08T07:55:58-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"854D6FAE5EE42911677C739EE1734486_E-64D23B55-43_1691499354.0053\",\"due_date\":\"2023-08-08T19:55:58-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"jairo\",\"last_name\":\"chaverra serna\",\"email\":\"jairchas1@yahoo.es\",\"phone_number\":\"3117701766\",\"address\":null,\"creation_date\":\"2023-08-08T07:55:58-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trwxkkltlsvvtsy5qyup/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 08:13:35','2023-08-09 08:13:35'),(7637,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-09T02:13:34-06:00\",\"transaction\":{\"id\":\"trxki0unoe4a76fkavkp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-07T15:12:16-06:00\",\"operation_date\":\"2023-08-07T15:12:16-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"757B505CFD34C64C85CA5B5690EE5293_E-64D15015-33_1691439130.0062\",\"due_date\":\"2023-08-08T03:12:16-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andres\",\"last_name\":\"Villabona\",\"email\":\"anfevigi@gmail.com\",\"phone_number\":\"3158193134\",\"address\":null,\"creation_date\":\"2023-08-07T15:12:16-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trxki0unoe4a76fkavkp/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 08:13:35','2023-08-09 08:13:35'),(7638,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-09T02:13:34-06:00\",\"transaction\":{\"id\":\"trpjkkicohc7uz37rejj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-08T09:16:36-06:00\",\"operation_date\":\"2023-08-08T09:16:36-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"E2C0BE24560D78C5E599C2A9C9D0BBD2_E-64D24E39-71_1691504191.1858\",\"due_date\":\"2023-08-08T21:16:36-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Manuela\",\"last_name\":\"Arboleda\",\"email\":\"mvar97@outlook.com\",\"phone_number\":\"3008102162\",\"address\":null,\"creation_date\":\"2023-08-08T09:16:36-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trpjkkicohc7uz37rejj/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 08:13:35','2023-08-09 08:13:35'),(7639,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-09T02:13:34-06:00\",\"transaction\":{\"id\":\"trxkmyibyy0rltscmj32\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-08T10:47:45-06:00\",\"operation_date\":\"2023-08-08T10:47:45-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"854D6FAE5EE42911677C739EE1734486_E-64D23B55-43_1691509662.8669\",\"due_date\":\"2023-08-08T22:47:45-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"jairo\",\"last_name\":\"chaverra serna\",\"email\":\"jairchas1@yahoo.es\",\"phone_number\":\"3117701766\",\"address\":null,\"creation_date\":\"2023-08-08T10:47:45-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trxkmyibyy0rltscmj32/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 08:13:35','2023-08-09 08:13:35'),(7640,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  882\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T07:25:40-05:00\",\"transaction\":{\"id\":\"trhkbdqdztgizkaup89f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T07:25:04-05:00\",\"operation_date\":\"2023-08-09T07:25:04-05:00\",\"description\":\"Pago Mensual academia: Samuel Osorio Ospina (1013349520)\",\"error_message\":null,\"order_id\":\"_1691583898.6546\",\"due_date\":\"2023-08-09T19:25:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Osorio Ospina\",\"email\":\"daniosorio3004@gmail.com\",\"phone_number\":\"3146288545\",\"address\":null,\"creation_date\":\"2023-08-09T07:25:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhkbdqdztgizkaup89f/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 12:25:41','2023-08-09 12:25:41'),(7641,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  764\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_372)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T07:27:14-05:00\",\"transaction\":{\"id\":\"trhkbdqdztgizkaup89f\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"92651547\",\"creation_date\":\"2023-08-09T07:25:04-05:00\",\"operation_date\":\"2023-08-09T07:26:58-05:00\",\"description\":\"Pago Mensual academia: Samuel Osorio Ospina (1013349520)\",\"error_message\":null,\"order_id\":\"_1691583898.6546\",\"due_date\":\"2023-08-09T19:25:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Osorio Ospina\",\"email\":\"daniosorio3004@gmail.com\",\"phone_number\":\"3146288545\",\"address\":null,\"creation_date\":\"2023-08-09T07:25:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 12:27:15','2023-08-09 12:27:15'),(7642,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T08:59:41-05:00\",\"transaction\":{\"id\":\"trimeqtdtd9ay4qmcofg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-09T08:59:41-05:00\",\"operation_date\":\"2023-08-09T08:59:41-05:00\",\"description\":\"Pago Mensual academia: simón vasquez  Velez (1034998011)\",\"error_message\":null,\"order_id\":\"6C349155B122AA8AD5C877007E05F24F_ZK0RE8Y53N_1691589576.5793\",\"amount\":165900.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"vasquez velez\",\"email\":\"vcarobenjamin@gmail.com\",\"phone_number\":\"3104160264\",\"address\":null,\"creation_date\":\"2023-08-09T08:59:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trimeqtdtd9ay4qmcofg/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-09 13:59:43','2023-08-09 13:59:43'),(7643,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1139\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T09:01:19-05:00\",\"transaction\":{\"id\":\"trimeqtdtd9ay4qmcofg\",\"authorization\":\"065278\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-09T08:59:41-05:00\",\"operation_date\":\"2023-08-09T09:01:18-05:00\",\"description\":\"Pago Mensual academia: simón vasquez  Velez (1034998011)\",\"error_message\":null,\"order_id\":\"6C349155B122AA8AD5C877007E05F24F_ZK0RE8Y53N_1691589576.5793\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"466090XXXXXX8341\",\"holder_name\":\"HECTOR M VASQUEZ D\",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"vasquez velez\",\"email\":\"vcarobenjamin@gmail.com\",\"phone_number\":\"3104160264\",\"address\":null,\"creation_date\":\"2023-08-09T08:59:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trimeqtdtd9ay4qmcofg/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-09 14:01:20','2023-08-09 14:01:20'),(7644,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T09:23:05-05:00\",\"transaction\":{\"id\":\"trxjecfqmpwqha775q7q\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T09:22:13-05:00\",\"operation_date\":\"2023-08-09T09:22:13-05:00\",\"description\":\"Pago Mensual academia: jose gabriel atehortua cadavid (1035006140)\",\"error_message\":null,\"order_id\":\"D6BCB486F72AE7B5DC68B5B7DF7EC887_JENTQLG6SU_1691590925.7073\",\"due_date\":\"2023-08-09T21:22:13-05:00\",\"amount\":158000.00,\"customer\":{\"name\":\"jose gabriel\",\"last_name\":\"atehortua  cadavid\",\"email\":\"paolac87@outlook.com\",\"phone_number\":\"3208903138\",\"address\":null,\"creation_date\":\"2023-08-09T09:22:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxjecfqmpwqha775q7q/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 14:23:05','2023-08-09 14:23:05'),(7645,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T09:24:11-05:00\",\"transaction\":{\"id\":\"trxjecfqmpwqha775q7q\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"92860890\",\"creation_date\":\"2023-08-09T09:22:13-05:00\",\"operation_date\":\"2023-08-09T09:24:00-05:00\",\"description\":\"Pago Mensual academia: jose gabriel atehortua cadavid (1035006140)\",\"error_message\":null,\"order_id\":\"D6BCB486F72AE7B5DC68B5B7DF7EC887_JENTQLG6SU_1691590925.7073\",\"due_date\":\"2023-08-09T21:22:13-05:00\",\"amount\":158000.00,\"customer\":{\"name\":\"jose gabriel\",\"last_name\":\"atehortua  cadavid\",\"email\":\"paolac87@outlook.com\",\"phone_number\":\"3208903138\",\"address\":null,\"creation_date\":\"2023-08-09T09:22:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 14:24:11','2023-08-09 14:24:11'),(7646,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T09:43:25-05:00\",\"transaction\":{\"id\":\"tr77rooh9lpmxsotitt2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T09:41:56-05:00\",\"operation_date\":\"2023-08-09T09:41:56-05:00\",\"description\":\"Pago Mensual academia: Samuel Osorio Upegui (1035979894)\",\"error_message\":null,\"order_id\":\"9B9B05072DD20D1CC3E54607B84C889B_FT5KLUCWYN_1691592112.3955\",\"due_date\":\"2023-08-09T21:41:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Walter\",\"last_name\":\"Osorio Vélez\",\"email\":\"osoriowalter21@hotmail.com\",\"phone_number\":\"3187126833\",\"address\":null,\"creation_date\":\"2023-08-09T09:41:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr77rooh9lpmxsotitt2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 14:43:26','2023-08-09 14:43:26'),(7647,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T08:45:24-06:00\",\"transaction\":{\"id\":\"tr77rooh9lpmxsotitt2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"92911942\",\"creation_date\":\"2023-08-09T09:41:56-06:00\",\"operation_date\":\"2023-08-09T09:44:42-06:00\",\"description\":\"Pago Mensual academia: Samuel Osorio Upegui (1035979894)\",\"error_message\":null,\"order_id\":\"9B9B05072DD20D1CC3E54607B84C889B_FT5KLUCWYN_1691592112.3955\",\"due_date\":\"2023-08-09T21:41:56-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Walter\",\"last_name\":\"Osorio Vélez\",\"email\":\"osoriowalter21@hotmail.com\",\"phone_number\":\"3187126833\",\"address\":null,\"creation_date\":\"2023-08-09T09:41:56-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 14:45:25','2023-08-09 14:45:25'),(7648,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T09:51:13-05:00\",\"transaction\":{\"id\":\"trogm0wjjjbh3vojlvrc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-09T09:51:13-05:00\",\"operation_date\":\"2023-08-09T09:51:13-05:00\",\"description\":\"Pago Mensual academia: Thiago Alvarez Robayo (1025077316)\",\"error_message\":null,\"order_id\":\"14E422F05B68CC0139988E128EE880DF_EPIYFBAR09_1691592669.7723\",\"amount\":165900.00,\"customer\":{\"name\":\"Ángela\",\"last_name\":\"Robayo Herrera\",\"email\":\"angelapao.robayo@gmail.com\",\"phone_number\":\"3043765119\",\"address\":null,\"creation_date\":\"2023-08-09T09:51:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trogm0wjjjbh3vojlvrc/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-09 14:51:14','2023-08-09 14:51:14'),(7649,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1133\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T09:52:40-05:00\",\"transaction\":{\"id\":\"trogm0wjjjbh3vojlvrc\",\"authorization\":\"559343\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-09T09:51:13-05:00\",\"operation_date\":\"2023-08-09T09:52:38-05:00\",\"description\":\"Pago Mensual academia: Thiago Alvarez Robayo (1025077316)\",\"error_message\":null,\"order_id\":\"14E422F05B68CC0139988E128EE880DF_EPIYFBAR09_1691592669.7723\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"404280XXXXXX3032\",\"holder_name\":\"ANGELA ROBAYO\",\"expiration_year\":\"27\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"amount\":165900.00,\"customer\":{\"name\":\"Ángela\",\"last_name\":\"Robayo Herrera\",\"email\":\"angelapao.robayo@gmail.com\",\"phone_number\":\"3043765119\",\"address\":null,\"creation_date\":\"2023-08-09T09:51:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trogm0wjjjbh3vojlvrc/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-09 14:52:40','2023-08-09 14:52:40'),(7650,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T10:13:04-05:00\",\"transaction\":{\"id\":\"trvrtkieikfgxgnb31eg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-09T10:13:03-05:00\",\"operation_date\":\"2023-08-09T10:13:03-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Hernandez Berrio (1041461298)\",\"error_message\":null,\"order_id\":\"A9B4EC2EB4AB7B1B9C3392BB5388119D_864CLWTQYZ_1691593980.0231\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge Mario\",\"last_name\":\"Berrio\",\"email\":\"g-orbe@hotmail.com\",\"phone_number\":\"3008850836\",\"address\":null,\"creation_date\":\"2023-08-09T10:13:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvrtkieikfgxgnb31eg/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-09 15:13:04','2023-08-09 15:13:04'),(7651,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1125\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T10:14:34-05:00\",\"transaction\":{\"id\":\"trvrtkieikfgxgnb31eg\",\"authorization\":\"024970\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-09T10:13:03-05:00\",\"operation_date\":\"2023-08-09T10:14:33-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Hernandez Berrio (1041461298)\",\"error_message\":null,\"order_id\":\"A9B4EC2EB4AB7B1B9C3392BB5388119D_864CLWTQYZ_1691593980.0231\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"457021XXXXXX8497\",\"holder_name\":\"Jorge M Berrio\",\"expiration_year\":\"26\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BCSC\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Jorge Mario\",\"last_name\":\"Berrio\",\"email\":\"g-orbe@hotmail.com\",\"phone_number\":\"3008850836\",\"address\":null,\"creation_date\":\"2023-08-09T10:13:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvrtkieikfgxgnb31eg/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-09 15:14:35','2023-08-09 15:14:35'),(7652,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  958\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T10:19:53-05:00\",\"transaction\":{\"id\":\"trsbotxwhfv3ghln8xor\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T10:18:44-05:00\",\"operation_date\":\"2023-08-09T10:18:44-05:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Quintero londoño (1038872847)\",\"error_message\":null,\"order_id\":\"2E2C080D5490760AF59D0BAF5ACBB84E_BHD92RPN5O_1691594321.6363\",\"due_date\":\"2023-08-09T22:18:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julieth Natalia\",\"last_name\":\"londoño Bustamante\",\"email\":\"nataliabustamante429@hotmail.com\",\"phone_number\":\"3213614548\",\"address\":null,\"creation_date\":\"2023-08-09T10:18:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsbotxwhfv3ghln8xor/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 15:19:54','2023-08-09 15:19:54'),(7653,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T10:22:09-05:00\",\"transaction\":{\"id\":\"trlfdkccbkhislf2azh8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T10:21:31-05:00\",\"operation_date\":\"2023-08-09T10:21:31-05:00\",\"description\":\"Pago Mensual academia: JUAN JOSÉ LONDOÑO GRACIANO (1036457036)\",\"error_message\":null,\"order_id\":\"F2BFF080785C76AA81DBAFFCE7DEA0AD_1YZ8O56XSK_1691594488.0346\",\"due_date\":\"2023-08-09T22:21:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BIBIANA\",\"last_name\":\"GRACIANO VALENCIA\",\"email\":\"vivianagraciano.82@gmail.com\",\"phone_number\":\"3122193283\",\"address\":null,\"creation_date\":\"2023-08-09T10:21:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlfdkccbkhislf2azh8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 15:22:09','2023-08-09 15:22:09'),(7654,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T10:22:55-05:00\",\"transaction\":{\"id\":\"trlfdkccbkhislf2azh8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93012901\",\"creation_date\":\"2023-08-09T10:21:31-05:00\",\"operation_date\":\"2023-08-09T10:22:43-05:00\",\"description\":\"Pago Mensual academia: JUAN JOSÉ LONDOÑO GRACIANO (1036457036)\",\"error_message\":null,\"order_id\":\"F2BFF080785C76AA81DBAFFCE7DEA0AD_1YZ8O56XSK_1691594488.0346\",\"due_date\":\"2023-08-09T22:21:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BIBIANA\",\"last_name\":\"GRACIANO VALENCIA\",\"email\":\"vivianagraciano.82@gmail.com\",\"phone_number\":\"3122193283\",\"address\":null,\"creation_date\":\"2023-08-09T10:21:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 15:22:56','2023-08-09 15:22:56'),(7655,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  840\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T09:24:17-06:00\",\"transaction\":{\"id\":\"trsbotxwhfv3ghln8xor\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93007014\",\"creation_date\":\"2023-08-09T10:18:44-06:00\",\"operation_date\":\"2023-08-09T10:22:05-06:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Quintero londoño (1038872847)\",\"error_message\":null,\"order_id\":\"2E2C080D5490760AF59D0BAF5ACBB84E_BHD92RPN5O_1691594321.6363\",\"due_date\":\"2023-08-09T22:18:44-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julieth Natalia\",\"last_name\":\"londoño Bustamante\",\"email\":\"nataliabustamante429@hotmail.com\",\"phone_number\":\"3213614548\",\"address\":null,\"creation_date\":\"2023-08-09T10:18:44-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 15:24:18','2023-08-09 15:24:18'),(7656,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  957\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T10:26:26-05:00\",\"transaction\":{\"id\":\"trogjkdltqwqyuslhyn3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T10:24:59-05:00\",\"operation_date\":\"2023-08-09T10:24:59-05:00\",\"description\":\"Pago Mensual academia: Joaquín Ignacio González Monsalve (1037663184)\",\"error_message\":null,\"order_id\":\"6E16656A6EE1DE7232164767CCFA7920_7V18ARMUX6_1691594692.7551\",\"due_date\":\"2023-08-09T22:24:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Joaquín  Ignacio\",\"last_name\":\"González Monsalve\",\"email\":\"luizanamonsalves@gmail.com\",\"phone_number\":\"3004474753\",\"address\":null,\"creation_date\":\"2023-08-09T10:24:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trogjkdltqwqyuslhyn3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 15:26:27','2023-08-09 15:26:27'),(7657,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  840\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T09:27:14-06:00\",\"transaction\":{\"id\":\"trsbotxwhfv3ghln8xor\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93007014\",\"creation_date\":\"2023-08-09T10:18:44-06:00\",\"operation_date\":\"2023-08-09T10:22:05-06:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Quintero londoño (1038872847)\",\"error_message\":null,\"order_id\":\"2E2C080D5490760AF59D0BAF5ACBB84E_BHD92RPN5O_1691594321.6363\",\"due_date\":\"2023-08-09T22:18:44-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julieth Natalia\",\"last_name\":\"londoño Bustamante\",\"email\":\"nataliabustamante429@hotmail.com\",\"phone_number\":\"3213614548\",\"address\":null,\"creation_date\":\"2023-08-09T10:18:44-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 15:27:14','2023-08-09 15:27:14'),(7658,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  839\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T10:28:32-05:00\",\"transaction\":{\"id\":\"trogjkdltqwqyuslhyn3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93024396\",\"creation_date\":\"2023-08-09T10:24:59-05:00\",\"operation_date\":\"2023-08-09T10:27:55-05:00\",\"description\":\"Pago Mensual academia: Joaquín Ignacio González Monsalve (1037663184)\",\"error_message\":null,\"order_id\":\"6E16656A6EE1DE7232164767CCFA7920_7V18ARMUX6_1691594692.7551\",\"due_date\":\"2023-08-09T22:24:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Joaquín  Ignacio\",\"last_name\":\"González Monsalve\",\"email\":\"luizanamonsalves@gmail.com\",\"phone_number\":\"3004474753\",\"address\":null,\"creation_date\":\"2023-08-09T10:24:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 15:28:32','2023-08-09 15:28:32'),(7659,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T11:03:20-05:00\",\"transaction\":{\"id\":\"trfwg3hyy2akonrd8b8n\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T11:02:22-05:00\",\"operation_date\":\"2023-08-09T11:02:22-05:00\",\"description\":\"Pago Mensual academia: Nicolas Ruiz Urbano (1089641876)\",\"error_message\":null,\"order_id\":\"29DDBDB402491A6AA97964A8139A1356_CEIXYJLT42_1691596938.654\",\"due_date\":\"2023-08-09T23:02:22-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Nicolás \",\"last_name\":\"Ruiz Urbano\",\"email\":\"nathalia_urbano@hotmail.com\",\"phone_number\":\"3004400511\",\"address\":null,\"creation_date\":\"2023-08-09T11:02:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfwg3hyy2akonrd8b8n/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 16:03:21','2023-08-09 16:03:21'),(7660,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T11:04:22-05:00\",\"transaction\":{\"id\":\"trfwg3hyy2akonrd8b8n\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93122897\",\"creation_date\":\"2023-08-09T11:02:22-05:00\",\"operation_date\":\"2023-08-09T11:04:15-05:00\",\"description\":\"Pago Mensual academia: Nicolas Ruiz Urbano (1089641876)\",\"error_message\":null,\"order_id\":\"29DDBDB402491A6AA97964A8139A1356_CEIXYJLT42_1691596938.654\",\"due_date\":\"2023-08-09T23:02:22-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Nicolás \",\"last_name\":\"Ruiz Urbano\",\"email\":\"nathalia_urbano@hotmail.com\",\"phone_number\":\"3004400511\",\"address\":null,\"creation_date\":\"2023-08-09T11:02:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 16:04:23','2023-08-09 16:04:23'),(7661,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  911\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T11:23:54-05:00\",\"transaction\":{\"id\":\"treyq3fqesz39pqxt15q\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T11:23:21-05:00\",\"operation_date\":\"2023-08-09T11:23:21-05:00\",\"description\":\"Pago Mensual academia: luciano ramirez vega (1035014698)\",\"error_message\":null,\"order_id\":\"0668E20B3C9E9185B04B3D2A9DC8FA2D_JFRHPATYGB_1691598198.4894\",\"due_date\":\"2023-08-09T23:23:21-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"maria\",\"last_name\":\"vega\",\"email\":\"maria3641@hotmail.com\",\"phone_number\":\"3113839314\",\"address\":null,\"creation_date\":\"2023-08-09T11:23:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treyq3fqesz39pqxt15q/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 16:23:55','2023-08-09 16:23:55'),(7662,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  793\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T11:24:52-05:00\",\"transaction\":{\"id\":\"treyq3fqesz39pqxt15q\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93178338\",\"creation_date\":\"2023-08-09T11:23:21-05:00\",\"operation_date\":\"2023-08-09T11:24:42-05:00\",\"description\":\"Pago Mensual academia: luciano ramirez vega (1035014698)\",\"error_message\":null,\"order_id\":\"0668E20B3C9E9185B04B3D2A9DC8FA2D_JFRHPATYGB_1691598198.4894\",\"due_date\":\"2023-08-09T23:23:21-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"maria\",\"last_name\":\"vega\",\"email\":\"maria3641@hotmail.com\",\"phone_number\":\"3113839314\",\"address\":null,\"creation_date\":\"2023-08-09T11:23:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 16:24:53','2023-08-09 16:24:53'),(7663,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T12:09:06-05:00\",\"transaction\":{\"id\":\"trqpekdp9nrqui7zssjm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T12:06:43-05:00\",\"operation_date\":\"2023-08-09T12:06:43-05:00\",\"description\":\"Pago Mensual academia: Jacob parana ibarra (1015195680)\",\"error_message\":null,\"order_id\":\"2517756C5A9BE6AC007FE9BB7FB92611_42HAJ13M6T_1691600799.9853\",\"due_date\":\"2023-08-10T00:06:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Marcela\",\"last_name\":\"Ibarra Osorio\",\"email\":\"dipapelylapiz@gmail.com\",\"phone_number\":\"3045892579\",\"address\":null,\"creation_date\":\"2023-08-09T12:06:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqpekdp9nrqui7zssjm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 17:09:07','2023-08-09 17:09:07'),(7664,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T12:11:13-05:00\",\"transaction\":{\"id\":\"trqpekdp9nrqui7zssjm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93300421\",\"creation_date\":\"2023-08-09T12:06:43-05:00\",\"operation_date\":\"2023-08-09T12:10:37-05:00\",\"description\":\"Pago Mensual academia: Jacob parana ibarra (1015195680)\",\"error_message\":null,\"order_id\":\"2517756C5A9BE6AC007FE9BB7FB92611_42HAJ13M6T_1691600799.9853\",\"due_date\":\"2023-08-10T00:06:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Marcela\",\"last_name\":\"Ibarra Osorio\",\"email\":\"dipapelylapiz@gmail.com\",\"phone_number\":\"3045892579\",\"address\":null,\"creation_date\":\"2023-08-09T12:06:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 17:11:14','2023-08-09 17:11:14'),(7665,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T12:53:48-05:00\",\"transaction\":{\"id\":\"trc6c2liq8odb3vdmmss\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T12:52:34-05:00\",\"operation_date\":\"2023-08-09T12:52:34-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Villegas Pemberty (1035011996)\",\"error_message\":null,\"order_id\":\"131F383B434FDF48079BFF1E44E2D9A5_JI6RTMO7UQ_1691603549.8189\",\"due_date\":\"2023-08-10T00:52:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"villegas\",\"email\":\"alejandrovillegasrpo@gmail.com\",\"phone_number\":\"3185162645\",\"address\":null,\"creation_date\":\"2023-08-09T12:52:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc6c2liq8odb3vdmmss/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 17:53:49','2023-08-09 17:53:49'),(7666,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T12:54:52-05:00\",\"transaction\":{\"id\":\"trc6c2liq8odb3vdmmss\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93406587\",\"creation_date\":\"2023-08-09T12:52:34-05:00\",\"operation_date\":\"2023-08-09T12:54:36-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Villegas Pemberty (1035011996)\",\"error_message\":null,\"order_id\":\"131F383B434FDF48079BFF1E44E2D9A5_JI6RTMO7UQ_1691603549.8189\",\"due_date\":\"2023-08-10T00:52:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"villegas\",\"email\":\"alejandrovillegasrpo@gmail.com\",\"phone_number\":\"3185162645\",\"address\":null,\"creation_date\":\"2023-08-09T12:52:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 17:54:52','2023-08-09 17:54:52'),(7667,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T13:26:33-05:00\",\"transaction\":{\"id\":\"tr5dgejm26h8pefzikt3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T13:25:22-05:00\",\"operation_date\":\"2023-08-09T13:25:22-05:00\",\"description\":\"Pago Mensual academia: Matías Arroyo Suárez (1028141313)\",\"error_message\":null,\"order_id\":\"31CA0CA71184BBDB3DE7B20A51E88E90_HPTQ7OMGVE_1691605517.6885\",\"due_date\":\"2023-08-10T01:25:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Arroyo Quintero\",\"email\":\"carroyoquintero1989@gmail.com\",\"phone_number\":\"3104624259\",\"address\":null,\"creation_date\":\"2023-08-09T13:25:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5dgejm26h8pefzikt3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 18:26:33','2023-08-09 18:26:33'),(7668,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T13:27:53-05:00\",\"transaction\":{\"id\":\"tr5dgejm26h8pefzikt3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93477269\",\"creation_date\":\"2023-08-09T13:25:22-05:00\",\"operation_date\":\"2023-08-09T13:27:40-05:00\",\"description\":\"Pago Mensual academia: Matías Arroyo Suárez (1028141313)\",\"error_message\":null,\"order_id\":\"31CA0CA71184BBDB3DE7B20A51E88E90_HPTQ7OMGVE_1691605517.6885\",\"due_date\":\"2023-08-10T01:25:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Arroyo Quintero\",\"email\":\"carroyoquintero1989@gmail.com\",\"phone_number\":\"3104624259\",\"address\":null,\"creation_date\":\"2023-08-09T13:25:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 18:27:53','2023-08-09 18:27:53'),(7669,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T14:00:55-05:00\",\"transaction\":{\"id\":\"trt0wosu8gpupdnlplyk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T13:59:55-05:00\",\"operation_date\":\"2023-08-09T13:59:55-05:00\",\"description\":\"Pago Mensual academia: Esteban Osorio Upegui (1040577276)\",\"error_message\":null,\"order_id\":\"4A11654AD1E1E48352252859FF3032A0_WYXJTMPZVQ_1691607578.5783\",\"due_date\":\"2023-08-10T01:59:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Walter\",\"last_name\":\"Osorio Vélez\",\"email\":\"osoriowalter21@hotmail.com\",\"phone_number\":\"3187126833\",\"address\":null,\"creation_date\":\"2023-08-09T13:59:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trt0wosu8gpupdnlplyk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 19:00:56','2023-08-09 19:00:56'),(7670,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T13:03:17-06:00\",\"transaction\":{\"id\":\"trt0wosu8gpupdnlplyk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93551310\",\"creation_date\":\"2023-08-09T13:59:55-06:00\",\"operation_date\":\"2023-08-09T14:02:14-06:00\",\"description\":\"Pago Mensual academia: Esteban Osorio Upegui (1040577276)\",\"error_message\":null,\"order_id\":\"4A11654AD1E1E48352252859FF3032A0_WYXJTMPZVQ_1691607578.5783\",\"due_date\":\"2023-08-10T01:59:55-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Walter\",\"last_name\":\"Osorio Vélez\",\"email\":\"osoriowalter21@hotmail.com\",\"phone_number\":\"3187126833\",\"address\":null,\"creation_date\":\"2023-08-09T13:59:55-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 19:03:18','2023-08-09 19:03:18');
INSERT INTO `system_logs` VALUES (7671,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T14:39:57-05:00\",\"transaction\":{\"id\":\"troteebcitcq6zjklioz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T14:38:54-05:00\",\"operation_date\":\"2023-08-09T14:38:54-05:00\",\"description\":\"Pago Mensual academia: martin suarez gutierrez (1075876356)\",\"error_message\":null,\"order_id\":\"621FBD17DA27241C58015EABE4164A52_SNLVDHJ8OM_1691609931.8417\",\"due_date\":\"2023-08-10T02:38:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"angela maria\",\"last_name\":\"gutierrez tabares\",\"email\":\"angelus.99@hotmail.com\",\"phone_number\":\"3023307171\",\"address\":null,\"creation_date\":\"2023-08-09T14:38:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troteebcitcq6zjklioz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 19:39:58','2023-08-09 19:39:58'),(7672,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T14:41:09-05:00\",\"transaction\":{\"id\":\"troteebcitcq6zjklioz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93642575\",\"creation_date\":\"2023-08-09T14:38:54-05:00\",\"operation_date\":\"2023-08-09T00:00:00-05:00\",\"description\":\"Pago Mensual academia: martin suarez gutierrez (1075876356)\",\"error_message\":null,\"order_id\":\"621FBD17DA27241C58015EABE4164A52_SNLVDHJ8OM_1691609931.8417\",\"due_date\":\"2023-08-10T02:38:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"angela maria\",\"last_name\":\"gutierrez tabares\",\"email\":\"angelus.99@hotmail.com\",\"phone_number\":\"3023307171\",\"address\":null,\"creation_date\":\"2023-08-09T14:38:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 19:41:10','2023-08-09 19:41:10'),(7673,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T15:14:42-05:00\",\"transaction\":{\"id\":\"tr0wuhg2xyukqv8h7pmp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T15:14:05-05:00\",\"operation_date\":\"2023-08-09T15:14:05-05:00\",\"description\":\"Pago Mensual academia: carlos mauricio piñeres (1078462460)\",\"error_message\":null,\"order_id\":\"8643C8E2107BA86C47371E037059C4B7_5PHWZEQ7FX_1691612039.0399\",\"due_date\":\"2023-08-10T03:14:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"carlos\",\"last_name\":\"piñeres\",\"email\":\"aumalore@gmail.com\",\"phone_number\":\"3113946375\",\"address\":null,\"creation_date\":\"2023-08-09T15:14:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0wuhg2xyukqv8h7pmp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 20:14:43','2023-08-09 20:14:43'),(7674,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  839\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-09T14:27:14-06:00\",\"transaction\":{\"id\":\"tr0wuhg2xyukqv8h7pmp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-09T15:14:05-06:00\",\"operation_date\":\"2023-08-09T15:14:05-06:00\",\"description\":\"Pago Mensual academia: carlos mauricio piñeres (1078462460)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"8643C8E2107BA86C47371E037059C4B7_5PHWZEQ7FX_1691612039.0399\",\"due_date\":\"2023-08-10T03:14:05-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"carlos\",\"last_name\":\"piñeres\",\"email\":\"aumalore@gmail.com\",\"phone_number\":\"3113946375\",\"address\":null,\"creation_date\":\"2023-08-09T15:14:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 20:27:15','2023-08-09 20:27:15'),(7675,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T15:42:15-05:00\",\"transaction\":{\"id\":\"trj42babxjlfvvawl6hy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T15:41:15-05:00\",\"operation_date\":\"2023-08-09T15:41:15-05:00\",\"description\":\"Pago Mensual academia: Cristóbal Dávila Moná (1035007965)\",\"error_message\":null,\"order_id\":\"B848EDAE25876384476F8970B8491160_WXKFBR83OE_1691613669.3321\",\"due_date\":\"2023-08-10T03:41:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-08-09T15:41:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trj42babxjlfvvawl6hy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 20:42:16','2023-08-09 20:42:16'),(7676,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T15:43:27-05:00\",\"transaction\":{\"id\":\"trj42babxjlfvvawl6hy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93802243\",\"creation_date\":\"2023-08-09T15:41:15-05:00\",\"operation_date\":\"2023-08-09T15:43:07-05:00\",\"description\":\"Pago Mensual academia: Cristóbal Dávila Moná (1035007965)\",\"error_message\":null,\"order_id\":\"B848EDAE25876384476F8970B8491160_WXKFBR83OE_1691613669.3321\",\"due_date\":\"2023-08-10T03:41:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-08-09T15:41:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 20:43:28','2023-08-09 20:43:28'),(7677,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T15:57:26-05:00\",\"transaction\":{\"id\":\"tr2njbmisqnfyrxtomyr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T15:56:16-05:00\",\"operation_date\":\"2023-08-09T15:56:16-05:00\",\"description\":\"Pago Mensual academia: Juan José Grisales Jiménez (1036455688)\",\"error_message\":null,\"order_id\":\"DBB422937D7FF56E049D61DA730B3E11_SJA8HGVL2Y_1691614557.4234\",\"due_date\":\"2023-08-10T03:56:16-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"Diana Alejandra\",\"last_name\":\"Jiménez Vásquez\",\"email\":\"diyiva@hotmail.com\",\"phone_number\":\"3117707969\",\"address\":null,\"creation_date\":\"2023-08-09T15:56:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2njbmisqnfyrxtomyr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 20:57:26','2023-08-09 20:57:26'),(7678,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T15:58:16-05:00\",\"transaction\":{\"id\":\"tr2njbmisqnfyrxtomyr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93842316\",\"creation_date\":\"2023-08-09T15:56:16-05:00\",\"operation_date\":\"2023-08-09T15:58:06-05:00\",\"description\":\"Pago Mensual academia: Juan José Grisales Jiménez (1036455688)\",\"error_message\":null,\"order_id\":\"DBB422937D7FF56E049D61DA730B3E11_SJA8HGVL2Y_1691614557.4234\",\"due_date\":\"2023-08-10T03:56:16-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"Diana Alejandra\",\"last_name\":\"Jiménez Vásquez\",\"email\":\"diyiva@hotmail.com\",\"phone_number\":\"3117707969\",\"address\":null,\"creation_date\":\"2023-08-09T15:56:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 20:58:16','2023-08-09 20:58:16'),(7679,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T16:11:05-05:00\",\"transaction\":{\"id\":\"trhpogbcvhrxmu8kr76z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T16:09:58-05:00\",\"operation_date\":\"2023-08-09T16:09:58-05:00\",\"description\":\"Pago Inscripción academia: Martin Bonilla Toro (1011416254)\",\"error_message\":null,\"order_id\":\"6463C88460BD63BBE256E495C63AA40B_BIP6ZCW5K4_1691615394.5297\",\"due_date\":\"2023-08-10T04:09:58-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"tatiana\",\"last_name\":\"toro\",\"email\":\"torotatiana22@gmail.com\",\"phone_number\":\"3022176993\",\"address\":null,\"creation_date\":\"2023-08-09T16:09:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhpogbcvhrxmu8kr76z/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:11:06','2023-08-09 21:11:06'),(7680,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T16:31:23-05:00\",\"transaction\":{\"id\":\"trqcn4a7akwq2bvlvai4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T16:30:24-05:00\",\"operation_date\":\"2023-08-09T16:30:24-05:00\",\"description\":\"Pago Mensual academia: Samuel Sepulveda Taborda (1140418367)\",\"error_message\":null,\"order_id\":\"E8A642ED6A9AD20FB159472950DB3D65_RLGNUJH897_1691616617.4346\",\"due_date\":\"2023-08-10T04:30:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Guillermo\",\"last_name\":\"Sepulveda\",\"email\":\"memosep45@gmail.com\",\"phone_number\":\"3022239656\",\"address\":null,\"creation_date\":\"2023-08-09T16:30:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqcn4a7akwq2bvlvai4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:31:24','2023-08-09 21:31:24'),(7681,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T16:31:24-05:00\",\"transaction\":{\"id\":\"trkaelia4dnmyqox50xo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T16:29:16-05:00\",\"operation_date\":\"2023-08-09T16:29:16-05:00\",\"description\":\"Pago Mensual academia: Nicolas Moreno Mafla (1034998168)\",\"error_message\":null,\"order_id\":\"477B02D99DD6C00C5BA852BB9A9E1F6C_D0XYGE2VAS_1691616539.1886\",\"due_date\":\"2023-08-10T04:29:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Moreno Mafla\",\"email\":\"mafladelapava@gmail.com\",\"phone_number\":\"3114703992\",\"address\":null,\"creation_date\":\"2023-08-09T16:29:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkaelia4dnmyqox50xo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:31:25','2023-08-09 21:31:25'),(7682,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T16:32:39-05:00\",\"transaction\":{\"id\":\"trqcn4a7akwq2bvlvai4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93930984\",\"creation_date\":\"2023-08-09T16:30:24-05:00\",\"operation_date\":\"2023-08-09T16:32:31-05:00\",\"description\":\"Pago Mensual academia: Samuel Sepulveda Taborda (1140418367)\",\"error_message\":null,\"order_id\":\"E8A642ED6A9AD20FB159472950DB3D65_RLGNUJH897_1691616617.4346\",\"due_date\":\"2023-08-10T04:30:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Guillermo\",\"last_name\":\"Sepulveda\",\"email\":\"memosep45@gmail.com\",\"phone_number\":\"3022239656\",\"address\":null,\"creation_date\":\"2023-08-09T16:30:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:32:40','2023-08-09 21:32:40'),(7683,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T16:32:52-05:00\",\"transaction\":{\"id\":\"trjktczpz4cwmjhug3th\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T16:30:59-05:00\",\"operation_date\":\"2023-08-09T16:30:59-05:00\",\"description\":\"Pago Mensual academia: Tomas Echavarria Urrea (1017933144)\",\"error_message\":null,\"order_id\":\"6917FF2A7B53421FF4066020E2D89EEC_EBJDVAKI60_1691616655.6668\",\"due_date\":\"2023-08-10T04:30:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Urrea Uribe\",\"email\":\"aa.urrea@yahoo.com\",\"phone_number\":\"3155365343\",\"address\":null,\"creation_date\":\"2023-08-09T16:30:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjktczpz4cwmjhug3th/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:32:53','2023-08-09 21:32:53'),(7684,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T16:33:05-05:00\",\"transaction\":{\"id\":\"trkaelia4dnmyqox50xo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93931016\",\"creation_date\":\"2023-08-09T16:29:16-05:00\",\"operation_date\":\"2023-08-09T16:32:47-05:00\",\"description\":\"Pago Mensual academia: Nicolas Moreno Mafla (1034998168)\",\"error_message\":null,\"order_id\":\"477B02D99DD6C00C5BA852BB9A9E1F6C_D0XYGE2VAS_1691616539.1886\",\"due_date\":\"2023-08-10T04:29:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Moreno Mafla\",\"email\":\"mafladelapava@gmail.com\",\"phone_number\":\"3114703992\",\"address\":null,\"creation_date\":\"2023-08-09T16:29:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:33:06','2023-08-09 21:33:06'),(7685,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  841\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-09T15:33:10-06:00\",\"transaction\":{\"id\":\"trhpogbcvhrxmu8kr76z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-09T16:09:58-06:00\",\"operation_date\":\"2023-08-09T16:11:13-06:00\",\"description\":\"Pago Inscripción academia: Martin Bonilla Toro (1011416254)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"6463C88460BD63BBE256E495C63AA40B_BIP6ZCW5K4_1691615394.5297\",\"due_date\":\"2023-08-10T04:09:58-06:00\",\"error_code\":1007,\"amount\":431000.00,\"customer\":{\"name\":\"tatiana\",\"last_name\":\"toro\",\"email\":\"torotatiana22@gmail.com\",\"phone_number\":\"3022176993\",\"address\":null,\"creation_date\":\"2023-08-09T16:09:58-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:33:10','2023-08-09 21:33:10'),(7686,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T15:36:23-06:00\",\"transaction\":{\"id\":\"trjktczpz4cwmjhug3th\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93934381\",\"creation_date\":\"2023-08-09T16:30:59-06:00\",\"operation_date\":\"2023-08-09T16:33:50-06:00\",\"description\":\"Pago Mensual academia: Tomas Echavarria Urrea (1017933144)\",\"error_message\":null,\"order_id\":\"6917FF2A7B53421FF4066020E2D89EEC_EBJDVAKI60_1691616655.6668\",\"due_date\":\"2023-08-10T04:30:59-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Urrea Uribe\",\"email\":\"aa.urrea@yahoo.com\",\"phone_number\":\"3155365343\",\"address\":null,\"creation_date\":\"2023-08-09T16:30:59-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:36:23','2023-08-09 21:36:23'),(7687,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T16:46:38-05:00\",\"transaction\":{\"id\":\"triigfo7izzbkoo3wnav\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T16:45:55-05:00\",\"operation_date\":\"2023-08-09T16:45:55-05:00\",\"description\":\"Pago Inscripción academia: Martin Bonilla Toro (1011416254)\",\"error_message\":null,\"order_id\":\"6463C88460BD63BBE256E495C63AA40B_BIP6ZCW5K4_1691617552.9079\",\"due_date\":\"2023-08-10T04:45:55-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"tatiana\",\"last_name\":\"toro\",\"email\":\"torotatiana22@gmail.com\",\"phone_number\":\"3022176993\",\"address\":null,\"creation_date\":\"2023-08-09T16:45:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triigfo7izzbkoo3wnav/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:46:39','2023-08-09 21:46:39'),(7688,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T15:48:34-06:00\",\"transaction\":{\"id\":\"triigfo7izzbkoo3wnav\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93966126\",\"creation_date\":\"2023-08-09T16:45:55-06:00\",\"operation_date\":\"2023-08-09T16:47:58-06:00\",\"description\":\"Pago Inscripción academia: Martin Bonilla Toro (1011416254)\",\"error_message\":null,\"order_id\":\"6463C88460BD63BBE256E495C63AA40B_BIP6ZCW5K4_1691617552.9079\",\"due_date\":\"2023-08-10T04:45:55-06:00\",\"amount\":431000.00,\"customer\":{\"name\":\"tatiana\",\"last_name\":\"toro\",\"email\":\"torotatiana22@gmail.com\",\"phone_number\":\"3022176993\",\"address\":null,\"creation_date\":\"2023-08-09T16:45:55-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:48:35','2023-08-09 21:48:35'),(7689,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T16:49:12-05:00\",\"transaction\":{\"id\":\"trxcpc84fkmqlqxviqsv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-09T16:49:12-05:00\",\"operation_date\":\"2023-08-09T16:49:12-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Zapata agudelo (1035003635)\",\"error_message\":null,\"order_id\":\"BF2FB7D1825A1DF3CA308AD0BF48591E_X1NMGA4ZLJ_1691617749.6457\",\"amount\":82950.00,\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Zapata castañeda\",\"email\":\"servievent@hotmail.com\",\"phone_number\":\"3182721230\",\"address\":null,\"creation_date\":\"2023-08-09T16:49:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxcpc84fkmqlqxviqsv/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-09 21:49:13','2023-08-09 21:49:13'),(7690,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1164\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T16:51:42-05:00\",\"transaction\":{\"id\":\"trxcpc84fkmqlqxviqsv\",\"authorization\":\"165141\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-09T16:49:12-05:00\",\"operation_date\":\"2023-08-09T16:51:41-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Zapata agudelo (1035003635)\",\"error_message\":null,\"order_id\":\"BF2FB7D1825A1DF3CA308AD0BF48591E_X1NMGA4ZLJ_1691617749.6457\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1252\",\"holder_name\":\"Beatriz agudelo escobar\",\"expiration_year\":\"26\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":82950.00,\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Zapata castañeda\",\"email\":\"servievent@hotmail.com\",\"phone_number\":\"3182721230\",\"address\":null,\"creation_date\":\"2023-08-09T16:49:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxcpc84fkmqlqxviqsv/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-09 21:51:42','2023-08-09 21:51:42'),(7691,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T16:54:58-05:00\",\"transaction\":{\"id\":\"trnfczwwwwgxb9oe5mtr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T16:54:26-05:00\",\"operation_date\":\"2023-08-09T16:54:26-05:00\",\"description\":\"Pago Mensual academia: Martin Bonilla Toro (1011416254)\",\"error_message\":null,\"order_id\":\"828752F77ADA1B8BADF688BB8BE59F9D_BIVA6FQD7O_1691618061.8755\",\"due_date\":\"2023-08-10T04:54:26-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"tatiana\",\"last_name\":\"toro\",\"email\":\"torotatiana22@gmail.com\",\"phone_number\":\"3022176993\",\"address\":null,\"creation_date\":\"2023-08-09T16:54:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnfczwwwwgxb9oe5mtr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:54:58','2023-08-09 21:54:58'),(7692,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  796\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T15:57:28-06:00\",\"transaction\":{\"id\":\"trnfczwwwwgxb9oe5mtr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"93985266\",\"creation_date\":\"2023-08-09T16:54:26-06:00\",\"operation_date\":\"2023-08-09T16:56:28-06:00\",\"description\":\"Pago Mensual academia: Martin Bonilla Toro (1011416254)\",\"error_message\":null,\"order_id\":\"828752F77ADA1B8BADF688BB8BE59F9D_BIVA6FQD7O_1691618061.8755\",\"due_date\":\"2023-08-10T04:54:26-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"tatiana\",\"last_name\":\"toro\",\"email\":\"torotatiana22@gmail.com\",\"phone_number\":\"3022176993\",\"address\":null,\"creation_date\":\"2023-08-09T16:54:26-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 21:57:29','2023-08-09 21:57:29'),(7693,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T17:33:44-05:00\",\"transaction\":{\"id\":\"tre6gibqfzu4r1g9g196\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T17:32:24-05:00\",\"operation_date\":\"2023-08-09T17:32:24-05:00\",\"description\":\"Pago Mensual academia: Santiago arroyave segura (1034993465)\",\"error_message\":null,\"order_id\":\"818DE4D2EC21CFCB149CED7A5BED25AB_AB3SU2IY6M_1691620341.6588\",\"due_date\":\"2023-08-10T05:32:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Héctor\",\"last_name\":\"arroyave\",\"email\":\"hectorarroyave@gmail.com\",\"phone_number\":\"3006001213\",\"address\":null,\"creation_date\":\"2023-08-09T17:32:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre6gibqfzu4r1g9g196/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 22:33:45','2023-08-09 22:33:45'),(7694,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T17:35:33-05:00\",\"transaction\":{\"id\":\"tre6gibqfzu4r1g9g196\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"94068888\",\"creation_date\":\"2023-08-09T17:32:24-05:00\",\"operation_date\":\"2023-08-09T17:35:21-05:00\",\"description\":\"Pago Mensual academia: Santiago arroyave segura (1034993465)\",\"error_message\":null,\"order_id\":\"818DE4D2EC21CFCB149CED7A5BED25AB_AB3SU2IY6M_1691620341.6588\",\"due_date\":\"2023-08-10T05:32:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Héctor\",\"last_name\":\"arroyave\",\"email\":\"hectorarroyave@gmail.com\",\"phone_number\":\"3006001213\",\"address\":null,\"creation_date\":\"2023-08-09T17:32:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 22:35:33','2023-08-09 22:35:33'),(7695,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T17:38:24-05:00\",\"transaction\":{\"id\":\"tr0iplqjvanrzxxcwfiu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T17:36:42-05:00\",\"operation_date\":\"2023-08-09T17:36:42-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Aguirre Velasquez (1034993490)\",\"error_message\":null,\"order_id\":\"5C80985BD40B8CE792F8C786BB23FE54_80SQVH5FBK_1691620596.3633\",\"due_date\":\"2023-08-10T05:36:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jimmy Leandro\",\"last_name\":\"Aguirre Navales\",\"email\":\"aguirrejimmy@hotmail.com\",\"phone_number\":\"3128514979\",\"address\":null,\"creation_date\":\"2023-08-09T17:36:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0iplqjvanrzxxcwfiu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 22:38:24','2023-08-09 22:38:24'),(7696,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T16:42:21-06:00\",\"transaction\":{\"id\":\"tr0iplqjvanrzxxcwfiu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"94078981\",\"creation_date\":\"2023-08-09T17:36:42-06:00\",\"operation_date\":\"2023-08-09T17:39:34-06:00\",\"description\":\"Pago Mensual academia: Maximiliano Aguirre Velasquez (1034993490)\",\"error_message\":null,\"order_id\":\"5C80985BD40B8CE792F8C786BB23FE54_80SQVH5FBK_1691620596.3633\",\"due_date\":\"2023-08-10T05:36:42-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jimmy Leandro\",\"last_name\":\"Aguirre Navales\",\"email\":\"aguirrejimmy@hotmail.com\",\"phone_number\":\"3128514979\",\"address\":null,\"creation_date\":\"2023-08-09T17:36:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-09 22:42:22','2023-08-09 22:42:22'),(7697,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T19:57:15-05:00\",\"transaction\":{\"id\":\"trcjf8pqi2agq3egbkf9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T19:55:59-05:00\",\"operation_date\":\"2023-08-09T19:55:59-05:00\",\"description\":\"Pago Mensual academia: jaider stiven posso oquendo (1018249021)\",\"error_message\":null,\"order_id\":\"384BABC3E7FAA44CF1CA671B74499C3B_7HEBPWU68O_1691628953.149\",\"due_date\":\"2023-08-10T07:55:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jaider stiven\",\"last_name\":\"posso oquendo\",\"email\":\"zabalamariacamila961@gmail.com\",\"phone_number\":\"3043980850\",\"address\":null,\"creation_date\":\"2023-08-09T19:55:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcjf8pqi2agq3egbkf9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 00:57:16','2023-08-10 00:57:16'),(7698,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  865\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-09T19:18:08-06:00\",\"transaction\":{\"id\":\"trcjf8pqi2agq3egbkf9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-09T19:55:59-06:00\",\"operation_date\":\"2023-08-09T19:57:20-06:00\",\"description\":\"Pago Mensual academia: jaider stiven posso oquendo (1018249021)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"384BABC3E7FAA44CF1CA671B74499C3B_7HEBPWU68O_1691628953.149\",\"due_date\":\"2023-08-10T07:55:59-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"jaider stiven\",\"last_name\":\"posso oquendo\",\"email\":\"zabalamariacamila961@gmail.com\",\"phone_number\":\"3043980850\",\"address\":null,\"creation_date\":\"2023-08-09T19:55:59-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 01:18:09','2023-08-10 01:18:09'),(7699,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T20:31:00-05:00\",\"transaction\":{\"id\":\"trbeyzojdhyurgcfp9nv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T20:30:14-05:00\",\"operation_date\":\"2023-08-09T20:30:14-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Londoño Avilez (1020316215)\",\"error_message\":null,\"order_id\":\"57F04BB2975420E3B4C73920C687CAD7_0KULI87W6G_1691631010.2354\",\"due_date\":\"2023-08-10T08:30:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Aura\",\"last_name\":\"Avilez Causil\",\"email\":\"auravilez@hotmail.com\",\"phone_number\":\"3014371886\",\"address\":null,\"creation_date\":\"2023-08-09T20:30:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbeyzojdhyurgcfp9nv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 01:31:01','2023-08-10 01:31:01'),(7700,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T19:33:15-06:00\",\"transaction\":{\"id\":\"trbeyzojdhyurgcfp9nv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"94427480\",\"creation_date\":\"2023-08-09T20:30:14-06:00\",\"operation_date\":\"2023-08-09T20:32:32-06:00\",\"description\":\"Pago Mensual academia: Emmanuel Londoño Avilez (1020316215)\",\"error_message\":null,\"order_id\":\"57F04BB2975420E3B4C73920C687CAD7_0KULI87W6G_1691631010.2354\",\"due_date\":\"2023-08-10T08:30:14-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Aura\",\"last_name\":\"Avilez Causil\",\"email\":\"auravilez@hotmail.com\",\"phone_number\":\"3014371886\",\"address\":null,\"creation_date\":\"2023-08-09T20:30:14-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 01:33:15','2023-08-10 01:33:15'),(7701,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  909\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-09T21:17:23-05:00\",\"transaction\":{\"id\":\"trlxcjknz6enk1tef30a\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-09T21:16:33-05:00\",\"operation_date\":\"2023-08-09T21:16:33-05:00\",\"description\":\"Pago Mensual academia: Agustín Valencia Lobo (1035012790)\",\"error_message\":null,\"order_id\":\"E945DE21A1BB5714A0BC8A897ED32E9F_1UHCKERMS4_1691633779.185\",\"due_date\":\"2023-08-10T09:16:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Lobo\",\"email\":\"leidy240@gmail.com\",\"phone_number\":\"3012414912\",\"address\":null,\"creation_date\":\"2023-08-09T21:16:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlxcjknz6enk1tef30a/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 02:17:23','2023-08-10 02:17:23'),(7702,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  791\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-09T20:21:16-06:00\",\"transaction\":{\"id\":\"trlxcjknz6enk1tef30a\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"94508618\",\"creation_date\":\"2023-08-09T21:16:33-06:00\",\"operation_date\":\"2023-08-09T21:18:16-06:00\",\"description\":\"Pago Mensual academia: Agustín Valencia Lobo (1035012790)\",\"error_message\":null,\"order_id\":\"E945DE21A1BB5714A0BC8A897ED32E9F_1UHCKERMS4_1691633779.185\",\"due_date\":\"2023-08-10T09:16:33-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Lobo\",\"email\":\"leidy240@gmail.com\",\"phone_number\":\"3012414912\",\"address\":null,\"creation_date\":\"2023-08-09T21:16:33-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 02:21:16','2023-08-10 02:21:16'),(7703,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-10T02:14:59-06:00\",\"transaction\":{\"id\":\"trd6b4xuormmqsl5jpjg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-08T16:02:53-06:00\",\"operation_date\":\"2023-08-08T16:02:53-06:00\",\"description\":\"Pago Mensual academia: Emmanuel David Rincon Flores (1091374399)\",\"error_message\":null,\"order_id\":\"8D9766A69B764FEFC12F56739424D136_NGT2X69I4H_1691528570.5122\",\"due_date\":\"2023-08-09T04:02:53-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Rincon\",\"email\":\"nahoj28nahoj28@gmail.com\",\"phone_number\":\"3502027936\",\"address\":null,\"creation_date\":\"2023-08-08T16:02:53-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trd6b4xuormmqsl5jpjg/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 08:15:00','2023-08-10 08:15:00'),(7704,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-10T02:14:59-06:00\",\"transaction\":{\"id\":\"trq3icu8niddywe8cykg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-08T12:13:43-06:00\",\"operation_date\":\"2023-08-08T12:13:43-06:00\",\"description\":\"Pago Mensual academia: jose gabriel atehortua cadavid (1035006140)\",\"error_message\":null,\"order_id\":\"3083202A936B7D0EF8B680D7AE73FA1A_ASXWPTLRZ1_1691514819.1122\",\"due_date\":\"2023-08-09T00:13:43-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose gabriel\",\"last_name\":\"atehortua  cadavid\",\"email\":\"paolac87@outlook.com\",\"phone_number\":\"3208903138\",\"address\":null,\"creation_date\":\"2023-08-08T12:13:43-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq3icu8niddywe8cykg/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 08:15:00','2023-08-10 08:15:00'),(7705,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-10T02:14:59-06:00\",\"transaction\":{\"id\":\"trki4nn3mjxj1rvgf8bh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-08T22:23:24-06:00\",\"operation_date\":\"2023-08-08T22:23:24-06:00\",\"description\":\"Pago Mensual academia: Sebastián Lafaurie Londoño (1031949789)\",\"error_message\":null,\"order_id\":\"37D0B499FB84A552C17FCBB1442D7895_V0JI2M68O9_1691551402.1494\",\"due_date\":\"2023-08-09T10:23:25-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jean Paul\",\"last_name\":\"Lafaurie Plata\",\"email\":\"jplafauri@gmail.com\",\"phone_number\":\"3008028947\",\"address\":null,\"creation_date\":\"2023-08-08T22:23:24-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trki4nn3mjxj1rvgf8bh/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 08:15:00','2023-08-10 08:15:00'),(7706,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-10T02:15:10-06:00\",\"transaction\":{\"id\":\"trfxuzuuyvpky7t7xu9e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-08T12:58:20-06:00\",\"operation_date\":\"2023-08-08T12:58:20-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"274AD4786C3ABCA69FA097B85867D9A4_E-64D28231-91_1691517494.6216\",\"due_date\":\"2023-08-09T00:58:20-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"lizeth\",\"last_name\":\"rodriguez\",\"email\":\"liz.rood7@gmail.com\",\"phone_number\":\"3148392496\",\"address\":null,\"creation_date\":\"2023-08-08T12:58:20-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trfxuzuuyvpky7t7xu9e/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 08:15:11','2023-08-10 08:15:11'),(7707,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-10T02:15:10-06:00\",\"transaction\":{\"id\":\"trbwhxpxkoq7dxzu8bc2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-08T17:54:21-06:00\",\"operation_date\":\"2023-08-08T17:54:21-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EAE27D77CA20DB309E056E3D2DCD7D69_E-64D2C791-23_1691535257.4966\",\"due_date\":\"2023-08-09T05:54:21-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"jairo\",\"last_name\":\"chaverra serna\",\"email\":\"jairchas1@yahoo.es\",\"phone_number\":\"3117701766\",\"address\":null,\"creation_date\":\"2023-08-08T17:54:21-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trbwhxpxkoq7dxzu8bc2/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 08:15:11','2023-08-10 08:15:11'),(7708,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T05:25:58-05:00\",\"transaction\":{\"id\":\"trhywiplmukczcvvxmsd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T05:24:47-05:00\",\"operation_date\":\"2023-08-10T05:24:47-05:00\",\"description\":\"Pago Mensual academia: Arturo Perez Quiroz (1035001151)\",\"error_message\":null,\"order_id\":\"7FCC48D22804DBBE9B66B607D51389D4_4YHJ6S9C1M_1691663067.7959\",\"due_date\":\"2023-08-10T17:24:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-08-10T05:24:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhywiplmukczcvvxmsd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 10:25:59','2023-08-10 10:25:59'),(7709,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T05:28:18-05:00\",\"transaction\":{\"id\":\"trhywiplmukczcvvxmsd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"94710096\",\"creation_date\":\"2023-08-10T05:24:47-05:00\",\"operation_date\":\"2023-08-10T05:27:59-05:00\",\"description\":\"Pago Mensual academia: Arturo Perez Quiroz (1035001151)\",\"error_message\":null,\"order_id\":\"7FCC48D22804DBBE9B66B607D51389D4_4YHJ6S9C1M_1691663067.7959\",\"due_date\":\"2023-08-10T17:24:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-08-10T05:24:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 10:28:19','2023-08-10 10:28:19'),(7710,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T07:10:32-05:00\",\"transaction\":{\"id\":\"trzfltpvnp2mej567ezb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-10T07:10:32-05:00\",\"operation_date\":\"2023-08-10T07:10:32-05:00\",\"description\":\"Pago Mensual academia: mathias mora perez (1023546714)\",\"error_message\":null,\"order_id\":\"91D0DBFD38D950CB716C4DD26C5DA08A_TL4D62Z1WS_1691669429.225\",\"amount\":165900.00,\"customer\":{\"name\":\"rosemberg yair\",\"last_name\":\"mora revelo\",\"email\":\"yair89@outlook.com\",\"phone_number\":\"3506321002\",\"address\":null,\"creation_date\":\"2023-08-10T07:10:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzfltpvnp2mej567ezb/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 12:10:33','2023-08-10 12:10:33'),(7711,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1209\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T07:11:54-05:00\",\"transaction\":{\"id\":\"trzfltpvnp2mej567ezb\",\"authorization\":\"117201\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":3,\"conciliated\":true,\"creation_date\":\"2023-08-10T07:10:32-05:00\",\"operation_date\":\"2023-08-10T07:11:52-05:00\",\"description\":\"Pago Mensual academia: mathias mora perez (1023546714)\",\"error_message\":null,\"order_id\":\"91D0DBFD38D950CB716C4DD26C5DA08A_TL4D62Z1WS_1691669429.225\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555825XXXXXX3716\",\"holder_name\":\"Rosemberg mora \",\"expiration_year\":\"31\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NUBANK\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":3,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"rosemberg yair\",\"last_name\":\"mora revelo\",\"email\":\"yair89@outlook.com\",\"phone_number\":\"3506321002\",\"address\":null,\"creation_date\":\"2023-08-10T07:10:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzfltpvnp2mej567ezb/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 12:11:55','2023-08-10 12:11:55'),(7712,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  881\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T08:13:25-05:00\",\"transaction\":{\"id\":\"trjed6xchomrovt8j4k6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-10T08:13:25-05:00\",\"operation_date\":\"2023-08-10T08:13:25-05:00\",\"description\":\"Pago Mensual academia: Pablo Mesa Mesa (1035014887)\",\"error_message\":null,\"order_id\":\"898DD88CCA7B2F65461BC491DACB9B25_O3LPQ1WRN9_1691673199.3112\",\"amount\":105000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Mesa Castaño\",\"email\":\"diana3232@hotmail.com\",\"phone_number\":\"3148324184\",\"address\":null,\"creation_date\":\"2023-08-10T08:13:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjed6xchomrovt8j4k6/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 13:13:26','2023-08-10 13:13:26'),(7713,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1141\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T08:14:52-05:00\",\"transaction\":{\"id\":\"trjed6xchomrovt8j4k6\",\"authorization\":\"R02801\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-10T08:13:25-05:00\",\"operation_date\":\"2023-08-10T08:14:50-05:00\",\"description\":\"Pago Mensual academia: Pablo Mesa Mesa (1035014887)\",\"error_message\":null,\"order_id\":\"898DD88CCA7B2F65461BC491DACB9B25_O3LPQ1WRN9_1691673199.3112\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX0195\",\"holder_name\":\"DIANA M MESA CASTAÑO\",\"expiration_year\":\"24\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":105000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Mesa Castaño\",\"email\":\"diana3232@hotmail.com\",\"phone_number\":\"3148324184\",\"address\":null,\"creation_date\":\"2023-08-10T08:13:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjed6xchomrovt8j4k6/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 13:14:52','2023-08-10 13:14:52'),(7714,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T08:23:59-05:00\",\"transaction\":{\"id\":\"traswizeihkf9fqbotix\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T08:22:44-05:00\",\"operation_date\":\"2023-08-10T08:22:44-05:00\",\"description\":\"Pago Mensual academia: Alejandro Espinosa Agudelo (1038872293)\",\"error_message\":null,\"order_id\":\"42CD63CB189C30ED03E42CE2C069566C_1W907QRVE6_1691673760.1865\",\"due_date\":\"2023-08-10T20:22:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Oscar Alejandro\",\"last_name\":\"Espinosa rios\",\"email\":\"osaler10@gmail.com\",\"phone_number\":\"3113005070\",\"address\":null,\"creation_date\":\"2023-08-10T08:22:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traswizeihkf9fqbotix/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 13:24:00','2023-08-10 13:24:00'),(7715,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  855\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-10T08:24:30-05:00\",\"transaction\":{\"id\":\"traswizeihkf9fqbotix\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-10T08:22:44-05:00\",\"operation_date\":\"2023-08-10T08:24:30-05:00\",\"description\":\"Pago Mensual academia: Alejandro Espinosa Agudelo (1038872293)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"42CD63CB189C30ED03E42CE2C069566C_1W907QRVE6_1691673760.1865\",\"due_date\":\"2023-08-10T20:22:44-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Oscar Alejandro\",\"last_name\":\"Espinosa rios\",\"email\":\"osaler10@gmail.com\",\"phone_number\":\"3113005070\",\"address\":null,\"creation_date\":\"2023-08-10T08:22:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 13:24:31','2023-08-10 13:24:31'),(7716,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T08:26:45-05:00\",\"transaction\":{\"id\":\"trqxi6wnk5ep42bubu9b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T08:24:54-05:00\",\"operation_date\":\"2023-08-10T08:24:54-05:00\",\"description\":\"Pago Mensual academia: Alejandro Espinosa Agudelo (1038872293)\",\"error_message\":null,\"order_id\":\"42CD63CB189C30ED03E42CE2C069566C_1W907QRVE6_1691673888.3245\",\"due_date\":\"2023-08-10T20:24:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Oscar Alejandro\",\"last_name\":\"Espinosa rios\",\"email\":\"osaler10@gmail.com\",\"phone_number\":\"3113005070\",\"address\":null,\"creation_date\":\"2023-08-10T08:24:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqxi6wnk5ep42bubu9b/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 13:26:45','2023-08-10 13:26:45'),(7717,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  855\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-10T07:30:12-06:00\",\"transaction\":{\"id\":\"trqxi6wnk5ep42bubu9b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-10T08:24:54-06:00\",\"operation_date\":\"2023-08-10T08:29:06-06:00\",\"description\":\"Pago Mensual academia: Alejandro Espinosa Agudelo (1038872293)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"42CD63CB189C30ED03E42CE2C069566C_1W907QRVE6_1691673888.3245\",\"due_date\":\"2023-08-10T20:24:54-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Oscar Alejandro\",\"last_name\":\"Espinosa rios\",\"email\":\"osaler10@gmail.com\",\"phone_number\":\"3113005070\",\"address\":null,\"creation_date\":\"2023-08-10T08:24:54-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 13:30:13','2023-08-10 13:30:13'),(7718,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T08:31:31-05:00\",\"transaction\":{\"id\":\"tr1zdcyqqigkk52pwjso\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T08:30:40-05:00\",\"operation_date\":\"2023-08-10T08:30:40-05:00\",\"description\":\"Pago Mensual academia: Alejandro Espinosa Agudelo (1038872293)\",\"error_message\":null,\"order_id\":\"42CD63CB189C30ED03E42CE2C069566C_1W907QRVE6_1691674233.6901\",\"due_date\":\"2023-08-10T20:30:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Oscar Alejandro\",\"last_name\":\"Espinosa rios\",\"email\":\"osaler10@gmail.com\",\"phone_number\":\"3113005070\",\"address\":null,\"creation_date\":\"2023-08-10T08:30:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1zdcyqqigkk52pwjso/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 13:31:32','2023-08-10 13:31:32'),(7719,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T07:36:12-06:00\",\"transaction\":{\"id\":\"tr1zdcyqqigkk52pwjso\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"94877182\",\"creation_date\":\"2023-08-10T08:30:40-06:00\",\"operation_date\":\"2023-08-10T08:34:03-06:00\",\"description\":\"Pago Mensual academia: Alejandro Espinosa Agudelo (1038872293)\",\"error_message\":null,\"order_id\":\"42CD63CB189C30ED03E42CE2C069566C_1W907QRVE6_1691674233.6901\",\"due_date\":\"2023-08-10T20:30:40-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Oscar Alejandro\",\"last_name\":\"Espinosa rios\",\"email\":\"osaler10@gmail.com\",\"phone_number\":\"3113005070\",\"address\":null,\"creation_date\":\"2023-08-10T08:30:40-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 13:36:13','2023-08-10 13:36:13'),(7720,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T08:51:00-05:00\",\"transaction\":{\"id\":\"trcbwvgwddc8onkejpkw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T08:49:55-05:00\",\"operation_date\":\"2023-08-10T08:49:55-05:00\",\"description\":\"Pago Mensual academia: santiago agudelo rengifo (1029885184)\",\"error_message\":null,\"order_id\":\"C6B8C8D762DA15FA8DBBDFB6BAF9E260_1IP59FL6SQ_1691675389.2595\",\"due_date\":\"2023-08-10T20:49:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Agudelo Rengifo\",\"email\":\"shirley.rengifo@yahoo.com\",\"phone_number\":\"3138046959\",\"address\":null,\"creation_date\":\"2023-08-10T08:49:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcbwvgwddc8onkejpkw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 13:51:00','2023-08-10 13:51:00'),(7721,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T07:54:29-06:00\",\"transaction\":{\"id\":\"trcbwvgwddc8onkejpkw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"94915248\",\"creation_date\":\"2023-08-10T08:49:55-06:00\",\"operation_date\":\"2023-08-10T08:54:05-06:00\",\"description\":\"Pago Mensual academia: santiago agudelo rengifo (1029885184)\",\"error_message\":null,\"order_id\":\"C6B8C8D762DA15FA8DBBDFB6BAF9E260_1IP59FL6SQ_1691675389.2595\",\"due_date\":\"2023-08-10T20:49:55-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Agudelo Rengifo\",\"email\":\"shirley.rengifo@yahoo.com\",\"phone_number\":\"3138046959\",\"address\":null,\"creation_date\":\"2023-08-10T08:49:55-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 13:54:30','2023-08-10 13:54:30'),(7722,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T07:57:25-06:00\",\"transaction\":{\"id\":\"trcbwvgwddc8onkejpkw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"94915248\",\"creation_date\":\"2023-08-10T08:49:55-06:00\",\"operation_date\":\"2023-08-10T08:54:05-06:00\",\"description\":\"Pago Mensual academia: santiago agudelo rengifo (1029885184)\",\"error_message\":null,\"order_id\":\"C6B8C8D762DA15FA8DBBDFB6BAF9E260_1IP59FL6SQ_1691675389.2595\",\"due_date\":\"2023-08-10T20:49:55-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Agudelo Rengifo\",\"email\":\"shirley.rengifo@yahoo.com\",\"phone_number\":\"3138046959\",\"address\":null,\"creation_date\":\"2023-08-10T08:49:55-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 13:57:26','2023-08-10 13:57:26'),(7723,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T09:27:31-05:00\",\"transaction\":{\"id\":\"trocoysud1hdw2syerrj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-10T09:27:31-05:00\",\"operation_date\":\"2023-08-10T09:27:31-05:00\",\"description\":\"Pago Mensual academia: Alejandro Higuera Arboleda (1035006557)\",\"error_message\":null,\"order_id\":\"BE1BC7997695495F756312886F566110_WGNTX6D24R_1691677646.8538\",\"amount\":165900.00,\"customer\":{\"name\":\"Isabel Cristina\",\"last_name\":\"Arboleda Álvarez\",\"email\":\"isarboleda@hotmail.com\",\"phone_number\":\"3183386756\",\"address\":null,\"creation_date\":\"2023-08-10T09:27:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trocoysud1hdw2syerrj/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 14:27:32','2023-08-10 14:27:32'),(7724,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1154\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T09:28:37-05:00\",\"transaction\":{\"id\":\"trocoysud1hdw2syerrj\",\"authorization\":\"429586\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-10T09:27:31-05:00\",\"operation_date\":\"2023-08-10T09:28:36-05:00\",\"description\":\"Pago Mensual academia: Alejandro Higuera Arboleda (1035006557)\",\"error_message\":null,\"order_id\":\"BE1BC7997695495F756312886F566110_WGNTX6D24R_1691677646.8538\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"422274XXXXXX1520\",\"holder_name\":\"ISABEL ARBOLEDA\",\"expiration_year\":\"26\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Isabel Cristina\",\"last_name\":\"Arboleda Álvarez\",\"email\":\"isarboleda@hotmail.com\",\"phone_number\":\"3183386756\",\"address\":null,\"creation_date\":\"2023-08-10T09:27:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trocoysud1hdw2syerrj/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 14:28:38','2023-08-10 14:28:38'),(7725,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T09:36:29-05:00\",\"transaction\":{\"id\":\"traygmcgktt99emewapx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-10T09:36:28-05:00\",\"operation_date\":\"2023-08-10T09:36:28-05:00\",\"description\":\"Pago Mensual academia: Sebastián Lafaurie Londoño (1031949789)\",\"error_message\":null,\"order_id\":\"37D0B499FB84A552C17FCBB1442D7895_V0JI2M68O9_1691678182.9994\",\"amount\":95000.00,\"customer\":{\"name\":\"Jean Paul\",\"last_name\":\"Lafaurie Plata\",\"email\":\"jplafauri@gmail.com\",\"phone_number\":\"3008028947\",\"address\":null,\"creation_date\":\"2023-08-10T09:36:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traygmcgktt99emewapx/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 14:36:29','2023-08-10 14:36:29'),(7726,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T09:37:33-05:00\",\"transaction\":{\"id\":\"traygmcgktt99emewapx\",\"authorization\":\"R05849\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-10T09:36:28-05:00\",\"operation_date\":\"2023-08-10T09:37:32-05:00\",\"description\":\"Pago Mensual academia: Sebastián Lafaurie Londoño (1031949789)\",\"error_message\":null,\"order_id\":\"37D0B499FB84A552C17FCBB1442D7895_V0JI2M68O9_1691678182.9994\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549157XXXXXX1901\",\"holder_name\":\"JEAN P LAFAURIE P \",\"expiration_year\":\"25\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":95000.00,\"customer\":{\"name\":\"Jean Paul\",\"last_name\":\"Lafaurie Plata\",\"email\":\"jplafauri@gmail.com\",\"phone_number\":\"3008028947\",\"address\":null,\"creation_date\":\"2023-08-10T09:36:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traygmcgktt99emewapx/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 14:37:33','2023-08-10 14:37:33'),(7727,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  901\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T11:18:39-05:00\",\"transaction\":{\"id\":\"trjugqkytjuabw1u4kjv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-10T11:18:39-05:00\",\"operation_date\":\"2023-08-10T11:18:39-05:00\",\"description\":\"Pago Mensual academia: Jacobo Betancur Rivera (1020122857)\",\"error_message\":null,\"order_id\":\"C6F798B844366CCD65D99BC7F31E0E02_FM610GR7H2_1691684308.645\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"rivera loaiza\",\"email\":\"johanariveraodontologa@hotmail.com\",\"phone_number\":\"3106368849\",\"address\":null,\"creation_date\":\"2023-08-10T11:18:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjugqkytjuabw1u4kjv/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 16:18:39','2023-08-10 16:18:39'),(7728,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T11:48:53-05:00\",\"transaction\":{\"id\":\"triepirzejvrsd5bsigk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T11:47:59-05:00\",\"operation_date\":\"2023-08-10T11:47:59-05:00\",\"description\":\"Pago Mensual academia: jose gabriel atehortua cadavid (1035006140)\",\"error_message\":null,\"order_id\":\"3083202A936B7D0EF8B680D7AE73FA1A_ASXWPTLRZ1_1691686076.4676\",\"due_date\":\"2023-08-10T23:47:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose gabriel\",\"last_name\":\"atehortua  cadavid\",\"email\":\"paolac87@outlook.com\",\"phone_number\":\"3208903138\",\"address\":null,\"creation_date\":\"2023-08-10T11:47:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triepirzejvrsd5bsigk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 16:48:54','2023-08-10 16:48:54'),(7729,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  863\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-10T10:51:23-06:00\",\"transaction\":{\"id\":\"triepirzejvrsd5bsigk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-10T11:47:59-06:00\",\"operation_date\":\"2023-08-10T11:49:00-06:00\",\"description\":\"Pago Mensual academia: jose gabriel atehortua cadavid (1035006140)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"3083202A936B7D0EF8B680D7AE73FA1A_ASXWPTLRZ1_1691686076.4676\",\"due_date\":\"2023-08-10T23:47:59-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"jose gabriel\",\"last_name\":\"atehortua  cadavid\",\"email\":\"paolac87@outlook.com\",\"phone_number\":\"3208903138\",\"address\":null,\"creation_date\":\"2023-08-10T11:47:59-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 16:51:24','2023-08-10 16:51:24'),(7730,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T13:36:52-05:00\",\"transaction\":{\"id\":\"trchzv7ghcczfytwoj8y\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T13:36:09-05:00\",\"operation_date\":\"2023-08-10T13:36:09-05:00\",\"description\":\"Pago Mensual academia: Julián Trespalacios Obando (1023552443)\",\"error_message\":null,\"order_id\":\"30192E936BA11D0A202097FED8F44B2D_5I4UQXCLSK_1691692566.7958\",\"due_date\":\"2023-08-11T01:36:09-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Marivel\",\"last_name\":\"Obando Galindo\",\"email\":\"Obando833@hotmail.com\",\"phone_number\":\"3014010516\",\"address\":null,\"creation_date\":\"2023-08-10T13:36:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trchzv7ghcczfytwoj8y/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 18:36:53','2023-08-10 18:36:53'),(7731,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T13:37:41-05:00\",\"transaction\":{\"id\":\"trchzv7ghcczfytwoj8y\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"95590243\",\"creation_date\":\"2023-08-10T13:36:09-05:00\",\"operation_date\":\"2023-08-10T13:37:33-05:00\",\"description\":\"Pago Mensual academia: Julián Trespalacios Obando (1023552443)\",\"error_message\":null,\"order_id\":\"30192E936BA11D0A202097FED8F44B2D_5I4UQXCLSK_1691692566.7958\",\"due_date\":\"2023-08-11T01:36:09-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Marivel\",\"last_name\":\"Obando Galindo\",\"email\":\"Obando833@hotmail.com\",\"phone_number\":\"3014010516\",\"address\":null,\"creation_date\":\"2023-08-10T13:36:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 18:37:42','2023-08-10 18:37:42'),(7732,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  882\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T14:24:43-05:00\",\"transaction\":{\"id\":\"tr9appipticno0tbnlz5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-10T14:24:43-05:00\",\"operation_date\":\"2023-08-10T14:24:43-05:00\",\"description\":\"Pago Mensual academia: Raldwani Sanchez (1016719114)\",\"error_message\":null,\"order_id\":\"63A7769EFBCC83107E5E385CCC6429DE_6D08PYMF74_1691695479.3151\",\"amount\":165900.00,\"customer\":{\"name\":\"Raldwani\",\"last_name\":\"Sanchez\",\"email\":\"sarayospina769@gmail.com\",\"phone_number\":\"3013724978\",\"address\":null,\"creation_date\":\"2023-08-10T14:24:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9appipticno0tbnlz5/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 19:24:44','2023-08-10 19:24:44'),(7733,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1127\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T14:26:19-05:00\",\"transaction\":{\"id\":\"tr9appipticno0tbnlz5\",\"authorization\":\"086462\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-10T14:24:43-05:00\",\"operation_date\":\"2023-08-10T14:26:16-05:00\",\"description\":\"Pago Mensual academia: Raldwani Sanchez (1016719114)\",\"error_message\":null,\"order_id\":\"63A7769EFBCC83107E5E385CCC6429DE_6D08PYMF74_1691695479.3151\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"409355XXXXXX1151\",\"holder_name\":\"Sara Sardi \",\"expiration_year\":\"28\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOLOMBIA -NEQUI\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Raldwani\",\"last_name\":\"Sanchez\",\"email\":\"sarayospina769@gmail.com\",\"phone_number\":\"3013724978\",\"address\":null,\"creation_date\":\"2023-08-10T14:24:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9appipticno0tbnlz5/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 19:26:19','2023-08-10 19:26:19'),(7734,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T15:10:36-05:00\",\"transaction\":{\"id\":\"trvhrnoq3a0wdtc7rgwe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T15:09:44-05:00\",\"operation_date\":\"2023-08-10T15:09:44-05:00\",\"description\":\"Pago Mensual academia: Tomás Ramírez González (1040578850)\",\"error_message\":null,\"order_id\":\"1FFFEB2192215EA34CE0AAB63650534A_D1V5XNLK3B_1691698181.2785\",\"due_date\":\"2023-08-11T03:09:44-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"daniela\",\"last_name\":\"gonzalez\",\"email\":\"dagohe.2107@gmail.com\",\"phone_number\":\"3002308948\",\"address\":null,\"creation_date\":\"2023-08-10T15:09:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvhrnoq3a0wdtc7rgwe/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 20:10:36','2023-08-10 20:10:36'),(7735,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T14:12:31-06:00\",\"transaction\":{\"id\":\"trvhrnoq3a0wdtc7rgwe\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"95809887\",\"creation_date\":\"2023-08-10T15:09:44-06:00\",\"operation_date\":\"2023-08-10T15:11:13-06:00\",\"description\":\"Pago Mensual academia: Tomás Ramírez González (1040578850)\",\"error_message\":null,\"order_id\":\"1FFFEB2192215EA34CE0AAB63650534A_D1V5XNLK3B_1691698181.2785\",\"due_date\":\"2023-08-11T03:09:44-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"daniela\",\"last_name\":\"gonzalez\",\"email\":\"dagohe.2107@gmail.com\",\"phone_number\":\"3002308948\",\"address\":null,\"creation_date\":\"2023-08-10T15:09:44-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 20:12:32','2023-08-10 20:12:32'),(7736,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T15:20:40-05:00\",\"transaction\":{\"id\":\"trpuszfgwpy70avk6q23\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T15:19:29-05:00\",\"operation_date\":\"2023-08-10T15:19:29-05:00\",\"description\":\"Pago Inscripción academia: Nicolas Quinchia Patiño (1034927231)\",\"error_message\":null,\"order_id\":\"471C50AD1A156D7256EDDFD747D77931_K7PF12T5EQ_1691698755.5115\",\"due_date\":\"2023-08-11T03:19:29-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Quinchia Patiño\",\"email\":\"npatinon.2002@gmail.com\",\"phone_number\":\"3042901987\",\"address\":null,\"creation_date\":\"2023-08-10T15:19:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpuszfgwpy70avk6q23/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 20:20:41','2023-08-10 20:20:41'),(7737,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T15:22:04-05:00\",\"transaction\":{\"id\":\"trpuszfgwpy70avk6q23\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"95834653\",\"creation_date\":\"2023-08-10T15:19:29-05:00\",\"operation_date\":\"2023-08-10T15:21:29-05:00\",\"description\":\"Pago Inscripción academia: Nicolas Quinchia Patiño (1034927231)\",\"error_message\":null,\"order_id\":\"471C50AD1A156D7256EDDFD747D77931_K7PF12T5EQ_1691698755.5115\",\"due_date\":\"2023-08-11T03:19:29-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Quinchia Patiño\",\"email\":\"npatinon.2002@gmail.com\",\"phone_number\":\"3042901987\",\"address\":null,\"creation_date\":\"2023-08-10T15:19:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 20:22:04','2023-08-10 20:22:04'),(7738,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T15:25:53-05:00\",\"transaction\":{\"id\":\"treaxerqphaycipd9zhr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T15:25:07-05:00\",\"operation_date\":\"2023-08-10T15:25:07-05:00\",\"description\":\"Pago Mensual academia: Nicolas Quinchia Patiño (1034927231)\",\"error_message\":null,\"order_id\":\"4A533591763DFA743A13AFFAB1A85793_7VK9UWCT5A_1691699103.0922\",\"due_date\":\"2023-08-11T03:25:07-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Quinchia Patiño\",\"email\":\"npatinon.2002@gmail.com\",\"phone_number\":\"3042901987\",\"address\":null,\"creation_date\":\"2023-08-10T15:25:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treaxerqphaycipd9zhr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 20:25:54','2023-08-10 20:25:54'),(7739,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T15:26:54-05:00\",\"transaction\":{\"id\":\"treaxerqphaycipd9zhr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"95847775\",\"creation_date\":\"2023-08-10T15:25:07-05:00\",\"operation_date\":\"2023-08-10T15:26:37-05:00\",\"description\":\"Pago Mensual academia: Nicolas Quinchia Patiño (1034927231)\",\"error_message\":null,\"order_id\":\"4A533591763DFA743A13AFFAB1A85793_7VK9UWCT5A_1691699103.0922\",\"due_date\":\"2023-08-11T03:25:07-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Quinchia Patiño\",\"email\":\"npatinon.2002@gmail.com\",\"phone_number\":\"3042901987\",\"address\":null,\"creation_date\":\"2023-08-10T15:25:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 20:26:54','2023-08-10 20:26:54'),(7740,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T16:04:34-05:00\",\"transaction\":{\"id\":\"trvujamuifhbxkjfs8yj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T16:03:21-05:00\",\"operation_date\":\"2023-08-10T16:03:21-05:00\",\"description\":\"Pago Mensual academia: Felipe Gallego Sepulveda (1020325504)\",\"error_message\":null,\"order_id\":\"643DE7CF7BA769C7466CCBC4ADFD7FAC_B52VHSDW9A_1691701398.0306\",\"due_date\":\"2023-08-11T04:03:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Felipe\",\"last_name\":\"Gallego Sepulveda\",\"email\":\"yandreas86@hotmail.com\",\"phone_number\":\"3015668969\",\"address\":null,\"creation_date\":\"2023-08-10T16:03:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvujamuifhbxkjfs8yj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 21:04:34','2023-08-10 21:04:34'),(7741,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T16:06:25-05:00\",\"transaction\":{\"id\":\"trvujamuifhbxkjfs8yj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"95945893\",\"creation_date\":\"2023-08-10T16:03:21-05:00\",\"operation_date\":\"2023-08-10T16:06:13-05:00\",\"description\":\"Pago Mensual academia: Felipe Gallego Sepulveda (1020325504)\",\"error_message\":null,\"order_id\":\"643DE7CF7BA769C7466CCBC4ADFD7FAC_B52VHSDW9A_1691701398.0306\",\"due_date\":\"2023-08-11T04:03:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Felipe\",\"last_name\":\"Gallego Sepulveda\",\"email\":\"yandreas86@hotmail.com\",\"phone_number\":\"3015668969\",\"address\":null,\"creation_date\":\"2023-08-10T16:03:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 21:06:26','2023-08-10 21:06:26'),(7742,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  903\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T16:23:43-05:00\",\"transaction\":{\"id\":\"trsyz9pe2qymyx9pg0ms\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-10T16:23:43-05:00\",\"operation_date\":\"2023-08-10T16:23:43-05:00\",\"description\":\"Pago Mensual academia: Isaac Loaiza Monsalve (1017938265)\",\"error_message\":null,\"order_id\":\"DAB49080D80C724AAD5EBF158D63DF41_6ZR9LA5PMH_1691702621.0356\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Carolina\",\"last_name\":\"Monsalve Estrada\",\"email\":\"diana.monsalve8@gmail.com\",\"phone_number\":\"3135756382\",\"address\":null,\"creation_date\":\"2023-08-10T16:23:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsyz9pe2qymyx9pg0ms/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 21:23:43','2023-08-10 21:23:43'),(7743,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1234\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T16:25:13-05:00\",\"transaction\":{\"id\":\"trsyz9pe2qymyx9pg0ms\",\"authorization\":\"162515\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":20,\"conciliated\":true,\"creation_date\":\"2023-08-10T16:23:43-05:00\",\"operation_date\":\"2023-08-10T16:25:12-05:00\",\"description\":\"Pago Mensual academia: Isaac Loaiza Monsalve (1017938265)\",\"error_message\":null,\"order_id\":\"DAB49080D80C724AAD5EBF158D63DF41_6ZR9LA5PMH_1691702621.0356\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"428385XXXXXX8645\",\"holder_name\":\"Diana c Monsalve e\",\"expiration_year\":\"24\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":20,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Diana Carolina\",\"last_name\":\"Monsalve Estrada\",\"email\":\"diana.monsalve8@gmail.com\",\"phone_number\":\"3135756382\",\"address\":null,\"creation_date\":\"2023-08-10T16:23:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsyz9pe2qymyx9pg0ms/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 21:25:14','2023-08-10 21:25:14'),(7744,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  902\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T16:31:53-05:00\",\"transaction\":{\"id\":\"trncwjox6bzuquiaz4tu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-10T16:31:53-05:00\",\"operation_date\":\"2023-08-10T16:31:53-05:00\",\"description\":\"Pago Mensual academia: Jacobo Betancur Rivera (1020122857)\",\"error_message\":null,\"order_id\":\"C6F798B844366CCD65D99BC7F31E0E02_FM610GR7H2_1691703108.8126\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"rivera loaiza\",\"email\":\"johanariveraodontologa@hotmail.com\",\"phone_number\":\"3106368849\",\"address\":null,\"creation_date\":\"2023-08-10T16:31:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trncwjox6bzuquiaz4tu/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 21:31:54','2023-08-10 21:31:54'),(7745,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T16:33:48-05:00\",\"transaction\":{\"id\":\"trncwjox6bzuquiaz4tu\",\"authorization\":\"961566\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-10T16:31:53-05:00\",\"operation_date\":\"2023-08-10T16:33:47-05:00\",\"description\":\"Pago Mensual academia: Jacobo Betancur Rivera (1020122857)\",\"error_message\":null,\"order_id\":\"C6F798B844366CCD65D99BC7F31E0E02_FM610GR7H2_1691703108.8126\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459356XXXXXX0303\",\"holder_name\":\"Mauricio Betancur S\",\"expiration_year\":\"24\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"rivera loaiza\",\"email\":\"johanariveraodontologa@hotmail.com\",\"phone_number\":\"3106368849\",\"address\":null,\"creation_date\":\"2023-08-10T16:31:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trncwjox6bzuquiaz4tu/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 21:33:49','2023-08-10 21:33:49'),(7746,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  902\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T16:35:22-05:00\",\"transaction\":{\"id\":\"trh1kxxbaer0bdhypbfk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-10T16:35:22-05:00\",\"operation_date\":\"2023-08-10T16:35:22-05:00\",\"description\":\"Pago Mensual academia: Jacobo Betancur Rivera (1020122857)\",\"error_message\":null,\"order_id\":\"73640DE25B7D656733CE2F808A330F18_J5LYDW4COX_1691703316.9695\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"rivera loaiza\",\"email\":\"johanariveraodontologa@hotmail.com\",\"phone_number\":\"3106368849\",\"address\":null,\"creation_date\":\"2023-08-10T16:35:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trh1kxxbaer0bdhypbfk/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 21:35:23','2023-08-10 21:35:23'),(7747,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T16:36:31-05:00\",\"transaction\":{\"id\":\"trh1kxxbaer0bdhypbfk\",\"authorization\":\"749323\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-10T16:35:22-05:00\",\"operation_date\":\"2023-08-10T16:36:30-05:00\",\"description\":\"Pago Mensual academia: Jacobo Betancur Rivera (1020122857)\",\"error_message\":null,\"order_id\":\"73640DE25B7D656733CE2F808A330F18_J5LYDW4COX_1691703316.9695\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459356XXXXXX0303\",\"holder_name\":\"Mauricio Betancur S\",\"expiration_year\":\"24\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"rivera loaiza\",\"email\":\"johanariveraodontologa@hotmail.com\",\"phone_number\":\"3106368849\",\"address\":null,\"creation_date\":\"2023-08-10T16:35:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trh1kxxbaer0bdhypbfk/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 21:36:31','2023-08-10 21:36:31'),(7748,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T16:44:32-05:00\",\"transaction\":{\"id\":\"trfhp1i3z9y161xnh73h\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T16:32:39-05:00\",\"operation_date\":\"2023-08-10T16:32:39-05:00\",\"description\":\"Pago Mensual academia: VICENTE GIRALDO ARANGO (1036457876)\",\"error_message\":null,\"order_id\":\"E846FB8A4F365CA8E84393D4F34E1B07_XM8FSQD65N_1691703145.9689\",\"due_date\":\"2023-08-11T04:32:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BEATRIZ\",\"last_name\":\"ARANGO AGUDELO\",\"email\":\"bearango609@gmail.com\",\"phone_number\":\"3044722226\",\"address\":null,\"creation_date\":\"2023-08-10T16:32:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfhp1i3z9y161xnh73h/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 21:44:33','2023-08-10 21:44:33'),(7749,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T16:46:39-05:00\",\"transaction\":{\"id\":\"trfhp1i3z9y161xnh73h\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"96046015\",\"creation_date\":\"2023-08-10T16:32:39-05:00\",\"operation_date\":\"2023-08-10T16:46:21-05:00\",\"description\":\"Pago Mensual academia: VICENTE GIRALDO ARANGO (1036457876)\",\"error_message\":null,\"order_id\":\"E846FB8A4F365CA8E84393D4F34E1B07_XM8FSQD65N_1691703145.9689\",\"due_date\":\"2023-08-11T04:32:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BEATRIZ\",\"last_name\":\"ARANGO AGUDELO\",\"email\":\"bearango609@gmail.com\",\"phone_number\":\"3044722226\",\"address\":null,\"creation_date\":\"2023-08-10T16:32:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 21:46:40','2023-08-10 21:46:40'),(7750,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T17:26:44-05:00\",\"transaction\":{\"id\":\"triui0ty6r9zu3ualhe6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T17:26:04-05:00\",\"operation_date\":\"2023-08-10T17:26:04-05:00\",\"description\":\"Pago Mensual academia: ismael marin  zapata (1021946861)\",\"error_message\":null,\"order_id\":\"71A5C0514AB83382D98154E5A5F9D813_NRDSWHT0I9_1691706360.191\",\"due_date\":\"2023-08-11T05:26:04-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"luis david\",\"last_name\":\"marin zapata\",\"email\":\"ldmzapata@hotmail.com\",\"phone_number\":\"3137928002\",\"address\":null,\"creation_date\":\"2023-08-10T17:26:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triui0ty6r9zu3ualhe6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 22:26:45','2023-08-10 22:26:45'),(7751,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T17:28:14-05:00\",\"transaction\":{\"id\":\"triui0ty6r9zu3ualhe6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"96135221\",\"creation_date\":\"2023-08-10T17:26:04-05:00\",\"operation_date\":\"2023-08-10T00:00:00-05:00\",\"description\":\"Pago Mensual academia: ismael marin  zapata (1021946861)\",\"error_message\":null,\"order_id\":\"71A5C0514AB83382D98154E5A5F9D813_NRDSWHT0I9_1691706360.191\",\"due_date\":\"2023-08-11T05:26:04-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"luis david\",\"last_name\":\"marin zapata\",\"email\":\"ldmzapata@hotmail.com\",\"phone_number\":\"3137928002\",\"address\":null,\"creation_date\":\"2023-08-10T17:26:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 22:28:14','2023-08-10 22:28:14'),(7752,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T17:47:39-05:00\",\"transaction\":{\"id\":\"trhcjm8mxgjz4nygkvje\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T17:47:00-05:00\",\"operation_date\":\"2023-08-10T17:47:00-05:00\",\"description\":\"Pago Mensual academia: lorenzo rengifo restrepo (1033193056)\",\"error_message\":null,\"order_id\":\"07211688A0869D995947A8FB11B215D6_4TLJ0PYCDU_1691707617.406\",\"due_date\":\"2023-08-11T05:47:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Restrepo Ortiz\",\"email\":\"erikarestre@gmail.com\",\"phone_number\":\"3216487929\",\"address\":null,\"creation_date\":\"2023-08-10T17:47:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhcjm8mxgjz4nygkvje/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 22:47:40','2023-08-10 22:47:40'),(7753,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T17:48:53-05:00\",\"transaction\":{\"id\":\"trhcjm8mxgjz4nygkvje\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"96176448\",\"creation_date\":\"2023-08-10T17:47:00-05:00\",\"operation_date\":\"2023-08-10T17:48:22-05:00\",\"description\":\"Pago Mensual academia: lorenzo rengifo restrepo (1033193056)\",\"error_message\":null,\"order_id\":\"07211688A0869D995947A8FB11B215D6_4TLJ0PYCDU_1691707617.406\",\"due_date\":\"2023-08-11T05:47:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Restrepo Ortiz\",\"email\":\"erikarestre@gmail.com\",\"phone_number\":\"3216487929\",\"address\":null,\"creation_date\":\"2023-08-10T17:47:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-10 22:48:54','2023-08-10 22:48:54'),(7754,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T18:51:55-05:00\",\"transaction\":{\"id\":\"trxeb3tacd1yyjufpnd1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-10T18:51:55-05:00\",\"operation_date\":\"2023-08-10T18:51:55-05:00\",\"description\":\"Pago Mensual academia: Isaac Giraldo Giraldo (1020315563)\",\"error_message\":null,\"order_id\":\"5D2C2CEE8AB0B9A36BD1ED7196BD6C4A_7WMEI6X3KA_1691711510.8414\",\"amount\":165900.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Giraldo Giraldo\",\"email\":\"lenyliz_giraldo7@hotmail.com\",\"phone_number\":\"3042228036\",\"address\":null,\"creation_date\":\"2023-08-10T18:51:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxeb3tacd1yyjufpnd1/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-10 23:51:56','2023-08-10 23:51:56'),(7755,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T19:48:40-05:00\",\"transaction\":{\"id\":\"trwafuu6hcdhmzs2dkzl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-10T19:48:40-05:00\",\"operation_date\":\"2023-08-10T19:48:40-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"7EABE3A1649FFA2B3FF8C02EBFD5659F_E-64D584EC-55_1691714912.941\",\"amount\":286800.00,\"customer\":{\"name\":\"Manuela\",\"last_name\":\"Arboleda\",\"email\":\"mvar97@outlook.com\",\"phone_number\":\"3008102162\",\"address\":null,\"creation_date\":\"2023-08-10T19:48:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trwafuu6hcdhmzs2dkzl/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 00:48:40','2023-08-11 00:48:40'),(7756,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1105\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T19:49:49-05:00\",\"transaction\":{\"id\":\"trwafuu6hcdhmzs2dkzl\",\"authorization\":\"194951\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-10T19:48:40-05:00\",\"operation_date\":\"2023-08-10T19:49:48-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"7EABE3A1649FFA2B3FF8C02EBFD5659F_E-64D584EC-55_1691714912.941\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459321XXXXXX8536\",\"holder_name\":\"Manuela V Arboleda R\",\"expiration_year\":\"25\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"amount\":286800.00,\"customer\":{\"name\":\"Manuela\",\"last_name\":\"Arboleda\",\"email\":\"mvar97@outlook.com\",\"phone_number\":\"3008102162\",\"address\":null,\"creation_date\":\"2023-08-10T19:48:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trwafuu6hcdhmzs2dkzl/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 00:49:49','2023-08-11 00:49:49'),(7757,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-10T21:37:45-05:00\",\"transaction\":{\"id\":\"trxoeutigrebaxhqiz9j\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-10T21:35:48-05:00\",\"operation_date\":\"2023-08-10T21:35:48-05:00\",\"description\":\"Pago Mensual academia: mateo tamayo gonzalez (1020116579)\",\"error_message\":null,\"order_id\":\"5421E013565F7F1AFA0CFE8AD87A99AB_6WI85AFDV4_1691721341.2833\",\"due_date\":\"2023-08-11T09:35:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jaime Alberto \",\"last_name\":\"Perez\",\"email\":\"caromati96@gmail.com\",\"phone_number\":\"3108210062\",\"address\":null,\"creation_date\":\"2023-08-10T21:35:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxoeutigrebaxhqiz9j/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 02:37:46','2023-08-11 02:37:46'),(7758,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-10T20:39:12-06:00\",\"transaction\":{\"id\":\"trxoeutigrebaxhqiz9j\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"96608692\",\"creation_date\":\"2023-08-10T21:35:48-06:00\",\"operation_date\":\"2023-08-10T21:38:42-06:00\",\"description\":\"Pago Mensual academia: mateo tamayo gonzalez (1020116579)\",\"error_message\":null,\"order_id\":\"5421E013565F7F1AFA0CFE8AD87A99AB_6WI85AFDV4_1691721341.2833\",\"due_date\":\"2023-08-11T09:35:48-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jaime Alberto \",\"last_name\":\"Perez\",\"email\":\"caromati96@gmail.com\",\"phone_number\":\"3108210062\",\"address\":null,\"creation_date\":\"2023-08-10T21:35:48-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 02:39:13','2023-08-11 02:39:13'),(7759,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-11T02:17:52-06:00\",\"transaction\":{\"id\":\"trx3lzhqkwtm35v20wru\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-10T10:53:34-06:00\",\"operation_date\":\"2023-08-10T10:53:34-06:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"20125FD9B2D43E340A35FB0278DA235D_OVMIRWNTC9_1691682807.7953\",\"due_date\":\"2023-08-10T22:53:34-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-08-10T10:53:34-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trx3lzhqkwtm35v20wru/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 08:17:52','2023-08-11 08:17:52'),(7760,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T05:49:52-05:00\",\"transaction\":{\"id\":\"trg4qhsg2yaooudbifzm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T05:49:05-05:00\",\"operation_date\":\"2023-08-11T05:49:05-05:00\",\"description\":\"Pago Mensual academia: martin orozco (1035011724)\",\"error_message\":null,\"order_id\":\"4500E4037738E13C0C18DB508E18D483_2XLMSB6PZF_1691750940.0494\",\"due_date\":\"2023-08-11T17:49:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catherine\",\"last_name\":\"jimenez\",\"email\":\"cathe84@gmail.com\",\"phone_number\":\"3216483416\",\"address\":null,\"creation_date\":\"2023-08-11T05:49:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg4qhsg2yaooudbifzm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 10:49:53','2023-08-11 10:49:53'),(7761,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  789\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T05:50:57-05:00\",\"transaction\":{\"id\":\"trg4qhsg2yaooudbifzm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"96791559\",\"creation_date\":\"2023-08-11T05:49:05-05:00\",\"operation_date\":\"2023-08-11T05:50:48-05:00\",\"description\":\"Pago Mensual academia: martin orozco (1035011724)\",\"error_message\":null,\"order_id\":\"4500E4037738E13C0C18DB508E18D483_2XLMSB6PZF_1691750940.0494\",\"due_date\":\"2023-08-11T17:49:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catherine\",\"last_name\":\"jimenez\",\"email\":\"cathe84@gmail.com\",\"phone_number\":\"3216483416\",\"address\":null,\"creation_date\":\"2023-08-11T05:49:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 10:50:58','2023-08-11 10:50:58'),(7762,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T07:43:48-05:00\",\"transaction\":{\"id\":\"trmyo2ihz1a7cpuyroxv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T07:43:04-05:00\",\"operation_date\":\"2023-08-11T07:43:04-05:00\",\"description\":\"Pago Mensual academia: Emiliano Zuluaga Gonzalez (1035006037)\",\"error_message\":null,\"order_id\":\"CAA202034F268232C26FAC9435F54E15_65RZ7083OA_1691757781.6477\",\"due_date\":\"2023-08-11T19:43:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Zuluaga Gonzalez\",\"email\":\"cateringz84@gmail.com\",\"phone_number\":\"3218510800\",\"address\":null,\"creation_date\":\"2023-08-11T07:43:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmyo2ihz1a7cpuyroxv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 12:43:49','2023-08-11 12:43:49'),(7763,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T07:44:50-05:00\",\"transaction\":{\"id\":\"trmyo2ihz1a7cpuyroxv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"96870022\",\"creation_date\":\"2023-08-11T07:43:04-05:00\",\"operation_date\":\"2023-08-11T07:44:30-05:00\",\"description\":\"Pago Mensual academia: Emiliano Zuluaga Gonzalez (1035006037)\",\"error_message\":null,\"order_id\":\"CAA202034F268232C26FAC9435F54E15_65RZ7083OA_1691757781.6477\",\"due_date\":\"2023-08-11T19:43:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Zuluaga Gonzalez\",\"email\":\"cateringz84@gmail.com\",\"phone_number\":\"3218510800\",\"address\":null,\"creation_date\":\"2023-08-11T07:43:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 12:44:50','2023-08-11 12:44:50'),(7764,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T09:04:01-05:00\",\"transaction\":{\"id\":\"traeipj2erdlmh3va7ih\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T09:03:15-05:00\",\"operation_date\":\"2023-08-11T09:03:15-05:00\",\"description\":\"Pago Mensual academia: JUAN JOSÉ LONDOÑO GRACIANO (1036457036)\",\"error_message\":null,\"order_id\":\"_1691762591.1837\",\"due_date\":\"2023-08-11T21:03:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BIBIANA\",\"last_name\":\"GRACIANO VALENCIA\",\"email\":\"vivianagraciano.82@gmail.com\",\"phone_number\":\"3122193283\",\"address\":null,\"creation_date\":\"2023-08-11T09:03:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traeipj2erdlmh3va7ih/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 14:04:02','2023-08-11 14:04:02'),(7765,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  780\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T09:04:45-05:00\",\"transaction\":{\"id\":\"traeipj2erdlmh3va7ih\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"96996223\",\"creation_date\":\"2023-08-11T09:03:15-05:00\",\"operation_date\":\"2023-08-11T09:04:37-05:00\",\"description\":\"Pago Mensual academia: JUAN JOSÉ LONDOÑO GRACIANO (1036457036)\",\"error_message\":null,\"order_id\":\"_1691762591.1837\",\"due_date\":\"2023-08-11T21:03:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BIBIANA\",\"last_name\":\"GRACIANO VALENCIA\",\"email\":\"vivianagraciano.82@gmail.com\",\"phone_number\":\"3122193283\",\"address\":null,\"creation_date\":\"2023-08-11T09:03:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 14:04:46','2023-08-11 14:04:46'),(7766,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T09:35:28-05:00\",\"transaction\":{\"id\":\"tr6gx4ay3wpfyz07sidy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-11T09:35:28-05:00\",\"operation_date\":\"2023-08-11T09:35:28-05:00\",\"description\":\"Pago Mensual academia: Emiliano puerta lopez (1035982675)\",\"error_message\":null,\"order_id\":\"2D2C8394E31101A261ABF1784302BF75_V18LJCKXAZ_1691764518.3255\",\"amount\":165900.00,\"customer\":{\"name\":\"lina Marcela\",\"last_name\":\"lopez peña\",\"email\":\"lamarce1616@gmail.com\",\"phone_number\":\"3117359167\",\"address\":null,\"creation_date\":\"2023-08-11T09:35:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6gx4ay3wpfyz07sidy/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 14:35:29','2023-08-11 14:35:29'),(7767,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1151\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T09:36:59-05:00\",\"transaction\":{\"id\":\"tr6gx4ay3wpfyz07sidy\",\"authorization\":\"093658\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-11T09:35:28-05:00\",\"operation_date\":\"2023-08-11T09:36:58-05:00\",\"description\":\"Pago Mensual academia: Emiliano puerta lopez (1035982675)\",\"error_message\":null,\"order_id\":\"2D2C8394E31101A261ABF1784302BF75_V18LJCKXAZ_1691764518.3255\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX6322\",\"holder_name\":\"William puerta franco \",\"expiration_year\":\"25\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"lina Marcela\",\"last_name\":\"lopez peña\",\"email\":\"lamarce1616@gmail.com\",\"phone_number\":\"3117359167\",\"address\":null,\"creation_date\":\"2023-08-11T09:35:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6gx4ay3wpfyz07sidy/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 14:37:00','2023-08-11 14:37:00'),(7768,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T10:53:14-05:00\",\"transaction\":{\"id\":\"trlrtyewd9jg8vealhap\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T10:52:12-05:00\",\"operation_date\":\"2023-08-11T10:52:12-05:00\",\"description\":\"Pago Mensual academia: Juan Martin Pino Alzate (1035015684)\",\"error_message\":null,\"order_id\":\"72007983849F4FCB0AD565439834756B_E8KCV05O67_1691769128.1638\",\"due_date\":\"2023-08-11T22:52:12-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Alzate Gonzalez\",\"email\":\"analzate_5@hotmail.com\",\"phone_number\":\"3103588945\",\"address\":null,\"creation_date\":\"2023-08-11T10:52:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlrtyewd9jg8vealhap/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 15:53:14','2023-08-11 15:53:14'),(7769,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T10:54:04-05:00\",\"transaction\":{\"id\":\"trlrtyewd9jg8vealhap\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"97237612\",\"creation_date\":\"2023-08-11T10:52:12-05:00\",\"operation_date\":\"2023-08-11T10:54:00-05:00\",\"description\":\"Pago Mensual academia: Juan Martin Pino Alzate (1035015684)\",\"error_message\":null,\"order_id\":\"72007983849F4FCB0AD565439834756B_E8KCV05O67_1691769128.1638\",\"due_date\":\"2023-08-11T22:52:12-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Alzate Gonzalez\",\"email\":\"analzate_5@hotmail.com\",\"phone_number\":\"3103588945\",\"address\":null,\"creation_date\":\"2023-08-11T10:52:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 15:54:05','2023-08-11 15:54:05'),(7770,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T11:02:01-05:00\",\"transaction\":{\"id\":\"trkhf73qgerqgbmfhku2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T11:01:11-05:00\",\"operation_date\":\"2023-08-11T11:01:11-05:00\",\"description\":\"Pago Mensual academia: emiliano campuzano correa (1234992631)\",\"error_message\":null,\"order_id\":\"A91AF177D3016CA20E5FC949836A894A_904GB8AL5F_1691769668.5248\",\"due_date\":\"2023-08-11T23:01:11-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"estefania\",\"last_name\":\"campuzano\",\"email\":\"stfacorrea91@gmail.com\",\"phone_number\":\"3126082267\",\"address\":null,\"creation_date\":\"2023-08-11T11:01:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkhf73qgerqgbmfhku2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 16:02:02','2023-08-11 16:02:02'),(7771,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T11:02:44-05:00\",\"transaction\":{\"id\":\"trkhf73qgerqgbmfhku2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"97258319\",\"creation_date\":\"2023-08-11T11:01:11-05:00\",\"operation_date\":\"2023-08-11T11:02:40-05:00\",\"description\":\"Pago Mensual academia: emiliano campuzano correa (1234992631)\",\"error_message\":null,\"order_id\":\"A91AF177D3016CA20E5FC949836A894A_904GB8AL5F_1691769668.5248\",\"due_date\":\"2023-08-11T23:01:11-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"estefania\",\"last_name\":\"campuzano\",\"email\":\"stfacorrea91@gmail.com\",\"phone_number\":\"3126082267\",\"address\":null,\"creation_date\":\"2023-08-11T11:01:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 16:02:45','2023-08-11 16:02:45'),(7772,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T13:21:27-05:00\",\"transaction\":{\"id\":\"trnowlctfqt7g29nmuma\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T13:20:37-05:00\",\"operation_date\":\"2023-08-11T13:20:37-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Campiño Mogollon (1035981502)\",\"error_message\":null,\"order_id\":\"61F2585B0EBCF1F532C4D1EC9A7D51AA_UQY8VI02WA_1691778034.2392\",\"due_date\":\"2023-08-12T01:20:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Mogollon Granados\",\"email\":\"aleja220593@gmail.com\",\"phone_number\":\"3015635152\",\"address\":null,\"creation_date\":\"2023-08-11T13:20:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnowlctfqt7g29nmuma/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 18:21:28','2023-08-11 18:21:28'),(7773,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  860\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-11T12:42:09-06:00\",\"transaction\":{\"id\":\"trnowlctfqt7g29nmuma\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-11T13:20:37-06:00\",\"operation_date\":\"2023-08-11T13:21:36-06:00\",\"description\":\"Pago Mensual academia: Miguel Angel Campiño Mogollon (1035981502)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"61F2585B0EBCF1F532C4D1EC9A7D51AA_UQY8VI02WA_1691778034.2392\",\"due_date\":\"2023-08-12T01:20:37-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Mogollon Granados\",\"email\":\"aleja220593@gmail.com\",\"phone_number\":\"3015635152\",\"address\":null,\"creation_date\":\"2023-08-11T13:20:37-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 18:42:10','2023-08-11 18:42:10'),(7774,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T13:52:16-05:00\",\"transaction\":{\"id\":\"trxycgp9owelfn900zup\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T13:51:20-05:00\",\"operation_date\":\"2023-08-11T13:51:20-05:00\",\"description\":\"Pago Mensual academia: isaac jaramillo montoya (1036454668)\",\"error_message\":null,\"order_id\":\"4FA91C19016CB1F807EA47B5A959D518_7DJM4FIYL1_1691779877.3755\",\"due_date\":\"2023-08-12T01:51:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"bibiana\",\"last_name\":\"montoya\",\"email\":\"bibimon1982@gmail.com\",\"phone_number\":\"3017793248\",\"address\":null,\"creation_date\":\"2023-08-11T13:51:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxycgp9owelfn900zup/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 18:52:17','2023-08-11 18:52:17'),(7775,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T13:54:03-05:00\",\"transaction\":{\"id\":\"trxycgp9owelfn900zup\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"97621360\",\"creation_date\":\"2023-08-11T13:51:20-05:00\",\"operation_date\":\"2023-08-11T13:53:37-05:00\",\"description\":\"Pago Mensual academia: isaac jaramillo montoya (1036454668)\",\"error_message\":null,\"order_id\":\"4FA91C19016CB1F807EA47B5A959D518_7DJM4FIYL1_1691779877.3755\",\"due_date\":\"2023-08-12T01:51:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"bibiana\",\"last_name\":\"montoya\",\"email\":\"bibimon1982@gmail.com\",\"phone_number\":\"3017793248\",\"address\":null,\"creation_date\":\"2023-08-11T13:51:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 18:54:03','2023-08-11 18:54:03'),(7776,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T14:07:14-05:00\",\"transaction\":{\"id\":\"trpy5ehd1nos8mjbvib7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T14:06:37-05:00\",\"operation_date\":\"2023-08-11T14:06:37-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Campiño Mogollon (1035981502)\",\"error_message\":null,\"order_id\":\"61F2585B0EBCF1F532C4D1EC9A7D51AA_UQY8VI02WA_1691780787.5338\",\"due_date\":\"2023-08-12T02:06:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Mogollon Granados\",\"email\":\"aleja220593@gmail.com\",\"phone_number\":\"3015635152\",\"address\":null,\"creation_date\":\"2023-08-11T14:06:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpy5ehd1nos8mjbvib7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 19:07:14','2023-08-11 19:07:14'),(7777,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T14:12:07-05:00\",\"transaction\":{\"id\":\"trwukjjagjh9kagmlasi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T14:11:04-05:00\",\"operation_date\":\"2023-08-11T14:11:04-05:00\",\"description\":\"Pago Mensual academia: Robben Mosquera Asprilla (1012923128)\",\"error_message\":null,\"order_id\":\"B2004314AA49D95302179246148E0326_QCDRPTAJMU_1691781061.628\",\"due_date\":\"2023-08-12T02:11:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"karina\",\"last_name\":\"Asprilla Bonilla\",\"email\":\"asprillabonillak@gmail.com\",\"phone_number\":\"3216407736\",\"address\":null,\"creation_date\":\"2023-08-11T14:11:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwukjjagjh9kagmlasi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 19:12:08','2023-08-11 19:12:08'),(7778,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T14:14:18-05:00\",\"transaction\":{\"id\":\"trwukjjagjh9kagmlasi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"97660363\",\"creation_date\":\"2023-08-11T14:11:04-05:00\",\"operation_date\":\"2023-08-11T14:13:57-05:00\",\"description\":\"Pago Mensual academia: Robben Mosquera Asprilla (1012923128)\",\"error_message\":null,\"order_id\":\"B2004314AA49D95302179246148E0326_QCDRPTAJMU_1691781061.628\",\"due_date\":\"2023-08-12T02:11:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"karina\",\"last_name\":\"Asprilla Bonilla\",\"email\":\"asprillabonillak@gmail.com\",\"phone_number\":\"3216407736\",\"address\":null,\"creation_date\":\"2023-08-11T14:11:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 19:14:19','2023-08-11 19:14:19'),(7779,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T14:29:30-05:00\",\"transaction\":{\"id\":\"tro2mdhzrxjlg3tdet7u\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-11T14:29:30-05:00\",\"operation_date\":\"2023-08-11T14:29:30-05:00\",\"description\":\"Pago Mensual academia: Matias Mejia Garces (1020310551)\",\"error_message\":null,\"order_id\":\"586F9B4035E5997F77635B13CC04984C_92BUJVPWTZ_1691782164.7053\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Mejía Garcés\",\"email\":\"karitovalencia@hotmail.com\",\"phone_number\":\"3176577857\",\"address\":null,\"creation_date\":\"2023-08-11T14:29:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro2mdhzrxjlg3tdet7u/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 19:29:31','2023-08-11 19:29:31'),(7780,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  860\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-11T13:30:11-06:00\",\"transaction\":{\"id\":\"trpy5ehd1nos8mjbvib7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-11T14:06:37-06:00\",\"operation_date\":\"2023-08-11T14:07:21-06:00\",\"description\":\"Pago Mensual academia: Miguel Angel Campiño Mogollon (1035981502)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"61F2585B0EBCF1F532C4D1EC9A7D51AA_UQY8VI02WA_1691780787.5338\",\"due_date\":\"2023-08-12T02:06:37-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Mogollon Granados\",\"email\":\"aleja220593@gmail.com\",\"phone_number\":\"3015635152\",\"address\":null,\"creation_date\":\"2023-08-11T14:06:37-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 19:30:11','2023-08-11 19:30:11'),(7781,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T14:30:21-05:00\",\"transaction\":{\"id\":\"tro2mdhzrxjlg3tdet7u\",\"authorization\":\"R05917\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-11T14:29:30-05:00\",\"operation_date\":\"2023-08-11T14:30:19-05:00\",\"description\":\"Pago Mensual academia: Matias Mejia Garces (1020310551)\",\"error_message\":null,\"order_id\":\"586F9B4035E5997F77635B13CC04984C_92BUJVPWTZ_1691782164.7053\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX9635\",\"holder_name\":\"KAROL GARCES VALENCIA \",\"expiration_year\":\"26\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Mejía Garcés\",\"email\":\"karitovalencia@hotmail.com\",\"phone_number\":\"3176577857\",\"address\":null,\"creation_date\":\"2023-08-11T14:29:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro2mdhzrxjlg3tdet7u/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 19:30:21','2023-08-11 19:30:21'),(7782,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T15:29:16-05:00\",\"transaction\":{\"id\":\"trvy35vgm5htlxgjoabp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T15:28:39-05:00\",\"operation_date\":\"2023-08-11T15:28:39-05:00\",\"description\":\"Pago Mensual academia: Juan Martin Gutierrez Correa (1017942179)\",\"error_message\":null,\"order_id\":\"12092A75CAA75E4644FD2869F0B6C45A_UJFIO3VCXT_1691785715.8991\",\"due_date\":\"2023-08-12T03:28:39-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cinthia Maria\",\"last_name\":\"Correa Muñoz\",\"email\":\"cinthi1123@hotmail.com\",\"phone_number\":\"3105353577\",\"address\":null,\"creation_date\":\"2023-08-11T15:28:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvy35vgm5htlxgjoabp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 20:29:17','2023-08-11 20:29:17'),(7783,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T15:30:05-05:00\",\"transaction\":{\"id\":\"trvy35vgm5htlxgjoabp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"97832124\",\"creation_date\":\"2023-08-11T15:28:39-05:00\",\"operation_date\":\"2023-08-11T15:29:58-05:00\",\"description\":\"Pago Mensual academia: Juan Martin Gutierrez Correa (1017942179)\",\"error_message\":null,\"order_id\":\"12092A75CAA75E4644FD2869F0B6C45A_UJFIO3VCXT_1691785715.8991\",\"due_date\":\"2023-08-12T03:28:39-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cinthia Maria\",\"last_name\":\"Correa Muñoz\",\"email\":\"cinthi1123@hotmail.com\",\"phone_number\":\"3105353577\",\"address\":null,\"creation_date\":\"2023-08-11T15:28:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 20:30:06','2023-08-11 20:30:06'),(7784,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T16:16:28-05:00\",\"transaction\":{\"id\":\"triqhhwngvykjvlxnkul\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T16:15:46-05:00\",\"operation_date\":\"2023-08-11T16:15:46-05:00\",\"description\":\"Pago Mensual academia: Samuel Alejandro Saavedra Montero (1013368875)\",\"error_message\":null,\"order_id\":\"758BE1F9F7A7EFAC938ED8BD97C0E1CB_BWXM1JFDAG_1691788540.7068\",\"due_date\":\"2023-08-12T04:15:46-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Saavedra\",\"email\":\"alejandro10ula@gmail.com\",\"phone_number\":\"3152916630\",\"address\":null,\"creation_date\":\"2023-08-11T16:15:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triqhhwngvykjvlxnkul/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 21:16:29','2023-08-11 21:16:29'),(7785,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T16:17:35-05:00\",\"transaction\":{\"id\":\"triqhhwngvykjvlxnkul\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"97942552\",\"creation_date\":\"2023-08-11T16:15:46-05:00\",\"operation_date\":\"2023-08-11T16:17:29-05:00\",\"description\":\"Pago Mensual academia: Samuel Alejandro Saavedra Montero (1013368875)\",\"error_message\":null,\"order_id\":\"758BE1F9F7A7EFAC938ED8BD97C0E1CB_BWXM1JFDAG_1691788540.7068\",\"due_date\":\"2023-08-12T04:15:46-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Saavedra\",\"email\":\"alejandro10ula@gmail.com\",\"phone_number\":\"3152916630\",\"address\":null,\"creation_date\":\"2023-08-11T16:15:46-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 21:17:35','2023-08-11 21:17:35'),(7786,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  886\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T16:51:44-05:00\",\"transaction\":{\"id\":\"tr5wxfyed7fntudzslaf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-11T16:51:43-05:00\",\"operation_date\":\"2023-08-11T16:51:43-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"7371364B3D72AC9A3ED8638E6F0BE2C9_NEI8TKS7HZ_1691790698.1309\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-08-11T16:51:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5wxfyed7fntudzslaf/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 21:51:44','2023-08-11 21:51:44'),(7787,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  576\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-11T16:52:44-05:00\",\"transaction\":{\"id\":\"trqejgba3vgj5sqvnrid\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-08-11T16:52:44-05:00\",\"operation_date\":\"2023-08-11T16:52:44-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"7371364B3D72AC9A3ED8638E6F0BE2C9_NEI8TKS7HZ_1691790698.1309\",\"error_code\":3001,\"amount\":95000.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 21:52:45','2023-08-11 21:52:45'),(7788,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T16:58:17-05:00\",\"transaction\":{\"id\":\"trhk6e1wlrswid9aae0j\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T16:57:17-05:00\",\"operation_date\":\"2023-08-11T16:57:17-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"7371364B3D72AC9A3ED8638E6F0BE2C9_NEI8TKS7HZ_1691791032.9416\",\"due_date\":\"2023-08-12T04:57:17-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-08-11T16:57:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhk6e1wlrswid9aae0j/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 21:58:18','2023-08-11 21:58:18'),(7789,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  842\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-11T16:59:14-05:00\",\"transaction\":{\"id\":\"trhk6e1wlrswid9aae0j\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-11T16:57:17-05:00\",\"operation_date\":\"2023-08-11T16:58:23-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"7371364B3D72AC9A3ED8638E6F0BE2C9_NEI8TKS7HZ_1691791032.9416\",\"due_date\":\"2023-08-12T04:57:17-05:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-08-11T16:57:17-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 21:59:14','2023-08-11 21:59:14'),(7790,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T17:23:33-05:00\",\"transaction\":{\"id\":\"trc5uwyoclhckurf6vjh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-11T17:23:33-05:00\",\"operation_date\":\"2023-08-11T17:23:33-05:00\",\"description\":\"Pago Mensual academia: nicolas cuadrado galeano (1027806917)\",\"error_message\":null,\"order_id\":\"09BA3F0DF1447F40E98674BA9D62C747_TKFY80ZL69_1691792605.297\",\"amount\":165900.00,\"customer\":{\"name\":\"nicolas\",\"last_name\":\"cuadrado galeano\",\"email\":\"mauro.cuadrado@hotmail.com\",\"phone_number\":\"3147284782\",\"address\":null,\"creation_date\":\"2023-08-11T17:23:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc5uwyoclhckurf6vjh/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 22:23:33','2023-08-11 22:23:33'),(7791,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1152\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T17:26:31-05:00\",\"transaction\":{\"id\":\"trc5uwyoclhckurf6vjh\",\"authorization\":\"964382\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-11T17:23:33-05:00\",\"operation_date\":\"2023-08-11T17:26:28-05:00\",\"description\":\"Pago Mensual academia: nicolas cuadrado galeano (1027806917)\",\"error_message\":null,\"order_id\":\"09BA3F0DF1447F40E98674BA9D62C747_TKFY80ZL69_1691792605.297\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"528209XXXXXX6204\",\"holder_name\":\"Lenny Susana cuadrado\",\"expiration_year\":\"28\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"FALABELLA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"nicolas\",\"last_name\":\"cuadrado galeano\",\"email\":\"mauro.cuadrado@hotmail.com\",\"phone_number\":\"3147284782\",\"address\":null,\"creation_date\":\"2023-08-11T17:23:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc5uwyoclhckurf6vjh/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 22:26:32','2023-08-11 22:26:32'),(7792,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T17:27:01-05:00\",\"transaction\":{\"id\":\"trpt4afrpij4qwpt4s9q\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-11T17:27:00-05:00\",\"operation_date\":\"2023-08-11T17:27:00-05:00\",\"description\":\"Pago Mensual academia: nicolas cuadrado galeano (1027806917)\",\"error_message\":null,\"order_id\":\"5B4A2146246BC3A3A941F32225BBB792_92VWDOMKTI_1691792809.5077\",\"amount\":165900.00,\"customer\":{\"name\":\"nicolas\",\"last_name\":\"cuadrado galeano\",\"email\":\"mauro.cuadrado@hotmail.com\",\"phone_number\":\"3147284782\",\"address\":null,\"creation_date\":\"2023-08-11T17:27:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpt4afrpij4qwpt4s9q/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 22:27:01','2023-08-11 22:27:01'),(7793,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T17:28:38-05:00\",\"transaction\":{\"id\":\"trsvi5fk6uadklmpnrun\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T17:27:50-05:00\",\"operation_date\":\"2023-08-11T17:27:50-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"2E1B24A664F5E9C18F407B2F9C73E821_8N2CQYJROS_1691792867.9489\",\"due_date\":\"2023-08-12T05:27:50-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-08-11T17:27:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsvi5fk6uadklmpnrun/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 22:28:38','2023-08-11 22:28:38'),(7794,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1154\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T17:28:55-05:00\",\"transaction\":{\"id\":\"trpt4afrpij4qwpt4s9q\",\"authorization\":\"964895\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-11T17:27:00-05:00\",\"operation_date\":\"2023-08-11T17:28:50-05:00\",\"description\":\"Pago Mensual academia: nicolas cuadrado galeano (1027806917)\",\"error_message\":null,\"order_id\":\"5B4A2146246BC3A3A941F32225BBB792_92VWDOMKTI_1691792809.5077\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"528209XXXXXX6204\",\"holder_name\":\"Lenny Susana cuadrado \",\"expiration_year\":\"28\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"FALABELLA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"nicolas\",\"last_name\":\"cuadrado galeano\",\"email\":\"mauro.cuadrado@hotmail.com\",\"phone_number\":\"3147284782\",\"address\":null,\"creation_date\":\"2023-08-11T17:27:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpt4afrpij4qwpt4s9q/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-11 22:28:55','2023-08-11 22:28:55'),(7795,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T17:31:18-05:00\",\"transaction\":{\"id\":\"trsvi5fk6uadklmpnrun\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"98088289\",\"creation_date\":\"2023-08-11T17:27:50-05:00\",\"operation_date\":\"2023-08-11T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"2E1B24A664F5E9C18F407B2F9C73E821_8N2CQYJROS_1691792867.9489\",\"due_date\":\"2023-08-12T05:27:50-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-08-11T17:27:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-11 22:31:19','2023-08-11 22:31:19'),(7796,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T19:37:43-05:00\",\"transaction\":{\"id\":\"trlmdpsxlz83c3x2ab7a\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T19:36:57-05:00\",\"operation_date\":\"2023-08-11T19:36:57-05:00\",\"description\":\"Pago Mensual academia: MIGUEL ANGEL BERMUDEZ ARANGO (1155716302)\",\"error_message\":null,\"order_id\":\"C5BBD980E5AB2C17413EC02BD757A9E5_UND18ESAMK_1691800610.2162\",\"due_date\":\"2023-08-12T07:36:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Bermúdez\",\"email\":\"bermudezarango27@gmail.com\",\"phone_number\":\"3113882209\",\"address\":null,\"creation_date\":\"2023-08-11T19:36:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlmdpsxlz83c3x2ab7a/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 00:37:44','2023-08-12 00:37:44'),(7797,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T19:39:14-05:00\",\"transaction\":{\"id\":\"trlmdpsxlz83c3x2ab7a\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"98313154\",\"creation_date\":\"2023-08-11T19:36:57-05:00\",\"operation_date\":\"2023-08-11T00:00:00-05:00\",\"description\":\"Pago Mensual academia: MIGUEL ANGEL BERMUDEZ ARANGO (1155716302)\",\"error_message\":null,\"order_id\":\"C5BBD980E5AB2C17413EC02BD757A9E5_UND18ESAMK_1691800610.2162\",\"due_date\":\"2023-08-12T07:36:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Bermúdez\",\"email\":\"bermudezarango27@gmail.com\",\"phone_number\":\"3113882209\",\"address\":null,\"creation_date\":\"2023-08-11T19:36:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 00:39:15','2023-08-12 00:39:15'),(7798,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T19:58:23-05:00\",\"transaction\":{\"id\":\"tryw7ztevs380t5xpkdk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T19:56:08-05:00\",\"operation_date\":\"2023-08-11T19:56:08-05:00\",\"description\":\"Pago Mensual academia: Luis Fabiano Lobo Quintero (6128174)\",\"error_message\":null,\"order_id\":\"86A1793F65AEEF4AEEF4B479FC9B2BCA_L6N45EPTUH_1691801764.3783\",\"due_date\":\"2023-08-12T07:56:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Genesis\",\"last_name\":\"Quintero\",\"email\":\"qnohemi896@gmail.com\",\"phone_number\":\"3234803657\",\"address\":null,\"creation_date\":\"2023-08-11T19:56:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryw7ztevs380t5xpkdk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 00:58:24','2023-08-12 00:58:24'),(7799,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T20:01:06-05:00\",\"transaction\":{\"id\":\"tryw7ztevs380t5xpkdk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"98345219\",\"creation_date\":\"2023-08-11T19:56:08-05:00\",\"operation_date\":\"2023-08-11T20:00:28-05:00\",\"description\":\"Pago Mensual academia: Luis Fabiano Lobo Quintero (6128174)\",\"error_message\":null,\"order_id\":\"86A1793F65AEEF4AEEF4B479FC9B2BCA_L6N45EPTUH_1691801764.3783\",\"due_date\":\"2023-08-12T07:56:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Genesis\",\"last_name\":\"Quintero\",\"email\":\"qnohemi896@gmail.com\",\"phone_number\":\"3234803657\",\"address\":null,\"creation_date\":\"2023-08-11T19:56:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 01:01:07','2023-08-12 01:01:07'),(7800,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  902\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T20:42:02-05:00\",\"transaction\":{\"id\":\"trqcphi9oipqqxflar4j\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-11T20:42:02-05:00\",\"operation_date\":\"2023-08-11T20:42:02-05:00\",\"description\":\"Pago Mensual academia: emiliano lujan contreras (1018268045)\",\"error_message\":null,\"order_id\":\"66121D1F782D29B62A286909165517BC_8YZGADER91_1691804518.3937\",\"amount\":165900.00,\"customer\":{\"name\":\"emiliano\",\"last_name\":\"lujan contreras\",\"email\":\"cristian19892005@hotmail.com\",\"phone_number\":\"3006846401\",\"address\":null,\"creation_date\":\"2023-08-11T20:42:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqcphi9oipqqxflar4j/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-12 01:42:03','2023-08-12 01:42:03'),(7801,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  912\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T20:42:23-05:00\",\"transaction\":{\"id\":\"trfseigjv4qxmwhkhwk9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T20:41:35-05:00\",\"operation_date\":\"2023-08-11T20:41:35-05:00\",\"description\":\"Pago Mensual academia: Martin Gomez (1023559239)\",\"error_message\":null,\"order_id\":\"DE7F47E09C8E05E6021ABABDF6BC58E7_G16J2KLXHQ_1691804489.502\",\"due_date\":\"2023-08-12T08:41:35-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"estefania\",\"last_name\":\"claros\",\"email\":\"estefaniaclaross@gmail.com\",\"phone_number\":\"3015699077\",\"address\":null,\"creation_date\":\"2023-08-11T20:41:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfseigjv4qxmwhkhwk9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 01:42:24','2023-08-12 01:42:24'),(7802,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  834\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-11T20:43:29-05:00\",\"transaction\":{\"id\":\"trfseigjv4qxmwhkhwk9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-11T20:41:35-05:00\",\"operation_date\":\"2023-08-11T20:42:29-05:00\",\"description\":\"Pago Mensual academia: Martin Gomez (1023559239)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"DE7F47E09C8E05E6021ABABDF6BC58E7_G16J2KLXHQ_1691804489.502\",\"due_date\":\"2023-08-12T08:41:35-05:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"estefania\",\"last_name\":\"claros\",\"email\":\"estefaniaclaross@gmail.com\",\"phone_number\":\"3015699077\",\"address\":null,\"creation_date\":\"2023-08-11T20:41:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 01:43:29','2023-08-12 01:43:29'),(7803,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1150\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T20:43:39-05:00\",\"transaction\":{\"id\":\"trqcphi9oipqqxflar4j\",\"authorization\":\"204337\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-11T20:42:02-05:00\",\"operation_date\":\"2023-08-11T20:43:38-05:00\",\"description\":\"Pago Mensual academia: emiliano lujan contreras (1018268045)\",\"error_message\":null,\"order_id\":\"66121D1F782D29B62A286909165517BC_8YZGADER91_1691804518.3937\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"524708XXXXXX4540\",\"holder_name\":\"5247083885234540\",\"expiration_year\":\"28\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"DAVIPLATA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"emiliano\",\"last_name\":\"lujan contreras\",\"email\":\"cristian19892005@hotmail.com\",\"phone_number\":\"3006846401\",\"address\":null,\"creation_date\":\"2023-08-11T20:42:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqcphi9oipqqxflar4j/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-12 01:43:40','2023-08-12 01:43:40'),(7804,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  913\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T20:48:52-05:00\",\"transaction\":{\"id\":\"trwmjsbzwxy9zrq1vfjg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T20:48:12-05:00\",\"operation_date\":\"2023-08-11T20:48:12-05:00\",\"description\":\"Pago Mensual academia: Martin Gomez (1023559239)\",\"error_message\":null,\"order_id\":\"DE7F47E09C8E05E6021ABABDF6BC58E7_G16J2KLXHQ_1691804885.5887\",\"due_date\":\"2023-08-12T08:48:12-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"estefania\",\"last_name\":\"claros\",\"email\":\"estefaniaclaross@gmail.com\",\"phone_number\":\"3015699077\",\"address\":null,\"creation_date\":\"2023-08-11T20:48:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwmjsbzwxy9zrq1vfjg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 01:48:53','2023-08-12 01:48:53'),(7805,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  795\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T20:50:05-05:00\",\"transaction\":{\"id\":\"trwmjsbzwxy9zrq1vfjg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"98419808\",\"creation_date\":\"2023-08-11T20:48:12-05:00\",\"operation_date\":\"2023-08-11T20:49:46-05:00\",\"description\":\"Pago Mensual academia: Martin Gomez (1023559239)\",\"error_message\":null,\"order_id\":\"DE7F47E09C8E05E6021ABABDF6BC58E7_G16J2KLXHQ_1691804885.5887\",\"due_date\":\"2023-08-12T08:48:12-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"estefania\",\"last_name\":\"claros\",\"email\":\"estefaniaclaross@gmail.com\",\"phone_number\":\"3015699077\",\"address\":null,\"creation_date\":\"2023-08-11T20:48:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 01:50:05','2023-08-12 01:50:05'),(7806,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  911\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-11T21:13:03-05:00\",\"transaction\":{\"id\":\"trgezvhazcx2fschtsrw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-11T21:12:08-05:00\",\"operation_date\":\"2023-08-11T21:12:08-05:00\",\"description\":\"Pago Mensual academia: Thomás Duque Madrid (1020240744)\",\"error_message\":null,\"order_id\":\"734E6BFCD358E25AC1DB0A4241B95651_91BN75RA3M_1691806320.0758\",\"due_date\":\"2023-08-12T09:12:08-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Duque\",\"email\":\"johanduque7@gmail.com\",\"phone_number\":\"3014560230\",\"address\":null,\"creation_date\":\"2023-08-11T21:12:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgezvhazcx2fschtsrw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 02:13:04','2023-08-12 02:13:04'),(7807,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  793\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-11T21:13:45-05:00\",\"transaction\":{\"id\":\"trgezvhazcx2fschtsrw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"98451569\",\"creation_date\":\"2023-08-11T21:12:08-05:00\",\"operation_date\":\"2023-08-11T21:13:41-05:00\",\"description\":\"Pago Mensual academia: Thomás Duque Madrid (1020240744)\",\"error_message\":null,\"order_id\":\"734E6BFCD358E25AC1DB0A4241B95651_91BN75RA3M_1691806320.0758\",\"due_date\":\"2023-08-12T09:12:08-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Duque\",\"email\":\"johanduque7@gmail.com\",\"phone_number\":\"3014560230\",\"address\":null,\"creation_date\":\"2023-08-11T21:12:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 02:13:46','2023-08-12 02:13:46'),(7808,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  884\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T07:46:21-05:00\",\"transaction\":{\"id\":\"trfntqvymfgkx2mkxewk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-12T07:46:21-05:00\",\"operation_date\":\"2023-08-12T07:46:21-05:00\",\"description\":\"Pago Mensual academia: Martin Montoya Vera (1035011244)\",\"error_message\":null,\"order_id\":\"F356355C1634839CF42769E7F30905A3_5R2STJCALK_1691844379.064\",\"amount\":165900.00,\"customer\":{\"name\":\"Antonio\",\"last_name\":\"Montoya\",\"email\":\"anmontoya2011@hotmail.com\",\"phone_number\":\"3004086507\",\"address\":null,\"creation_date\":\"2023-08-12T07:46:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfntqvymfgkx2mkxewk/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-12 12:46:21','2023-08-12 12:46:21'),(7809,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1131\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T07:47:47-05:00\",\"transaction\":{\"id\":\"trfntqvymfgkx2mkxewk\",\"authorization\":\"402319\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-12T07:46:21-05:00\",\"operation_date\":\"2023-08-12T07:47:46-05:00\",\"description\":\"Pago Mensual academia: Martin Montoya Vera (1035011244)\",\"error_message\":null,\"order_id\":\"F356355C1634839CF42769E7F30905A3_5R2STJCALK_1691844379.064\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459356XXXXXX8610\",\"holder_name\":\"Antonio Montoya\",\"expiration_year\":\"26\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Antonio\",\"last_name\":\"Montoya\",\"email\":\"anmontoya2011@hotmail.com\",\"phone_number\":\"3004086507\",\"address\":null,\"creation_date\":\"2023-08-12T07:46:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfntqvymfgkx2mkxewk/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-12 12:47:48','2023-08-12 12:47:48'),(7810,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T09:46:35-05:00\",\"transaction\":{\"id\":\"trbxiogd5otjdwoszod9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-12T09:46:35-05:00\",\"operation_date\":\"2023-08-12T09:46:35-05:00\",\"description\":\"Pago Mensual academia: Samuel Lopez Restrepo (1034999941)\",\"error_message\":null,\"order_id\":\"5ABDF8B8520B71F3A528C7547EE92428_AVECDRN5OZ_1691851589.6212\",\"amount\":165900.00,\"customer\":{\"name\":\"Samuel\",\"last_name\":\"Lopez Restrepo\",\"email\":\"marcera@gmail.com\",\"phone_number\":\"3174313093\",\"address\":null,\"creation_date\":\"2023-08-12T09:46:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbxiogd5otjdwoszod9/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-12 14:46:36','2023-08-12 14:46:36'),(7811,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1134\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T09:47:18-05:00\",\"transaction\":{\"id\":\"trbxiogd5otjdwoszod9\",\"authorization\":\"236151\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-12T09:46:35-05:00\",\"operation_date\":\"2023-08-12T09:47:17-05:00\",\"description\":\"Pago Mensual academia: Samuel Lopez Restrepo (1034999941)\",\"error_message\":null,\"order_id\":\"5ABDF8B8520B71F3A528C7547EE92428_AVECDRN5OZ_1691851589.6212\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"552303XXXXXX1236\",\"holder_name\":\"marcela restrepo\",\"expiration_year\":\"27\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO ITAU\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Samuel\",\"last_name\":\"Lopez Restrepo\",\"email\":\"marcera@gmail.com\",\"phone_number\":\"3174313093\",\"address\":null,\"creation_date\":\"2023-08-12T09:46:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbxiogd5otjdwoszod9/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-12 14:47:18','2023-08-12 14:47:18'),(7812,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  874\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T09:47:37-05:00\",\"transaction\":{\"id\":\"trb8nt8mw5do7tpl60es\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T09:46:10-05:00\",\"operation_date\":\"2023-08-12T09:46:10-05:00\",\"description\":\"Pago Mensual academia: Tomas Aguirre Corrales (1186463976)\",\"error_message\":null,\"order_id\":\"_1691851559.6164\",\"due_date\":\"2023-08-12T21:46:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Corrales\",\"email\":\"linacvelez12@gmail.com\",\"phone_number\":\"3102134431\",\"address\":null,\"creation_date\":\"2023-08-12T09:46:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb8nt8mw5do7tpl60es/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 14:47:38','2023-08-12 14:47:38'),(7813,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  756\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T09:49:30-05:00\",\"transaction\":{\"id\":\"trb8nt8mw5do7tpl60es\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"98869548\",\"creation_date\":\"2023-08-12T09:46:10-05:00\",\"operation_date\":\"2023-08-12T09:49:04-05:00\",\"description\":\"Pago Mensual academia: Tomas Aguirre Corrales (1186463976)\",\"error_message\":null,\"order_id\":\"_1691851559.6164\",\"due_date\":\"2023-08-12T21:46:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Corrales\",\"email\":\"linacvelez12@gmail.com\",\"phone_number\":\"3102134431\",\"address\":null,\"creation_date\":\"2023-08-12T09:46:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 14:49:30','2023-08-12 14:49:30'),(7814,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T10:08:41-05:00\",\"transaction\":{\"id\":\"trizrcnbwzmccwmoshk5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T10:07:31-05:00\",\"operation_date\":\"2023-08-12T10:07:31-05:00\",\"description\":\"Pago Mensual academia: Daniel Alejandro Gonzalez Castañeda (1016602115)\",\"error_message\":null,\"order_id\":\"DEF7924E3199BE5E18060BB3E1D547A7_9PTW82R0L7_1691852836.3039\",\"due_date\":\"2023-08-12T22:07:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Gonzalez Morales\",\"email\":\"dfernandogm@gmail.com\",\"phone_number\":\"3115380577\",\"address\":null,\"creation_date\":\"2023-08-12T10:07:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trizrcnbwzmccwmoshk5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 15:08:42','2023-08-12 15:08:42'),(7815,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T10:10:52-05:00\",\"transaction\":{\"id\":\"trizrcnbwzmccwmoshk5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"98902158\",\"creation_date\":\"2023-08-12T10:07:31-05:00\",\"operation_date\":\"2023-08-12T10:10:23-05:00\",\"description\":\"Pago Mensual academia: Daniel Alejandro Gonzalez Castañeda (1016602115)\",\"error_message\":null,\"order_id\":\"DEF7924E3199BE5E18060BB3E1D547A7_9PTW82R0L7_1691852836.3039\",\"due_date\":\"2023-08-12T22:07:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Gonzalez Morales\",\"email\":\"dfernandogm@gmail.com\",\"phone_number\":\"3115380577\",\"address\":null,\"creation_date\":\"2023-08-12T10:07:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 15:10:53','2023-08-12 15:10:53'),(7816,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T10:11:01-05:00\",\"transaction\":{\"id\":\"trl4duas2jwsoxqvnmpw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T10:09:59-05:00\",\"operation_date\":\"2023-08-12T10:09:59-05:00\",\"description\":\"Pago Mensual academia: santiago velez palacio (1020235193)\",\"error_message\":null,\"order_id\":\"2B64C2F19D868305AA8BBC2D72902CC5_S2LF3HRQ1M_1691852993.4219\",\"due_date\":\"2023-08-12T22:09:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yenny\",\"last_name\":\"palacio\",\"email\":\"yeapal_7@hotmail.com\",\"phone_number\":\"3104035722\",\"address\":null,\"creation_date\":\"2023-08-12T10:09:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl4duas2jwsoxqvnmpw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 15:11:02','2023-08-12 15:11:02'),(7817,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  797\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T10:12:33-05:00\",\"transaction\":{\"id\":\"trl4duas2jwsoxqvnmpw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"98905801\",\"creation_date\":\"2023-08-12T10:09:59-05:00\",\"operation_date\":\"2023-08-12T10:12:22-05:00\",\"description\":\"Pago Mensual academia: santiago velez palacio (1020235193)\",\"error_message\":null,\"order_id\":\"2B64C2F19D868305AA8BBC2D72902CC5_S2LF3HRQ1M_1691852993.4219\",\"due_date\":\"2023-08-12T22:09:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yenny\",\"last_name\":\"palacio\",\"email\":\"yeapal_7@hotmail.com\",\"phone_number\":\"3104035722\",\"address\":null,\"creation_date\":\"2023-08-12T10:09:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 15:12:34','2023-08-12 15:12:34'),(7818,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T10:13:02-05:00\",\"transaction\":{\"id\":\"tryls7nvnf8u6q86wzcl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T10:12:12-05:00\",\"operation_date\":\"2023-08-12T10:12:12-05:00\",\"description\":\"Pago Mensual academia: Daniel Alejandro Gonzalez Castañeda (1016602115)\",\"error_message\":null,\"order_id\":\"E1FC9C082DF6CFFF8CBCFFF2B5A722EF_EK4BAZCWIG_1691853122.8025\",\"due_date\":\"2023-08-12T22:12:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Gonzalez Morales\",\"email\":\"dfernandogm@gmail.com\",\"phone_number\":\"3115380577\",\"address\":null,\"creation_date\":\"2023-08-12T10:12:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryls7nvnf8u6q86wzcl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 15:13:02','2023-08-12 15:13:02'),(7819,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T10:14:49-05:00\",\"transaction\":{\"id\":\"tryls7nvnf8u6q86wzcl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"98909042\",\"creation_date\":\"2023-08-12T10:12:12-05:00\",\"operation_date\":\"2023-08-12T10:14:39-05:00\",\"description\":\"Pago Mensual academia: Daniel Alejandro Gonzalez Castañeda (1016602115)\",\"error_message\":null,\"order_id\":\"E1FC9C082DF6CFFF8CBCFFF2B5A722EF_EK4BAZCWIG_1691853122.8025\",\"due_date\":\"2023-08-12T22:12:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Gonzalez Morales\",\"email\":\"dfernandogm@gmail.com\",\"phone_number\":\"3115380577\",\"address\":null,\"creation_date\":\"2023-08-12T10:12:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 15:14:50','2023-08-12 15:14:50'),(7820,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  853\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T11:49:57-05:00\",\"transaction\":{\"id\":\"trycbpabwgzr3rvoruco\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-12T11:49:57-05:00\",\"operation_date\":\"2023-08-12T11:49:57-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"69ADC1E107F7F7D035D7BAF04342E1CA_E-64D7B82A-32_1691858991.1563\",\"amount\":146900.00,\"customer\":{\"name\":\"Manuela\",\"last_name\":\"Arboleda\",\"email\":\"mvar97@outlook.com\",\"phone_number\":\"3008102162\",\"address\":null,\"creation_date\":\"2023-08-12T11:49:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trycbpabwgzr3rvoruco/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-12 16:49:58','2023-08-12 16:49:58'),(7821,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1106\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T11:50:49-05:00\",\"transaction\":{\"id\":\"trycbpabwgzr3rvoruco\",\"authorization\":\"115048\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-12T11:49:57-05:00\",\"operation_date\":\"2023-08-12T11:50:47-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"69ADC1E107F7F7D035D7BAF04342E1CA_E-64D7B82A-32_1691858991.1563\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459321XXXXXX8536\",\"holder_name\":\"Manuela v Arboleda R\",\"expiration_year\":\"25\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"amount\":146900.00,\"customer\":{\"name\":\"Manuela\",\"last_name\":\"Arboleda\",\"email\":\"mvar97@outlook.com\",\"phone_number\":\"3008102162\",\"address\":null,\"creation_date\":\"2023-08-12T11:49:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trycbpabwgzr3rvoruco/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-12 16:50:49','2023-08-12 16:50:49'),(7822,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T11:53:32-05:00\",\"transaction\":{\"id\":\"traq4r8da0myib9i0s2d\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T11:52:26-05:00\",\"operation_date\":\"2023-08-12T11:52:26-05:00\",\"description\":\"Pago Mensual academia: Thomas Colorado Patiño (1038875386)\",\"error_message\":null,\"order_id\":\"13D63838EF1FB6F34CA2DC6821C60E49_RZWJ9NCXS4_1691859143.6241\",\"due_date\":\"2023-08-12T23:52:26-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jhonny Alexander\",\"last_name\":\"Colorado Londoño\",\"email\":\"jalexander1227@hotmail.com\",\"phone_number\":\"3102318133\",\"address\":null,\"creation_date\":\"2023-08-12T11:52:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traq4r8da0myib9i0s2d/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 16:53:33','2023-08-12 16:53:33'),(7823,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T11:55:41-05:00\",\"transaction\":{\"id\":\"traq4r8da0myib9i0s2d\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"99075105\",\"creation_date\":\"2023-08-12T11:52:26-05:00\",\"operation_date\":\"2023-08-12T11:55:32-05:00\",\"description\":\"Pago Mensual academia: Thomas Colorado Patiño (1038875386)\",\"error_message\":null,\"order_id\":\"13D63838EF1FB6F34CA2DC6821C60E49_RZWJ9NCXS4_1691859143.6241\",\"due_date\":\"2023-08-12T23:52:26-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jhonny Alexander\",\"last_name\":\"Colorado Londoño\",\"email\":\"jalexander1227@hotmail.com\",\"phone_number\":\"3102318133\",\"address\":null,\"creation_date\":\"2023-08-12T11:52:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 16:55:42','2023-08-12 16:55:42'),(7824,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T12:28:15-05:00\",\"transaction\":{\"id\":\"tru6fddpwjuq3pijkd3y\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-12T12:28:15-05:00\",\"operation_date\":\"2023-08-12T12:28:15-05:00\",\"description\":\"Pago Mensual academia: thiago Ramirez barbosa (1010848956)\",\"error_message\":null,\"order_id\":\"56503192B14190D3826780D47C0D3BF3_29JZ0WXTMP_1691861288.4072\",\"amount\":95000.00,\"customer\":{\"name\":\"julian esteban\",\"last_name\":\"Ramírez moreno\",\"email\":\"ramirezjulian9258@gmail.com\",\"phone_number\":\"3028491192\",\"address\":null,\"creation_date\":\"2023-08-12T12:28:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru6fddpwjuq3pijkd3y/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-12 17:28:16','2023-08-12 17:28:16'),(7825,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1157\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T12:29:52-05:00\",\"transaction\":{\"id\":\"tru6fddpwjuq3pijkd3y\",\"authorization\":\"122951\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-12T12:28:15-05:00\",\"operation_date\":\"2023-08-12T12:29:51-05:00\",\"description\":\"Pago Mensual academia: thiago Ramirez barbosa (1010848956)\",\"error_message\":null,\"order_id\":\"56503192B14190D3826780D47C0D3BF3_29JZ0WXTMP_1691861288.4072\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX2023\",\"holder_name\":\"Yulieth Barbosa \",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":95000.00,\"customer\":{\"name\":\"julian esteban\",\"last_name\":\"Ramírez moreno\",\"email\":\"ramirezjulian9258@gmail.com\",\"phone_number\":\"3028491192\",\"address\":null,\"creation_date\":\"2023-08-12T12:28:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru6fddpwjuq3pijkd3y/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-12 17:29:53','2023-08-12 17:29:53'),(7826,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T13:54:24-05:00\",\"transaction\":{\"id\":\"trx2yy3sl1baixap8bgp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T13:53:03-05:00\",\"operation_date\":\"2023-08-12T13:53:03-05:00\",\"description\":\"Pago Mensual academia: Ismael Alejandro Medina Sanchez (1195213124)\",\"error_message\":null,\"order_id\":\"5B970A1D9BE0FD100063FD6CD688B73E_D7EHTAIKF8_1691866376.2156\",\"due_date\":\"2023-08-13T01:53:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ismael Alejandro\",\"last_name\":\"Medina Sanchez\",\"email\":\"maricelamj@hotmail.com\",\"phone_number\":\"3046721422\",\"address\":null,\"creation_date\":\"2023-08-12T13:53:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trx2yy3sl1baixap8bgp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 18:54:25','2023-08-12 18:54:25'),(7827,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T13:57:02-05:00\",\"transaction\":{\"id\":\"trx2yy3sl1baixap8bgp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"99252369\",\"creation_date\":\"2023-08-12T13:53:03-05:00\",\"operation_date\":\"2023-08-12T13:56:14-05:00\",\"description\":\"Pago Mensual academia: Ismael Alejandro Medina Sanchez (1195213124)\",\"error_message\":null,\"order_id\":\"5B970A1D9BE0FD100063FD6CD688B73E_D7EHTAIKF8_1691866376.2156\",\"due_date\":\"2023-08-13T01:53:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ismael Alejandro\",\"last_name\":\"Medina Sanchez\",\"email\":\"maricelamj@hotmail.com\",\"phone_number\":\"3046721422\",\"address\":null,\"creation_date\":\"2023-08-12T13:53:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 18:57:02','2023-08-12 18:57:02'),(7828,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T14:20:27-05:00\",\"transaction\":{\"id\":\"troyl3of7vkczhw2nlad\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T14:19:42-05:00\",\"operation_date\":\"2023-08-12T14:19:42-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":null,\"order_id\":\"7E8D7E5CCBDDFD9576BE61E3AB86AA73_XPQGWTRC60_1691867977.9707\",\"due_date\":\"2023-08-13T02:19:42-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-08-12T14:19:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troyl3of7vkczhw2nlad/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 19:20:27','2023-08-12 19:20:27'),(7829,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-12T13:21:21-06:00\",\"transaction\":{\"id\":\"troyl3of7vkczhw2nlad\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-12T14:19:42-06:00\",\"operation_date\":\"2023-08-12T14:20:54-06:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"7E8D7E5CCBDDFD9576BE61E3AB86AA73_XPQGWTRC60_1691867977.9707\",\"due_date\":\"2023-08-13T02:19:42-06:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-08-12T14:19:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 19:21:22','2023-08-12 19:21:22'),(7830,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T14:22:19-05:00\",\"transaction\":{\"id\":\"trwetuebopzxfr59jexf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T14:21:40-05:00\",\"operation_date\":\"2023-08-12T14:21:40-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":null,\"order_id\":\"7E8D7E5CCBDDFD9576BE61E3AB86AA73_XPQGWTRC60_1691868097.3985\",\"due_date\":\"2023-08-13T02:21:40-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-08-12T14:21:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwetuebopzxfr59jexf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 19:22:19','2023-08-12 19:22:19'),(7831,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-12T14:22:52-05:00\",\"transaction\":{\"id\":\"trwetuebopzxfr59jexf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-12T14:21:40-05:00\",\"operation_date\":\"2023-08-12T14:22:46-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"7E8D7E5CCBDDFD9576BE61E3AB86AA73_XPQGWTRC60_1691868097.3985\",\"due_date\":\"2023-08-13T02:21:40-05:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-08-12T14:21:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 19:22:53','2023-08-12 19:22:53'),(7832,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T14:28:07-05:00\",\"transaction\":{\"id\":\"trj4tvpbp90n1ezmjxlv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T14:27:05-05:00\",\"operation_date\":\"2023-08-12T14:27:05-05:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Zabala Martinez (148448429)\",\"error_message\":null,\"order_id\":\"_1691868422.0312\",\"due_date\":\"2023-08-13T02:27:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeison Fernando\",\"last_name\":\"Jaimes Martinez\",\"email\":\"fer.jm.18@gmail.com\",\"phone_number\":\"3204321716\",\"address\":null,\"creation_date\":\"2023-08-12T14:27:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trj4tvpbp90n1ezmjxlv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 19:28:08','2023-08-12 19:28:08'),(7833,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  779\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T13:33:16-06:00\",\"transaction\":{\"id\":\"trj4tvpbp90n1ezmjxlv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"99295555\",\"creation_date\":\"2023-08-12T14:27:05-06:00\",\"operation_date\":\"2023-08-12T14:31:44-06:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Zabala Martinez (148448429)\",\"error_message\":null,\"order_id\":\"_1691868422.0312\",\"due_date\":\"2023-08-13T02:27:05-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeison Fernando\",\"last_name\":\"Jaimes Martinez\",\"email\":\"fer.jm.18@gmail.com\",\"phone_number\":\"3204321716\",\"address\":null,\"creation_date\":\"2023-08-12T14:27:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 19:33:17','2023-08-12 19:33:17'),(7834,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T15:33:06-05:00\",\"transaction\":{\"id\":\"trksdvcgnjrrkhvfesg2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T15:32:37-05:00\",\"operation_date\":\"2023-08-12T15:32:37-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":null,\"order_id\":\"7E8D7E5CCBDDFD9576BE61E3AB86AA73_XPQGWTRC60_1691872353.777\",\"due_date\":\"2023-08-13T03:32:37-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-08-12T15:32:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trksdvcgnjrrkhvfesg2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 20:33:07','2023-08-12 20:33:07'),(7835,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  853\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-12T15:33:41-05:00\",\"transaction\":{\"id\":\"trksdvcgnjrrkhvfesg2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-12T15:32:37-05:00\",\"operation_date\":\"2023-08-12T15:33:32-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"7E8D7E5CCBDDFD9576BE61E3AB86AA73_XPQGWTRC60_1691872353.777\",\"due_date\":\"2023-08-13T03:32:37-05:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-08-12T15:32:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 20:33:42','2023-08-12 20:33:42'),(7836,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T15:35:52-05:00\",\"transaction\":{\"id\":\"truhoaizzaeqkpl1npfb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T15:35:20-05:00\",\"operation_date\":\"2023-08-12T15:35:20-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":null,\"order_id\":\"7E8D7E5CCBDDFD9576BE61E3AB86AA73_XPQGWTRC60_1691872516.008\",\"due_date\":\"2023-08-13T03:35:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-08-12T15:35:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truhoaizzaeqkpl1npfb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 20:35:53','2023-08-12 20:35:53'),(7837,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T15:37:22-05:00\",\"transaction\":{\"id\":\"truhoaizzaeqkpl1npfb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"99377590\",\"creation_date\":\"2023-08-12T15:35:20-05:00\",\"operation_date\":\"2023-08-12T15:37:10-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":null,\"order_id\":\"7E8D7E5CCBDDFD9576BE61E3AB86AA73_XPQGWTRC60_1691872516.008\",\"due_date\":\"2023-08-13T03:35:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-08-12T15:35:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 20:37:23','2023-08-12 20:37:23'),(7838,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T16:37:31-05:00\",\"transaction\":{\"id\":\"trhwj8vtwz9pbouq47r8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T16:36:47-05:00\",\"operation_date\":\"2023-08-12T16:36:47-05:00\",\"description\":\"Pago Mensual academia: carlos mauricio piñeres (1078462460)\",\"error_message\":null,\"order_id\":\"8643C8E2107BA86C47371E037059C4B7_5PHWZEQ7FX_1691876203.1327\",\"due_date\":\"2023-08-13T04:36:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"carlos\",\"last_name\":\"piñeres\",\"email\":\"aumalore@gmail.com\",\"phone_number\":\"3113946375\",\"address\":null,\"creation_date\":\"2023-08-12T16:36:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhwj8vtwz9pbouq47r8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 21:37:32','2023-08-12 21:37:32'),(7839,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T16:38:33-05:00\",\"transaction\":{\"id\":\"trhwj8vtwz9pbouq47r8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"99449243\",\"creation_date\":\"2023-08-12T16:36:47-05:00\",\"operation_date\":\"2023-08-12T16:38:20-05:00\",\"description\":\"Pago Mensual academia: carlos mauricio piñeres (1078462460)\",\"error_message\":null,\"order_id\":\"8643C8E2107BA86C47371E037059C4B7_5PHWZEQ7FX_1691876203.1327\",\"due_date\":\"2023-08-13T04:36:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"carlos\",\"last_name\":\"piñeres\",\"email\":\"aumalore@gmail.com\",\"phone_number\":\"3113946375\",\"address\":null,\"creation_date\":\"2023-08-12T16:36:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 21:38:34','2023-08-12 21:38:34'),(7840,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T18:27:18-05:00\",\"transaction\":{\"id\":\"trg3wikst39zv9mjuk4y\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T18:25:14-05:00\",\"operation_date\":\"2023-08-12T18:25:14-05:00\",\"description\":\"Pago Mensual academia: Ezequiel Zapata Zuleta (1035980574)\",\"error_message\":null,\"order_id\":\"9EDDA0FD4D983BF975935CFD492FD50B_YT7I3L8DH2_1691882705.042\",\"due_date\":\"2023-08-13T06:25:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ezequiel\",\"last_name\":\"zapata zuleta\",\"email\":\"zuletayesica2@gmail.com\",\"phone_number\":\"3016289693\",\"address\":null,\"creation_date\":\"2023-08-12T18:25:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg3wikst39zv9mjuk4y/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 23:27:18','2023-08-12 23:27:18'),(7841,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T18:29:36-05:00\",\"transaction\":{\"id\":\"trg3wikst39zv9mjuk4y\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"99568698\",\"creation_date\":\"2023-08-12T18:25:14-05:00\",\"operation_date\":\"2023-08-12T18:28:50-05:00\",\"description\":\"Pago Mensual academia: Ezequiel Zapata Zuleta (1035980574)\",\"error_message\":null,\"order_id\":\"9EDDA0FD4D983BF975935CFD492FD50B_YT7I3L8DH2_1691882705.042\",\"due_date\":\"2023-08-13T06:25:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ezequiel\",\"last_name\":\"zapata zuleta\",\"email\":\"zuletayesica2@gmail.com\",\"phone_number\":\"3016289693\",\"address\":null,\"creation_date\":\"2023-08-12T18:25:14-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 23:29:36','2023-08-12 23:29:36'),(7842,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T18:31:22-05:00\",\"transaction\":{\"id\":\"trwo4rdawrxxdmz7vbyz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T18:30:18-05:00\",\"operation_date\":\"2023-08-12T18:30:18-05:00\",\"description\":\"Pago Mensual academia: Ezequiel Zapata Zuleta (1035980574)\",\"error_message\":null,\"order_id\":\"73C03186765E199C116224B68ADC5FA0_RD3289AJYT_1691883015.4427\",\"due_date\":\"2023-08-13T06:30:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ezequiel\",\"last_name\":\"zapata zuleta\",\"email\":\"zuletayesica2@gmail.com\",\"phone_number\":\"3016289693\",\"address\":null,\"creation_date\":\"2023-08-12T18:30:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwo4rdawrxxdmz7vbyz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 23:31:23','2023-08-12 23:31:23'),(7843,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  849\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-12T18:32:59-05:00\",\"transaction\":{\"id\":\"trwo4rdawrxxdmz7vbyz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-12T18:30:18-05:00\",\"operation_date\":\"2023-08-12T18:31:26-05:00\",\"description\":\"Pago Mensual academia: Ezequiel Zapata Zuleta (1035980574)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"73C03186765E199C116224B68ADC5FA0_RD3289AJYT_1691883015.4427\",\"due_date\":\"2023-08-13T06:30:18-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"ezequiel\",\"last_name\":\"zapata zuleta\",\"email\":\"zuletayesica2@gmail.com\",\"phone_number\":\"3016289693\",\"address\":null,\"creation_date\":\"2023-08-12T18:30:18-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-12 23:33:00','2023-08-12 23:33:00'),(7844,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T19:38:58-05:00\",\"transaction\":{\"id\":\"trjf2oltlwece6xsdapg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-12T19:38:58-05:00\",\"operation_date\":\"2023-08-12T19:38:58-05:00\",\"description\":\"Pago Mensual academia: Tomás Beltrán Carranza (1025463316)\",\"error_message\":null,\"order_id\":\"227F6AFD3B7F89B96C4BB91F95D50F6D_PRV1250LF8_1691887134.9018\",\"amount\":105000.00,\"customer\":{\"name\":\"Natalia\",\"last_name\":\"Carranza\",\"email\":\"natacarranza@gmail.com\",\"phone_number\":\"3103354557\",\"address\":null,\"creation_date\":\"2023-08-12T19:38:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjf2oltlwece6xsdapg/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-13 00:38:59','2023-08-13 00:38:59'),(7845,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T20:17:51-05:00\",\"transaction\":{\"id\":\"tro2nprcnvrm0mmkuv0c\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T20:16:45-05:00\",\"operation_date\":\"2023-08-12T20:16:45-05:00\",\"description\":\"Pago Mensual academia: Jhoseph Giraldo Diosa (1023547927)\",\"error_message\":null,\"order_id\":\"797134C3E42371BB4979A462EB2F042A_EY9SUJK5Z8_1691889402.7866\",\"due_date\":\"2023-08-13T08:16:45-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Hillary\",\"last_name\":\"Diosa Rangel\",\"email\":\"robinson02.diosa@gmail.com\",\"phone_number\":\"3013299833\",\"address\":null,\"creation_date\":\"2023-08-12T20:16:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro2nprcnvrm0mmkuv0c/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 01:17:51','2023-08-13 01:17:51'),(7846,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T19:21:12-06:00\",\"transaction\":{\"id\":\"tro2nprcnvrm0mmkuv0c\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"99680664\",\"creation_date\":\"2023-08-12T20:16:45-06:00\",\"operation_date\":\"2023-08-12T20:19:01-06:00\",\"description\":\"Pago Mensual academia: Jhoseph Giraldo Diosa (1023547927)\",\"error_message\":null,\"order_id\":\"797134C3E42371BB4979A462EB2F042A_EY9SUJK5Z8_1691889402.7866\",\"due_date\":\"2023-08-13T08:16:45-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Hillary\",\"last_name\":\"Diosa Rangel\",\"email\":\"robinson02.diosa@gmail.com\",\"phone_number\":\"3013299833\",\"address\":null,\"creation_date\":\"2023-08-12T20:16:45-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 01:21:13','2023-08-13 01:21:13'),(7847,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T22:53:30-05:00\",\"transaction\":{\"id\":\"tr8vcmsngsniurt18hka\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-12T22:52:37-05:00\",\"operation_date\":\"2023-08-12T22:52:37-05:00\",\"description\":\"Pago Mensual academia: Juan Esteban Torres Vélez (1032018626)\",\"error_message\":null,\"order_id\":\"606555CF42A6719782A952AA33CFA2CB_JBTN3Q54XM_1691898754.8049\",\"due_date\":\"2023-08-13T10:52:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Ferney\",\"last_name\":\"Torres\",\"email\":\"ferneytorres21@gmail.com\",\"phone_number\":\"3176637812\",\"address\":null,\"creation_date\":\"2023-08-12T22:52:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8vcmsngsniurt18hka/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 03:53:31','2023-08-13 03:53:31'),(7848,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T22:55:47-05:00\",\"transaction\":{\"id\":\"tr8vcmsngsniurt18hka\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"99789018\",\"creation_date\":\"2023-08-12T22:52:37-05:00\",\"operation_date\":\"2023-08-12T22:54:59-05:00\",\"description\":\"Pago Mensual academia: Juan Esteban Torres Vélez (1032018626)\",\"error_message\":null,\"order_id\":\"606555CF42A6719782A952AA33CFA2CB_JBTN3Q54XM_1691898754.8049\",\"due_date\":\"2023-08-13T10:52:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Ferney\",\"last_name\":\"Torres\",\"email\":\"ferneytorres21@gmail.com\",\"phone_number\":\"3176637812\",\"address\":null,\"creation_date\":\"2023-08-12T22:52:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 03:55:48','2023-08-13 03:55:48'),(7849,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-12T23:01:36-05:00\",\"transaction\":{\"id\":\"tru7juemf7knwcscfqlr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-12T23:01:36-05:00\",\"operation_date\":\"2023-08-12T23:01:36-05:00\",\"description\":\"Pago Mensual academia: Sebastián gavilanes yepes (1023551301)\",\"error_message\":null,\"order_id\":\"2A2717956118B4D223CECA17CE3865E2_WQAYSZX853_1691899245.1133\",\"amount\":105000.00,\"customer\":{\"name\":\"edwin oswaldo\",\"last_name\":\"gavilanes garcia\",\"email\":\"eogavila@gmail.com\",\"phone_number\":\"3105982823\",\"address\":null,\"creation_date\":\"2023-08-12T23:01:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru7juemf7knwcscfqlr/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-13 04:01:37','2023-08-13 04:01:37'),(7850,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1164\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-12T23:04:42-05:00\",\"transaction\":{\"id\":\"tru7juemf7knwcscfqlr\",\"authorization\":\"R03024\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-12T23:01:36-05:00\",\"operation_date\":\"2023-08-12T23:04:41-05:00\",\"description\":\"Pago Mensual academia: Sebastián gavilanes yepes (1023551301)\",\"error_message\":null,\"order_id\":\"2A2717956118B4D223CECA17CE3865E2_WQAYSZX853_1691899245.1133\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"540625XXXXXX9002\",\"holder_name\":\"Edwin gavilanes garcia \",\"expiration_year\":\"27\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE OCCIDENTE\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"edwin oswaldo\",\"last_name\":\"gavilanes garcia\",\"email\":\"eogavila@gmail.com\",\"phone_number\":\"3105982823\",\"address\":null,\"creation_date\":\"2023-08-12T23:01:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru7juemf7knwcscfqlr/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-13 04:04:42','2023-08-13 04:04:42'),(7851,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T01:34:53-05:00\",\"transaction\":{\"id\":\"trnjflbbocuxm0epajsy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-13T01:34:53-05:00\",\"operation_date\":\"2023-08-13T01:34:53-05:00\",\"description\":\"Pago Mensual academia: Samuel Montoya Serna (1034998338)\",\"error_message\":null,\"order_id\":\"_1691908478.5953\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Serna Mejia\",\"email\":\"alejandraserna2008@gmail.com\",\"phone_number\":\"3165210425\",\"address\":null,\"creation_date\":\"2023-08-13T01:34:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnjflbbocuxm0epajsy/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-13 06:34:54','2023-08-13 06:34:54'),(7852,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T06:49:10-05:00\",\"transaction\":{\"id\":\"trfw5un36bttlazrhoih\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-13T06:48:24-05:00\",\"operation_date\":\"2023-08-13T06:48:24-05:00\",\"description\":\"Pago Mensual academia: Simón Garcia Alvarez (1155717983)\",\"error_message\":null,\"order_id\":\"322F62469C5E3C7DC3E58F5A4D1EA399_RX17CJNLKY_1691927298.0165\",\"due_date\":\"2023-08-13T18:48:24-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Omar Esteban\",\"last_name\":\"Garcia Benavides\",\"email\":\"omarestebangarcia@gmail.com\",\"phone_number\":\"3138083637\",\"address\":null,\"creation_date\":\"2023-08-13T06:48:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfw5un36bttlazrhoih/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 11:49:10','2023-08-13 11:49:10'),(7853,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T06:50:26-05:00\",\"transaction\":{\"id\":\"trfw5un36bttlazrhoih\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"99837497\",\"creation_date\":\"2023-08-13T06:48:24-05:00\",\"operation_date\":\"2023-08-13T06:50:10-05:00\",\"description\":\"Pago Mensual academia: Simón Garcia Alvarez (1155717983)\",\"error_message\":null,\"order_id\":\"322F62469C5E3C7DC3E58F5A4D1EA399_RX17CJNLKY_1691927298.0165\",\"due_date\":\"2023-08-13T18:48:24-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Omar Esteban\",\"last_name\":\"Garcia Benavides\",\"email\":\"omarestebangarcia@gmail.com\",\"phone_number\":\"3138083637\",\"address\":null,\"creation_date\":\"2023-08-13T06:48:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 11:50:26','2023-08-13 11:50:26'),(7854,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  886\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T07:20:30-05:00\",\"transaction\":{\"id\":\"trgettpqrmctumnqizfq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-13T07:19:01-05:00\",\"operation_date\":\"2023-08-13T07:19:01-05:00\",\"description\":\"Pago Mensual academia: Samuel Montoya Serna (1034998338)\",\"error_message\":null,\"order_id\":\"_1691929139.1869\",\"due_date\":\"2023-08-13T19:19:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Serna Mejia\",\"email\":\"alejandraserna2008@gmail.com\",\"phone_number\":\"3165210425\",\"address\":null,\"creation_date\":\"2023-08-13T07:19:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgettpqrmctumnqizfq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 12:20:31','2023-08-13 12:20:31'),(7855,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  768\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T06:24:08-06:00\",\"transaction\":{\"id\":\"trgettpqrmctumnqizfq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"99847284\",\"creation_date\":\"2023-08-13T07:19:01-06:00\",\"operation_date\":\"2023-08-13T07:22:08-06:00\",\"description\":\"Pago Mensual academia: Samuel Montoya Serna (1034998338)\",\"error_message\":null,\"order_id\":\"_1691929139.1869\",\"due_date\":\"2023-08-13T19:19:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Serna Mejia\",\"email\":\"alejandraserna2008@gmail.com\",\"phone_number\":\"3165210425\",\"address\":null,\"creation_date\":\"2023-08-13T07:19:01-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 12:24:08','2023-08-13 12:24:08'),(7856,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T08:49:32-05:00\",\"transaction\":{\"id\":\"trquvulqbaiezwynprm7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-13T08:49:32-05:00\",\"operation_date\":\"2023-08-13T08:49:32-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Bermudez Preciado (1027743105)\",\"error_message\":null,\"order_id\":\"CA851E9F71B25D2D588B7E0D4DE3D627_7F3AYHO9I8_1691934569.7985\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Bermudez Restrepo\",\"email\":\"Jbermudez@construhigienica.com\",\"phone_number\":\"3203719015\",\"address\":null,\"creation_date\":\"2023-08-13T08:49:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trquvulqbaiezwynprm7/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-13 13:49:33','2023-08-13 13:49:33'),(7857,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  886\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T10:11:42-05:00\",\"transaction\":{\"id\":\"trrikpqdqjuam8rqba6e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-13T10:11:42-05:00\",\"operation_date\":\"2023-08-13T10:11:42-05:00\",\"description\":\"Pago Mensual academia: Lucca Rubio Fuentes (1035016053)\",\"error_message\":null,\"order_id\":\"73FED7FD472E502D8908794430511F4D_51OT3MK4VE_1691939470.038\",\"amount\":95000.00,\"customer\":{\"name\":\"Lucca\",\"last_name\":\"Rubio Fuentes\",\"email\":\"paofuentesc829@gmail.com\",\"phone_number\":\"3043863979\",\"address\":null,\"creation_date\":\"2023-08-13T10:11:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrikpqdqjuam8rqba6e/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-13 15:11:42','2023-08-13 15:11:42'),(7858,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1129\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T10:15:40-05:00\",\"transaction\":{\"id\":\"trrikpqdqjuam8rqba6e\",\"authorization\":\"672062\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-13T10:11:42-05:00\",\"operation_date\":\"2023-08-13T10:15:39-05:00\",\"description\":\"Pago Mensual academia: Lucca Rubio Fuentes (1035016053)\",\"error_message\":null,\"order_id\":\"73FED7FD472E502D8908794430511F4D_51OT3MK4VE_1691939470.038\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"422274XXXXXX5386\",\"holder_name\":\"JULIO RUBIO\",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":95000.00,\"customer\":{\"name\":\"Lucca\",\"last_name\":\"Rubio Fuentes\",\"email\":\"paofuentesc829@gmail.com\",\"phone_number\":\"3043863979\",\"address\":null,\"creation_date\":\"2023-08-13T10:11:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrikpqdqjuam8rqba6e/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-13 15:15:41','2023-08-13 15:15:41'),(7859,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T10:16:20-05:00\",\"transaction\":{\"id\":\"trbclkgf4wqyie1tuumd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-13T10:16:20-05:00\",\"operation_date\":\"2023-08-13T10:16:20-05:00\",\"description\":\"Pago Mensual academia: Lucca Rubio Fuentes (1035016053)\",\"error_message\":null,\"order_id\":\"735143E9FF8C47DEF504F1BA0442DF98_5RBV061HQM_1691939774.8072\",\"amount\":95000.00,\"customer\":{\"name\":\"Lucca\",\"last_name\":\"Rubio Fuentes\",\"email\":\"paofuentesc829@gmail.com\",\"phone_number\":\"3043863979\",\"address\":null,\"creation_date\":\"2023-08-13T10:16:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbclkgf4wqyie1tuumd/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-13 15:16:20','2023-08-13 15:16:20'),(7860,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1130\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T10:17:09-05:00\",\"transaction\":{\"id\":\"trbclkgf4wqyie1tuumd\",\"authorization\":\"575012\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-13T10:16:20-05:00\",\"operation_date\":\"2023-08-13T10:17:08-05:00\",\"description\":\"Pago Mensual academia: Lucca Rubio Fuentes (1035016053)\",\"error_message\":null,\"order_id\":\"735143E9FF8C47DEF504F1BA0442DF98_5RBV061HQM_1691939774.8072\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"422274XXXXXX5386\",\"holder_name\":\"Julio Rubio\",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":95000.00,\"customer\":{\"name\":\"Lucca\",\"last_name\":\"Rubio Fuentes\",\"email\":\"paofuentesc829@gmail.com\",\"phone_number\":\"3043863979\",\"address\":null,\"creation_date\":\"2023-08-13T10:16:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbclkgf4wqyie1tuumd/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-13 15:17:10','2023-08-13 15:17:10'),(7861,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T11:06:57-05:00\",\"transaction\":{\"id\":\"troxt32gqt7sdqja6pp9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-13T11:05:45-05:00\",\"operation_date\":\"2023-08-13T11:05:45-05:00\",\"description\":\"Pago Mensual academia: emiliano sinisterra arias (1117034837)\",\"error_message\":null,\"order_id\":\"99BE9F83741D1275639DF2C1E4D0072F_4OWYC3R1I2_1691942741.192\",\"due_date\":\"2023-08-13T23:05:45-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"eddi\",\"last_name\":\"sinisterra\",\"email\":\"andres.villa14@icloud.com\",\"phone_number\":\"3246836774\",\"address\":null,\"creation_date\":\"2023-08-13T11:05:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troxt32gqt7sdqja6pp9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 16:06:57','2023-08-13 16:06:57'),(7862,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T11:07:54-05:00\",\"transaction\":{\"id\":\"troxt32gqt7sdqja6pp9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"100017048\",\"creation_date\":\"2023-08-13T11:05:45-05:00\",\"operation_date\":\"2023-08-13T11:07:48-05:00\",\"description\":\"Pago Mensual academia: emiliano sinisterra arias (1117034837)\",\"error_message\":null,\"order_id\":\"99BE9F83741D1275639DF2C1E4D0072F_4OWYC3R1I2_1691942741.192\",\"due_date\":\"2023-08-13T23:05:45-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"eddi\",\"last_name\":\"sinisterra\",\"email\":\"andres.villa14@icloud.com\",\"phone_number\":\"3246836774\",\"address\":null,\"creation_date\":\"2023-08-13T11:05:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 16:07:55','2023-08-13 16:07:55'),(7863,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T11:21:54-05:00\",\"transaction\":{\"id\":\"tr1j4bq1kwklnvlfhqoj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-13T11:20:44-05:00\",\"operation_date\":\"2023-08-13T11:20:44-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Zuluaga Rodriguez (1035012554)\",\"error_message\":null,\"order_id\":\"E91068FFF3D7FA1594DFDF3B4308433A_S47OWGLU06_1691943638.0665\",\"due_date\":\"2023-08-13T23:20:44-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Pablo\",\"last_name\":\"Zuluaga\",\"email\":\"jpzuluaga@gmail.com\",\"phone_number\":\"3812054072\",\"address\":null,\"creation_date\":\"2023-08-13T11:20:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1j4bq1kwklnvlfhqoj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 16:21:55','2023-08-13 16:21:55'),(7864,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T11:23:34-05:00\",\"transaction\":{\"id\":\"tr1j4bq1kwklnvlfhqoj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"100032267\",\"creation_date\":\"2023-08-13T11:20:44-05:00\",\"operation_date\":\"2023-08-13T11:23:27-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Zuluaga Rodriguez (1035012554)\",\"error_message\":null,\"order_id\":\"E91068FFF3D7FA1594DFDF3B4308433A_S47OWGLU06_1691943638.0665\",\"due_date\":\"2023-08-13T23:20:44-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Pablo\",\"last_name\":\"Zuluaga\",\"email\":\"jpzuluaga@gmail.com\",\"phone_number\":\"3812054072\",\"address\":null,\"creation_date\":\"2023-08-13T11:20:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 16:23:34','2023-08-13 16:23:34'),(7865,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T13:13:20-05:00\",\"transaction\":{\"id\":\"trodi5rsjaqsq9ltuutt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-13T13:12:49-05:00\",\"operation_date\":\"2023-08-13T13:12:49-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Campiño Mogollon (1035981502)\",\"error_message\":null,\"order_id\":\"61F2585B0EBCF1F532C4D1EC9A7D51AA_UQY8VI02WA_1691950361.4472\",\"due_date\":\"2023-08-14T01:12:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Mogollon Granados\",\"email\":\"aleja220593@gmail.com\",\"phone_number\":\"3015635152\",\"address\":null,\"creation_date\":\"2023-08-13T13:12:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trodi5rsjaqsq9ltuutt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 18:13:21','2023-08-13 18:13:21'),(7866,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T12:15:11-06:00\",\"transaction\":{\"id\":\"trodi5rsjaqsq9ltuutt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"100146738\",\"creation_date\":\"2023-08-13T13:12:49-06:00\",\"operation_date\":\"2023-08-13T00:00:00-06:00\",\"description\":\"Pago Mensual academia: Miguel Angel Campiño Mogollon (1035981502)\",\"error_message\":null,\"order_id\":\"61F2585B0EBCF1F532C4D1EC9A7D51AA_UQY8VI02WA_1691950361.4472\",\"due_date\":\"2023-08-14T01:12:49-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Mogollon Granados\",\"email\":\"aleja220593@gmail.com\",\"phone_number\":\"3015635152\",\"address\":null,\"creation_date\":\"2023-08-13T13:12:49-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 18:15:11','2023-08-13 18:15:11'),(7867,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T14:47:59-05:00\",\"transaction\":{\"id\":\"trd3berodpzfg2vtcp5j\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-13T14:46:26-05:00\",\"operation_date\":\"2023-08-13T14:46:26-05:00\",\"description\":\"Pago Mensual academia: Samuel Bustamante Parra (1025658816)\",\"error_message\":null,\"order_id\":\"DDCBE25988981920C872C1787382F04D_W1BSEVK0XL_1691955982.1362\",\"due_date\":\"2023-08-14T02:46:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeison \",\"last_name\":\"Bustamante \",\"email\":\"yeigol27@hotmail.com\",\"phone_number\":\"3216331572\",\"address\":null,\"creation_date\":\"2023-08-13T14:46:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trd3berodpzfg2vtcp5j/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 19:48:00','2023-08-13 19:48:00'),(7868,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T14:48:53-05:00\",\"transaction\":{\"id\":\"trd3berodpzfg2vtcp5j\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"100235322\",\"creation_date\":\"2023-08-13T14:46:26-05:00\",\"operation_date\":\"2023-08-13T14:48:42-05:00\",\"description\":\"Pago Mensual academia: Samuel Bustamante Parra (1025658816)\",\"error_message\":null,\"order_id\":\"DDCBE25988981920C872C1787382F04D_W1BSEVK0XL_1691955982.1362\",\"due_date\":\"2023-08-14T02:46:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeison \",\"last_name\":\"Bustamante \",\"email\":\"yeigol27@hotmail.com\",\"phone_number\":\"3216331572\",\"address\":null,\"creation_date\":\"2023-08-13T14:46:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 19:48:54','2023-08-13 19:48:54'),(7869,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T16:48:45-05:00\",\"transaction\":{\"id\":\"trckeqwolx2vf1j4ykok\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-13T16:46:37-05:00\",\"operation_date\":\"2023-08-13T16:46:37-05:00\",\"description\":\"Pago Mensual academia: Matias Duque Barrera (1020320699)\",\"error_message\":null,\"order_id\":\"6D6968D87C240C699190E2D8C029FA9D_WDZQBXVRG5_1691963193.3839\",\"due_date\":\"2023-08-14T04:46:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lissette\",\"last_name\":\"Barrera Villa\",\"email\":\"lissibarrera@hotmail.com\",\"phone_number\":\"3113221134\",\"address\":null,\"creation_date\":\"2023-08-13T16:46:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trckeqwolx2vf1j4ykok/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 21:48:45','2023-08-13 21:48:45'),(7870,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T16:50:11-05:00\",\"transaction\":{\"id\":\"trckeqwolx2vf1j4ykok\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"100341781\",\"creation_date\":\"2023-08-13T16:46:37-05:00\",\"operation_date\":\"2023-08-13T16:49:55-05:00\",\"description\":\"Pago Mensual academia: Matias Duque Barrera (1020320699)\",\"error_message\":null,\"order_id\":\"6D6968D87C240C699190E2D8C029FA9D_WDZQBXVRG5_1691963193.3839\",\"due_date\":\"2023-08-14T04:46:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lissette\",\"last_name\":\"Barrera Villa\",\"email\":\"lissibarrera@hotmail.com\",\"phone_number\":\"3113221134\",\"address\":null,\"creation_date\":\"2023-08-13T16:46:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 21:50:11','2023-08-13 21:50:11'),(7871,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T17:30:34-05:00\",\"transaction\":{\"id\":\"tr2gw129gechz3urwnpd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-13T17:29:15-05:00\",\"operation_date\":\"2023-08-13T17:29:15-05:00\",\"description\":\"Pago Mensual academia: Samuel Bustamante Parra (1025658816)\",\"error_message\":null,\"order_id\":\"D38EE19A4815C4AEBA48227913092A6E_06IWLCKEYM_1691965744.6217\",\"due_date\":\"2023-08-14T05:29:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeison \",\"last_name\":\"Bustamante \",\"email\":\"yeigol27@hotmail.com\",\"phone_number\":\"3216331572\",\"address\":null,\"creation_date\":\"2023-08-13T17:29:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2gw129gechz3urwnpd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 22:30:35','2023-08-13 22:30:35'),(7872,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  844\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-13T17:32:26-05:00\",\"transaction\":{\"id\":\"tr2gw129gechz3urwnpd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-13T17:29:15-05:00\",\"operation_date\":\"2023-08-13T17:30:40-05:00\",\"description\":\"Pago Mensual academia: Samuel Bustamante Parra (1025658816)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"D38EE19A4815C4AEBA48227913092A6E_06IWLCKEYM_1691965744.6217\",\"due_date\":\"2023-08-14T05:29:15-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Yeison \",\"last_name\":\"Bustamante \",\"email\":\"yeigol27@hotmail.com\",\"phone_number\":\"3216331572\",\"address\":null,\"creation_date\":\"2023-08-13T17:29:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 22:32:27','2023-08-13 22:32:27'),(7873,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T17:33:51-05:00\",\"transaction\":{\"id\":\"tretgjcfbag8hhcqjxgj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-13T17:32:42-05:00\",\"operation_date\":\"2023-08-13T17:32:42-05:00\",\"description\":\"Pago Mensual academia: Samuel Bustamante Parra (1025658816)\",\"error_message\":null,\"order_id\":\"D38EE19A4815C4AEBA48227913092A6E_06IWLCKEYM_1691965959.3649\",\"due_date\":\"2023-08-14T05:32:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeison \",\"last_name\":\"Bustamante \",\"email\":\"yeigol27@hotmail.com\",\"phone_number\":\"3216331572\",\"address\":null,\"creation_date\":\"2023-08-13T17:32:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tretgjcfbag8hhcqjxgj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 22:33:52','2023-08-13 22:33:52'),(7874,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T17:34:44-05:00\",\"transaction\":{\"id\":\"tretgjcfbag8hhcqjxgj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"100381605\",\"creation_date\":\"2023-08-13T17:32:42-05:00\",\"operation_date\":\"2023-08-13T17:34:29-05:00\",\"description\":\"Pago Mensual academia: Samuel Bustamante Parra (1025658816)\",\"error_message\":null,\"order_id\":\"D38EE19A4815C4AEBA48227913092A6E_06IWLCKEYM_1691965959.3649\",\"due_date\":\"2023-08-14T05:32:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeison \",\"last_name\":\"Bustamante \",\"email\":\"yeigol27@hotmail.com\",\"phone_number\":\"3216331572\",\"address\":null,\"creation_date\":\"2023-08-13T17:32:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-13 22:34:44','2023-08-13 22:34:44'),(7875,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T19:14:56-05:00\",\"transaction\":{\"id\":\"trgcxbccqt7akucnemei\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-13T19:13:32-05:00\",\"operation_date\":\"2023-08-13T19:13:32-05:00\",\"description\":\"Pago Mensual academia: Ezequiel Zapata Zuleta (1035980574)\",\"error_message\":null,\"order_id\":\"73C03186765E199C116224B68ADC5FA0_RD3289AJYT_1691972003.2466\",\"due_date\":\"2023-08-14T07:13:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ezequiel\",\"last_name\":\"zapata zuleta\",\"email\":\"zuletayesica2@gmail.com\",\"phone_number\":\"3016289693\",\"address\":null,\"creation_date\":\"2023-08-13T19:13:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgcxbccqt7akucnemei/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 00:14:57','2023-08-14 00:14:57'),(7876,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T19:16:48-05:00\",\"transaction\":{\"id\":\"trgcxbccqt7akucnemei\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"100476929\",\"creation_date\":\"2023-08-13T19:13:32-05:00\",\"operation_date\":\"2023-08-13T19:16:21-05:00\",\"description\":\"Pago Mensual academia: Ezequiel Zapata Zuleta (1035980574)\",\"error_message\":null,\"order_id\":\"73C03186765E199C116224B68ADC5FA0_RD3289AJYT_1691972003.2466\",\"due_date\":\"2023-08-14T07:13:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ezequiel\",\"last_name\":\"zapata zuleta\",\"email\":\"zuletayesica2@gmail.com\",\"phone_number\":\"3016289693\",\"address\":null,\"creation_date\":\"2023-08-13T19:13:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 00:16:49','2023-08-14 00:16:49'),(7877,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-13T19:26:52-05:00\",\"transaction\":{\"id\":\"trcu1ao8myimujdb9dak\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-13T19:26:12-05:00\",\"operation_date\":\"2023-08-13T19:26:12-05:00\",\"description\":\"Pago Mensual academia: Isaac Giraldo Giraldo (1020315563)\",\"error_message\":null,\"order_id\":\"5D2C2CEE8AB0B9A36BD1ED7196BD6C4A_7WMEI6X3KA_1691972767.8335\",\"due_date\":\"2023-08-14T07:26:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Giraldo Giraldo\",\"email\":\"lenyliz_giraldo7@hotmail.com\",\"phone_number\":\"3042228036\",\"address\":null,\"creation_date\":\"2023-08-13T19:26:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcu1ao8myimujdb9dak/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 00:26:52','2023-08-14 00:26:52'),(7878,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-13T19:27:59-05:00\",\"transaction\":{\"id\":\"trcu1ao8myimujdb9dak\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"100489002\",\"creation_date\":\"2023-08-13T19:26:12-05:00\",\"operation_date\":\"2023-08-13T19:27:40-05:00\",\"description\":\"Pago Mensual academia: Isaac Giraldo Giraldo (1020315563)\",\"error_message\":null,\"order_id\":\"5D2C2CEE8AB0B9A36BD1ED7196BD6C4A_7WMEI6X3KA_1691972767.8335\",\"due_date\":\"2023-08-14T07:26:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Giraldo Giraldo\",\"email\":\"lenyliz_giraldo7@hotmail.com\",\"phone_number\":\"3042228036\",\"address\":null,\"creation_date\":\"2023-08-13T19:26:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 00:28:00','2023-08-14 00:28:00'),(7879,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-14T02:08:49-06:00\",\"transaction\":{\"id\":\"tr99f9scusofjdqfiywu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-10T15:00:10-06:00\",\"operation_date\":\"2023-08-10T15:00:10-06:00\",\"description\":\"Pago Inscripción academia: Nicolas Quinchia Patiño (1034927231)\",\"error_message\":null,\"order_id\":\"F6D9E459B9FBF6DD26C4F7D621ADEC1D_G70F4Z92HS_1691697603.7373\",\"due_date\":\"2023-08-11T03:00:10-06:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Quinchia Patiño\",\"email\":\"npatinon.2002@gmail.com\",\"phone_number\":\"3042901987\",\"address\":null,\"creation_date\":\"2023-08-10T15:00:10-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr99f9scusofjdqfiywu/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 08:08:50','2023-08-14 08:08:50'),(7880,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-14T02:10:37-06:00\",\"transaction\":{\"id\":\"trinpexxddh8ryzedmmm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-10T19:47:23-06:00\",\"operation_date\":\"2023-08-10T19:47:23-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"7EABE3A1649FFA2B3FF8C02EBFD5659F_E-64D584EC-55_1691714806.7316\",\"due_date\":\"2023-08-11T07:47:23-06:00\",\"amount\":286800.00,\"customer\":{\"name\":\"Manuela\",\"last_name\":\"Arboleda\",\"email\":\"mvar97@outlook.com\",\"phone_number\":\"3008102162\",\"address\":null,\"creation_date\":\"2023-08-10T19:47:23-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trinpexxddh8ryzedmmm/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 08:10:38','2023-08-14 08:10:38'),(7881,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T07:39:54-05:00\",\"transaction\":{\"id\":\"tr294lmxl1hb8xzpkoey\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-14T07:39:14-05:00\",\"operation_date\":\"2023-08-14T07:39:14-05:00\",\"description\":\"Pago Mensual academia: Alejandro Torres Castañeda (1033199081)\",\"error_message\":null,\"order_id\":\"6950AA02AE8613AF620668146DD11840_3G4YD7W9VI_1692016750.763\",\"due_date\":\"2023-08-14T19:39:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Torres Castañeda\",\"email\":\"Ladyjohanac@hotmail.com\",\"phone_number\":\"3137707097\",\"address\":null,\"creation_date\":\"2023-08-14T07:39:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr294lmxl1hb8xzpkoey/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 12:39:55','2023-08-14 12:39:55'),(7882,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T07:40:57-05:00\",\"transaction\":{\"id\":\"tr294lmxl1hb8xzpkoey\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"100792305\",\"creation_date\":\"2023-08-14T07:39:14-05:00\",\"operation_date\":\"2023-08-14T07:40:53-05:00\",\"description\":\"Pago Mensual academia: Alejandro Torres Castañeda (1033199081)\",\"error_message\":null,\"order_id\":\"6950AA02AE8613AF620668146DD11840_3G4YD7W9VI_1692016750.763\",\"due_date\":\"2023-08-14T19:39:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Torres Castañeda\",\"email\":\"Ladyjohanac@hotmail.com\",\"phone_number\":\"3137707097\",\"address\":null,\"creation_date\":\"2023-08-14T07:39:14-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 12:40:58','2023-08-14 12:40:58'),(7883,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T09:19:45-05:00\",\"transaction\":{\"id\":\"trr8ye0swxh4jr6rnknx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-14T09:19:03-05:00\",\"operation_date\":\"2023-08-14T09:19:03-05:00\",\"description\":\"Pago Mensual academia: Mateo Esteban Arroyave Robles (1125279657)\",\"error_message\":null,\"order_id\":\"B071CFA81605A94AD80CFA2BBC747448_DKCGSA1IH4_1692022738.106\",\"due_date\":\"2023-08-14T21:19:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"Robles Lomas\",\"email\":\"srobleslomas@hotmail.com\",\"phone_number\":\"3125036629\",\"address\":null,\"creation_date\":\"2023-08-14T09:19:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr8ye0swxh4jr6rnknx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 14:19:46','2023-08-14 14:19:46'),(7884,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T08:21:17-06:00\",\"transaction\":{\"id\":\"trr8ye0swxh4jr6rnknx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"100959990\",\"creation_date\":\"2023-08-14T09:19:03-06:00\",\"operation_date\":\"2023-08-14T09:20:48-06:00\",\"description\":\"Pago Mensual academia: Mateo Esteban Arroyave Robles (1125279657)\",\"error_message\":null,\"order_id\":\"B071CFA81605A94AD80CFA2BBC747448_DKCGSA1IH4_1692022738.106\",\"due_date\":\"2023-08-14T21:19:03-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"Robles Lomas\",\"email\":\"srobleslomas@hotmail.com\",\"phone_number\":\"3125036629\",\"address\":null,\"creation_date\":\"2023-08-14T09:19:03-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 14:21:18','2023-08-14 14:21:18'),(7885,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  886\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T09:28:24-05:00\",\"transaction\":{\"id\":\"tre4rqyxi6frtbb0s40c\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-14T09:28:24-05:00\",\"operation_date\":\"2023-08-14T09:28:24-05:00\",\"description\":\"Pago Mensual academia: Santiago Giraldo Zapata (1036456930)\",\"error_message\":null,\"order_id\":\"E8E0DD181E4EE545195120626098BFBA_12UGX3KN4B_1692023300.6782\",\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Zapata\",\"email\":\"erijoke_v0923@hotmail.com\",\"phone_number\":\"3212604509\",\"address\":null,\"creation_date\":\"2023-08-14T09:28:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre4rqyxi6frtbb0s40c/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-14 14:28:25','2023-08-14 14:28:25'),(7886,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1135\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T09:29:38-05:00\",\"transaction\":{\"id\":\"tre4rqyxi6frtbb0s40c\",\"authorization\":\"092937\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-14T09:28:24-05:00\",\"operation_date\":\"2023-08-14T09:29:37-05:00\",\"description\":\"Pago Mensual academia: Santiago Giraldo Zapata (1036456930)\",\"error_message\":null,\"order_id\":\"E8E0DD181E4EE545195120626098BFBA_12UGX3KN4B_1692023300.6782\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5791\",\"holder_name\":\"Bancolombia \",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Zapata\",\"email\":\"erijoke_v0923@hotmail.com\",\"phone_number\":\"3212604509\",\"address\":null,\"creation_date\":\"2023-08-14T09:28:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre4rqyxi6frtbb0s40c/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-14 14:29:38','2023-08-14 14:29:38'),(7887,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T10:32:39-05:00\",\"transaction\":{\"id\":\"tryuznp0xiooelizbphc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-14T10:30:54-05:00\",\"operation_date\":\"2023-08-14T10:30:54-05:00\",\"description\":\"Pago Mensual academia: Emiliano Parrado Cossio (1034999265)\",\"error_message\":null,\"order_id\":\"3FB04953D95A94367BB133F862402BCE_1R8HIF5J3C_1692027051.1029\",\"due_date\":\"2023-08-14T22:30:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paola Andrea\",\"last_name\":\"Cossio Alvarez\",\"email\":\"paocossioalvarez@hotmail.com\",\"phone_number\":\"3208654833\",\"address\":null,\"creation_date\":\"2023-08-14T10:30:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryuznp0xiooelizbphc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 15:32:40','2023-08-14 15:32:40'),(7888,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T10:34:21-05:00\",\"transaction\":{\"id\":\"tryuznp0xiooelizbphc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"101137370\",\"creation_date\":\"2023-08-14T10:30:54-05:00\",\"operation_date\":\"2023-08-14T10:33:42-05:00\",\"description\":\"Pago Mensual academia: Emiliano Parrado Cossio (1034999265)\",\"error_message\":null,\"order_id\":\"3FB04953D95A94367BB133F862402BCE_1R8HIF5J3C_1692027051.1029\",\"due_date\":\"2023-08-14T22:30:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paola Andrea\",\"last_name\":\"Cossio Alvarez\",\"email\":\"paocossioalvarez@hotmail.com\",\"phone_number\":\"3208654833\",\"address\":null,\"creation_date\":\"2023-08-14T10:30:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 15:34:22','2023-08-14 15:34:22'),(7889,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T11:25:28-05:00\",\"transaction\":{\"id\":\"trswjkqr5ranegcdjyee\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-14T11:24:47-05:00\",\"operation_date\":\"2023-08-14T11:24:47-05:00\",\"description\":\"Pago Mensual academia: Alejandro Echavarria Arias (1035000776)\",\"error_message\":null,\"order_id\":\"B7FEDE84C2BE02CCB9C77107956560EB_O8CKFW5ZI2_1692030282.977\",\"due_date\":\"2023-08-14T23:24:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Arias Builes\",\"email\":\"lina_arias_bui@yahoo.com.ar\",\"phone_number\":\"3115233080\",\"address\":null,\"creation_date\":\"2023-08-14T11:24:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trswjkqr5ranegcdjyee/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 16:25:29','2023-08-14 16:25:29'),(7890,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T11:26:38-05:00\",\"transaction\":{\"id\":\"trswjkqr5ranegcdjyee\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"101273822\",\"creation_date\":\"2023-08-14T11:24:47-05:00\",\"operation_date\":\"2023-08-14T11:26:33-05:00\",\"description\":\"Pago Mensual academia: Alejandro Echavarria Arias (1035000776)\",\"error_message\":null,\"order_id\":\"B7FEDE84C2BE02CCB9C77107956560EB_O8CKFW5ZI2_1692030282.977\",\"due_date\":\"2023-08-14T23:24:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Arias Builes\",\"email\":\"lina_arias_bui@yahoo.com.ar\",\"phone_number\":\"3115233080\",\"address\":null,\"creation_date\":\"2023-08-14T11:24:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 16:26:39','2023-08-14 16:26:39'),(7891,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T12:56:56-05:00\",\"transaction\":{\"id\":\"trb9jknwfyd9knkhqt9s\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-14T12:56:22-05:00\",\"operation_date\":\"2023-08-14T12:56:22-05:00\",\"description\":\"Pago Mensual academia: Pablo Jaramillo Jaramillo (1035016112)\",\"error_message\":null,\"order_id\":\"966B6DFB6B0819CC10644BEA3115CF20_8RU7G3P6HW_1692035780.0279\",\"due_date\":\"2023-08-15T00:56:22-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Jaramillo\",\"email\":\"lina21jllo@yahoo.es\",\"phone_number\":\"3006195770\",\"address\":null,\"creation_date\":\"2023-08-14T12:56:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb9jknwfyd9knkhqt9s/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 17:56:57','2023-08-14 17:56:57'),(7892,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T12:57:41-05:00\",\"transaction\":{\"id\":\"trb9jknwfyd9knkhqt9s\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"101493008\",\"creation_date\":\"2023-08-14T12:56:22-05:00\",\"operation_date\":\"2023-08-14T12:57:35-05:00\",\"description\":\"Pago Mensual academia: Pablo Jaramillo Jaramillo (1035016112)\",\"error_message\":null,\"order_id\":\"966B6DFB6B0819CC10644BEA3115CF20_8RU7G3P6HW_1692035780.0279\",\"due_date\":\"2023-08-15T00:56:22-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Jaramillo\",\"email\":\"lina21jllo@yahoo.es\",\"phone_number\":\"3006195770\",\"address\":null,\"creation_date\":\"2023-08-14T12:56:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 17:57:42','2023-08-14 17:57:42'),(7893,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T13:10:12-05:00\",\"transaction\":{\"id\":\"trbaisqneggqjtnpagvq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-14T13:09:14-05:00\",\"operation_date\":\"2023-08-14T13:09:14-05:00\",\"description\":\"Pago Mensual academia: Salomon Jiménez Martínez (1035006701)\",\"error_message\":null,\"order_id\":\"DFEB9598FBFB97CC6BBCC0AFF2C785D6_KRYE5OJQGT_1692036542.9226\",\"due_date\":\"2023-08-15T01:09:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marianella\",\"last_name\":\"Martínez Rave\",\"email\":\"marianella_347@hotmail.com\",\"phone_number\":\"3146102579\",\"address\":null,\"creation_date\":\"2023-08-14T13:09:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbaisqneggqjtnpagvq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 18:10:13','2023-08-14 18:10:13'),(7894,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T12:12:15-06:00\",\"transaction\":{\"id\":\"trbaisqneggqjtnpagvq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"101520960\",\"creation_date\":\"2023-08-14T13:09:14-06:00\",\"operation_date\":\"2023-08-14T13:11:45-06:00\",\"description\":\"Pago Mensual academia: Salomon Jiménez Martínez (1035006701)\",\"error_message\":null,\"order_id\":\"DFEB9598FBFB97CC6BBCC0AFF2C785D6_KRYE5OJQGT_1692036542.9226\",\"due_date\":\"2023-08-15T01:09:14-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marianella\",\"last_name\":\"Martínez Rave\",\"email\":\"marianella_347@hotmail.com\",\"phone_number\":\"3146102579\",\"address\":null,\"creation_date\":\"2023-08-14T13:09:14-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 18:12:15','2023-08-14 18:12:15'),(7895,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  876\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T15:00:04-05:00\",\"transaction\":{\"id\":\"trxzegmssendd588yead\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-14T15:00:04-05:00\",\"operation_date\":\"2023-08-14T15:00:04-05:00\",\"description\":\"Pago Mensual academia: Tomás Usuga Rivera (1035012845)\",\"error_message\":null,\"order_id\":\"1B318124E37AF6D74A03501474F44EA1_IWTY50L29A_1692043201.1008\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Usuga\",\"email\":\"jorge063@hotmail.com\",\"phone_number\":\"3188581589\",\"address\":null,\"creation_date\":\"2023-08-14T15:00:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxzegmssendd588yead/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-14 20:00:04','2023-08-14 20:00:04'),(7896,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1140\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T15:01:14-05:00\",\"transaction\":{\"id\":\"trxzegmssendd588yead\",\"authorization\":\"SVN25Q\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-14T15:00:04-05:00\",\"operation_date\":\"2023-08-14T15:01:13-05:00\",\"description\":\"Pago Mensual academia: Tomás Usuga Rivera (1035012845)\",\"error_message\":null,\"order_id\":\"1B318124E37AF6D74A03501474F44EA1_IWTY50L29A_1692043201.1008\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555691XXXXXX8163\",\"holder_name\":\"Jorge Armando Usuga Hidalgo \",\"expiration_year\":\"28\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NIUM PTE. LTD.\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Usuga\",\"email\":\"jorge063@hotmail.com\",\"phone_number\":\"3188581589\",\"address\":null,\"creation_date\":\"2023-08-14T15:00:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxzegmssendd588yead/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-14 20:01:15','2023-08-14 20:01:15'),(7897,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T15:17:57-05:00\",\"transaction\":{\"id\":\"trxbvq2aucq2ecbnngwc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-14T15:16:10-05:00\",\"operation_date\":\"2023-08-14T15:16:10-05:00\",\"description\":\"Pago Mensual academia: miguel fernando lugo arrieta (1016915798)\",\"error_message\":null,\"order_id\":\"72F67E70F6B7CDC4CC893EDADDF0C4C6_DLTEQVW5GA_1692044160.3801\",\"due_date\":\"2023-08-15T03:16:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luis\",\"last_name\":\"Lugo\",\"email\":\"luisflugo@gmail.com\",\"phone_number\":\"3102502540\",\"address\":null,\"creation_date\":\"2023-08-14T15:16:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxbvq2aucq2ecbnngwc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 20:17:58','2023-08-14 20:17:58'),(7898,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T15:19:44-05:00\",\"transaction\":{\"id\":\"trxbvq2aucq2ecbnngwc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"101818594\",\"creation_date\":\"2023-08-14T15:16:10-05:00\",\"operation_date\":\"2023-08-14T15:19:37-05:00\",\"description\":\"Pago Mensual academia: miguel fernando lugo arrieta (1016915798)\",\"error_message\":null,\"order_id\":\"72F67E70F6B7CDC4CC893EDADDF0C4C6_DLTEQVW5GA_1692044160.3801\",\"due_date\":\"2023-08-15T03:16:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luis\",\"last_name\":\"Lugo\",\"email\":\"luisflugo@gmail.com\",\"phone_number\":\"3102502540\",\"address\":null,\"creation_date\":\"2023-08-14T15:16:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 20:19:44','2023-08-14 20:19:44'),(7899,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  882\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T15:56:39-05:00\",\"transaction\":{\"id\":\"trndj1q0imn7s3hcozps\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-14T15:56:39-05:00\",\"operation_date\":\"2023-08-14T15:56:39-05:00\",\"description\":\"Pago Mensual academia: Martin Posada Bustamante (1020324373)\",\"error_message\":null,\"order_id\":\"6C91724B896CDCF48285039AB05B3AAF_NZUG8XIMB1_1692046594.8053\",\"amount\":165900.00,\"customer\":{\"name\":\"Yonny\",\"last_name\":\"Posada\",\"email\":\"yonnypos@hotmail.com\",\"phone_number\":\"3145895103\",\"address\":null,\"creation_date\":\"2023-08-14T15:56:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trndj1q0imn7s3hcozps/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-14 20:56:39','2023-08-14 20:56:39'),(7900,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1207\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T15:57:32-05:00\",\"transaction\":{\"id\":\"trndj1q0imn7s3hcozps\",\"authorization\":\"954087\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":10,\"conciliated\":true,\"creation_date\":\"2023-08-14T15:56:39-05:00\",\"operation_date\":\"2023-08-14T15:57:31-05:00\",\"description\":\"Pago Mensual academia: Martin Posada Bustamante (1020324373)\",\"error_message\":null,\"order_id\":\"6C91724B896CDCF48285039AB05B3AAF_NZUG8XIMB1_1692046594.8053\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"451307XXXXXX4185\",\"holder_name\":\"Yonny Posada\",\"expiration_year\":\"24\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"payment_plan\":{\"payments\":10,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Yonny\",\"last_name\":\"Posada\",\"email\":\"yonnypos@hotmail.com\",\"phone_number\":\"3145895103\",\"address\":null,\"creation_date\":\"2023-08-14T15:56:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trndj1q0imn7s3hcozps/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-14 20:57:33','2023-08-14 20:57:33'),(7901,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T17:03:03-05:00\",\"transaction\":{\"id\":\"trnjavduyoszwmtmur2l\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-14T17:03:03-05:00\",\"operation_date\":\"2023-08-14T17:03:03-05:00\",\"description\":\"Pago Mensual academia: Leandro Ramirez Pareja (635811)\",\"error_message\":null,\"order_id\":\"0060EF47B12160B9198302EBDB144DCF_E30A85GNDB_1692050576.9748\",\"amount\":95000.00,\"customer\":{\"name\":\"Maribel\",\"last_name\":\"Pareja Gallego\",\"email\":\"marypareja93@gmail.com\",\"phone_number\":\"3052919400\",\"address\":null,\"creation_date\":\"2023-08-14T17:03:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnjavduyoszwmtmur2l/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-14 22:03:04','2023-08-14 22:03:04'),(7902,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1138\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T17:04:08-05:00\",\"transaction\":{\"id\":\"trnjavduyoszwmtmur2l\",\"authorization\":\"170407\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-14T17:03:03-05:00\",\"operation_date\":\"2023-08-14T17:04:07-05:00\",\"description\":\"Pago Mensual academia: Leandro Ramirez Pareja (635811)\",\"error_message\":null,\"order_id\":\"0060EF47B12160B9198302EBDB144DCF_E30A85GNDB_1692050576.9748\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX2117\",\"holder_name\":\"Maribel Pareja\",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":95000.00,\"customer\":{\"name\":\"Maribel\",\"last_name\":\"Pareja Gallego\",\"email\":\"marypareja93@gmail.com\",\"phone_number\":\"3052919400\",\"address\":null,\"creation_date\":\"2023-08-14T17:03:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnjavduyoszwmtmur2l/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-14 22:04:09','2023-08-14 22:04:09'),(7903,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T18:23:26-05:00\",\"transaction\":{\"id\":\"trvija3pedtzlmohsmic\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-14T18:22:31-05:00\",\"operation_date\":\"2023-08-14T18:22:31-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Serna Gil (1033268035)\",\"error_message\":null,\"order_id\":\"BA036D228858D76FB89189853A5503BD_L3U0Q1IWPT_1692055347.9033\",\"due_date\":\"2023-08-15T06:22:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego\",\"last_name\":\"Serna\",\"email\":\"diegoserna.as@gmail.com\",\"phone_number\":\"3128737141\",\"address\":null,\"creation_date\":\"2023-08-14T18:22:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvija3pedtzlmohsmic/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 23:23:27','2023-08-14 23:23:27'),(7904,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T18:24:32-05:00\",\"transaction\":{\"id\":\"trvija3pedtzlmohsmic\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"102256702\",\"creation_date\":\"2023-08-14T18:22:31-05:00\",\"operation_date\":\"2023-08-14T18:24:26-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Serna Gil (1033268035)\",\"error_message\":null,\"order_id\":\"BA036D228858D76FB89189853A5503BD_L3U0Q1IWPT_1692055347.9033\",\"due_date\":\"2023-08-15T06:22:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego\",\"last_name\":\"Serna\",\"email\":\"diegoserna.as@gmail.com\",\"phone_number\":\"3128737141\",\"address\":null,\"creation_date\":\"2023-08-14T18:22:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-14 23:24:32','2023-08-14 23:24:32'),(7905,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T19:39:45-05:00\",\"transaction\":{\"id\":\"trssmueclzswvzz6isrz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-14T19:38:31-05:00\",\"operation_date\":\"2023-08-14T19:38:31-05:00\",\"description\":\"Pago Mensual academia: jeronimo hernandez alvarez (1027812611)\",\"error_message\":null,\"order_id\":\"6DBD2699E8E7EC0047DE2D5D1B28A75B_6BOFJ57S39_1692059887.3358\",\"due_date\":\"2023-08-15T07:38:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jeronimo\",\"last_name\":\"hernandez\",\"email\":\"pipehdz08@gmail.com\",\"phone_number\":\"3014849718\",\"address\":null,\"creation_date\":\"2023-08-14T19:38:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trssmueclzswvzz6isrz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 00:39:46','2023-08-15 00:39:46'),(7906,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T19:41:07-05:00\",\"transaction\":{\"id\":\"trssmueclzswvzz6isrz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"102411056\",\"creation_date\":\"2023-08-14T19:38:31-05:00\",\"operation_date\":\"2023-08-14T19:40:48-05:00\",\"description\":\"Pago Mensual academia: jeronimo hernandez alvarez (1027812611)\",\"error_message\":null,\"order_id\":\"6DBD2699E8E7EC0047DE2D5D1B28A75B_6BOFJ57S39_1692059887.3358\",\"due_date\":\"2023-08-15T07:38:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jeronimo\",\"last_name\":\"hernandez\",\"email\":\"pipehdz08@gmail.com\",\"phone_number\":\"3014849718\",\"address\":null,\"creation_date\":\"2023-08-14T19:38:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 00:41:08','2023-08-15 00:41:08'),(7907,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T21:26:06-05:00\",\"transaction\":{\"id\":\"trg8uglvmamx9tt6cirm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-14T21:25:22-05:00\",\"operation_date\":\"2023-08-14T21:25:22-05:00\",\"description\":\"Pago Mensual academia: Martin Loaiza Ramirez (1035006356)\",\"error_message\":null,\"order_id\":\"8485AE387A981D783F8764E508151CD9_KAE5ZTYSFH_1692066319.1731\",\"due_date\":\"2023-08-15T09:25:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Grace Julieta\",\"last_name\":\"Ramirez\",\"email\":\"julietamrr@hotmail.com\",\"phone_number\":\"3143319536\",\"address\":null,\"creation_date\":\"2023-08-14T21:25:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg8uglvmamx9tt6cirm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 02:26:07','2023-08-15 02:26:07'),(7908,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T21:26:53-05:00\",\"transaction\":{\"id\":\"trg8uglvmamx9tt6cirm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"102604768\",\"creation_date\":\"2023-08-14T21:25:22-05:00\",\"operation_date\":\"2023-08-14T21:26:48-05:00\",\"description\":\"Pago Mensual academia: Martin Loaiza Ramirez (1035006356)\",\"error_message\":null,\"order_id\":\"8485AE387A981D783F8764E508151CD9_KAE5ZTYSFH_1692066319.1731\",\"due_date\":\"2023-08-15T09:25:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Grace Julieta\",\"last_name\":\"Ramirez\",\"email\":\"julietamrr@hotmail.com\",\"phone_number\":\"3143319536\",\"address\":null,\"creation_date\":\"2023-08-14T21:25:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 02:26:53','2023-08-15 02:26:53'),(7909,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-14T21:58:38-05:00\",\"transaction\":{\"id\":\"trpqyevgzkutr5xtcjrb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-14T21:57:34-05:00\",\"operation_date\":\"2023-08-14T21:57:34-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Mejia Montoya (1155713567)\",\"error_message\":null,\"order_id\":\"78F7D96EA21CCAE89A7B581295F34135_9PWEK0Y6JU_1692068249.1063\",\"due_date\":\"2023-08-15T09:57:34-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"Isabel\",\"last_name\":\"montoya\",\"email\":\"isa-montoya-16@hotmail.com\",\"phone_number\":\"3104326273\",\"address\":null,\"creation_date\":\"2023-08-14T21:57:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpqyevgzkutr5xtcjrb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 02:58:39','2023-08-15 02:58:39'),(7910,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-14T21:59:47-05:00\",\"transaction\":{\"id\":\"trpqyevgzkutr5xtcjrb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"102653637\",\"creation_date\":\"2023-08-14T21:57:34-05:00\",\"operation_date\":\"2023-08-14T21:59:40-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Mejia Montoya (1155713567)\",\"error_message\":null,\"order_id\":\"78F7D96EA21CCAE89A7B581295F34135_9PWEK0Y6JU_1692068249.1063\",\"due_date\":\"2023-08-15T09:57:34-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"Isabel\",\"last_name\":\"montoya\",\"email\":\"isa-montoya-16@hotmail.com\",\"phone_number\":\"3104326273\",\"address\":null,\"creation_date\":\"2023-08-14T21:57:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 02:59:48','2023-08-15 02:59:48'),(7911,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-15T02:13:51-06:00\",\"transaction\":{\"id\":\"trdqkevmtwe4d3y8qeod\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-11T16:59:32-06:00\",\"operation_date\":\"2023-08-11T16:59:32-06:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"7371364B3D72AC9A3ED8638E6F0BE2C9_NEI8TKS7HZ_1691791169.0953\",\"due_date\":\"2023-08-12T04:59:32-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-08-11T16:59:32-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdqkevmtwe4d3y8qeod/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 08:13:52','2023-08-15 08:13:52'),(7912,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-15T02:13:51-06:00\",\"transaction\":{\"id\":\"tryl7o3ez91o084dxkp1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-11T18:03:51-06:00\",\"operation_date\":\"2023-08-11T18:03:51-06:00\",\"description\":\"Pago Mensual academia: Miguel Angel Campiño Mogollon (1035981502)\",\"error_message\":null,\"order_id\":\"61F2585B0EBCF1F532C4D1EC9A7D51AA_UQY8VI02WA_1691795022.5632\",\"due_date\":\"2023-08-12T06:03:51-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Mogollon Granados\",\"email\":\"aleja220593@gmail.com\",\"phone_number\":\"3015635152\",\"address\":null,\"creation_date\":\"2023-08-11T18:03:51-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryl7o3ez91o084dxkp1/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 08:13:52','2023-08-15 08:13:52'),(7913,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-15T02:13:51-06:00\",\"transaction\":{\"id\":\"trxxx3a7iykjvscfczpl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-12T20:04:32-06:00\",\"operation_date\":\"2023-08-12T20:04:32-06:00\",\"description\":\"Pago Mensual academia: jeronimo Solarte Calle (1031942450)\",\"error_message\":null,\"order_id\":\"51E6D6E679953C6311757004D8CBBBA9_PMQB4DTGYL_1691888666.3297\",\"due_date\":\"2023-08-13T08:04:32-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"solarte Calle\",\"email\":\"jasol2@hotmail.com\",\"phone_number\":\"3182407090\",\"address\":null,\"creation_date\":\"2023-08-12T20:04:32-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxxx3a7iykjvscfczpl/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 08:13:52','2023-08-15 08:13:52'),(7914,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-15T02:13:51-06:00\",\"transaction\":{\"id\":\"trq7cj3bkll0aohn47tq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-12T10:13:02-06:00\",\"operation_date\":\"2023-08-12T10:13:02-06:00\",\"description\":\"Pago Mensual academia: santiago velez palacio (1020235193)\",\"error_message\":null,\"order_id\":\"E3EA33961A7C5B1EC04D6C97AA3B5379_M3ZAJH5UQB_1691853178.2688\",\"due_date\":\"2023-08-12T22:13:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yenny\",\"last_name\":\"palacio\",\"email\":\"yeapal_7@hotmail.com\",\"phone_number\":\"3104035722\",\"address\":null,\"creation_date\":\"2023-08-12T10:13:02-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq7cj3bkll0aohn47tq/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 08:13:52','2023-08-15 08:13:52'),(7915,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-15T02:13:51-06:00\",\"transaction\":{\"id\":\"truua5gumlzdgd1p0czi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-11T13:54:29-06:00\",\"operation_date\":\"2023-08-11T13:54:29-06:00\",\"description\":\"Pago Mensual academia: isaac jaramillo montoya (1036454668)\",\"error_message\":null,\"order_id\":\"7DE32147A4F1055BED9E4FAF3485A84D_2M6OKALVNI_1691780065.5887\",\"due_date\":\"2023-08-12T01:54:29-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"bibiana\",\"last_name\":\"montoya\",\"email\":\"bibimon1982@gmail.com\",\"phone_number\":\"3017793248\",\"address\":null,\"creation_date\":\"2023-08-11T13:54:29-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truua5gumlzdgd1p0czi/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 08:13:52','2023-08-15 08:13:52'),(7916,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  948\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-15T02:13:51-06:00\",\"transaction\":{\"id\":\"trpojploowxxlh5ndzwz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-11T13:19:11-06:00\",\"operation_date\":\"2023-08-11T13:19:11-06:00\",\"description\":\"Pago Mensual academia: Ismael Alejandro Medina Sanchez (1195213124)\",\"error_message\":null,\"order_id\":\"5B970A1D9BE0FD100063FD6CD688B73E_D7EHTAIKF8_1691777940.0216\",\"due_date\":\"2023-08-12T01:19:11-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ismael Alejandro\",\"last_name\":\"Medina Sanchez\",\"email\":\"maricelamj@hotmail.com\",\"phone_number\":\"3046721422\",\"address\":null,\"creation_date\":\"2023-08-11T13:19:11-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpojploowxxlh5ndzwz/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 08:13:52','2023-08-15 08:13:52'),(7917,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-15T02:13:51-06:00\",\"transaction\":{\"id\":\"trliwxkahqj5f4vpdjw4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-13T18:33:02-06:00\",\"operation_date\":\"2023-08-13T18:33:02-06:00\",\"description\":\"Pago Mensual academia: Mateo Esteban Arroyave Robles (1125279657)\",\"error_message\":null,\"order_id\":\"B071CFA81605A94AD80CFA2BBC747448_DKCGSA1IH4_1691969576.6959\",\"due_date\":\"2023-08-14T06:33:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"Robles Lomas\",\"email\":\"srobleslomas@hotmail.com\",\"phone_number\":\"3125036629\",\"address\":null,\"creation_date\":\"2023-08-13T18:33:02-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trliwxkahqj5f4vpdjw4/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 08:13:52','2023-08-15 08:13:52'),(7918,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-15T02:14:39-06:00\",\"transaction\":{\"id\":\"trigci8wt28wd3y98gio\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-12T21:24:16-06:00\",\"operation_date\":\"2023-08-12T21:24:16-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"091D584FCED301B442654DD8C23B3FC9_E-64D83EC7-95_1691893452.1311\",\"due_date\":\"2023-08-13T09:24:16-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"jairo\",\"last_name\":\"chaverra serna\",\"email\":\"jairchas1@yahoo.es\",\"phone_number\":\"3117701766\",\"address\":null,\"creation_date\":\"2023-08-12T21:24:16-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trigci8wt28wd3y98gio/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 08:14:40','2023-08-15 08:14:40'),(7919,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T06:45:31-05:00\",\"transaction\":{\"id\":\"trufr4calqzidyu7xpyi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T06:44:31-05:00\",\"operation_date\":\"2023-08-15T06:44:31-05:00\",\"description\":\"Pago Mensual academia: Pedro Yepes Ruiz (1022007398)\",\"error_message\":null,\"order_id\":\"0A348EDE8AC3768875037BACA5DE6E26_WOFVYMAI38_1692099864.7143\",\"due_date\":\"2023-08-15T18:44:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres\",\"last_name\":\"Yepes Arcila\",\"email\":\"ayepesa@hotmail.com\",\"phone_number\":\"3117462193\",\"address\":null,\"creation_date\":\"2023-08-15T06:44:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trufr4calqzidyu7xpyi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 11:45:32','2023-08-15 11:45:32'),(7920,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  797\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T06:47:23-05:00\",\"transaction\":{\"id\":\"trufr4calqzidyu7xpyi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"102828869\",\"creation_date\":\"2023-08-15T06:44:31-05:00\",\"operation_date\":\"2023-08-15T06:47:11-05:00\",\"description\":\"Pago Mensual academia: Pedro Yepes Ruiz (1022007398)\",\"error_message\":null,\"order_id\":\"0A348EDE8AC3768875037BACA5DE6E26_WOFVYMAI38_1692099864.7143\",\"due_date\":\"2023-08-15T18:44:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres\",\"last_name\":\"Yepes Arcila\",\"email\":\"ayepesa@hotmail.com\",\"phone_number\":\"3117462193\",\"address\":null,\"creation_date\":\"2023-08-15T06:44:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 11:47:24','2023-08-15 11:47:24'),(7921,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T07:29:53-05:00\",\"transaction\":{\"id\":\"triwevo80uewku92hhaf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T07:28:56-05:00\",\"operation_date\":\"2023-08-15T07:28:56-05:00\",\"description\":\"Pago Mensual academia: LUCCA OSPINA ESCOBAR (1239489418)\",\"error_message\":null,\"order_id\":\"7535BBB91C8FDE347AD861F293126633_MVUTS4BICG_1692102531.5062\",\"due_date\":\"2023-08-15T19:28:56-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jorge Alberto\",\"last_name\":\"Ospina Morales\",\"email\":\"jospinamo@gmail.com\",\"phone_number\":\"3148880141\",\"address\":null,\"creation_date\":\"2023-08-15T07:28:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triwevo80uewku92hhaf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 12:29:54','2023-08-15 12:29:54'),(7922,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T07:30:47-05:00\",\"transaction\":{\"id\":\"triwevo80uewku92hhaf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"102871310\",\"creation_date\":\"2023-08-15T07:28:56-05:00\",\"operation_date\":\"2023-08-15T07:30:40-05:00\",\"description\":\"Pago Mensual academia: LUCCA OSPINA ESCOBAR (1239489418)\",\"error_message\":null,\"order_id\":\"7535BBB91C8FDE347AD861F293126633_MVUTS4BICG_1692102531.5062\",\"due_date\":\"2023-08-15T19:28:56-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jorge Alberto\",\"last_name\":\"Ospina Morales\",\"email\":\"jospinamo@gmail.com\",\"phone_number\":\"3148880141\",\"address\":null,\"creation_date\":\"2023-08-15T07:28:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 12:30:48','2023-08-15 12:30:48'),(7923,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T09:09:27-05:00\",\"transaction\":{\"id\":\"trmo1oam1tici3yjk7nc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T09:08:28-05:00\",\"operation_date\":\"2023-08-15T09:08:28-05:00\",\"description\":\"Pago Mensual academia: sergio andres delgado guerrero (1127360594)\",\"error_message\":null,\"order_id\":\"FD9DCF1D146272BB05C490D790B6DA52_H2SBMGZWE7_1692108504.3616\",\"due_date\":\"2023-08-15T21:08:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"andres\",\"last_name\":\"delgado \",\"email\":\"andresedc@hotmail.com\",\"phone_number\":\"3187883259\",\"address\":null,\"creation_date\":\"2023-08-15T09:08:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmo1oam1tici3yjk7nc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 14:09:28','2023-08-15 14:09:28'),(7924,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T09:10:43-05:00\",\"transaction\":{\"id\":\"trmo1oam1tici3yjk7nc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"103051893\",\"creation_date\":\"2023-08-15T09:08:28-05:00\",\"operation_date\":\"2023-08-15T09:10:35-05:00\",\"description\":\"Pago Mensual academia: sergio andres delgado guerrero (1127360594)\",\"error_message\":null,\"order_id\":\"FD9DCF1D146272BB05C490D790B6DA52_H2SBMGZWE7_1692108504.3616\",\"due_date\":\"2023-08-15T21:08:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"andres\",\"last_name\":\"delgado \",\"email\":\"andresedc@hotmail.com\",\"phone_number\":\"3187883259\",\"address\":null,\"creation_date\":\"2023-08-15T09:08:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 14:10:43','2023-08-15 14:10:43'),(7925,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T09:11:04-05:00\",\"transaction\":{\"id\":\"tr04feryvbcvbmvycfcs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T09:11:04-05:00\",\"operation_date\":\"2023-08-15T09:11:04-05:00\",\"description\":\"Pago Mensual academia: sergio andres delgado guerrero (1127360594)\",\"error_message\":null,\"order_id\":\"3EA2DB50E62CEEFCEAF70A9D9A56A6F4_4ULR05GCFW_1692108661.046\",\"amount\":165900.00,\"customer\":{\"name\":\"sergio andres\",\"last_name\":\"delgado guerrero\",\"email\":\"andresedc@hotmail.com\",\"phone_number\":\"3187883259\",\"address\":null,\"creation_date\":\"2023-08-15T09:11:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr04feryvbcvbmvycfcs/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 14:11:04','2023-08-15 14:11:04'),(7926,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  882\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T09:48:12-05:00\",\"transaction\":{\"id\":\"trv9ewi0cwr91sm1jgt5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T09:46:59-05:00\",\"operation_date\":\"2023-08-15T09:46:59-05:00\",\"description\":\"Pago Mensual academia: maximiliano villa uribe (1034996599)\",\"error_message\":null,\"order_id\":\"_1692110814.8431\",\"due_date\":\"2023-08-15T21:46:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"uribe restrepo\",\"email\":\"julyurpo@hotmail.com\",\"phone_number\":\"3147988709\",\"address\":null,\"creation_date\":\"2023-08-15T09:46:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trv9ewi0cwr91sm1jgt5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 14:48:12','2023-08-15 14:48:12'),(7927,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  765\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T09:49:42-05:00\",\"transaction\":{\"id\":\"trv9ewi0cwr91sm1jgt5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"103151697\",\"creation_date\":\"2023-08-15T09:46:59-05:00\",\"operation_date\":\"2023-08-15T09:49:38-05:00\",\"description\":\"Pago Mensual academia: maximiliano villa uribe (1034996599)\",\"error_message\":null,\"order_id\":\"_1692110814.8431\",\"due_date\":\"2023-08-15T21:46:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"uribe restrepo\",\"email\":\"julyurpo@hotmail.com\",\"phone_number\":\"3147988709\",\"address\":null,\"creation_date\":\"2023-08-15T09:46:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 14:49:43','2023-08-15 14:49:43'),(7928,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T10:08:12-05:00\",\"transaction\":{\"id\":\"trwyp9vnfnfukxinwgym\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T10:07:21-05:00\",\"operation_date\":\"2023-08-15T10:07:21-05:00\",\"description\":\"Pago Mensual academia: Jacobo Velasquez Muñoz (1020323171)\",\"error_message\":null,\"order_id\":\"D494020FF8EC181EF98ED97AC3F25453_Z2UI9HGK64_1692111990.4502\",\"due_date\":\"2023-08-15T22:07:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhon Arley\",\"last_name\":\"Velasquez Gonzalez\",\"email\":\"honderdog@hotmail.com\",\"phone_number\":\"3104759413\",\"address\":null,\"creation_date\":\"2023-08-15T10:07:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwyp9vnfnfukxinwgym/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 15:08:13','2023-08-15 15:08:13'),(7929,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T09:12:21-06:00\",\"transaction\":{\"id\":\"trwyp9vnfnfukxinwgym\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"103206183\",\"creation_date\":\"2023-08-15T10:07:21-06:00\",\"operation_date\":\"2023-08-15T10:09:56-06:00\",\"description\":\"Pago Mensual academia: Jacobo Velasquez Muñoz (1020323171)\",\"error_message\":null,\"order_id\":\"D494020FF8EC181EF98ED97AC3F25453_Z2UI9HGK64_1692111990.4502\",\"due_date\":\"2023-08-15T22:07:21-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhon Arley\",\"last_name\":\"Velasquez Gonzalez\",\"email\":\"honderdog@hotmail.com\",\"phone_number\":\"3104759413\",\"address\":null,\"creation_date\":\"2023-08-15T10:07:21-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 15:12:22','2023-08-15 15:12:22'),(7930,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T10:33:53-05:00\",\"transaction\":{\"id\":\"trvxqdnxmpf5xzajxrx3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T10:33:52-05:00\",\"operation_date\":\"2023-08-15T10:33:52-05:00\",\"description\":\"Pago Mensual academia: ALEJANDRO POSADA QUINTERO (1023641305)\",\"error_message\":null,\"order_id\":\"D2350A54D774001D6078E326B4488878_1C9T5BWL4Y_1692113608.1236\",\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"POSADA QUINTERO\",\"email\":\"cristinaq312@gmail.com\",\"phone_number\":\"3216067476\",\"address\":null,\"creation_date\":\"2023-08-15T10:33:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvxqdnxmpf5xzajxrx3/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 15:33:53','2023-08-15 15:33:53'),(7931,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T10:35:12-05:00\",\"transaction\":{\"id\":\"trvxqdnxmpf5xzajxrx3\",\"authorization\":\"103512\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-15T10:33:52-05:00\",\"operation_date\":\"2023-08-15T10:35:11-05:00\",\"description\":\"Pago Mensual academia: ALEJANDRO POSADA QUINTERO (1023641305)\",\"error_message\":null,\"order_id\":\"D2350A54D774001D6078E326B4488878_1C9T5BWL4Y_1692113608.1236\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1307\",\"holder_name\":\"Isabel Quintero v.\",\"expiration_year\":\"27\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"POSADA QUINTERO\",\"email\":\"cristinaq312@gmail.com\",\"phone_number\":\"3216067476\",\"address\":null,\"creation_date\":\"2023-08-15T10:33:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvxqdnxmpf5xzajxrx3/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 15:35:13','2023-08-15 15:35:13'),(7932,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T10:52:42-05:00\",\"transaction\":{\"id\":\"trud3cupoguxvyj3fmnu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T10:51:32-05:00\",\"operation_date\":\"2023-08-15T10:51:32-05:00\",\"description\":\"Pago Mensual academia: sergio andres delgado guerrero (1127360594)\",\"error_message\":null,\"order_id\":\"3EA2DB50E62CEEFCEAF70A9D9A56A6F4_4ULR05GCFW_1692114682.5891\",\"due_date\":\"2023-08-15T22:51:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"andres\",\"last_name\":\"delgado \",\"email\":\"andresedc@hotmail.com\",\"phone_number\":\"3187883259\",\"address\":null,\"creation_date\":\"2023-08-15T10:51:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trud3cupoguxvyj3fmnu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 15:52:42','2023-08-15 15:52:42'),(7933,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T10:54:00-05:00\",\"transaction\":{\"id\":\"trud3cupoguxvyj3fmnu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"103332868\",\"creation_date\":\"2023-08-15T10:51:32-05:00\",\"operation_date\":\"2023-08-15T10:53:53-05:00\",\"description\":\"Pago Mensual academia: sergio andres delgado guerrero (1127360594)\",\"error_message\":null,\"order_id\":\"3EA2DB50E62CEEFCEAF70A9D9A56A6F4_4ULR05GCFW_1692114682.5891\",\"due_date\":\"2023-08-15T22:51:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"andres\",\"last_name\":\"delgado \",\"email\":\"andresedc@hotmail.com\",\"phone_number\":\"3187883259\",\"address\":null,\"creation_date\":\"2023-08-15T10:51:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 15:54:00','2023-08-15 15:54:00'),(7934,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T11:47:06-05:00\",\"transaction\":{\"id\":\"trur83yjfanq8nuiazy5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T11:45:24-05:00\",\"operation_date\":\"2023-08-15T11:45:24-05:00\",\"description\":\"Pago Mensual academia: Jeronimo Ayala Gallego (1015078260)\",\"error_message\":null,\"order_id\":\"87F7EE4FDB57BDFD52179947211B7EBB_8GV3B94OUF_1692117922.0872\",\"due_date\":\"2023-08-15T23:45:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Gallego\",\"email\":\"lynagallego@gmail.com\",\"phone_number\":\"3117070647\",\"address\":null,\"creation_date\":\"2023-08-15T11:45:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trur83yjfanq8nuiazy5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 16:47:07','2023-08-15 16:47:07'),(7935,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T10:48:30-06:00\",\"transaction\":{\"id\":\"trur83yjfanq8nuiazy5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"103499585\",\"creation_date\":\"2023-08-15T11:45:24-06:00\",\"operation_date\":\"2023-08-15T11:48:22-06:00\",\"description\":\"Pago Mensual academia: Jeronimo Ayala Gallego (1015078260)\",\"error_message\":null,\"order_id\":\"87F7EE4FDB57BDFD52179947211B7EBB_8GV3B94OUF_1692117922.0872\",\"due_date\":\"2023-08-15T23:45:24-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Gallego\",\"email\":\"lynagallego@gmail.com\",\"phone_number\":\"3117070647\",\"address\":null,\"creation_date\":\"2023-08-15T11:45:24-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 16:48:30','2023-08-15 16:48:30'),(7936,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T13:19:32-05:00\",\"transaction\":{\"id\":\"tricc8pddtukvod2fply\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T13:18:51-05:00\",\"operation_date\":\"2023-08-15T13:18:51-05:00\",\"description\":\"Pago Mensual academia: Emilio Rios Niño (1025773978)\",\"error_message\":null,\"order_id\":\"2A3D6D6CC4B5E77238C1FC1BB6CDD681_87S43QGJA1_1692123506.0472\",\"due_date\":\"2023-08-16T01:18:51-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Rios Niño\",\"email\":\"jhonatanandresriosgracia1729@gmail.com\",\"phone_number\":\"3014168946\",\"address\":null,\"creation_date\":\"2023-08-15T13:18:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tricc8pddtukvod2fply/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 18:19:33','2023-08-15 18:19:33'),(7937,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T13:21:04-05:00\",\"transaction\":{\"id\":\"tricc8pddtukvod2fply\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"103759528\",\"creation_date\":\"2023-08-15T13:18:51-05:00\",\"operation_date\":\"2023-08-15T13:20:47-05:00\",\"description\":\"Pago Mensual academia: Emilio Rios Niño (1025773978)\",\"error_message\":null,\"order_id\":\"2A3D6D6CC4B5E77238C1FC1BB6CDD681_87S43QGJA1_1692123506.0472\",\"due_date\":\"2023-08-16T01:18:51-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Rios Niño\",\"email\":\"jhonatanandresriosgracia1729@gmail.com\",\"phone_number\":\"3014168946\",\"address\":null,\"creation_date\":\"2023-08-15T13:18:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 18:21:04','2023-08-15 18:21:04'),(7938,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T14:04:26-05:00\",\"transaction\":{\"id\":\"trc5hvh3wlo9cqm17svf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T14:04:26-05:00\",\"operation_date\":\"2023-08-15T14:04:26-05:00\",\"description\":\"Pago Mensual academia: alejandro velez mejia (1039470692)\",\"error_message\":null,\"order_id\":\"831C2F88A604A07CA94314B56A4921B8_DTONQ18CEP_1692126166.3227\",\"amount\":66360.00,\"customer\":{\"name\":\"carolina\",\"last_name\":\"mejia carvajal\",\"email\":\"carolinamejia899@gmail.com\",\"phone_number\":\"3147512837\",\"address\":null,\"creation_date\":\"2023-08-15T14:04:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc5hvh3wlo9cqm17svf/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 19:04:27','2023-08-15 19:04:27'),(7939,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1141\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T14:04:53-05:00\",\"transaction\":{\"id\":\"trc5hvh3wlo9cqm17svf\",\"authorization\":\"140453\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-15T14:04:26-05:00\",\"operation_date\":\"2023-08-15T14:04:52-05:00\",\"description\":\"Pago Mensual academia: alejandro velez mejia (1039470692)\",\"error_message\":null,\"order_id\":\"831C2F88A604A07CA94314B56A4921B8_DTONQ18CEP_1692126166.3227\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX0491\",\"holder_name\":\"Katherine\",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":66360.00,\"customer\":{\"name\":\"carolina\",\"last_name\":\"mejia carvajal\",\"email\":\"carolinamejia899@gmail.com\",\"phone_number\":\"3147512837\",\"address\":null,\"creation_date\":\"2023-08-15T14:04:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc5hvh3wlo9cqm17svf/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 19:04:54','2023-08-15 19:04:54'),(7940,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T14:05:30-05:00\",\"transaction\":{\"id\":\"trvtmkbdsw8ei2nljnui\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T14:05:30-05:00\",\"operation_date\":\"2023-08-15T14:05:30-05:00\",\"description\":\"Pago Mensual academia: alejandro velez mejia (1039470692)\",\"error_message\":null,\"order_id\":\"2EB5657D37F474E4C4CF01E4882B8962_06I3B4KZGD_1692126327.4081\",\"amount\":116130.00,\"customer\":{\"name\":\"carolina\",\"last_name\":\"mejia carvajal\",\"email\":\"carolinamejia899@gmail.com\",\"phone_number\":\"3147512837\",\"address\":null,\"creation_date\":\"2023-08-15T14:05:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvtmkbdsw8ei2nljnui/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 19:05:31','2023-08-15 19:05:31'),(7941,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1143\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T14:06:01-05:00\",\"transaction\":{\"id\":\"trvtmkbdsw8ei2nljnui\",\"authorization\":\"140601\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-15T14:05:30-05:00\",\"operation_date\":\"2023-08-15T14:06:00-05:00\",\"description\":\"Pago Mensual academia: alejandro velez mejia (1039470692)\",\"error_message\":null,\"order_id\":\"2EB5657D37F474E4C4CF01E4882B8962_06I3B4KZGD_1692126327.4081\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX0491\",\"holder_name\":\"Katherine \",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":116130.00,\"customer\":{\"name\":\"carolina\",\"last_name\":\"mejia carvajal\",\"email\":\"carolinamejia899@gmail.com\",\"phone_number\":\"3147512837\",\"address\":null,\"creation_date\":\"2023-08-15T14:05:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvtmkbdsw8ei2nljnui/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 19:06:02','2023-08-15 19:06:02'),(7942,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T14:07:00-05:00\",\"transaction\":{\"id\":\"tre0myivfdnrisluxodg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T14:07:00-05:00\",\"operation_date\":\"2023-08-15T14:07:00-05:00\",\"description\":\"Pago Mensual academia: alejandro velez mejia (1039470692)\",\"error_message\":null,\"order_id\":\"E0126439E08DDFBDF4FAA952DC910590_GSP943RHW8_1692126417.4956\",\"amount\":116130.00,\"customer\":{\"name\":\"carolina\",\"last_name\":\"mejia carvajal\",\"email\":\"carolinamejia899@gmail.com\",\"phone_number\":\"3147512837\",\"address\":null,\"creation_date\":\"2023-08-15T14:07:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre0myivfdnrisluxodg/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 19:07:00','2023-08-15 19:07:00'),(7943,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1138\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T14:07:28-05:00\",\"transaction\":{\"id\":\"tre0myivfdnrisluxodg\",\"authorization\":\"140727\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-15T14:07:00-05:00\",\"operation_date\":\"2023-08-15T14:07:27-05:00\",\"description\":\"Pago Mensual academia: alejandro velez mejia (1039470692)\",\"error_message\":null,\"order_id\":\"E0126439E08DDFBDF4FAA952DC910590_GSP943RHW8_1692126417.4956\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX0491\",\"holder_name\":\"Kathe\",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":116130.00,\"customer\":{\"name\":\"carolina\",\"last_name\":\"mejia carvajal\",\"email\":\"carolinamejia899@gmail.com\",\"phone_number\":\"3147512837\",\"address\":null,\"creation_date\":\"2023-08-15T14:07:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre0myivfdnrisluxodg/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 19:07:28','2023-08-15 19:07:28'),(7944,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  856\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T15:08:34-05:00\",\"transaction\":{\"id\":\"trcsrb7deifbrnoscwi4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T15:08:34-05:00\",\"operation_date\":\"2023-08-15T15:08:34-05:00\",\"description\":\"Pago Mensual academia: Emiliano Jaramillo Moreno (1020324694)\",\"error_message\":null,\"order_id\":\"_1692130111.1567\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"moreno velez\",\"email\":\"danielamorenovelez@gmail.com\",\"phone_number\":\"3003530386\",\"address\":null,\"creation_date\":\"2023-08-15T15:08:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcsrb7deifbrnoscwi4/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 20:08:35','2023-08-15 20:08:35'),(7945,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1108\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T15:09:31-05:00\",\"transaction\":{\"id\":\"trcsrb7deifbrnoscwi4\",\"authorization\":\"249955\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-15T15:08:34-05:00\",\"operation_date\":\"2023-08-15T15:09:29-05:00\",\"description\":\"Pago Mensual academia: Emiliano Jaramillo Moreno (1020324694)\",\"error_message\":null,\"order_id\":\"_1692130111.1567\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"411054XXXXXX7777\",\"holder_name\":\"Diego a Jaramillo l\",\"expiration_year\":\"26\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"moreno velez\",\"email\":\"danielamorenovelez@gmail.com\",\"phone_number\":\"3003530386\",\"address\":null,\"creation_date\":\"2023-08-15T15:08:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcsrb7deifbrnoscwi4/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 20:09:31','2023-08-15 20:09:31'),(7946,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T15:36:29-05:00\",\"transaction\":{\"id\":\"trloxnp2gnj0iaaqxeqw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T15:35:18-05:00\",\"operation_date\":\"2023-08-15T15:35:18-05:00\",\"description\":\"Pago Inscripción academia: Emilio Carvajal Velasquez (1038266576)\",\"error_message\":null,\"order_id\":\"7D2BE41B1BDE6FF8FE45150C37488EBB_CJ8QLFUW9K_1692131715.0682\",\"due_date\":\"2023-08-16T03:35:18-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"steven\",\"last_name\":\"carvajal\",\"email\":\"teven1508@icloud.com\",\"phone_number\":\"3007549588\",\"address\":null,\"creation_date\":\"2023-08-15T15:35:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trloxnp2gnj0iaaqxeqw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 20:36:30','2023-08-15 20:36:30'),(7947,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T14:39:11-06:00\",\"transaction\":{\"id\":\"trloxnp2gnj0iaaqxeqw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104169669\",\"creation_date\":\"2023-08-15T15:35:18-06:00\",\"operation_date\":\"2023-08-15T15:37:38-06:00\",\"description\":\"Pago Inscripción academia: Emilio Carvajal Velasquez (1038266576)\",\"error_message\":null,\"order_id\":\"7D2BE41B1BDE6FF8FE45150C37488EBB_CJ8QLFUW9K_1692131715.0682\",\"due_date\":\"2023-08-16T03:35:18-06:00\",\"amount\":431000.00,\"customer\":{\"name\":\"steven\",\"last_name\":\"carvajal\",\"email\":\"teven1508@icloud.com\",\"phone_number\":\"3007549588\",\"address\":null,\"creation_date\":\"2023-08-15T15:35:18-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 20:39:12','2023-08-15 20:39:12'),(7948,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T15:43:00-05:00\",\"transaction\":{\"id\":\"trr6foq9wwietrkwfgvo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T15:41:56-05:00\",\"operation_date\":\"2023-08-15T15:41:56-05:00\",\"description\":\"Pago Mensual academia: maximiliano carvajal vasquez (1038873077)\",\"error_message\":null,\"order_id\":\"15E122E839DFDAA7CE969536F94AECF6_OVU4DRGJ9N_1692132113.8913\",\"due_date\":\"2023-08-16T03:41:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonathan\",\"last_name\":\"Carvajal Tobon\",\"email\":\"jcarvajal0125@hotmail.com\",\"phone_number\":\"3012185035\",\"address\":null,\"creation_date\":\"2023-08-15T15:41:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr6foq9wwietrkwfgvo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 20:43:01','2023-08-15 20:43:01'),(7949,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T15:44:09-05:00\",\"transaction\":{\"id\":\"trr6foq9wwietrkwfgvo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104190165\",\"creation_date\":\"2023-08-15T15:41:56-05:00\",\"operation_date\":\"2023-08-15T15:43:59-05:00\",\"description\":\"Pago Mensual academia: maximiliano carvajal vasquez (1038873077)\",\"error_message\":null,\"order_id\":\"15E122E839DFDAA7CE969536F94AECF6_OVU4DRGJ9N_1692132113.8913\",\"due_date\":\"2023-08-16T03:41:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonathan\",\"last_name\":\"Carvajal Tobon\",\"email\":\"jcarvajal0125@hotmail.com\",\"phone_number\":\"3012185035\",\"address\":null,\"creation_date\":\"2023-08-15T15:41:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 20:44:10','2023-08-15 20:44:10'),(7950,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T15:56:16-05:00\",\"transaction\":{\"id\":\"tre6olmsx6gmiyww9ax9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T15:55:36-05:00\",\"operation_date\":\"2023-08-15T15:55:36-05:00\",\"description\":\"Pago Mensual academia: Felipe Andres Montenegro Murillo (1035000564)\",\"error_message\":null,\"order_id\":\"9A85C12A21B76392747906FC7B2AFF92_4HCL658WE0_1692132933.3554\",\"due_date\":\"2023-08-16T03:55:36-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria\",\"last_name\":\"Camila\",\"email\":\"murillomariacamila@gmail.com\",\"phone_number\":\"3046304466\",\"address\":null,\"creation_date\":\"2023-08-15T15:55:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre6olmsx6gmiyww9ax9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 20:56:17','2023-08-15 20:56:17'),(7951,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T15:57:24-05:00\",\"transaction\":{\"id\":\"tre6olmsx6gmiyww9ax9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104232555\",\"creation_date\":\"2023-08-15T15:55:36-05:00\",\"operation_date\":\"2023-08-15T15:57:19-05:00\",\"description\":\"Pago Mensual academia: Felipe Andres Montenegro Murillo (1035000564)\",\"error_message\":null,\"order_id\":\"9A85C12A21B76392747906FC7B2AFF92_4HCL658WE0_1692132933.3554\",\"due_date\":\"2023-08-16T03:55:36-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria\",\"last_name\":\"Camila\",\"email\":\"murillomariacamila@gmail.com\",\"phone_number\":\"3046304466\",\"address\":null,\"creation_date\":\"2023-08-15T15:55:36-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 20:57:24','2023-08-15 20:57:24'),(7952,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T16:02:35-05:00\",\"transaction\":{\"id\":\"trvudmjneb5uj1iw8gkf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T16:01:56-05:00\",\"operation_date\":\"2023-08-15T16:01:56-05:00\",\"description\":\"Pago Mensual academia: miguel parra perez (1036458287)\",\"error_message\":null,\"order_id\":\"0DBB3FB9A5CD1D5F8A9075B5BB8070AA_423OLAIE6W_1692133313.3559\",\"due_date\":\"2023-08-16T04:01:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"miguel\",\"last_name\":\"parra perez\",\"email\":\"yolipc29@gmail.com\",\"phone_number\":\"3104735871\",\"address\":null,\"creation_date\":\"2023-08-15T16:01:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvudmjneb5uj1iw8gkf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 21:02:36','2023-08-15 21:02:36'),(7953,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  797\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T16:05:13-05:00\",\"transaction\":{\"id\":\"trvudmjneb5uj1iw8gkf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104252993\",\"creation_date\":\"2023-08-15T16:01:56-05:00\",\"operation_date\":\"2023-08-15T16:04:25-05:00\",\"description\":\"Pago Mensual academia: miguel parra perez (1036458287)\",\"error_message\":null,\"order_id\":\"0DBB3FB9A5CD1D5F8A9075B5BB8070AA_423OLAIE6W_1692133313.3559\",\"due_date\":\"2023-08-16T04:01:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"miguel\",\"last_name\":\"parra perez\",\"email\":\"yolipc29@gmail.com\",\"phone_number\":\"3104735871\",\"address\":null,\"creation_date\":\"2023-08-15T16:01:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 21:05:14','2023-08-15 21:05:14'),(7954,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T16:09:07-05:00\",\"transaction\":{\"id\":\"trvnajc9sqzmke7lywqs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T16:08:12-05:00\",\"operation_date\":\"2023-08-15T16:08:12-05:00\",\"description\":\"Pago Mensual academia: matias restrepo botero (1035011652)\",\"error_message\":null,\"order_id\":\"0FFACA95E3E5242BA1097AD8A9A6E95D_Y162SGEUJL_1692133664.0694\",\"due_date\":\"2023-08-16T04:08:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Restrepo Botero\",\"email\":\"andreaboterocorrea@gmail.com\",\"phone_number\":\"3103659855\",\"address\":null,\"creation_date\":\"2023-08-15T16:08:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvnajc9sqzmke7lywqs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 21:09:08','2023-08-15 21:09:08'),(7955,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T16:10:31-05:00\",\"transaction\":{\"id\":\"trvnajc9sqzmke7lywqs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104274111\",\"creation_date\":\"2023-08-15T16:08:12-05:00\",\"operation_date\":\"2023-08-15T16:10:16-05:00\",\"description\":\"Pago Mensual academia: matias restrepo botero (1035011652)\",\"error_message\":null,\"order_id\":\"0FFACA95E3E5242BA1097AD8A9A6E95D_Y162SGEUJL_1692133664.0694\",\"due_date\":\"2023-08-16T04:08:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Restrepo Botero\",\"email\":\"andreaboterocorrea@gmail.com\",\"phone_number\":\"3103659855\",\"address\":null,\"creation_date\":\"2023-08-15T16:08:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 21:10:31','2023-08-15 21:10:31'),(7956,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T16:20:53-05:00\",\"transaction\":{\"id\":\"trahbqbnjmqfcluuc9zd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T16:20:08-05:00\",\"operation_date\":\"2023-08-15T16:20:08-05:00\",\"description\":\"Pago Mensual academia: Juan Angel Saiz Muñoz (1033192660)\",\"error_message\":null,\"order_id\":\"7288251B27C8F0E73F4D7F483B06A785_GASI4DPKT7_1692134399.3543\",\"due_date\":\"2023-08-16T04:20:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Angel\",\"last_name\":\"Saiz Muñoz\",\"email\":\"danielamu.lopez@gmail.com\",\"phone_number\":\"3105971508\",\"address\":null,\"creation_date\":\"2023-08-15T16:20:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trahbqbnjmqfcluuc9zd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 21:20:54','2023-08-15 21:20:54'),(7957,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T16:22:29-05:00\",\"transaction\":{\"id\":\"trahbqbnjmqfcluuc9zd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104313290\",\"creation_date\":\"2023-08-15T16:20:08-05:00\",\"operation_date\":\"2023-08-15T16:22:20-05:00\",\"description\":\"Pago Mensual academia: Juan Angel Saiz Muñoz (1033192660)\",\"error_message\":null,\"order_id\":\"7288251B27C8F0E73F4D7F483B06A785_GASI4DPKT7_1692134399.3543\",\"due_date\":\"2023-08-16T04:20:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Angel\",\"last_name\":\"Saiz Muñoz\",\"email\":\"danielamu.lopez@gmail.com\",\"phone_number\":\"3105971508\",\"address\":null,\"creation_date\":\"2023-08-15T16:20:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 21:22:30','2023-08-15 21:22:30'),(7958,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T16:43:36-05:00\",\"transaction\":{\"id\":\"trvhyk9zpdd9vmbuhz5y\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T16:42:43-05:00\",\"operation_date\":\"2023-08-15T16:42:43-05:00\",\"description\":\"Pago Mensual academia: Mathias Cano Floréz (1041352972)\",\"error_message\":null,\"order_id\":\"5FEF3EFF51DC719C4A9F565A742D78F2_ORF7861352_1692135758.9704\",\"due_date\":\"2023-08-16T04:42:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana Marcela\",\"last_name\":\"Floréz\",\"email\":\"elianablandon15@outlook.com\",\"phone_number\":\"3145374253\",\"address\":null,\"creation_date\":\"2023-08-15T16:42:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvhyk9zpdd9vmbuhz5y/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 21:43:37','2023-08-15 21:43:37'),(7959,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T16:46:11-05:00\",\"transaction\":{\"id\":\"trvhyk9zpdd9vmbuhz5y\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104385689\",\"creation_date\":\"2023-08-15T16:42:43-05:00\",\"operation_date\":\"2023-08-15T16:45:42-05:00\",\"description\":\"Pago Mensual academia: Mathias Cano Floréz (1041352972)\",\"error_message\":null,\"order_id\":\"5FEF3EFF51DC719C4A9F565A742D78F2_ORF7861352_1692135758.9704\",\"due_date\":\"2023-08-16T04:42:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana Marcela\",\"last_name\":\"Floréz\",\"email\":\"elianablandon15@outlook.com\",\"phone_number\":\"3145374253\",\"address\":null,\"creation_date\":\"2023-08-15T16:42:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 21:46:11','2023-08-15 21:46:11'),(7960,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T16:49:44-05:00\",\"transaction\":{\"id\":\"trwvvgawouf8m3wxxfbi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T16:47:30-05:00\",\"operation_date\":\"2023-08-15T16:47:30-05:00\",\"description\":\"Pago Mensual academia: maximiliano carvajal vasquez (1038873077)\",\"error_message\":null,\"order_id\":\"0141A8AEDB1B53970FAC7C81DAC79FBE_AVGNDUWR0E_1692136042.8062\",\"due_date\":\"2023-08-16T04:47:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonathan\",\"last_name\":\"Carvajal Tobon\",\"email\":\"jcarvajal0125@hotmail.com\",\"phone_number\":\"3012185035\",\"address\":null,\"creation_date\":\"2023-08-15T16:47:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwvvgawouf8m3wxxfbi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 21:49:45','2023-08-15 21:49:45'),(7961,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T16:51:16-05:00\",\"transaction\":{\"id\":\"trwvvgawouf8m3wxxfbi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104404447\",\"creation_date\":\"2023-08-15T16:47:30-05:00\",\"operation_date\":\"2023-08-15T16:51:11-05:00\",\"description\":\"Pago Mensual academia: maximiliano carvajal vasquez (1038873077)\",\"error_message\":null,\"order_id\":\"0141A8AEDB1B53970FAC7C81DAC79FBE_AVGNDUWR0E_1692136042.8062\",\"due_date\":\"2023-08-16T04:47:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonathan\",\"last_name\":\"Carvajal Tobon\",\"email\":\"jcarvajal0125@hotmail.com\",\"phone_number\":\"3012185035\",\"address\":null,\"creation_date\":\"2023-08-15T16:47:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 21:51:17','2023-08-15 21:51:17'),(7962,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T17:12:20-05:00\",\"transaction\":{\"id\":\"trz9you0hdq43n9b2m7g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T17:11:34-05:00\",\"operation_date\":\"2023-08-15T17:11:34-05:00\",\"description\":\"Pago Mensual academia: juan roman pachon campillo (1023644640)\",\"error_message\":null,\"order_id\":\"CF1CF43CBA274AE7F413E864682B80F8_S4UH0NMFCY_1692137489.5704\",\"due_date\":\"2023-08-16T05:11:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"danget damian\",\"last_name\":\"pachon peñaloza\",\"email\":\"danget1@hotmail.com\",\"phone_number\":\"3173004892\",\"address\":null,\"creation_date\":\"2023-08-15T17:11:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz9you0hdq43n9b2m7g/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 22:12:21','2023-08-15 22:12:21'),(7963,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T16:15:10-06:00\",\"transaction\":{\"id\":\"trz9you0hdq43n9b2m7g\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104472309\",\"creation_date\":\"2023-08-15T17:11:34-06:00\",\"operation_date\":\"2023-08-15T17:13:13-06:00\",\"description\":\"Pago Mensual academia: juan roman pachon campillo (1023644640)\",\"error_message\":null,\"order_id\":\"CF1CF43CBA274AE7F413E864682B80F8_S4UH0NMFCY_1692137489.5704\",\"due_date\":\"2023-08-16T05:11:34-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"danget damian\",\"last_name\":\"pachon peñaloza\",\"email\":\"danget1@hotmail.com\",\"phone_number\":\"3173004892\",\"address\":null,\"creation_date\":\"2023-08-15T17:11:34-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 22:15:11','2023-08-15 22:15:11'),(7964,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T17:33:13-05:00\",\"transaction\":{\"id\":\"trwzoilihifvtmgfko6e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T17:29:58-05:00\",\"operation_date\":\"2023-08-15T17:29:58-05:00\",\"description\":\"Pago Mensual academia: Martin Munera Gonzalez (1011516427)\",\"error_message\":null,\"order_id\":\"5401ACFE633E6817B508B84D23686743_460G3OYVLZ_1692138594.2777\",\"due_date\":\"2023-08-16T05:29:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Gonzalez\",\"email\":\"jcristina1521@hotmail.com\",\"phone_number\":\"3117076577\",\"address\":null,\"creation_date\":\"2023-08-15T17:29:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwzoilihifvtmgfko6e/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 22:33:14','2023-08-15 22:33:14'),(7965,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T17:35:58-05:00\",\"transaction\":{\"id\":\"trwzoilihifvtmgfko6e\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104529963\",\"creation_date\":\"2023-08-15T17:29:58-05:00\",\"operation_date\":\"2023-08-15T17:35:51-05:00\",\"description\":\"Pago Mensual academia: Martin Munera Gonzalez (1011516427)\",\"error_message\":null,\"order_id\":\"5401ACFE633E6817B508B84D23686743_460G3OYVLZ_1692138594.2777\",\"due_date\":\"2023-08-16T05:29:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Gonzalez\",\"email\":\"jcristina1521@hotmail.com\",\"phone_number\":\"3117076577\",\"address\":null,\"creation_date\":\"2023-08-15T17:29:58-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 22:35:59','2023-08-15 22:35:59'),(7966,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T17:36:06-05:00\",\"transaction\":{\"id\":\"trthlo0edhqgselr2dgu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T17:35:05-05:00\",\"operation_date\":\"2023-08-15T17:35:05-05:00\",\"description\":\"Pago Mensual academia: Emiliano velez Arteaga (1035006643)\",\"error_message\":null,\"order_id\":\"1FD7B875D3473501D1B771EBE934CA59_9UX1YM37BQ_1692138902.9281\",\"due_date\":\"2023-08-16T05:35:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra\",\"last_name\":\"Arteaga\",\"email\":\"sandraarteagacorrea@hotmail.com\",\"phone_number\":\"3104646458\",\"address\":null,\"creation_date\":\"2023-08-15T17:35:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trthlo0edhqgselr2dgu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 22:36:06','2023-08-15 22:36:06'),(7967,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T17:37:34-05:00\",\"transaction\":{\"id\":\"trthlo0edhqgselr2dgu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104538307\",\"creation_date\":\"2023-08-15T17:35:05-05:00\",\"operation_date\":\"2023-08-15T17:37:23-05:00\",\"description\":\"Pago Mensual academia: Emiliano velez Arteaga (1035006643)\",\"error_message\":null,\"order_id\":\"1FD7B875D3473501D1B771EBE934CA59_9UX1YM37BQ_1692138902.9281\",\"due_date\":\"2023-08-16T05:35:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra\",\"last_name\":\"Arteaga\",\"email\":\"sandraarteagacorrea@hotmail.com\",\"phone_number\":\"3104646458\",\"address\":null,\"creation_date\":\"2023-08-15T17:35:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 22:37:35','2023-08-15 22:37:35'),(7968,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T17:51:06-05:00\",\"transaction\":{\"id\":\"trefirdycgrjxyede5uy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T17:50:24-05:00\",\"operation_date\":\"2023-08-15T17:50:24-05:00\",\"description\":\"Pago Mensual academia: Matias Bustamante Muñoz (1021935064)\",\"error_message\":null,\"order_id\":\"6C0958D82A830A02C0718147B1B565C1_A4QDTSGF89_1692139818.3878\",\"due_date\":\"2023-08-16T05:50:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego Alejandro\",\"last_name\":\"Bustamante\",\"email\":\"dalejandrobte@gmail.com\",\"phone_number\":\"3154501141\",\"address\":null,\"creation_date\":\"2023-08-15T17:50:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trefirdycgrjxyede5uy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 22:51:06','2023-08-15 22:51:06'),(7969,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T17:52:37-05:00\",\"transaction\":{\"id\":\"trefirdycgrjxyede5uy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104582293\",\"creation_date\":\"2023-08-15T17:50:24-05:00\",\"operation_date\":\"2023-08-15T17:52:30-05:00\",\"description\":\"Pago Mensual academia: Matias Bustamante Muñoz (1021935064)\",\"error_message\":null,\"order_id\":\"6C0958D82A830A02C0718147B1B565C1_A4QDTSGF89_1692139818.3878\",\"due_date\":\"2023-08-16T05:50:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego Alejandro\",\"last_name\":\"Bustamante\",\"email\":\"dalejandrobte@gmail.com\",\"phone_number\":\"3154501141\",\"address\":null,\"creation_date\":\"2023-08-15T17:50:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 22:52:38','2023-08-15 22:52:38'),(7970,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T18:12:49-05:00\",\"transaction\":{\"id\":\"trvbimkclfbe4f0sutfh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T18:11:21-05:00\",\"operation_date\":\"2023-08-15T18:11:21-05:00\",\"description\":\"Pago Mensual academia: Martin Munera Gonzalez (1011516427)\",\"error_message\":null,\"order_id\":\"B5B0DB7F3A77CA4FCF9ECA57AA7181CA_WVCUO51327_1692141078.103\",\"due_date\":\"2023-08-16T06:11:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Gonzalez\",\"email\":\"jcristina1521@hotmail.com\",\"phone_number\":\"3117076577\",\"address\":null,\"creation_date\":\"2023-08-15T18:11:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvbimkclfbe4f0sutfh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 23:12:50','2023-08-15 23:12:50'),(7971,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T18:14:25-05:00\",\"transaction\":{\"id\":\"trvbimkclfbe4f0sutfh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104644939\",\"creation_date\":\"2023-08-15T18:11:21-05:00\",\"operation_date\":\"2023-08-15T18:14:13-05:00\",\"description\":\"Pago Mensual academia: Martin Munera Gonzalez (1011516427)\",\"error_message\":null,\"order_id\":\"B5B0DB7F3A77CA4FCF9ECA57AA7181CA_WVCUO51327_1692141078.103\",\"due_date\":\"2023-08-16T06:11:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Gonzalez\",\"email\":\"jcristina1521@hotmail.com\",\"phone_number\":\"3117076577\",\"address\":null,\"creation_date\":\"2023-08-15T18:11:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-15 23:14:26','2023-08-15 23:14:26'),(7972,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T18:52:55-05:00\",\"transaction\":{\"id\":\"trfv5kae85iknem1t8s8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T18:52:54-05:00\",\"operation_date\":\"2023-08-15T18:52:54-05:00\",\"description\":\"Pago Mensual academia: Emiliano Gómez Taborda (1020320534)\",\"error_message\":null,\"order_id\":\"EE14C41E92EC5C97B54CF9B74E25BD99_ZO5DTX01GY_1692143572.0303\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Gómez Taborda\",\"email\":\"mtaborda02@hotmail.com\",\"phone_number\":\"3128153380\",\"address\":null,\"creation_date\":\"2023-08-15T18:52:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfv5kae85iknem1t8s8/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 23:52:55','2023-08-15 23:52:55'),(7973,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1150\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T18:54:35-05:00\",\"transaction\":{\"id\":\"trfv5kae85iknem1t8s8\",\"authorization\":\"R02306\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-15T18:52:54-05:00\",\"operation_date\":\"2023-08-15T18:54:34-05:00\",\"description\":\"Pago Mensual academia: Emiliano Gómez Taborda (1020320534)\",\"error_message\":null,\"order_id\":\"EE14C41E92EC5C97B54CF9B74E25BD99_ZO5DTX01GY_1692143572.0303\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530373XXXXXX3057\",\"holder_name\":\"Daniel e Gómez b\",\"expiration_year\":\"25\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Gómez Taborda\",\"email\":\"mtaborda02@hotmail.com\",\"phone_number\":\"3128153380\",\"address\":null,\"creation_date\":\"2023-08-15T18:52:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfv5kae85iknem1t8s8/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 23:54:36','2023-08-15 23:54:36'),(7974,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T18:55:10-05:00\",\"transaction\":{\"id\":\"tr6usfpvpllsfywrpudp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T18:55:10-05:00\",\"operation_date\":\"2023-08-15T18:55:10-05:00\",\"description\":\"Pago Mensual academia: Emiliano Gómez Taborda (1020320534)\",\"error_message\":null,\"order_id\":\"939314105CE8701E67489642EF4D49E8_UMVQJKDP6G_1692143708.7188\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Gómez Taborda\",\"email\":\"mtaborda02@hotmail.com\",\"phone_number\":\"3128153380\",\"address\":null,\"creation_date\":\"2023-08-15T18:55:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6usfpvpllsfywrpudp/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 23:55:11','2023-08-15 23:55:11'),(7975,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1151\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T18:56:09-05:00\",\"transaction\":{\"id\":\"tr6usfpvpllsfywrpudp\",\"authorization\":\"R03050\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-15T18:55:10-05:00\",\"operation_date\":\"2023-08-15T18:56:08-05:00\",\"description\":\"Pago Mensual academia: Emiliano Gómez Taborda (1020320534)\",\"error_message\":null,\"order_id\":\"939314105CE8701E67489642EF4D49E8_UMVQJKDP6G_1692143708.7188\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530373XXXXXX3057\",\"holder_name\":\"Daniel e Gómez b \",\"expiration_year\":\"25\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Gómez Taborda\",\"email\":\"mtaborda02@hotmail.com\",\"phone_number\":\"3128153380\",\"address\":null,\"creation_date\":\"2023-08-15T18:55:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6usfpvpllsfywrpudp/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 23:56:09','2023-08-15 23:56:09'),(7976,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T18:56:40-05:00\",\"transaction\":{\"id\":\"tr4tjjmmrtcx5zi9r6ya\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T18:56:40-05:00\",\"operation_date\":\"2023-08-15T18:56:40-05:00\",\"description\":\"Pago Mensual academia: Emiliano Gómez Taborda (1020320534)\",\"error_message\":null,\"order_id\":\"A9DE093D0622ED782D267FA3F1953228_VTDH8F1MGJ_1692143798.8282\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Gómez Taborda\",\"email\":\"mtaborda02@hotmail.com\",\"phone_number\":\"3128153380\",\"address\":null,\"creation_date\":\"2023-08-15T18:56:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4tjjmmrtcx5zi9r6ya/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 23:56:41','2023-08-15 23:56:41'),(7977,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1151\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T18:57:23-05:00\",\"transaction\":{\"id\":\"tr4tjjmmrtcx5zi9r6ya\",\"authorization\":\"R03662\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-15T18:56:40-05:00\",\"operation_date\":\"2023-08-15T18:57:22-05:00\",\"description\":\"Pago Mensual academia: Emiliano Gómez Taborda (1020320534)\",\"error_message\":null,\"order_id\":\"A9DE093D0622ED782D267FA3F1953228_VTDH8F1MGJ_1692143798.8282\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530373XXXXXX3057\",\"holder_name\":\"Daniel e Gómez b \",\"expiration_year\":\"25\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Gómez Taborda\",\"email\":\"mtaborda02@hotmail.com\",\"phone_number\":\"3128153380\",\"address\":null,\"creation_date\":\"2023-08-15T18:56:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4tjjmmrtcx5zi9r6ya/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-15 23:57:24','2023-08-15 23:57:24'),(7978,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T19:38:35-05:00\",\"transaction\":{\"id\":\"trqthbfvvnfknrpmiesb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T19:37:16-05:00\",\"operation_date\":\"2023-08-15T19:37:16-05:00\",\"description\":\"Pago Mensual academia: Anthony Suárez Rendón (1033495665)\",\"error_message\":null,\"order_id\":\"DA9E6A4A4AECA98588E4DD77CEB37695_2NHX4ODQ1R_1692146227.8404\",\"due_date\":\"2023-08-16T07:37:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Melissa\",\"last_name\":\"Rendón valenzuela\",\"email\":\"melis_78@hotmail.com\",\"phone_number\":\"3012871657\",\"address\":null,\"creation_date\":\"2023-08-15T19:37:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqthbfvvnfknrpmiesb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 00:38:35','2023-08-16 00:38:35'),(7979,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T18:42:12-06:00\",\"transaction\":{\"id\":\"trqthbfvvnfknrpmiesb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"104888043\",\"creation_date\":\"2023-08-15T19:37:16-06:00\",\"operation_date\":\"2023-08-15T19:39:48-06:00\",\"description\":\"Pago Mensual academia: Anthony Suárez Rendón (1033495665)\",\"error_message\":null,\"order_id\":\"DA9E6A4A4AECA98588E4DD77CEB37695_2NHX4ODQ1R_1692146227.8404\",\"due_date\":\"2023-08-16T07:37:16-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Melissa\",\"last_name\":\"Rendón valenzuela\",\"email\":\"melis_78@hotmail.com\",\"phone_number\":\"3012871657\",\"address\":null,\"creation_date\":\"2023-08-15T19:37:16-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 00:42:13','2023-08-16 00:42:13'),(7980,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T21:13:56-05:00\",\"transaction\":{\"id\":\"trtj0begdmdx9bjy66un\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T21:13:56-05:00\",\"operation_date\":\"2023-08-15T21:13:56-05:00\",\"description\":\"Pago Mensual academia: lorenzo morales sanchez (1023545834)\",\"error_message\":null,\"order_id\":\"0E4F5CC9F4F3F7F1651A6B9F9214E5B1_Y1XFUZLCWV_1692152032.6049\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Morales\",\"email\":\"xandermoraserna@gmail.com\",\"phone_number\":\"3104747465\",\"address\":null,\"creation_date\":\"2023-08-15T21:13:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtj0begdmdx9bjy66un/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-16 02:13:57','2023-08-16 02:13:57'),(7981,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1146\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T21:14:53-05:00\",\"transaction\":{\"id\":\"trtj0begdmdx9bjy66un\",\"authorization\":\"211452\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-15T21:13:56-05:00\",\"operation_date\":\"2023-08-15T21:14:52-05:00\",\"description\":\"Pago Mensual academia: lorenzo morales sanchez (1023545834)\",\"error_message\":null,\"order_id\":\"0E4F5CC9F4F3F7F1651A6B9F9214E5B1_Y1XFUZLCWV_1692152032.6049\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX4281\",\"holder_name\":\"Alexander morales \",\"expiration_year\":\"25\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Morales\",\"email\":\"xandermoraserna@gmail.com\",\"phone_number\":\"3104747465\",\"address\":null,\"creation_date\":\"2023-08-15T21:13:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtj0begdmdx9bjy66un/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-16 02:14:53','2023-08-16 02:14:53'),(7982,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  884\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T21:23:12-05:00\",\"transaction\":{\"id\":\"trhnui1yczskqggitcdj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T21:23:12-05:00\",\"operation_date\":\"2023-08-15T21:23:12-05:00\",\"description\":\"Pago Mensual academia: Antonio Luna Muñoz (1036459411)\",\"error_message\":null,\"order_id\":\"B87470782489389F344C4FA4CEB5260C_7FVESQXB84_1692152583.0108\",\"amount\":165900.00,\"customer\":{\"name\":\"Aparicio\",\"last_name\":\"Luna Toro\",\"email\":\"aluna_215@hotmail.com\",\"phone_number\":\"3014344748\",\"address\":null,\"creation_date\":\"2023-08-15T21:23:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhnui1yczskqggitcdj/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-16 02:23:12','2023-08-16 02:23:12'),(7983,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1140\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T21:24:22-05:00\",\"transaction\":{\"id\":\"trhnui1yczskqggitcdj\",\"authorization\":\"R09308\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-15T21:23:12-05:00\",\"operation_date\":\"2023-08-15T21:24:21-05:00\",\"description\":\"Pago Mensual academia: Antonio Luna Muñoz (1036459411)\",\"error_message\":null,\"order_id\":\"B87470782489389F344C4FA4CEB5260C_7FVESQXB84_1692152583.0108\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530372XXXXXX1905\",\"holder_name\":\"Gloria P Muñoz C\",\"expiration_year\":\"27\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Aparicio\",\"last_name\":\"Luna Toro\",\"email\":\"aluna_215@hotmail.com\",\"phone_number\":\"3014344748\",\"address\":null,\"creation_date\":\"2023-08-15T21:23:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhnui1yczskqggitcdj/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-16 02:24:23','2023-08-16 02:24:23'),(7984,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T21:33:55-05:00\",\"transaction\":{\"id\":\"tromqpmd2edn8seiltvm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T21:31:51-05:00\",\"operation_date\":\"2023-08-15T21:31:51-05:00\",\"description\":\"Pago Mensual academia: jeronimo garcia piedrahita (1035006080)\",\"error_message\":null,\"order_id\":\"EAD81FE8CFE9FDA9E4C2093E17E4D024_D7Y62SAELK_1692153097.8116\",\"due_date\":\"2023-08-16T09:31:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Dairo\",\"last_name\":\"garcia gomez\",\"email\":\"jgarciagomez@outlook.com\",\"phone_number\":\"3233988098\",\"address\":null,\"creation_date\":\"2023-08-15T21:31:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tromqpmd2edn8seiltvm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 02:33:55','2023-08-16 02:33:55'),(7985,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T21:35:19-05:00\",\"transaction\":{\"id\":\"tromqpmd2edn8seiltvm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105188126\",\"creation_date\":\"2023-08-15T21:31:51-05:00\",\"operation_date\":\"2023-08-15T21:35:09-05:00\",\"description\":\"Pago Mensual academia: jeronimo garcia piedrahita (1035006080)\",\"error_message\":null,\"order_id\":\"EAD81FE8CFE9FDA9E4C2093E17E4D024_D7Y62SAELK_1692153097.8116\",\"due_date\":\"2023-08-16T09:31:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Dairo\",\"last_name\":\"garcia gomez\",\"email\":\"jgarciagomez@outlook.com\",\"phone_number\":\"3233988098\",\"address\":null,\"creation_date\":\"2023-08-15T21:31:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 02:35:19','2023-08-16 02:35:19'),(7986,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T21:36:54-05:00\",\"transaction\":{\"id\":\"trno5fynrne7obaerz2m\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-15T21:36:54-05:00\",\"operation_date\":\"2023-08-15T21:36:54-05:00\",\"description\":\"Pago Mensual academia: Martin Monsalve Guzman (1033202456)\",\"error_message\":null,\"order_id\":\"9BDB8B1FAFFA4B3D41779BB495D79FB9_KFW0JILTZX_1692153411.4991\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Monsalve Arbelaez\",\"email\":\"alejandromonsalve91@gmail.com\",\"phone_number\":\"3002140944\",\"address\":null,\"creation_date\":\"2023-08-15T21:36:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trno5fynrne7obaerz2m/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-16 02:36:54','2023-08-16 02:36:54'),(7987,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1157\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T21:44:16-05:00\",\"transaction\":{\"id\":\"trno5fynrne7obaerz2m\",\"authorization\":\"431785\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-15T21:36:54-05:00\",\"operation_date\":\"2023-08-15T21:44:15-05:00\",\"description\":\"Pago Mensual academia: Martin Monsalve Guzman (1033202456)\",\"error_message\":null,\"order_id\":\"9BDB8B1FAFFA4B3D41779BB495D79FB9_KFW0JILTZX_1692153411.4991\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459425XXXXXX6711\",\"holder_name\":\"Alejandro monsalve a\",\"expiration_year\":\"27\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Monsalve Arbelaez\",\"email\":\"alejandromonsalve91@gmail.com\",\"phone_number\":\"3002140944\",\"address\":null,\"creation_date\":\"2023-08-15T21:36:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trno5fynrne7obaerz2m/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-16 02:44:17','2023-08-16 02:44:17'),(7988,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T21:53:09-05:00\",\"transaction\":{\"id\":\"trbhy2w3pc9cok71wwsm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T21:52:17-05:00\",\"operation_date\":\"2023-08-15T21:52:17-05:00\",\"description\":\"Pago Mensual academia: Simon Cartagena Giraldo (1032182787)\",\"error_message\":null,\"order_id\":\"E52AD5C9F751F599492B4F087ED7ECFC_PRH8J315MK_1692154333.7463\",\"due_date\":\"2023-08-16T09:52:17-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yessica\",\"last_name\":\"Giraldo Guzman\",\"email\":\"yessikdar06@gmail.com\",\"phone_number\":\"3128389566\",\"address\":null,\"creation_date\":\"2023-08-15T21:52:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbhy2w3pc9cok71wwsm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 02:53:10','2023-08-16 02:53:10'),(7989,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T20:54:09-06:00\",\"transaction\":{\"id\":\"trbhy2w3pc9cok71wwsm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105231770\",\"creation_date\":\"2023-08-15T21:52:17-06:00\",\"operation_date\":\"2023-08-15T21:54:03-06:00\",\"description\":\"Pago Mensual academia: Simon Cartagena Giraldo (1032182787)\",\"error_message\":null,\"order_id\":\"E52AD5C9F751F599492B4F087ED7ECFC_PRH8J315MK_1692154333.7463\",\"due_date\":\"2023-08-16T09:52:17-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yessica\",\"last_name\":\"Giraldo Guzman\",\"email\":\"yessikdar06@gmail.com\",\"phone_number\":\"3128389566\",\"address\":null,\"creation_date\":\"2023-08-15T21:52:17-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 02:54:09','2023-08-16 02:54:09'),(7990,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-15T23:22:20-05:00\",\"transaction\":{\"id\":\"trgiuv7wtidwjp0lgyvx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-15T23:19:16-05:00\",\"operation_date\":\"2023-08-15T23:19:16-05:00\",\"description\":\"Pago Mensual academia: maximiliano bravo sanchez (1126789526)\",\"error_message\":null,\"order_id\":\"AFAB3E9707435D6B0888B566D7AD3FF8_EBSZ0F1YCG_1692159550.7164\",\"due_date\":\"2023-08-16T11:19:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Anáis \",\"last_name\":\"Sanchez \",\"email\":\"the-nani14@hotmail.com\",\"phone_number\":\"3025558808\",\"address\":null,\"creation_date\":\"2023-08-15T23:19:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgiuv7wtidwjp0lgyvx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 04:22:20','2023-08-16 04:22:20'),(7991,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-15T23:23:52-05:00\",\"transaction\":{\"id\":\"trgiuv7wtidwjp0lgyvx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105362601\",\"creation_date\":\"2023-08-15T23:19:16-05:00\",\"operation_date\":\"2023-08-15T23:23:44-05:00\",\"description\":\"Pago Mensual academia: maximiliano bravo sanchez (1126789526)\",\"error_message\":null,\"order_id\":\"AFAB3E9707435D6B0888B566D7AD3FF8_EBSZ0F1YCG_1692159550.7164\",\"due_date\":\"2023-08-16T11:19:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Anáis \",\"last_name\":\"Sanchez \",\"email\":\"the-nani14@hotmail.com\",\"phone_number\":\"3025558808\",\"address\":null,\"creation_date\":\"2023-08-15T23:19:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 04:23:52','2023-08-16 04:23:52'),(7992,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-16T02:18:47-06:00\",\"transaction\":{\"id\":\"trtsewfyiezmurr65c5a\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-15T09:49:56-06:00\",\"operation_date\":\"2023-08-15T09:49:56-06:00\",\"description\":\"Pago Mensual academia: maximiliano villa uribe (1034996599)\",\"error_message\":null,\"order_id\":\"E2065CB56F5533494522C46A72F1DFB0_9YVHEN70UI_1692110994.5028\",\"due_date\":\"2023-08-15T21:49:56-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"uribe restrepo\",\"email\":\"julyurpo@hotmail.com\",\"phone_number\":\"3147988709\",\"address\":null,\"creation_date\":\"2023-08-15T09:49:56-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtsewfyiezmurr65c5a/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 08:18:48','2023-08-16 08:18:48'),(7993,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T05:42:12-05:00\",\"transaction\":{\"id\":\"trn1wsjgj5bcv1j9bhu2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T05:40:43-05:00\",\"operation_date\":\"2023-08-16T05:40:43-05:00\",\"description\":\"Pago Mensual academia: Simón Jiménez Cano (1130704440)\",\"error_message\":null,\"order_id\":\"5A9D8BF5B7A4B35F3110DDE8673BDDA2_13WQ5CYRJL_1692182440.814\",\"due_date\":\"2023-08-16T17:40:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Jiménez Cano\",\"email\":\"mariacano3011@gmail.com\",\"phone_number\":\"3133424011\",\"address\":null,\"creation_date\":\"2023-08-16T05:40:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trn1wsjgj5bcv1j9bhu2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 10:42:12','2023-08-16 10:42:12'),(7994,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T05:43:54-05:00\",\"transaction\":{\"id\":\"trn1wsjgj5bcv1j9bhu2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105446286\",\"creation_date\":\"2023-08-16T05:40:43-05:00\",\"operation_date\":\"2023-08-16T05:43:45-05:00\",\"description\":\"Pago Mensual academia: Simón Jiménez Cano (1130704440)\",\"error_message\":null,\"order_id\":\"5A9D8BF5B7A4B35F3110DDE8673BDDA2_13WQ5CYRJL_1692182440.814\",\"due_date\":\"2023-08-16T17:40:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Jiménez Cano\",\"email\":\"mariacano3011@gmail.com\",\"phone_number\":\"3133424011\",\"address\":null,\"creation_date\":\"2023-08-16T05:40:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 10:43:55','2023-08-16 10:43:55'),(7995,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T08:08:11-05:00\",\"transaction\":{\"id\":\"trzdrudxscslh5jmoqq1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T08:07:19-05:00\",\"operation_date\":\"2023-08-16T08:07:19-05:00\",\"description\":\"Pago Mensual academia: emiliano saldarriaga perez (1021946106)\",\"error_message\":null,\"order_id\":\"8ED36A8485E30937B99C0D247E9C3832_K9MLYSWR8P_1692191236.6424\",\"due_date\":\"2023-08-16T20:07:19-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Maria Patricia\",\"last_name\":\"Perez Alzate\",\"email\":\"patrialzate94@gmail.com\",\"phone_number\":\"3006114131\",\"address\":null,\"creation_date\":\"2023-08-16T08:07:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzdrudxscslh5jmoqq1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 13:08:12','2023-08-16 13:08:12'),(7996,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T07:09:15-06:00\",\"transaction\":{\"id\":\"trzdrudxscslh5jmoqq1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105608589\",\"creation_date\":\"2023-08-16T08:07:19-06:00\",\"operation_date\":\"2023-08-16T08:08:54-06:00\",\"description\":\"Pago Mensual academia: emiliano saldarriaga perez (1021946106)\",\"error_message\":null,\"order_id\":\"8ED36A8485E30937B99C0D247E9C3832_K9MLYSWR8P_1692191236.6424\",\"due_date\":\"2023-08-16T20:07:19-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Maria Patricia\",\"last_name\":\"Perez Alzate\",\"email\":\"patrialzate94@gmail.com\",\"phone_number\":\"3006114131\",\"address\":null,\"creation_date\":\"2023-08-16T08:07:19-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 13:09:16','2023-08-16 13:09:16'),(7997,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T08:21:18-05:00\",\"transaction\":{\"id\":\"trwo9jslbhdqqg9idbuq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T08:19:51-05:00\",\"operation_date\":\"2023-08-16T08:19:51-05:00\",\"description\":\"Pago Mensual academia: Emiliano Morales Rios (1038874755)\",\"error_message\":null,\"order_id\":\"FA84632D742F2729DC32CE8CB5D49733_47P8O3RM0S_1692191969.5075\",\"due_date\":\"2023-08-16T20:19:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Morales Rios\",\"email\":\"stefar0210@gmail.com\",\"phone_number\":\"3136979739\",\"address\":null,\"creation_date\":\"2023-08-16T08:19:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwo9jslbhdqqg9idbuq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 13:21:18','2023-08-16 13:21:18'),(7998,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T08:22:53-05:00\",\"transaction\":{\"id\":\"trwo9jslbhdqqg9idbuq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105635806\",\"creation_date\":\"2023-08-16T08:19:51-05:00\",\"operation_date\":\"2023-08-16T08:22:37-05:00\",\"description\":\"Pago Mensual academia: Emiliano Morales Rios (1038874755)\",\"error_message\":null,\"order_id\":\"FA84632D742F2729DC32CE8CB5D49733_47P8O3RM0S_1692191969.5075\",\"due_date\":\"2023-08-16T20:19:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Morales Rios\",\"email\":\"stefar0210@gmail.com\",\"phone_number\":\"3136979739\",\"address\":null,\"creation_date\":\"2023-08-16T08:19:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 13:22:53','2023-08-16 13:22:53'),(7999,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  913\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T08:44:36-05:00\",\"transaction\":{\"id\":\"tru1bapp5rw1l3pmsfii\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T08:43:37-05:00\",\"operation_date\":\"2023-08-16T08:43:37-05:00\",\"description\":\"Pago Mensual academia: Federico Velez Cardona (1232799141)\",\"error_message\":null,\"order_id\":\"98AFDCC1EBD85DAA0F1749C5E56B9D8C_JA7NHE4MPI_1692193409.1791\",\"due_date\":\"2023-08-16T20:43:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edward\",\"last_name\":\"Velez\",\"email\":\"eevelezg2@gmail.com\",\"phone_number\":\"3186083620\",\"address\":null,\"creation_date\":\"2023-08-16T08:43:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru1bapp5rw1l3pmsfii/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 13:44:37','2023-08-16 13:44:37'),(8000,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  796\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T08:45:42-05:00\",\"transaction\":{\"id\":\"tru1bapp5rw1l3pmsfii\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105689228\",\"creation_date\":\"2023-08-16T08:43:37-05:00\",\"operation_date\":\"2023-08-16T08:45:34-05:00\",\"description\":\"Pago Mensual academia: Federico Velez Cardona (1232799141)\",\"error_message\":null,\"order_id\":\"98AFDCC1EBD85DAA0F1749C5E56B9D8C_JA7NHE4MPI_1692193409.1791\",\"due_date\":\"2023-08-16T20:43:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edward\",\"last_name\":\"Velez\",\"email\":\"eevelezg2@gmail.com\",\"phone_number\":\"3186083620\",\"address\":null,\"creation_date\":\"2023-08-16T08:43:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 13:45:43','2023-08-16 13:45:43'),(8001,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T09:16:12-05:00\",\"transaction\":{\"id\":\"trruv3v8rcr8dqgdaa4l\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T09:15:31-05:00\",\"operation_date\":\"2023-08-16T09:15:31-05:00\",\"description\":\"Pago Mensual academia: Gonzalo Perez Quiroz (1023533427)\",\"error_message\":null,\"order_id\":\"AA97D584861474F4097CF13CCB5325DA_2SXZBVAUKL_1692195327.2042\",\"due_date\":\"2023-08-16T21:15:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-08-16T09:15:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trruv3v8rcr8dqgdaa4l/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 14:16:12','2023-08-16 14:16:12'),(8002,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T09:17:46-05:00\",\"transaction\":{\"id\":\"trruv3v8rcr8dqgdaa4l\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105768902\",\"creation_date\":\"2023-08-16T09:15:31-05:00\",\"operation_date\":\"2023-08-16T09:17:38-05:00\",\"description\":\"Pago Mensual academia: Gonzalo Perez Quiroz (1023533427)\",\"error_message\":null,\"order_id\":\"AA97D584861474F4097CF13CCB5325DA_2SXZBVAUKL_1692195327.2042\",\"due_date\":\"2023-08-16T21:15:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-08-16T09:15:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 14:17:46','2023-08-16 14:17:46'),(8003,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T09:19:07-05:00\",\"transaction\":{\"id\":\"trldjpv5qhlnqnhdrlzi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T09:18:06-05:00\",\"operation_date\":\"2023-08-16T09:18:06-05:00\",\"description\":\"Pago Mensual academia: Gonzalo Perez Quiroz (1023533427)\",\"error_message\":null,\"order_id\":\"B99D193B66A6542917D2B7BEE52C2574_YOHTANQ9C1_1692195483.3447\",\"due_date\":\"2023-08-16T21:18:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-08-16T09:18:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trldjpv5qhlnqnhdrlzi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 14:19:07','2023-08-16 14:19:07'),(8004,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T09:20:22-05:00\",\"transaction\":{\"id\":\"trldjpv5qhlnqnhdrlzi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105776680\",\"creation_date\":\"2023-08-16T09:18:06-05:00\",\"operation_date\":\"2023-08-16T09:20:14-05:00\",\"description\":\"Pago Mensual academia: Gonzalo Perez Quiroz (1023533427)\",\"error_message\":null,\"order_id\":\"B99D193B66A6542917D2B7BEE52C2574_YOHTANQ9C1_1692195483.3447\",\"due_date\":\"2023-08-16T21:18:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-08-16T09:18:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 14:20:22','2023-08-16 14:20:22'),(8005,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  882\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T10:02:00-05:00\",\"transaction\":{\"id\":\"trapv7adbuggyrsxpmwx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-16T10:02:00-05:00\",\"operation_date\":\"2023-08-16T10:02:00-05:00\",\"description\":\"Pago Mensual academia: Jerónimo Sarabia Suarez (1027812213)\",\"error_message\":null,\"order_id\":\"BDB6920ADCD0457AA17B53B22963DAD9_FJSVC2W760_1692198117.6409\",\"amount\":165900.00,\"customer\":{\"name\":\"Elie\",\"last_name\":\"Sarabia\",\"email\":\"essarabi@hotmail.com\",\"phone_number\":\"3008169308\",\"address\":null,\"creation_date\":\"2023-08-16T10:02:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trapv7adbuggyrsxpmwx/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-16 15:02:01','2023-08-16 15:02:01'),(8006,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1206\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T10:03:21-05:00\",\"transaction\":{\"id\":\"trapv7adbuggyrsxpmwx\",\"authorization\":\"909304\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":36,\"conciliated\":true,\"creation_date\":\"2023-08-16T10:02:00-05:00\",\"operation_date\":\"2023-08-16T10:03:20-05:00\",\"description\":\"Pago Mensual academia: Jerónimo Sarabia Suarez (1027812213)\",\"error_message\":null,\"order_id\":\"BDB6920ADCD0457AA17B53B22963DAD9_FJSVC2W760_1692198117.6409\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"498859XXXXXX9818\",\"holder_name\":\"ELIE SARABIA\",\"expiration_year\":\"26\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":36,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Elie\",\"last_name\":\"Sarabia\",\"email\":\"essarabi@hotmail.com\",\"phone_number\":\"3008169308\",\"address\":null,\"creation_date\":\"2023-08-16T10:02:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trapv7adbuggyrsxpmwx/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-16 15:03:22','2023-08-16 15:03:22'),(8007,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T10:06:04-05:00\",\"transaction\":{\"id\":\"try98tucrajuphbimnwr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T10:05:27-05:00\",\"operation_date\":\"2023-08-16T10:05:27-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Barrientos Giraldo (1013361257)\",\"error_message\":null,\"order_id\":\"291D43C696D8C3704CDBE0A72ADE5F6C_3FUA5RV4NG_1692198318.5254\",\"due_date\":\"2023-08-16T22:05:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana\",\"last_name\":\"Giraldo\",\"email\":\"egiraldo874@gmail.com\",\"phone_number\":\"3107142276\",\"address\":null,\"creation_date\":\"2023-08-16T10:05:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/try98tucrajuphbimnwr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 15:06:05','2023-08-16 15:06:05'),(8008,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T10:07:17-05:00\",\"transaction\":{\"id\":\"try98tucrajuphbimnwr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105902861\",\"creation_date\":\"2023-08-16T10:05:27-05:00\",\"operation_date\":\"2023-08-16T10:07:09-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Barrientos Giraldo (1013361257)\",\"error_message\":null,\"order_id\":\"291D43C696D8C3704CDBE0A72ADE5F6C_3FUA5RV4NG_1692198318.5254\",\"due_date\":\"2023-08-16T22:05:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana\",\"last_name\":\"Giraldo\",\"email\":\"egiraldo874@gmail.com\",\"phone_number\":\"3107142276\",\"address\":null,\"creation_date\":\"2023-08-16T10:05:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 15:07:18','2023-08-16 15:07:18'),(8009,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T10:08:17-05:00\",\"transaction\":{\"id\":\"trgcsku8wpizqpmjel2f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T10:07:41-05:00\",\"operation_date\":\"2023-08-16T10:07:41-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Barrientos Giraldo (1013361257)\",\"error_message\":null,\"order_id\":\"416849DA96FB73BEE793E2BF65AE43AC_5NQJY1PIE7_1692198458.5591\",\"due_date\":\"2023-08-16T22:07:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana\",\"last_name\":\"Giraldo\",\"email\":\"egiraldo874@gmail.com\",\"phone_number\":\"3107142276\",\"address\":null,\"creation_date\":\"2023-08-16T10:07:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgcsku8wpizqpmjel2f/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 15:08:17','2023-08-16 15:08:17'),(8010,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T10:08:56-05:00\",\"transaction\":{\"id\":\"trgcsku8wpizqpmjel2f\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105908847\",\"creation_date\":\"2023-08-16T10:07:41-05:00\",\"operation_date\":\"2023-08-16T10:08:49-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Barrientos Giraldo (1013361257)\",\"error_message\":null,\"order_id\":\"416849DA96FB73BEE793E2BF65AE43AC_5NQJY1PIE7_1692198458.5591\",\"due_date\":\"2023-08-16T22:07:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana\",\"last_name\":\"Giraldo\",\"email\":\"egiraldo874@gmail.com\",\"phone_number\":\"3107142276\",\"address\":null,\"creation_date\":\"2023-08-16T10:07:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 15:08:56','2023-08-16 15:08:56'),(8011,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T10:09:49-05:00\",\"transaction\":{\"id\":\"trsqzgywzbpjq7klfecf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T10:09:10-05:00\",\"operation_date\":\"2023-08-16T10:09:10-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Barrientos Giraldo (1013361257)\",\"error_message\":null,\"order_id\":\"1458E7509AA5F47ECFB92536E7DD1DC7_851FJAGRM3_1692198548.389\",\"due_date\":\"2023-08-16T22:09:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana\",\"last_name\":\"Giraldo\",\"email\":\"egiraldo874@gmail.com\",\"phone_number\":\"3107142276\",\"address\":null,\"creation_date\":\"2023-08-16T10:09:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsqzgywzbpjq7klfecf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 15:09:50','2023-08-16 15:09:50'),(8012,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T10:10:53-05:00\",\"transaction\":{\"id\":\"trsqzgywzbpjq7klfecf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105913137\",\"creation_date\":\"2023-08-16T10:09:10-05:00\",\"operation_date\":\"2023-08-16T10:10:45-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Barrientos Giraldo (1013361257)\",\"error_message\":null,\"order_id\":\"1458E7509AA5F47ECFB92536E7DD1DC7_851FJAGRM3_1692198548.389\",\"due_date\":\"2023-08-16T22:09:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana\",\"last_name\":\"Giraldo\",\"email\":\"egiraldo874@gmail.com\",\"phone_number\":\"3107142276\",\"address\":null,\"creation_date\":\"2023-08-16T10:09:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 15:10:53','2023-08-16 15:10:53'),(8013,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T10:24:48-05:00\",\"transaction\":{\"id\":\"trxfd5aarc9vbhhwsrp2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T10:24:08-05:00\",\"operation_date\":\"2023-08-16T10:24:08-05:00\",\"description\":\"Pago Mensual academia: Wesly Villalobo Moreno (1023532063)\",\"error_message\":null,\"order_id\":\"142C65E00F4F7CF2E6C4C996E34005DF_318HJXLFD2_1692199442.6197\",\"due_date\":\"2023-08-16T22:24:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Alvarez\",\"email\":\"estefania7a@gmail.com\",\"phone_number\":\"3207348590\",\"address\":null,\"creation_date\":\"2023-08-16T10:24:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxfd5aarc9vbhhwsrp2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 15:24:48','2023-08-16 15:24:48'),(8014,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T09:27:27-06:00\",\"transaction\":{\"id\":\"trxfd5aarc9vbhhwsrp2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105954666\",\"creation_date\":\"2023-08-16T10:24:08-06:00\",\"operation_date\":\"2023-08-16T10:26:46-06:00\",\"description\":\"Pago Mensual academia: Wesly Villalobo Moreno (1023532063)\",\"error_message\":null,\"order_id\":\"142C65E00F4F7CF2E6C4C996E34005DF_318HJXLFD2_1692199442.6197\",\"due_date\":\"2023-08-16T22:24:08-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Alvarez\",\"email\":\"estefania7a@gmail.com\",\"phone_number\":\"3207348590\",\"address\":null,\"creation_date\":\"2023-08-16T10:24:08-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 15:27:27','2023-08-16 15:27:27'),(8015,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T09:30:22-06:00\",\"transaction\":{\"id\":\"trxfd5aarc9vbhhwsrp2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105954666\",\"creation_date\":\"2023-08-16T10:24:08-06:00\",\"operation_date\":\"2023-08-16T10:26:46-06:00\",\"description\":\"Pago Mensual academia: Wesly Villalobo Moreno (1023532063)\",\"error_message\":null,\"order_id\":\"142C65E00F4F7CF2E6C4C996E34005DF_318HJXLFD2_1692199442.6197\",\"due_date\":\"2023-08-16T22:24:08-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Alvarez\",\"email\":\"estefania7a@gmail.com\",\"phone_number\":\"3207348590\",\"address\":null,\"creation_date\":\"2023-08-16T10:24:08-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 15:30:22','2023-08-16 15:30:22'),(8016,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T10:37:09-05:00\",\"transaction\":{\"id\":\"trubehdyubbilvjas8tn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T10:36:12-05:00\",\"operation_date\":\"2023-08-16T10:36:12-05:00\",\"description\":\"Pago Mensual academia: miguel fernando lugo arrieta (1016915798)\",\"error_message\":null,\"order_id\":\"8844C5F00372DF2C3C4EE857C2451B45_8NXACMRBLV_1692200166.6848\",\"due_date\":\"2023-08-16T22:36:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luis\",\"last_name\":\"Lugo\",\"email\":\"luisflugo@gmail.com\",\"phone_number\":\"3102502540\",\"address\":null,\"creation_date\":\"2023-08-16T10:36:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trubehdyubbilvjas8tn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 15:37:10','2023-08-16 15:37:10'),(8017,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T10:38:41-05:00\",\"transaction\":{\"id\":\"trubehdyubbilvjas8tn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"105989179\",\"creation_date\":\"2023-08-16T10:36:12-05:00\",\"operation_date\":\"2023-08-16T10:38:34-05:00\",\"description\":\"Pago Mensual academia: miguel fernando lugo arrieta (1016915798)\",\"error_message\":null,\"order_id\":\"8844C5F00372DF2C3C4EE857C2451B45_8NXACMRBLV_1692200166.6848\",\"due_date\":\"2023-08-16T22:36:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luis\",\"last_name\":\"Lugo\",\"email\":\"luisflugo@gmail.com\",\"phone_number\":\"3102502540\",\"address\":null,\"creation_date\":\"2023-08-16T10:36:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 15:38:42','2023-08-16 15:38:42'),(8018,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T11:40:27-05:00\",\"transaction\":{\"id\":\"trlqrojiasq3oo1chwl3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T11:39:32-05:00\",\"operation_date\":\"2023-08-16T11:39:32-05:00\",\"description\":\"Pago Mensual academia: Simon Cartagena Giraldo (1032182787)\",\"error_message\":null,\"order_id\":\"C5F5C23BE1B71ADB51EA9DC8E9D444A8_OQACSGJ1YF_1692203961.4631\",\"due_date\":\"2023-08-16T23:39:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yessica\",\"last_name\":\"Giraldo Guzman\",\"email\":\"yessikdar06@gmail.com\",\"phone_number\":\"3128389566\",\"address\":null,\"creation_date\":\"2023-08-16T11:39:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlqrojiasq3oo1chwl3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 16:40:28','2023-08-16 16:40:28'),(8019,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T11:41:43-05:00\",\"transaction\":{\"id\":\"trlqrojiasq3oo1chwl3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"106167006\",\"creation_date\":\"2023-08-16T11:39:32-05:00\",\"operation_date\":\"2023-08-16T11:41:27-05:00\",\"description\":\"Pago Mensual academia: Simon Cartagena Giraldo (1032182787)\",\"error_message\":null,\"order_id\":\"C5F5C23BE1B71ADB51EA9DC8E9D444A8_OQACSGJ1YF_1692203961.4631\",\"due_date\":\"2023-08-16T23:39:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yessica\",\"last_name\":\"Giraldo Guzman\",\"email\":\"yessikdar06@gmail.com\",\"phone_number\":\"3128389566\",\"address\":null,\"creation_date\":\"2023-08-16T11:39:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 16:41:44','2023-08-16 16:41:44'),(8020,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T13:16:43-05:00\",\"transaction\":{\"id\":\"trqhh3oqzrkqibsliej9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-16T13:16:43-05:00\",\"operation_date\":\"2023-08-16T13:16:43-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Marin Hernandez (1013466462)\",\"error_message\":null,\"order_id\":\"_1692209790.7523\",\"amount\":165900.00,\"customer\":{\"name\":\"Orlando\",\"last_name\":\"Marin\",\"email\":\"ojmarin@loteriademedellin.com.co\",\"phone_number\":\"3113976050\",\"address\":null,\"creation_date\":\"2023-08-16T13:16:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqhh3oqzrkqibsliej9/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-16 18:16:44','2023-08-16 18:16:44'),(8021,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1099\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T13:18:36-05:00\",\"transaction\":{\"id\":\"trqhh3oqzrkqibsliej9\",\"authorization\":\"599212\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-16T13:16:43-05:00\",\"operation_date\":\"2023-08-16T13:18:35-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Marin Hernandez (1013466462)\",\"error_message\":null,\"order_id\":\"_1692209790.7523\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"482484XXXXXX2343\",\"holder_name\":\"Orlando Marin\",\"expiration_year\":\"26\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Orlando\",\"last_name\":\"Marin\",\"email\":\"ojmarin@loteriademedellin.com.co\",\"phone_number\":\"3113976050\",\"address\":null,\"creation_date\":\"2023-08-16T13:16:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqhh3oqzrkqibsliej9/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-16 18:18:37','2023-08-16 18:18:37'),(8022,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T15:24:08-05:00\",\"transaction\":{\"id\":\"trdbubouuirmgauc2iwh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T15:21:37-05:00\",\"operation_date\":\"2023-08-16T15:21:37-05:00\",\"description\":\"Pago Mensual academia: Nicolas Fernandez Valencia (1033194060)\",\"error_message\":null,\"order_id\":\"147EBE637038CA50A1265ABAC8DEA181_KV32Q9SR14_1692217293.8596\",\"due_date\":\"2023-08-17T03:21:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Fernandez\",\"email\":\"jugrefe69@yahoo.es\",\"phone_number\":\"3117629791\",\"address\":null,\"creation_date\":\"2023-08-16T15:21:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdbubouuirmgauc2iwh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 20:24:08','2023-08-16 20:24:08'),(8023,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T14:27:12-06:00\",\"transaction\":{\"id\":\"trdbubouuirmgauc2iwh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"106677042\",\"creation_date\":\"2023-08-16T15:21:37-06:00\",\"operation_date\":\"2023-08-16T15:25:16-06:00\",\"description\":\"Pago Mensual academia: Nicolas Fernandez Valencia (1033194060)\",\"error_message\":null,\"order_id\":\"147EBE637038CA50A1265ABAC8DEA181_KV32Q9SR14_1692217293.8596\",\"due_date\":\"2023-08-17T03:21:37-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Fernandez\",\"email\":\"jugrefe69@yahoo.es\",\"phone_number\":\"3117629791\",\"address\":null,\"creation_date\":\"2023-08-16T15:21:37-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 20:27:13','2023-08-16 20:27:13'),(8024,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  879\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T15:36:19-05:00\",\"transaction\":{\"id\":\"trassxiikuwuvbvrmsf7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T15:35:38-05:00\",\"operation_date\":\"2023-08-16T15:35:38-05:00\",\"description\":\"Pago Mensual academia: pedro mejia angulo (1035011107)\",\"error_message\":null,\"order_id\":\"_1692218135.3027\",\"due_date\":\"2023-08-17T03:35:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"pedro\",\"last_name\":\"mejia angulo\",\"email\":\"paula.angulo2008@gmail.com\",\"phone_number\":\"3183502233\",\"address\":null,\"creation_date\":\"2023-08-16T15:35:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trassxiikuwuvbvrmsf7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 20:36:20','2023-08-16 20:36:20'),(8025,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  762\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T15:37:41-05:00\",\"transaction\":{\"id\":\"trassxiikuwuvbvrmsf7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"106711970\",\"creation_date\":\"2023-08-16T15:35:38-05:00\",\"operation_date\":\"2023-08-16T15:37:31-05:00\",\"description\":\"Pago Mensual academia: pedro mejia angulo (1035011107)\",\"error_message\":null,\"order_id\":\"_1692218135.3027\",\"due_date\":\"2023-08-17T03:35:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"pedro\",\"last_name\":\"mejia angulo\",\"email\":\"paula.angulo2008@gmail.com\",\"phone_number\":\"3183502233\",\"address\":null,\"creation_date\":\"2023-08-16T15:35:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 20:37:42','2023-08-16 20:37:42'),(8026,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T15:39:31-05:00\",\"transaction\":{\"id\":\"trrpzmnmgngma0np8ply\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T15:37:59-05:00\",\"operation_date\":\"2023-08-16T15:37:59-05:00\",\"description\":\"Pago Mensual academia: santiago agudelo rengifo (1029885184)\",\"error_message\":null,\"order_id\":\"A8166DA05C5A094F7DC03724B41886E5_HXEKT0Q9PL_1692218276.5349\",\"due_date\":\"2023-08-17T03:37:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Agudelo Rengifo\",\"email\":\"shirley.rengifo@yahoo.com\",\"phone_number\":\"3138046959\",\"address\":null,\"creation_date\":\"2023-08-16T15:37:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrpzmnmgngma0np8ply/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 20:39:32','2023-08-16 20:39:32'),(8027,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  855\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-16T14:42:18-06:00\",\"transaction\":{\"id\":\"trrpzmnmgngma0np8ply\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-16T15:37:59-06:00\",\"operation_date\":\"2023-08-16T15:39:43-06:00\",\"description\":\"Pago Mensual academia: santiago agudelo rengifo (1029885184)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"A8166DA05C5A094F7DC03724B41886E5_HXEKT0Q9PL_1692218276.5349\",\"due_date\":\"2023-08-17T03:37:59-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Agudelo Rengifo\",\"email\":\"shirley.rengifo@yahoo.com\",\"phone_number\":\"3138046959\",\"address\":null,\"creation_date\":\"2023-08-16T15:37:59-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 20:42:18','2023-08-16 20:42:18'),(8028,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T15:43:22-05:00\",\"transaction\":{\"id\":\"trugjbqjls4gj2yuqowm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T15:42:41-05:00\",\"operation_date\":\"2023-08-16T15:42:41-05:00\",\"description\":\"Pago Mensual academia: santiago agudelo rengifo (1029885184)\",\"error_message\":null,\"order_id\":\"A8166DA05C5A094F7DC03724B41886E5_HXEKT0Q9PL_1692218557.9518\",\"due_date\":\"2023-08-17T03:42:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Agudelo Rengifo\",\"email\":\"shirley.rengifo@yahoo.com\",\"phone_number\":\"3138046959\",\"address\":null,\"creation_date\":\"2023-08-16T15:42:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trugjbqjls4gj2yuqowm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 20:43:23','2023-08-16 20:43:23'),(8029,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T14:48:14-06:00\",\"transaction\":{\"id\":\"trugjbqjls4gj2yuqowm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"106731464\",\"creation_date\":\"2023-08-16T15:42:41-06:00\",\"operation_date\":\"2023-08-16T15:46:16-06:00\",\"description\":\"Pago Mensual academia: santiago agudelo rengifo (1029885184)\",\"error_message\":null,\"order_id\":\"A8166DA05C5A094F7DC03724B41886E5_HXEKT0Q9PL_1692218557.9518\",\"due_date\":\"2023-08-17T03:42:41-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Agudelo Rengifo\",\"email\":\"shirley.rengifo@yahoo.com\",\"phone_number\":\"3138046959\",\"address\":null,\"creation_date\":\"2023-08-16T15:42:41-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 20:48:14','2023-08-16 20:48:14'),(8030,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T16:22:09-05:00\",\"transaction\":{\"id\":\"tro2ify7zflj0rsoedml\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T16:21:22-05:00\",\"operation_date\":\"2023-08-16T16:21:22-05:00\",\"description\":\"Pago Mensual academia: matias calderon orozco (1020318922)\",\"error_message\":null,\"order_id\":\"DB98DC0DBAFDE48E8F74C0DE001D35E4_XHFJ7Z1BN9_1692220877.6045\",\"due_date\":\"2023-08-17T04:21:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"orozco agudelo\",\"email\":\"andreaabogada@icloud.com\",\"phone_number\":\"3128633485\",\"address\":null,\"creation_date\":\"2023-08-16T16:21:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro2ify7zflj0rsoedml/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 21:22:10','2023-08-16 21:22:10'),(8031,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T16:23:10-05:00\",\"transaction\":{\"id\":\"tro2ify7zflj0rsoedml\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"106839773\",\"creation_date\":\"2023-08-16T16:21:22-05:00\",\"operation_date\":\"2023-08-16T16:23:04-05:00\",\"description\":\"Pago Mensual academia: matias calderon orozco (1020318922)\",\"error_message\":null,\"order_id\":\"DB98DC0DBAFDE48E8F74C0DE001D35E4_XHFJ7Z1BN9_1692220877.6045\",\"due_date\":\"2023-08-17T04:21:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"orozco agudelo\",\"email\":\"andreaabogada@icloud.com\",\"phone_number\":\"3128633485\",\"address\":null,\"creation_date\":\"2023-08-16T16:21:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 21:23:11','2023-08-16 21:23:11'),(8032,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T16:26:28-05:00\",\"transaction\":{\"id\":\"tr9sneyqspbyxf3idgam\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T16:25:28-05:00\",\"operation_date\":\"2023-08-16T16:25:28-05:00\",\"description\":\"Pago Mensual academia: martin bolivar hernandez (1034998470)\",\"error_message\":null,\"order_id\":\"196F5641AA9DC87067DA4FF90FD81E7B_KGP0TRU5ZD_1692221124.9873\",\"due_date\":\"2023-08-17T04:25:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"carlos\",\"last_name\":\"bolivar toro\",\"email\":\"carlosbolivartoro@gmail.com\",\"phone_number\":\"3005865102\",\"address\":null,\"creation_date\":\"2023-08-16T16:25:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9sneyqspbyxf3idgam/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 21:26:29','2023-08-16 21:26:29'),(8033,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T16:27:44-05:00\",\"transaction\":{\"id\":\"tr9sneyqspbyxf3idgam\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"106851895\",\"creation_date\":\"2023-08-16T16:25:28-05:00\",\"operation_date\":\"2023-08-16T16:27:30-05:00\",\"description\":\"Pago Mensual academia: martin bolivar hernandez (1034998470)\",\"error_message\":null,\"order_id\":\"196F5641AA9DC87067DA4FF90FD81E7B_KGP0TRU5ZD_1692221124.9873\",\"due_date\":\"2023-08-17T04:25:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"carlos\",\"last_name\":\"bolivar toro\",\"email\":\"carlosbolivartoro@gmail.com\",\"phone_number\":\"3005865102\",\"address\":null,\"creation_date\":\"2023-08-16T16:25:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 21:27:44','2023-08-16 21:27:44'),(8034,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T16:35:16-05:00\",\"transaction\":{\"id\":\"trklyqy5az5vbtxtqqro\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T16:33:49-05:00\",\"operation_date\":\"2023-08-16T16:33:49-05:00\",\"description\":\"Pago Inscripción academia: Juan Angel Gallego Pardo (1020412248)\",\"error_message\":null,\"order_id\":\"018DD1E07A2DE4A08E6612341BF2323E_23NGOK0MR6_1692221617.697\",\"due_date\":\"2023-08-17T04:33:49-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"sindy\",\"last_name\":\"pardo\",\"email\":\"sindypardozapata@gmail.com\",\"phone_number\":\"3015734373\",\"address\":null,\"creation_date\":\"2023-08-16T16:33:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trklyqy5az5vbtxtqqro/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 21:35:17','2023-08-16 21:35:17'),(8035,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  847\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-16T15:48:12-06:00\",\"transaction\":{\"id\":\"trklyqy5az5vbtxtqqro\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-16T16:33:49-06:00\",\"operation_date\":\"2023-08-16T16:33:49-06:00\",\"description\":\"Pago Inscripción academia: Juan Angel Gallego Pardo (1020412248)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"018DD1E07A2DE4A08E6612341BF2323E_23NGOK0MR6_1692221617.697\",\"due_date\":\"2023-08-17T04:33:49-06:00\",\"error_code\":1007,\"amount\":431000.00,\"customer\":{\"name\":\"sindy\",\"last_name\":\"pardo\",\"email\":\"sindypardozapata@gmail.com\",\"phone_number\":\"3015734373\",\"address\":null,\"creation_date\":\"2023-08-16T16:33:49-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 21:48:12','2023-08-16 21:48:12'),(8036,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T16:51:11-05:00\",\"transaction\":{\"id\":\"trwpwwy70rbl9zj4cgcd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T16:50:09-05:00\",\"operation_date\":\"2023-08-16T16:50:09-05:00\",\"description\":\"Pago Inscripción academia: Juan Angel Gallego Pardo (1020412248)\",\"error_message\":null,\"order_id\":\"018DD1E07A2DE4A08E6612341BF2323E_23NGOK0MR6_1692222601.3112\",\"due_date\":\"2023-08-17T04:50:09-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"sindy\",\"last_name\":\"pardo\",\"email\":\"sindypardozapata@gmail.com\",\"phone_number\":\"3015734373\",\"address\":null,\"creation_date\":\"2023-08-16T16:50:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwpwwy70rbl9zj4cgcd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 21:51:11','2023-08-16 21:51:11'),(8037,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T15:54:12-06:00\",\"transaction\":{\"id\":\"trwpwwy70rbl9zj4cgcd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"106916204\",\"creation_date\":\"2023-08-16T16:50:09-06:00\",\"operation_date\":\"2023-08-16T16:51:59-06:00\",\"description\":\"Pago Inscripción academia: Juan Angel Gallego Pardo (1020412248)\",\"error_message\":null,\"order_id\":\"018DD1E07A2DE4A08E6612341BF2323E_23NGOK0MR6_1692222601.3112\",\"due_date\":\"2023-08-17T04:50:09-06:00\",\"amount\":431000.00,\"customer\":{\"name\":\"sindy\",\"last_name\":\"pardo\",\"email\":\"sindypardozapata@gmail.com\",\"phone_number\":\"3015734373\",\"address\":null,\"creation_date\":\"2023-08-16T16:50:09-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 21:54:13','2023-08-16 21:54:13'),(8038,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T17:53:52-05:00\",\"transaction\":{\"id\":\"trzeedxperowjyivkuqe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T17:52:42-05:00\",\"operation_date\":\"2023-08-16T17:52:42-05:00\",\"description\":\"Pago Mensual academia: Matias Guzman Montoya (1034995159)\",\"error_message\":null,\"order_id\":\"ABDEB6F575AC5C6676B747BCA8D09CC2_H4VBURLSY1_1692226360.492\",\"due_date\":\"2023-08-17T05:52:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Doris\",\"last_name\":\"Montoya\",\"email\":\"dorismontoya36@gmail.com\",\"phone_number\":\"3163210575\",\"address\":null,\"creation_date\":\"2023-08-16T17:52:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzeedxperowjyivkuqe/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 22:53:52','2023-08-16 22:53:52'),(8039,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T17:55:12-05:00\",\"transaction\":{\"id\":\"trzeedxperowjyivkuqe\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"107065558\",\"creation_date\":\"2023-08-16T17:52:42-05:00\",\"operation_date\":\"2023-08-16T17:55:01-05:00\",\"description\":\"Pago Mensual academia: Matias Guzman Montoya (1034995159)\",\"error_message\":null,\"order_id\":\"ABDEB6F575AC5C6676B747BCA8D09CC2_H4VBURLSY1_1692226360.492\",\"due_date\":\"2023-08-17T05:52:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Doris\",\"last_name\":\"Montoya\",\"email\":\"dorismontoya36@gmail.com\",\"phone_number\":\"3163210575\",\"address\":null,\"creation_date\":\"2023-08-16T17:52:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 22:55:13','2023-08-16 22:55:13'),(8040,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T18:16:02-05:00\",\"transaction\":{\"id\":\"trf6a4wm71t7x2618fvo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T18:15:07-05:00\",\"operation_date\":\"2023-08-16T18:15:07-05:00\",\"description\":\"Pago Inscripción academia: matias Echeverry Hurtado (1155717169)\",\"error_message\":null,\"order_id\":\"E250C59336B505ED411D455ABAA30B4D_UOLT4VGRE8_1692227701.7703\",\"due_date\":\"2023-08-17T06:15:07-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Sebastián\",\"last_name\":\"Echeverry\",\"email\":\"sebastian.echeverry.londono@gmail.com\",\"phone_number\":\"3102223363\",\"address\":null,\"creation_date\":\"2023-08-16T18:15:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trf6a4wm71t7x2618fvo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 23:16:03','2023-08-16 23:16:03'),(8041,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  829\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T18:17:12-05:00\",\"transaction\":{\"id\":\"trf6a4wm71t7x2618fvo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"107116061\",\"creation_date\":\"2023-08-16T18:15:07-05:00\",\"operation_date\":\"2023-08-16T18:16:46-05:00\",\"description\":\"Pago Inscripción academia: matias Echeverry Hurtado (1155717169)\",\"error_message\":null,\"order_id\":\"E250C59336B505ED411D455ABAA30B4D_UOLT4VGRE8_1692227701.7703\",\"due_date\":\"2023-08-17T06:15:07-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Sebastián\",\"last_name\":\"Echeverry\",\"email\":\"sebastian.echeverry.londono@gmail.com\",\"phone_number\":\"3102223363\",\"address\":null,\"creation_date\":\"2023-08-16T18:15:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 23:17:13','2023-08-16 23:17:13'),(8042,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T18:51:27-05:00\",\"transaction\":{\"id\":\"trlaqowzpcasta3tz6gi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T18:50:45-05:00\",\"operation_date\":\"2023-08-16T18:50:45-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":null,\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692229834.7254\",\"due_date\":\"2023-08-17T06:50:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-16T18:50:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlaqowzpcasta3tz6gi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 23:51:28','2023-08-16 23:51:28'),(8043,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-16T18:54:54-05:00\",\"transaction\":{\"id\":\"trlaqowzpcasta3tz6gi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-16T18:50:45-05:00\",\"operation_date\":\"2023-08-16T18:51:36-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692229834.7254\",\"due_date\":\"2023-08-17T06:50:45-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-16T18:50:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 23:54:54','2023-08-16 23:54:54'),(8044,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T18:57:20-05:00\",\"transaction\":{\"id\":\"trtzgwvljnxdokrytw9a\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T18:56:38-05:00\",\"operation_date\":\"2023-08-16T18:56:38-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":null,\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692230129.9646\",\"due_date\":\"2023-08-17T06:56:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-16T18:56:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtzgwvljnxdokrytw9a/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-16 23:57:21','2023-08-16 23:57:21'),(8045,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-16T18:00:17-06:00\",\"transaction\":{\"id\":\"trtzgwvljnxdokrytw9a\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-16T18:56:38-06:00\",\"operation_date\":\"2023-08-16T18:57:28-06:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692230129.9646\",\"due_date\":\"2023-08-17T06:56:38-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-16T18:56:38-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 00:00:18','2023-08-17 00:00:18'),(8046,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T19:07:57-05:00\",\"transaction\":{\"id\":\"trkmymjh75wgl8slcr2x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T19:07:14-05:00\",\"operation_date\":\"2023-08-16T19:07:14-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":null,\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692230821.866\",\"due_date\":\"2023-08-17T07:07:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-16T19:07:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkmymjh75wgl8slcr2x/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 00:07:58','2023-08-17 00:07:58'),(8047,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-16T18:12:18-06:00\",\"transaction\":{\"id\":\"trkmymjh75wgl8slcr2x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-16T19:07:14-06:00\",\"operation_date\":\"2023-08-16T19:08:06-06:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692230821.866\",\"due_date\":\"2023-08-17T07:07:14-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-16T19:07:14-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 00:12:18','2023-08-17 00:12:18'),(8048,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T21:34:36-05:00\",\"transaction\":{\"id\":\"trrxj5bfngvafjyyzerv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T21:32:54-05:00\",\"operation_date\":\"2023-08-16T21:32:54-05:00\",\"description\":\"Pago Mensual academia: ALEJANDRO HENAO PALACIO (1020228648)\",\"error_message\":null,\"order_id\":\"AB4F2B5FD96CA65349119909C1EADA2D_DW3NMBK75V_1692239567.0281\",\"due_date\":\"2023-08-17T09:32:54-05:00\",\"amount\":363400.00,\"customer\":{\"name\":\"fisonder\",\"last_name\":\"henao\",\"email\":\"fisonder10@gmail.com\",\"phone_number\":\"3157169826\",\"address\":null,\"creation_date\":\"2023-08-16T21:32:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrxj5bfngvafjyyzerv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 02:34:37','2023-08-17 02:34:37'),(8049,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T21:35:45-05:00\",\"transaction\":{\"id\":\"trrxj5bfngvafjyyzerv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"107532822\",\"creation_date\":\"2023-08-16T21:32:54-05:00\",\"operation_date\":\"2023-08-16T21:35:39-05:00\",\"description\":\"Pago Mensual academia: ALEJANDRO HENAO PALACIO (1020228648)\",\"error_message\":null,\"order_id\":\"AB4F2B5FD96CA65349119909C1EADA2D_DW3NMBK75V_1692239567.0281\",\"due_date\":\"2023-08-17T09:32:54-05:00\",\"amount\":363400.00,\"customer\":{\"name\":\"fisonder\",\"last_name\":\"henao\",\"email\":\"fisonder10@gmail.com\",\"phone_number\":\"3157169826\",\"address\":null,\"creation_date\":\"2023-08-16T21:32:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 02:35:46','2023-08-17 02:35:46'),(8050,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  910\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T21:45:08-05:00\",\"transaction\":{\"id\":\"trkkonvfx65szoxet7pl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T21:44:24-05:00\",\"operation_date\":\"2023-08-16T21:44:24-05:00\",\"description\":\"Pago Mensual academia: Genaro Cisneros (1023634823)\",\"error_message\":null,\"order_id\":\"22B1CD168EC628442B3D4DC00FCA434B_YH36IB84F5_1692240259.8428\",\"due_date\":\"2023-08-17T09:44:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Genaro\",\"last_name\":\"Cisneros\",\"email\":\"cgenaro704@gmail.com\",\"phone_number\":\"3154853110\",\"address\":null,\"creation_date\":\"2023-08-16T21:44:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkkonvfx65szoxet7pl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 02:45:09','2023-08-17 02:45:09'),(8051,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  793\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-16T21:46:28-05:00\",\"transaction\":{\"id\":\"trkkonvfx65szoxet7pl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"107551191\",\"creation_date\":\"2023-08-16T21:44:24-05:00\",\"operation_date\":\"2023-08-16T21:46:23-05:00\",\"description\":\"Pago Mensual academia: Genaro Cisneros (1023634823)\",\"error_message\":null,\"order_id\":\"22B1CD168EC628442B3D4DC00FCA434B_YH36IB84F5_1692240259.8428\",\"due_date\":\"2023-08-17T09:44:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Genaro\",\"last_name\":\"Cisneros\",\"email\":\"cgenaro704@gmail.com\",\"phone_number\":\"3154853110\",\"address\":null,\"creation_date\":\"2023-08-16T21:44:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 02:46:29','2023-08-17 02:46:29'),(8052,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  910\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T21:50:32-05:00\",\"transaction\":{\"id\":\"trp1xj7mu0joln7qvzlq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T21:49:51-05:00\",\"operation_date\":\"2023-08-16T21:49:51-05:00\",\"description\":\"Pago Mensual academia: Genaro Cisneros (1023634823)\",\"error_message\":null,\"order_id\":\"656F0DBF9392657EED7FEEFC486781FB_VBIX0S2AL5_1692240588.7079\",\"due_date\":\"2023-08-17T09:49:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Genaro\",\"last_name\":\"Cisneros\",\"email\":\"cgenaro704@gmail.com\",\"phone_number\":\"3154853110\",\"address\":null,\"creation_date\":\"2023-08-16T21:49:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trp1xj7mu0joln7qvzlq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 02:50:32','2023-08-17 02:50:32'),(8053,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  832\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-16T21:51:47-05:00\",\"transaction\":{\"id\":\"trp1xj7mu0joln7qvzlq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-16T21:49:51-05:00\",\"operation_date\":\"2023-08-16T21:50:38-05:00\",\"description\":\"Pago Mensual academia: Genaro Cisneros (1023634823)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"656F0DBF9392657EED7FEEFC486781FB_VBIX0S2AL5_1692240588.7079\",\"due_date\":\"2023-08-17T09:49:51-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Genaro\",\"last_name\":\"Cisneros\",\"email\":\"cgenaro704@gmail.com\",\"phone_number\":\"3154853110\",\"address\":null,\"creation_date\":\"2023-08-16T21:49:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 02:51:48','2023-08-17 02:51:48'),(8054,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-16T23:37:52-05:00\",\"transaction\":{\"id\":\"tr6viqtkwagpfyut5gvq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-16T23:36:01-05:00\",\"operation_date\":\"2023-08-16T23:36:01-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":null,\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692246931.3999\",\"due_date\":\"2023-08-17T11:36:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-16T23:36:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6viqtkwagpfyut5gvq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 04:37:53','2023-08-17 04:37:53'),(8055,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-16T23:40:55-05:00\",\"transaction\":{\"id\":\"tr6viqtkwagpfyut5gvq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-16T23:36:01-05:00\",\"operation_date\":\"2023-08-16T23:37:59-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692246931.3999\",\"due_date\":\"2023-08-17T11:36:01-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-16T23:36:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 04:40:56','2023-08-17 04:40:56'),(8056,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-17T02:03:55-06:00\",\"transaction\":{\"id\":\"truu7ptwx00xvfln5sjf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-15T15:40:36-06:00\",\"operation_date\":\"2023-08-15T15:40:36-06:00\",\"description\":\"Pago Mensual academia: maximiliano carvajal vasquez (1038873077)\",\"error_message\":null,\"order_id\":\"0141A8AEDB1B53970FAC7C81DAC79FBE_AVGNDUWR0E_1692132010.8573\",\"due_date\":\"2023-08-16T03:40:36-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonathan\",\"last_name\":\"Carvajal Tobon\",\"email\":\"jcarvajal0125@hotmail.com\",\"phone_number\":\"3012185035\",\"address\":null,\"creation_date\":\"2023-08-15T15:40:36-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truu7ptwx00xvfln5sjf/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 08:03:56','2023-08-17 08:03:56'),(8057,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-17T02:03:55-06:00\",\"transaction\":{\"id\":\"trt6aq3ndflxvzqioz3s\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-15T18:40:59-06:00\",\"operation_date\":\"2023-08-15T18:40:59-06:00\",\"description\":\"Pago Mensual academia: Federico Velez Cardona (1232799141)\",\"error_message\":null,\"order_id\":\"98AFDCC1EBD85DAA0F1749C5E56B9D8C_JA7NHE4MPI_1692142847.5476\",\"due_date\":\"2023-08-16T06:40:59-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edward\",\"last_name\":\"Velez\",\"email\":\"eevelezg2@gmail.com\",\"phone_number\":\"3186083620\",\"address\":null,\"creation_date\":\"2023-08-15T18:40:59-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trt6aq3ndflxvzqioz3s/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 08:03:56','2023-08-17 08:03:56'),(8058,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-17T02:03:55-06:00\",\"transaction\":{\"id\":\"tribevhdsvuof8zskkoz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-15T17:26:38-06:00\",\"operation_date\":\"2023-08-15T17:26:38-06:00\",\"description\":\"Pago Mensual academia: Martin Munera Gonzalez (1011516427)\",\"error_message\":null,\"order_id\":\"B5B0DB7F3A77CA4FCF9ECA57AA7181CA_WVCUO51327_1692138394.5066\",\"due_date\":\"2023-08-16T05:26:38-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Gonzalez\",\"email\":\"jcristina1521@hotmail.com\",\"phone_number\":\"3117076577\",\"address\":null,\"creation_date\":\"2023-08-15T17:26:38-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tribevhdsvuof8zskkoz/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 08:03:56','2023-08-17 08:03:56'),(8059,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-17T06:59:22-05:00\",\"transaction\":{\"id\":\"trvg8pq9qzpohvoaenua\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-17T06:58:43-05:00\",\"operation_date\":\"2023-08-17T06:58:43-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":null,\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692273508.001\",\"due_date\":\"2023-08-17T18:58:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-17T06:58:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvg8pq9qzpohvoaenua/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 11:59:23','2023-08-17 11:59:23'),(8060,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-17T06:03:07-06:00\",\"transaction\":{\"id\":\"trvg8pq9qzpohvoaenua\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-17T06:58:43-06:00\",\"operation_date\":\"2023-08-17T06:59:30-06:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692273508.001\",\"due_date\":\"2023-08-17T18:58:43-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-17T06:58:43-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 12:03:08','2023-08-17 12:03:08'),(8061,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-17T07:10:58-05:00\",\"transaction\":{\"id\":\"tr9hj3eq8tpphofvonhv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-17T07:10:13-05:00\",\"operation_date\":\"2023-08-17T07:10:13-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":null,\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692274203.308\",\"due_date\":\"2023-08-17T19:10:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-17T07:10:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9hj3eq8tpphofvonhv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 12:10:58','2023-08-17 12:10:58'),(8062,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-17T06:15:08-06:00\",\"transaction\":{\"id\":\"tr9hj3eq8tpphofvonhv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"107793380\",\"creation_date\":\"2023-08-17T07:10:13-06:00\",\"operation_date\":\"2023-08-17T07:13:02-06:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":null,\"order_id\":\"69B09198D4248B8F24494F27A01367B9_9CK0J7E5AD_1692274203.308\",\"due_date\":\"2023-08-17T19:10:13-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-08-17T07:10:13-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 12:15:09','2023-08-17 12:15:09'),(8063,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-17T08:39:42-05:00\",\"transaction\":{\"id\":\"trcy8ixawuqvj5de8hqu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-17T08:38:53-05:00\",\"operation_date\":\"2023-08-17T08:38:53-05:00\",\"description\":\"Pago Mensual academia: emanuel muñoz supelano (1023548616)\",\"error_message\":null,\"order_id\":\"285A25C17F351708754CDB6D56F3962E_O1QPYTBVCH_1692279530.5656\",\"due_date\":\"2023-08-17T20:38:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Muñoz  salinas\",\"email\":\"sebasmsalinasr@gmail.com\",\"phone_number\":\"3205384693\",\"address\":null,\"creation_date\":\"2023-08-17T08:38:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcy8ixawuqvj5de8hqu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 13:39:42','2023-08-17 13:39:42'),(8064,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-17T08:00:09-06:00\",\"transaction\":{\"id\":\"trcy8ixawuqvj5de8hqu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-17T08:38:53-06:00\",\"operation_date\":\"2023-08-17T08:39:51-06:00\",\"description\":\"Pago Mensual academia: emanuel muñoz supelano (1023548616)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"285A25C17F351708754CDB6D56F3962E_O1QPYTBVCH_1692279530.5656\",\"due_date\":\"2023-08-17T20:38:53-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Muñoz  salinas\",\"email\":\"sebasmsalinasr@gmail.com\",\"phone_number\":\"3205384693\",\"address\":null,\"creation_date\":\"2023-08-17T08:38:53-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 14:00:10','2023-08-17 14:00:10'),(8065,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-17T11:08:10-05:00\",\"transaction\":{\"id\":\"trvefyqciyfry8ancwob\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-17T11:07:46-05:00\",\"operation_date\":\"2023-08-17T11:07:46-05:00\",\"description\":\"Pago Mensual academia: Gerrard Alvarez Restrepo (1028142667)\",\"error_message\":null,\"order_id\":\"F11BEC1411101C743F64DF596773D0B2_AZ3RXDEPHT_1692288462.6207\",\"due_date\":\"2023-08-17T23:07:46-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gerrard\",\"last_name\":\"Alvarez Restrepo\",\"email\":\"jeny_rere@hotmail.com\",\"phone_number\":\"3113864202\",\"address\":null,\"creation_date\":\"2023-08-17T11:07:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvefyqciyfry8ancwob/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 16:08:11','2023-08-17 16:08:11'),(8066,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-17T11:08:57-05:00\",\"transaction\":{\"id\":\"trvefyqciyfry8ancwob\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"108280081\",\"creation_date\":\"2023-08-17T11:07:46-05:00\",\"operation_date\":\"2023-08-17T11:08:53-05:00\",\"description\":\"Pago Mensual academia: Gerrard Alvarez Restrepo (1028142667)\",\"error_message\":null,\"order_id\":\"F11BEC1411101C743F64DF596773D0B2_AZ3RXDEPHT_1692288462.6207\",\"due_date\":\"2023-08-17T23:07:46-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gerrard\",\"last_name\":\"Alvarez Restrepo\",\"email\":\"jeny_rere@hotmail.com\",\"phone_number\":\"3113864202\",\"address\":null,\"creation_date\":\"2023-08-17T11:07:46-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 16:08:58','2023-08-17 16:08:58'),(8067,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  905\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-17T13:08:10-05:00\",\"transaction\":{\"id\":\"trg4tg1yfhq8aka94stb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-17T13:08:10-05:00\",\"operation_date\":\"2023-08-17T13:08:10-05:00\",\"description\":\"Pago Inscripción academia: Nicolas Buitrago Gaviria (1034995250)\",\"error_message\":null,\"order_id\":\"0AE1DD3954EE840075DE1395771B6C9C_FNKRUC0BLZ_1692295678.6021\",\"amount\":431000.00,\"customer\":{\"name\":\"Estella\",\"last_name\":\"Gaviria Restrepo\",\"email\":\"estellagaviriar@une.net.co\",\"phone_number\":\"3104639177\",\"address\":null,\"creation_date\":\"2023-08-17T13:08:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg4tg1yfhq8aka94stb/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-17 18:08:11','2023-08-17 18:08:11'),(8068,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1239\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-17T13:09:43-05:00\",\"transaction\":{\"id\":\"trg4tg1yfhq8aka94stb\",\"authorization\":\"130943\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":36,\"conciliated\":true,\"creation_date\":\"2023-08-17T13:08:10-05:00\",\"operation_date\":\"2023-08-17T13:09:42-05:00\",\"description\":\"Pago Inscripción academia: Nicolas Buitrago Gaviria (1034995250)\",\"error_message\":null,\"order_id\":\"0AE1DD3954EE840075DE1395771B6C9C_FNKRUC0BLZ_1692295678.6021\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"447198XXXXXX0977\",\"holder_name\":\"Ramiro Buitrago Issa \",\"expiration_year\":\"28\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":36,\"payments_type\":\"without_interest\"},\"amount\":431000.00,\"customer\":{\"name\":\"Estella\",\"last_name\":\"Gaviria Restrepo\",\"email\":\"estellagaviriar@une.net.co\",\"phone_number\":\"3104639177\",\"address\":null,\"creation_date\":\"2023-08-17T13:08:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg4tg1yfhq8aka94stb/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-17 18:09:44','2023-08-17 18:09:44'),(8069,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-17T13:52:33-05:00\",\"transaction\":{\"id\":\"trr5t2cnon2cfe6lty3t\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-17T13:51:19-05:00\",\"operation_date\":\"2023-08-17T13:51:19-05:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Taborda (1037632734)\",\"error_message\":null,\"order_id\":\"414A7497190EAEF6B5D75D5A6A11AFCF_3U9QC0DH6M_1692298267.6128\",\"due_date\":\"2023-08-18T01:51:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"wendy\",\"last_name\":\"Taborda\",\"email\":\"wendytabor-zap@outlook.com\",\"phone_number\":\"3107673536\",\"address\":null,\"creation_date\":\"2023-08-17T13:51:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr5t2cnon2cfe6lty3t/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 18:52:34','2023-08-17 18:52:34'),(8070,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-17T13:53:23-05:00\",\"transaction\":{\"id\":\"trghyyypbxvzqkz4c3pm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-17T13:52:01-05:00\",\"operation_date\":\"2023-08-17T13:52:01-05:00\",\"description\":\"Pago Mensual academia: Matias Serna Giraldo (1035013129)\",\"error_message\":null,\"order_id\":\"EBF12CB74E96E67E63783D93C534EF27_ATICH7M5VB_1692298318.1964\",\"due_date\":\"2023-08-18T01:52:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Giraldo Franco\",\"email\":\"cristinagirafra@gmail.com\",\"phone_number\":\"3137439487\",\"address\":null,\"creation_date\":\"2023-08-17T13:52:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trghyyypbxvzqkz4c3pm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 18:53:23','2023-08-17 18:53:23'),(8071,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-17T12:54:12-06:00\",\"transaction\":{\"id\":\"trr5t2cnon2cfe6lty3t\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"108597509\",\"creation_date\":\"2023-08-17T13:51:19-06:00\",\"operation_date\":\"2023-08-17T13:53:59-06:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Taborda (1037632734)\",\"error_message\":null,\"order_id\":\"414A7497190EAEF6B5D75D5A6A11AFCF_3U9QC0DH6M_1692298267.6128\",\"due_date\":\"2023-08-18T01:51:19-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"wendy\",\"last_name\":\"Taborda\",\"email\":\"wendytabor-zap@outlook.com\",\"phone_number\":\"3107673536\",\"address\":null,\"creation_date\":\"2023-08-17T13:51:19-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 18:54:12','2023-08-17 18:54:12'),(8072,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-17T12:57:13-06:00\",\"transaction\":{\"id\":\"trr5t2cnon2cfe6lty3t\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"108597509\",\"creation_date\":\"2023-08-17T13:51:19-06:00\",\"operation_date\":\"2023-08-17T13:53:59-06:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Taborda (1037632734)\",\"error_message\":null,\"order_id\":\"414A7497190EAEF6B5D75D5A6A11AFCF_3U9QC0DH6M_1692298267.6128\",\"due_date\":\"2023-08-18T01:51:19-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"wendy\",\"last_name\":\"Taborda\",\"email\":\"wendytabor-zap@outlook.com\",\"phone_number\":\"3107673536\",\"address\":null,\"creation_date\":\"2023-08-17T13:51:19-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 18:57:13','2023-08-17 18:57:13'),(8073,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  850\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-17T13:15:08-06:00\",\"transaction\":{\"id\":\"trghyyypbxvzqkz4c3pm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-17T13:52:01-06:00\",\"operation_date\":\"2023-08-17T13:53:31-06:00\",\"description\":\"Pago Mensual academia: Matias Serna Giraldo (1035013129)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"EBF12CB74E96E67E63783D93C534EF27_ATICH7M5VB_1692298318.1964\",\"due_date\":\"2023-08-18T01:52:01-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Giraldo Franco\",\"email\":\"cristinagirafra@gmail.com\",\"phone_number\":\"3137439487\",\"address\":null,\"creation_date\":\"2023-08-17T13:52:01-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 19:15:09','2023-08-17 19:15:09'),(8074,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-17T15:53:31-05:00\",\"transaction\":{\"id\":\"trwq0toa4cgidxfpc1zx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-17T15:52:27-05:00\",\"operation_date\":\"2023-08-17T15:52:27-05:00\",\"description\":\"Pago Mensual academia: Said Andrés Rodríguez (1141523596)\",\"error_message\":null,\"order_id\":\"05EDF455CB266CCB3EA3AC2715F87326_7Q98HNTS21_1692305545.0489\",\"due_date\":\"2023-08-18T03:52:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dora Elisa\",\"last_name\":\"Rodriguez R\",\"email\":\"doraeliza2020@hotmail.com\",\"phone_number\":\"3146483570\",\"address\":null,\"creation_date\":\"2023-08-17T15:52:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwq0toa4cgidxfpc1zx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 20:53:31','2023-08-17 20:53:31'),(8075,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-17T15:58:08-05:00\",\"transaction\":{\"id\":\"trwq0toa4cgidxfpc1zx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"108858660\",\"creation_date\":\"2023-08-17T15:52:27-05:00\",\"operation_date\":\"2023-08-17T15:57:17-05:00\",\"description\":\"Pago Mensual academia: Said Andrés Rodríguez (1141523596)\",\"error_message\":null,\"order_id\":\"05EDF455CB266CCB3EA3AC2715F87326_7Q98HNTS21_1692305545.0489\",\"due_date\":\"2023-08-18T03:52:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dora Elisa\",\"last_name\":\"Rodriguez R\",\"email\":\"doraeliza2020@hotmail.com\",\"phone_number\":\"3146483570\",\"address\":null,\"creation_date\":\"2023-08-17T15:52:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-17 20:58:09','2023-08-17 20:58:09'),(8076,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-17T20:52:40-05:00\",\"transaction\":{\"id\":\"trevukvaxn6sbqrsedhi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-17T20:52:40-05:00\",\"operation_date\":\"2023-08-17T20:52:40-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Muñoz David (1017942661)\",\"error_message\":null,\"order_id\":\"E6E713296627DFF6475085CC6A224464_5EBV06YOWN_1692323557.7305\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Diego\",\"last_name\":\"Muñoz Aguilar\",\"email\":\"judmunoz1@gmail.com\",\"phone_number\":\"3183875368\",\"address\":null,\"creation_date\":\"2023-08-17T20:52:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trevukvaxn6sbqrsedhi/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 01:52:40','2023-08-18 01:52:40'),(8077,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1137\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-17T20:54:24-05:00\",\"transaction\":{\"id\":\"trevukvaxn6sbqrsedhi\",\"authorization\":\"389942\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-17T20:52:40-05:00\",\"operation_date\":\"2023-08-17T20:54:23-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Muñoz David (1017942661)\",\"error_message\":null,\"order_id\":\"E6E713296627DFF6475085CC6A224464_5EBV06YOWN_1692323557.7305\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"409984XXXXXX4074\",\"holder_name\":\"Juan Munoz A\",\"expiration_year\":\"27\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":95000.00,\"customer\":{\"name\":\"Juan Diego\",\"last_name\":\"Muñoz Aguilar\",\"email\":\"judmunoz1@gmail.com\",\"phone_number\":\"3183875368\",\"address\":null,\"creation_date\":\"2023-08-17T20:52:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trevukvaxn6sbqrsedhi/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 01:54:25','2023-08-18 01:54:25'),(8078,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-18T02:11:09-06:00\",\"transaction\":{\"id\":\"tr2g80lbki8x9s6atfyq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-16T15:12:27-06:00\",\"operation_date\":\"2023-08-16T15:12:27-06:00\",\"description\":\"Pago Mensual academia: martin bolivar hernandez (1034998470)\",\"error_message\":null,\"order_id\":\"196F5641AA9DC87067DA4FF90FD81E7B_KGP0TRU5ZD_1692216658.7286\",\"due_date\":\"2023-08-17T03:12:27-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"carlos\",\"last_name\":\"bolivar toro\",\"email\":\"carlosbolivartoro@gmail.com\",\"phone_number\":\"3005865102\",\"address\":null,\"creation_date\":\"2023-08-16T15:12:27-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2g80lbki8x9s6atfyq/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 08:11:10','2023-08-18 08:11:10'),(8079,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-18T02:11:26-06:00\",\"transaction\":{\"id\":\"trlrauxg8o4zh2easezh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-16T20:18:42-06:00\",\"operation_date\":\"2023-08-16T20:18:42-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"B1D10E7BAFA4421218A51B1E1F1B0BA2_E-64DD74BB-92_1692235116.5833\",\"due_date\":\"2023-08-17T08:18:42-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Steven\",\"last_name\":\"Alzate Guarin\",\"email\":\"totasteven@hotmail.com\",\"phone_number\":\"3136737159\",\"address\":null,\"creation_date\":\"2023-08-16T20:18:42-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trlrauxg8o4zh2easezh/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 08:11:27','2023-08-18 08:11:27'),(8080,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-18T02:11:26-06:00\",\"transaction\":{\"id\":\"trvcjwsuajzdyovv2fb5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-16T20:20:44-06:00\",\"operation_date\":\"2023-08-16T20:20:44-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"B1D10E7BAFA4421218A51B1E1F1B0BA2_E-64DD74BB-92_1692235240.8804\",\"due_date\":\"2023-08-17T08:20:44-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Steven\",\"last_name\":\"Alzate Guarin\",\"email\":\"totasteven@hotmail.com\",\"phone_number\":\"3136737159\",\"address\":null,\"creation_date\":\"2023-08-16T20:20:44-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trvcjwsuajzdyovv2fb5/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 08:11:27','2023-08-18 08:11:27'),(8081,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-18T02:11:26-06:00\",\"transaction\":{\"id\":\"trnfbhohimpnovpoyv3i\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-16T20:15:48-06:00\",\"operation_date\":\"2023-08-16T20:15:48-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"B1D10E7BAFA4421218A51B1E1F1B0BA2_E-64DD74BB-92_1692234944.6199\",\"due_date\":\"2023-08-17T08:15:48-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Steven\",\"last_name\":\"Alzate Guarin\",\"email\":\"totasteven@hotmail.com\",\"phone_number\":\"3136737159\",\"address\":null,\"creation_date\":\"2023-08-16T20:15:48-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trnfbhohimpnovpoyv3i/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 08:11:27','2023-08-18 08:11:27'),(8082,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-18T02:11:26-06:00\",\"transaction\":{\"id\":\"trcvt0ocykk5ywhcyb33\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-17T10:34:49-06:00\",\"operation_date\":\"2023-08-17T10:34:49-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"B1D10E7BAFA4421218A51B1E1F1B0BA2_E-64DD74BB-92_1692286486.5393\",\"due_date\":\"2023-08-17T22:34:49-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Steven\",\"last_name\":\"Alzate Guarin\",\"email\":\"totasteven@hotmail.com\",\"phone_number\":\"3136737159\",\"address\":null,\"creation_date\":\"2023-08-17T10:34:49-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trcvt0ocykk5ywhcyb33/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 08:11:27','2023-08-18 08:11:27'),(8083,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-18T02:11:26-06:00\",\"transaction\":{\"id\":\"trksnwfw9nqdjzcvg4q1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-16T20:22:07-06:00\",\"operation_date\":\"2023-08-16T20:22:07-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"B1D10E7BAFA4421218A51B1E1F1B0BA2_E-64DD74BB-92_1692235323.5132\",\"due_date\":\"2023-08-17T08:22:07-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Steven\",\"last_name\":\"Alzate Guarin\",\"email\":\"totasteven@hotmail.com\",\"phone_number\":\"3136737159\",\"address\":null,\"creation_date\":\"2023-08-16T20:22:07-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trksnwfw9nqdjzcvg4q1/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 08:11:27','2023-08-18 08:11:27'),(8084,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-18T02:11:26-06:00\",\"transaction\":{\"id\":\"trzwnunyrjsw2astdf6f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-17T10:33:27-06:00\",\"operation_date\":\"2023-08-17T10:33:27-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"6F3EF77AC0E3619E98159E9B6FEBF557_E-64DE3DBD-81_1692286402.5366\",\"due_date\":\"2023-08-17T22:33:27-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Steven\",\"last_name\":\"Alzate Guarin\",\"email\":\"totasteven@hotmail.com\",\"phone_number\":\"3136737159\",\"address\":null,\"creation_date\":\"2023-08-17T10:33:27-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trzwnunyrjsw2astdf6f/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 08:11:27','2023-08-18 08:11:27'),(8085,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T07:34:41-05:00\",\"transaction\":{\"id\":\"trlwogfyuuvopkyoxikt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T07:33:32-05:00\",\"operation_date\":\"2023-08-18T07:33:32-05:00\",\"description\":\"Pago Mensual academia: jeronimo rivas echeverri (1020318285)\",\"error_message\":null,\"order_id\":\"6346DC723395E1EE8EF57F4883BE4CB4_GKX2ZO46AD_1692362003.955\",\"due_date\":\"2023-08-18T19:33:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"john jairo\",\"last_name\":\"rivas lopez\",\"email\":\"jhonj828@hotmail.com\",\"phone_number\":\"3015111086\",\"address\":null,\"creation_date\":\"2023-08-18T07:33:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlwogfyuuvopkyoxikt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 12:34:42','2023-08-18 12:34:42'),(8086,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T07:35:56-05:00\",\"transaction\":{\"id\":\"trlwogfyuuvopkyoxikt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"109718786\",\"creation_date\":\"2023-08-18T07:33:32-05:00\",\"operation_date\":\"2023-08-18T07:35:47-05:00\",\"description\":\"Pago Mensual academia: jeronimo rivas echeverri (1020318285)\",\"error_message\":null,\"order_id\":\"6346DC723395E1EE8EF57F4883BE4CB4_GKX2ZO46AD_1692362003.955\",\"due_date\":\"2023-08-18T19:33:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"john jairo\",\"last_name\":\"rivas lopez\",\"email\":\"jhonj828@hotmail.com\",\"phone_number\":\"3015111086\",\"address\":null,\"creation_date\":\"2023-08-18T07:33:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 12:35:57','2023-08-18 12:35:57'),(8087,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T08:44:07-05:00\",\"transaction\":{\"id\":\"tr8kxhzxtnt5lrksro25\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T08:43:35-05:00\",\"operation_date\":\"2023-08-18T08:43:35-05:00\",\"description\":\"Pago Mensual academia: Gabriela Bustamante estrada (1040751290)\",\"error_message\":null,\"order_id\":\"DCCAB9BD9E0B69C49302025EFDF19702_T1XKPE4Y6Z_1692366211.3471\",\"due_date\":\"2023-08-18T20:43:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Yesica Johana\",\"last_name\":\"Estrada mendoza\",\"email\":\"ye.k22@hotmail.com\",\"phone_number\":\"3104707344\",\"address\":null,\"creation_date\":\"2023-08-18T08:43:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8kxhzxtnt5lrksro25/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 13:44:07','2023-08-18 13:44:07'),(8088,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T08:45:27-05:00\",\"transaction\":{\"id\":\"tr8kxhzxtnt5lrksro25\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"109818596\",\"creation_date\":\"2023-08-18T08:43:35-05:00\",\"operation_date\":\"2023-08-18T08:45:21-05:00\",\"description\":\"Pago Mensual academia: Gabriela Bustamante estrada (1040751290)\",\"error_message\":null,\"order_id\":\"DCCAB9BD9E0B69C49302025EFDF19702_T1XKPE4Y6Z_1692366211.3471\",\"due_date\":\"2023-08-18T20:43:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Yesica Johana\",\"last_name\":\"Estrada mendoza\",\"email\":\"ye.k22@hotmail.com\",\"phone_number\":\"3104707344\",\"address\":null,\"creation_date\":\"2023-08-18T08:43:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 13:45:28','2023-08-18 13:45:28'),(8089,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T09:03:53-05:00\",\"transaction\":{\"id\":\"trc1wuzbdrheas0erja9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T09:03:06-05:00\",\"operation_date\":\"2023-08-18T09:03:06-05:00\",\"description\":\"Pago Mensual academia: jeronimo Solarte Calle (1031942450)\",\"error_message\":null,\"order_id\":\"51E6D6E679953C6311757004D8CBBBA9_PMQB4DTGYL_1692367380.5725\",\"due_date\":\"2023-08-18T21:03:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"solarte Calle\",\"email\":\"jasol2@hotmail.com\",\"phone_number\":\"3182407090\",\"address\":null,\"creation_date\":\"2023-08-18T09:03:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc1wuzbdrheas0erja9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 14:03:54','2023-08-18 14:03:54'),(8090,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  844\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-18T09:04:52-05:00\",\"transaction\":{\"id\":\"trc1wuzbdrheas0erja9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-18T09:03:06-05:00\",\"operation_date\":\"2023-08-18T09:04:00-05:00\",\"description\":\"Pago Mensual academia: jeronimo Solarte Calle (1031942450)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"51E6D6E679953C6311757004D8CBBBA9_PMQB4DTGYL_1692367380.5725\",\"due_date\":\"2023-08-18T21:03:06-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"solarte Calle\",\"email\":\"jasol2@hotmail.com\",\"phone_number\":\"3182407090\",\"address\":null,\"creation_date\":\"2023-08-18T09:03:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 14:04:53','2023-08-18 14:04:53'),(8091,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T09:50:13-05:00\",\"transaction\":{\"id\":\"trrgh77oc78gr9avsp8q\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T09:31:48-05:00\",\"operation_date\":\"2023-08-18T09:31:48-05:00\",\"description\":\"Pago Inscripción academia: Salomon Perez Gutierrez (1020231433)\",\"error_message\":null,\"order_id\":\"77C493EC14246D748DB3EE8FCE0092DB_WSXAPKEH0N_1692369098.0633\",\"due_date\":\"2023-08-18T21:31:48-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Jhon dairo \",\"last_name\":\"Perez londoño \",\"email\":\"autosunoa@hotmail.com\",\"phone_number\":\"3155027745\",\"address\":null,\"creation_date\":\"2023-08-18T09:31:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrgh77oc78gr9avsp8q/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 14:50:13','2023-08-18 14:50:13'),(8092,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T08:54:09-06:00\",\"transaction\":{\"id\":\"trrgh77oc78gr9avsp8q\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"109953156\",\"creation_date\":\"2023-08-18T09:31:48-06:00\",\"operation_date\":\"2023-08-18T09:52:09-06:00\",\"description\":\"Pago Inscripción academia: Salomon Perez Gutierrez (1020231433)\",\"error_message\":null,\"order_id\":\"77C493EC14246D748DB3EE8FCE0092DB_WSXAPKEH0N_1692369098.0633\",\"due_date\":\"2023-08-18T21:31:48-06:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Jhon dairo \",\"last_name\":\"Perez londoño \",\"email\":\"autosunoa@hotmail.com\",\"phone_number\":\"3155027745\",\"address\":null,\"creation_date\":\"2023-08-18T09:31:48-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 14:54:10','2023-08-18 14:54:10'),(8093,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T10:26:54-05:00\",\"transaction\":{\"id\":\"tr2jstbt5vjwrcggvcqu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T10:22:48-05:00\",\"operation_date\":\"2023-08-18T10:22:48-05:00\",\"description\":\"Pago Inscripción academia: Simón Alzate Sanz (1035008452)\",\"error_message\":null,\"order_id\":\"5481B2F34A74E427A2818014B8E103B0_89GT1H5VQX_1692372161.5089\",\"due_date\":\"2023-08-18T22:22:48-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Simón \",\"last_name\":\"Alzate Sanz\",\"email\":\"milenasanz7@hotmail.com\",\"phone_number\":\"3128816645\",\"address\":null,\"creation_date\":\"2023-08-18T10:22:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2jstbt5vjwrcggvcqu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 15:26:54','2023-08-18 15:26:54'),(8094,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T10:28:23-05:00\",\"transaction\":{\"id\":\"tr2jstbt5vjwrcggvcqu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"110035800\",\"creation_date\":\"2023-08-18T10:22:48-05:00\",\"operation_date\":\"2023-08-18T10:28:03-05:00\",\"description\":\"Pago Inscripción academia: Simón Alzate Sanz (1035008452)\",\"error_message\":null,\"order_id\":\"5481B2F34A74E427A2818014B8E103B0_89GT1H5VQX_1692372161.5089\",\"due_date\":\"2023-08-18T22:22:48-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Simón \",\"last_name\":\"Alzate Sanz\",\"email\":\"milenasanz7@hotmail.com\",\"phone_number\":\"3128816645\",\"address\":null,\"creation_date\":\"2023-08-18T10:22:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 15:28:24','2023-08-18 15:28:24'),(8095,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T10:31:11-05:00\",\"transaction\":{\"id\":\"trzidynxvymh3v3llnc7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T10:29:43-05:00\",\"operation_date\":\"2023-08-18T10:29:43-05:00\",\"description\":\"Pago Mensual academia: Simón Alzate Sanz (1035008452)\",\"error_message\":null,\"order_id\":\"43B52842663FA6E4100C72751D08DE6F_OE0B4FRVGS_1692372553.4791\",\"due_date\":\"2023-08-18T22:29:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Simón\",\"last_name\":\"Alzate Sanz\",\"email\":\"milenasanz7@hotmail.com\",\"phone_number\":\"3128816645\",\"address\":null,\"creation_date\":\"2023-08-18T10:29:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzidynxvymh3v3llnc7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 15:31:12','2023-08-18 15:31:12'),(8096,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T10:32:59-05:00\",\"transaction\":{\"id\":\"trzidynxvymh3v3llnc7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"110045989\",\"creation_date\":\"2023-08-18T10:29:43-05:00\",\"operation_date\":\"2023-08-18T10:32:39-05:00\",\"description\":\"Pago Mensual academia: Simón Alzate Sanz (1035008452)\",\"error_message\":null,\"order_id\":\"43B52842663FA6E4100C72751D08DE6F_OE0B4FRVGS_1692372553.4791\",\"due_date\":\"2023-08-18T22:29:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Simón\",\"last_name\":\"Alzate Sanz\",\"email\":\"milenasanz7@hotmail.com\",\"phone_number\":\"3128816645\",\"address\":null,\"creation_date\":\"2023-08-18T10:29:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 15:33:00','2023-08-18 15:33:00'),(8097,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T11:11:24-05:00\",\"transaction\":{\"id\":\"tr5tnp2ateqyisbehqql\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T11:10:09-05:00\",\"operation_date\":\"2023-08-18T11:10:09-05:00\",\"description\":\"Pago Mensual academia: jeronimo Solarte Calle (1031942450)\",\"error_message\":null,\"order_id\":\"51E6D6E679953C6311757004D8CBBBA9_PMQB4DTGYL_1692375002.6514\",\"due_date\":\"2023-08-18T23:10:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"solarte Calle\",\"email\":\"jasol2@hotmail.com\",\"phone_number\":\"3182407090\",\"address\":null,\"creation_date\":\"2023-08-18T11:10:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5tnp2ateqyisbehqql/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 16:11:25','2023-08-18 16:11:25'),(8098,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T11:13:00-05:00\",\"transaction\":{\"id\":\"tr5tnp2ateqyisbehqql\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"110143708\",\"creation_date\":\"2023-08-18T11:10:09-05:00\",\"operation_date\":\"2023-08-18T11:12:47-05:00\",\"description\":\"Pago Mensual academia: jeronimo Solarte Calle (1031942450)\",\"error_message\":null,\"order_id\":\"51E6D6E679953C6311757004D8CBBBA9_PMQB4DTGYL_1692375002.6514\",\"due_date\":\"2023-08-18T23:10:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"solarte Calle\",\"email\":\"jasol2@hotmail.com\",\"phone_number\":\"3182407090\",\"address\":null,\"creation_date\":\"2023-08-18T11:10:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 16:13:01','2023-08-18 16:13:01'),(8099,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T14:47:12-05:00\",\"transaction\":{\"id\":\"tr4bikoarwgsw5dpk5tw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-18T14:47:12-05:00\",\"operation_date\":\"2023-08-18T14:47:12-05:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":null,\"order_id\":\"F8F5161CF94DF05793592F5FAB95138B_LI9DYA6G7K_1692388028.3575\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Valdez Osorio\",\"email\":\"leidyosorio@yahoo.com\",\"phone_number\":\"3166287821\",\"address\":null,\"creation_date\":\"2023-08-18T14:47:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4bikoarwgsw5dpk5tw/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 19:47:13','2023-08-18 19:47:13'),(8100,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  574\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-18T14:48:44-05:00\",\"transaction\":{\"id\":\"trx1h7hd44qijpdjubyh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-08-18T14:48:44-05:00\",\"operation_date\":\"2023-08-18T14:48:44-05:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"F8F5161CF94DF05793592F5FAB95138B_LI9DYA6G7K_1692388028.3575\",\"error_code\":3001,\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 19:48:45','2023-08-18 19:48:45'),(8101,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1146\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T14:49:43-05:00\",\"transaction\":{\"id\":\"tr4bikoarwgsw5dpk5tw\",\"authorization\":\"08281S\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-18T14:47:12-05:00\",\"operation_date\":\"2023-08-18T14:49:42-05:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":null,\"order_id\":\"F8F5161CF94DF05793592F5FAB95138B_LI9DYA6G7K_1692388028.3575\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"559591XXXXXX2389\",\"holder_name\":\"Stephen Valdez\",\"expiration_year\":\"28\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BARCLAYS BANK DELAWARE\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Valdez Osorio\",\"email\":\"leidyosorio@yahoo.com\",\"phone_number\":\"3166287821\",\"address\":null,\"creation_date\":\"2023-08-18T14:47:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4bikoarwgsw5dpk5tw/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 19:49:43','2023-08-18 19:49:43'),(8102,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T14:50:09-05:00\",\"transaction\":{\"id\":\"trebwbax1vcxgwl2yk7t\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-18T14:50:09-05:00\",\"operation_date\":\"2023-08-18T14:50:09-05:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":null,\"order_id\":\"842424A1D0595B76EC4FA03C46E8D755_0LYPB4ZWQD_1692388207.8123\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Valdez Osorio\",\"email\":\"leidyosorio@yahoo.com\",\"phone_number\":\"3166287821\",\"address\":null,\"creation_date\":\"2023-08-18T14:50:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trebwbax1vcxgwl2yk7t/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 19:50:10','2023-08-18 19:50:10'),(8103,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1146\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T14:50:54-05:00\",\"transaction\":{\"id\":\"trebwbax1vcxgwl2yk7t\",\"authorization\":\"01620S\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-18T14:50:09-05:00\",\"operation_date\":\"2023-08-18T14:50:53-05:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":null,\"order_id\":\"842424A1D0595B76EC4FA03C46E8D755_0LYPB4ZWQD_1692388207.8123\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"559591XXXXXX2389\",\"holder_name\":\"Stephen Valdez\",\"expiration_year\":\"28\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BARCLAYS BANK DELAWARE\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Valdez Osorio\",\"email\":\"leidyosorio@yahoo.com\",\"phone_number\":\"3166287821\",\"address\":null,\"creation_date\":\"2023-08-18T14:50:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trebwbax1vcxgwl2yk7t/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 19:50:55','2023-08-18 19:50:55'),(8104,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T14:51:29-05:00\",\"transaction\":{\"id\":\"trbn6jnznmle4zgvlg8f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-18T14:51:29-05:00\",\"operation_date\":\"2023-08-18T14:51:29-05:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":null,\"order_id\":\"8BACA01B732CF56F7CE83DF216514363_Y40C6HEZBV_1692388287.6361\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Valdez Osorio\",\"email\":\"leidyosorio@yahoo.com\",\"phone_number\":\"3166287821\",\"address\":null,\"creation_date\":\"2023-08-18T14:51:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbn6jnznmle4zgvlg8f/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 19:51:29','2023-08-18 19:51:29'),(8105,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1146\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T14:52:16-05:00\",\"transaction\":{\"id\":\"trbn6jnznmle4zgvlg8f\",\"authorization\":\"06471S\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-18T14:51:29-05:00\",\"operation_date\":\"2023-08-18T14:52:15-05:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":null,\"order_id\":\"8BACA01B732CF56F7CE83DF216514363_Y40C6HEZBV_1692388287.6361\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"559591XXXXXX2389\",\"holder_name\":\"Stephen Valdez\",\"expiration_year\":\"28\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BARCLAYS BANK DELAWARE\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Valdez Osorio\",\"email\":\"leidyosorio@yahoo.com\",\"phone_number\":\"3166287821\",\"address\":null,\"creation_date\":\"2023-08-18T14:51:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbn6jnznmle4zgvlg8f/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 19:52:16','2023-08-18 19:52:16'),(8106,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T15:56:06-05:00\",\"transaction\":{\"id\":\"trnqpwhbteutcr61nqjh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T15:55:24-05:00\",\"operation_date\":\"2023-08-18T15:55:24-05:00\",\"description\":\"Pago Mensual academia: Matias Usma Chavarriaga (1025907568)\",\"error_message\":null,\"order_id\":\"252A3DBAEB32E7690242AD3B556E626B_B01EW2A38Z_1692392120.0954\",\"due_date\":\"2023-08-19T03:55:24-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Chavarriaga Bedoya\",\"email\":\"maria.chavarriaga@gmail.com\",\"phone_number\":\"3122555292\",\"address\":null,\"creation_date\":\"2023-08-18T15:55:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnqpwhbteutcr61nqjh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 20:56:07','2023-08-18 20:56:07'),(8107,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T15:57:03-05:00\",\"transaction\":{\"id\":\"trnqpwhbteutcr61nqjh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"110789450\",\"creation_date\":\"2023-08-18T15:55:24-05:00\",\"operation_date\":\"2023-08-18T15:56:58-05:00\",\"description\":\"Pago Mensual academia: Matias Usma Chavarriaga (1025907568)\",\"error_message\":null,\"order_id\":\"252A3DBAEB32E7690242AD3B556E626B_B01EW2A38Z_1692392120.0954\",\"due_date\":\"2023-08-19T03:55:24-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Chavarriaga Bedoya\",\"email\":\"maria.chavarriaga@gmail.com\",\"phone_number\":\"3122555292\",\"address\":null,\"creation_date\":\"2023-08-18T15:55:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 20:57:04','2023-08-18 20:57:04'),(8108,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T16:27:11-05:00\",\"transaction\":{\"id\":\"trmxpnttkfgx1ytkxkdh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T16:26:09-05:00\",\"operation_date\":\"2023-08-18T16:26:09-05:00\",\"description\":\"Pago Mensual academia: NICOLAS LONDOÑO PEREAÑEZ (1035004492)\",\"error_message\":null,\"order_id\":\"0D441DE75945E5ACBC865406FC9A2559_J9IN8VSBC7_1692393966.9251\",\"due_date\":\"2023-08-19T04:26:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ELIANA\",\"last_name\":\"PEREAÑEZ PATIÑO\",\"email\":\"eliana.pereanez@gmail.com\",\"phone_number\":\"3117737115\",\"address\":null,\"creation_date\":\"2023-08-18T16:26:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmxpnttkfgx1ytkxkdh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 21:27:12','2023-08-18 21:27:12'),(8109,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T16:28:08-05:00\",\"transaction\":{\"id\":\"trmxpnttkfgx1ytkxkdh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"110864061\",\"creation_date\":\"2023-08-18T16:26:09-05:00\",\"operation_date\":\"2023-08-18T16:28:04-05:00\",\"description\":\"Pago Mensual academia: NICOLAS LONDOÑO PEREAÑEZ (1035004492)\",\"error_message\":null,\"order_id\":\"0D441DE75945E5ACBC865406FC9A2559_J9IN8VSBC7_1692393966.9251\",\"due_date\":\"2023-08-19T04:26:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ELIANA\",\"last_name\":\"PEREAÑEZ PATIÑO\",\"email\":\"eliana.pereanez@gmail.com\",\"phone_number\":\"3117737115\",\"address\":null,\"creation_date\":\"2023-08-18T16:26:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 21:28:09','2023-08-18 21:28:09'),(8110,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T17:14:24-05:00\",\"transaction\":{\"id\":\"tr1n4azdakkisxtes2wh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T17:13:25-05:00\",\"operation_date\":\"2023-08-18T17:13:25-05:00\",\"description\":\"Pago Mensual academia: Paolo Colorado Álvarez (1025908793)\",\"error_message\":null,\"order_id\":\"67606D48E361CE176CA71FD54FCF4286_UT745GYKA0_1692396801.5793\",\"due_date\":\"2023-08-19T05:13:25-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maryelly\",\"last_name\":\"Álvarez Arboleda\",\"email\":\"marlly_16_@hotmail.com\",\"phone_number\":\"3003589264\",\"address\":null,\"creation_date\":\"2023-08-18T17:13:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1n4azdakkisxtes2wh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 22:14:25','2023-08-18 22:14:25'),(8111,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-18T16:15:34-06:00\",\"transaction\":{\"id\":\"tr1n4azdakkisxtes2wh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-18T17:13:25-06:00\",\"operation_date\":\"2023-08-18T17:14:31-06:00\",\"description\":\"Pago Mensual academia: Paolo Colorado Álvarez (1025908793)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"67606D48E361CE176CA71FD54FCF4286_UT745GYKA0_1692396801.5793\",\"due_date\":\"2023-08-19T05:13:25-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Maryelly\",\"last_name\":\"Álvarez Arboleda\",\"email\":\"marlly_16_@hotmail.com\",\"phone_number\":\"3003589264\",\"address\":null,\"creation_date\":\"2023-08-18T17:13:25-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 22:15:35','2023-08-18 22:15:35'),(8112,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T17:16:44-05:00\",\"transaction\":{\"id\":\"tr7kqul8m0ezdbm2r8ie\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T17:16:02-05:00\",\"operation_date\":\"2023-08-18T17:16:02-05:00\",\"description\":\"Pago Mensual academia: Paolo Colorado Álvarez (1025908793)\",\"error_message\":null,\"order_id\":\"67606D48E361CE176CA71FD54FCF4286_UT745GYKA0_1692396957.9522\",\"due_date\":\"2023-08-19T05:16:02-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maryelly\",\"last_name\":\"Álvarez Arboleda\",\"email\":\"marlly_16_@hotmail.com\",\"phone_number\":\"3003589264\",\"address\":null,\"creation_date\":\"2023-08-18T17:16:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7kqul8m0ezdbm2r8ie/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 22:16:45','2023-08-18 22:16:45'),(8113,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-18T17:18:10-05:00\",\"transaction\":{\"id\":\"tr7kqul8m0ezdbm2r8ie\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-18T17:16:02-05:00\",\"operation_date\":\"2023-08-18T17:17:16-05:00\",\"description\":\"Pago Mensual academia: Paolo Colorado Álvarez (1025908793)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"67606D48E361CE176CA71FD54FCF4286_UT745GYKA0_1692396957.9522\",\"due_date\":\"2023-08-19T05:16:02-05:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Maryelly\",\"last_name\":\"Álvarez Arboleda\",\"email\":\"marlly_16_@hotmail.com\",\"phone_number\":\"3003589264\",\"address\":null,\"creation_date\":\"2023-08-18T17:16:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 22:18:11','2023-08-18 22:18:11'),(8114,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  865\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T17:43:27-05:00\",\"transaction\":{\"id\":\"trzf31uxl2vz6wliwz1b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-18T17:43:27-05:00\",\"operation_date\":\"2023-08-18T17:43:27-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"1534B76D325A8F591B52D302E7181331_E-64DFF400-92_1692398597.7588\",\"amount\":146900.00,\"customer\":{\"name\":\"Juan Diego\",\"last_name\":\"Quintero Villa\",\"email\":\"villajuandi@gmail.com\",\"phone_number\":\"3197168768\",\"address\":null,\"creation_date\":\"2023-08-18T17:43:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trzf31uxl2vz6wliwz1b/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 22:43:27','2023-08-18 22:43:27'),(8115,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1115\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T17:46:00-05:00\",\"transaction\":{\"id\":\"trzf31uxl2vz6wliwz1b\",\"authorization\":\"174543\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-18T17:43:27-05:00\",\"operation_date\":\"2023-08-18T17:45:59-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"1534B76D325A8F591B52D302E7181331_E-64DFF400-92_1692398597.7588\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5793\",\"holder_name\":\"JUAN QUINTERO\",\"expiration_year\":\"25\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":146900.00,\"customer\":{\"name\":\"Juan Diego\",\"last_name\":\"Quintero Villa\",\"email\":\"villajuandi@gmail.com\",\"phone_number\":\"3197168768\",\"address\":null,\"creation_date\":\"2023-08-18T17:43:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trzf31uxl2vz6wliwz1b/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 22:46:00','2023-08-18 22:46:00'),(8116,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T17:52:59-05:00\",\"transaction\":{\"id\":\"tru2pbikt8m1lvj480yj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T17:52:21-05:00\",\"operation_date\":\"2023-08-18T17:52:21-05:00\",\"description\":\"Pago Mensual academia: mathias falcao agudelo buitrago (1038266640)\",\"error_message\":null,\"order_id\":\"69EBA34671B3EF1EF38EE85CAAE6B2A1_DJ6CNZ1V5G_1692399138.5775\",\"due_date\":\"2023-08-19T05:52:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"julian david\",\"last_name\":\"agudelo upegui\",\"email\":\"juliupegui1@hotmail.com\",\"phone_number\":\"3106505783\",\"address\":null,\"creation_date\":\"2023-08-18T17:52:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru2pbikt8m1lvj480yj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 22:52:59','2023-08-18 22:52:59'),(8117,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T17:53:47-05:00\",\"transaction\":{\"id\":\"tranxksl1ctzplzir4qg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-18T17:53:47-05:00\",\"operation_date\":\"2023-08-18T17:53:47-05:00\",\"description\":\"Pago Mensual academia: mathias falcao agudelo buitrago (1038266640)\",\"error_message\":null,\"order_id\":\"565767EB96D87D0D3AF8DFB332C2003F_59L42BZOXG_1692399223.9954\",\"amount\":165900.00,\"customer\":{\"name\":\"julian david\",\"last_name\":\"agudelo upegui\",\"email\":\"juliupegui1@hotmail.com\",\"phone_number\":\"3106505783\",\"address\":null,\"creation_date\":\"2023-08-18T17:53:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tranxksl1ctzplzir4qg/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 22:53:48','2023-08-18 22:53:48'),(8118,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1158\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T17:54:38-05:00\",\"transaction\":{\"id\":\"tranxksl1ctzplzir4qg\",\"authorization\":\"963083\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-18T17:53:47-05:00\",\"operation_date\":\"2023-08-18T17:54:37-05:00\",\"description\":\"Pago Mensual academia: mathias falcao agudelo buitrago (1038266640)\",\"error_message\":null,\"order_id\":\"565767EB96D87D0D3AF8DFB332C2003F_59L42BZOXG_1692399223.9954\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491511XXXXXX8587\",\"holder_name\":\"Julian david agudelo\",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"julian david\",\"last_name\":\"agudelo upegui\",\"email\":\"juliupegui1@hotmail.com\",\"phone_number\":\"3106505783\",\"address\":null,\"creation_date\":\"2023-08-18T17:53:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tranxksl1ctzplzir4qg/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-18 22:54:39','2023-08-18 22:54:39'),(8119,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  863\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-18T17:06:08-06:00\",\"transaction\":{\"id\":\"tru2pbikt8m1lvj480yj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-18T17:52:21-06:00\",\"operation_date\":\"2023-08-18T18:05:21-06:00\",\"description\":\"Pago Mensual academia: mathias falcao agudelo buitrago (1038266640)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"69EBA34671B3EF1EF38EE85CAAE6B2A1_DJ6CNZ1V5G_1692399138.5775\",\"due_date\":\"2023-08-19T05:52:21-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"julian david\",\"last_name\":\"agudelo upegui\",\"email\":\"juliupegui1@hotmail.com\",\"phone_number\":\"3106505783\",\"address\":null,\"creation_date\":\"2023-08-18T17:52:21-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-18 23:06:09','2023-08-18 23:06:09'),(8120,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T19:25:43-05:00\",\"transaction\":{\"id\":\"trtm7ftlmuhogy06vgha\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T19:24:35-05:00\",\"operation_date\":\"2023-08-18T19:24:35-05:00\",\"description\":\"Pago Mensual academia: valentin jr carreazo serna (1055762232)\",\"error_message\":null,\"order_id\":\"2668A7105966CAE6E23901495176B8F9_NS5JXBK7DR_1692404672.2634\",\"due_date\":\"2023-08-19T07:24:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"laura vanessa\",\"last_name\":\"serna vasquez\",\"email\":\"lauris-vasquez@hotmail.com\",\"phone_number\":\"3022862926\",\"address\":null,\"creation_date\":\"2023-08-18T19:24:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtm7ftlmuhogy06vgha/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 00:25:44','2023-08-19 00:25:44'),(8121,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T19:27:03-05:00\",\"transaction\":{\"id\":\"trtm7ftlmuhogy06vgha\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111215559\",\"creation_date\":\"2023-08-18T19:24:35-05:00\",\"operation_date\":\"2023-08-18T00:00:00-05:00\",\"description\":\"Pago Mensual academia: valentin jr carreazo serna (1055762232)\",\"error_message\":null,\"order_id\":\"2668A7105966CAE6E23901495176B8F9_NS5JXBK7DR_1692404672.2634\",\"due_date\":\"2023-08-19T07:24:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"laura vanessa\",\"last_name\":\"serna vasquez\",\"email\":\"lauris-vasquez@hotmail.com\",\"phone_number\":\"3022862926\",\"address\":null,\"creation_date\":\"2023-08-18T19:24:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 00:27:04','2023-08-19 00:27:04'),(8122,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T19:43:03-05:00\",\"transaction\":{\"id\":\"trzxa5nppg0auakgmlkl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T19:42:14-05:00\",\"operation_date\":\"2023-08-18T19:42:14-05:00\",\"description\":\"Pago Mensual academia: Justin Restrepo Pérez (1033491125)\",\"error_message\":null,\"order_id\":\"721E7285B298CDE5B3D0C973ED8D7B63_TH6WLIQXGN_1692405726.0644\",\"due_date\":\"2023-08-19T07:42:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana Andrea\",\"last_name\":\"Restrepo Pérez\",\"email\":\"tatyjus20@hotmail.com\",\"phone_number\":\"3003349879\",\"address\":null,\"creation_date\":\"2023-08-18T19:42:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzxa5nppg0auakgmlkl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 00:43:03','2023-08-19 00:43:03'),(8123,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T19:44:25-05:00\",\"transaction\":{\"id\":\"trzxa5nppg0auakgmlkl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111245369\",\"creation_date\":\"2023-08-18T19:42:14-05:00\",\"operation_date\":\"2023-08-18T19:44:02-05:00\",\"description\":\"Pago Mensual academia: Justin Restrepo Pérez (1033491125)\",\"error_message\":null,\"order_id\":\"721E7285B298CDE5B3D0C973ED8D7B63_TH6WLIQXGN_1692405726.0644\",\"due_date\":\"2023-08-19T07:42:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana Andrea\",\"last_name\":\"Restrepo Pérez\",\"email\":\"tatyjus20@hotmail.com\",\"phone_number\":\"3003349879\",\"address\":null,\"creation_date\":\"2023-08-18T19:42:14-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 00:44:26','2023-08-19 00:44:26'),(8124,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T20:05:48-05:00\",\"transaction\":{\"id\":\"trep8w4gfsq6riz3yw48\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-18T20:05:48-05:00\",\"operation_date\":\"2023-08-18T20:05:48-05:00\",\"description\":\"Pago Inscripción academia: Maria Alejandra Bohórquez Junco (1043685595)\",\"error_message\":null,\"order_id\":\"630B7D8DD49A0BAB667498F287D68C16_A2GO9IJTVH_1692407144.8166\",\"amount\":431000.00,\"customer\":{\"name\":\"Karen\",\"last_name\":\"Junco\",\"email\":\"junco.karen@gmail.com\",\"phone_number\":\"3004400435\",\"address\":null,\"creation_date\":\"2023-08-18T20:05:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trep8w4gfsq6riz3yw48/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-19 01:05:48','2023-08-19 01:05:48'),(8125,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1231\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T20:07:41-05:00\",\"transaction\":{\"id\":\"trep8w4gfsq6riz3yw48\",\"authorization\":\"447411\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":36,\"conciliated\":true,\"creation_date\":\"2023-08-18T20:05:48-05:00\",\"operation_date\":\"2023-08-18T20:07:40-05:00\",\"description\":\"Pago Inscripción academia: Maria Alejandra Bohórquez Junco (1043685595)\",\"error_message\":null,\"order_id\":\"630B7D8DD49A0BAB667498F287D68C16_A2GO9IJTVH_1692407144.8166\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"434660XXXXXX3123\",\"holder_name\":\"Heriberto Bohórquez \",\"expiration_year\":\"28\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE OCCIDENTE\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":36,\"payments_type\":\"without_interest\"},\"amount\":431000.00,\"customer\":{\"name\":\"Karen\",\"last_name\":\"Junco\",\"email\":\"junco.karen@gmail.com\",\"phone_number\":\"3004400435\",\"address\":null,\"creation_date\":\"2023-08-18T20:05:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trep8w4gfsq6riz3yw48/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-19 01:07:42','2023-08-19 01:07:42'),(8126,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T22:44:56-05:00\",\"transaction\":{\"id\":\"tromqtuu24fqhqtb4kc0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T22:43:48-05:00\",\"operation_date\":\"2023-08-18T22:43:48-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Garcia Gonzalez (1038876109)\",\"error_message\":null,\"order_id\":\"224E5E49814CA908E58C02E28A0462C1_2Z49QIM5CW_1692416622.4252\",\"due_date\":\"2023-08-19T10:43:48-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Garcia Gonzalez\",\"email\":\"nata.1201@hotmail.com\",\"phone_number\":\"3145195711\",\"address\":null,\"creation_date\":\"2023-08-18T22:43:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tromqtuu24fqhqtb4kc0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 03:44:57','2023-08-19 03:44:57'),(8127,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T22:47:23-05:00\",\"transaction\":{\"id\":\"tromqtuu24fqhqtb4kc0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111483261\",\"creation_date\":\"2023-08-18T22:43:48-05:00\",\"operation_date\":\"2023-08-18T22:46:07-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Garcia Gonzalez (1038876109)\",\"error_message\":null,\"order_id\":\"224E5E49814CA908E58C02E28A0462C1_2Z49QIM5CW_1692416622.4252\",\"due_date\":\"2023-08-19T10:43:48-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Garcia Gonzalez\",\"email\":\"nata.1201@hotmail.com\",\"phone_number\":\"3145195711\",\"address\":null,\"creation_date\":\"2023-08-18T22:43:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 03:47:23','2023-08-19 03:47:23'),(8128,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-18T23:15:46-05:00\",\"transaction\":{\"id\":\"tr5mkiznwgqhumf3swny\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-18T23:14:20-05:00\",\"operation_date\":\"2023-08-18T23:14:20-05:00\",\"description\":\"Pago Mensual academia: ISAAC QUINCHIA MEJIA (1036457456)\",\"error_message\":null,\"order_id\":\"ABA53DA2F6340A8B89DC96D09D0D0430_43LD1SYZB7_1692418456.7611\",\"due_date\":\"2023-08-19T11:14:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ISABEL CRISTINA\",\"last_name\":\"MEJIA\",\"email\":\"cristinemejia@hotmail.com\",\"phone_number\":\"3053765353\",\"address\":null,\"creation_date\":\"2023-08-18T23:14:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5mkiznwgqhumf3swny/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 04:15:46','2023-08-19 04:15:46'),(8129,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-18T23:17:25-05:00\",\"transaction\":{\"id\":\"tr5mkiznwgqhumf3swny\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111505703\",\"creation_date\":\"2023-08-18T23:14:20-05:00\",\"operation_date\":\"2023-08-18T23:17:18-05:00\",\"description\":\"Pago Mensual academia: ISAAC QUINCHIA MEJIA (1036457456)\",\"error_message\":null,\"order_id\":\"ABA53DA2F6340A8B89DC96D09D0D0430_43LD1SYZB7_1692418456.7611\",\"due_date\":\"2023-08-19T11:14:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ISABEL CRISTINA\",\"last_name\":\"MEJIA\",\"email\":\"cristinemejia@hotmail.com\",\"phone_number\":\"3053765353\",\"address\":null,\"creation_date\":\"2023-08-18T23:14:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 04:17:26','2023-08-19 04:17:26'),(8130,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T06:26:09-05:00\",\"transaction\":{\"id\":\"trdgicnh8yv2ogkj8ol6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-19T06:25:14-05:00\",\"operation_date\":\"2023-08-19T06:25:14-05:00\",\"description\":\"Pago Mensual academia: Martín Hurtatiz Zuluaga (1108260262)\",\"error_message\":null,\"order_id\":\"C2964CAAC096F26DB222CB325AA267CB_0ASYJRH79B_1692444310.918\",\"due_date\":\"2023-08-19T18:25:14-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gentil\",\"last_name\":\"Hurtatiz Tovar\",\"email\":\"gehuto@gmail.com\",\"phone_number\":\"3168708060\",\"address\":null,\"creation_date\":\"2023-08-19T06:25:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdgicnh8yv2ogkj8ol6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 11:26:10','2023-08-19 11:26:10'),(8131,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-19T06:27:44-05:00\",\"transaction\":{\"id\":\"trdgicnh8yv2ogkj8ol6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111588434\",\"creation_date\":\"2023-08-19T06:25:14-05:00\",\"operation_date\":\"2023-08-19T06:27:30-05:00\",\"description\":\"Pago Mensual academia: Martín Hurtatiz Zuluaga (1108260262)\",\"error_message\":null,\"order_id\":\"C2964CAAC096F26DB222CB325AA267CB_0ASYJRH79B_1692444310.918\",\"due_date\":\"2023-08-19T18:25:14-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gentil\",\"last_name\":\"Hurtatiz Tovar\",\"email\":\"gehuto@gmail.com\",\"phone_number\":\"3168708060\",\"address\":null,\"creation_date\":\"2023-08-19T06:25:14-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 11:27:45','2023-08-19 11:27:45'),(8132,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T06:53:46-05:00\",\"transaction\":{\"id\":\"trra9zivrsq5wgyeekgw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-19T06:53:00-05:00\",\"operation_date\":\"2023-08-19T06:53:00-05:00\",\"description\":\"Pago Mensual academia: Nicolas rios arboleda (1017941840)\",\"error_message\":null,\"order_id\":\"A385D7D1E52D89D1A445FAA37F5B5307_67NJYR0TLD_1692445955.3801\",\"due_date\":\"2023-08-19T18:53:00-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"yamir alberto\",\"last_name\":\"rios rios\",\"email\":\"yriosrios.contador@hotmail.com\",\"phone_number\":\"3006131758\",\"address\":null,\"creation_date\":\"2023-08-19T06:53:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trra9zivrsq5wgyeekgw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 11:53:46','2023-08-19 11:53:46'),(8133,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-19T06:55:49-05:00\",\"transaction\":{\"id\":\"trra9zivrsq5wgyeekgw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111602047\",\"creation_date\":\"2023-08-19T06:53:00-05:00\",\"operation_date\":\"2023-08-19T06:55:25-05:00\",\"description\":\"Pago Mensual academia: Nicolas rios arboleda (1017941840)\",\"error_message\":null,\"order_id\":\"A385D7D1E52D89D1A445FAA37F5B5307_67NJYR0TLD_1692445955.3801\",\"due_date\":\"2023-08-19T18:53:00-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"yamir alberto\",\"last_name\":\"rios rios\",\"email\":\"yriosrios.contador@hotmail.com\",\"phone_number\":\"3006131758\",\"address\":null,\"creation_date\":\"2023-08-19T06:53:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 11:55:50','2023-08-19 11:55:50'),(8134,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T06:56:46-05:00\",\"transaction\":{\"id\":\"trbckwmzncnsgsekvggb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-19T06:56:14-05:00\",\"operation_date\":\"2023-08-19T06:56:14-05:00\",\"description\":\"Pago Mensual academia: Nicolas rios arboleda (1017941840)\",\"error_message\":null,\"order_id\":\"DA6EA77475918A3D83C7E49223D453CC_YT4BFDGMNP_1692446163.0563\",\"due_date\":\"2023-08-19T18:56:14-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"yamir alberto\",\"last_name\":\"rios rios\",\"email\":\"yriosrios.contador@hotmail.com\",\"phone_number\":\"3006131758\",\"address\":null,\"creation_date\":\"2023-08-19T06:56:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbckwmzncnsgsekvggb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 11:56:47','2023-08-19 11:56:47'),(8135,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-19T06:57:54-05:00\",\"transaction\":{\"id\":\"trbckwmzncnsgsekvggb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111603749\",\"creation_date\":\"2023-08-19T06:56:14-05:00\",\"operation_date\":\"2023-08-19T06:57:36-05:00\",\"description\":\"Pago Mensual academia: Nicolas rios arboleda (1017941840)\",\"error_message\":null,\"order_id\":\"DA6EA77475918A3D83C7E49223D453CC_YT4BFDGMNP_1692446163.0563\",\"due_date\":\"2023-08-19T18:56:14-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"yamir alberto\",\"last_name\":\"rios rios\",\"email\":\"yriosrios.contador@hotmail.com\",\"phone_number\":\"3006131758\",\"address\":null,\"creation_date\":\"2023-08-19T06:56:14-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 11:57:54','2023-08-19 11:57:54'),(8136,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T07:03:08-05:00\",\"transaction\":{\"id\":\"trhhcvdytocnkdudnnc2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-19T07:01:31-05:00\",\"operation_date\":\"2023-08-19T07:01:31-05:00\",\"description\":\"Pago Mensual academia: Pedro Estrada Posada (1033269361)\",\"error_message\":null,\"order_id\":\"9001CA429212011F4A4FDA6C778CC318_7WYBICFG1T_1692446487.8805\",\"due_date\":\"2023-08-19T19:01:31-05:00\",\"amount\":149310.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Estrada Posada\",\"email\":\"marxles@hotmail.com\",\"phone_number\":\"3002487175\",\"address\":null,\"creation_date\":\"2023-08-19T07:01:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhhcvdytocnkdudnnc2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 12:03:09','2023-08-19 12:03:09'),(8137,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-19T06:06:08-06:00\",\"transaction\":{\"id\":\"trhhcvdytocnkdudnnc2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111607552\",\"creation_date\":\"2023-08-19T07:01:31-06:00\",\"operation_date\":\"2023-08-19T00:00:00-06:00\",\"description\":\"Pago Mensual academia: Pedro Estrada Posada (1033269361)\",\"error_message\":null,\"order_id\":\"9001CA429212011F4A4FDA6C778CC318_7WYBICFG1T_1692446487.8805\",\"due_date\":\"2023-08-19T19:01:31-06:00\",\"amount\":149310.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Estrada Posada\",\"email\":\"marxles@hotmail.com\",\"phone_number\":\"3002487175\",\"address\":null,\"creation_date\":\"2023-08-19T07:01:31-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 12:06:08','2023-08-19 12:06:08'),(8138,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T07:07:37-05:00\",\"transaction\":{\"id\":\"traimzksgre7oav3msob\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-19T07:06:38-05:00\",\"operation_date\":\"2023-08-19T07:06:38-05:00\",\"description\":\"Pago Mensual academia: Pedro Estrada Posada (1033269361)\",\"error_message\":null,\"order_id\":\"69F357FCC8E6D119F3D95F33CEDB5915_9BPFO3DVUT_1692446794.2223\",\"due_date\":\"2023-08-19T19:06:38-05:00\",\"amount\":149310.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Estrada Posada\",\"email\":\"marxles@hotmail.com\",\"phone_number\":\"3002487175\",\"address\":null,\"creation_date\":\"2023-08-19T07:06:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traimzksgre7oav3msob/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 12:07:37','2023-08-19 12:07:37'),(8139,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-19T06:09:10-06:00\",\"transaction\":{\"id\":\"traimzksgre7oav3msob\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111610446\",\"creation_date\":\"2023-08-19T07:06:38-06:00\",\"operation_date\":\"2023-08-19T00:00:00-06:00\",\"description\":\"Pago Mensual academia: Pedro Estrada Posada (1033269361)\",\"error_message\":null,\"order_id\":\"69F357FCC8E6D119F3D95F33CEDB5915_9BPFO3DVUT_1692446794.2223\",\"due_date\":\"2023-08-19T19:06:38-06:00\",\"amount\":149310.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Estrada Posada\",\"email\":\"marxles@hotmail.com\",\"phone_number\":\"3002487175\",\"address\":null,\"creation_date\":\"2023-08-19T07:06:38-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 12:09:11','2023-08-19 12:09:11'),(8140,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T08:45:38-05:00\",\"transaction\":{\"id\":\"tro6f1gqrwbd6w9rure2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-19T08:44:59-05:00\",\"operation_date\":\"2023-08-19T08:44:59-05:00\",\"description\":\"Pago Mensual academia: Paolo Colorado Álvarez (1025908793)\",\"error_message\":null,\"order_id\":\"67606D48E361CE176CA71FD54FCF4286_UT745GYKA0_1692452694.707\",\"due_date\":\"2023-08-19T20:44:59-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maryelly\",\"last_name\":\"Álvarez Arboleda\",\"email\":\"marlly_16_@hotmail.com\",\"phone_number\":\"3003589264\",\"address\":null,\"creation_date\":\"2023-08-19T08:44:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro6f1gqrwbd6w9rure2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 13:45:39','2023-08-19 13:45:39'),(8141,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-19T08:46:57-05:00\",\"transaction\":{\"id\":\"tro6f1gqrwbd6w9rure2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111709448\",\"creation_date\":\"2023-08-19T08:44:59-05:00\",\"operation_date\":\"2023-08-19T08:46:27-05:00\",\"description\":\"Pago Mensual academia: Paolo Colorado Álvarez (1025908793)\",\"error_message\":null,\"order_id\":\"67606D48E361CE176CA71FD54FCF4286_UT745GYKA0_1692452694.707\",\"due_date\":\"2023-08-19T20:44:59-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maryelly\",\"last_name\":\"Álvarez Arboleda\",\"email\":\"marlly_16_@hotmail.com\",\"phone_number\":\"3003589264\",\"address\":null,\"creation_date\":\"2023-08-19T08:44:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 13:46:58','2023-08-19 13:46:58'),(8142,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T09:23:24-05:00\",\"transaction\":{\"id\":\"trkxxpusthyvhvzcppfp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-19T09:22:49-05:00\",\"operation_date\":\"2023-08-19T09:22:49-05:00\",\"description\":\"Pago Mensual academia: jacobo campos giraldo (1035014287)\",\"error_message\":null,\"order_id\":\"CDD0500DC0EF6682FA6EC6D2E6B577C4_N0Q9USIO2B_1692454966.5402\",\"due_date\":\"2023-08-19T21:22:49-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"natalia\",\"last_name\":\"giraldo upegui\",\"email\":\"natygiraldo203@hotmail.com\",\"phone_number\":\"3117294410\",\"address\":null,\"creation_date\":\"2023-08-19T09:22:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkxxpusthyvhvzcppfp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 14:23:25','2023-08-19 14:23:25'),(8143,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-19T09:24:42-05:00\",\"transaction\":{\"id\":\"trkxxpusthyvhvzcppfp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111764741\",\"creation_date\":\"2023-08-19T09:22:49-05:00\",\"operation_date\":\"2023-08-19T09:24:36-05:00\",\"description\":\"Pago Mensual academia: jacobo campos giraldo (1035014287)\",\"error_message\":null,\"order_id\":\"CDD0500DC0EF6682FA6EC6D2E6B577C4_N0Q9USIO2B_1692454966.5402\",\"due_date\":\"2023-08-19T21:22:49-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"natalia\",\"last_name\":\"giraldo upegui\",\"email\":\"natygiraldo203@hotmail.com\",\"phone_number\":\"3117294410\",\"address\":null,\"creation_date\":\"2023-08-19T09:22:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 14:24:42','2023-08-19 14:24:42'),(8144,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T10:04:40-05:00\",\"transaction\":{\"id\":\"trsoascozbvllkioadjr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-19T10:03:02-05:00\",\"operation_date\":\"2023-08-19T10:03:02-05:00\",\"description\":\"Pago Mensual academia: Agustin Salazar Muriel (1038875850)\",\"error_message\":null,\"order_id\":\"06C284D3F757B15C02F47F3FF06DC275_95HW86CENR_1692457376.4723\",\"due_date\":\"2023-08-19T22:03:02-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Agustín\",\"last_name\":\"Salazar Muriel\",\"email\":\"tatiana.muriel@hotmail.com\",\"phone_number\":\"3022886300\",\"address\":null,\"creation_date\":\"2023-08-19T10:03:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsoascozbvllkioadjr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 15:04:40','2023-08-19 15:04:40'),(8145,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-19T10:05:55-05:00\",\"transaction\":{\"id\":\"trsoascozbvllkioadjr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"111831499\",\"creation_date\":\"2023-08-19T10:03:02-05:00\",\"operation_date\":\"2023-08-19T10:05:50-05:00\",\"description\":\"Pago Mensual academia: Agustin Salazar Muriel (1038875850)\",\"error_message\":null,\"order_id\":\"06C284D3F757B15C02F47F3FF06DC275_95HW86CENR_1692457376.4723\",\"due_date\":\"2023-08-19T22:03:02-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Agustín\",\"last_name\":\"Salazar Muriel\",\"email\":\"tatiana.muriel@hotmail.com\",\"phone_number\":\"3022886300\",\"address\":null,\"creation_date\":\"2023-08-19T10:03:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 15:05:55','2023-08-19 15:05:55'),(8146,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T10:09:16-05:00\",\"transaction\":{\"id\":\"trqa7l78rvzuqa7tfesh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-19T10:08:45-05:00\",\"operation_date\":\"2023-08-19T10:08:45-05:00\",\"description\":\"Pago Mensual academia: Agustin Salazar Muriel (1038875850)\",\"error_message\":null,\"order_id\":\"DCE8AF15F064D1ACCB98887A21029B08_D74B2VZEY6_1692457720.5676\",\"due_date\":\"2023-08-19T22:08:45-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Agustín\",\"last_name\":\"Salazar Muriel\",\"email\":\"tatiana.muriel@hotmail.com\",\"phone_number\":\"3022886300\",\"address\":null,\"creation_date\":\"2023-08-19T10:08:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqa7l78rvzuqa7tfesh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 15:09:17','2023-08-19 15:09:17'),(8147,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-19T09:21:09-06:00\",\"transaction\":{\"id\":\"trqa7l78rvzuqa7tfesh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-19T10:08:45-06:00\",\"operation_date\":\"2023-08-19T10:08:45-06:00\",\"description\":\"Pago Mensual academia: Agustin Salazar Muriel (1038875850)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"DCE8AF15F064D1ACCB98887A21029B08_D74B2VZEY6_1692457720.5676\",\"due_date\":\"2023-08-19T22:08:45-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Agustín\",\"last_name\":\"Salazar Muriel\",\"email\":\"tatiana.muriel@hotmail.com\",\"phone_number\":\"3022886300\",\"address\":null,\"creation_date\":\"2023-08-19T10:08:45-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 15:21:09','2023-08-19 15:21:09'),(8148,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  868\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T12:09:17-05:00\",\"transaction\":{\"id\":\"trx4wivfsluh31seqkyk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-19T12:09:16-05:00\",\"operation_date\":\"2023-08-19T12:09:16-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692464952.6058\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-19T12:09:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trx4wivfsluh31seqkyk/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-19 17:09:17','2023-08-19 17:09:17'),(8149,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T15:17:03-05:00\",\"transaction\":{\"id\":\"trjqtdt9bwonsfx2hd7x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-19T15:05:10-05:00\",\"operation_date\":\"2023-08-19T15:05:10-05:00\",\"description\":\"Pago Mensual academia: jaider stiven posso oquendo (1018249021)\",\"error_message\":null,\"order_id\":\"384BABC3E7FAA44CF1CA671B74499C3B_7HEBPWU68O_1692475506.804\",\"due_date\":\"2023-08-20T03:05:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jaider stiven\",\"last_name\":\"posso oquendo\",\"email\":\"zabalamariacamila961@gmail.com\",\"phone_number\":\"3043980850\",\"address\":null,\"creation_date\":\"2023-08-19T15:05:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjqtdt9bwonsfx2hd7x/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 20:17:04','2023-08-19 20:17:04'),(8150,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  865\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-19T14:39:08-06:00\",\"transaction\":{\"id\":\"trjqtdt9bwonsfx2hd7x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-19T15:05:10-06:00\",\"operation_date\":\"2023-08-19T15:17:09-06:00\",\"description\":\"Pago Mensual academia: jaider stiven posso oquendo (1018249021)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"384BABC3E7FAA44CF1CA671B74499C3B_7HEBPWU68O_1692475506.804\",\"due_date\":\"2023-08-20T03:05:10-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"jaider stiven\",\"last_name\":\"posso oquendo\",\"email\":\"zabalamariacamila961@gmail.com\",\"phone_number\":\"3043980850\",\"address\":null,\"creation_date\":\"2023-08-19T15:05:10-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-19 20:39:09','2023-08-19 20:39:09'),(8151,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-19T23:24:46-05:00\",\"transaction\":{\"id\":\"trvqgf53agxx7afbjjro\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-19T23:24:06-05:00\",\"operation_date\":\"2023-08-19T23:24:06-05:00\",\"description\":\"Pago Mensual academia: Samuel Henao Benitez (1054919379)\",\"error_message\":null,\"order_id\":\"52C409F1571F500E28F490A302A12540_S1R0AHUE2D_1692505443.6996\",\"due_date\":\"2023-08-20T11:24:06-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Samuel\",\"last_name\":\"Henao Benitez\",\"email\":\"isabelcristina.benitez@bbva.com\",\"phone_number\":\"3117315519\",\"address\":null,\"creation_date\":\"2023-08-19T23:24:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvqgf53agxx7afbjjro/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-20 04:24:47','2023-08-20 04:24:47'),(8152,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-19T23:26:22-05:00\",\"transaction\":{\"id\":\"trvqgf53agxx7afbjjro\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"112801445\",\"creation_date\":\"2023-08-19T23:24:06-05:00\",\"operation_date\":\"2023-08-19T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Samuel Henao Benitez (1054919379)\",\"error_message\":null,\"order_id\":\"52C409F1571F500E28F490A302A12540_S1R0AHUE2D_1692505443.6996\",\"due_date\":\"2023-08-20T11:24:06-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Samuel\",\"last_name\":\"Henao Benitez\",\"email\":\"isabelcristina.benitez@bbva.com\",\"phone_number\":\"3117315519\",\"address\":null,\"creation_date\":\"2023-08-19T23:24:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-20 04:26:23','2023-08-20 04:26:23'),(8153,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  952\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-20T07:20:04-05:00\",\"transaction\":{\"id\":\"tr6mbieexxrauma1wubv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-20T07:19:15-05:00\",\"operation_date\":\"2023-08-20T07:19:15-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Bermudez Preciado (1027743105)\",\"error_message\":null,\"order_id\":\"CA851E9F71B25D2D588B7E0D4DE3D627_7F3AYHO9I8_1692533952.4411\",\"due_date\":\"2023-08-20T19:19:15-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Bermudez Restrepo\",\"email\":\"Jbermudez@construhigienica.com\",\"phone_number\":\"3203719015\",\"address\":null,\"creation_date\":\"2023-08-20T07:19:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6mbieexxrauma1wubv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-20 12:20:05','2023-08-20 12:20:05'),(8154,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  835\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-20T07:21:01-05:00\",\"transaction\":{\"id\":\"tr6mbieexxrauma1wubv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"112871463\",\"creation_date\":\"2023-08-20T07:19:15-05:00\",\"operation_date\":\"2023-08-20T07:20:57-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Bermudez Preciado (1027743105)\",\"error_message\":null,\"order_id\":\"CA851E9F71B25D2D588B7E0D4DE3D627_7F3AYHO9I8_1692533952.4411\",\"due_date\":\"2023-08-20T19:19:15-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Bermudez Restrepo\",\"email\":\"Jbermudez@construhigienica.com\",\"phone_number\":\"3203719015\",\"address\":null,\"creation_date\":\"2023-08-20T07:19:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-20 12:21:02','2023-08-20 12:21:02'),(8155,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-20T08:22:24-05:00\",\"transaction\":{\"id\":\"trq2msjswr5mkdz3cn6y\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-20T08:21:35-05:00\",\"operation_date\":\"2023-08-20T08:21:35-05:00\",\"description\":\"Pago Mensual academia: simon gutierrez osorio (1192470044)\",\"error_message\":null,\"order_id\":\"B89C30965EBC74912DE879F22DA62DBF_VKPJ6F045R_1692537691.3957\",\"due_date\":\"2023-08-20T20:21:35-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"gutierrez osorio\",\"email\":\"tatianaosoriobernal@gmail.com\",\"phone_number\":\"3005556978\",\"address\":null,\"creation_date\":\"2023-08-20T08:21:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq2msjswr5mkdz3cn6y/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-20 13:22:25','2023-08-20 13:22:25'),(8156,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-20T08:24:28-05:00\",\"transaction\":{\"id\":\"trq2msjswr5mkdz3cn6y\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"112901373\",\"creation_date\":\"2023-08-20T08:21:35-05:00\",\"operation_date\":\"2023-08-20T08:24:21-05:00\",\"description\":\"Pago Mensual academia: simon gutierrez osorio (1192470044)\",\"error_message\":null,\"order_id\":\"B89C30965EBC74912DE879F22DA62DBF_VKPJ6F045R_1692537691.3957\",\"due_date\":\"2023-08-20T20:21:35-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"gutierrez osorio\",\"email\":\"tatianaosoriobernal@gmail.com\",\"phone_number\":\"3005556978\",\"address\":null,\"creation_date\":\"2023-08-20T08:21:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-20 13:24:28','2023-08-20 13:24:28'),(8157,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-20T09:13:34-05:00\",\"transaction\":{\"id\":\"trlxp3akp4egas2vfgok\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-20T09:13:02-05:00\",\"operation_date\":\"2023-08-20T09:13:02-05:00\",\"description\":\"Pago Mensual academia: Agustin Salazar Muriel (1038875850)\",\"error_message\":null,\"order_id\":\"DCE8AF15F064D1ACCB98887A21029B08_D74B2VZEY6_1692540779.546\",\"due_date\":\"2023-08-20T21:13:02-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Agustín\",\"last_name\":\"Salazar Muriel\",\"email\":\"tatiana.muriel@hotmail.com\",\"phone_number\":\"3022886300\",\"address\":null,\"creation_date\":\"2023-08-20T09:13:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlxp3akp4egas2vfgok/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-20 14:13:35','2023-08-20 14:13:35'),(8158,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-20T09:14:33-05:00\",\"transaction\":{\"id\":\"trlxp3akp4egas2vfgok\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"112935917\",\"creation_date\":\"2023-08-20T09:13:02-05:00\",\"operation_date\":\"2023-08-20T09:14:29-05:00\",\"description\":\"Pago Mensual academia: Agustin Salazar Muriel (1038875850)\",\"error_message\":null,\"order_id\":\"DCE8AF15F064D1ACCB98887A21029B08_D74B2VZEY6_1692540779.546\",\"due_date\":\"2023-08-20T21:13:02-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Agustín\",\"last_name\":\"Salazar Muriel\",\"email\":\"tatiana.muriel@hotmail.com\",\"phone_number\":\"3022886300\",\"address\":null,\"creation_date\":\"2023-08-20T09:13:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-20 14:14:34','2023-08-20 14:14:34'),(8159,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-20T10:58:21-05:00\",\"transaction\":{\"id\":\"tre9fq4gmkyf3bsh5ajc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-20T10:58:21-05:00\",\"operation_date\":\"2023-08-20T10:58:21-05:00\",\"description\":\"Pago Mensual academia: Tomás Beltrán Carranza (1025463316)\",\"error_message\":null,\"order_id\":\"227F6AFD3B7F89B96C4BB91F95D50F6D_PRV1250LF8_1692547098.8697\",\"amount\":105000.00,\"customer\":{\"name\":\"Natalia\",\"last_name\":\"Carranza\",\"email\":\"natacarranza@gmail.com\",\"phone_number\":\"3103354557\",\"address\":null,\"creation_date\":\"2023-08-20T10:58:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre9fq4gmkyf3bsh5ajc/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-20 15:58:22','2023-08-20 15:58:22'),(8160,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1223\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-20T10:59:32-05:00\",\"transaction\":{\"id\":\"tre9fq4gmkyf3bsh5ajc\",\"authorization\":\"R00575\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-08-20T10:58:21-05:00\",\"operation_date\":\"2023-08-20T10:59:31-05:00\",\"description\":\"Pago Mensual academia: Tomás Beltrán Carranza (1025463316)\",\"error_message\":null,\"order_id\":\"227F6AFD3B7F89B96C4BB91F95D50F6D_PRV1250LF8_1692547098.8697\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530371XXXXXX2061\",\"holder_name\":\"Magda N Carranza A\",\"expiration_year\":\"26\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":105000.00,\"customer\":{\"name\":\"Natalia\",\"last_name\":\"Carranza\",\"email\":\"natacarranza@gmail.com\",\"phone_number\":\"3103354557\",\"address\":null,\"creation_date\":\"2023-08-20T10:58:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre9fq4gmkyf3bsh5ajc/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-20 15:59:33','2023-08-20 15:59:33'),(8161,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-21T02:06:46-06:00\",\"transaction\":{\"id\":\"trkpdn1ynd9aizznsrkw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-18T09:16:46-06:00\",\"operation_date\":\"2023-08-18T09:16:46-06:00\",\"description\":\"Pago Inscripción academia: Simón Alzate Sanz (1035008452)\",\"error_message\":null,\"order_id\":\"5481B2F34A74E427A2818014B8E103B0_89GT1H5VQX_1692368190.3143\",\"due_date\":\"2023-08-18T21:16:46-06:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Simón\",\"last_name\":\"Alzate Sanz\",\"email\":\"milenasanz7@hotmail.com\",\"phone_number\":\"3128816645\",\"address\":null,\"creation_date\":\"2023-08-18T09:16:46-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkpdn1ynd9aizznsrkw/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-21 08:06:47','2023-08-21 08:06:47'),(8162,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-21T02:07:05-06:00\",\"transaction\":{\"id\":\"tr7rcelrcv2vijsncf9j\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-17T20:35:44-06:00\",\"operation_date\":\"2023-08-17T20:35:44-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"B1D10E7BAFA4421218A51B1E1F1B0BA2_E-64DD74BB-92_1692322539.1878\",\"due_date\":\"2023-08-18T08:35:44-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Steven\",\"last_name\":\"Alzate Guarin\",\"email\":\"totasteven@hotmail.com\",\"phone_number\":\"3136737159\",\"address\":null,\"creation_date\":\"2023-08-17T20:35:44-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr7rcelrcv2vijsncf9j/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-21 08:07:05','2023-08-21 08:07:05'),(8163,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-21T09:44:01-05:00\",\"transaction\":{\"id\":\"trximdmqt3cipxrn7a4o\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-21T09:42:28-05:00\",\"operation_date\":\"2023-08-21T09:42:28-05:00\",\"description\":\"Pago Mensual academia: andres felipe ibañez jaraba (1041697312)\",\"error_message\":null,\"order_id\":\"6A450490F238B4DDFF085D66A916A206_TQ218KW5NH_1692628943.3359\",\"due_date\":\"2023-08-21T21:42:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Katia \",\"last_name\":\" Jaraba\",\"email\":\"katyajaraba.2207@gmail.com\",\"phone_number\":\"3012134574\",\"address\":null,\"creation_date\":\"2023-08-21T09:42:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trximdmqt3cipxrn7a4o/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-21 14:44:02','2023-08-21 14:44:02'),(8164,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-21T09:44:11-05:00\",\"transaction\":{\"id\":\"trnyz9qg7kqf3ftewvt4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-21T09:42:58-05:00\",\"operation_date\":\"2023-08-21T09:42:58-05:00\",\"description\":\"Pago Mensual academia: Mateo Ceballos Rodelo (1033191370)\",\"error_message\":null,\"order_id\":\"E7E69CDF28F8CE6B69B4E1853EE21BAB_M6FNHECRJ8_1692628975.9238\",\"due_date\":\"2023-08-21T21:42:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria\",\"last_name\":\"Rodelo\",\"email\":\"angymaria1234@hotmail.com\",\"phone_number\":\"3217106275\",\"address\":null,\"creation_date\":\"2023-08-21T09:42:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnyz9qg7kqf3ftewvt4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-21 14:44:12','2023-08-21 14:44:12'),(8165,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-21T08:45:09-06:00\",\"transaction\":{\"id\":\"trnyz9qg7kqf3ftewvt4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"113770278\",\"creation_date\":\"2023-08-21T09:42:58-06:00\",\"operation_date\":\"2023-08-21T09:45:05-06:00\",\"description\":\"Pago Mensual academia: Mateo Ceballos Rodelo (1033191370)\",\"error_message\":null,\"order_id\":\"E7E69CDF28F8CE6B69B4E1853EE21BAB_M6FNHECRJ8_1692628975.9238\",\"due_date\":\"2023-08-21T21:42:58-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria\",\"last_name\":\"Rodelo\",\"email\":\"angymaria1234@hotmail.com\",\"phone_number\":\"3217106275\",\"address\":null,\"creation_date\":\"2023-08-21T09:42:58-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-21 14:45:10','2023-08-21 14:45:10'),(8166,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-21T08:48:08-06:00\",\"transaction\":{\"id\":\"trximdmqt3cipxrn7a4o\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"113770105\",\"creation_date\":\"2023-08-21T09:42:28-06:00\",\"operation_date\":\"2023-08-21T00:00:00-06:00\",\"description\":\"Pago Mensual academia: andres felipe ibañez jaraba (1041697312)\",\"error_message\":null,\"order_id\":\"6A450490F238B4DDFF085D66A916A206_TQ218KW5NH_1692628943.3359\",\"due_date\":\"2023-08-21T21:42:28-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Katia \",\"last_name\":\" Jaraba\",\"email\":\"katyajaraba.2207@gmail.com\",\"phone_number\":\"3012134574\",\"address\":null,\"creation_date\":\"2023-08-21T09:42:28-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-21 14:48:09','2023-08-21 14:48:09'),(8167,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-21T18:17:39-05:00\",\"transaction\":{\"id\":\"trm66ipv5cgpwo7zrnoi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-21T18:16:07-05:00\",\"operation_date\":\"2023-08-21T18:16:07-05:00\",\"description\":\"Pago Mensual academia: jeronimo aristizabal  granda (1035007104)\",\"error_message\":null,\"order_id\":\"8D7628DD7A710C8638DBD22D4421EE46_FN1SPTJGL3_1692659762.5981\",\"due_date\":\"2023-08-22T06:16:07-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"francisco\",\"last_name\":\"aristizabal\",\"email\":\"francisco.oceantex@gmail.com\",\"phone_number\":\"3136864028\",\"address\":null,\"creation_date\":\"2023-08-21T18:16:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm66ipv5cgpwo7zrnoi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-21 23:17:40','2023-08-21 23:17:40'),(8168,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-21T18:19:34-05:00\",\"transaction\":{\"id\":\"trm66ipv5cgpwo7zrnoi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"114308571\",\"creation_date\":\"2023-08-21T18:16:07-05:00\",\"operation_date\":\"2023-08-21T18:18:47-05:00\",\"description\":\"Pago Mensual academia: jeronimo aristizabal  granda (1035007104)\",\"error_message\":null,\"order_id\":\"8D7628DD7A710C8638DBD22D4421EE46_FN1SPTJGL3_1692659762.5981\",\"due_date\":\"2023-08-22T06:16:07-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"francisco\",\"last_name\":\"aristizabal\",\"email\":\"francisco.oceantex@gmail.com\",\"phone_number\":\"3136864028\",\"address\":null,\"creation_date\":\"2023-08-21T18:16:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-21 23:19:34','2023-08-21 23:19:34'),(8169,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  856\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-21T23:56:36-05:00\",\"transaction\":{\"id\":\"trqekuynqmafdinh6zqg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-21T23:56:36-05:00\",\"operation_date\":\"2023-08-21T23:56:36-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"CA46C1B9512A7A8315FA3C5A946E8265_E-64E43FF1-64_1692680183.0078\",\"amount\":146900.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"duque\",\"email\":\"julioduque07@hotmail.com\",\"phone_number\":\"3146223518\",\"address\":null,\"creation_date\":\"2023-08-21T23:56:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trqekuynqmafdinh6zqg/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-22 04:56:37','2023-08-22 04:56:37'),(8170,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  547\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-21T23:59:11-05:00\",\"transaction\":{\"id\":\"trjgdchlq3h1z0jxyqaw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-08-21T23:59:11-05:00\",\"operation_date\":\"2023-08-21T23:59:11-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"CA46C1B9512A7A8315FA3C5A946E8265_E-64E43FF1-64_1692680183.0078\",\"error_code\":3001,\"amount\":146900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-22 04:59:12','2023-08-22 04:59:12'),(8171,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  552\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-22T00:00:23-05:00\",\"transaction\":{\"id\":\"trtdz0aflwjo1ibwcbfg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-08-22T00:00:23-05:00\",\"operation_date\":\"2023-08-22T00:00:23-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":\"The card doesn\'t have sufficient funds\",\"order_id\":\"CA46C1B9512A7A8315FA3C5A946E8265_E-64E43FF1-64_1692680183.0078\",\"error_code\":3003,\"amount\":146900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-22 05:00:24','2023-08-22 05:00:24'),(8172,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  905\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"trvshk3b0tmssng4ljsy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-18T14:17:12-06:00\",\"operation_date\":\"2023-08-18T14:17:12-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692386228.568\",\"due_date\":\"2023-08-19T02:17:12-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-18T14:17:12-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trvshk3b0tmssng4ljsy/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8173,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"tr7htnj2fotg6z1knlaw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-19T12:01:58-06:00\",\"operation_date\":\"2023-08-19T12:01:58-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692464516.3959\",\"due_date\":\"2023-08-20T00:01:58-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-19T12:01:58-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr7htnj2fotg6z1knlaw/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8174,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"trp8ucthwq7lxzo8qidj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-19T12:10:16-06:00\",\"operation_date\":\"2023-08-19T12:10:16-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692465013.2199\",\"due_date\":\"2023-08-20T00:10:16-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-19T12:10:16-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trp8ucthwq7lxzo8qidj/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8175,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"tr41xh9xssjhz5fg6ljv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-19T12:11:01-06:00\",\"operation_date\":\"2023-08-19T12:11:01-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692465046.9608\",\"due_date\":\"2023-08-20T00:11:01-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-19T12:11:01-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr41xh9xssjhz5fg6ljv/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8176,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"trvbhtkib83vfaxau8uu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-19T19:59:31-06:00\",\"operation_date\":\"2023-08-19T19:59:31-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692493167.7716\",\"due_date\":\"2023-08-20T07:59:31-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-19T19:59:31-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trvbhtkib83vfaxau8uu/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8177,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"trzbx0edh00zxs98ztmz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-19T12:07:01-06:00\",\"operation_date\":\"2023-08-19T12:07:01-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692464818.2597\",\"due_date\":\"2023-08-20T00:07:01-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-19T12:07:01-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trzbx0edh00zxs98ztmz/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8178,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"trebypjdmloqf6tcffpf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-21T10:44:42-06:00\",\"operation_date\":\"2023-08-21T10:44:42-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692632676.8258\",\"due_date\":\"2023-08-21T22:44:42-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-21T10:44:41-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trebypjdmloqf6tcffpf/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8179,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"trpqhzwkbwjmac1vtnzf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-18T14:30:10-06:00\",\"operation_date\":\"2023-08-18T14:30:10-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692387005.1773\",\"due_date\":\"2023-08-19T02:30:10-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-18T14:30:10-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trpqhzwkbwjmac1vtnzf/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8180,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"trhz7cyfiton1thcrr9l\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-19T12:42:46-06:00\",\"operation_date\":\"2023-08-19T12:42:46-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692466960.2249\",\"due_date\":\"2023-08-20T00:42:46-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-19T12:42:46-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trhz7cyfiton1thcrr9l/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8181,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"trmyc3hdfs6ukujrtey8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-19T19:50:24-06:00\",\"operation_date\":\"2023-08-19T19:50:24-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692492619.9035\",\"due_date\":\"2023-08-20T07:50:24-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-19T19:50:24-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trmyc3hdfs6ukujrtey8/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8182,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"trgahr30mfwrowiww1j6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-19T12:04:25-06:00\",\"operation_date\":\"2023-08-19T12:04:25-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692464659.6887\",\"due_date\":\"2023-08-20T00:04:25-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-19T12:04:25-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trgahr30mfwrowiww1j6/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8183,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-22T02:15:30-06:00\",\"transaction\":{\"id\":\"tr7ygdy6dmk0z43ojzvv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-20T20:07:39-06:00\",\"operation_date\":\"2023-08-20T20:07:39-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EB163727917CBBA1EEA208541A643E74_E-64DFC3AF-94_1692580054.3102\",\"due_date\":\"2023-08-21T08:07:39-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-20T20:07:39-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr7ygdy6dmk0z43ojzvv/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 08:15:31','2023-08-22 08:15:31'),(8184,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T09:42:59-05:00\",\"transaction\":{\"id\":\"tr1qv5xp7ynzcl3yi47z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-22T09:42:59-05:00\",\"operation_date\":\"2023-08-22T09:42:59-05:00\",\"description\":\"Pago Mensual academia: Santiago Betancur Cardona (1035009112)\",\"error_message\":null,\"order_id\":\"228B25587479F2FC7570428E8BCBABDC_D0UBY5HXVC_1692715376.2955\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-22T09:42:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1qv5xp7ynzcl3yi47z/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-22 14:43:00','2023-08-22 14:43:00'),(8185,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T09:47:52-05:00\",\"transaction\":{\"id\":\"trxkhv975hvz1c0qwepm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-22T09:47:06-05:00\",\"operation_date\":\"2023-08-22T09:47:06-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Betancur Cardona (1035013213)\",\"error_message\":null,\"order_id\":\"6A8018B3A00B69C008601B8BECAE392B_9DEG03M258_1692715622.7188\",\"due_date\":\"2023-08-22T21:47:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-22T09:47:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxkhv975hvz1c0qwepm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 14:47:53','2023-08-22 14:47:53'),(8186,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  848\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-22T09:12:08-06:00\",\"transaction\":{\"id\":\"trxkhv975hvz1c0qwepm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-22T09:47:06-06:00\",\"operation_date\":\"2023-08-22T09:54:13-06:00\",\"description\":\"Pago Mensual academia: Juan Martín Betancur Cardona (1035013213)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"6A8018B3A00B69C008601B8BECAE392B_9DEG03M258_1692715622.7188\",\"due_date\":\"2023-08-22T21:47:06-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-22T09:47:06-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 15:12:09','2023-08-22 15:12:09'),(8187,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T10:55:38-05:00\",\"transaction\":{\"id\":\"trnwwh0yvv16cnchuwpc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-22T10:55:38-05:00\",\"operation_date\":\"2023-08-22T10:55:38-05:00\",\"description\":\"Pago Mensual academia: Matias Serna Giraldo (1035013129)\",\"error_message\":null,\"order_id\":\"EBF12CB74E96E67E63783D93C534EF27_ATICH7M5VB_1692719733.8838\",\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Giraldo Franco\",\"email\":\"cristinagirafra@gmail.com\",\"phone_number\":\"3137439487\",\"address\":null,\"creation_date\":\"2023-08-22T10:55:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnwwh0yvv16cnchuwpc/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-22 15:55:39','2023-08-22 15:55:39'),(8188,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T11:32:12-05:00\",\"transaction\":{\"id\":\"truqlzbzccaakz1tabai\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-22T11:31:10-05:00\",\"operation_date\":\"2023-08-22T11:31:10-05:00\",\"description\":\"Pago Mensual academia: Emiliano Velez Lopez (1035004231)\",\"error_message\":null,\"order_id\":\"62E7F2E090FE150EF8DEB4466FDC81B3_FKOWH1MVIE_1692721865.5864\",\"due_date\":\"2023-08-22T23:31:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana\",\"last_name\":\"lopez\",\"email\":\"diana.m.lopez@hotmail.com\",\"phone_number\":\"3104404618\",\"address\":null,\"creation_date\":\"2023-08-22T11:31:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truqlzbzccaakz1tabai/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 16:32:12','2023-08-22 16:32:12'),(8189,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-22T10:33:31-06:00\",\"transaction\":{\"id\":\"truqlzbzccaakz1tabai\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"115151541\",\"creation_date\":\"2023-08-22T11:31:10-06:00\",\"operation_date\":\"2023-08-22T11:33:09-06:00\",\"description\":\"Pago Mensual academia: Emiliano Velez Lopez (1035004231)\",\"error_message\":null,\"order_id\":\"62E7F2E090FE150EF8DEB4466FDC81B3_FKOWH1MVIE_1692721865.5864\",\"due_date\":\"2023-08-22T23:31:10-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana\",\"last_name\":\"lopez\",\"email\":\"diana.m.lopez@hotmail.com\",\"phone_number\":\"3104404618\",\"address\":null,\"creation_date\":\"2023-08-22T11:31:10-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 16:33:32','2023-08-22 16:33:32'),(8190,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T16:07:01-05:00\",\"transaction\":{\"id\":\"trojkncffrxxbshz2lm9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-22T16:03:27-05:00\",\"operation_date\":\"2023-08-22T16:03:27-05:00\",\"description\":\"Pago Mensual academia: JERÓNIMO URQUIJO GAMBOA (1027808645)\",\"error_message\":null,\"order_id\":\"C254E7753095807E1CCA159E48ECEB21_BLGPHJDKE1_1692738200.8311\",\"due_date\":\"2023-08-23T04:03:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ANGIE\",\"last_name\":\"GAMBOA SANCHEZ\",\"email\":\"topella@hotmail.com\",\"phone_number\":\"3192800558\",\"address\":null,\"creation_date\":\"2023-08-22T16:03:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trojkncffrxxbshz2lm9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 21:07:02','2023-08-22 21:07:02'),(8191,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-22T15:09:23-06:00\",\"transaction\":{\"id\":\"trojkncffrxxbshz2lm9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"115787969\",\"creation_date\":\"2023-08-22T16:03:27-06:00\",\"operation_date\":\"2023-08-22T16:08:34-06:00\",\"description\":\"Pago Mensual academia: JERÓNIMO URQUIJO GAMBOA (1027808645)\",\"error_message\":null,\"order_id\":\"C254E7753095807E1CCA159E48ECEB21_BLGPHJDKE1_1692738200.8311\",\"due_date\":\"2023-08-23T04:03:27-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ANGIE\",\"last_name\":\"GAMBOA SANCHEZ\",\"email\":\"topella@hotmail.com\",\"phone_number\":\"3192800558\",\"address\":null,\"creation_date\":\"2023-08-22T16:03:27-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 21:09:24','2023-08-22 21:09:24'),(8192,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T16:13:01-05:00\",\"transaction\":{\"id\":\"tro7hxmneacjfjm4073w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-22T16:11:59-05:00\",\"operation_date\":\"2023-08-22T16:11:59-05:00\",\"description\":\"Pago Mensual academia: JERÓNIMO URQUIJO GAMBOA (1027808645)\",\"error_message\":null,\"order_id\":\"A05D886123A54DE3CA4B0985B718FB9B_8Q1JMIOBLA_1692738710.7124\",\"due_date\":\"2023-08-23T04:11:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ANGIE\",\"last_name\":\"GAMBOA SANCHEZ\",\"email\":\"topella@hotmail.com\",\"phone_number\":\"3192800558\",\"address\":null,\"creation_date\":\"2023-08-22T16:11:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro7hxmneacjfjm4073w/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 21:13:02','2023-08-22 21:13:02'),(8193,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-22T16:14:42-05:00\",\"transaction\":{\"id\":\"tro7hxmneacjfjm4073w\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"115802980\",\"creation_date\":\"2023-08-22T16:11:59-05:00\",\"operation_date\":\"2023-08-22T16:14:05-05:00\",\"description\":\"Pago Mensual academia: JERÓNIMO URQUIJO GAMBOA (1027808645)\",\"error_message\":null,\"order_id\":\"A05D886123A54DE3CA4B0985B718FB9B_8Q1JMIOBLA_1692738710.7124\",\"due_date\":\"2023-08-23T04:11:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ANGIE\",\"last_name\":\"GAMBOA SANCHEZ\",\"email\":\"topella@hotmail.com\",\"phone_number\":\"3192800558\",\"address\":null,\"creation_date\":\"2023-08-22T16:11:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 21:14:43','2023-08-22 21:14:43'),(8194,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T16:16:04-05:00\",\"transaction\":{\"id\":\"trsmqcgxcog9llcqcz0i\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-22T16:15:19-05:00\",\"operation_date\":\"2023-08-22T16:15:19-05:00\",\"description\":\"Pago Mensual academia: JERÓNIMO URQUIJO GAMBOA (1027808645)\",\"error_message\":null,\"order_id\":\"774B0E07753B0B94D1A1C5B0543B5FE1_HBUNZ9FKIM_1692738916.461\",\"due_date\":\"2023-08-23T04:15:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ANGIE\",\"last_name\":\"GAMBOA SANCHEZ\",\"email\":\"topella@hotmail.com\",\"phone_number\":\"3192800558\",\"address\":null,\"creation_date\":\"2023-08-22T16:15:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsmqcgxcog9llcqcz0i/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 21:16:05','2023-08-22 21:16:05'),(8195,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-22T16:17:44-05:00\",\"transaction\":{\"id\":\"trsmqcgxcog9llcqcz0i\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"115810558\",\"creation_date\":\"2023-08-22T16:15:19-05:00\",\"operation_date\":\"2023-08-22T16:17:11-05:00\",\"description\":\"Pago Mensual academia: JERÓNIMO URQUIJO GAMBOA (1027808645)\",\"error_message\":null,\"order_id\":\"774B0E07753B0B94D1A1C5B0543B5FE1_HBUNZ9FKIM_1692738916.461\",\"due_date\":\"2023-08-23T04:15:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ANGIE\",\"last_name\":\"GAMBOA SANCHEZ\",\"email\":\"topella@hotmail.com\",\"phone_number\":\"3192800558\",\"address\":null,\"creation_date\":\"2023-08-22T16:15:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 21:17:45','2023-08-22 21:17:45'),(8196,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T17:30:37-05:00\",\"transaction\":{\"id\":\"tr2wj0dauv5bq1s7j7f4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-22T17:29:37-05:00\",\"operation_date\":\"2023-08-22T17:29:37-05:00\",\"description\":\"Pago Mensual academia: maximiliano torres monsalve (1020320205)\",\"error_message\":null,\"order_id\":\"649A066D415BDDA4CE2A7088292645E0_8S639A42WH_1692743374.3791\",\"due_date\":\"2023-08-23T05:29:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"javier  hernando\",\"last_name\":\"torres  mejia\",\"email\":\"dulcejesusmio76@hotmail.com\",\"phone_number\":\"3218862987\",\"address\":null,\"creation_date\":\"2023-08-22T17:29:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2wj0dauv5bq1s7j7f4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 22:30:38','2023-08-22 22:30:38'),(8197,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T17:30:54-05:00\",\"transaction\":{\"id\":\"trwshxzv0r4g6czx10pi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-22T17:30:54-05:00\",\"operation_date\":\"2023-08-22T17:30:54-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Isaza Tamayo (1035007470)\",\"error_message\":null,\"order_id\":\"F95EC3DE395B4BCE25B39EF6138DA871_RQZPW96HDO_1692743447.2873\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Miguel\",\"last_name\":\"Isaza Moreno\",\"email\":\"capitanisaza@gmail.com\",\"phone_number\":\"3136308052\",\"address\":null,\"creation_date\":\"2023-08-22T17:30:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwshxzv0r4g6czx10pi/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-22 22:30:55','2023-08-22 22:30:55'),(8198,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-22T17:31:52-05:00\",\"transaction\":{\"id\":\"tr2wj0dauv5bq1s7j7f4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"115976839\",\"creation_date\":\"2023-08-22T17:29:37-05:00\",\"operation_date\":\"2023-08-22T17:31:38-05:00\",\"description\":\"Pago Mensual academia: maximiliano torres monsalve (1020320205)\",\"error_message\":null,\"order_id\":\"649A066D415BDDA4CE2A7088292645E0_8S639A42WH_1692743374.3791\",\"due_date\":\"2023-08-23T05:29:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"javier  hernando\",\"last_name\":\"torres  mejia\",\"email\":\"dulcejesusmio76@hotmail.com\",\"phone_number\":\"3218862987\",\"address\":null,\"creation_date\":\"2023-08-22T17:29:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 22:31:52','2023-08-22 22:31:52'),(8199,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  656\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-22T17:32:32-05:00\",\"transaction\":{\"id\":\"trlbs6nlsz4jerwar5sj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"payments\":3,\"conciliated\":true,\"creation_date\":\"2023-08-22T17:32:32-05:00\",\"operation_date\":\"2023-08-22T17:32:32-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Isaza Tamayo (1035007470)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"F95EC3DE395B4BCE25B39EF6138DA871_RQZPW96HDO_1692743447.2873\",\"error_code\":3001,\"payment_plan\":{\"payments\":3,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-22 22:32:33','2023-08-22 22:32:33'),(8200,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T18:49:40-05:00\",\"transaction\":{\"id\":\"trgsuphohc253fievjb1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-22T18:48:36-05:00\",\"operation_date\":\"2023-08-22T18:48:36-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Pérez Osorio (71782231)\",\"error_message\":null,\"order_id\":\"4CF33E18EDE11B79827BC78B7F2075AE_LSMWVQ6N9I_1692748113.3807\",\"due_date\":\"2023-08-23T06:48:36-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Pablo\",\"last_name\":\"Perez Velez\",\"email\":\"juanpapv@yahoo.es\",\"phone_number\":\"3002743179\",\"address\":null,\"creation_date\":\"2023-08-22T18:48:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgsuphohc253fievjb1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 23:49:41','2023-08-22 23:49:41'),(8201,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-22T18:50:40-05:00\",\"transaction\":{\"id\":\"trgsuphohc253fievjb1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"116131983\",\"creation_date\":\"2023-08-22T18:48:36-05:00\",\"operation_date\":\"2023-08-22T18:50:24-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Pérez Osorio (71782231)\",\"error_message\":null,\"order_id\":\"4CF33E18EDE11B79827BC78B7F2075AE_LSMWVQ6N9I_1692748113.3807\",\"due_date\":\"2023-08-23T06:48:36-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Pablo\",\"last_name\":\"Perez Velez\",\"email\":\"juanpapv@yahoo.es\",\"phone_number\":\"3002743179\",\"address\":null,\"creation_date\":\"2023-08-22T18:48:36-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-22 23:50:41','2023-08-22 23:50:41'),(8202,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T19:56:41-05:00\",\"transaction\":{\"id\":\"tr3ks47oqmtsgbrohevo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-22T19:55:28-05:00\",\"operation_date\":\"2023-08-22T19:55:28-05:00\",\"description\":\"Pago Mensual academia: Tomas Gonzalez Palacio (1034994733)\",\"error_message\":null,\"order_id\":\"D87CA511E2A8593C8039EF732F5BFFED_O3J2ELZQS6_1692752120.8781\",\"due_date\":\"2023-08-23T07:55:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Adriana\",\"last_name\":\"Palacio\",\"email\":\"nanapalacio@gmail.com\",\"phone_number\":\"3152489243\",\"address\":null,\"creation_date\":\"2023-08-22T19:55:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3ks47oqmtsgbrohevo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 00:56:41','2023-08-23 00:56:41'),(8203,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-22T19:57:39-05:00\",\"transaction\":{\"id\":\"tr3ks47oqmtsgbrohevo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"116255031\",\"creation_date\":\"2023-08-22T19:55:28-05:00\",\"operation_date\":\"2023-08-22T19:57:32-05:00\",\"description\":\"Pago Mensual academia: Tomas Gonzalez Palacio (1034994733)\",\"error_message\":null,\"order_id\":\"D87CA511E2A8593C8039EF732F5BFFED_O3J2ELZQS6_1692752120.8781\",\"due_date\":\"2023-08-23T07:55:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Adriana\",\"last_name\":\"Palacio\",\"email\":\"nanapalacio@gmail.com\",\"phone_number\":\"3152489243\",\"address\":null,\"creation_date\":\"2023-08-22T19:55:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 00:57:40','2023-08-23 00:57:40'),(8204,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-22T21:28:56-05:00\",\"transaction\":{\"id\":\"tryv0iivu6yq8q6vkrkx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-22T21:27:39-05:00\",\"operation_date\":\"2023-08-22T21:27:39-05:00\",\"description\":\"Pago Mensual academia: jaider stiven posso oquendo (1018249021)\",\"error_message\":null,\"order_id\":\"384BABC3E7FAA44CF1CA671B74499C3B_7HEBPWU68O_1692757657.0622\",\"due_date\":\"2023-08-23T09:27:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jaider stiven\",\"last_name\":\"posso oquendo\",\"email\":\"zabalamariacamila961@gmail.com\",\"phone_number\":\"3043980850\",\"address\":null,\"creation_date\":\"2023-08-22T21:27:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryv0iivu6yq8q6vkrkx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 02:28:57','2023-08-23 02:28:57'),(8205,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-22T21:32:45-05:00\",\"transaction\":{\"id\":\"tryv0iivu6yq8q6vkrkx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"116406884\",\"creation_date\":\"2023-08-22T21:27:39-05:00\",\"operation_date\":\"2023-08-22T21:31:10-05:00\",\"description\":\"Pago Mensual academia: jaider stiven posso oquendo (1018249021)\",\"error_message\":null,\"order_id\":\"384BABC3E7FAA44CF1CA671B74499C3B_7HEBPWU68O_1692757657.0622\",\"due_date\":\"2023-08-23T09:27:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jaider stiven\",\"last_name\":\"posso oquendo\",\"email\":\"zabalamariacamila961@gmail.com\",\"phone_number\":\"3043980850\",\"address\":null,\"creation_date\":\"2023-08-22T21:27:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 02:32:45','2023-08-23 02:32:45'),(8206,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-23T02:09:27-06:00\",\"transaction\":{\"id\":\"trbd4dabimrbdekorlma\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-22T09:45:57-06:00\",\"operation_date\":\"2023-08-22T09:45:57-06:00\",\"description\":\"Pago Mensual academia: Juan Martín Betancur Cardona (1035013213)\",\"error_message\":null,\"order_id\":\"6A8018B3A00B69C008601B8BECAE392B_9DEG03M258_1692715550.9576\",\"due_date\":\"2023-08-22T21:45:57-06:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbd4dabimrbdekorlma/pse_capture\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-22T09:45:57-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 08:09:28','2023-08-23 08:09:28'),(8207,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-23T02:09:27-06:00\",\"transaction\":{\"id\":\"trsbruijme6xhsrbkiv6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-22T09:27:04-06:00\",\"operation_date\":\"2023-08-22T09:27:04-06:00\",\"description\":\"Pago Mensual academia: Emiliano Velez Lopez (1035004231)\",\"error_message\":null,\"order_id\":\"62E7F2E090FE150EF8DEB4466FDC81B3_FKOWH1MVIE_1692714419.7312\",\"due_date\":\"2023-08-22T21:27:04-06:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsbruijme6xhsrbkiv6/pse_capture\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"diana\",\"last_name\":\"lopez\",\"email\":\"diana.m.lopez@hotmail.com\",\"phone_number\":\"3104404618\",\"address\":null,\"creation_date\":\"2023-08-22T09:27:04-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 08:09:28','2023-08-23 08:09:28'),(8208,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-23T02:09:59-06:00\",\"transaction\":{\"id\":\"tr80evyuyaro5v1n6za1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-22T09:28:35-06:00\",\"operation_date\":\"2023-08-22T09:28:35-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"3B8A614226A953A8CD9526FCA6FE9BA5_E-64E4C60A-45_1692714511.1021\",\"due_date\":\"2023-08-22T21:28:35-06:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr80evyuyaro5v1n6za1/pse_capture\"},\"amount\":146900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-22T09:28:35-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 08:09:59','2023-08-23 08:09:59'),(8209,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-23T02:09:59-06:00\",\"transaction\":{\"id\":\"trqpi1jnfw3lpitjzzoi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-22T09:32:55-06:00\",\"operation_date\":\"2023-08-22T09:32:55-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"3B8A614226A953A8CD9526FCA6FE9BA5_E-64E4C60A-45_1692714770.6939\",\"due_date\":\"2023-08-22T21:32:55-06:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trqpi1jnfw3lpitjzzoi/pse_capture\"},\"amount\":146900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Andrés felipe\",\"last_name\":\"Acosta Pineda\",\"email\":\"afapineda02@gmail.com\",\"phone_number\":\"3208341305\",\"address\":null,\"creation_date\":\"2023-08-22T09:32:55-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 08:10:00','2023-08-23 08:10:00'),(8210,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-23T02:09:59-06:00\",\"transaction\":{\"id\":\"trif6j6rmckxyivf6igk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-21T18:43:48-06:00\",\"operation_date\":\"2023-08-21T18:43:48-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"979D472A84804B9F647BC185A877A8B5_E-64E3F6A9-83_1692661422.2537\",\"due_date\":\"2023-08-22T06:43:48-06:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trif6j6rmckxyivf6igk/pse_capture\"},\"amount\":146900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Steven\",\"last_name\":\"Alzate Guarin\",\"email\":\"totasteven@hotmail.com\",\"phone_number\":\"3136737159\",\"address\":null,\"creation_date\":\"2023-08-21T18:43:48-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 08:10:00','2023-08-23 08:10:00'),(8211,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  905\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T06:59:44-05:00\",\"transaction\":{\"id\":\"trxqdikbxkkvr261flnb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-23T06:59:44-05:00\",\"operation_date\":\"2023-08-23T06:59:44-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"6ADD07CF50424B14FDF649DA87843D01_0LWRA62NJE_1692791975.0637\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-08-23T06:59:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxqdikbxkkvr261flnb/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-23 11:59:45','2023-08-23 11:59:45'),(8212,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T09:49:08-05:00\",\"transaction\":{\"id\":\"trxgjhfraaxqt4mdn76r\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-23T09:49:08-05:00\",\"operation_date\":\"2023-08-23T09:49:08-05:00\",\"description\":\"Pago Mensual academia: Matías Yepes Ríos (1023595226)\",\"error_message\":null,\"order_id\":\"D8C9D05EC6E86D5BBAD7A2F88A1701D0_A49CLYV1QK_1692802144.0756\",\"amount\":165900.00,\"customer\":{\"name\":\"Herbert\",\"last_name\":\"Yepes Cartagena\",\"email\":\"herbertyepes@yahoo.es\",\"phone_number\":\"3153123628\",\"address\":null,\"creation_date\":\"2023-08-23T09:49:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxgjhfraaxqt4mdn76r/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-23 14:49:08','2023-08-23 14:49:08'),(8213,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1210\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-23T09:50:36-05:00\",\"transaction\":{\"id\":\"trxgjhfraaxqt4mdn76r\",\"authorization\":\"R03683\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":12,\"conciliated\":true,\"creation_date\":\"2023-08-23T09:49:08-05:00\",\"operation_date\":\"2023-08-23T09:50:34-05:00\",\"description\":\"Pago Mensual academia: Matías Yepes Ríos (1023595226)\",\"error_message\":null,\"order_id\":\"D8C9D05EC6E86D5BBAD7A2F88A1701D0_A49CLYV1QK_1692802144.0756\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"521897XXXXXX3957\",\"holder_name\":\"Herbert Yepes\",\"expiration_year\":\"23\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"EXITO\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":12,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Herbert\",\"last_name\":\"Yepes Cartagena\",\"email\":\"herbertyepes@yahoo.es\",\"phone_number\":\"3153123628\",\"address\":null,\"creation_date\":\"2023-08-23T09:49:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxgjhfraaxqt4mdn76r/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-23 14:50:36','2023-08-23 14:50:36'),(8214,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T13:24:31-05:00\",\"transaction\":{\"id\":\"trg7ii3dfliuyiootzub\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-23T13:24:31-05:00\",\"operation_date\":\"2023-08-23T13:24:31-05:00\",\"description\":\"Pago Mensual academia: matias araque londoño (1027810120)\",\"error_message\":null,\"order_id\":\"_1692815066.5902\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel felipe\",\"last_name\":\"araque lopera\",\"email\":\"araque0102@hotmail.com\",\"phone_number\":\"3022191708\",\"address\":null,\"creation_date\":\"2023-08-23T13:24:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg7ii3dfliuyiootzub/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-23 18:24:31','2023-08-23 18:24:31'),(8215,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T13:27:09-05:00\",\"transaction\":{\"id\":\"tr33nxkn01p8de6pkjrx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-23T13:27:09-05:00\",\"operation_date\":\"2023-08-23T13:27:09-05:00\",\"description\":\"Pago Mensual academia: matias araque londoño (1027810120)\",\"error_message\":null,\"order_id\":\"78D69F40906679A976DC4D45CEBFFBE6_1OYDPRUGHV_1692815227.8448\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel felipe\",\"last_name\":\"araque lopera\",\"email\":\"araque0102@hotmail.com\",\"phone_number\":\"3022191708\",\"address\":null,\"creation_date\":\"2023-08-23T13:27:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr33nxkn01p8de6pkjrx/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-23 18:27:10','2023-08-23 18:27:10'),(8216,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1152\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-23T13:27:51-05:00\",\"transaction\":{\"id\":\"tr33nxkn01p8de6pkjrx\",\"authorization\":\"132750\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-23T13:27:09-05:00\",\"operation_date\":\"2023-08-23T13:27:50-05:00\",\"description\":\"Pago Mensual academia: matias araque londoño (1027810120)\",\"error_message\":null,\"order_id\":\"78D69F40906679A976DC4D45CEBFFBE6_1OYDPRUGHV_1692815227.8448\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5829\",\"holder_name\":\"El punto de chupa \",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"daniel felipe\",\"last_name\":\"araque lopera\",\"email\":\"araque0102@hotmail.com\",\"phone_number\":\"3022191708\",\"address\":null,\"creation_date\":\"2023-08-23T13:27:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr33nxkn01p8de6pkjrx/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-23 18:27:52','2023-08-23 18:27:52'),(8217,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T13:29:25-05:00\",\"transaction\":{\"id\":\"trximx6mwpgobbguusyo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-23T13:29:24-05:00\",\"operation_date\":\"2023-08-23T13:29:24-05:00\",\"description\":\"Pago Mensual academia: matias araque londoño (1027810120)\",\"error_message\":null,\"order_id\":\"DB68512896941514A089C37392F0683B_18TQCAVN26_1692815363.3311\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel felipe\",\"last_name\":\"araque lopera\",\"email\":\"araque0102@hotmail.com\",\"phone_number\":\"3022191708\",\"address\":null,\"creation_date\":\"2023-08-23T13:29:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trximx6mwpgobbguusyo/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-23 18:29:25','2023-08-23 18:29:25'),(8218,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1151\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-23T13:30:20-05:00\",\"transaction\":{\"id\":\"trximx6mwpgobbguusyo\",\"authorization\":\"133019\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-23T13:29:24-05:00\",\"operation_date\":\"2023-08-23T13:30:18-05:00\",\"description\":\"Pago Mensual academia: matias araque londoño (1027810120)\",\"error_message\":null,\"order_id\":\"DB68512896941514A089C37392F0683B_18TQCAVN26_1692815363.3311\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5829\",\"holder_name\":\"El punto de chupa\",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"daniel felipe\",\"last_name\":\"araque lopera\",\"email\":\"araque0102@hotmail.com\",\"phone_number\":\"3022191708\",\"address\":null,\"creation_date\":\"2023-08-23T13:29:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trximx6mwpgobbguusyo/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-23 18:30:20','2023-08-23 18:30:20'),(8219,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T13:34:40-05:00\",\"transaction\":{\"id\":\"trvhhp4k2ftmt9zkvb0g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-23T13:32:34-05:00\",\"operation_date\":\"2023-08-23T13:32:34-05:00\",\"description\":\"Pago Inscripción academia: isaac marin callejas (1023562656)\",\"error_message\":null,\"order_id\":\"4DA9D7B6D119DB4D2D564A2197798380_UH7N4XQKRW_1692815551.6315\",\"due_date\":\"2023-08-24T01:32:34-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"Oscar\",\"last_name\":\"Marin\",\"email\":\"oscar-mara22@hotmail.com\",\"phone_number\":\"3043782910\",\"address\":null,\"creation_date\":\"2023-08-23T13:32:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvhhp4k2ftmt9zkvb0g/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 18:34:41','2023-08-23 18:34:41'),(8220,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-23T13:35:47-05:00\",\"transaction\":{\"id\":\"trvhhp4k2ftmt9zkvb0g\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"117367413\",\"creation_date\":\"2023-08-23T13:32:34-05:00\",\"operation_date\":\"2023-08-23T13:35:34-05:00\",\"description\":\"Pago Inscripción academia: isaac marin callejas (1023562656)\",\"error_message\":null,\"order_id\":\"4DA9D7B6D119DB4D2D564A2197798380_UH7N4XQKRW_1692815551.6315\",\"due_date\":\"2023-08-24T01:32:34-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"Oscar\",\"last_name\":\"Marin\",\"email\":\"oscar-mara22@hotmail.com\",\"phone_number\":\"3043782910\",\"address\":null,\"creation_date\":\"2023-08-23T13:32:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 18:35:48','2023-08-23 18:35:48'),(8221,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T14:04:48-05:00\",\"transaction\":{\"id\":\"trh2uynwiword0bb8slb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-23T14:01:39-05:00\",\"operation_date\":\"2023-08-23T14:01:39-05:00\",\"description\":\"Pago Mensual academia: anthony gomez pulgarin (1033260344)\",\"error_message\":null,\"order_id\":\"820E694038FADBF9B60B834215B46FDB_ESC59W3UXA_1692817296.4281\",\"due_date\":\"2023-08-24T02:01:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"anthony\",\"last_name\":\"gomez pulgarin\",\"email\":\"anthonygp260208@gmail.com\",\"phone_number\":\"3105247712\",\"address\":null,\"creation_date\":\"2023-08-23T14:01:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trh2uynwiword0bb8slb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 19:04:48','2023-08-23 19:04:48'),(8222,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-23T13:06:11-06:00\",\"transaction\":{\"id\":\"trh2uynwiword0bb8slb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"117427745\",\"creation_date\":\"2023-08-23T14:01:39-06:00\",\"operation_date\":\"2023-08-23T14:05:37-06:00\",\"description\":\"Pago Mensual academia: anthony gomez pulgarin (1033260344)\",\"error_message\":null,\"order_id\":\"820E694038FADBF9B60B834215B46FDB_ESC59W3UXA_1692817296.4281\",\"due_date\":\"2023-08-24T02:01:39-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"anthony\",\"last_name\":\"gomez pulgarin\",\"email\":\"anthonygp260208@gmail.com\",\"phone_number\":\"3105247712\",\"address\":null,\"creation_date\":\"2023-08-23T14:01:39-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 19:06:12','2023-08-23 19:06:12'),(8223,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T14:09:46-05:00\",\"transaction\":{\"id\":\"trdaieai4xy8jp6fse44\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-23T14:08:31-05:00\",\"operation_date\":\"2023-08-23T14:08:31-05:00\",\"description\":\"Pago Inscripción academia: FRANCO RIOS LOPEZ (1035005410)\",\"error_message\":null,\"order_id\":\"4BAF54F36935058BCC696FCEF3F4689B_0MN6OI4G9Q_1692817708.1996\",\"due_date\":\"2023-08-24T02:08:31-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"LUIS ANTONIO\",\"last_name\":\"RIOS GUZMAN\",\"email\":\"luis@misideas.me\",\"phone_number\":\"3165367339\",\"address\":null,\"creation_date\":\"2023-08-23T14:08:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdaieai4xy8jp6fse44/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 19:09:47','2023-08-23 19:09:47'),(8224,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-23T14:11:10-05:00\",\"transaction\":{\"id\":\"trdaieai4xy8jp6fse44\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"117437789\",\"creation_date\":\"2023-08-23T14:08:31-05:00\",\"operation_date\":\"2023-08-23T14:10:39-05:00\",\"description\":\"Pago Inscripción academia: FRANCO RIOS LOPEZ (1035005410)\",\"error_message\":null,\"order_id\":\"4BAF54F36935058BCC696FCEF3F4689B_0MN6OI4G9Q_1692817708.1996\",\"due_date\":\"2023-08-24T02:08:31-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"LUIS ANTONIO\",\"last_name\":\"RIOS GUZMAN\",\"email\":\"luis@misideas.me\",\"phone_number\":\"3165367339\",\"address\":null,\"creation_date\":\"2023-08-23T14:08:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 19:11:11','2023-08-23 19:11:11'),(8225,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T14:47:06-05:00\",\"transaction\":{\"id\":\"trwchwdxkezlf5u8svkt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-23T14:46:19-05:00\",\"operation_date\":\"2023-08-23T14:46:19-05:00\",\"description\":\"Pago Mensual academia: Santiago Betancur Cardona (1035009112)\",\"error_message\":null,\"order_id\":\"228B25587479F2FC7570428E8BCBABDC_D0UBY5HXVC_1692819976.5581\",\"due_date\":\"2023-08-24T02:46:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-23T14:46:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwchwdxkezlf5u8svkt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 19:47:06','2023-08-23 19:47:06'),(8226,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-23T14:49:09-05:00\",\"transaction\":{\"id\":\"trwchwdxkezlf5u8svkt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"117518559\",\"creation_date\":\"2023-08-23T14:46:19-05:00\",\"operation_date\":\"2023-08-23T14:48:38-05:00\",\"description\":\"Pago Mensual academia: Santiago Betancur Cardona (1035009112)\",\"error_message\":null,\"order_id\":\"228B25587479F2FC7570428E8BCBABDC_D0UBY5HXVC_1692819976.5581\",\"due_date\":\"2023-08-24T02:46:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-23T14:46:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 19:49:10','2023-08-23 19:49:10'),(8227,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T14:50:47-05:00\",\"transaction\":{\"id\":\"trw9zoavulisnabyaipe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-23T14:49:59-05:00\",\"operation_date\":\"2023-08-23T14:49:59-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Betancur Cardona (1035013213)\",\"error_message\":null,\"order_id\":\"6A8018B3A00B69C008601B8BECAE392B_9DEG03M258_1692820196.4568\",\"due_date\":\"2023-08-24T02:49:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-23T14:49:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trw9zoavulisnabyaipe/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 19:50:47','2023-08-23 19:50:47'),(8228,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-23T14:51:55-05:00\",\"transaction\":{\"id\":\"trw9zoavulisnabyaipe\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"117526794\",\"creation_date\":\"2023-08-23T14:49:59-05:00\",\"operation_date\":\"2023-08-23T14:51:42-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Betancur Cardona (1035013213)\",\"error_message\":null,\"order_id\":\"6A8018B3A00B69C008601B8BECAE392B_9DEG03M258_1692820196.4568\",\"due_date\":\"2023-08-24T02:49:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Cardona\",\"email\":\"alejadonna@gmail.com\",\"phone_number\":\"3148648671\",\"address\":null,\"creation_date\":\"2023-08-23T14:49:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 19:51:55','2023-08-23 19:51:55'),(8229,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T17:42:23-05:00\",\"transaction\":{\"id\":\"trejtb6ic2j3cf86lwq6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-23T17:41:23-05:00\",\"operation_date\":\"2023-08-23T17:41:23-05:00\",\"description\":\"Pago Mensual academia: Mathias Ignacio Rodriguez Pozo (1017940330)\",\"error_message\":null,\"order_id\":\"C5B270A763686E776039618CC709F3A6_MHOWXPN0AJ_1692830479.3025\",\"due_date\":\"2023-08-24T05:41:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Claudia\",\"last_name\":\"Pozo\",\"email\":\"claudypozo@hotmail.com\",\"phone_number\":\"3104638412\",\"address\":null,\"creation_date\":\"2023-08-23T17:41:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trejtb6ic2j3cf86lwq6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 22:42:24','2023-08-23 22:42:24'),(8230,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-23T17:43:21-05:00\",\"transaction\":{\"id\":\"trejtb6ic2j3cf86lwq6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"117898167\",\"creation_date\":\"2023-08-23T17:41:23-05:00\",\"operation_date\":\"2023-08-23T17:43:16-05:00\",\"description\":\"Pago Mensual academia: Mathias Ignacio Rodriguez Pozo (1017940330)\",\"error_message\":null,\"order_id\":\"C5B270A763686E776039618CC709F3A6_MHOWXPN0AJ_1692830479.3025\",\"due_date\":\"2023-08-24T05:41:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Claudia\",\"last_name\":\"Pozo\",\"email\":\"claudypozo@hotmail.com\",\"phone_number\":\"3104638412\",\"address\":null,\"creation_date\":\"2023-08-23T17:41:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-23 22:43:21','2023-08-23 22:43:21'),(8231,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T20:01:15-05:00\",\"transaction\":{\"id\":\"trkuhv6hzqodctqvcwok\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-23T19:59:58-05:00\",\"operation_date\":\"2023-08-23T19:59:58-05:00\",\"description\":\"Pago Mensual academia: Tomas Gonzalez Palacio (1034994733)\",\"error_message\":null,\"order_id\":\"C4FA7AECEDAC73641320D24D5BF3BF38_6MZ58SUJV7_1692838787.4176\",\"due_date\":\"2023-08-24T07:59:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Adriana\",\"last_name\":\"Palacio\",\"email\":\"nanapalacio@gmail.com\",\"phone_number\":\"3152489243\",\"address\":null,\"creation_date\":\"2023-08-23T19:59:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkuhv6hzqodctqvcwok/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 01:01:16','2023-08-24 01:01:16'),(8232,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-23T21:31:54-05:00\",\"transaction\":{\"id\":\"tr9ntdcpwgtsq8u25heq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-23T21:30:53-05:00\",\"operation_date\":\"2023-08-23T21:30:53-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"6ADD07CF50424B14FDF649DA87843D01_0LWRA62NJE_1692844245.5168\",\"due_date\":\"2023-08-24T09:30:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-08-23T21:30:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9ntdcpwgtsq8u25heq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 02:31:55','2023-08-24 02:31:55'),(8233,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-23T21:06:33-06:00\",\"transaction\":{\"id\":\"trkuhv6hzqodctqvcwok\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"118151000\",\"creation_date\":\"2023-08-23T19:59:58-06:00\",\"operation_date\":\"2023-08-23T20:03:04-06:00\",\"description\":\"Pago Mensual academia: Tomas Gonzalez Palacio (1034994733)\",\"error_message\":null,\"order_id\":\"C4FA7AECEDAC73641320D24D5BF3BF38_6MZ58SUJV7_1692838787.4176\",\"due_date\":\"2023-08-24T07:59:58-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Adriana\",\"last_name\":\"Palacio\",\"email\":\"nanapalacio@gmail.com\",\"phone_number\":\"3152489243\",\"address\":null,\"creation_date\":\"2023-08-23T19:59:58-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 03:06:34','2023-08-24 03:06:34'),(8234,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  861\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-23T21:07:03-06:00\",\"transaction\":{\"id\":\"tr9ntdcpwgtsq8u25heq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-23T21:30:53-06:00\",\"operation_date\":\"2023-08-23T21:32:00-06:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"6ADD07CF50424B14FDF649DA87843D01_0LWRA62NJE_1692844245.5168\",\"due_date\":\"2023-08-24T09:30:53-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-08-23T21:30:53-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 03:07:04','2023-08-24 03:07:04'),(8235,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-24T02:09:53-06:00\",\"transaction\":{\"id\":\"trmphxls2iir76pzlovi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-23T09:06:43-06:00\",\"operation_date\":\"2023-08-23T09:06:43-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"45FBC6D3E05EBD93369CE542E8F2322D_E-64E6126A-25_1692799599.1857\",\"due_date\":\"2023-08-23T21:06:43-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"paul\",\"last_name\":\"velasquez\",\"email\":\"paulvlsqz07@gmail.com\",\"phone_number\":\"3136994916\",\"address\":null,\"creation_date\":\"2023-08-23T09:06:43-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trmphxls2iir76pzlovi/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 08:09:54','2023-08-24 08:09:54'),(8236,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T07:07:52-05:00\",\"transaction\":{\"id\":\"trtvgx9wvebjswpoij5p\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-24T07:07:21-05:00\",\"operation_date\":\"2023-08-24T07:07:21-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"6ADD07CF50424B14FDF649DA87843D01_0LWRA62NJE_1692878833.6204\",\"due_date\":\"2023-08-24T19:07:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-08-24T07:07:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtvgx9wvebjswpoij5p/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 12:07:53','2023-08-24 12:07:53'),(8237,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  861\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-24T06:30:08-06:00\",\"transaction\":{\"id\":\"trtvgx9wvebjswpoij5p\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-24T07:07:21-06:00\",\"operation_date\":\"2023-08-24T07:07:57-06:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"6ADD07CF50424B14FDF649DA87843D01_0LWRA62NJE_1692878833.6204\",\"due_date\":\"2023-08-24T19:07:21-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-08-24T07:07:21-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 12:30:09','2023-08-24 12:30:09'),(8238,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  901\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T08:55:26-05:00\",\"transaction\":{\"id\":\"trb8c5s4tvmsf04nwej2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-24T08:55:26-05:00\",\"operation_date\":\"2023-08-24T08:55:26-05:00\",\"description\":\"Pago Mensual academia: Martin Gomez Al Kikani (1035014307)\",\"error_message\":null,\"order_id\":\"B4A721CFB62F5D19EC61575114D8A2D1_95KJ1GZVQE_1692885322.1614\",\"amount\":105000.00,\"customer\":{\"name\":\"Cristian David\",\"last_name\":\"Gomez Ortega\",\"email\":\"cristian_gomez@hotmail.com\",\"phone_number\":\"3206680762\",\"address\":null,\"creation_date\":\"2023-08-24T08:55:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb8c5s4tvmsf04nwej2/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 13:55:27','2023-08-24 13:55:27'),(8239,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1147\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T08:56:28-05:00\",\"transaction\":{\"id\":\"trb8c5s4tvmsf04nwej2\",\"authorization\":\"123396\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-24T08:55:26-05:00\",\"operation_date\":\"2023-08-24T08:56:26-05:00\",\"description\":\"Pago Mensual academia: Martin Gomez Al Kikani (1035014307)\",\"error_message\":null,\"order_id\":\"B4A721CFB62F5D19EC61575114D8A2D1_95KJ1GZVQE_1692885322.1614\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459356XXXXXX1154\",\"holder_name\":\"Cristian Gomez\",\"expiration_year\":\"25\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"Cristian David\",\"last_name\":\"Gomez Ortega\",\"email\":\"cristian_gomez@hotmail.com\",\"phone_number\":\"3206680762\",\"address\":null,\"creation_date\":\"2023-08-24T08:55:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb8c5s4tvmsf04nwej2/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 13:56:29','2023-08-24 13:56:29'),(8240,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  901\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T08:56:54-05:00\",\"transaction\":{\"id\":\"tr6l8jroaahbfdkmh1fa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-24T08:56:54-05:00\",\"operation_date\":\"2023-08-24T08:56:54-05:00\",\"description\":\"Pago Mensual academia: Martin Gomez Al Kikani (1035014307)\",\"error_message\":null,\"order_id\":\"ECDCD675B3A4CBB5578BAF72F255EC21_DP8KAT10RE_1692885411.3631\",\"amount\":105000.00,\"customer\":{\"name\":\"Cristian David\",\"last_name\":\"Gomez Ortega\",\"email\":\"cristian_gomez@hotmail.com\",\"phone_number\":\"3206680762\",\"address\":null,\"creation_date\":\"2023-08-24T08:56:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6l8jroaahbfdkmh1fa/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 13:56:54','2023-08-24 13:56:54'),(8241,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1147\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T08:58:03-05:00\",\"transaction\":{\"id\":\"tr6l8jroaahbfdkmh1fa\",\"authorization\":\"419552\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-24T08:56:54-05:00\",\"operation_date\":\"2023-08-24T08:58:01-05:00\",\"description\":\"Pago Mensual academia: Martin Gomez Al Kikani (1035014307)\",\"error_message\":null,\"order_id\":\"ECDCD675B3A4CBB5578BAF72F255EC21_DP8KAT10RE_1692885411.3631\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459356XXXXXX1154\",\"holder_name\":\"Cristian Gomez\",\"expiration_year\":\"25\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"Cristian David\",\"last_name\":\"Gomez Ortega\",\"email\":\"cristian_gomez@hotmail.com\",\"phone_number\":\"3206680762\",\"address\":null,\"creation_date\":\"2023-08-24T08:56:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6l8jroaahbfdkmh1fa/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 13:58:03','2023-08-24 13:58:03'),(8242,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T08:59:34-05:00\",\"transaction\":{\"id\":\"trosbehz8oxl9dgz0igz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-24T08:58:57-05:00\",\"operation_date\":\"2023-08-24T08:58:57-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"6ADD07CF50424B14FDF649DA87843D01_0LWRA62NJE_1692885529.7474\",\"due_date\":\"2023-08-24T20:58:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-08-24T08:58:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trosbehz8oxl9dgz0igz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 13:59:35','2023-08-24 13:59:35'),(8243,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T09:00:41-05:00\",\"transaction\":{\"id\":\"trosbehz8oxl9dgz0igz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"118642363\",\"creation_date\":\"2023-08-24T08:58:57-05:00\",\"operation_date\":\"2023-08-24T09:00:31-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"6ADD07CF50424B14FDF649DA87843D01_0LWRA62NJE_1692885529.7474\",\"due_date\":\"2023-08-24T20:58:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-08-24T08:58:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 14:00:41','2023-08-24 14:00:41'),(8244,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  948\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T09:02:40-05:00\",\"transaction\":{\"id\":\"tr1b3untkdawj8y37z8s\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-24T09:01:02-05:00\",\"operation_date\":\"2023-08-24T09:01:02-05:00\",\"description\":\"Pago Mensual academia: jordan stiven castañeda rojas (1033261401)\",\"error_message\":null,\"order_id\":\"5EE0070C40A7C781507B38C59C3EB8D4_VYG8EOAIMU_1692885657.9691\",\"due_date\":\"2023-08-24T21:01:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jordan stiven\",\"last_name\":\"castañeda rojas\",\"email\":\"jordancastaneda648@gmail.com\",\"phone_number\":\"3206560140\",\"address\":null,\"creation_date\":\"2023-08-24T09:01:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1b3untkdawj8y37z8s/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 14:02:40','2023-08-24 14:02:40'),(8245,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  831\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T09:04:29-05:00\",\"transaction\":{\"id\":\"tr1b3untkdawj8y37z8s\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"118647670\",\"creation_date\":\"2023-08-24T09:01:02-05:00\",\"operation_date\":\"2023-08-24T09:04:05-05:00\",\"description\":\"Pago Mensual academia: jordan stiven castañeda rojas (1033261401)\",\"error_message\":null,\"order_id\":\"5EE0070C40A7C781507B38C59C3EB8D4_VYG8EOAIMU_1692885657.9691\",\"due_date\":\"2023-08-24T21:01:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jordan stiven\",\"last_name\":\"castañeda rojas\",\"email\":\"jordancastaneda648@gmail.com\",\"phone_number\":\"3206560140\",\"address\":null,\"creation_date\":\"2023-08-24T09:01:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 14:04:30','2023-08-24 14:04:30'),(8246,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T09:09:54-05:00\",\"transaction\":{\"id\":\"trrnkvkzkwfrzbflrwn2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-24T09:09:04-05:00\",\"operation_date\":\"2023-08-24T09:09:04-05:00\",\"description\":\"Pago Mensual academia: MATIAS URIBE CASTAÑEDA (1035015682)\",\"error_message\":null,\"order_id\":\"DD7970532BFA1449085B8F43FC39A7D5_GMZIOWUBKQ_1692886085.0097\",\"due_date\":\"2023-08-24T21:09:04-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"VIVIANA\",\"last_name\":\"CASTAÑEDA ECHEVERRI\",\"email\":\"vivice028@yahoo.es\",\"phone_number\":\"3117841247\",\"address\":null,\"creation_date\":\"2023-08-24T09:09:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrnkvkzkwfrzbflrwn2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 14:09:55','2023-08-24 14:09:55'),(8247,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T09:11:56-05:00\",\"transaction\":{\"id\":\"trrnkvkzkwfrzbflrwn2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"118660170\",\"creation_date\":\"2023-08-24T09:09:04-05:00\",\"operation_date\":\"2023-08-24T09:11:46-05:00\",\"description\":\"Pago Mensual academia: MATIAS URIBE CASTAÑEDA (1035015682)\",\"error_message\":null,\"order_id\":\"DD7970532BFA1449085B8F43FC39A7D5_GMZIOWUBKQ_1692886085.0097\",\"due_date\":\"2023-08-24T21:09:04-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"VIVIANA\",\"last_name\":\"CASTAÑEDA ECHEVERRI\",\"email\":\"vivice028@yahoo.es\",\"phone_number\":\"3117841247\",\"address\":null,\"creation_date\":\"2023-08-24T09:09:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 14:11:57','2023-08-24 14:11:57'),(8248,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  850\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T10:09:38-05:00\",\"transaction\":{\"id\":\"trnqrszafot7v1dueycm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-24T10:09:38-05:00\",\"operation_date\":\"2023-08-24T10:09:38-05:00\",\"description\":\"Pago Mensual academia: Geronimo Uribe Giraldo (1035000283)\",\"error_message\":null,\"order_id\":\"_1692889771.0933\",\"amount\":165900.00,\"customer\":{\"name\":\"Rafael Antonio\",\"last_name\":\"Uribe Botero\",\"email\":\"ruribe96@gmail.com\",\"phone_number\":\"3127729249\",\"address\":null,\"creation_date\":\"2023-08-24T10:09:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnqrszafot7v1dueycm/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 15:09:39','2023-08-24 15:09:39'),(8249,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1099\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T10:12:04-05:00\",\"transaction\":{\"id\":\"trnqrszafot7v1dueycm\",\"authorization\":\"101204\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-24T10:09:38-05:00\",\"operation_date\":\"2023-08-24T10:12:03-05:00\",\"description\":\"Pago Mensual academia: Geronimo Uribe Giraldo (1035000283)\",\"error_message\":null,\"order_id\":\"_1692889771.0933\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491646XXXXXX6220\",\"holder_name\":\"RAFAEL A URIBE B\",\"expiration_year\":\"24\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Rafael Antonio\",\"last_name\":\"Uribe Botero\",\"email\":\"ruribe96@gmail.com\",\"phone_number\":\"3127729249\",\"address\":null,\"creation_date\":\"2023-08-24T10:09:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnqrszafot7v1dueycm/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 15:12:05','2023-08-24 15:12:05'),(8250,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T13:56:20-05:00\",\"transaction\":{\"id\":\"trhtmc30qirlh1hm3say\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-24T13:52:43-05:00\",\"operation_date\":\"2023-08-24T13:52:43-05:00\",\"description\":\"Pago Mensual academia: emanuel ortiz sanchez (1020309328)\",\"error_message\":null,\"order_id\":\"0EE8B85A85A49346FDFF9665312A5CC4_PSDXAJEKWH_1692903154.2958\",\"due_date\":\"2023-08-25T01:52:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula andrea\",\"last_name\":\"sanchez\",\"email\":\"paulaandreasanchez2017@gmail.com\",\"phone_number\":\"3003116096\",\"address\":null,\"creation_date\":\"2023-08-24T13:52:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhtmc30qirlh1hm3say/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 18:56:21','2023-08-24 18:56:21'),(8251,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T13:59:14-05:00\",\"transaction\":{\"id\":\"trhtmc30qirlh1hm3say\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"119223405\",\"creation_date\":\"2023-08-24T13:52:43-05:00\",\"operation_date\":\"2023-08-24T00:00:00-05:00\",\"description\":\"Pago Mensual academia: emanuel ortiz sanchez (1020309328)\",\"error_message\":null,\"order_id\":\"0EE8B85A85A49346FDFF9665312A5CC4_PSDXAJEKWH_1692903154.2958\",\"due_date\":\"2023-08-25T01:52:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula andrea\",\"last_name\":\"sanchez\",\"email\":\"paulaandreasanchez2017@gmail.com\",\"phone_number\":\"3003116096\",\"address\":null,\"creation_date\":\"2023-08-24T13:52:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 18:59:15','2023-08-24 18:59:15'),(8252,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T14:12:43-05:00\",\"transaction\":{\"id\":\"troeli3utoxwyotqcohz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-24T14:11:41-05:00\",\"operation_date\":\"2023-08-24T14:11:41-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Mojocoa Marin (1014742443)\",\"error_message\":null,\"order_id\":\"2BF283C05B601F21364D052CA0EC798D_94CART8U70_1692904287.5637\",\"due_date\":\"2023-08-25T02:11:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-08-24T14:11:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troeli3utoxwyotqcohz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 19:12:43','2023-08-24 19:12:43'),(8253,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  853\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-24T14:13:29-05:00\",\"transaction\":{\"id\":\"troeli3utoxwyotqcohz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-24T14:11:41-05:00\",\"operation_date\":\"2023-08-24T14:13:17-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Mojocoa Marin (1014742443)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"2BF283C05B601F21364D052CA0EC798D_94CART8U70_1692904287.5637\",\"due_date\":\"2023-08-25T02:11:41-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-08-24T14:11:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 19:13:30','2023-08-24 19:13:30'),(8254,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T14:36:09-05:00\",\"transaction\":{\"id\":\"trab5oxya9ldwefrglv7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-24T14:36:09-05:00\",\"operation_date\":\"2023-08-24T14:36:09-05:00\",\"description\":\"Pago Mensual academia: Martin Jimenez Arteaga (1035005930)\",\"error_message\":null,\"order_id\":\"2E7CEEC8361275C4E31FEE5FE422740B_ZR4M6DVU12_1692905766.9616\",\"amount\":116130.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"jimenez arteaga\",\"email\":\"anfejiro@gmail.com\",\"phone_number\":\"3147392403\",\"address\":null,\"creation_date\":\"2023-08-24T14:36:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trab5oxya9ldwefrglv7/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 19:36:10','2023-08-24 19:36:10'),(8255,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1135\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T14:37:01-05:00\",\"transaction\":{\"id\":\"trab5oxya9ldwefrglv7\",\"authorization\":\"352218\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-24T14:36:09-05:00\",\"operation_date\":\"2023-08-24T14:36:59-05:00\",\"description\":\"Pago Mensual academia: Martin Jimenez Arteaga (1035005930)\",\"error_message\":null,\"order_id\":\"2E7CEEC8361275C4E31FEE5FE422740B_ZR4M6DVU12_1692905766.9616\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"496084XXXXXX2261\",\"holder_name\":\"Andres Jimenez \",\"expiration_year\":\"26\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":116130.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"jimenez arteaga\",\"email\":\"anfejiro@gmail.com\",\"phone_number\":\"3147392403\",\"address\":null,\"creation_date\":\"2023-08-24T14:36:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trab5oxya9ldwefrglv7/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 19:37:01','2023-08-24 19:37:01'),(8256,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T15:10:36-05:00\",\"transaction\":{\"id\":\"trsd8afhsxqyksjvewma\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-24T15:10:36-05:00\",\"operation_date\":\"2023-08-24T15:10:36-05:00\",\"description\":\"Pago Inscripción academia: emiliano urrego rios (1023595679)\",\"error_message\":null,\"order_id\":\"3E524BF740DC8CFD3F49BD3E96DAEE6E_8CZMVAIYXR_1692907828.7291\",\"amount\":286000.00,\"customer\":{\"name\":\"juan carlos\",\"last_name\":\"urrego perez\",\"email\":\"juan18_92@hotmail.com\",\"phone_number\":\"3104136934\",\"address\":null,\"creation_date\":\"2023-08-24T15:10:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsd8afhsxqyksjvewma/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 20:10:37','2023-08-24 20:10:37'),(8257,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1157\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T15:13:04-05:00\",\"transaction\":{\"id\":\"trsd8afhsxqyksjvewma\",\"authorization\":\"151304\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-24T15:10:36-05:00\",\"operation_date\":\"2023-08-24T15:13:03-05:00\",\"description\":\"Pago Inscripción academia: emiliano urrego rios (1023595679)\",\"error_message\":null,\"order_id\":\"3E524BF740DC8CFD3F49BD3E96DAEE6E_8CZMVAIYXR_1692907828.7291\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1046\",\"holder_name\":\"Juan Carlos Urrego Perez\",\"expiration_year\":\"27\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":286000.00,\"customer\":{\"name\":\"juan carlos\",\"last_name\":\"urrego perez\",\"email\":\"juan18_92@hotmail.com\",\"phone_number\":\"3104136934\",\"address\":null,\"creation_date\":\"2023-08-24T15:10:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsd8afhsxqyksjvewma/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 20:13:05','2023-08-24 20:13:05'),(8258,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T17:11:16-05:00\",\"transaction\":{\"id\":\"trcqwifpi487s1yuy1de\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-24T17:11:16-05:00\",\"operation_date\":\"2023-08-24T17:11:16-05:00\",\"description\":\"Pago Mensual academia: Tomas Lopez Bermudez (1038873541)\",\"error_message\":null,\"order_id\":\"F516DFB84B9051ED85B89CDC3A8AB7F5_VUASQH0K48_1692915069.4909\",\"amount\":165900.00,\"customer\":{\"name\":\"Sara\",\"last_name\":\"Bermudez\",\"email\":\"saravelez.2010@hotmail.com\",\"phone_number\":\"3148734060\",\"address\":null,\"creation_date\":\"2023-08-24T17:11:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcqwifpi487s1yuy1de/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 22:11:16','2023-08-24 22:11:16'),(8259,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1139\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T17:13:33-05:00\",\"transaction\":{\"id\":\"trcqwifpi487s1yuy1de\",\"authorization\":\"R09732\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-24T17:11:16-05:00\",\"operation_date\":\"2023-08-24T17:13:32-05:00\",\"description\":\"Pago Mensual academia: Tomas Lopez Bermudez (1038873541)\",\"error_message\":null,\"order_id\":\"F516DFB84B9051ED85B89CDC3A8AB7F5_VUASQH0K48_1692915069.4909\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530373XXXXXX3685\",\"holder_name\":\"Sara Bermudez V\",\"expiration_year\":\"27\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Sara\",\"last_name\":\"Bermudez\",\"email\":\"saravelez.2010@hotmail.com\",\"phone_number\":\"3148734060\",\"address\":null,\"creation_date\":\"2023-08-24T17:11:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcqwifpi487s1yuy1de/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 22:13:34','2023-08-24 22:13:34'),(8260,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T17:13:53-05:00\",\"transaction\":{\"id\":\"trgmvpopaw3zgdzabx5o\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-24T17:13:53-05:00\",\"operation_date\":\"2023-08-24T17:13:53-05:00\",\"description\":\"Pago Mensual academia: Tomas Lopez Bermudez (1038873541)\",\"error_message\":null,\"order_id\":\"FD4C2DC64CCB8496E6F1F94C85F30D06_YFT81B6PWR_1692915228.4582\",\"amount\":165900.00,\"customer\":{\"name\":\"Sara\",\"last_name\":\"Bermudez\",\"email\":\"saravelez.2010@hotmail.com\",\"phone_number\":\"3148734060\",\"address\":null,\"creation_date\":\"2023-08-24T17:13:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgmvpopaw3zgdzabx5o/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 22:13:53','2023-08-24 22:13:53'),(8261,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1217\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T17:14:47-05:00\",\"transaction\":{\"id\":\"trgmvpopaw3zgdzabx5o\",\"authorization\":\"R00182\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-08-24T17:13:53-05:00\",\"operation_date\":\"2023-08-24T17:14:45-05:00\",\"description\":\"Pago Mensual academia: Tomas Lopez Bermudez (1038873541)\",\"error_message\":null,\"order_id\":\"FD4C2DC64CCB8496E6F1F94C85F30D06_YFT81B6PWR_1692915228.4582\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530373XXXXXX3685\",\"holder_name\":\"Sara Bermudez V\",\"expiration_year\":\"27\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Sara\",\"last_name\":\"Bermudez\",\"email\":\"saravelez.2010@hotmail.com\",\"phone_number\":\"3148734060\",\"address\":null,\"creation_date\":\"2023-08-24T17:13:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgmvpopaw3zgdzabx5o/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-24 22:14:47','2023-08-24 22:14:47'),(8262,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T17:39:03-05:00\",\"transaction\":{\"id\":\"trslsyj422wyyqklan4i\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-24T17:38:08-05:00\",\"operation_date\":\"2023-08-24T17:38:08-05:00\",\"description\":\"Pago Mensual academia: jose gabriel atehortua cadavid (1035006140)\",\"error_message\":null,\"order_id\":\"3083202A936B7D0EF8B680D7AE73FA1A_ASXWPTLRZ1_1692916683.3835\",\"due_date\":\"2023-08-25T05:38:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose gabriel\",\"last_name\":\"atehortua  cadavid\",\"email\":\"paolac87@outlook.com\",\"phone_number\":\"3208903138\",\"address\":null,\"creation_date\":\"2023-08-24T17:38:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trslsyj422wyyqklan4i/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 22:39:04','2023-08-24 22:39:04'),(8263,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T17:41:22-05:00\",\"transaction\":{\"id\":\"trslsyj422wyyqklan4i\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"119655905\",\"creation_date\":\"2023-08-24T17:38:08-05:00\",\"operation_date\":\"2023-08-24T17:40:46-05:00\",\"description\":\"Pago Mensual academia: jose gabriel atehortua cadavid (1035006140)\",\"error_message\":null,\"order_id\":\"3083202A936B7D0EF8B680D7AE73FA1A_ASXWPTLRZ1_1692916683.3835\",\"due_date\":\"2023-08-25T05:38:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose gabriel\",\"last_name\":\"atehortua  cadavid\",\"email\":\"paolac87@outlook.com\",\"phone_number\":\"3208903138\",\"address\":null,\"creation_date\":\"2023-08-24T17:38:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-24 22:41:23','2023-08-24 22:41:23'),(8264,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-24T19:34:35-05:00\",\"transaction\":{\"id\":\"trjtdvelp1ihwipkwhjj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-24T19:33:40-05:00\",\"operation_date\":\"2023-08-24T19:33:40-05:00\",\"description\":\"Pago Mensual academia: Martin Molina Melguizo (1023545133)\",\"error_message\":null,\"order_id\":\"ACF922154627F6788918F03C42B123CD_L2VNQ3EU4Y_1692923614.2919\",\"due_date\":\"2023-08-25T07:33:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Melguizo\",\"email\":\"carolina0506@hotmail.com\",\"phone_number\":\"3014583207\",\"address\":null,\"creation_date\":\"2023-08-24T19:33:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjtdvelp1ihwipkwhjj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 00:34:36','2023-08-25 00:34:36'),(8265,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-24T19:36:34-05:00\",\"transaction\":{\"id\":\"trjtdvelp1ihwipkwhjj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"119844741\",\"creation_date\":\"2023-08-24T19:33:40-05:00\",\"operation_date\":\"2023-08-24T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Martin Molina Melguizo (1023545133)\",\"error_message\":null,\"order_id\":\"ACF922154627F6788918F03C42B123CD_L2VNQ3EU4Y_1692923614.2919\",\"due_date\":\"2023-08-25T07:33:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Melguizo\",\"email\":\"carolina0506@hotmail.com\",\"phone_number\":\"3014583207\",\"address\":null,\"creation_date\":\"2023-08-24T19:33:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 00:36:35','2023-08-25 00:36:35'),(8266,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  874\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-25T02:11:10-06:00\",\"transaction\":{\"id\":\"traode4hmtrlt1t6lgs5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-24T10:04:11-06:00\",\"operation_date\":\"2023-08-24T10:04:11-06:00\",\"description\":\"Pago Mensual academia: Thiago Rodriguez Yepes (1036461453)\",\"error_message\":null,\"order_id\":\"_1692888379.6162\",\"due_date\":\"2023-08-24T22:04:11-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Yepes\",\"email\":\"dcyepestoro@gmail.com\",\"phone_number\":\"3002899212\",\"address\":null,\"creation_date\":\"2023-08-24T10:04:11-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traode4hmtrlt1t6lgs5/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 08:11:10','2023-08-25 08:11:10'),(8267,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-25T02:11:10-06:00\",\"transaction\":{\"id\":\"trwxi5sk7lpbywarfchr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-23T15:44:03-06:00\",\"operation_date\":\"2023-08-23T15:44:03-06:00\",\"description\":\"Pago Mensual academia: Geronimo Uribe Giraldo (1035000283)\",\"error_message\":null,\"order_id\":\"_1692823438.5427\",\"due_date\":\"2023-08-24T03:44:03-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Rafael Antonio\",\"last_name\":\"Uribe Botero\",\"email\":\"ruribe96@gmail.com\",\"phone_number\":\"3127729249\",\"address\":null,\"creation_date\":\"2023-08-23T15:44:03-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwxi5sk7lpbywarfchr/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 08:11:10','2023-08-25 08:11:10'),(8268,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  903\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-25T02:11:43-06:00\",\"transaction\":{\"id\":\"trb0wariu7chwzw2ywkq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-23T16:57:22-06:00\",\"operation_date\":\"2023-08-23T16:57:22-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"63DC7ED1010D3C3B8269FAF0BA7491D4_E-64E680B3-65_1692827832.3533\",\"due_date\":\"2023-08-24T04:57:22-06:00\",\"amount\":57000.00,\"customer\":{\"name\":\"Eliana María\",\"last_name\":\"Alvarez\",\"email\":\"elianaalvarez2@hotmail.com\",\"phone_number\":\"3002965986\",\"address\":null,\"creation_date\":\"2023-08-23T16:57:22-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trb0wariu7chwzw2ywkq/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 08:11:44','2023-08-25 08:11:44'),(8269,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T05:06:26-05:00\",\"transaction\":{\"id\":\"trihxbihqdwjbt4zt3dh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T05:05:27-05:00\",\"operation_date\":\"2023-08-25T05:05:27-05:00\",\"description\":\"Pago Mensual academia: Agustin rodriguez velasquez (1027815244)\",\"error_message\":null,\"order_id\":\"48042B1DAE4950FEF2BD2AAFA0B971A1_YID15XRQL6_1692957918.4128\",\"due_date\":\"2023-08-25T17:05:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"darly\",\"last_name\":\"velasquez atehortua\",\"email\":\"darly8714@hotmail.com\",\"phone_number\":\"3217822394\",\"address\":null,\"creation_date\":\"2023-08-25T05:05:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trihxbihqdwjbt4zt3dh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 10:06:27','2023-08-25 10:06:27'),(8270,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T04:09:07-06:00\",\"transaction\":{\"id\":\"trihxbihqdwjbt4zt3dh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"120156694\",\"creation_date\":\"2023-08-25T05:05:27-06:00\",\"operation_date\":\"2023-08-25T05:07:16-06:00\",\"description\":\"Pago Mensual academia: Agustin rodriguez velasquez (1027815244)\",\"error_message\":null,\"order_id\":\"48042B1DAE4950FEF2BD2AAFA0B971A1_YID15XRQL6_1692957918.4128\",\"due_date\":\"2023-08-25T17:05:27-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"darly\",\"last_name\":\"velasquez atehortua\",\"email\":\"darly8714@hotmail.com\",\"phone_number\":\"3217822394\",\"address\":null,\"creation_date\":\"2023-08-25T05:05:27-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 10:09:08','2023-08-25 10:09:08'),(8271,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T06:21:41-05:00\",\"transaction\":{\"id\":\"trb9igpkscovjwlas9hl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T06:20:53-05:00\",\"operation_date\":\"2023-08-25T06:20:53-05:00\",\"description\":\"Pago Mensual academia: jose gabriel atehortua cadavid (1035006140)\",\"error_message\":null,\"order_id\":\"398475C83B47075E8897A083E97EB9F0_AYUXNJBZIG_1692962449.3909\",\"due_date\":\"2023-08-25T18:20:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose gabriel\",\"last_name\":\"atehortua  cadavid\",\"email\":\"paolac87@outlook.com\",\"phone_number\":\"3208903138\",\"address\":null,\"creation_date\":\"2023-08-25T06:20:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb9igpkscovjwlas9hl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 11:21:42','2023-08-25 11:21:42'),(8272,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T06:23:14-05:00\",\"transaction\":{\"id\":\"trb9igpkscovjwlas9hl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"120180079\",\"creation_date\":\"2023-08-25T06:20:53-05:00\",\"operation_date\":\"2023-08-25T06:22:45-05:00\",\"description\":\"Pago Mensual academia: jose gabriel atehortua cadavid (1035006140)\",\"error_message\":null,\"order_id\":\"398475C83B47075E8897A083E97EB9F0_AYUXNJBZIG_1692962449.3909\",\"due_date\":\"2023-08-25T18:20:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose gabriel\",\"last_name\":\"atehortua  cadavid\",\"email\":\"paolac87@outlook.com\",\"phone_number\":\"3208903138\",\"address\":null,\"creation_date\":\"2023-08-25T06:20:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 11:23:15','2023-08-25 11:23:15'),(8273,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T06:57:48-05:00\",\"transaction\":{\"id\":\"trc40rphiyotzeku2t7c\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T06:56:27-05:00\",\"operation_date\":\"2023-08-25T06:56:27-05:00\",\"description\":\"Pago Mensual academia: Martín Munevar Botero (1035981767)\",\"error_message\":null,\"order_id\":\"CAE82D4350CC23ACA7FC9AE38DAB38AB_26EIMXGY7T_1692964582.9715\",\"due_date\":\"2023-08-25T18:56:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MARTIN\",\"last_name\":\"MUNEVAR BOTERO\",\"email\":\"e-botero1@hotmail.com\",\"phone_number\":\"3104545932\",\"address\":null,\"creation_date\":\"2023-08-25T06:56:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc40rphiyotzeku2t7c/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 11:57:48','2023-08-25 11:57:48'),(8274,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T06:58:53-05:00\",\"transaction\":{\"id\":\"trc40rphiyotzeku2t7c\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"120201921\",\"creation_date\":\"2023-08-25T06:56:27-05:00\",\"operation_date\":\"2023-08-25T06:58:45-05:00\",\"description\":\"Pago Mensual academia: Martín Munevar Botero (1035981767)\",\"error_message\":null,\"order_id\":\"CAE82D4350CC23ACA7FC9AE38DAB38AB_26EIMXGY7T_1692964582.9715\",\"due_date\":\"2023-08-25T18:56:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MARTIN\",\"last_name\":\"MUNEVAR BOTERO\",\"email\":\"e-botero1@hotmail.com\",\"phone_number\":\"3104545932\",\"address\":null,\"creation_date\":\"2023-08-25T06:56:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 11:58:54','2023-08-25 11:58:54'),(8275,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T07:51:20-05:00\",\"transaction\":{\"id\":\"trsfznyrsqse5sn161b3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T07:49:25-05:00\",\"operation_date\":\"2023-08-25T07:49:25-05:00\",\"description\":\"Pago Mensual academia: Martín Motta Martínez (1077242914)\",\"error_message\":null,\"order_id\":\"895DAA408F494AD58006C47A30F51C1F_UZLHF9I51Q_1692967761.6482\",\"due_date\":\"2023-08-25T19:49:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Martínez\",\"email\":\"juniorcamilo2003@gmail.com\",\"phone_number\":\"3212614609\",\"address\":null,\"creation_date\":\"2023-08-25T07:49:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsfznyrsqse5sn161b3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 12:51:20','2023-08-25 12:51:20'),(8276,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T07:52:33-05:00\",\"transaction\":{\"id\":\"trsfznyrsqse5sn161b3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"120251060\",\"creation_date\":\"2023-08-25T07:49:25-05:00\",\"operation_date\":\"2023-08-25T07:52:03-05:00\",\"description\":\"Pago Mensual academia: Martín Motta Martínez (1077242914)\",\"error_message\":null,\"order_id\":\"895DAA408F494AD58006C47A30F51C1F_UZLHF9I51Q_1692967761.6482\",\"due_date\":\"2023-08-25T19:49:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Martínez\",\"email\":\"juniorcamilo2003@gmail.com\",\"phone_number\":\"3212614609\",\"address\":null,\"creation_date\":\"2023-08-25T07:49:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 12:52:34','2023-08-25 12:52:34'),(8277,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T09:48:00-05:00\",\"transaction\":{\"id\":\"trndk9hwkkl0m5zrvx5o\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T09:47:05-05:00\",\"operation_date\":\"2023-08-25T09:47:05-05:00\",\"description\":\"Pago Mensual academia: Sebastian Zapata Ospina (1021932515)\",\"error_message\":null,\"order_id\":\"BA304F3809ED31D0AD97B5A2B5DF2A39_7TYKCRBMNH_1692974821.9759\",\"due_date\":\"2023-08-25T21:47:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Zapata\",\"email\":\"ktospinazapata@gmail.com\",\"phone_number\":\"3043457624\",\"address\":null,\"creation_date\":\"2023-08-25T09:47:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trndk9hwkkl0m5zrvx5o/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 14:48:00','2023-08-25 14:48:00'),(8278,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T09:49:09-05:00\",\"transaction\":{\"id\":\"trndk9hwkkl0m5zrvx5o\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"120445601\",\"creation_date\":\"2023-08-25T09:47:05-05:00\",\"operation_date\":\"2023-08-25T09:48:39-05:00\",\"description\":\"Pago Mensual academia: Sebastian Zapata Ospina (1021932515)\",\"error_message\":null,\"order_id\":\"BA304F3809ED31D0AD97B5A2B5DF2A39_7TYKCRBMNH_1692974821.9759\",\"due_date\":\"2023-08-25T21:47:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Zapata\",\"email\":\"ktospinazapata@gmail.com\",\"phone_number\":\"3043457624\",\"address\":null,\"creation_date\":\"2023-08-25T09:47:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 14:49:10','2023-08-25 14:49:10'),(8279,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T10:16:46-05:00\",\"transaction\":{\"id\":\"trl3j9pvhyzewehhtnud\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-25T10:16:46-05:00\",\"operation_date\":\"2023-08-25T10:16:46-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Isaza Tamayo (1035007470)\",\"error_message\":null,\"order_id\":\"F95EC3DE395B4BCE25B39EF6138DA871_RQZPW96HDO_1692976600.3228\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Miguel\",\"last_name\":\"Isaza Moreno\",\"email\":\"capitanisaza@gmail.com\",\"phone_number\":\"3136308052\",\"address\":null,\"creation_date\":\"2023-08-25T10:16:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl3j9pvhyzewehhtnud/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-25 15:16:46','2023-08-25 15:16:46'),(8280,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1221\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T10:18:20-05:00\",\"transaction\":{\"id\":\"trl3j9pvhyzewehhtnud\",\"authorization\":\"101819\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":6,\"conciliated\":true,\"creation_date\":\"2023-08-25T10:16:46-05:00\",\"operation_date\":\"2023-08-25T10:18:19-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Isaza Tamayo (1035007470)\",\"error_message\":null,\"order_id\":\"F95EC3DE395B4BCE25B39EF6138DA871_RQZPW96HDO_1692976600.3228\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491647XXXXXX5058\",\"holder_name\":\"JUAN M ISAZA M\",\"expiration_year\":\"27\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":6,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Juan Miguel\",\"last_name\":\"Isaza Moreno\",\"email\":\"capitanisaza@gmail.com\",\"phone_number\":\"3136308052\",\"address\":null,\"creation_date\":\"2023-08-25T10:16:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl3j9pvhyzewehhtnud/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-25 15:18:21','2023-08-25 15:18:21'),(8281,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T10:18:41-05:00\",\"transaction\":{\"id\":\"trawhwubnp3yrxpstgsh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-25T10:18:41-05:00\",\"operation_date\":\"2023-08-25T10:18:41-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Isaza Tamayo (1035007470)\",\"error_message\":null,\"order_id\":\"4F11B55F57612F06FE9638B99F6C66E6_KJBRCNPIUG_1692976719.2868\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Miguel\",\"last_name\":\"Isaza Moreno\",\"email\":\"capitanisaza@gmail.com\",\"phone_number\":\"3136308052\",\"address\":null,\"creation_date\":\"2023-08-25T10:18:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trawhwubnp3yrxpstgsh/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-25 15:18:42','2023-08-25 15:18:42'),(8282,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1221\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T10:19:15-05:00\",\"transaction\":{\"id\":\"trawhwubnp3yrxpstgsh\",\"authorization\":\"101915\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":6,\"conciliated\":true,\"creation_date\":\"2023-08-25T10:18:41-05:00\",\"operation_date\":\"2023-08-25T10:19:14-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Isaza Tamayo (1035007470)\",\"error_message\":null,\"order_id\":\"4F11B55F57612F06FE9638B99F6C66E6_KJBRCNPIUG_1692976719.2868\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491647XXXXXX5058\",\"holder_name\":\"JUAN M ISAZA M\",\"expiration_year\":\"27\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":6,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Juan Miguel\",\"last_name\":\"Isaza Moreno\",\"email\":\"capitanisaza@gmail.com\",\"phone_number\":\"3136308052\",\"address\":null,\"creation_date\":\"2023-08-25T10:18:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trawhwubnp3yrxpstgsh/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-25 15:19:16','2023-08-25 15:19:16'),(8283,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T11:20:22-05:00\",\"transaction\":{\"id\":\"tr2mvir0lvtmyhv8nekd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T11:19:19-05:00\",\"operation_date\":\"2023-08-25T11:19:19-05:00\",\"description\":\"Pago Mensual academia: santiago agudelo rengifo (1029885184)\",\"error_message\":null,\"order_id\":\"22C5A901070D1C2AD33E821D071AE97E_0L8HVTZJ2I_1692980356.1486\",\"due_date\":\"2023-08-25T23:19:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Agudelo Rengifo\",\"email\":\"shirley.rengifo@yahoo.com\",\"phone_number\":\"3138046959\",\"address\":null,\"creation_date\":\"2023-08-25T11:19:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2mvir0lvtmyhv8nekd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 16:20:22','2023-08-25 16:20:22'),(8284,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T10:24:17-06:00\",\"transaction\":{\"id\":\"tr2mvir0lvtmyhv8nekd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"120658280\",\"creation_date\":\"2023-08-25T11:19:19-06:00\",\"operation_date\":\"2023-08-25T11:21:30-06:00\",\"description\":\"Pago Mensual academia: santiago agudelo rengifo (1029885184)\",\"error_message\":null,\"order_id\":\"22C5A901070D1C2AD33E821D071AE97E_0L8HVTZJ2I_1692980356.1486\",\"due_date\":\"2023-08-25T23:19:19-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Agudelo Rengifo\",\"email\":\"shirley.rengifo@yahoo.com\",\"phone_number\":\"3138046959\",\"address\":null,\"creation_date\":\"2023-08-25T11:19:19-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 16:24:18','2023-08-25 16:24:18'),(8285,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T11:59:34-05:00\",\"transaction\":{\"id\":\"trya0gfvwgqfa0btluyg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-25T11:59:34-05:00\",\"operation_date\":\"2023-08-25T11:59:34-05:00\",\"description\":\"Pago Inscripción academia: Miguel Angel Rojas Madrid (1011401910)\",\"error_message\":null,\"order_id\":\"E2EABAF96372E20A9E3D4B5F83723A61_8P46KEXZ35_1692982752.3977\",\"amount\":391000.00,\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"Rojas Madrid\",\"email\":\"meridafergus201@gmail.com\",\"phone_number\":\"3203306007\",\"address\":null,\"creation_date\":\"2023-08-25T11:59:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trya0gfvwgqfa0btluyg/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-25 16:59:35','2023-08-25 16:59:35'),(8286,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  883\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T12:51:33-05:00\",\"transaction\":{\"id\":\"trpkrbdwmozclxnd7ojo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T12:50:49-05:00\",\"operation_date\":\"2023-08-25T12:50:49-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN GUEVARA AGUDELO (1035008731)\",\"error_message\":null,\"order_id\":\"_1692985847.2846\",\"due_date\":\"2023-08-26T00:50:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Guevara\",\"email\":\"jaguevara726@hotmail.com\",\"phone_number\":\"3146829322\",\"address\":null,\"creation_date\":\"2023-08-25T12:50:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpkrbdwmozclxnd7ojo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 17:51:34','2023-08-25 17:51:34'),(8287,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  766\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T12:52:46-05:00\",\"transaction\":{\"id\":\"trpkrbdwmozclxnd7ojo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"120872921\",\"creation_date\":\"2023-08-25T12:50:49-05:00\",\"operation_date\":\"2023-08-25T12:52:40-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN GUEVARA AGUDELO (1035008731)\",\"error_message\":null,\"order_id\":\"_1692985847.2846\",\"due_date\":\"2023-08-26T00:50:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Guevara\",\"email\":\"jaguevara726@hotmail.com\",\"phone_number\":\"3146829322\",\"address\":null,\"creation_date\":\"2023-08-25T12:50:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 17:52:47','2023-08-25 17:52:47'),(8288,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T13:25:48-05:00\",\"transaction\":{\"id\":\"trroxrg5l6jdkgnfil2w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T13:24:35-05:00\",\"operation_date\":\"2023-08-25T13:24:35-05:00\",\"description\":\"Pago Mensual academia: isaac cardona jimenez (1023595539)\",\"error_message\":null,\"order_id\":\"300D1539C3B6AA1793B5678B857732CF_Z2KWC1OA8X_1692987872.7139\",\"due_date\":\"2023-08-26T01:24:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"orlando\",\"last_name\":\"Cardona ochoa\",\"email\":\"orlandocardonaochoa@hotmail.com\",\"phone_number\":\"3188362833\",\"address\":null,\"creation_date\":\"2023-08-25T13:24:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trroxrg5l6jdkgnfil2w/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 18:25:49','2023-08-25 18:25:49'),(8289,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T13:26:22-05:00\",\"transaction\":{\"id\":\"trroxrg5l6jdkgnfil2w\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"120948576\",\"creation_date\":\"2023-08-25T13:24:35-05:00\",\"operation_date\":\"2023-08-25T13:26:13-05:00\",\"description\":\"Pago Mensual academia: isaac cardona jimenez (1023595539)\",\"error_message\":null,\"order_id\":\"300D1539C3B6AA1793B5678B857732CF_Z2KWC1OA8X_1692987872.7139\",\"due_date\":\"2023-08-26T01:24:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"orlando\",\"last_name\":\"Cardona ochoa\",\"email\":\"orlandocardonaochoa@hotmail.com\",\"phone_number\":\"3188362833\",\"address\":null,\"creation_date\":\"2023-08-25T13:24:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 18:26:22','2023-08-25 18:26:22'),(8290,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T14:22:44-05:00\",\"transaction\":{\"id\":\"trsx83nl0tqxqqaiaxgv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-25T14:22:44-05:00\",\"operation_date\":\"2023-08-25T14:22:44-05:00\",\"description\":\"Pago Inscripción academia: Miguel Angel Rojas Madrid (1011401910)\",\"error_message\":null,\"order_id\":\"E2EABAF96372E20A9E3D4B5F83723A61_8P46KEXZ35_1692991345.2947\",\"amount\":391000.00,\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"Rojas Madrid\",\"email\":\"meridafergus201@gmail.com\",\"phone_number\":\"3203306007\",\"address\":null,\"creation_date\":\"2023-08-25T14:22:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsx83nl0tqxqqaiaxgv/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-25 19:22:44','2023-08-25 19:22:44'),(8291,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T15:04:50-05:00\",\"transaction\":{\"id\":\"trgrjo9gqqgeofjrmsfk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T15:04:04-05:00\",\"operation_date\":\"2023-08-25T15:04:04-05:00\",\"description\":\"Pago Mensual academia: Yilmer Sneider Piratoba Vergara (1092542886)\",\"error_message\":null,\"order_id\":\"7AE11AF20803185120E83D3CE4FB4ED7_OS96FQ1Y7T_1692993840.8833\",\"due_date\":\"2023-08-26T03:04:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"William\",\"last_name\":\"Piratoba\",\"email\":\"yilmerly123@gmail.com\",\"phone_number\":\"3217863160\",\"address\":null,\"creation_date\":\"2023-08-25T15:04:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgrjo9gqqgeofjrmsfk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 20:04:51','2023-08-25 20:04:51'),(8292,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T15:07:36-05:00\",\"transaction\":{\"id\":\"trgrjo9gqqgeofjrmsfk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"121196771\",\"creation_date\":\"2023-08-25T15:04:04-05:00\",\"operation_date\":\"2023-08-25T15:06:57-05:00\",\"description\":\"Pago Mensual academia: Yilmer Sneider Piratoba Vergara (1092542886)\",\"error_message\":null,\"order_id\":\"7AE11AF20803185120E83D3CE4FB4ED7_OS96FQ1Y7T_1692993840.8833\",\"due_date\":\"2023-08-26T03:04:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"William\",\"last_name\":\"Piratoba\",\"email\":\"yilmerly123@gmail.com\",\"phone_number\":\"3217863160\",\"address\":null,\"creation_date\":\"2023-08-25T15:04:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 20:07:37','2023-08-25 20:07:37'),(8293,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T15:10:17-05:00\",\"transaction\":{\"id\":\"trqlsjsiqgc4ksoosw2v\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T15:09:05-05:00\",\"operation_date\":\"2023-08-25T15:09:05-05:00\",\"description\":\"Pago Inscripción academia: isaac castañeda bedoya (1033204955)\",\"error_message\":null,\"order_id\":\"2974788B53F73E7950E8AA49F3A306DB_TU8C6SPVNG_1692994140.1019\",\"due_date\":\"2023-08-26T03:09:05-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Castañeda Bedoya\",\"email\":\"emily.30enero@hotmail.com\",\"phone_number\":\"3053371991\",\"address\":null,\"creation_date\":\"2023-08-25T15:09:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqlsjsiqgc4ksoosw2v/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 20:10:18','2023-08-25 20:10:18'),(8294,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T14:12:27-06:00\",\"transaction\":{\"id\":\"trqlsjsiqgc4ksoosw2v\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"121210866\",\"creation_date\":\"2023-08-25T15:09:05-06:00\",\"operation_date\":\"2023-08-25T15:11:42-06:00\",\"description\":\"Pago Inscripción academia: isaac castañeda bedoya (1033204955)\",\"error_message\":null,\"order_id\":\"2974788B53F73E7950E8AA49F3A306DB_TU8C6SPVNG_1692994140.1019\",\"due_date\":\"2023-08-26T03:09:05-06:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Castañeda Bedoya\",\"email\":\"emily.30enero@hotmail.com\",\"phone_number\":\"3053371991\",\"address\":null,\"creation_date\":\"2023-08-25T15:09:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 20:12:28','2023-08-25 20:12:28'),(8295,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T15:12:32-05:00\",\"transaction\":{\"id\":\"trr7nzmckresngnjpp5l\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-25T15:12:32-05:00\",\"operation_date\":\"2023-08-25T15:12:32-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Martinez vergara (1068429673)\",\"error_message\":null,\"order_id\":\"8A057268A74A5F1201285AA667585E15_RD2OW1SBCG_1692994349.624\",\"amount\":165900.00,\"customer\":{\"name\":\"juan Sebastian\",\"last_name\":\"martinez vergara\",\"email\":\"vergaravergaraanamargarita@gmail.com\",\"phone_number\":\"3246825908\",\"address\":null,\"creation_date\":\"2023-08-25T15:12:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr7nzmckresngnjpp5l/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-25 20:12:33','2023-08-25 20:12:33'),(8296,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1168\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T15:14:06-05:00\",\"transaction\":{\"id\":\"trr7nzmckresngnjpp5l\",\"authorization\":\"406149\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-25T15:12:32-05:00\",\"operation_date\":\"2023-08-25T15:14:04-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Martinez vergara (1068429673)\",\"error_message\":null,\"order_id\":\"8A057268A74A5F1201285AA667585E15_RD2OW1SBCG_1692994349.624\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"528209XXXXXX1016\",\"holder_name\":\"ANA VERGARA V\",\"expiration_year\":\"28\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"FALABELLA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"juan Sebastian\",\"last_name\":\"martinez vergara\",\"email\":\"vergaravergaraanamargarita@gmail.com\",\"phone_number\":\"3246825908\",\"address\":null,\"creation_date\":\"2023-08-25T15:12:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr7nzmckresngnjpp5l/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-25 20:14:07','2023-08-25 20:14:07'),(8297,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1156\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T15:14:19-05:00\",\"transaction\":{\"id\":\"trsx83nl0tqxqqaiaxgv\",\"authorization\":\"151418\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-25T14:22:44-05:00\",\"operation_date\":\"2023-08-25T15:14:18-05:00\",\"description\":\"Pago Inscripción academia: Miguel Angel Rojas Madrid (1011401910)\",\"error_message\":null,\"order_id\":\"E2EABAF96372E20A9E3D4B5F83723A61_8P46KEXZ35_1692991345.2947\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX9676\",\"holder_name\":\"Karen Gorgona\",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":391000.00,\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"Rojas Madrid\",\"email\":\"meridafergus201@gmail.com\",\"phone_number\":\"3203306007\",\"address\":null,\"creation_date\":\"2023-08-25T14:22:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsx83nl0tqxqqaiaxgv/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-25 20:14:19','2023-08-25 20:14:19'),(8298,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T15:14:58-05:00\",\"transaction\":{\"id\":\"trzltfh4ptaekp3huxck\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T15:13:57-05:00\",\"operation_date\":\"2023-08-25T15:13:57-05:00\",\"description\":\"Pago Mensual academia: isaac castañeda bedoya (1033204955)\",\"error_message\":null,\"order_id\":\"D0AA518D4D3BFC721AA0B8AB4EF32269_6Y1QOIW9D2_1692994433.1922\",\"due_date\":\"2023-08-26T03:13:57-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Castañeda Bedoya\",\"email\":\"emily.30enero@hotmail.com\",\"phone_number\":\"3053371991\",\"address\":null,\"creation_date\":\"2023-08-25T15:13:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzltfh4ptaekp3huxck/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 20:14:59','2023-08-25 20:14:59'),(8299,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T14:20:02-06:00\",\"transaction\":{\"id\":\"trzltfh4ptaekp3huxck\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"121222805\",\"creation_date\":\"2023-08-25T15:13:57-06:00\",\"operation_date\":\"2023-08-25T15:15:56-06:00\",\"description\":\"Pago Mensual academia: isaac castañeda bedoya (1033204955)\",\"error_message\":null,\"order_id\":\"D0AA518D4D3BFC721AA0B8AB4EF32269_6Y1QOIW9D2_1692994433.1922\",\"due_date\":\"2023-08-26T03:13:57-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Castañeda Bedoya\",\"email\":\"emily.30enero@hotmail.com\",\"phone_number\":\"3053371991\",\"address\":null,\"creation_date\":\"2023-08-25T15:13:57-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 20:20:02','2023-08-25 20:20:02'),(8300,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T14:21:19-06:00\",\"transaction\":{\"id\":\"trzltfh4ptaekp3huxck\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"121222805\",\"creation_date\":\"2023-08-25T15:13:57-06:00\",\"operation_date\":\"2023-08-25T15:15:56-06:00\",\"description\":\"Pago Mensual academia: isaac castañeda bedoya (1033204955)\",\"error_message\":null,\"order_id\":\"D0AA518D4D3BFC721AA0B8AB4EF32269_6Y1QOIW9D2_1692994433.1922\",\"due_date\":\"2023-08-26T03:13:57-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Castañeda Bedoya\",\"email\":\"emily.30enero@hotmail.com\",\"phone_number\":\"3053371991\",\"address\":null,\"creation_date\":\"2023-08-25T15:13:57-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 20:21:20','2023-08-25 20:21:20'),(8301,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  870\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T15:50:59-05:00\",\"transaction\":{\"id\":\"tr9ryzroxy5m163yg3ud\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T15:49:21-05:00\",\"operation_date\":\"2023-08-25T15:49:21-05:00\",\"description\":\"Pago Mensual academia: Thiago Rodriguez Yepes (1036461453)\",\"error_message\":null,\"order_id\":\"_1692996541.7054\",\"due_date\":\"2023-08-26T03:49:21-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Yepes\",\"email\":\"dcyepestoro@gmail.com\",\"phone_number\":\"3002899212\",\"address\":null,\"creation_date\":\"2023-08-25T15:49:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9ryzroxy5m163yg3ud/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 20:50:59','2023-08-25 20:50:59'),(8302,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  753\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T15:52:21-05:00\",\"transaction\":{\"id\":\"tr9ryzroxy5m163yg3ud\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"121321967\",\"creation_date\":\"2023-08-25T15:49:21-05:00\",\"operation_date\":\"2023-08-25T15:51:47-05:00\",\"description\":\"Pago Mensual academia: Thiago Rodriguez Yepes (1036461453)\",\"error_message\":null,\"order_id\":\"_1692996541.7054\",\"due_date\":\"2023-08-26T03:49:21-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Yepes\",\"email\":\"dcyepestoro@gmail.com\",\"phone_number\":\"3002899212\",\"address\":null,\"creation_date\":\"2023-08-25T15:49:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 20:52:21','2023-08-25 20:52:21'),(8303,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T15:58:16-05:00\",\"transaction\":{\"id\":\"trq5i74l3in8tykh4qep\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T15:56:24-05:00\",\"operation_date\":\"2023-08-25T15:56:24-05:00\",\"description\":\"Pago Inscripción academia: Maximiliano De Villa Luján (1035002732)\",\"error_message\":null,\"order_id\":\"CFF02A74DA64D145A4AED3A577A106AB_DGJP314Q7B_1692996961.551\",\"due_date\":\"2023-08-26T03:56:24-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Natasha\",\"last_name\":\"Lujan\",\"email\":\"natasha.lujan@gmail.com\",\"phone_number\":\"3176473782\",\"address\":null,\"creation_date\":\"2023-08-25T15:56:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq5i74l3in8tykh4qep/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 20:58:16','2023-08-25 20:58:16'),(8304,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  849\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-25T15:00:27-06:00\",\"transaction\":{\"id\":\"trq5i74l3in8tykh4qep\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-25T15:56:24-06:00\",\"operation_date\":\"2023-08-25T15:58:23-06:00\",\"description\":\"Pago Inscripción academia: Maximiliano De Villa Luján (1035002732)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"CFF02A74DA64D145A4AED3A577A106AB_DGJP314Q7B_1692996961.551\",\"due_date\":\"2023-08-26T03:56:24-06:00\",\"error_code\":1007,\"amount\":431000.00,\"customer\":{\"name\":\"Natasha\",\"last_name\":\"Lujan\",\"email\":\"natasha.lujan@gmail.com\",\"phone_number\":\"3176473782\",\"address\":null,\"creation_date\":\"2023-08-25T15:56:24-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 21:00:28','2023-08-25 21:00:28'),(8305,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T16:01:46-05:00\",\"transaction\":{\"id\":\"trgw4s3i9kjrusx9sicn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T16:00:44-05:00\",\"operation_date\":\"2023-08-25T16:00:44-05:00\",\"description\":\"Pago Inscripción academia: Maximiliano De Villa Luján (1035002732)\",\"error_message\":null,\"order_id\":\"CFF02A74DA64D145A4AED3A577A106AB_DGJP314Q7B_1692997242.4289\",\"due_date\":\"2023-08-26T04:00:44-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Natasha\",\"last_name\":\"Lujan\",\"email\":\"natasha.lujan@gmail.com\",\"phone_number\":\"3176473782\",\"address\":null,\"creation_date\":\"2023-08-25T16:00:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgw4s3i9kjrusx9sicn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 21:01:47','2023-08-25 21:01:47'),(8306,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T16:02:53-05:00\",\"transaction\":{\"id\":\"trgw4s3i9kjrusx9sicn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"121351880\",\"creation_date\":\"2023-08-25T16:00:44-05:00\",\"operation_date\":\"2023-08-25T16:02:40-05:00\",\"description\":\"Pago Inscripción academia: Maximiliano De Villa Luján (1035002732)\",\"error_message\":null,\"order_id\":\"CFF02A74DA64D145A4AED3A577A106AB_DGJP314Q7B_1692997242.4289\",\"due_date\":\"2023-08-26T04:00:44-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Natasha\",\"last_name\":\"Lujan\",\"email\":\"natasha.lujan@gmail.com\",\"phone_number\":\"3176473782\",\"address\":null,\"creation_date\":\"2023-08-25T16:00:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 21:02:54','2023-08-25 21:02:54'),(8307,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T18:14:13-05:00\",\"transaction\":{\"id\":\"tr4swvud5qjsqunhdeem\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-25T18:13:39-05:00\",\"operation_date\":\"2023-08-25T18:13:39-05:00\",\"description\":\"Pago Mensual academia: Matias Alvarez Montes (1020326486)\",\"error_message\":null,\"order_id\":\"E1021D43911CA2C1845910D84F40AEAE_3VI1L9GFOY_1693005216.0782\",\"due_date\":\"2023-08-26T06:13:39-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Silvana\",\"last_name\":\"Montes Gonzalez\",\"email\":\"silvana_m03@hotmail.com\",\"phone_number\":\"3148124200\",\"address\":null,\"creation_date\":\"2023-08-25T18:13:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4swvud5qjsqunhdeem/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 23:14:13','2023-08-25 23:14:13'),(8308,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-25T18:15:18-05:00\",\"transaction\":{\"id\":\"tr4swvud5qjsqunhdeem\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"121657458\",\"creation_date\":\"2023-08-25T18:13:39-05:00\",\"operation_date\":\"2023-08-25T18:14:58-05:00\",\"description\":\"Pago Mensual academia: Matias Alvarez Montes (1020326486)\",\"error_message\":null,\"order_id\":\"E1021D43911CA2C1845910D84F40AEAE_3VI1L9GFOY_1693005216.0782\",\"due_date\":\"2023-08-26T06:13:39-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Silvana\",\"last_name\":\"Montes Gonzalez\",\"email\":\"silvana_m03@hotmail.com\",\"phone_number\":\"3148124200\",\"address\":null,\"creation_date\":\"2023-08-25T18:13:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-25 23:15:19','2023-08-25 23:15:19'),(8309,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-25T21:57:22-05:00\",\"transaction\":{\"id\":\"trrx7lqsni930c3ntkgu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-25T21:57:21-05:00\",\"operation_date\":\"2023-08-25T21:57:21-05:00\",\"description\":\"Pago Mensual academia: Samuel Zapata ochoa (1036454926)\",\"error_message\":null,\"order_id\":\"CF88118AA2BA88DE549D08038AE76606_J5BNW4ST9O_1693018638.3923\",\"amount\":165900.00,\"customer\":{\"name\":\"Marcela\",\"last_name\":\"Zapata ochoa\",\"email\":\"marcela.zapata@hotmail.com\",\"phone_number\":\"3128351811\",\"address\":null,\"creation_date\":\"2023-08-25T21:57:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrx7lqsni930c3ntkgu/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-26 02:57:22','2023-08-26 02:57:22'),(8310,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-26T07:51:56-05:00\",\"transaction\":{\"id\":\"trvng35og58x9zaap6wk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-26T07:51:02-05:00\",\"operation_date\":\"2023-08-26T07:51:02-05:00\",\"description\":\"Pago Mensual academia: matias betancour castro (1192469563)\",\"error_message\":null,\"order_id\":\"310CC7CA5A76A446F85C1A0D641BA96D_XLF8EPSGM1_1693054258.6538\",\"due_date\":\"2023-08-26T19:51:02-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jonathan dario\",\"last_name\":\"betancour vega\",\"email\":\"jonathanbet@hotmail.com\",\"phone_number\":\"3102545911\",\"address\":null,\"creation_date\":\"2023-08-26T07:51:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvng35og58x9zaap6wk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-26 12:51:57','2023-08-26 12:51:57'),(8311,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-26T07:52:59-05:00\",\"transaction\":{\"id\":\"trvng35og58x9zaap6wk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"122239239\",\"creation_date\":\"2023-08-26T07:51:02-05:00\",\"operation_date\":\"2023-08-26T07:52:48-05:00\",\"description\":\"Pago Mensual academia: matias betancour castro (1192469563)\",\"error_message\":null,\"order_id\":\"310CC7CA5A76A446F85C1A0D641BA96D_XLF8EPSGM1_1693054258.6538\",\"due_date\":\"2023-08-26T19:51:02-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jonathan dario\",\"last_name\":\"betancour vega\",\"email\":\"jonathanbet@hotmail.com\",\"phone_number\":\"3102545911\",\"address\":null,\"creation_date\":\"2023-08-26T07:51:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-26 12:53:00','2023-08-26 12:53:00'),(8312,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-26T07:54:49-05:00\",\"transaction\":{\"id\":\"trdd7lb8on61um5j1ccm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-26T07:54:08-05:00\",\"operation_date\":\"2023-08-26T07:54:08-05:00\",\"description\":\"Pago Mensual academia: matias betancour castro (1192469563)\",\"error_message\":null,\"order_id\":\"14678DB82874F1456031FCC05A3AFAF6_ISCHN679GX_1693054441.8242\",\"due_date\":\"2023-08-26T19:54:08-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jonathan dario\",\"last_name\":\"betancour vega\",\"email\":\"jonathanbet@hotmail.com\",\"phone_number\":\"3102545911\",\"address\":null,\"creation_date\":\"2023-08-26T07:54:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdd7lb8on61um5j1ccm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-26 12:54:50','2023-08-26 12:54:50'),(8313,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-26T07:55:57-05:00\",\"transaction\":{\"id\":\"trdd7lb8on61um5j1ccm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"122241934\",\"creation_date\":\"2023-08-26T07:54:08-05:00\",\"operation_date\":\"2023-08-26T07:55:26-05:00\",\"description\":\"Pago Mensual academia: matias betancour castro (1192469563)\",\"error_message\":null,\"order_id\":\"14678DB82874F1456031FCC05A3AFAF6_ISCHN679GX_1693054441.8242\",\"due_date\":\"2023-08-26T19:54:08-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jonathan dario\",\"last_name\":\"betancour vega\",\"email\":\"jonathanbet@hotmail.com\",\"phone_number\":\"3102545911\",\"address\":null,\"creation_date\":\"2023-08-26T07:54:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-26 12:55:58','2023-08-26 12:55:58'),(8314,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-26T08:32:36-05:00\",\"transaction\":{\"id\":\"trokbtqqslzyruf5gxzz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-26T08:32:01-05:00\",\"operation_date\":\"2023-08-26T08:32:01-05:00\",\"description\":\"Pago Mensual academia: DESMOND ARTEAGA PIEDRAHITA (1023561363)\",\"error_message\":null,\"order_id\":\"A22D33B4A00C165507A61F3BED4B5149_H4PETFJ5GZ_1693056717.2932\",\"due_date\":\"2023-08-26T20:32:01-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maicol\",\"last_name\":\"Arreaga\",\"email\":\"londonmay777@hotmail.com\",\"phone_number\":\"3173181519\",\"address\":null,\"creation_date\":\"2023-08-26T08:32:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trokbtqqslzyruf5gxzz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-26 13:32:37','2023-08-26 13:32:37'),(8315,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-26T08:33:26-05:00\",\"transaction\":{\"id\":\"trokbtqqslzyruf5gxzz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"122286138\",\"creation_date\":\"2023-08-26T08:32:01-05:00\",\"operation_date\":\"2023-08-26T08:33:11-05:00\",\"description\":\"Pago Mensual academia: DESMOND ARTEAGA PIEDRAHITA (1023561363)\",\"error_message\":null,\"order_id\":\"A22D33B4A00C165507A61F3BED4B5149_H4PETFJ5GZ_1693056717.2932\",\"due_date\":\"2023-08-26T20:32:01-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maicol\",\"last_name\":\"Arreaga\",\"email\":\"londonmay777@hotmail.com\",\"phone_number\":\"3173181519\",\"address\":null,\"creation_date\":\"2023-08-26T08:32:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-26 13:33:27','2023-08-26 13:33:27'),(8316,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-26T09:47:59-05:00\",\"transaction\":{\"id\":\"trmolcl04qbidbbkufvy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-26T09:47:59-05:00\",\"operation_date\":\"2023-08-26T09:47:59-05:00\",\"description\":\"Pago Mensual academia: Samuel David Toro Pérez (1013362067)\",\"error_message\":null,\"order_id\":\"30A237D18C50F563CBA4531F1DB44ACF_PG4R9I81AF_1693061275.2437\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Pérez Ortega\",\"email\":\"leidyssd09@gmail.com\",\"phone_number\":\"304 1315479\",\"address\":null,\"creation_date\":\"2023-08-26T09:47:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmolcl04qbidbbkufvy/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-26 14:47:59','2023-08-26 14:47:59'),(8317,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1131\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-26T09:50:12-05:00\",\"transaction\":{\"id\":\"trmolcl04qbidbbkufvy\",\"authorization\":\"00350D\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-26T09:47:59-05:00\",\"operation_date\":\"2023-08-26T09:50:11-05:00\",\"description\":\"Pago Mensual academia: Samuel David Toro Pérez (1013362067)\",\"error_message\":null,\"order_id\":\"30A237D18C50F563CBA4531F1DB44ACF_PG4R9I81AF_1693061275.2437\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"426684XXXXXX7979\",\"holder_name\":\"Visa\",\"expiration_year\":\"27\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CHASE BANK USA, N.A.\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Pérez Ortega\",\"email\":\"leidyssd09@gmail.com\",\"phone_number\":\"304 1315479\",\"address\":null,\"creation_date\":\"2023-08-26T09:47:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmolcl04qbidbbkufvy/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-26 14:50:13','2023-08-26 14:50:13'),(8318,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-26T13:27:45-05:00\",\"transaction\":{\"id\":\"trdotd5tmpiqsyxpcwlg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-26T13:26:19-05:00\",\"operation_date\":\"2023-08-26T13:26:19-05:00\",\"description\":\"Pago Mensual academia: juan jose gomez mejia (1036454478)\",\"error_message\":null,\"order_id\":\"07845CD9AEFA6CDE3F8926D25138A3A2_5A2JOE083V_1693074370.3416\",\"due_date\":\"2023-08-27T01:26:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana carolina\",\"last_name\":\"mejia guzman\",\"email\":\"dianacaro5075@gmail.com\",\"phone_number\":\"3015921180\",\"address\":null,\"creation_date\":\"2023-08-26T13:26:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdotd5tmpiqsyxpcwlg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-26 18:27:46','2023-08-26 18:27:46'),(8319,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-26T13:28:59-05:00\",\"transaction\":{\"id\":\"trdotd5tmpiqsyxpcwlg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"122784179\",\"creation_date\":\"2023-08-26T13:26:19-05:00\",\"operation_date\":\"2023-08-26T13:28:47-05:00\",\"description\":\"Pago Mensual academia: juan jose gomez mejia (1036454478)\",\"error_message\":null,\"order_id\":\"07845CD9AEFA6CDE3F8926D25138A3A2_5A2JOE083V_1693074370.3416\",\"due_date\":\"2023-08-27T01:26:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana carolina\",\"last_name\":\"mejia guzman\",\"email\":\"dianacaro5075@gmail.com\",\"phone_number\":\"3015921180\",\"address\":null,\"creation_date\":\"2023-08-26T13:26:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-26 18:29:00','2023-08-26 18:29:00'),(8320,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  881\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-26T13:36:05-05:00\",\"transaction\":{\"id\":\"trzamtqtoixsbp6uioot\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-26T13:36:05-05:00\",\"operation_date\":\"2023-08-26T13:36:05-05:00\",\"description\":\"Pago Mensual academia: Joaquin Palacios Calle (1033265847)\",\"error_message\":null,\"order_id\":\"765D5FB115A9F6A3E0B23B80A5B2E4C4_SBP17KUZ4J_1693074958.8568\",\"amount\":132720.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Calle\",\"email\":\"marcal1384@hotmail.com\",\"phone_number\":\"3012635012\",\"address\":null,\"creation_date\":\"2023-08-26T13:36:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzamtqtoixsbp6uioot/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-26 18:36:05','2023-08-26 18:36:05'),(8321,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1199\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-26T13:36:46-05:00\",\"transaction\":{\"id\":\"trzamtqtoixsbp6uioot\",\"authorization\":\"383828\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":3,\"conciliated\":true,\"creation_date\":\"2023-08-26T13:36:05-05:00\",\"operation_date\":\"2023-08-26T13:36:45-05:00\",\"description\":\"Pago Mensual academia: Joaquin Palacios Calle (1033265847)\",\"error_message\":null,\"order_id\":\"765D5FB115A9F6A3E0B23B80A5B2E4C4_SBP17KUZ4J_1693074958.8568\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555825XXXXXX8146\",\"holder_name\":\"Diana Calle\",\"expiration_year\":\"30\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NUBANK\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":3,\"payments_type\":\"without_interest\"},\"amount\":132720.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Calle\",\"email\":\"marcal1384@hotmail.com\",\"phone_number\":\"3012635012\",\"address\":null,\"creation_date\":\"2023-08-26T13:36:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzamtqtoixsbp6uioot/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-26 18:36:47','2023-08-26 18:36:47'),(8322,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  881\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-26T13:37:07-05:00\",\"transaction\":{\"id\":\"traunnf6t5tejcvsi5yl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-26T13:37:07-05:00\",\"operation_date\":\"2023-08-26T13:37:07-05:00\",\"description\":\"Pago Mensual academia: Joaquin Palacios Calle (1033265847)\",\"error_message\":null,\"order_id\":\"9627C45DF543C816A3DDF2D8EA686A99_N5FHEZVDW2_1693075020.4192\",\"amount\":132720.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Calle\",\"email\":\"marcal1384@hotmail.com\",\"phone_number\":\"3012635012\",\"address\":null,\"creation_date\":\"2023-08-26T13:37:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traunnf6t5tejcvsi5yl/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-26 18:37:07','2023-08-26 18:37:07'),(8323,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1199\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-26T13:37:31-05:00\",\"transaction\":{\"id\":\"traunnf6t5tejcvsi5yl\",\"authorization\":\"049296\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":3,\"conciliated\":true,\"creation_date\":\"2023-08-26T13:37:07-05:00\",\"operation_date\":\"2023-08-26T13:37:30-05:00\",\"description\":\"Pago Mensual academia: Joaquin Palacios Calle (1033265847)\",\"error_message\":null,\"order_id\":\"9627C45DF543C816A3DDF2D8EA686A99_N5FHEZVDW2_1693075020.4192\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555825XXXXXX8146\",\"holder_name\":\"Diana Calle\",\"expiration_year\":\"30\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NUBANK\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":3,\"payments_type\":\"without_interest\"},\"amount\":132720.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Calle\",\"email\":\"marcal1384@hotmail.com\",\"phone_number\":\"3012635012\",\"address\":null,\"creation_date\":\"2023-08-26T13:37:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traunnf6t5tejcvsi5yl/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-26 18:37:32','2023-08-26 18:37:32'),(8324,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-27T10:36:59-05:00\",\"transaction\":{\"id\":\"trceerhvk8huotfbqp7t\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-27T10:36:59-05:00\",\"operation_date\":\"2023-08-27T10:36:59-05:00\",\"description\":\"Pago Mensual academia: Emiliano Yepes loaiza (1035981867)\",\"error_message\":null,\"order_id\":\"E761813F83DFC86FA1C6E0DA5510C3B8_MSLBD6JNUK_1693150613.8301\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres felipe\",\"last_name\":\"yepes\",\"email\":\"yepesa270@gmail.com\",\"phone_number\":\"3044901567\",\"address\":null,\"creation_date\":\"2023-08-27T10:36:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trceerhvk8huotfbqp7t/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-27 15:37:00','2023-08-27 15:37:00'),(8325,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1143\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-27T10:38:25-05:00\",\"transaction\":{\"id\":\"trceerhvk8huotfbqp7t\",\"authorization\":\"103825\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-27T10:36:59-05:00\",\"operation_date\":\"2023-08-27T10:38:24-05:00\",\"description\":\"Pago Mensual academia: Emiliano Yepes loaiza (1035981867)\",\"error_message\":null,\"order_id\":\"E761813F83DFC86FA1C6E0DA5510C3B8_MSLBD6JNUK_1693150613.8301\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX0703\",\"holder_name\":\"Andrés felipe yepes \",\"expiration_year\":\"25\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Andres felipe\",\"last_name\":\"yepes\",\"email\":\"yepesa270@gmail.com\",\"phone_number\":\"3044901567\",\"address\":null,\"creation_date\":\"2023-08-27T10:37:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trceerhvk8huotfbqp7t/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-27 15:38:26','2023-08-27 15:38:26'),(8326,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-27T16:18:42-05:00\",\"transaction\":{\"id\":\"trg1aalm4nznaz17zrag\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-27T16:18:02-05:00\",\"operation_date\":\"2023-08-27T16:18:02-05:00\",\"description\":\"Pago Mensual academia: Tomás Gallo Montoya (1023549058)\",\"error_message\":null,\"order_id\":\"2B346A0AA375A07F5A90A344A61416C4_LDAG8Z9SQR_1693171079.525\",\"due_date\":\"2023-08-28T04:18:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tomás\",\"last_name\":\"Gallo Montoya\",\"email\":\"Yuranymontoya79@gmail.com\",\"phone_number\":\"3116265680\",\"address\":null,\"creation_date\":\"2023-08-27T16:18:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg1aalm4nznaz17zrag/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-27 21:18:43','2023-08-27 21:18:43'),(8327,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-27T15:21:25-06:00\",\"transaction\":{\"id\":\"trg1aalm4nznaz17zrag\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"124001394\",\"creation_date\":\"2023-08-27T16:18:02-06:00\",\"operation_date\":\"2023-08-27T16:19:38-06:00\",\"description\":\"Pago Mensual academia: Tomás Gallo Montoya (1023549058)\",\"error_message\":null,\"order_id\":\"2B346A0AA375A07F5A90A344A61416C4_LDAG8Z9SQR_1693171079.525\",\"due_date\":\"2023-08-28T04:18:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tomás\",\"last_name\":\"Gallo Montoya\",\"email\":\"Yuranymontoya79@gmail.com\",\"phone_number\":\"3116265680\",\"address\":null,\"creation_date\":\"2023-08-27T16:18:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-27 21:21:26','2023-08-27 21:21:26'),(8328,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nNewrelic:        eyJkIjp7ImFjIjoiNTcwOTA1IiwicHIiOjEuNDgyMzkyMSwidHgiOiIyOGI4MWNkMDBmNmIwMGVmIiwidGkiOjE2OTMxNzEzMjAzNzIsInR5IjoiQXBwIiwiaWQiOiIwZGU3NmE2YjI1MjdkYzk5IiwidHIiOiI5M2NiMDQ4MDVlMzk3YWJhZmZmNDcwNWQ0YTFlNzc4NiIsInNhIjp0cnVlLCJhcCI6IjE3NTA2ODU2NTUifSwidiI6WzAsMV19\r\nTraceparent:     00-93cb04805e397abafff4705d4a1e7786-0de76a6b2527dc99-01\r\nTracestate:      570905@nr=0-0-570905-1750685655-fc8b0b913de330d9-28b81cd00f6b00ef-1-1.482392-1693171320337\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-27T15:21:25-06:00\",\"transaction\":{\"id\":\"trg1aalm4nznaz17zrag\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"124001394\",\"creation_date\":\"2023-08-27T16:18:02-06:00\",\"operation_date\":\"2023-08-27T16:19:38-06:00\",\"description\":\"Pago Mensual academia: Tomás Gallo Montoya (1023549058)\",\"error_message\":null,\"order_id\":\"2B346A0AA375A07F5A90A344A61416C4_LDAG8Z9SQR_1693171079.525\",\"due_date\":\"2023-08-28T04:18:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tomás\",\"last_name\":\"Gallo Montoya\",\"email\":\"Yuranymontoya79@gmail.com\",\"phone_number\":\"3116265680\",\"address\":null,\"creation_date\":\"2023-08-27T16:18:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-27 21:22:00','2023-08-27 21:22:00'),(8329,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-27T19:20:15-05:00\",\"transaction\":{\"id\":\"triexnrhmla63u5d7zuw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-27T19:19:12-05:00\",\"operation_date\":\"2023-08-27T19:19:12-05:00\",\"description\":\"Pago Mensual academia: SAMUEL VALENCIA SCALANTE (1033190890)\",\"error_message\":null,\"order_id\":\"DDF9029977A61241841EDEAE15E9B53F_Z5OATI2LK3_1693181945.0488\",\"due_date\":\"2023-08-28T07:19:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Johan Darío\",\"last_name\":\"Valencia López\",\"email\":\"johanvl81@hotmail.com\",\"phone_number\":\"3218419108\",\"address\":null,\"creation_date\":\"2023-08-27T19:19:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triexnrhmla63u5d7zuw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 00:20:16','2023-08-28 00:20:16'),(8330,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-27T19:21:19-05:00\",\"transaction\":{\"id\":\"triexnrhmla63u5d7zuw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"124182903\",\"creation_date\":\"2023-08-27T19:19:12-05:00\",\"operation_date\":\"2023-08-27T19:21:13-05:00\",\"description\":\"Pago Mensual academia: SAMUEL VALENCIA SCALANTE (1033190890)\",\"error_message\":null,\"order_id\":\"DDF9029977A61241841EDEAE15E9B53F_Z5OATI2LK3_1693181945.0488\",\"due_date\":\"2023-08-28T07:19:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Johan Darío\",\"last_name\":\"Valencia López\",\"email\":\"johanvl81@hotmail.com\",\"phone_number\":\"3218419108\",\"address\":null,\"creation_date\":\"2023-08-27T19:19:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 00:21:20','2023-08-28 00:21:20'),(8331,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-27T20:30:31-05:00\",\"transaction\":{\"id\":\"trgc8i9leogdwgbgy1qn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-27T20:29:30-05:00\",\"operation_date\":\"2023-08-27T20:29:30-05:00\",\"description\":\"Pago Mensual academia: MATIAS ALZATE CALLE (1036457783)\",\"error_message\":null,\"order_id\":\"B67FB3360AE5597D85A005153451DD4E_Z2QMIDOWV6_1693186167.2549\",\"due_date\":\"2023-08-28T08:29:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JEISSON RAUL\",\"last_name\":\"ALZATE AGUDELO\",\"email\":\"jeissontito@hotmail.com\",\"phone_number\":\"3134385212\",\"address\":null,\"creation_date\":\"2023-08-27T20:29:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgc8i9leogdwgbgy1qn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 01:30:32','2023-08-28 01:30:32'),(8332,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-27T20:32:39-05:00\",\"transaction\":{\"id\":\"trgc8i9leogdwgbgy1qn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"124259326\",\"creation_date\":\"2023-08-27T20:29:30-05:00\",\"operation_date\":\"2023-08-27T20:31:47-05:00\",\"description\":\"Pago Mensual academia: MATIAS ALZATE CALLE (1036457783)\",\"error_message\":null,\"order_id\":\"B67FB3360AE5597D85A005153451DD4E_Z2QMIDOWV6_1693186167.2549\",\"due_date\":\"2023-08-28T08:29:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JEISSON RAUL\",\"last_name\":\"ALZATE AGUDELO\",\"email\":\"jeissontito@hotmail.com\",\"phone_number\":\"3134385212\",\"address\":null,\"creation_date\":\"2023-08-27T20:29:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 01:32:39','2023-08-28 01:32:39'),(8333,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-27T20:50:48-05:00\",\"transaction\":{\"id\":\"tru6deq0jmtyplccnbz6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-27T20:49:05-05:00\",\"operation_date\":\"2023-08-27T20:49:05-05:00\",\"description\":\"Pago Mensual academia: matias jerez mantilla (1040576751)\",\"error_message\":null,\"order_id\":\"6915849303A3FE93657587CB9C469F00_Q9NBM6GAOL_1693187338.8791\",\"due_date\":\"2023-08-28T08:49:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yolima\",\"last_name\":\"mantilla cañas\",\"email\":\"yolimamantilla1991@gmail.com\",\"phone_number\":\"3115268827\",\"address\":null,\"creation_date\":\"2023-08-27T20:49:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru6deq0jmtyplccnbz6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 01:50:48','2023-08-28 01:50:48'),(8334,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-27T19:54:10-06:00\",\"transaction\":{\"id\":\"tru6deq0jmtyplccnbz6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"124280776\",\"creation_date\":\"2023-08-27T20:49:05-06:00\",\"operation_date\":\"2023-08-27T00:00:00-06:00\",\"description\":\"Pago Mensual academia: matias jerez mantilla (1040576751)\",\"error_message\":null,\"order_id\":\"6915849303A3FE93657587CB9C469F00_Q9NBM6GAOL_1693187338.8791\",\"due_date\":\"2023-08-28T08:49:05-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yolima\",\"last_name\":\"mantilla cañas\",\"email\":\"yolimamantilla1991@gmail.com\",\"phone_number\":\"3115268827\",\"address\":null,\"creation_date\":\"2023-08-27T20:49:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 01:54:11','2023-08-28 01:54:11'),(8335,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nNewrelic:        eyJkIjp7ImFjIjoiNTcwOTA1IiwicHIiOjEuMDk2NTA2LCJ0eCI6ImYzYjdmZTNhMDk3NjEyNzkiLCJ0aSI6MTY5MzE4NzcwMDY1NSwidHkiOiJBcHAiLCJpZCI6IjM0YThhZmUxYTllOGZjZWEiLCJ0ciI6IjIwMjQ0MzEwNWE2MWQyNjkyZGQyOThmMmYzZGQ3ZjIyIiwic2EiOnRydWUsImFwIjoiMTc1MDY4NTY1NSJ9LCJ2IjpbMCwxXX0=\r\nTraceparent:     00-202443105a61d2692dd298f2f3dd7f22-34a8afe1a9e8fcea-01\r\nTracestate:      570905@nr=0-0-570905-1750685655-28dee51b8f301aa7-f3b7fe3a09761279-1-1.096506-1693187700616\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-27T19:54:10-06:00\",\"transaction\":{\"id\":\"tru6deq0jmtyplccnbz6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"124280776\",\"creation_date\":\"2023-08-27T20:49:05-06:00\",\"operation_date\":\"2023-08-27T00:00:00-06:00\",\"description\":\"Pago Mensual academia: matias jerez mantilla (1040576751)\",\"error_message\":null,\"order_id\":\"6915849303A3FE93657587CB9C469F00_Q9NBM6GAOL_1693187338.8791\",\"due_date\":\"2023-08-28T08:49:05-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yolima\",\"last_name\":\"mantilla cañas\",\"email\":\"yolimamantilla1991@gmail.com\",\"phone_number\":\"3115268827\",\"address\":null,\"creation_date\":\"2023-08-27T20:49:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 01:55:00','2023-08-28 01:55:00'),(8336,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-27T21:33:28-05:00\",\"transaction\":{\"id\":\"trtrparaepou4t9ibuki\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-27T21:33:28-05:00\",\"operation_date\":\"2023-08-27T21:33:28-05:00\",\"description\":\"Pago Mensual academia: Ismael Ramirez Restrepo (1035003577)\",\"error_message\":null,\"order_id\":\"1EA97DE85EB634D580161C603422437F_7BDCKUEX9A_1693190004.9131\",\"amount\":165900.00,\"customer\":{\"name\":\"Brayan\",\"last_name\":\"Ramirez García\",\"email\":\"Nrestre26@gmail.com\",\"phone_number\":\"3206350374\",\"address\":null,\"creation_date\":\"2023-08-27T21:33:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtrparaepou4t9ibuki/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-28 02:33:29','2023-08-28 02:33:29'),(8337,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1145\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-27T21:34:31-05:00\",\"transaction\":{\"id\":\"trtrparaepou4t9ibuki\",\"authorization\":\"R07484\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-27T21:33:28-05:00\",\"operation_date\":\"2023-08-27T21:34:30-05:00\",\"description\":\"Pago Mensual academia: Ismael Ramirez Restrepo (1035003577)\",\"error_message\":null,\"order_id\":\"1EA97DE85EB634D580161C603422437F_7BDCKUEX9A_1693190004.9131\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX5764\",\"holder_name\":\"BRAYAN RAMIREZ G\",\"expiration_year\":\"25\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Brayan\",\"last_name\":\"Ramirez García\",\"email\":\"Nrestre26@gmail.com\",\"phone_number\":\"3206350374\",\"address\":null,\"creation_date\":\"2023-08-27T21:33:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtrparaepou4t9ibuki/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-28 02:34:32','2023-08-28 02:34:32'),(8338,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-28T02:06:28-06:00\",\"transaction\":{\"id\":\"trhvx8axzatcz9u00mub\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-24T17:58:50-06:00\",\"operation_date\":\"2023-08-24T17:58:50-06:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"20125FD9B2D43E340A35FB0278DA235D_OVMIRWNTC9_1692917928.3275\",\"due_date\":\"2023-08-25T05:58:50-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-08-24T17:58:50-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhvx8axzatcz9u00mub/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 08:06:28','2023-08-28 08:06:28'),(8339,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-28T02:06:28-06:00\",\"transaction\":{\"id\":\"trjl7lesngkr9pmx1uea\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-24T17:44:14-06:00\",\"operation_date\":\"2023-08-24T17:44:14-06:00\",\"description\":\"Pago Mensual academia: jose gabriel atehortua cadavid (1035006140)\",\"error_message\":null,\"order_id\":\"398475C83B47075E8897A083E97EB9F0_AYUXNJBZIG_1692917050.6232\",\"due_date\":\"2023-08-25T05:44:14-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose gabriel\",\"last_name\":\"atehortua  cadavid\",\"email\":\"paolac87@outlook.com\",\"phone_number\":\"3208903138\",\"address\":null,\"creation_date\":\"2023-08-24T17:44:14-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjl7lesngkr9pmx1uea/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 08:06:28','2023-08-28 08:06:28'),(8340,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-28T02:06:28-06:00\",\"transaction\":{\"id\":\"trdjaymff26lk3tayeci\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-24T16:14:40-06:00\",\"operation_date\":\"2023-08-24T16:14:40-06:00\",\"description\":\"Pago Mensual academia: jose gabriel atehortua cadavid (1035006140)\",\"error_message\":null,\"order_id\":\"3083202A936B7D0EF8B680D7AE73FA1A_ASXWPTLRZ1_1692911676.5039\",\"due_date\":\"2023-08-25T04:14:40-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose gabriel\",\"last_name\":\"atehortua  cadavid\",\"email\":\"paolac87@outlook.com\",\"phone_number\":\"3208903138\",\"address\":null,\"creation_date\":\"2023-08-24T16:14:40-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdjaymff26lk3tayeci/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 08:06:28','2023-08-28 08:06:28'),(8341,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-28T02:06:28-06:00\",\"transaction\":{\"id\":\"trb0hef2hbtroeprwyor\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-24T22:20:45-06:00\",\"operation_date\":\"2023-08-24T22:20:45-06:00\",\"description\":\"Pago Mensual academia: Tomas Gonzalez Palacio (1034994733)\",\"error_message\":null,\"order_id\":\"A098B2EB3138551138D127925D092D67_FKWBO0SML4_1692933638.3329\",\"due_date\":\"2023-08-25T10:20:45-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Adriana\",\"last_name\":\"Palacio\",\"email\":\"nanapalacio@gmail.com\",\"phone_number\":\"3152489243\",\"address\":null,\"creation_date\":\"2023-08-24T22:20:45-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb0hef2hbtroeprwyor/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 08:06:28','2023-08-28 08:06:28'),(8342,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-28T02:06:28-06:00\",\"transaction\":{\"id\":\"trfp5nd0q31pxmh5ekmu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-24T17:55:14-06:00\",\"operation_date\":\"2023-08-24T17:55:14-06:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"_1692917710.923\",\"due_date\":\"2023-08-25T05:55:14-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-08-24T17:55:14-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfp5nd0q31pxmh5ekmu/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 08:06:28','2023-08-28 08:06:28'),(8343,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-28T08:05:24-05:00\",\"transaction\":{\"id\":\"try0nzhvdnmnbutsif3y\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-28T08:04:43-05:00\",\"operation_date\":\"2023-08-28T08:04:43-05:00\",\"description\":\"Pago Mensual academia: juan martin arroyave marin (21562956)\",\"error_message\":null,\"order_id\":\"F095CEDD23B99F1696FC8CAECBCF257E_M5YE8GPKAB_1693227878.4451\",\"due_date\":\"2023-08-28T20:04:43-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"lina maria\",\"last_name\":\"marin gallardo\",\"email\":\"Marin.lina@gmail.com\",\"phone_number\":\"3004887420\",\"address\":null,\"creation_date\":\"2023-08-28T08:04:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/try0nzhvdnmnbutsif3y/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 13:05:25','2023-08-28 13:05:25'),(8344,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-28T08:06:37-05:00\",\"transaction\":{\"id\":\"try0nzhvdnmnbutsif3y\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"124542964\",\"creation_date\":\"2023-08-28T08:04:43-05:00\",\"operation_date\":\"2023-08-28T08:06:31-05:00\",\"description\":\"Pago Mensual academia: juan martin arroyave marin (21562956)\",\"error_message\":null,\"order_id\":\"F095CEDD23B99F1696FC8CAECBCF257E_M5YE8GPKAB_1693227878.4451\",\"due_date\":\"2023-08-28T20:04:43-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"lina maria\",\"last_name\":\"marin gallardo\",\"email\":\"Marin.lina@gmail.com\",\"phone_number\":\"3004887420\",\"address\":null,\"creation_date\":\"2023-08-28T08:04:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 13:06:37','2023-08-28 13:06:37'),(8345,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-28T08:07:28-05:00\",\"transaction\":{\"id\":\"tradmxuo6wg79mzmm64b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-28T08:06:58-05:00\",\"operation_date\":\"2023-08-28T08:06:58-05:00\",\"description\":\"Pago Mensual academia: juan martin arroyave marin (21562956)\",\"error_message\":null,\"order_id\":\"1D2A48C55F6F10010887CC7D849469A1_GSOBAEZU95_1693228012.2685\",\"due_date\":\"2023-08-28T20:06:58-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"lina maria\",\"last_name\":\"marin gallardo\",\"email\":\"Marin.lina@gmail.com\",\"phone_number\":\"3004887420\",\"address\":null,\"creation_date\":\"2023-08-28T08:06:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tradmxuo6wg79mzmm64b/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 13:07:28','2023-08-28 13:07:28'),(8346,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-28T08:08:27-05:00\",\"transaction\":{\"id\":\"tradmxuo6wg79mzmm64b\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"124545859\",\"creation_date\":\"2023-08-28T08:06:58-05:00\",\"operation_date\":\"2023-08-28T08:08:22-05:00\",\"description\":\"Pago Mensual academia: juan martin arroyave marin (21562956)\",\"error_message\":null,\"order_id\":\"1D2A48C55F6F10010887CC7D849469A1_GSOBAEZU95_1693228012.2685\",\"due_date\":\"2023-08-28T20:06:58-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"lina maria\",\"last_name\":\"marin gallardo\",\"email\":\"Marin.lina@gmail.com\",\"phone_number\":\"3004887420\",\"address\":null,\"creation_date\":\"2023-08-28T08:06:58-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 13:08:28','2023-08-28 13:08:28'),(8347,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-28T12:24:30-05:00\",\"transaction\":{\"id\":\"trzxqllvehkqfq1svljg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-28T12:24:30-05:00\",\"operation_date\":\"2023-08-28T12:24:30-05:00\",\"description\":\"Pago Mensual academia: Matias Serna Giraldo (1035013129)\",\"error_message\":null,\"order_id\":\"EBF12CB74E96E67E63783D93C534EF27_ATICH7M5VB_1693243468.8802\",\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Giraldo Franco\",\"email\":\"cristinagirafra@gmail.com\",\"phone_number\":\"3137439487\",\"address\":null,\"creation_date\":\"2023-08-28T12:24:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzxqllvehkqfq1svljg/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-28 17:24:31','2023-08-28 17:24:31'),(8348,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1136\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-28T12:26:04-05:00\",\"transaction\":{\"id\":\"trzxqllvehkqfq1svljg\",\"authorization\":\"373593\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-28T12:24:30-05:00\",\"operation_date\":\"2023-08-28T12:26:02-05:00\",\"description\":\"Pago Mensual academia: Matias Serna Giraldo (1035013129)\",\"error_message\":null,\"order_id\":\"EBF12CB74E96E67E63783D93C534EF27_ATICH7M5VB_1693243468.8802\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491626XXXXXX0377\",\"holder_name\":\"Cristina giraldo \",\"expiration_year\":\"27\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"RAPPIPAY\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Giraldo Franco\",\"email\":\"cristinagirafra@gmail.com\",\"phone_number\":\"3137439487\",\"address\":null,\"creation_date\":\"2023-08-28T12:24:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzxqllvehkqfq1svljg/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-28 17:26:05','2023-08-28 17:26:05'),(8349,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-28T15:00:34-05:00\",\"transaction\":{\"id\":\"tronawdw62elklbmmgud\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-28T14:59:55-05:00\",\"operation_date\":\"2023-08-28T14:59:55-05:00\",\"description\":\"Pago Mensual academia: Alejandro Echavarria Arias (1035000776)\",\"error_message\":null,\"order_id\":\"77EC6F21C85B637CC42BB997841E11A6_07TQVUGWAH_1693252792.3601\",\"due_date\":\"2023-08-29T02:59:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Arias Builes\",\"email\":\"lina_arias_bui@yahoo.com.ar\",\"phone_number\":\"3115233080\",\"address\":null,\"creation_date\":\"2023-08-28T14:59:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tronawdw62elklbmmgud/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 20:00:35','2023-08-28 20:00:35'),(8350,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-28T15:01:31-05:00\",\"transaction\":{\"id\":\"tronawdw62elklbmmgud\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"125466912\",\"creation_date\":\"2023-08-28T14:59:55-05:00\",\"operation_date\":\"2023-08-28T15:01:26-05:00\",\"description\":\"Pago Mensual academia: Alejandro Echavarria Arias (1035000776)\",\"error_message\":null,\"order_id\":\"77EC6F21C85B637CC42BB997841E11A6_07TQVUGWAH_1693252792.3601\",\"due_date\":\"2023-08-29T02:59:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Arias Builes\",\"email\":\"lina_arias_bui@yahoo.com.ar\",\"phone_number\":\"3115233080\",\"address\":null,\"creation_date\":\"2023-08-28T14:59:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 20:01:32','2023-08-28 20:01:32'),(8351,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  883\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-28T16:09:19-05:00\",\"transaction\":{\"id\":\"tr48hvlwo5oabhu7bule\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-28T16:09:19-05:00\",\"operation_date\":\"2023-08-28T16:09:19-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EC8CE6ABB3E952A85B8551BA726A1227_E-64ED0CF7-42_1693256956.3328\",\"amount\":146900.00,\"customer\":{\"name\":\"jhon alexander\",\"last_name\":\"velasquez ortiz\",\"email\":\"danielalexandervelasquez@gmail.com\",\"phone_number\":\"3053939138\",\"address\":null,\"creation_date\":\"2023-08-28T16:09:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr48hvlwo5oabhu7bule/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-28 21:09:20','2023-08-28 21:09:20'),(8352,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1226\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-28T16:10:46-05:00\",\"transaction\":{\"id\":\"tr48hvlwo5oabhu7bule\",\"authorization\":\"161045\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":12,\"conciliated\":true,\"creation_date\":\"2023-08-28T16:09:19-05:00\",\"operation_date\":\"2023-08-28T16:10:45-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"EC8CE6ABB3E952A85B8551BA726A1227_E-64ED0CF7-42_1693256956.3328\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"455986XXXXXX2623\",\"holder_name\":\"Jhon Alexander velasquez ortiz\",\"expiration_year\":\"28\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":12,\"payments_type\":\"without_interest\"},\"amount\":146900.00,\"customer\":{\"name\":\"jhon alexander\",\"last_name\":\"velasquez ortiz\",\"email\":\"danielalexandervelasquez@gmail.com\",\"phone_number\":\"3053939138\",\"address\":null,\"creation_date\":\"2023-08-28T16:09:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr48hvlwo5oabhu7bule/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-28 21:10:47','2023-08-28 21:10:47'),(8353,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  882\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-28T16:53:30-05:00\",\"transaction\":{\"id\":\"trzb1slfbtvwrnxntaol\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-28T16:53:30-05:00\",\"operation_date\":\"2023-08-28T16:53:30-05:00\",\"description\":\"Pago Mensual academia: Raldwani Sanchez (1016719114)\",\"error_message\":null,\"order_id\":\"54EBDFBBFE6C31C39AABA9A1EE83860A_IERV8A7XNP_1693259605.1888\",\"amount\":165900.00,\"customer\":{\"name\":\"Raldwani\",\"last_name\":\"Sanchez\",\"email\":\"sarayospina769@gmail.com\",\"phone_number\":\"3013724978\",\"address\":null,\"creation_date\":\"2023-08-28T16:53:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzb1slfbtvwrnxntaol/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-28 21:53:31','2023-08-28 21:53:31'),(8354,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1126\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-28T16:56:53-05:00\",\"transaction\":{\"id\":\"trzb1slfbtvwrnxntaol\",\"authorization\":\"087342\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-28T16:53:30-05:00\",\"operation_date\":\"2023-08-28T16:56:51-05:00\",\"description\":\"Pago Mensual academia: Raldwani Sanchez (1016719114)\",\"error_message\":null,\"order_id\":\"54EBDFBBFE6C31C39AABA9A1EE83860A_IERV8A7XNP_1693259605.1888\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"409355XXXXXX1151\",\"holder_name\":\"Sara Sardi\",\"expiration_year\":\"28\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOLOMBIA -NEQUI\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Raldwani\",\"last_name\":\"Sanchez\",\"email\":\"sarayospina769@gmail.com\",\"phone_number\":\"3013724978\",\"address\":null,\"creation_date\":\"2023-08-28T16:53:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzb1slfbtvwrnxntaol/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-28 21:56:54','2023-08-28 21:56:54'),(8355,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-28T17:49:01-05:00\",\"transaction\":{\"id\":\"trkiqvznugwz5oickpfc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-28T17:48:01-05:00\",\"operation_date\":\"2023-08-28T17:48:01-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Escobar Gil (1027664277)\",\"error_message\":null,\"order_id\":\"F3C89B7BE367AA4246F90AA007EFE525_TM5904FK6H_1693262850.7383\",\"due_date\":\"2023-08-29T05:48:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego Luis\",\"last_name\":\"Escobar Mejia\",\"email\":\"dilui333@gmail.com\",\"phone_number\":\"3113446018\",\"address\":null,\"creation_date\":\"2023-08-28T17:48:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkiqvznugwz5oickpfc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 22:49:02','2023-08-28 22:49:02'),(8356,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-28T17:50:23-05:00\",\"transaction\":{\"id\":\"trkiqvznugwz5oickpfc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"125836853\",\"creation_date\":\"2023-08-28T17:48:01-05:00\",\"operation_date\":\"2023-08-28T17:49:59-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Escobar Gil (1027664277)\",\"error_message\":null,\"order_id\":\"F3C89B7BE367AA4246F90AA007EFE525_TM5904FK6H_1693262850.7383\",\"due_date\":\"2023-08-29T05:48:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego Luis\",\"last_name\":\"Escobar Mejia\",\"email\":\"dilui333@gmail.com\",\"phone_number\":\"3113446018\",\"address\":null,\"creation_date\":\"2023-08-28T17:48:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-28 22:50:24','2023-08-28 22:50:24'),(8357,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-28T19:22:49-05:00\",\"transaction\":{\"id\":\"trohl7uihazaneges0ow\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-28T19:21:53-05:00\",\"operation_date\":\"2023-08-28T19:21:53-05:00\",\"description\":\"Pago Mensual academia: martin bermudez rivera (1035438074)\",\"error_message\":null,\"order_id\":\"F35FD567065AF297AE65B621E0A21AE9_2MWTPEK5HQ_1693268510.0662\",\"due_date\":\"2023-08-29T07:21:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"john fredy\",\"last_name\":\"bermudez alvarez\",\"email\":\"jhonfredyb@gmail.com\",\"phone_number\":\"3147633184\",\"address\":null,\"creation_date\":\"2023-08-28T19:21:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trohl7uihazaneges0ow/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 00:22:49','2023-08-29 00:22:49'),(8358,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-28T19:23:30-05:00\",\"transaction\":{\"id\":\"trohl7uihazaneges0ow\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"126003175\",\"creation_date\":\"2023-08-28T19:21:53-05:00\",\"operation_date\":\"2023-08-28T19:23:26-05:00\",\"description\":\"Pago Mensual academia: martin bermudez rivera (1035438074)\",\"error_message\":null,\"order_id\":\"F35FD567065AF297AE65B621E0A21AE9_2MWTPEK5HQ_1693268510.0662\",\"due_date\":\"2023-08-29T07:21:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"john fredy\",\"last_name\":\"bermudez alvarez\",\"email\":\"jhonfredyb@gmail.com\",\"phone_number\":\"3147633184\",\"address\":null,\"creation_date\":\"2023-08-28T19:21:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 00:23:31','2023-08-29 00:23:31'),(8359,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-28T20:33:38-05:00\",\"transaction\":{\"id\":\"trascpbxdknuhye7bb7f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-28T20:32:53-05:00\",\"operation_date\":\"2023-08-28T20:32:53-05:00\",\"description\":\"Pago Mensual academia: Martin Sierra Carmona (1056132253)\",\"error_message\":null,\"order_id\":\"845F3CB43A07259B2E4724DFA5C5C0D1_AK7CJWHBZN_1693272768.9796\",\"due_date\":\"2023-08-29T08:32:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Sierra Marín\",\"email\":\"sierramjc@gmail.com\",\"phone_number\":\"3007544651\",\"address\":null,\"creation_date\":\"2023-08-28T20:32:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trascpbxdknuhye7bb7f/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 01:33:39','2023-08-29 01:33:39'),(8360,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-28T19:36:31-06:00\",\"transaction\":{\"id\":\"trascpbxdknuhye7bb7f\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"126122903\",\"creation_date\":\"2023-08-28T20:32:53-06:00\",\"operation_date\":\"2023-08-28T20:34:25-06:00\",\"description\":\"Pago Mensual academia: Martin Sierra Carmona (1056132253)\",\"error_message\":null,\"order_id\":\"845F3CB43A07259B2E4724DFA5C5C0D1_AK7CJWHBZN_1693272768.9796\",\"due_date\":\"2023-08-29T08:32:53-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Sierra Marín\",\"email\":\"sierramjc@gmail.com\",\"phone_number\":\"3007544651\",\"address\":null,\"creation_date\":\"2023-08-28T20:32:53-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 01:36:32','2023-08-29 01:36:32'),(8361,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-28T21:05:01-05:00\",\"transaction\":{\"id\":\"troy4tfvkjs58i9aq0cl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-28T21:05:01-05:00\",\"operation_date\":\"2023-08-28T21:05:01-05:00\",\"description\":\"Pago Inscripción academia: ismael tamayo cano (1032100851)\",\"error_message\":null,\"order_id\":\"11338326597D14A1F7C745853F4D50A8_NIFVRD245T_1693274692.8555\",\"amount\":431000.00,\"customer\":{\"name\":\"jackeline\",\"last_name\":\"cano Bustamante\",\"email\":\"jackelinecano177@gmail.com\",\"phone_number\":\"3213042055\",\"address\":null,\"creation_date\":\"2023-08-28T21:05:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troy4tfvkjs58i9aq0cl/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-29 02:05:02','2023-08-29 02:05:02'),(8362,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-28T21:30:22-05:00\",\"transaction\":{\"id\":\"troy4tfvkjs58i9aq0cl\",\"authorization\":\"213022\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-28T21:05:01-05:00\",\"operation_date\":\"2023-08-28T21:30:21-05:00\",\"description\":\"Pago Inscripción academia: ismael tamayo cano (1032100851)\",\"error_message\":null,\"order_id\":\"11338326597D14A1F7C745853F4D50A8_NIFVRD245T_1693274692.8555\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX2397\",\"holder_name\":\"Cesar j tamayo v\",\"expiration_year\":\"27\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":431000.00,\"customer\":{\"name\":\"jackeline\",\"last_name\":\"cano Bustamante\",\"email\":\"jackelinecano177@gmail.com\",\"phone_number\":\"3213042055\",\"address\":null,\"creation_date\":\"2023-08-28T21:05:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troy4tfvkjs58i9aq0cl/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-29 02:30:23','2023-08-29 02:30:23'),(8363,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-28T22:40:18-05:00\",\"transaction\":{\"id\":\"tru8gwuloruysli21kpc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-28T22:39:13-05:00\",\"operation_date\":\"2023-08-28T22:39:13-05:00\",\"description\":\"Pago Mensual academia: samuel acevedo rojas (1035014174)\",\"error_message\":null,\"order_id\":\"71D7232B9FED020CA23729017873089E_45JP0QAYD3_1693280349.8436\",\"due_date\":\"2023-08-29T10:39:13-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"melissa\",\"last_name\":\"rojas rios\",\"email\":\"melii0526@hotmail.com\",\"phone_number\":\"3113652570\",\"address\":null,\"creation_date\":\"2023-08-28T22:39:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru8gwuloruysli21kpc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 03:40:19','2023-08-29 03:40:19'),(8364,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-28T22:42:25-05:00\",\"transaction\":{\"id\":\"tru8gwuloruysli21kpc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"126296844\",\"creation_date\":\"2023-08-28T22:39:13-05:00\",\"operation_date\":\"2023-08-28T22:42:18-05:00\",\"description\":\"Pago Mensual academia: samuel acevedo rojas (1035014174)\",\"error_message\":null,\"order_id\":\"71D7232B9FED020CA23729017873089E_45JP0QAYD3_1693280349.8436\",\"due_date\":\"2023-08-29T10:39:13-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"melissa\",\"last_name\":\"rojas rios\",\"email\":\"melii0526@hotmail.com\",\"phone_number\":\"3113652570\",\"address\":null,\"creation_date\":\"2023-08-28T22:39:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 03:42:26','2023-08-29 03:42:26'),(8365,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  909\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-29T02:14:32-06:00\",\"transaction\":{\"id\":\"trvhdr9qceotopmvkjsd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-25T16:17:27-06:00\",\"operation_date\":\"2023-08-25T16:17:27-06:00\",\"description\":\"Pago Mensual academia: TOMAS SOTO OCHOA (1035013032)\",\"error_message\":null,\"order_id\":\"49C0FA7F96AA0A5FB95C62909D5190A6_LBZXP7F2R9_1692998242.5732\",\"due_date\":\"2023-08-26T04:17:27-06:00\",\"amount\":82950.00,\"customer\":{\"name\":\"TOMAS\",\"last_name\":\"SOTO\",\"email\":\"alejamoh@hotmail.com\",\"phone_number\":\"3164423091\",\"address\":null,\"creation_date\":\"2023-08-25T16:17:27-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvhdr9qceotopmvkjsd/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 08:14:33','2023-08-29 08:14:33'),(8366,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-29T02:14:32-06:00\",\"transaction\":{\"id\":\"trfxms8xdgbalqac5z46\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-25T14:23:19-06:00\",\"operation_date\":\"2023-08-25T14:23:19-06:00\",\"description\":\"Pago Mensual academia: Yilmer Sneider Piratoba Vergara (1092542886)\",\"error_message\":null,\"order_id\":\"7AE11AF20803185120E83D3CE4FB4ED7_OS96FQ1Y7T_1692991390.9734\",\"due_date\":\"2023-08-26T02:23:19-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"William\",\"last_name\":\"Piratoba\",\"email\":\"yilmerly123@gmail.com\",\"phone_number\":\"3217863160\",\"address\":null,\"creation_date\":\"2023-08-25T14:23:19-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfxms8xdgbalqac5z46/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 08:14:33','2023-08-29 08:14:33'),(8367,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  902\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-29T02:14:59-06:00\",\"transaction\":{\"id\":\"trctn3n4f4biyx0d9gns\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-28T10:54:03-06:00\",\"operation_date\":\"2023-08-28T10:54:03-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"C0E190D8267E36708F955D7AB048990D_E-64ECC311-74_1693238037.728\",\"due_date\":\"2023-08-28T22:54:03-06:00\",\"amount\":11000.00,\"customer\":{\"name\":\"Eliana María\",\"last_name\":\"Alvarez\",\"email\":\"elianaalvarez2@hotmail.com\",\"phone_number\":\"3002965986\",\"address\":null,\"creation_date\":\"2023-08-28T10:54:03-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trctn3n4f4biyx0d9gns/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 08:15:00','2023-08-29 08:15:00'),(8368,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T12:59:12-05:00\",\"transaction\":{\"id\":\"trvf9ru4cpymtcrk84yb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-29T12:59:12-05:00\",\"operation_date\":\"2023-08-29T12:59:12-05:00\",\"description\":\"Pago Mensual academia: Samuel Zapata ochoa (1036454926)\",\"error_message\":null,\"order_id\":\"CF88118AA2BA88DE549D08038AE76606_J5BNW4ST9O_1693331950.1646\",\"amount\":165900.00,\"customer\":{\"name\":\"Marcela\",\"last_name\":\"Zapata ochoa\",\"email\":\"marcela.zapata@hotmail.com\",\"phone_number\":\"3128351811\",\"address\":null,\"creation_date\":\"2023-08-29T12:59:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvf9ru4cpymtcrk84yb/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-29 17:59:13','2023-08-29 17:59:13'),(8369,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  651\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-29T13:00:10-05:00\",\"transaction\":{\"id\":\"tr8uagaymdt5qdzya7jn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"payments\":4,\"conciliated\":true,\"creation_date\":\"2023-08-29T13:00:10-05:00\",\"operation_date\":\"2023-08-29T13:00:10-05:00\",\"description\":\"Pago Mensual academia: Samuel Zapata ochoa (1036454926)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"CF88118AA2BA88DE549D08038AE76606_J5BNW4ST9O_1693331950.1646\",\"error_code\":3001,\"payment_plan\":{\"payments\":4,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-29 18:00:11','2023-08-29 18:00:11'),(8370,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T13:18:35-05:00\",\"transaction\":{\"id\":\"tr35wznsioitywag6rxo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T13:17:54-05:00\",\"operation_date\":\"2023-08-29T13:17:54-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Mojocoa Marin (1014742443)\",\"error_message\":null,\"order_id\":\"2BF283C05B601F21364D052CA0EC798D_94CART8U70_1693333066.857\",\"due_date\":\"2023-08-30T01:17:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-08-29T13:17:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr35wznsioitywag6rxo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 18:18:35','2023-08-29 18:18:35'),(8371,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-29T13:19:38-05:00\",\"transaction\":{\"id\":\"tr35wznsioitywag6rxo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"127150386\",\"creation_date\":\"2023-08-29T13:17:54-05:00\",\"operation_date\":\"2023-08-29T13:19:23-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Mojocoa Marin (1014742443)\",\"error_message\":null,\"order_id\":\"2BF283C05B601F21364D052CA0EC798D_94CART8U70_1693333066.857\",\"due_date\":\"2023-08-30T01:17:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-08-29T13:17:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 18:19:39','2023-08-29 18:19:39'),(8372,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T13:20:50-05:00\",\"transaction\":{\"id\":\"tr3bouummacbn6qw3guu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T13:20:13-05:00\",\"operation_date\":\"2023-08-29T13:20:13-05:00\",\"description\":\"Pago Mensual academia: Joaquin Mojocoa Marin (1035015032)\",\"error_message\":null,\"order_id\":\"74791EDF1F8E8B8289A5067737630874_V897XRD6KM_1693333211.6494\",\"due_date\":\"2023-08-30T01:20:13-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-08-29T13:20:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3bouummacbn6qw3guu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 18:20:50','2023-08-29 18:20:50'),(8373,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-29T13:21:44-05:00\",\"transaction\":{\"id\":\"tr3bouummacbn6qw3guu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"127155014\",\"creation_date\":\"2023-08-29T13:20:13-05:00\",\"operation_date\":\"2023-08-29T13:21:31-05:00\",\"description\":\"Pago Mensual academia: Joaquin Mojocoa Marin (1035015032)\",\"error_message\":null,\"order_id\":\"74791EDF1F8E8B8289A5067737630874_V897XRD6KM_1693333211.6494\",\"due_date\":\"2023-08-30T01:20:13-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-08-29T13:20:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 18:21:45','2023-08-29 18:21:45'),(8374,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T14:22:59-05:00\",\"transaction\":{\"id\":\"trnbcqv7ynun5ja1wssk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T14:22:08-05:00\",\"operation_date\":\"2023-08-29T14:22:08-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Serna Gil (1033268035)\",\"error_message\":null,\"order_id\":\"2122C699D5E3D2FA6690771845BD7904_IJ3YR5ZV48_1693336923.1377\",\"due_date\":\"2023-08-30T02:22:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego\",\"last_name\":\"Serna\",\"email\":\"diegoserna.as@gmail.com\",\"phone_number\":\"3128737141\",\"address\":null,\"creation_date\":\"2023-08-29T14:22:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnbcqv7ynun5ja1wssk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 19:23:00','2023-08-29 19:23:00'),(8375,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-29T14:23:47-05:00\",\"transaction\":{\"id\":\"trnbcqv7ynun5ja1wssk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"127284557\",\"creation_date\":\"2023-08-29T14:22:08-05:00\",\"operation_date\":\"2023-08-29T14:23:41-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Serna Gil (1033268035)\",\"error_message\":null,\"order_id\":\"2122C699D5E3D2FA6690771845BD7904_IJ3YR5ZV48_1693336923.1377\",\"due_date\":\"2023-08-30T02:22:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego\",\"last_name\":\"Serna\",\"email\":\"diegoserna.as@gmail.com\",\"phone_number\":\"3128737141\",\"address\":null,\"creation_date\":\"2023-08-29T14:22:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 19:23:48','2023-08-29 19:23:48'),(8376,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T15:18:03-05:00\",\"transaction\":{\"id\":\"tr85mn5haqh4eak0c3zg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T15:16:10-05:00\",\"operation_date\":\"2023-08-29T15:16:10-05:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":null,\"order_id\":\"898AEF0932F6AAECDA27ABA8E9903991_GJO3AH4SY0_1693340166.6778\",\"due_date\":\"2023-08-30T03:16:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz Jaramillo \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3103803815\",\"address\":null,\"creation_date\":\"2023-08-29T15:16:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr85mn5haqh4eak0c3zg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 20:18:03','2023-08-29 20:18:03'),(8377,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-29T14:36:08-06:00\",\"transaction\":{\"id\":\"tr85mn5haqh4eak0c3zg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-29T15:16:10-06:00\",\"operation_date\":\"2023-08-29T15:35:25-06:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"898AEF0932F6AAECDA27ABA8E9903991_GJO3AH4SY0_1693340166.6778\",\"due_date\":\"2023-08-30T03:16:10-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz Jaramillo \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3103803815\",\"address\":null,\"creation_date\":\"2023-08-29T15:16:10-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 20:36:09','2023-08-29 20:36:09'),(8378,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T16:01:27-05:00\",\"transaction\":{\"id\":\"tr4dq93tat3proj825ks\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T16:00:33-05:00\",\"operation_date\":\"2023-08-29T16:00:33-05:00\",\"description\":\"Pago Mensual academia: JUAN STEBAN CORREDOR MUETE (1027286961)\",\"error_message\":null,\"order_id\":\"ACB5D1120B8A0B8D3D97905BA9A72DC4_E47S3N18RI_1693342828.2524\",\"due_date\":\"2023-08-30T04:00:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan\",\"last_name\":\"Corredor Ramirez\",\"email\":\"juaningindustrial98@gmail.com\",\"phone_number\":\"3142313779\",\"address\":null,\"creation_date\":\"2023-08-29T16:00:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4dq93tat3proj825ks/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 21:01:27','2023-08-29 21:01:27'),(8379,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-29T16:02:35-05:00\",\"transaction\":{\"id\":\"tr4dq93tat3proj825ks\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"127514226\",\"creation_date\":\"2023-08-29T16:00:33-05:00\",\"operation_date\":\"2023-08-29T16:02:10-05:00\",\"description\":\"Pago Mensual academia: JUAN STEBAN CORREDOR MUETE (1027286961)\",\"error_message\":null,\"order_id\":\"ACB5D1120B8A0B8D3D97905BA9A72DC4_E47S3N18RI_1693342828.2524\",\"due_date\":\"2023-08-30T04:00:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan\",\"last_name\":\"Corredor Ramirez\",\"email\":\"juaningindustrial98@gmail.com\",\"phone_number\":\"3142313779\",\"address\":null,\"creation_date\":\"2023-08-29T16:00:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 21:02:35','2023-08-29 21:02:35'),(8380,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T16:43:15-05:00\",\"transaction\":{\"id\":\"tr2qgbqstvdh70mc65qa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T16:41:49-05:00\",\"operation_date\":\"2023-08-29T16:41:49-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Dávila Morales (1017942344)\",\"error_message\":null,\"order_id\":\"C90E274D55309DB944076AFB3FF9C391_PTZ7MWDGJ1_1693345305.0699\",\"due_date\":\"2023-08-30T04:41:49-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Dávila Osorio\",\"email\":\"juancdavilao@gmail.com\",\"phone_number\":\"3104384569\",\"address\":null,\"creation_date\":\"2023-08-29T16:41:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2qgbqstvdh70mc65qa/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 21:43:15','2023-08-29 21:43:15'),(8381,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  856\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-29T15:54:21-06:00\",\"transaction\":{\"id\":\"tr2qgbqstvdh70mc65qa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-29T16:41:49-06:00\",\"operation_date\":\"2023-08-29T16:41:49-06:00\",\"description\":\"Pago Mensual academia: Maximiliano Dávila Morales (1017942344)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"C90E274D55309DB944076AFB3FF9C391_PTZ7MWDGJ1_1693345305.0699\",\"due_date\":\"2023-08-30T04:41:49-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Dávila Osorio\",\"email\":\"juancdavilao@gmail.com\",\"phone_number\":\"3104384569\",\"address\":null,\"creation_date\":\"2023-08-29T16:41:49-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 21:54:22','2023-08-29 21:54:22'),(8382,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T17:35:07-05:00\",\"transaction\":{\"id\":\"trmqb5kzhnj7yqruwiy3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T17:34:04-05:00\",\"operation_date\":\"2023-08-29T17:34:04-05:00\",\"description\":\"Pago Mensual academia: Emiliano Fiallo García (1027813536)\",\"error_message\":null,\"order_id\":\"55A0DF4B5A1786CD13A7A8DE759859D4_DZ32TOPUI8_1693348440.3912\",\"due_date\":\"2023-08-30T05:34:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"García Sánchez\",\"email\":\"tatigs0303@hotmail.com\",\"phone_number\":\"3137669661\",\"address\":null,\"creation_date\":\"2023-08-29T17:34:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmqb5kzhnj7yqruwiy3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 22:35:07','2023-08-29 22:35:07'),(8383,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-29T17:36:14-05:00\",\"transaction\":{\"id\":\"trmqb5kzhnj7yqruwiy3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"127739035\",\"creation_date\":\"2023-08-29T17:34:04-05:00\",\"operation_date\":\"2023-08-29T17:36:09-05:00\",\"description\":\"Pago Mensual academia: Emiliano Fiallo García (1027813536)\",\"error_message\":null,\"order_id\":\"55A0DF4B5A1786CD13A7A8DE759859D4_DZ32TOPUI8_1693348440.3912\",\"due_date\":\"2023-08-30T05:34:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"García Sánchez\",\"email\":\"tatigs0303@hotmail.com\",\"phone_number\":\"3137669661\",\"address\":null,\"creation_date\":\"2023-08-29T17:34:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 22:36:15','2023-08-29 22:36:15'),(8384,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T17:36:23-05:00\",\"transaction\":{\"id\":\"trox6xvaglxsmubvwdg9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T17:34:11-05:00\",\"operation_date\":\"2023-08-29T17:34:11-05:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":null,\"order_id\":\"898AEF0932F6AAECDA27ABA8E9903991_GJO3AH4SY0_1693348445.8724\",\"due_date\":\"2023-08-30T05:34:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan\",\"last_name\":\"Muñoz Jaramillo \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3104803815\",\"address\":null,\"creation_date\":\"2023-08-29T17:34:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trox6xvaglxsmubvwdg9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 22:36:24','2023-08-29 22:36:24'),(8385,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T17:41:04-05:00\",\"transaction\":{\"id\":\"tryigucxjt80qqvogdcj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T17:39:40-05:00\",\"operation_date\":\"2023-08-29T17:39:40-05:00\",\"description\":\"Pago Mensual academia: Elian Matias Pino Pareja (1033202694)\",\"error_message\":null,\"order_id\":\"DC727151E5D55DDE1E950767CF861CA5_7AODC1X0YG_1693348767.8531\",\"due_date\":\"2023-08-30T05:39:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yurliana faysury\",\"last_name\":\"pareja montoya\",\"email\":\"faysurypareja@gmail.com\",\"phone_number\":\"3043293449\",\"address\":null,\"creation_date\":\"2023-08-29T17:39:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryigucxjt80qqvogdcj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 22:41:04','2023-08-29 22:41:04'),(8386,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-29T17:44:08-05:00\",\"transaction\":{\"id\":\"trox6xvaglxsmubvwdg9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-29T17:34:11-05:00\",\"operation_date\":\"2023-08-29T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"898AEF0932F6AAECDA27ABA8E9903991_GJO3AH4SY0_1693348445.8724\",\"due_date\":\"2023-08-30T05:34:11-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan\",\"last_name\":\"Muñoz Jaramillo \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3104803815\",\"address\":null,\"creation_date\":\"2023-08-29T17:34:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 22:44:09','2023-08-29 22:44:09'),(8387,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  860\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-29T16:54:10-06:00\",\"transaction\":{\"id\":\"tryigucxjt80qqvogdcj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-29T17:39:40-06:00\",\"operation_date\":\"2023-08-29T17:39:40-06:00\",\"description\":\"Pago Mensual academia: Elian Matias Pino Pareja (1033202694)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"DC727151E5D55DDE1E950767CF861CA5_7AODC1X0YG_1693348767.8531\",\"due_date\":\"2023-08-30T05:39:40-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"yurliana faysury\",\"last_name\":\"pareja montoya\",\"email\":\"faysurypareja@gmail.com\",\"phone_number\":\"3043293449\",\"address\":null,\"creation_date\":\"2023-08-29T17:39:40-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 22:54:11','2023-08-29 22:54:11'),(8388,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T18:05:37-05:00\",\"transaction\":{\"id\":\"trcmssfmbvneltxntdj7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T18:02:23-05:00\",\"operation_date\":\"2023-08-29T18:02:23-05:00\",\"description\":\"Pago Mensual academia: Elian Matias Pino Pareja (1033202694)\",\"error_message\":null,\"order_id\":\"DC727151E5D55DDE1E950767CF861CA5_7AODC1X0YG_1693350118.9613\",\"due_date\":\"2023-08-30T06:02:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yurliana faysury\",\"last_name\":\"pareja montoya\",\"email\":\"faysurypareja@gmail.com\",\"phone_number\":\"3043293449\",\"address\":null,\"creation_date\":\"2023-08-29T18:02:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcmssfmbvneltxntdj7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 23:05:37','2023-08-29 23:05:37'),(8389,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-29T17:09:26-06:00\",\"transaction\":{\"id\":\"trcmssfmbvneltxntdj7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"127802026\",\"creation_date\":\"2023-08-29T18:02:23-06:00\",\"operation_date\":\"2023-08-29T18:07:26-06:00\",\"description\":\"Pago Mensual academia: Elian Matias Pino Pareja (1033202694)\",\"error_message\":null,\"order_id\":\"DC727151E5D55DDE1E950767CF861CA5_7AODC1X0YG_1693350118.9613\",\"due_date\":\"2023-08-30T06:02:23-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yurliana faysury\",\"last_name\":\"pareja montoya\",\"email\":\"faysurypareja@gmail.com\",\"phone_number\":\"3043293449\",\"address\":null,\"creation_date\":\"2023-08-29T18:02:23-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 23:09:27','2023-08-29 23:09:27'),(8390,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T18:38:18-05:00\",\"transaction\":{\"id\":\"tr014hvuppzb3dz5chfa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T18:37:26-05:00\",\"operation_date\":\"2023-08-29T18:37:26-05:00\",\"description\":\"Pago Mensual academia: Tomas Gonzalez Palacio (1034994733)\",\"error_message\":null,\"order_id\":\"A098B2EB3138551138D127925D092D67_FKWBO0SML4_1693352243.5784\",\"due_date\":\"2023-08-30T06:37:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Adriana\",\"last_name\":\"Palacio\",\"email\":\"nanapalacio@gmail.com\",\"phone_number\":\"3152489243\",\"address\":null,\"creation_date\":\"2023-08-29T18:37:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr014hvuppzb3dz5chfa/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 23:38:18','2023-08-29 23:38:18'),(8391,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T18:39:53-05:00\",\"transaction\":{\"id\":\"tr0dbtxxbpofnw0nbqqc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T18:37:55-05:00\",\"operation_date\":\"2023-08-29T18:37:55-05:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":null,\"order_id\":\"898AEF0932F6AAECDA27ABA8E9903991_GJO3AH4SY0_1693352271.2128\",\"due_date\":\"2023-08-30T06:37:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz Jaramillo \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3006934069\",\"address\":null,\"creation_date\":\"2023-08-29T18:37:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0dbtxxbpofnw0nbqqc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 23:39:54','2023-08-29 23:39:54'),(8392,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-29T18:39:55-05:00\",\"transaction\":{\"id\":\"tr014hvuppzb3dz5chfa\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"127866232\",\"creation_date\":\"2023-08-29T18:37:26-05:00\",\"operation_date\":\"2023-08-29T18:39:32-05:00\",\"description\":\"Pago Mensual academia: Tomas Gonzalez Palacio (1034994733)\",\"error_message\":null,\"order_id\":\"A098B2EB3138551138D127925D092D67_FKWBO0SML4_1693352243.5784\",\"due_date\":\"2023-08-30T06:37:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Adriana\",\"last_name\":\"Palacio\",\"email\":\"nanapalacio@gmail.com\",\"phone_number\":\"3152489243\",\"address\":null,\"creation_date\":\"2023-08-29T18:37:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 23:39:56','2023-08-29 23:39:56'),(8393,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  857\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T18:52:25-05:00\",\"transaction\":{\"id\":\"trdi2sooqjivhu4bpdjq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-29T18:52:25-05:00\",\"operation_date\":\"2023-08-29T18:52:25-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"060AD92489947D410D897474079C1477_E-64EE84AF-12_1693353140.2829\",\"amount\":146900.00,\"customer\":{\"name\":\"Farid\",\"last_name\":\"suarez\",\"email\":\"faridcamilo_16@hotmail.com\",\"phone_number\":\"3215152286\",\"address\":null,\"creation_date\":\"2023-08-29T18:52:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trdi2sooqjivhu4bpdjq/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-29 23:52:26','2023-08-29 23:52:26'),(8394,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1112\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-29T18:53:28-05:00\",\"transaction\":{\"id\":\"trdi2sooqjivhu4bpdjq\",\"authorization\":\"R07215\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-29T18:52:25-05:00\",\"operation_date\":\"2023-08-29T18:53:27-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"060AD92489947D410D897474079C1477_E-64EE84AF-12_1693353140.2829\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530372XXXXXX3892\",\"holder_name\":\"FARID C SUAREZ M\",\"expiration_year\":\"26\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":146900.00,\"customer\":{\"name\":\"Farid\",\"last_name\":\"suarez\",\"email\":\"faridcamilo_16@hotmail.com\",\"phone_number\":\"3215152286\",\"address\":null,\"creation_date\":\"2023-08-29T18:52:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trdi2sooqjivhu4bpdjq/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-29 23:53:29','2023-08-29 23:53:29'),(8395,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-29T17:57:14-06:00\",\"transaction\":{\"id\":\"tr0dbtxxbpofnw0nbqqc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-29T18:37:55-06:00\",\"operation_date\":\"2023-08-29T18:56:39-06:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"898AEF0932F6AAECDA27ABA8E9903991_GJO3AH4SY0_1693352271.2128\",\"due_date\":\"2023-08-30T06:37:55-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz Jaramillo \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3006934069\",\"address\":null,\"creation_date\":\"2023-08-29T18:37:55-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-29 23:57:15','2023-08-29 23:57:15'),(8396,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T19:47:12-05:00\",\"transaction\":{\"id\":\"trydzf4mo2lsqbebttk9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T19:45:54-05:00\",\"operation_date\":\"2023-08-29T19:45:54-05:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":null,\"order_id\":\"898AEF0932F6AAECDA27ABA8E9903991_GJO3AH4SY0_1693356348.2168\",\"due_date\":\"2023-08-30T07:45:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz jaramillo\",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3006934069\",\"address\":null,\"creation_date\":\"2023-08-29T19:45:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trydzf4mo2lsqbebttk9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 00:47:13','2023-08-30 00:47:13'),(8397,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-29T18:57:17-06:00\",\"transaction\":{\"id\":\"trydzf4mo2lsqbebttk9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-29T19:45:54-06:00\",\"operation_date\":\"2023-08-29T00:00:00-06:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"898AEF0932F6AAECDA27ABA8E9903991_GJO3AH4SY0_1693356348.2168\",\"due_date\":\"2023-08-30T07:45:54-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz jaramillo\",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3006934069\",\"address\":null,\"creation_date\":\"2023-08-29T19:45:54-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 00:57:17','2023-08-30 00:57:17'),(8398,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T20:50:23-05:00\",\"transaction\":{\"id\":\"trd18zfml2ssmhaqbaay\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T20:49:17-05:00\",\"operation_date\":\"2023-08-29T20:49:17-05:00\",\"description\":\"Pago Mensual academia: Simón Vélez Richter (1034999447)\",\"error_message\":null,\"order_id\":\"6754E06E46DFA419D5AFE3C9781CECAD_0W2YMNSLEH_1693360154.2512\",\"due_date\":\"2023-08-30T08:49:17-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Richter\",\"email\":\"tatyrichter27@gmail.com\",\"phone_number\":\"3008671943\",\"address\":null,\"creation_date\":\"2023-08-29T20:49:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trd18zfml2ssmhaqbaay/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 01:50:24','2023-08-30 01:50:24'),(8399,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-29T19:51:27-06:00\",\"transaction\":{\"id\":\"trd18zfml2ssmhaqbaay\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"128116125\",\"creation_date\":\"2023-08-29T20:49:17-06:00\",\"operation_date\":\"2023-08-29T20:51:23-06:00\",\"description\":\"Pago Mensual academia: Simón Vélez Richter (1034999447)\",\"error_message\":null,\"order_id\":\"6754E06E46DFA419D5AFE3C9781CECAD_0W2YMNSLEH_1693360154.2512\",\"due_date\":\"2023-08-30T08:49:17-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Richter\",\"email\":\"tatyrichter27@gmail.com\",\"phone_number\":\"3008671943\",\"address\":null,\"creation_date\":\"2023-08-29T20:49:17-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 01:51:28','2023-08-30 01:51:28'),(8400,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-29T19:54:21-06:00\",\"transaction\":{\"id\":\"trd18zfml2ssmhaqbaay\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"128116125\",\"creation_date\":\"2023-08-29T20:49:17-06:00\",\"operation_date\":\"2023-08-29T20:51:23-06:00\",\"description\":\"Pago Mensual academia: Simón Vélez Richter (1034999447)\",\"error_message\":null,\"order_id\":\"6754E06E46DFA419D5AFE3C9781CECAD_0W2YMNSLEH_1693360154.2512\",\"due_date\":\"2023-08-30T08:49:17-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Richter\",\"email\":\"tatyrichter27@gmail.com\",\"phone_number\":\"3008671943\",\"address\":null,\"creation_date\":\"2023-08-29T20:49:17-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 01:54:22','2023-08-30 01:54:22'),(8401,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-29T22:03:46-05:00\",\"transaction\":{\"id\":\"trzxjnlux1vloqy6kzqv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-29T22:02:35-05:00\",\"operation_date\":\"2023-08-29T22:02:35-05:00\",\"description\":\"Pago Mensual academia: Martin Escobar Galvis (1038266060)\",\"error_message\":null,\"order_id\":\"D880067F879409DF09AC50BA315707AA_GLO983AS6X_1693364548.8548\",\"due_date\":\"2023-08-30T10:02:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres David\",\"last_name\":\"Escobar Suceba\",\"email\":\"andres.escobar12@gmail.com\",\"phone_number\":\"3128720114\",\"address\":null,\"creation_date\":\"2023-08-29T22:02:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzxjnlux1vloqy6kzqv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 03:03:46','2023-08-30 03:03:46'),(8402,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-29T22:05:01-05:00\",\"transaction\":{\"id\":\"trzxjnlux1vloqy6kzqv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"128230845\",\"creation_date\":\"2023-08-29T22:02:35-05:00\",\"operation_date\":\"2023-08-29T22:04:54-05:00\",\"description\":\"Pago Mensual academia: Martin Escobar Galvis (1038266060)\",\"error_message\":null,\"order_id\":\"D880067F879409DF09AC50BA315707AA_GLO983AS6X_1693364548.8548\",\"due_date\":\"2023-08-30T10:02:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres David\",\"last_name\":\"Escobar Suceba\",\"email\":\"andres.escobar12@gmail.com\",\"phone_number\":\"3128720114\",\"address\":null,\"creation_date\":\"2023-08-29T22:02:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 03:05:02','2023-08-30 03:05:02'),(8403,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T07:18:24-05:00\",\"transaction\":{\"id\":\"trllxsgidzam9ypk2jjk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T07:17:44-05:00\",\"operation_date\":\"2023-08-30T07:17:44-05:00\",\"description\":\"Pago Mensual academia: TOMAS SOTO OCHOA (1035013032)\",\"error_message\":null,\"order_id\":\"49C0FA7F96AA0A5FB95C62909D5190A6_LBZXP7F2R9_1693397861.633\",\"due_date\":\"2023-08-30T19:17:44-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"TOMAS\",\"last_name\":\"SOTO\",\"email\":\"alejamoh@hotmail.com\",\"phone_number\":\"3164423091\",\"address\":null,\"creation_date\":\"2023-08-30T07:17:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trllxsgidzam9ypk2jjk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 12:18:24','2023-08-30 12:18:24'),(8404,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  787\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T07:19:22-05:00\",\"transaction\":{\"id\":\"trllxsgidzam9ypk2jjk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"128429314\",\"creation_date\":\"2023-08-30T07:17:44-05:00\",\"operation_date\":\"2023-08-30T07:19:17-05:00\",\"description\":\"Pago Mensual academia: TOMAS SOTO OCHOA (1035013032)\",\"error_message\":null,\"order_id\":\"49C0FA7F96AA0A5FB95C62909D5190A6_LBZXP7F2R9_1693397861.633\",\"due_date\":\"2023-08-30T19:17:44-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"TOMAS\",\"last_name\":\"SOTO\",\"email\":\"alejamoh@hotmail.com\",\"phone_number\":\"3164423091\",\"address\":null,\"creation_date\":\"2023-08-30T07:17:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 12:19:23','2023-08-30 12:19:23'),(8405,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T07:25:55-05:00\",\"transaction\":{\"id\":\"trjrfoex9bi84i5ik76r\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T07:25:11-05:00\",\"operation_date\":\"2023-08-30T07:25:11-05:00\",\"description\":\"Pago Mensual academia: Lucas Eusse Hernandez (1034993922)\",\"error_message\":null,\"order_id\":\"781397BC0630D47AB531EA850BDDCF63_J0Q1U5F28P_1693398306.5494\",\"due_date\":\"2023-08-30T19:25:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catleya\",\"last_name\":\"hernandez\",\"email\":\"catleyah@hotmail.com\",\"phone_number\":\"3218521920\",\"address\":null,\"creation_date\":\"2023-08-30T07:25:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjrfoex9bi84i5ik76r/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 12:25:56','2023-08-30 12:25:56'),(8406,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T07:26:39-05:00\",\"transaction\":{\"id\":\"trjrfoex9bi84i5ik76r\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"128437819\",\"creation_date\":\"2023-08-30T07:25:11-05:00\",\"operation_date\":\"2023-08-30T07:26:35-05:00\",\"description\":\"Pago Mensual academia: Lucas Eusse Hernandez (1034993922)\",\"error_message\":null,\"order_id\":\"781397BC0630D47AB531EA850BDDCF63_J0Q1U5F28P_1693398306.5494\",\"due_date\":\"2023-08-30T19:25:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catleya\",\"last_name\":\"hernandez\",\"email\":\"catleyah@hotmail.com\",\"phone_number\":\"3218521920\",\"address\":null,\"creation_date\":\"2023-08-30T07:25:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 12:26:40','2023-08-30 12:26:40'),(8407,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T09:12:18-05:00\",\"transaction\":{\"id\":\"trnghe7zr3eje8ua6jhh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T09:11:39-05:00\",\"operation_date\":\"2023-08-30T09:11:39-05:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":null,\"order_id\":\"F23D125DA1E29E34C552F448610FF25F_RQASCW6IK3_1693404695.1573\",\"due_date\":\"2023-08-30T21:11:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-08-30T09:11:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnghe7zr3eje8ua6jhh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 14:12:19','2023-08-30 14:12:19'),(8408,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  868\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-30T09:17:36-05:00\",\"transaction\":{\"id\":\"trnghe7zr3eje8ua6jhh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-30T09:11:39-05:00\",\"operation_date\":\"2023-08-30T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"F23D125DA1E29E34C552F448610FF25F_RQASCW6IK3_1693404695.1573\",\"due_date\":\"2023-08-30T21:11:39-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-08-30T09:11:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 14:17:37','2023-08-30 14:17:37'),(8409,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T09:38:21-05:00\",\"transaction\":{\"id\":\"trn47twoxbovmw7mpcel\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T09:36:06-05:00\",\"operation_date\":\"2023-08-30T09:36:06-05:00\",\"description\":\"Pago Mensual academia: Benjamín Gutiérrez Restrepo (1040578871)\",\"error_message\":null,\"order_id\":\"4B26DC4663CCF960C8538D595D0A1D3A_3DFRPB9OAY_1693406161.4081\",\"due_date\":\"2023-08-30T21:36:06-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristian\",\"last_name\":\"Gutierrez Gaviria\",\"email\":\"cristiangutierrezg22@hotmail.com\",\"phone_number\":\"3104093721\",\"address\":null,\"creation_date\":\"2023-08-30T09:36:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trn47twoxbovmw7mpcel/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 14:38:22','2023-08-30 14:38:22'),(8410,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  829\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T09:41:40-05:00\",\"transaction\":{\"id\":\"trn47twoxbovmw7mpcel\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"128689274\",\"creation_date\":\"2023-08-30T09:36:06-05:00\",\"operation_date\":\"2023-08-30T09:41:29-05:00\",\"description\":\"Pago Mensual academia: Benjamín Gutiérrez Restrepo (1040578871)\",\"error_message\":null,\"order_id\":\"4B26DC4663CCF960C8538D595D0A1D3A_3DFRPB9OAY_1693406161.4081\",\"due_date\":\"2023-08-30T21:36:06-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristian\",\"last_name\":\"Gutierrez Gaviria\",\"email\":\"cristiangutierrezg22@hotmail.com\",\"phone_number\":\"3104093721\",\"address\":null,\"creation_date\":\"2023-08-30T09:36:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 14:41:41','2023-08-30 14:41:41'),(8411,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T09:52:48-05:00\",\"transaction\":{\"id\":\"trgiwpsaqnttcywi6eni\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T09:52:00-05:00\",\"operation_date\":\"2023-08-30T09:52:00-05:00\",\"description\":\"Pago Mensual academia: SANTIAGO MOYA ROJAS (1012435034)\",\"error_message\":null,\"order_id\":\"8ABFE8AC9EC214D68541FCB888C0B4C3_IQMO8DCYBW_1693407115.7047\",\"due_date\":\"2023-08-30T21:52:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-08-30T09:52:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgiwpsaqnttcywi6eni/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 14:52:48','2023-08-30 14:52:48'),(8412,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  860\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-30T09:09:13-06:00\",\"transaction\":{\"id\":\"trgiwpsaqnttcywi6eni\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-30T09:52:00-06:00\",\"operation_date\":\"2023-08-30T10:09:11-06:00\",\"description\":\"Pago Mensual academia: SANTIAGO MOYA ROJAS (1012435034)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"8ABFE8AC9EC214D68541FCB888C0B4C3_IQMO8DCYBW_1693407115.7047\",\"due_date\":\"2023-08-30T21:52:00-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-08-30T09:52:00-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 15:09:13','2023-08-30 15:09:13'),(8413,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T10:32:30-05:00\",\"transaction\":{\"id\":\"tr5tdebiagkrozxngse0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-30T10:32:30-05:00\",\"operation_date\":\"2023-08-30T10:32:30-05:00\",\"description\":\"Pago Mensual academia: mateo alfonso habeych duque (1097504214)\",\"error_message\":null,\"order_id\":\"882735CBDFD9F810814D17892AE50023_UTB1K4LCM2_1693409547.5123\",\"amount\":165900.00,\"customer\":{\"name\":\"Mateo Alfonso\",\"last_name\":\"habeych duque\",\"email\":\"kini1892@hotmail.com\",\"phone_number\":\"3053635163\",\"address\":null,\"creation_date\":\"2023-08-30T10:32:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5tdebiagkrozxngse0/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-30 15:32:31','2023-08-30 15:32:31'),(8414,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1158\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T10:33:53-05:00\",\"transaction\":{\"id\":\"tr5tdebiagkrozxngse0\",\"authorization\":\"099932\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-30T10:32:30-05:00\",\"operation_date\":\"2023-08-30T10:33:52-05:00\",\"description\":\"Pago Mensual academia: mateo alfonso habeych duque (1097504214)\",\"error_message\":null,\"order_id\":\"882735CBDFD9F810814D17892AE50023_UTB1K4LCM2_1693409547.5123\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"451307XXXXXX1234\",\"holder_name\":\"Paula Andrea Carmona Diaz\",\"expiration_year\":\"26\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Mateo Alfonso\",\"last_name\":\"habeych duque\",\"email\":\"kini1892@hotmail.com\",\"phone_number\":\"3053635163\",\"address\":null,\"creation_date\":\"2023-08-30T10:32:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5tdebiagkrozxngse0/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-30 15:33:54','2023-08-30 15:33:54'),(8415,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T10:36:14-05:00\",\"transaction\":{\"id\":\"tru3mztyn8ytexsatcoz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T10:35:28-05:00\",\"operation_date\":\"2023-08-30T10:35:28-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"BCBE3365E6AC95EA2C0343A2395834DD_E-64EF61B3-92_1693409719.556\",\"due_date\":\"2023-08-30T22:35:28-05:00\",\"amount\":11000.00,\"customer\":{\"name\":\"Eliana María\",\"last_name\":\"Alvarez\",\"email\":\"elianaalvarez2@hotmail.com\",\"phone_number\":\"3002965986\",\"address\":null,\"creation_date\":\"2023-08-30T10:35:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tru3mztyn8ytexsatcoz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 15:36:14','2023-08-30 15:36:14'),(8416,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-30T10:36:29-05:00\",\"transaction\":{\"id\":\"tru3mztyn8ytexsatcoz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-30T10:35:28-05:00\",\"operation_date\":\"2023-08-30T00:00:00-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"BCBE3365E6AC95EA2C0343A2395834DD_E-64EF61B3-92_1693409719.556\",\"due_date\":\"2023-08-30T22:35:28-05:00\",\"error_code\":1007,\"amount\":11000.00,\"customer\":{\"name\":\"Eliana María\",\"last_name\":\"Alvarez\",\"email\":\"elianaalvarez2@hotmail.com\",\"phone_number\":\"3002965986\",\"address\":null,\"creation_date\":\"2023-08-30T10:35:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 15:36:30','2023-08-30 15:36:30'),(8417,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T12:29:41-05:00\",\"transaction\":{\"id\":\"trurbdffczzqrf4aexfn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T12:29:03-05:00\",\"operation_date\":\"2023-08-30T12:29:03-05:00\",\"description\":\"Pago Mensual academia: Samuel López Mejia (1017936003)\",\"error_message\":null,\"order_id\":\"95C9D994F8D75D4D60F8BB8F25902339_5XKR9N0DM4_1693416539.1497\",\"due_date\":\"2023-08-31T00:29:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"López Monsalve\",\"email\":\"Santilopezmo1717@hotmail.com\",\"phone_number\":\"3006716946\",\"address\":null,\"creation_date\":\"2023-08-30T12:29:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trurbdffczzqrf4aexfn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 17:29:42','2023-08-30 17:29:42'),(8418,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T12:30:43-05:00\",\"transaction\":{\"id\":\"trurbdffczzqrf4aexfn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"129151741\",\"creation_date\":\"2023-08-30T12:29:03-05:00\",\"operation_date\":\"2023-08-30T12:30:35-05:00\",\"description\":\"Pago Mensual academia: Samuel López Mejia (1017936003)\",\"error_message\":null,\"order_id\":\"95C9D994F8D75D4D60F8BB8F25902339_5XKR9N0DM4_1693416539.1497\",\"due_date\":\"2023-08-31T00:29:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"López Monsalve\",\"email\":\"Santilopezmo1717@hotmail.com\",\"phone_number\":\"3006716946\",\"address\":null,\"creation_date\":\"2023-08-30T12:29:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 17:30:44','2023-08-30 17:30:44'),(8419,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T12:46:47-05:00\",\"transaction\":{\"id\":\"tr5gvwyrpgsroiczdunp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T12:46:17-05:00\",\"operation_date\":\"2023-08-30T12:46:17-05:00\",\"description\":\"Pago Mensual academia: Nicolás Jaimes Londoño (1019993636)\",\"error_message\":null,\"order_id\":\"0B105CF1504C4E241FCC6D519EA962FB_UW1XRLT0Q4_1693417574.1536\",\"due_date\":\"2023-08-31T00:46:17-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Jaimes Londoño\",\"email\":\"dianam0927@hotmail.com\",\"phone_number\":\"3158136416\",\"address\":null,\"creation_date\":\"2023-08-30T12:46:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5gvwyrpgsroiczdunp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 17:46:47','2023-08-30 17:46:47'),(8420,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T12:47:27-05:00\",\"transaction\":{\"id\":\"tr5gvwyrpgsroiczdunp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"129195150\",\"creation_date\":\"2023-08-30T12:46:17-05:00\",\"operation_date\":\"2023-08-30T12:47:14-05:00\",\"description\":\"Pago Mensual academia: Nicolás Jaimes Londoño (1019993636)\",\"error_message\":null,\"order_id\":\"0B105CF1504C4E241FCC6D519EA962FB_UW1XRLT0Q4_1693417574.1536\",\"due_date\":\"2023-08-31T00:46:17-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Jaimes Londoño\",\"email\":\"dianam0927@hotmail.com\",\"phone_number\":\"3158136416\",\"address\":null,\"creation_date\":\"2023-08-30T12:46:17-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 17:47:28','2023-08-30 17:47:28'),(8421,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T13:58:58-05:00\",\"transaction\":{\"id\":\"trzdsh8kgw9eomojefew\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T13:57:57-05:00\",\"operation_date\":\"2023-08-30T13:57:57-05:00\",\"description\":\"Pago Mensual academia: Martín Valencia Duque (1155717395)\",\"error_message\":null,\"order_id\":\"943AA0FCDA4EE2901A7DE9321663B114_NEWP59GRDL_1693421865.5004\",\"due_date\":\"2023-08-31T01:57:57-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martín\",\"last_name\":\"Valencia Duque\",\"email\":\"jaime.valencia@tigo.com.co\",\"phone_number\":\"3004380006\",\"address\":null,\"creation_date\":\"2023-08-30T13:57:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzdsh8kgw9eomojefew/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 18:58:59','2023-08-30 18:58:59'),(8422,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T14:00:22-05:00\",\"transaction\":{\"id\":\"trzdsh8kgw9eomojefew\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"129382975\",\"creation_date\":\"2023-08-30T13:57:57-05:00\",\"operation_date\":\"2023-08-30T14:00:01-05:00\",\"description\":\"Pago Mensual academia: Martín Valencia Duque (1155717395)\",\"error_message\":null,\"order_id\":\"943AA0FCDA4EE2901A7DE9321663B114_NEWP59GRDL_1693421865.5004\",\"due_date\":\"2023-08-31T01:57:57-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martín\",\"last_name\":\"Valencia Duque\",\"email\":\"jaime.valencia@tigo.com.co\",\"phone_number\":\"3004380006\",\"address\":null,\"creation_date\":\"2023-08-30T13:57:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 19:00:23','2023-08-30 19:00:23'),(8423,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  955\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T14:15:29-05:00\",\"transaction\":{\"id\":\"traiq0z6pc6upnsuwkxq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T14:14:46-05:00\",\"operation_date\":\"2023-08-30T14:14:46-05:00\",\"description\":\"Pago Mensual academia: jose Fernando heredia vergara (10320173600)\",\"error_message\":null,\"order_id\":\"A18630AB1C3B9F14454CF70DC7114834_FLNUM5JWS9_1693422882.1648\",\"due_date\":\"2023-08-31T02:14:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose fernando\",\"last_name\":\"heredia vergara\",\"email\":\"josefernandoherediavergara@gmail.com\",\"phone_number\":\"3147654236\",\"address\":null,\"creation_date\":\"2023-08-30T14:14:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traiq0z6pc6upnsuwkxq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 19:15:30','2023-08-30 19:15:30');
INSERT INTO `system_logs` VALUES (8424,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T14:19:42-05:00\",\"transaction\":{\"id\":\"trzazv8itmipocu5y2iu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-30T14:19:42-05:00\",\"operation_date\":\"2023-08-30T14:19:42-05:00\",\"description\":\"Pago Inscripción academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":null,\"order_id\":\"F92586A25BB3145FACD64AB20FD554FF_O87LJIZFQH_1693423175.7043\",\"amount\":391000.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Rozo Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-08-30T14:19:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzazv8itmipocu5y2iu/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-30 19:19:43','2023-08-30 19:19:43'),(8425,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1225\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T14:20:48-05:00\",\"transaction\":{\"id\":\"trzazv8itmipocu5y2iu\",\"authorization\":\"475347\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-08-30T14:19:42-05:00\",\"operation_date\":\"2023-08-30T14:20:45-05:00\",\"description\":\"Pago Inscripción academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":null,\"order_id\":\"F92586A25BB3145FACD64AB20FD554FF_O87LJIZFQH_1693423175.7043\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"483161XXXXXX8011\",\"holder_name\":\"Blanca Vanegas \",\"expiration_year\":\"26\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":391000.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Rozo Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-08-30T14:19:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzazv8itmipocu5y2iu/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-30 19:20:49','2023-08-30 19:20:49'),(8426,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T14:22:21-05:00\",\"transaction\":{\"id\":\"truyb1boyjwz9np5s4u1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-30T14:22:20-05:00\",\"operation_date\":\"2023-08-30T14:22:20-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":null,\"order_id\":\"B181EAA49F5924E16C772DCB718FCD0F_SK94YAED2G_1693423336.4007\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Rozo Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-08-30T14:22:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truyb1boyjwz9np5s4u1/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-30 19:22:21','2023-08-30 19:22:21'),(8427,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1219\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T14:23:46-05:00\",\"transaction\":{\"id\":\"truyb1boyjwz9np5s4u1\",\"authorization\":\"736221\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-08-30T14:22:20-05:00\",\"operation_date\":\"2023-08-30T14:23:45-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":null,\"order_id\":\"B181EAA49F5924E16C772DCB718FCD0F_SK94YAED2G_1693423336.4007\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"483161XXXXXX8011\",\"holder_name\":\"Blanca Vanegas\",\"expiration_year\":\"26\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Rozo Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-08-30T14:22:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truyb1boyjwz9np5s4u1/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-30 19:23:47','2023-08-30 19:23:47'),(8428,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  877\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-30T13:30:10-06:00\",\"transaction\":{\"id\":\"traiq0z6pc6upnsuwkxq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-30T14:14:46-06:00\",\"operation_date\":\"2023-08-30T14:30:09-06:00\",\"description\":\"Pago Mensual academia: jose Fernando heredia vergara (10320173600)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"A18630AB1C3B9F14454CF70DC7114834_FLNUM5JWS9_1693422882.1648\",\"due_date\":\"2023-08-31T02:14:46-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"jose fernando\",\"last_name\":\"heredia vergara\",\"email\":\"josefernandoherediavergara@gmail.com\",\"phone_number\":\"3147654236\",\"address\":null,\"creation_date\":\"2023-08-30T14:14:46-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 19:30:10','2023-08-30 19:30:10'),(8429,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  877\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-30T13:33:12-06:00\",\"transaction\":{\"id\":\"traiq0z6pc6upnsuwkxq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-30T14:14:46-06:00\",\"operation_date\":\"2023-08-30T14:30:09-06:00\",\"description\":\"Pago Mensual academia: jose Fernando heredia vergara (10320173600)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"A18630AB1C3B9F14454CF70DC7114834_FLNUM5JWS9_1693422882.1648\",\"due_date\":\"2023-08-31T02:14:46-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"jose fernando\",\"last_name\":\"heredia vergara\",\"email\":\"josefernandoherediavergara@gmail.com\",\"phone_number\":\"3147654236\",\"address\":null,\"creation_date\":\"2023-08-30T14:14:46-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 19:33:12','2023-08-30 19:33:12'),(8430,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T14:43:25-05:00\",\"transaction\":{\"id\":\"trll31ebbjwlfd0gel15\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T14:42:49-05:00\",\"operation_date\":\"2023-08-30T14:42:49-05:00\",\"description\":\"Pago Mensual academia: Miguel Ospina Gómez (1021810313)\",\"error_message\":null,\"order_id\":\"7D2A383E54274888B4B73B97E1AAA491_V9LDN36O8S_1693424559.4798\",\"due_date\":\"2023-08-31T02:42:49-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Ospina Marín\",\"email\":\"Danielospinam@gmail.com\",\"phone_number\":\"3223493589\",\"address\":null,\"creation_date\":\"2023-08-30T14:42:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trll31ebbjwlfd0gel15/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 19:43:25','2023-08-30 19:43:25'),(8431,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T14:45:09-05:00\",\"transaction\":{\"id\":\"trll31ebbjwlfd0gel15\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"129506460\",\"creation_date\":\"2023-08-30T14:42:49-05:00\",\"operation_date\":\"2023-08-30T14:44:56-05:00\",\"description\":\"Pago Mensual academia: Miguel Ospina Gómez (1021810313)\",\"error_message\":null,\"order_id\":\"7D2A383E54274888B4B73B97E1AAA491_V9LDN36O8S_1693424559.4798\",\"due_date\":\"2023-08-31T02:42:49-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Ospina Marín\",\"email\":\"Danielospinam@gmail.com\",\"phone_number\":\"3223493589\",\"address\":null,\"creation_date\":\"2023-08-30T14:42:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 19:45:10','2023-08-30 19:45:10'),(8432,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T15:50:20-05:00\",\"transaction\":{\"id\":\"trpppgqjbgabh5q4lkjw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T15:47:52-05:00\",\"operation_date\":\"2023-08-30T15:47:52-05:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":null,\"order_id\":\"898AEF0932F6AAECDA27ABA8E9903991_GJO3AH4SY0_1693428467.6241\",\"due_date\":\"2023-08-31T03:47:52-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3104803815\",\"address\":null,\"creation_date\":\"2023-08-30T15:47:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpppgqjbgabh5q4lkjw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 20:50:21','2023-08-30 20:50:21'),(8433,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T15:52:35-05:00\",\"transaction\":{\"id\":\"trpppgqjbgabh5q4lkjw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"129703903\",\"creation_date\":\"2023-08-30T15:47:52-05:00\",\"operation_date\":\"2023-08-30T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":null,\"order_id\":\"898AEF0932F6AAECDA27ABA8E9903991_GJO3AH4SY0_1693428467.6241\",\"due_date\":\"2023-08-31T03:47:52-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhonatan \",\"last_name\":\"Muñoz \",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3104803815\",\"address\":null,\"creation_date\":\"2023-08-30T15:47:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 20:52:36','2023-08-30 20:52:36'),(8434,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T16:00:05-05:00\",\"transaction\":{\"id\":\"try3wtwijgmii5jwpywx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T15:59:35-05:00\",\"operation_date\":\"2023-08-30T15:59:35-05:00\",\"description\":\"Pago Mensual academia: Santiago Marquez Millán (1239489330)\",\"error_message\":null,\"order_id\":\"9308B0D6E5898366A4A986BC33F3D3E7_YSRH5PO9UG_1693429171.5959\",\"due_date\":\"2023-08-31T03:59:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Alicia\",\"last_name\":\"Millán Villanueva\",\"email\":\"amillanv@gmail.com\",\"phone_number\":\"3016685074\",\"address\":null,\"creation_date\":\"2023-08-30T15:59:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/try3wtwijgmii5jwpywx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 21:00:06','2023-08-30 21:00:06'),(8435,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T16:00:53-05:00\",\"transaction\":{\"id\":\"try3wtwijgmii5jwpywx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"129734687\",\"creation_date\":\"2023-08-30T15:59:35-05:00\",\"operation_date\":\"2023-08-30T16:00:48-05:00\",\"description\":\"Pago Mensual academia: Santiago Marquez Millán (1239489330)\",\"error_message\":null,\"order_id\":\"9308B0D6E5898366A4A986BC33F3D3E7_YSRH5PO9UG_1693429171.5959\",\"due_date\":\"2023-08-31T03:59:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Alicia\",\"last_name\":\"Millán Villanueva\",\"email\":\"amillanv@gmail.com\",\"phone_number\":\"3016685074\",\"address\":null,\"creation_date\":\"2023-08-30T15:59:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 21:00:54','2023-08-30 21:00:54'),(8436,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T17:55:58-05:00\",\"transaction\":{\"id\":\"trnzrk2h7e93n9coxwhb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T17:55:04-05:00\",\"operation_date\":\"2023-08-30T17:55:04-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Velasco Mejia (1036459050)\",\"error_message\":null,\"order_id\":\"34FFEB359A192EB8174B6854643CC046_DE7P9YOCSR_1693436100.2006\",\"due_date\":\"2023-08-31T05:55:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan david\",\"last_name\":\"velasco idarraga\",\"email\":\"juan.velascoidarraga@gmail.com\",\"phone_number\":\"3173315273\",\"address\":null,\"creation_date\":\"2023-08-30T17:55:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnzrk2h7e93n9coxwhb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 22:55:59','2023-08-30 22:55:59'),(8437,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T17:57:26-05:00\",\"transaction\":{\"id\":\"trnzrk2h7e93n9coxwhb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"130070676\",\"creation_date\":\"2023-08-30T17:55:04-05:00\",\"operation_date\":\"2023-08-30T17:57:02-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Velasco Mejia (1036459050)\",\"error_message\":null,\"order_id\":\"34FFEB359A192EB8174B6854643CC046_DE7P9YOCSR_1693436100.2006\",\"due_date\":\"2023-08-31T05:55:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan david\",\"last_name\":\"velasco idarraga\",\"email\":\"juan.velascoidarraga@gmail.com\",\"phone_number\":\"3173315273\",\"address\":null,\"creation_date\":\"2023-08-30T17:55:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 22:57:26','2023-08-30 22:57:26'),(8438,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T18:27:48-05:00\",\"transaction\":{\"id\":\"trwtqz3z717gp79uwfcz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T18:26:02-05:00\",\"operation_date\":\"2023-08-30T18:26:02-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez pacheco (1019906046)\",\"error_message\":null,\"order_id\":\"5505712229FB1EB500EFADDDC0353264_ZQ6UM308SJ_1693437958.9667\",\"due_date\":\"2023-08-31T06:26:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hugo\",\"last_name\":\"alvarez\",\"email\":\"hugoandres.alvarez@gmail.com\",\"phone_number\":\"3005865449\",\"address\":null,\"creation_date\":\"2023-08-30T18:26:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwtqz3z717gp79uwfcz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 23:27:48','2023-08-30 23:27:48'),(8439,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T18:30:12-05:00\",\"transaction\":{\"id\":\"trwtqz3z717gp79uwfcz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"130156300\",\"creation_date\":\"2023-08-30T18:26:02-05:00\",\"operation_date\":\"2023-08-30T18:30:06-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez pacheco (1019906046)\",\"error_message\":null,\"order_id\":\"5505712229FB1EB500EFADDDC0353264_ZQ6UM308SJ_1693437958.9667\",\"due_date\":\"2023-08-31T06:26:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hugo\",\"last_name\":\"alvarez\",\"email\":\"hugoandres.alvarez@gmail.com\",\"phone_number\":\"3005865449\",\"address\":null,\"creation_date\":\"2023-08-30T18:26:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 23:30:13','2023-08-30 23:30:13'),(8440,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  913\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T18:36:34-05:00\",\"transaction\":{\"id\":\"try2u3b5mloqmdu2vbqk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T18:35:45-05:00\",\"operation_date\":\"2023-08-30T18:35:45-05:00\",\"description\":\"Pago Mensual academia: Agustin Mora Sossa (1035015434)\",\"error_message\":null,\"order_id\":\"ABA18772FC70C8CBF79A79F413EF102B_G1KVL80BNH_1693438542.254\",\"due_date\":\"2023-08-31T06:35:45-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"David\",\"last_name\":\"Mora Quintero\",\"email\":\"dmoraqu@gmail.com\",\"phone_number\":\"3104013189\",\"address\":null,\"creation_date\":\"2023-08-30T18:35:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/try2u3b5mloqmdu2vbqk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 23:36:34','2023-08-30 23:36:34'),(8441,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  796\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T18:37:31-05:00\",\"transaction\":{\"id\":\"try2u3b5mloqmdu2vbqk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"130180128\",\"creation_date\":\"2023-08-30T18:35:45-05:00\",\"operation_date\":\"2023-08-30T18:37:18-05:00\",\"description\":\"Pago Mensual academia: Agustin Mora Sossa (1035015434)\",\"error_message\":null,\"order_id\":\"ABA18772FC70C8CBF79A79F413EF102B_G1KVL80BNH_1693438542.254\",\"due_date\":\"2023-08-31T06:35:45-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"David\",\"last_name\":\"Mora Quintero\",\"email\":\"dmoraqu@gmail.com\",\"phone_number\":\"3104013189\",\"address\":null,\"creation_date\":\"2023-08-30T18:35:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-30 23:37:32','2023-08-30 23:37:32'),(8442,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  948\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T21:14:33-05:00\",\"transaction\":{\"id\":\"trodaazz7ggb3vhuzmuf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T21:13:20-05:00\",\"operation_date\":\"2023-08-30T21:13:20-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Acevedo Atehortua (1025652843)\",\"error_message\":null,\"order_id\":\"87AE6FB631F7C8A627E8E28785D9992D_PE7ZVR4NFB_1693447996.4645\",\"due_date\":\"2023-08-31T09:13:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Andrea \",\"last_name\":\"Atehortua Higuita\",\"email\":\"naty1017147045@gmail.com\",\"phone_number\":\"3007211948\",\"address\":null,\"creation_date\":\"2023-08-30T21:13:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trodaazz7ggb3vhuzmuf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 02:14:33','2023-08-31 02:14:33'),(8443,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  831\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T21:16:07-05:00\",\"transaction\":{\"id\":\"trodaazz7ggb3vhuzmuf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"130571551\",\"creation_date\":\"2023-08-30T21:13:20-05:00\",\"operation_date\":\"2023-08-30T21:15:52-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Acevedo Atehortua (1025652843)\",\"error_message\":null,\"order_id\":\"87AE6FB631F7C8A627E8E28785D9992D_PE7ZVR4NFB_1693447996.4645\",\"due_date\":\"2023-08-31T09:13:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Andrea \",\"last_name\":\"Atehortua Higuita\",\"email\":\"naty1017147045@gmail.com\",\"phone_number\":\"3007211948\",\"address\":null,\"creation_date\":\"2023-08-30T21:13:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 02:16:07','2023-08-31 02:16:07'),(8444,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T22:03:05-05:00\",\"transaction\":{\"id\":\"tri4f9fjdyjzw8inpjb7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T22:02:17-05:00\",\"operation_date\":\"2023-08-30T22:02:17-05:00\",\"description\":\"Pago Mensual academia: emanuel muñoz supelano (1023548616)\",\"error_message\":null,\"order_id\":\"285A25C17F351708754CDB6D56F3962E_O1QPYTBVCH_1693450931.3393\",\"due_date\":\"2023-08-31T10:02:17-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Muñoz  salinas\",\"email\":\"sebasmsalinasr@gmail.com\",\"phone_number\":\"3205384693\",\"address\":null,\"creation_date\":\"2023-08-30T22:02:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tri4f9fjdyjzw8inpjb7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 03:03:06','2023-08-31 03:03:06'),(8445,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-30T21:24:09-06:00\",\"transaction\":{\"id\":\"tri4f9fjdyjzw8inpjb7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-30T22:02:17-06:00\",\"operation_date\":\"2023-08-30T22:03:11-06:00\",\"description\":\"Pago Mensual academia: emanuel muñoz supelano (1023548616)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"285A25C17F351708754CDB6D56F3962E_O1QPYTBVCH_1693450931.3393\",\"due_date\":\"2023-08-31T10:02:17-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Muñoz  salinas\",\"email\":\"sebasmsalinasr@gmail.com\",\"phone_number\":\"3205384693\",\"address\":null,\"creation_date\":\"2023-08-30T22:02:17-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 03:24:09','2023-08-31 03:24:09'),(8446,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  955\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-30T22:32:17-05:00\",\"transaction\":{\"id\":\"tr1kjeccvegj0lmimkx8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-30T22:31:32-05:00\",\"operation_date\":\"2023-08-30T22:31:32-05:00\",\"description\":\"Pago Mensual academia: jose Fernando heredia vergara (10320173600)\",\"error_message\":null,\"order_id\":\"A18630AB1C3B9F14454CF70DC7114834_FLNUM5JWS9_1693452685.8534\",\"due_date\":\"2023-08-31T10:31:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose fernando\",\"last_name\":\"heredia vergara\",\"email\":\"josefernandoherediavergara@gmail.com\",\"phone_number\":\"3147654236\",\"address\":null,\"creation_date\":\"2023-08-30T22:31:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1kjeccvegj0lmimkx8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 03:32:18','2023-08-31 03:32:18'),(8447,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  838\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-30T21:33:09-06:00\",\"transaction\":{\"id\":\"tr1kjeccvegj0lmimkx8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"130714084\",\"creation_date\":\"2023-08-30T22:31:32-06:00\",\"operation_date\":\"2023-08-30T22:33:00-06:00\",\"description\":\"Pago Mensual academia: jose Fernando heredia vergara (10320173600)\",\"error_message\":null,\"order_id\":\"A18630AB1C3B9F14454CF70DC7114834_FLNUM5JWS9_1693452685.8534\",\"due_date\":\"2023-08-31T10:31:32-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose fernando\",\"last_name\":\"heredia vergara\",\"email\":\"josefernandoherediavergara@gmail.com\",\"phone_number\":\"3147654236\",\"address\":null,\"creation_date\":\"2023-08-30T22:31:32-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 03:33:10','2023-08-31 03:33:10'),(8448,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-31T02:19:30-06:00\",\"transaction\":{\"id\":\"trcxvojnaeovbtiqrqp4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-29T15:38:40-06:00\",\"operation_date\":\"2023-08-29T15:38:40-06:00\",\"description\":\"Pago Mensual academia: Daniel Muñoz Jaramillo (1011514631)\",\"error_message\":null,\"order_id\":\"898AEF0932F6AAECDA27ABA8E9903991_GJO3AH4SY0_1693341514.5165\",\"due_date\":\"2023-08-30T03:38:40-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lina maria\",\"last_name\":\"jaramillo sanmartin\",\"email\":\"lineyjara8@gmail.com\",\"phone_number\":\"3006934069\",\"address\":null,\"creation_date\":\"2023-08-29T15:38:40-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcxvojnaeovbtiqrqp4/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 08:19:31','2023-08-31 08:19:31'),(8449,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-31T02:19:30-06:00\",\"transaction\":{\"id\":\"trsaknziktlctmhctvqy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-30T11:30:38-06:00\",\"operation_date\":\"2023-08-30T11:30:38-06:00\",\"description\":\"Pago Mensual academia: Simon Escobar Posso (1040737966)\",\"error_message\":null,\"order_id\":\"AF1B5754061EBBD4412ADFB34C8D3534_8N4SQPJ5YH_1693413035.118\",\"due_date\":\"2023-08-30T23:30:38-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"escobar Posso\",\"email\":\"simonescobar12345r@gmail.com\",\"phone_number\":\"3184161181\",\"address\":null,\"creation_date\":\"2023-08-30T11:30:38-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsaknziktlctmhctvqy/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 08:19:31','2023-08-31 08:19:31'),(8450,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  949\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-31T02:19:30-06:00\",\"transaction\":{\"id\":\"trfyyuv8qysua3yqrbmk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-30T09:33:17-06:00\",\"operation_date\":\"2023-08-30T09:33:17-06:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":null,\"order_id\":\"F23D125DA1E29E34C552F448610FF25F_RQASCW6IK3_1693405992.594\",\"due_date\":\"2023-08-30T21:33:17-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-08-30T09:33:17-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfyyuv8qysua3yqrbmk/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 08:19:31','2023-08-31 08:19:31'),(8451,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-31T02:19:30-06:00\",\"transaction\":{\"id\":\"trmfuyvjzrn3lfuq4mij\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-30T09:10:10-06:00\",\"operation_date\":\"2023-08-30T09:10:10-06:00\",\"description\":\"Pago Mensual academia: SANTIAGO MOYA ROJAS (1012435034)\",\"error_message\":null,\"order_id\":\"8ABFE8AC9EC214D68541FCB888C0B4C3_IQMO8DCYBW_1693404606.9932\",\"due_date\":\"2023-08-30T21:10:10-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-08-30T09:10:10-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmfuyvjzrn3lfuq4mij/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 08:19:31','2023-08-31 08:19:31'),(8452,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  663\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-08-31T02:20:05-06:00\",\"transaction\":{\"id\":\"trkvnlcov4twa8zotcgp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-29T14:14:28-06:00\",\"operation_date\":\"2023-08-29T14:14:28-06:00\",\"description\":\"prueba pse\",\"error_message\":null,\"order_id\":\"order_1693336439674\",\"customer_id\":\"aw06fl9x7ofdwbit7mt7\",\"due_date\":\"2023-08-30T02:14:28-06:00\",\"amount\":1.00,\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trkvnlcov4twa8zotcgp/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 08:20:06','2023-08-31 08:20:06'),(8453,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T05:47:41-05:00\",\"transaction\":{\"id\":\"tr7rbwp3oruigcwab2kd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T05:46:40-05:00\",\"operation_date\":\"2023-08-31T05:46:40-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Sierra Rua (1018263693)\",\"error_message\":null,\"order_id\":\"7553E94D39FD4649FF75386A83ED3789_103LKTH8E2_1693478793.0873\",\"due_date\":\"2023-08-31T17:46:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maximiliano\",\"last_name\":\"Sierra Rua\",\"email\":\"andrearua14@hotmail.com\",\"phone_number\":\"3014464474\",\"address\":null,\"creation_date\":\"2023-08-31T05:46:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7rbwp3oruigcwab2kd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 10:47:41','2023-08-31 10:47:41'),(8454,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T05:49:41-05:00\",\"transaction\":{\"id\":\"tr7rbwp3oruigcwab2kd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"130849201\",\"creation_date\":\"2023-08-31T05:46:40-05:00\",\"operation_date\":\"2023-08-31T05:49:32-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Sierra Rua (1018263693)\",\"error_message\":null,\"order_id\":\"7553E94D39FD4649FF75386A83ED3789_103LKTH8E2_1693478793.0873\",\"due_date\":\"2023-08-31T17:46:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maximiliano\",\"last_name\":\"Sierra Rua\",\"email\":\"andrearua14@hotmail.com\",\"phone_number\":\"3014464474\",\"address\":null,\"creation_date\":\"2023-08-31T05:46:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 10:49:41','2023-08-31 10:49:41'),(8455,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T07:49:02-05:00\",\"transaction\":{\"id\":\"trvggiicno4ihwgkymt3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T07:48:20-05:00\",\"operation_date\":\"2023-08-31T07:48:20-05:00\",\"description\":\"Pago Mensual academia: juan jose ortiz agudelo (1020312977)\",\"error_message\":null,\"order_id\":\"E36286B94D3C219F414E0427E5F73AA5_BGTPX03MHF_1693486096.9253\",\"due_date\":\"2023-08-31T19:48:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ruben\",\"last_name\":\"ortiz\",\"email\":\"ruben1121ortiz@gmail.com\",\"phone_number\":\"3225271511\",\"address\":null,\"creation_date\":\"2023-08-31T07:48:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvggiicno4ihwgkymt3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 12:49:02','2023-08-31 12:49:02'),(8456,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T07:50:14-05:00\",\"transaction\":{\"id\":\"trvggiicno4ihwgkymt3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"130975875\",\"creation_date\":\"2023-08-31T07:48:20-05:00\",\"operation_date\":\"2023-08-31T07:50:03-05:00\",\"description\":\"Pago Mensual academia: juan jose ortiz agudelo (1020312977)\",\"error_message\":null,\"order_id\":\"E36286B94D3C219F414E0427E5F73AA5_BGTPX03MHF_1693486096.9253\",\"due_date\":\"2023-08-31T19:48:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ruben\",\"last_name\":\"ortiz\",\"email\":\"ruben1121ortiz@gmail.com\",\"phone_number\":\"3225271511\",\"address\":null,\"creation_date\":\"2023-08-31T07:48:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 12:50:15','2023-08-31 12:50:15'),(8457,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T09:07:26-05:00\",\"transaction\":{\"id\":\"tr6ro3s319suigbiwa5g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T09:06:43-05:00\",\"operation_date\":\"2023-08-31T09:06:43-05:00\",\"description\":\"Pago Mensual academia: SANTIAGO MOYA ROJAS (1012435034)\",\"error_message\":null,\"order_id\":\"8ABFE8AC9EC214D68541FCB888C0B4C3_IQMO8DCYBW_1693490800.667\",\"due_date\":\"2023-08-31T21:06:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-08-31T09:06:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6ro3s319suigbiwa5g/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 14:07:27','2023-08-31 14:07:27'),(8458,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T09:09:13-05:00\",\"transaction\":{\"id\":\"tr6ro3s319suigbiwa5g\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"131148942\",\"creation_date\":\"2023-08-31T09:06:43-05:00\",\"operation_date\":\"2023-08-31T00:00:00-05:00\",\"description\":\"Pago Mensual academia: SANTIAGO MOYA ROJAS (1012435034)\",\"error_message\":null,\"order_id\":\"8ABFE8AC9EC214D68541FCB888C0B4C3_IQMO8DCYBW_1693490800.667\",\"due_date\":\"2023-08-31T21:06:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-08-31T09:06:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 14:09:13','2023-08-31 14:09:13'),(8459,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  912\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T09:12:11-05:00\",\"transaction\":{\"id\":\"tred1qecm7p3tzbu6lyy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-31T09:12:11-05:00\",\"operation_date\":\"2023-08-31T09:12:11-05:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":null,\"order_id\":\"F23D125DA1E29E34C552F448610FF25F_RQASCW6IK3_1693491128.7615\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-08-31T09:12:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tred1qecm7p3tzbu6lyy/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-31 14:12:12','2023-08-31 14:12:12'),(8460,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T09:54:37-05:00\",\"transaction\":{\"id\":\"trifm0hyzfio8weoflbg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T09:53:42-05:00\",\"operation_date\":\"2023-08-31T09:53:42-05:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":null,\"order_id\":\"1B32A022C52C0C6255C2A32E580BE34F_9VD20W3NCM_1693493618.5241\",\"due_date\":\"2023-08-31T21:53:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"xiomaragomez20@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-08-31T09:53:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trifm0hyzfio8weoflbg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 14:54:38','2023-08-31 14:54:38'),(8461,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T10:00:32-05:00\",\"transaction\":{\"id\":\"trtb6agfarmacqzcnt35\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T09:59:48-05:00\",\"operation_date\":\"2023-08-31T09:59:48-05:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":null,\"order_id\":\"240C945BB72980130446FC2B40FBB8E0_PJ9QU1ZNXM_1693493985.2804\",\"due_date\":\"2023-08-31T21:59:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"xiomaragomez20@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-08-31T09:59:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtb6agfarmacqzcnt35/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 15:00:33','2023-08-31 15:00:33'),(8462,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-31T09:06:13-06:00\",\"transaction\":{\"id\":\"trifm0hyzfio8weoflbg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-31T09:53:42-06:00\",\"operation_date\":\"2023-08-31T10:06:13-06:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"1B32A022C52C0C6255C2A32E580BE34F_9VD20W3NCM_1693493618.5241\",\"due_date\":\"2023-08-31T21:53:42-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"xiomaragomez20@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-08-31T09:53:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 15:06:14','2023-08-31 15:06:14'),(8463,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-31T09:12:12-06:00\",\"transaction\":{\"id\":\"trtb6agfarmacqzcnt35\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-31T09:59:48-06:00\",\"operation_date\":\"2023-08-31T10:12:12-06:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"240C945BB72980130446FC2B40FBB8E0_PJ9QU1ZNXM_1693493985.2804\",\"due_date\":\"2023-08-31T21:59:48-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"xiomaragomez20@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-08-31T09:59:48-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 15:12:13','2023-08-31 15:12:13'),(8464,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T10:14:11-05:00\",\"transaction\":{\"id\":\"trfxax5yef6x6ajgtpjs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T10:13:00-05:00\",\"operation_date\":\"2023-08-31T10:13:00-05:00\",\"description\":\"Pago Mensual academia: Mattias David Henao Vasquez (1155713038)\",\"error_message\":null,\"order_id\":\"9D068C869FD3E03FC606EC297FCD00BE_8LBPDEQNJH_1693494777.0999\",\"due_date\":\"2023-08-31T22:13:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"vasquez bustos\",\"email\":\"sarawac@hotmail.com\",\"phone_number\":\"3004331580\",\"address\":null,\"creation_date\":\"2023-08-31T10:13:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfxax5yef6x6ajgtpjs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 15:14:11','2023-08-31 15:14:11'),(8465,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T09:15:32-06:00\",\"transaction\":{\"id\":\"trfxax5yef6x6ajgtpjs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"131338364\",\"creation_date\":\"2023-08-31T10:13:00-06:00\",\"operation_date\":\"2023-08-31T10:15:28-06:00\",\"description\":\"Pago Mensual academia: Mattias David Henao Vasquez (1155713038)\",\"error_message\":null,\"order_id\":\"9D068C869FD3E03FC606EC297FCD00BE_8LBPDEQNJH_1693494777.0999\",\"due_date\":\"2023-08-31T22:13:00-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"vasquez bustos\",\"email\":\"sarawac@hotmail.com\",\"phone_number\":\"3004331580\",\"address\":null,\"creation_date\":\"2023-08-31T10:13:00-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 15:15:33','2023-08-31 15:15:33'),(8466,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T11:54:17-05:00\",\"transaction\":{\"id\":\"tr0ag84qvoxmrmtlor0u\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-31T11:54:17-05:00\",\"operation_date\":\"2023-08-31T11:54:17-05:00\",\"description\":\"Pago Mensual academia: Isaias Pineda Perez (1038876223)\",\"error_message\":null,\"order_id\":\"9E740B84BB48A64DDE25061566299467_UXRIJ74K2Z_1693500849.8471\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Pineda Adarve\",\"email\":\"juandavid_023@hotmail.com\",\"phone_number\":\"3187676787\",\"address\":null,\"creation_date\":\"2023-08-31T11:54:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0ag84qvoxmrmtlor0u/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-31 16:54:18','2023-08-31 16:54:18'),(8467,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1149\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T11:55:28-05:00\",\"transaction\":{\"id\":\"tr0ag84qvoxmrmtlor0u\",\"authorization\":\"R00867\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-31T11:54:17-05:00\",\"operation_date\":\"2023-08-31T11:55:27-05:00\",\"description\":\"Pago Mensual academia: Isaias Pineda Perez (1038876223)\",\"error_message\":null,\"order_id\":\"9E740B84BB48A64DDE25061566299467_UXRIJ74K2Z_1693500849.8471\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX3113\",\"holder_name\":\"Juan David Pineda\",\"expiration_year\":\"26\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":95000.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Pineda Adarve\",\"email\":\"juandavid_023@hotmail.com\",\"phone_number\":\"3187676787\",\"address\":null,\"creation_date\":\"2023-08-31T11:54:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0ag84qvoxmrmtlor0u/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-31 16:55:29','2023-08-31 16:55:29'),(8468,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T12:17:11-05:00\",\"transaction\":{\"id\":\"trmrrc055wughl6zztqy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T12:16:37-05:00\",\"operation_date\":\"2023-08-31T12:16:37-05:00\",\"description\":\"Pago Mensual academia: Isaac Calle Giraldo (1038267000)\",\"error_message\":null,\"order_id\":\"532B81FA223A1B1EC74139A5B8151D12_IG9H8S6CE0_1693502193.6205\",\"due_date\":\"2023-09-01T00:16:37-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Catherine\",\"last_name\":\"Giraldo\",\"email\":\"cathe.giraldo@hotmail.com\",\"phone_number\":\"3104745144\",\"address\":null,\"creation_date\":\"2023-08-31T12:16:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmrrc055wughl6zztqy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 17:17:12','2023-08-31 17:17:12'),(8469,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T12:18:14-05:00\",\"transaction\":{\"id\":\"trmrrc055wughl6zztqy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"131717791\",\"creation_date\":\"2023-08-31T12:16:37-05:00\",\"operation_date\":\"2023-08-31T12:17:51-05:00\",\"description\":\"Pago Mensual academia: Isaac Calle Giraldo (1038267000)\",\"error_message\":null,\"order_id\":\"532B81FA223A1B1EC74139A5B8151D12_IG9H8S6CE0_1693502193.6205\",\"due_date\":\"2023-09-01T00:16:37-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Catherine\",\"last_name\":\"Giraldo\",\"email\":\"cathe.giraldo@hotmail.com\",\"phone_number\":\"3104745144\",\"address\":null,\"creation_date\":\"2023-08-31T12:16:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 17:18:14','2023-08-31 17:18:14'),(8470,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T12:41:07-05:00\",\"transaction\":{\"id\":\"tr4ef46jvc8dv4s9g2kh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T12:40:26-05:00\",\"operation_date\":\"2023-08-31T12:40:26-05:00\",\"description\":\"Pago Mensual academia: agustin alvarez Aguirre (1040578518)\",\"error_message\":null,\"order_id\":\"9E406957D45FCB6C6F38C2ADA7BACE91_R7XOFQNZL4_1693503617.7203\",\"due_date\":\"2023-09-01T00:40:26-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"rodrigo\",\"last_name\":\"alvarez\",\"email\":\"rodrigo0524@hotmail.com\",\"phone_number\":\"3014063246\",\"address\":null,\"creation_date\":\"2023-08-31T12:40:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4ef46jvc8dv4s9g2kh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 17:41:07','2023-08-31 17:41:07'),(8471,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T12:42:09-05:00\",\"transaction\":{\"id\":\"tr4ef46jvc8dv4s9g2kh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"131786346\",\"creation_date\":\"2023-08-31T12:40:26-05:00\",\"operation_date\":\"2023-08-31T12:42:00-05:00\",\"description\":\"Pago Mensual academia: agustin alvarez Aguirre (1040578518)\",\"error_message\":null,\"order_id\":\"9E406957D45FCB6C6F38C2ADA7BACE91_R7XOFQNZL4_1693503617.7203\",\"due_date\":\"2023-09-01T00:40:26-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"rodrigo\",\"last_name\":\"alvarez\",\"email\":\"rodrigo0524@hotmail.com\",\"phone_number\":\"3014063246\",\"address\":null,\"creation_date\":\"2023-08-31T12:40:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 17:42:09','2023-08-31 17:42:09'),(8472,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T13:49:37-05:00\",\"transaction\":{\"id\":\"trco42bawdammwdrrdvm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-31T13:49:37-05:00\",\"operation_date\":\"2023-08-31T13:49:37-05:00\",\"description\":\"Pago Mensual academia: Juan José Peña Sierra (1035015306)\",\"error_message\":null,\"order_id\":\"56E6A93212E4482D99C84A639D254B67_20TWCDBMF5_1693507762.0544\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Peña Alvarez\",\"email\":\"juancho.pa@gmail.com\",\"phone_number\":\"3217865829\",\"address\":null,\"creation_date\":\"2023-08-31T13:49:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trco42bawdammwdrrdvm/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-31 18:49:38','2023-08-31 18:49:38'),(8473,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1139\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T13:50:34-05:00\",\"transaction\":{\"id\":\"trco42bawdammwdrrdvm\",\"authorization\":\"206308\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-31T13:49:37-05:00\",\"operation_date\":\"2023-08-31T13:50:33-05:00\",\"description\":\"Pago Mensual academia: Juan José Peña Sierra (1035015306)\",\"error_message\":null,\"order_id\":\"56E6A93212E4482D99C84A639D254B67_20TWCDBMF5_1693507762.0544\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459425XXXXXX4660\",\"holder_name\":\"JUAN D PENA A\",\"expiration_year\":\"27\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":105000.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Peña Alvarez\",\"email\":\"juancho.pa@gmail.com\",\"phone_number\":\"3217865829\",\"address\":null,\"creation_date\":\"2023-08-31T13:49:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trco42bawdammwdrrdvm/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-31 18:50:35','2023-08-31 18:50:35'),(8474,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T14:29:52-05:00\",\"transaction\":{\"id\":\"tr0h7uprtji9jlxdsavw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T14:28:44-05:00\",\"operation_date\":\"2023-08-31T14:28:44-05:00\",\"description\":\"Pago Inscripción academia: kevin mateo garcia zarria (1015191139)\",\"error_message\":null,\"order_id\":\"4764F37856FC727F70B666B8D0C4AB7A_CO85H7WGY4_1693510119.4407\",\"due_date\":\"2023-09-01T02:28:44-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"liliana maria\",\"last_name\":\"zarria\",\"email\":\"ppolizassyedictos@hotmail.com\",\"phone_number\":\"3013679859\",\"address\":null,\"creation_date\":\"2023-08-31T14:28:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0h7uprtji9jlxdsavw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 19:29:53','2023-08-31 19:29:53'),(8475,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  861\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-31T13:36:17-06:00\",\"transaction\":{\"id\":\"tr0h7uprtji9jlxdsavw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-31T14:28:44-06:00\",\"operation_date\":\"2023-08-31T14:30:02-06:00\",\"description\":\"Pago Inscripción academia: kevin mateo garcia zarria (1015191139)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"4764F37856FC727F70B666B8D0C4AB7A_CO85H7WGY4_1693510119.4407\",\"due_date\":\"2023-09-01T02:28:44-06:00\",\"error_code\":1007,\"amount\":431000.00,\"customer\":{\"name\":\"liliana maria\",\"last_name\":\"zarria\",\"email\":\"ppolizassyedictos@hotmail.com\",\"phone_number\":\"3013679859\",\"address\":null,\"creation_date\":\"2023-08-31T14:28:44-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 19:36:17','2023-08-31 19:36:17'),(8476,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  861\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-31T13:39:16-06:00\",\"transaction\":{\"id\":\"tr0h7uprtji9jlxdsavw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-31T14:28:44-06:00\",\"operation_date\":\"2023-08-31T14:30:02-06:00\",\"description\":\"Pago Inscripción academia: kevin mateo garcia zarria (1015191139)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"4764F37856FC727F70B666B8D0C4AB7A_CO85H7WGY4_1693510119.4407\",\"due_date\":\"2023-09-01T02:28:44-06:00\",\"error_code\":1007,\"amount\":431000.00,\"customer\":{\"name\":\"liliana maria\",\"last_name\":\"zarria\",\"email\":\"ppolizassyedictos@hotmail.com\",\"phone_number\":\"3013679859\",\"address\":null,\"creation_date\":\"2023-08-31T14:28:44-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 19:39:17','2023-08-31 19:39:17'),(8477,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T14:43:52-05:00\",\"transaction\":{\"id\":\"trr3ixyb1mqinqvgjv9y\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T14:42:18-05:00\",\"operation_date\":\"2023-08-31T14:42:18-05:00\",\"description\":\"Pago Inscripción academia: kevin mateo garcia zarria (1015191139)\",\"error_message\":null,\"order_id\":\"4764F37856FC727F70B666B8D0C4AB7A_CO85H7WGY4_1693510929.2652\",\"due_date\":\"2023-09-01T02:42:18-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"liliana maria\",\"last_name\":\"zarria\",\"email\":\"ppolizassyedictos@hotmail.com\",\"phone_number\":\"3013679859\",\"address\":null,\"creation_date\":\"2023-08-31T14:42:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr3ixyb1mqinqvgjv9y/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 19:43:53','2023-08-31 19:43:53'),(8478,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T14:47:30-05:00\",\"transaction\":{\"id\":\"trzglrmbigmxxtiud5or\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T14:46:57-05:00\",\"operation_date\":\"2023-08-31T14:46:57-05:00\",\"description\":\"Pago Mensual academia: kevin mateo garcia zarria (1015191139)\",\"error_message\":null,\"order_id\":\"2AD9E5E943E43CAD612A7996C12A8796_WUBDTSJ894_1693511208.6262\",\"due_date\":\"2023-09-01T02:46:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"liliana maria\",\"last_name\":\"zarria\",\"email\":\"ppolizassyedictos@hotmail.com\",\"phone_number\":\"3013679859\",\"address\":null,\"creation_date\":\"2023-08-31T14:46:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzglrmbigmxxtiud5or/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 19:47:31','2023-08-31 19:47:31'),(8479,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T13:48:21-06:00\",\"transaction\":{\"id\":\"trr3ixyb1mqinqvgjv9y\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"132144912\",\"creation_date\":\"2023-08-31T14:42:18-06:00\",\"operation_date\":\"2023-08-31T14:45:33-06:00\",\"description\":\"Pago Inscripción academia: kevin mateo garcia zarria (1015191139)\",\"error_message\":null,\"order_id\":\"4764F37856FC727F70B666B8D0C4AB7A_CO85H7WGY4_1693510929.2652\",\"due_date\":\"2023-09-01T02:42:18-06:00\",\"amount\":431000.00,\"customer\":{\"name\":\"liliana maria\",\"last_name\":\"zarria\",\"email\":\"ppolizassyedictos@hotmail.com\",\"phone_number\":\"3013679859\",\"address\":null,\"creation_date\":\"2023-08-31T14:42:18-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 19:48:22','2023-08-31 19:48:22'),(8480,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T13:51:25-06:00\",\"transaction\":{\"id\":\"trzglrmbigmxxtiud5or\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"132156003\",\"creation_date\":\"2023-08-31T14:46:57-06:00\",\"operation_date\":\"2023-08-31T14:49:12-06:00\",\"description\":\"Pago Mensual academia: kevin mateo garcia zarria (1015191139)\",\"error_message\":null,\"order_id\":\"2AD9E5E943E43CAD612A7996C12A8796_WUBDTSJ894_1693511208.6262\",\"due_date\":\"2023-09-01T02:46:57-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"liliana maria\",\"last_name\":\"zarria\",\"email\":\"ppolizassyedictos@hotmail.com\",\"phone_number\":\"3013679859\",\"address\":null,\"creation_date\":\"2023-08-31T14:46:57-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 19:51:26','2023-08-31 19:51:26'),(8481,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T16:06:15-05:00\",\"transaction\":{\"id\":\"triln3nntprcagitzc1f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T16:05:42-05:00\",\"operation_date\":\"2023-08-31T16:05:42-05:00\",\"description\":\"Pago Mensual academia: Antonio Orozco Arcila (1036460970)\",\"error_message\":null,\"order_id\":\"4172F3101212A2009C74B547B6DDF935_QVW1E0L9DX_1693515939.3162\",\"due_date\":\"2023-09-01T04:05:42-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Arcila Meluk\",\"email\":\"lauraarcilameluk@hotmail.com\",\"phone_number\":\"3206184717\",\"address\":null,\"creation_date\":\"2023-08-31T16:05:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triln3nntprcagitzc1f/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 21:06:16','2023-08-31 21:06:16'),(8482,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T16:07:37-05:00\",\"transaction\":{\"id\":\"triln3nntprcagitzc1f\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"132405869\",\"creation_date\":\"2023-08-31T16:05:42-05:00\",\"operation_date\":\"2023-08-31T16:07:28-05:00\",\"description\":\"Pago Mensual academia: Antonio Orozco Arcila (1036460970)\",\"error_message\":null,\"order_id\":\"4172F3101212A2009C74B547B6DDF935_QVW1E0L9DX_1693515939.3162\",\"due_date\":\"2023-09-01T04:05:42-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Arcila Meluk\",\"email\":\"lauraarcilameluk@hotmail.com\",\"phone_number\":\"3206184717\",\"address\":null,\"creation_date\":\"2023-08-31T16:05:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 21:07:37','2023-08-31 21:07:37'),(8483,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T16:59:14-05:00\",\"transaction\":{\"id\":\"trefyj3oa6mhhyzbbehv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T16:58:21-05:00\",\"operation_date\":\"2023-08-31T16:58:21-05:00\",\"description\":\"Pago Mensual academia: Santiago urrego Zapata (1020321239)\",\"error_message\":null,\"order_id\":\"94EF7214C4A90790186E255304F8FD1F_T9DEWNS058_1693519094.4691\",\"due_date\":\"2023-09-01T04:58:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yhony\",\"last_name\":\"urrego\",\"email\":\"yhonyurrego@gmail.com\",\"phone_number\":\"3175122540\",\"address\":null,\"creation_date\":\"2023-08-31T16:58:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trefyj3oa6mhhyzbbehv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 21:59:14','2023-08-31 21:59:14'),(8484,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T17:00:26-05:00\",\"transaction\":{\"id\":\"trefyj3oa6mhhyzbbehv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"132571802\",\"creation_date\":\"2023-08-31T16:58:21-05:00\",\"operation_date\":\"2023-08-31T17:00:16-05:00\",\"description\":\"Pago Mensual academia: Santiago urrego Zapata (1020321239)\",\"error_message\":null,\"order_id\":\"94EF7214C4A90790186E255304F8FD1F_T9DEWNS058_1693519094.4691\",\"due_date\":\"2023-09-01T04:58:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yhony\",\"last_name\":\"urrego\",\"email\":\"yhonyurrego@gmail.com\",\"phone_number\":\"3175122540\",\"address\":null,\"creation_date\":\"2023-08-31T16:58:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 22:00:27','2023-08-31 22:00:27'),(8485,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T18:22:52-05:00\",\"transaction\":{\"id\":\"tr2kmr8amaqyjcvqkixy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T18:22:09-05:00\",\"operation_date\":\"2023-08-31T18:22:09-05:00\",\"description\":\"Pago Mensual academia: Emilio Rios Niño (1025773978)\",\"error_message\":null,\"order_id\":\"9FE77AC7060E716F2D42631D156825C0_2UYKN94TR5_1693524122.1086\",\"due_date\":\"2023-09-01T06:22:09-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Rios Niño\",\"email\":\"jhonatanandresriosgracia1729@gmail.com\",\"phone_number\":\"3014168946\",\"address\":null,\"creation_date\":\"2023-08-31T18:22:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2kmr8amaqyjcvqkixy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 23:22:53','2023-08-31 23:22:53'),(8486,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T18:24:18-05:00\",\"transaction\":{\"id\":\"tr2kmr8amaqyjcvqkixy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"132810309\",\"creation_date\":\"2023-08-31T18:22:09-05:00\",\"operation_date\":\"2023-08-31T18:23:50-05:00\",\"description\":\"Pago Mensual academia: Emilio Rios Niño (1025773978)\",\"error_message\":null,\"order_id\":\"9FE77AC7060E716F2D42631D156825C0_2UYKN94TR5_1693524122.1086\",\"due_date\":\"2023-09-01T06:22:09-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Rios Niño\",\"email\":\"jhonatanandresriosgracia1729@gmail.com\",\"phone_number\":\"3014168946\",\"address\":null,\"creation_date\":\"2023-08-31T18:22:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-08-31 23:24:19','2023-08-31 23:24:19'),(8487,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T18:58:27-05:00\",\"transaction\":{\"id\":\"triqy5w4nitarcfqtvxd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-31T18:58:27-05:00\",\"operation_date\":\"2023-08-31T18:58:27-05:00\",\"description\":\"Pago Mensual academia: emmanuel granda sanchez (1027811176)\",\"error_message\":null,\"order_id\":\"D3802B1DC0D80D8A3C8CCC6CCC068E7C_5X21NSUBGP_1693526271.129\",\"amount\":165900.00,\"customer\":{\"name\":\"emmanuel\",\"last_name\":\"granda sanchez\",\"email\":\"francisabogada@gmail.com\",\"phone_number\":\"3108397353\",\"address\":null,\"creation_date\":\"2023-08-31T18:58:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triqy5w4nitarcfqtvxd/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-31 23:58:28','2023-08-31 23:58:28'),(8488,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1146\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T18:59:39-05:00\",\"transaction\":{\"id\":\"triqy5w4nitarcfqtvxd\",\"authorization\":\"185938\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-08-31T18:58:27-05:00\",\"operation_date\":\"2023-08-31T18:59:38-05:00\",\"description\":\"Pago Mensual academia: emmanuel granda sanchez (1027811176)\",\"error_message\":null,\"order_id\":\"D3802B1DC0D80D8A3C8CCC6CCC068E7C_5X21NSUBGP_1693526271.129\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX2319\",\"holder_name\":\"Diana Sanchez \",\"expiration_year\":\"27\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"emmanuel\",\"last_name\":\"granda sanchez\",\"email\":\"francisabogada@gmail.com\",\"phone_number\":\"3108397353\",\"address\":null,\"creation_date\":\"2023-08-31T18:58:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triqy5w4nitarcfqtvxd/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-08-31 23:59:40','2023-08-31 23:59:40'),(8489,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T19:00:51-05:00\",\"transaction\":{\"id\":\"trf5c6m0byzrea4a82of\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T18:59:53-05:00\",\"operation_date\":\"2023-08-31T18:59:53-05:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":null,\"order_id\":\"460B491B917D4185ED1F5BE97229721A_WL3C2O4EMB_1693526385.1286\",\"due_date\":\"2023-09-01T06:59:53-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-08-31T18:59:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trf5c6m0byzrea4a82of/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 00:00:52','2023-09-01 00:00:52'),(8490,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  845\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-31T18:03:18-06:00\",\"transaction\":{\"id\":\"trf5c6m0byzrea4a82of\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-31T18:59:53-06:00\",\"operation_date\":\"2023-08-31T18:59:53-06:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":\"Gateway rejected the operation: FAILED\",\"order_id\":\"460B491B917D4185ED1F5BE97229721A_WL3C2O4EMB_1693526385.1286\",\"due_date\":\"2023-09-01T06:59:53-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-08-31T18:59:52-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 00:03:19','2023-09-01 00:03:19'),(8491,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  903\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T19:09:52-05:00\",\"transaction\":{\"id\":\"trhvqzsgvkm0ajpmn4c9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-08-31T19:09:52-05:00\",\"operation_date\":\"2023-08-31T19:09:52-05:00\",\"description\":\"Pago Mensual academia: yehikar smith hurtado hurtado (1067918109)\",\"error_message\":null,\"order_id\":\"CB16B8498F74BA6B6A6873518624168C_IP4Q6UM8HC_1693526985.8905\",\"amount\":165900.00,\"customer\":{\"name\":\"yehikar smith\",\"last_name\":\"hurtado hurtado\",\"email\":\"sh3359925@gmail.com\",\"phone_number\":\"3007750141\",\"address\":null,\"creation_date\":\"2023-08-31T19:09:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhvqzsgvkm0ajpmn4c9/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 00:09:53','2023-09-01 00:09:53'),(8492,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  583\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-31T19:11:22-05:00\",\"transaction\":{\"id\":\"trqpzphtshuyocaarb3e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-08-31T19:11:22-05:00\",\"operation_date\":\"2023-08-31T19:11:22-05:00\",\"description\":\"Pago Mensual academia: yehikar smith hurtado hurtado (1067918109)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"CB16B8498F74BA6B6A6873518624168C_IP4Q6UM8HC_1693526985.8905\",\"error_code\":3001,\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 00:11:23','2023-09-01 00:11:23'),(8493,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T19:41:26-05:00\",\"transaction\":{\"id\":\"tryqtqklhigt5kcwo3b7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T19:40:38-05:00\",\"operation_date\":\"2023-08-31T19:40:38-05:00\",\"description\":\"Pago Mensual academia: Isaac Iral Hoyos (1038875814)\",\"error_message\":null,\"order_id\":\"D8C24CA8F23C562A5600876CA2A550CE_TZ947YKDPN_1693528835.4399\",\"due_date\":\"2023-09-01T07:40:38-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maria Cristina\",\"last_name\":\"Hoyos Gomez\",\"email\":\"cristi1128@hotmail.com\",\"phone_number\":\"3008235802\",\"address\":null,\"creation_date\":\"2023-08-31T19:40:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryqtqklhigt5kcwo3b7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 00:41:27','2023-09-01 00:41:27'),(8494,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T19:42:06-05:00\",\"transaction\":{\"id\":\"tryqtqklhigt5kcwo3b7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133060110\",\"creation_date\":\"2023-08-31T19:40:38-05:00\",\"operation_date\":\"2023-08-31T19:42:00-05:00\",\"description\":\"Pago Mensual academia: Isaac Iral Hoyos (1038875814)\",\"error_message\":null,\"order_id\":\"D8C24CA8F23C562A5600876CA2A550CE_TZ947YKDPN_1693528835.4399\",\"due_date\":\"2023-09-01T07:40:38-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maria Cristina\",\"last_name\":\"Hoyos Gomez\",\"email\":\"cristi1128@hotmail.com\",\"phone_number\":\"3008235802\",\"address\":null,\"creation_date\":\"2023-08-31T19:40:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 00:42:07','2023-09-01 00:42:07'),(8495,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T19:58:35-05:00\",\"transaction\":{\"id\":\"trrmsftzhldycf4w077h\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T19:57:25-05:00\",\"operation_date\":\"2023-08-31T19:57:25-05:00\",\"description\":\"Pago Mensual academia: Emilio Cano Quintero (1034927865)\",\"error_message\":null,\"order_id\":\"7EC3B3CF674F4F1D23E9D30C89426CCE_ACTEK7FY6P_1693529838.4348\",\"due_date\":\"2023-09-01T07:57:25-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Cano Quintero\",\"email\":\"stewart.cano@global.komatsu\",\"phone_number\":\"3183819449\",\"address\":null,\"creation_date\":\"2023-08-31T19:57:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrmsftzhldycf4w077h/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 00:58:36','2023-09-01 00:58:36'),(8496,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T19:59:49-05:00\",\"transaction\":{\"id\":\"trrmsftzhldycf4w077h\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133107532\",\"creation_date\":\"2023-08-31T19:57:25-05:00\",\"operation_date\":\"2023-08-31T19:59:35-05:00\",\"description\":\"Pago Mensual academia: Emilio Cano Quintero (1034927865)\",\"error_message\":null,\"order_id\":\"7EC3B3CF674F4F1D23E9D30C89426CCE_ACTEK7FY6P_1693529838.4348\",\"due_date\":\"2023-09-01T07:57:25-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Cano Quintero\",\"email\":\"stewart.cano@global.komatsu\",\"phone_number\":\"3183819449\",\"address\":null,\"creation_date\":\"2023-08-31T19:57:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 00:59:49','2023-09-01 00:59:49'),(8497,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T20:33:23-05:00\",\"transaction\":{\"id\":\"trl7pf7aub7dk6bze230\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T20:32:39-05:00\",\"operation_date\":\"2023-08-31T20:32:39-05:00\",\"description\":\"Pago Mensual academia: JERONIMO VALENCIA RUIZ (1020321138)\",\"error_message\":null,\"order_id\":\"D2D2C6E2445EEF2BCFF6BF0FDF69846C_CMLQBK9IOY_1693531957.73\",\"due_date\":\"2023-09-01T08:32:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"VALENCIA\",\"email\":\"alejovalencia25@hotmail.com\",\"phone_number\":\"3147004765\",\"address\":null,\"creation_date\":\"2023-08-31T20:32:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl7pf7aub7dk6bze230/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 01:33:23','2023-09-01 01:33:23'),(8498,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T20:34:01-05:00\",\"transaction\":{\"id\":\"trl7pf7aub7dk6bze230\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133201308\",\"creation_date\":\"2023-08-31T20:32:39-05:00\",\"operation_date\":\"2023-08-31T20:33:55-05:00\",\"description\":\"Pago Mensual academia: JERONIMO VALENCIA RUIZ (1020321138)\",\"error_message\":null,\"order_id\":\"D2D2C6E2445EEF2BCFF6BF0FDF69846C_CMLQBK9IOY_1693531957.73\",\"due_date\":\"2023-09-01T08:32:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"VALENCIA\",\"email\":\"alejovalencia25@hotmail.com\",\"phone_number\":\"3147004765\",\"address\":null,\"creation_date\":\"2023-08-31T20:32:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 01:34:01','2023-09-01 01:34:01'),(8499,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T20:52:17-05:00\",\"transaction\":{\"id\":\"trrslyohjhqvejo4vdzd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T20:51:03-05:00\",\"operation_date\":\"2023-08-31T20:51:03-05:00\",\"description\":\"Pago Mensual academia: Emanuel Pacheco Granada (1013466320)\",\"error_message\":null,\"order_id\":\"EE23E7AD9B473AD072D57AAA9B2A5222_2PR7HYDOZ6_1693533060.0076\",\"due_date\":\"2023-09-01T08:51:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Camila\",\"last_name\":\"Arango Granada\",\"email\":\"camilaarango2809@gmail.com\",\"phone_number\":\"3242761738\",\"address\":null,\"creation_date\":\"2023-08-31T20:51:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrslyohjhqvejo4vdzd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 01:52:17','2023-09-01 01:52:17'),(8500,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T19:54:17-06:00\",\"transaction\":{\"id\":\"trrslyohjhqvejo4vdzd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133251147\",\"creation_date\":\"2023-08-31T20:51:03-06:00\",\"operation_date\":\"2023-08-31T20:53:23-06:00\",\"description\":\"Pago Mensual academia: Emanuel Pacheco Granada (1013466320)\",\"error_message\":null,\"order_id\":\"EE23E7AD9B473AD072D57AAA9B2A5222_2PR7HYDOZ6_1693533060.0076\",\"due_date\":\"2023-09-01T08:51:03-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Camila\",\"last_name\":\"Arango Granada\",\"email\":\"camilaarango2809@gmail.com\",\"phone_number\":\"3242761738\",\"address\":null,\"creation_date\":\"2023-08-31T20:51:03-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 01:54:18','2023-09-01 01:54:18'),(8501,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T21:14:49-05:00\",\"transaction\":{\"id\":\"tranksma2dfczwevrny9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T21:14:03-05:00\",\"operation_date\":\"2023-08-31T21:14:03-05:00\",\"description\":\"Pago Mensual academia: Rafael Jaime Iguarán Vargas (1035007709)\",\"error_message\":null,\"order_id\":\"64D52E08CC03E6090BC1EF30B73CCB85_PKASQ51DMG_1693534438.6171\",\"due_date\":\"2023-09-01T09:14:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cecilia Antonella\",\"last_name\":\"Vargas Sofán\",\"email\":\"anchovar@gmail.com\",\"phone_number\":\"3145964879\",\"address\":null,\"creation_date\":\"2023-08-31T21:14:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tranksma2dfczwevrny9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 02:14:49','2023-09-01 02:14:49'),(8502,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T21:15:41-05:00\",\"transaction\":{\"id\":\"tranksma2dfczwevrny9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133308659\",\"creation_date\":\"2023-08-31T21:14:03-05:00\",\"operation_date\":\"2023-08-31T21:15:27-05:00\",\"description\":\"Pago Mensual academia: Rafael Jaime Iguarán Vargas (1035007709)\",\"error_message\":null,\"order_id\":\"64D52E08CC03E6090BC1EF30B73CCB85_PKASQ51DMG_1693534438.6171\",\"due_date\":\"2023-09-01T09:14:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cecilia Antonella\",\"last_name\":\"Vargas Sofán\",\"email\":\"anchovar@gmail.com\",\"phone_number\":\"3145964879\",\"address\":null,\"creation_date\":\"2023-08-31T21:14:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 02:15:42','2023-09-01 02:15:42'),(8503,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  953\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T21:34:34-05:00\",\"transaction\":{\"id\":\"trgxrqvdqwkogu3jtvgb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T21:33:53-05:00\",\"operation_date\":\"2023-08-31T21:33:53-05:00\",\"description\":\"Pago Mensual academia: Juan Alejandro Valencia Aguirre (1011244362)\",\"error_message\":null,\"order_id\":\"9D752CB08EF466FC480FBA981CFA44A1_19I83RM24L_1693535622.6889\",\"due_date\":\"2023-09-01T09:33:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paola Alejandra\",\"last_name\":\"Aguirre Gutiérrez\",\"email\":\"paoalejandra0209@hotmail.com\",\"phone_number\":\"3146726928\",\"address\":null,\"creation_date\":\"2023-08-31T21:33:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgxrqvdqwkogu3jtvgb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 02:34:35','2023-09-01 02:34:35'),(8504,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  875\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-08-31T21:37:27-05:00\",\"transaction\":{\"id\":\"trgxrqvdqwkogu3jtvgb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-08-31T21:33:53-05:00\",\"operation_date\":\"2023-08-31T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Juan Alejandro Valencia Aguirre (1011244362)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"9D752CB08EF466FC480FBA981CFA44A1_19I83RM24L_1693535622.6889\",\"due_date\":\"2023-09-01T09:33:53-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Paola Alejandra\",\"last_name\":\"Aguirre Gutiérrez\",\"email\":\"paoalejandra0209@hotmail.com\",\"phone_number\":\"3146726928\",\"address\":null,\"creation_date\":\"2023-08-31T21:33:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 02:37:28','2023-09-01 02:37:28'),(8505,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  953\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T21:40:44-05:00\",\"transaction\":{\"id\":\"trkii1ss869mlxuljdkz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T21:38:13-05:00\",\"operation_date\":\"2023-08-31T21:38:13-05:00\",\"description\":\"Pago Mensual academia: Juan Alejandro Valencia Aguirre (1011244362)\",\"error_message\":null,\"order_id\":\"9D752CB08EF466FC480FBA981CFA44A1_19I83RM24L_1693535875.9385\",\"due_date\":\"2023-09-01T09:38:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paola Alejandra\",\"last_name\":\"Aguirre Gutiérrez\",\"email\":\"paoalejandra0209@hotmail.com\",\"phone_number\":\"3146726928\",\"address\":null,\"creation_date\":\"2023-08-31T21:38:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkii1ss869mlxuljdkz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 02:40:44','2023-09-01 02:40:44'),(8506,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  836\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T21:41:53-05:00\",\"transaction\":{\"id\":\"trkii1ss869mlxuljdkz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133369968\",\"creation_date\":\"2023-08-31T21:38:13-05:00\",\"operation_date\":\"2023-08-31T21:41:45-05:00\",\"description\":\"Pago Mensual academia: Juan Alejandro Valencia Aguirre (1011244362)\",\"error_message\":null,\"order_id\":\"9D752CB08EF466FC480FBA981CFA44A1_19I83RM24L_1693535875.9385\",\"due_date\":\"2023-09-01T09:38:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paola Alejandra\",\"last_name\":\"Aguirre Gutiérrez\",\"email\":\"paoalejandra0209@hotmail.com\",\"phone_number\":\"3146726928\",\"address\":null,\"creation_date\":\"2023-08-31T21:38:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 02:41:54','2023-09-01 02:41:54'),(8507,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-08-31T23:23:40-05:00\",\"transaction\":{\"id\":\"try4v8ojoe8q7ew3gor5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-08-31T23:23:04-05:00\",\"operation_date\":\"2023-08-31T23:23:04-05:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"20125FD9B2D43E340A35FB0278DA235D_OVMIRWNTC9_1693542179.2292\",\"due_date\":\"2023-09-01T11:23:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-08-31T23:23:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/try4v8ojoe8q7ew3gor5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 04:23:41','2023-09-01 04:23:41'),(8508,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-08-31T23:24:50-05:00\",\"transaction\":{\"id\":\"try4v8ojoe8q7ew3gor5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133534921\",\"creation_date\":\"2023-08-31T23:23:04-05:00\",\"operation_date\":\"2023-08-31T23:24:37-05:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"20125FD9B2D43E340A35FB0278DA235D_OVMIRWNTC9_1693542179.2292\",\"due_date\":\"2023-09-01T11:23:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-08-31T23:23:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 04:24:50','2023-09-01 04:24:50'),(8509,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T04:54:44-05:00\",\"transaction\":{\"id\":\"tr5ykltltwhgjkghl5lv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T04:53:22-05:00\",\"operation_date\":\"2023-09-01T04:53:22-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Garcia Vargas (1027664631)\",\"error_message\":null,\"order_id\":\"3E195B0793297114C668F772C6E2D9BA_LP1JY5HU8K_1693561993.2495\",\"due_date\":\"2023-09-01T16:53:22-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Vargas Rivillas\",\"email\":\"vargas.ana@gmail.com\",\"phone_number\":\"3108741568\",\"address\":null,\"creation_date\":\"2023-09-01T04:53:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5ykltltwhgjkghl5lv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 09:54:45','2023-09-01 09:54:45'),(8510,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T04:56:23-05:00\",\"transaction\":{\"id\":\"tr5ykltltwhgjkghl5lv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133610840\",\"creation_date\":\"2023-09-01T04:53:22-05:00\",\"operation_date\":\"2023-09-01T04:56:08-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Garcia Vargas (1027664631)\",\"error_message\":null,\"order_id\":\"3E195B0793297114C668F772C6E2D9BA_LP1JY5HU8K_1693561993.2495\",\"due_date\":\"2023-09-01T16:53:22-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Vargas Rivillas\",\"email\":\"vargas.ana@gmail.com\",\"phone_number\":\"3108741568\",\"address\":null,\"creation_date\":\"2023-09-01T04:53:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 09:56:24','2023-09-01 09:56:24'),(8511,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T07:20:58-05:00\",\"transaction\":{\"id\":\"trzdoofpelethhf6i9eq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T07:20:21-05:00\",\"operation_date\":\"2023-09-01T07:20:21-05:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"_1693570819.4201\",\"due_date\":\"2023-09-01T19:20:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-09-01T07:20:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzdoofpelethhf6i9eq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 12:20:59','2023-09-01 12:20:59'),(8512,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  773\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T07:21:56-05:00\",\"transaction\":{\"id\":\"trzdoofpelethhf6i9eq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133732514\",\"creation_date\":\"2023-09-01T07:20:21-05:00\",\"operation_date\":\"2023-09-01T07:21:46-05:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"_1693570819.4201\",\"due_date\":\"2023-09-01T19:20:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-09-01T07:20:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 12:21:56','2023-09-01 12:21:56'),(8513,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  905\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T07:59:41-05:00\",\"transaction\":{\"id\":\"trayvpanejacmtht6qv2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-01T07:59:41-05:00\",\"operation_date\":\"2023-09-01T07:59:41-05:00\",\"description\":\"Pago Mensual academia: Juan Esteban Rios Vargas (1041534228)\",\"error_message\":null,\"order_id\":\"DDCB155487B88AAA80AED158006BDBDF_QEV3RGBHP5_1693573175.374\",\"amount\":165900.00,\"customer\":{\"name\":\"Orfidia Maria\",\"last_name\":\"Vargas Vargas\",\"email\":\"orfidiavargasvargas@gmail.com\",\"phone_number\":\"3114169625\",\"address\":null,\"creation_date\":\"2023-09-01T07:59:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trayvpanejacmtht6qv2/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 12:59:42','2023-09-01 12:59:42'),(8514,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T08:09:46-05:00\",\"transaction\":{\"id\":\"tr6pcvsiokq3vpuqkz73\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T08:08:57-05:00\",\"operation_date\":\"2023-09-01T08:08:57-05:00\",\"description\":\"Pago Mensual academia: Martin Hernandez Gomez (1033267201)\",\"error_message\":null,\"order_id\":\"3DB11D259A9DB7FB8965BDF25EC850B9_0IQDLTAZXW_1693573734.5749\",\"due_date\":\"2023-09-01T20:08:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Francisco\",\"last_name\":\"Hernandez\",\"email\":\"pacho8612@gmail.com\",\"phone_number\":\"3117897533\",\"address\":null,\"creation_date\":\"2023-09-01T08:08:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6pcvsiokq3vpuqkz73/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 13:09:47','2023-09-01 13:09:47'),(8515,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T08:10:40-05:00\",\"transaction\":{\"id\":\"tr6pcvsiokq3vpuqkz73\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133828180\",\"creation_date\":\"2023-09-01T08:08:57-05:00\",\"operation_date\":\"2023-09-01T08:10:30-05:00\",\"description\":\"Pago Mensual academia: Martin Hernandez Gomez (1033267201)\",\"error_message\":null,\"order_id\":\"3DB11D259A9DB7FB8965BDF25EC850B9_0IQDLTAZXW_1693573734.5749\",\"due_date\":\"2023-09-01T20:08:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Francisco\",\"last_name\":\"Hernandez\",\"email\":\"pacho8612@gmail.com\",\"phone_number\":\"3117897533\",\"address\":null,\"creation_date\":\"2023-09-01T08:08:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 13:10:41','2023-09-01 13:10:41'),(8516,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1163\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T08:12:43-05:00\",\"transaction\":{\"id\":\"trayvpanejacmtht6qv2\",\"authorization\":\"081242\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-01T07:59:41-05:00\",\"operation_date\":\"2023-09-01T08:12:42-05:00\",\"description\":\"Pago Mensual academia: Juan Esteban Rios Vargas (1041534228)\",\"error_message\":null,\"order_id\":\"DDCB155487B88AAA80AED158006BDBDF_QEV3RGBHP5_1693573175.374\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5782\",\"holder_name\":\"Orfidia Vargas Vargas\",\"expiration_year\":\"26\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Orfidia Maria\",\"last_name\":\"Vargas Vargas\",\"email\":\"orfidiavargasvargas@gmail.com\",\"phone_number\":\"3114169625\",\"address\":null,\"creation_date\":\"2023-09-01T07:59:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trayvpanejacmtht6qv2/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 13:12:43','2023-09-01 13:12:43'),(8517,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T08:13:34-05:00\",\"transaction\":{\"id\":\"trmkkujb8hlwwqlekvhz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T08:12:31-05:00\",\"operation_date\":\"2023-09-01T08:12:31-05:00\",\"description\":\"Pago Mensual academia: Josias Rave Rodríguez (1036453412)\",\"error_message\":null,\"order_id\":\"16738419B15B05E74E1ECB164430BFA8_JK3A9HV7PL_1693573946.9869\",\"due_date\":\"2023-09-01T20:12:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Rave\",\"email\":\"carlosmariorave71@gmail.com\",\"phone_number\":\"3216136223\",\"address\":null,\"creation_date\":\"2023-09-01T08:12:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmkkujb8hlwwqlekvhz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 13:13:34','2023-09-01 13:13:34'),(8518,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T08:15:52-05:00\",\"transaction\":{\"id\":\"trmkkujb8hlwwqlekvhz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133837180\",\"creation_date\":\"2023-09-01T08:12:31-05:00\",\"operation_date\":\"2023-09-01T08:15:23-05:00\",\"description\":\"Pago Mensual academia: Josias Rave Rodríguez (1036453412)\",\"error_message\":null,\"order_id\":\"16738419B15B05E74E1ECB164430BFA8_JK3A9HV7PL_1693573946.9869\",\"due_date\":\"2023-09-01T20:12:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Rave\",\"email\":\"carlosmariorave71@gmail.com\",\"phone_number\":\"3216136223\",\"address\":null,\"creation_date\":\"2023-09-01T08:12:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 13:15:52','2023-09-01 13:15:52'),(8519,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T08:40:47-05:00\",\"transaction\":{\"id\":\"trege8runkzboaqzpcfl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T08:39:33-05:00\",\"operation_date\":\"2023-09-01T08:39:33-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":null,\"order_id\":\"56DB57B4DB0A6FCB7F9E0C0B504F6472_4S8HJQ3RN1_1693575569.6093\",\"due_date\":\"2023-09-01T20:39:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-09-01T08:39:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trege8runkzboaqzpcfl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 13:40:47','2023-09-01 13:40:47'),(8520,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T08:57:05-05:00\",\"transaction\":{\"id\":\"trwacsqcxu7nbr9zmpjt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T08:56:15-05:00\",\"operation_date\":\"2023-09-01T08:56:15-05:00\",\"description\":\"Pago Mensual academia: isaac david Alvarez Callejas (1023659076)\",\"error_message\":null,\"order_id\":\"33EF701C8059391708F1C3DDBE9F1F81_3R1ICQNFTP_1693576571.5436\",\"due_date\":\"2023-09-01T20:56:15-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"lisandro\",\"last_name\":\"Alvarez\",\"email\":\"lisoalvarez1035@gmail.com\",\"phone_number\":\"3116065670\",\"address\":null,\"creation_date\":\"2023-09-01T08:56:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwacsqcxu7nbr9zmpjt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 13:57:06','2023-09-01 13:57:06'),(8521,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T08:00:15-06:00\",\"transaction\":{\"id\":\"trwacsqcxu7nbr9zmpjt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"133954670\",\"creation_date\":\"2023-09-01T08:56:15-06:00\",\"operation_date\":\"2023-09-01T08:58:52-06:00\",\"description\":\"Pago Mensual academia: isaac david Alvarez Callejas (1023659076)\",\"error_message\":null,\"order_id\":\"33EF701C8059391708F1C3DDBE9F1F81_3R1ICQNFTP_1693576571.5436\",\"due_date\":\"2023-09-01T20:56:15-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"lisandro\",\"last_name\":\"Alvarez\",\"email\":\"lisoalvarez1035@gmail.com\",\"phone_number\":\"3116065670\",\"address\":null,\"creation_date\":\"2023-09-01T08:56:15-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 14:00:15','2023-09-01 14:00:15'),(8522,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  845\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-01T08:03:11-06:00\",\"transaction\":{\"id\":\"trege8runkzboaqzpcfl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-01T08:39:33-06:00\",\"operation_date\":\"2023-09-01T08:40:54-06:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"56DB57B4DB0A6FCB7F9E0C0B504F6472_4S8HJQ3RN1_1693575569.6093\",\"due_date\":\"2023-09-01T20:39:33-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-09-01T08:39:33-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 14:03:12','2023-09-01 14:03:12'),(8523,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T10:03:32-05:00\",\"transaction\":{\"id\":\"trtdju7ho72kadoatsyw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-01T10:03:32-05:00\",\"operation_date\":\"2023-09-01T10:03:32-05:00\",\"description\":\"Pago Mensual academia: Vicente Echeverri Gallon (1023548982)\",\"error_message\":null,\"order_id\":\"D04D42CDF14579CD294E5079E0745411_0GXKFHAEI2_1693580609.012\",\"amount\":105000.00,\"customer\":{\"name\":\"Harvey\",\"last_name\":\"Echeverri Ceballos\",\"email\":\"harveyec@gmail.com\",\"phone_number\":\"3147090975\",\"address\":null,\"creation_date\":\"2023-09-01T10:03:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtdju7ho72kadoatsyw/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 15:03:32','2023-09-01 15:03:32'),(8524,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1136\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T10:04:36-05:00\",\"transaction\":{\"id\":\"trtdju7ho72kadoatsyw\",\"authorization\":\"769583\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-01T10:03:32-05:00\",\"operation_date\":\"2023-09-01T10:04:34-05:00\",\"description\":\"Pago Mensual academia: Vicente Echeverri Gallon (1023548982)\",\"error_message\":null,\"order_id\":\"D04D42CDF14579CD294E5079E0745411_0GXKFHAEI2_1693580609.012\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"454600XXXXXX4890\",\"holder_name\":\"Laura gallon\",\"expiration_year\":\"24\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"Harvey\",\"last_name\":\"Echeverri Ceballos\",\"email\":\"harveyec@gmail.com\",\"phone_number\":\"3147090975\",\"address\":null,\"creation_date\":\"2023-09-01T10:03:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtdju7ho72kadoatsyw/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 15:04:36','2023-09-01 15:04:36'),(8525,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  875\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T10:08:11-05:00\",\"transaction\":{\"id\":\"trctxda1ojhrcl0wj6io\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T10:07:04-05:00\",\"operation_date\":\"2023-09-01T10:07:04-05:00\",\"description\":\"Pago Mensual academia: MATIAS MOYA ROBAYO (1035005319)\",\"error_message\":null,\"order_id\":\"_1693580822.5094\",\"due_date\":\"2023-09-01T22:07:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MATIAS\",\"last_name\":\"MOYA ROBAYO\",\"email\":\"dalilarobayo@gmail.com\",\"phone_number\":\"3007333632\",\"address\":null,\"creation_date\":\"2023-09-01T10:07:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trctxda1ojhrcl0wj6io/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 15:08:11','2023-09-01 15:08:11'),(8526,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  797\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-01T10:08:19-05:00\",\"transaction\":{\"id\":\"trctxda1ojhrcl0wj6io\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-01T10:07:04-05:00\",\"operation_date\":\"2023-09-01T10:07:04-05:00\",\"description\":\"Pago Mensual academia: MATIAS MOYA ROBAYO (1035005319)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"_1693580822.5094\",\"due_date\":\"2023-09-01T22:07:04-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"MATIAS\",\"last_name\":\"MOYA ROBAYO\",\"email\":\"dalilarobayo@gmail.com\",\"phone_number\":\"3007333632\",\"address\":null,\"creation_date\":\"2023-09-01T10:07:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 15:08:19','2023-09-01 15:08:19'),(8527,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  875\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T10:09:56-05:00\",\"transaction\":{\"id\":\"trztahfouq9hixqzg5q1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T10:08:37-05:00\",\"operation_date\":\"2023-09-01T10:08:37-05:00\",\"description\":\"Pago Mensual academia: MATIAS MOYA ROBAYO (1035005319)\",\"error_message\":null,\"order_id\":\"_1693580914.8949\",\"due_date\":\"2023-09-01T22:08:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MATIAS\",\"last_name\":\"MOYA ROBAYO\",\"email\":\"dalilarobayo@gmail.com\",\"phone_number\":\"3007333632\",\"address\":null,\"creation_date\":\"2023-09-01T10:08:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trztahfouq9hixqzg5q1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 15:09:57','2023-09-01 15:09:57'),(8528,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  758\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T10:10:57-05:00\",\"transaction\":{\"id\":\"trztahfouq9hixqzg5q1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"134178870\",\"creation_date\":\"2023-09-01T10:08:37-05:00\",\"operation_date\":\"2023-09-01T10:10:41-05:00\",\"description\":\"Pago Mensual academia: MATIAS MOYA ROBAYO (1035005319)\",\"error_message\":null,\"order_id\":\"_1693580914.8949\",\"due_date\":\"2023-09-01T22:08:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MATIAS\",\"last_name\":\"MOYA ROBAYO\",\"email\":\"dalilarobayo@gmail.com\",\"phone_number\":\"3007333632\",\"address\":null,\"creation_date\":\"2023-09-01T10:08:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 15:10:57','2023-09-01 15:10:57'),(8529,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T10:18:00-05:00\",\"transaction\":{\"id\":\"tr7lpmpl6zxnztyhaioa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-01T10:17:59-05:00\",\"operation_date\":\"2023-09-01T10:17:59-05:00\",\"description\":\"Pago Mensual academia: MARTIN SIERRA ARCOS (1034670360)\",\"error_message\":null,\"order_id\":\"20885C72CA35D75619D6A378EDEA9F76_E9B2SC1H7R_1693581472.7882\",\"amount\":165900.00,\"customer\":{\"name\":\"DIANA CAROLINA\",\"last_name\":\"ARCOS OSORIO\",\"email\":\"dianitaarcos04@gmail.com\",\"phone_number\":\"3207900805\",\"address\":null,\"creation_date\":\"2023-09-01T10:17:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7lpmpl6zxnztyhaioa/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 15:18:00','2023-09-01 15:18:00'),(8530,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T10:18:51-05:00\",\"transaction\":{\"id\":\"trc1wmazrprinmycvnxr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T10:18:02-05:00\",\"operation_date\":\"2023-09-01T10:18:02-05:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":null,\"order_id\":\"F23D125DA1E29E34C552F448610FF25F_RQASCW6IK3_1693581479.5295\",\"due_date\":\"2023-09-01T22:18:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-09-01T10:18:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc1wmazrprinmycvnxr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 15:18:52','2023-09-01 15:18:52'),(8531,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1144\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T10:19:55-05:00\",\"transaction\":{\"id\":\"tr7lpmpl6zxnztyhaioa\",\"authorization\":\"168370\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-01T10:17:59-05:00\",\"operation_date\":\"2023-09-01T10:19:53-05:00\",\"description\":\"Pago Mensual academia: MARTIN SIERRA ARCOS (1034670360)\",\"error_message\":null,\"order_id\":\"20885C72CA35D75619D6A378EDEA9F76_E9B2SC1H7R_1693581472.7882\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555825XXXXXX7049\",\"holder_name\":\"Juan Antonio Sierra\",\"expiration_year\":\"31\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NUBANK\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"DIANA CAROLINA\",\"last_name\":\"ARCOS OSORIO\",\"email\":\"dianitaarcos04@gmail.com\",\"phone_number\":\"3207900805\",\"address\":null,\"creation_date\":\"2023-09-01T10:18:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7lpmpl6zxnztyhaioa/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 15:19:56','2023-09-01 15:19:56'),(8532,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  829\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T10:21:50-05:00\",\"transaction\":{\"id\":\"trc1wmazrprinmycvnxr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"134206943\",\"creation_date\":\"2023-09-01T10:18:02-05:00\",\"operation_date\":\"2023-09-01T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":null,\"order_id\":\"F23D125DA1E29E34C552F448610FF25F_RQASCW6IK3_1693581479.5295\",\"due_date\":\"2023-09-01T22:18:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-09-01T10:18:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 15:21:51','2023-09-01 15:21:51'),(8533,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T10:29:12-05:00\",\"transaction\":{\"id\":\"trzok22rpv47zptmsh7g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T10:28:31-05:00\",\"operation_date\":\"2023-09-01T10:28:31-05:00\",\"description\":\"Pago Mensual academia: martin parra acevedo (1021939537)\",\"error_message\":null,\"order_id\":\"1F72E258FF730035F2A1FB6637F562C2_U9BLVWS6I8_1693582108.9754\",\"due_date\":\"2023-09-01T22:28:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"acevedo giraldo\",\"email\":\"julyace05@hotmail.com\",\"phone_number\":\"3022542705\",\"address\":null,\"creation_date\":\"2023-09-01T10:28:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzok22rpv47zptmsh7g/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 15:29:13','2023-09-01 15:29:13'),(8534,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  846\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-01T09:42:11-06:00\",\"transaction\":{\"id\":\"trzok22rpv47zptmsh7g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-01T10:28:31-06:00\",\"operation_date\":\"2023-09-01T10:28:31-06:00\",\"description\":\"Pago Mensual academia: martin parra acevedo (1021939537)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"1F72E258FF730035F2A1FB6637F562C2_U9BLVWS6I8_1693582108.9754\",\"due_date\":\"2023-09-01T22:28:31-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"acevedo giraldo\",\"email\":\"julyace05@hotmail.com\",\"phone_number\":\"3022542705\",\"address\":null,\"creation_date\":\"2023-09-01T10:28:31-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 15:42:12','2023-09-01 15:42:12'),(8535,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T11:09:59-05:00\",\"transaction\":{\"id\":\"trznnzajc73k1yhoivtl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T11:08:56-05:00\",\"operation_date\":\"2023-09-01T11:08:56-05:00\",\"description\":\"Pago Mensual academia: Cristian Andres Cruz Salinas (1025664599)\",\"error_message\":null,\"order_id\":\"0937FB5864ED06FFB59AE5F9B5ED67A9_148IPT0LDE_1693584534.1009\",\"due_date\":\"2023-09-01T23:08:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cristian Andres\",\"last_name\":\"Cruz Salinas\",\"email\":\"siendouno_@hotmail.com\",\"phone_number\":\"3146167489\",\"address\":null,\"creation_date\":\"2023-09-01T11:08:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trznnzajc73k1yhoivtl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 16:10:00','2023-09-01 16:10:00'),(8536,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T11:11:00-05:00\",\"transaction\":{\"id\":\"trznnzajc73k1yhoivtl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"134372209\",\"creation_date\":\"2023-09-01T11:08:56-05:00\",\"operation_date\":\"2023-09-01T11:10:55-05:00\",\"description\":\"Pago Mensual academia: Cristian Andres Cruz Salinas (1025664599)\",\"error_message\":null,\"order_id\":\"0937FB5864ED06FFB59AE5F9B5ED67A9_148IPT0LDE_1693584534.1009\",\"due_date\":\"2023-09-01T23:08:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cristian Andres\",\"last_name\":\"Cruz Salinas\",\"email\":\"siendouno_@hotmail.com\",\"phone_number\":\"3146167489\",\"address\":null,\"creation_date\":\"2023-09-01T11:08:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 16:11:01','2023-09-01 16:11:01'),(8537,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  913\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T11:35:22-05:00\",\"transaction\":{\"id\":\"trzgm489wtyq6xzuax0r\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T11:34:15-05:00\",\"operation_date\":\"2023-09-01T11:34:15-05:00\",\"description\":\"Pago Mensual academia: Isabella Jones Sanin (1035001858)\",\"error_message\":null,\"order_id\":\"56517F19AA289885C43E8DB9137FB1B0_LOAR45TB3Y_1693586042.9927\",\"due_date\":\"2023-09-01T23:34:15-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Camilo\",\"last_name\":\"Jones\",\"email\":\"camilojones@gmail.com\",\"phone_number\":\"3116094343\",\"address\":null,\"creation_date\":\"2023-09-01T11:34:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzgm489wtyq6xzuax0r/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 16:35:22','2023-09-01 16:35:22'),(8538,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  796\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T11:39:06-05:00\",\"transaction\":{\"id\":\"trzgm489wtyq6xzuax0r\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"134455517\",\"creation_date\":\"2023-09-01T11:34:15-05:00\",\"operation_date\":\"2023-09-01T11:38:21-05:00\",\"description\":\"Pago Mensual academia: Isabella Jones Sanin (1035001858)\",\"error_message\":null,\"order_id\":\"56517F19AA289885C43E8DB9137FB1B0_LOAR45TB3Y_1693586042.9927\",\"due_date\":\"2023-09-01T23:34:15-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Camilo\",\"last_name\":\"Jones\",\"email\":\"camilojones@gmail.com\",\"phone_number\":\"3116094343\",\"address\":null,\"creation_date\":\"2023-09-01T11:34:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 16:39:07','2023-09-01 16:39:07'),(8539,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T12:27:13-05:00\",\"transaction\":{\"id\":\"trye5a5mbnu9vu9v5iq3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T12:26:22-05:00\",\"operation_date\":\"2023-09-01T12:26:22-05:00\",\"description\":\"Pago Mensual academia: Samuel Zapata ochoa (1036454926)\",\"error_message\":null,\"order_id\":\"CF88118AA2BA88DE549D08038AE76606_J5BNW4ST9O_1693589179.8288\",\"due_date\":\"2023-09-02T00:26:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marcela\",\"last_name\":\"Zapata ochoa\",\"email\":\"marcela.zapata@hotmail.com\",\"phone_number\":\"3128351811\",\"address\":null,\"creation_date\":\"2023-09-01T12:26:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trye5a5mbnu9vu9v5iq3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 17:27:14','2023-09-01 17:27:14'),(8540,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T12:28:49-05:00\",\"transaction\":{\"id\":\"trye5a5mbnu9vu9v5iq3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"134614084\",\"creation_date\":\"2023-09-01T12:26:22-05:00\",\"operation_date\":\"2023-09-01T12:28:33-05:00\",\"description\":\"Pago Mensual academia: Samuel Zapata ochoa (1036454926)\",\"error_message\":null,\"order_id\":\"CF88118AA2BA88DE549D08038AE76606_J5BNW4ST9O_1693589179.8288\",\"due_date\":\"2023-09-02T00:26:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marcela\",\"last_name\":\"Zapata ochoa\",\"email\":\"marcela.zapata@hotmail.com\",\"phone_number\":\"3128351811\",\"address\":null,\"creation_date\":\"2023-09-01T12:26:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 17:28:50','2023-09-01 17:28:50'),(8541,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  953\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T12:55:45-05:00\",\"transaction\":{\"id\":\"treyki0n5tedipmifzmp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T12:53:01-05:00\",\"operation_date\":\"2023-09-01T12:53:01-05:00\",\"description\":\"Pago Mensual academia: Dylan Alexander Grajales Castañeda (1032015427)\",\"error_message\":null,\"order_id\":\"6D3A2D24EB109DDDF78374FE5D0EE067_D9VZE75FGX_1693590772.4362\",\"due_date\":\"2023-09-02T00:53:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dylan Alexander\",\"last_name\":\"Grajales Castañeda\",\"email\":\"yesseniacas06@gmail.com\",\"phone_number\":\"3023306452\",\"address\":null,\"creation_date\":\"2023-09-01T12:53:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treyki0n5tedipmifzmp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 17:55:46','2023-09-01 17:55:46'),(8542,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T12:57:42-05:00\",\"transaction\":{\"id\":\"trxd1ddepc7xnc2hh1ak\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T12:56:38-05:00\",\"operation_date\":\"2023-09-01T12:56:38-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":null,\"order_id\":\"56DB57B4DB0A6FCB7F9E0C0B504F6472_4S8HJQ3RN1_1693590995.7925\",\"due_date\":\"2023-09-02T00:56:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-09-01T12:56:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxd1ddepc7xnc2hh1ak/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 17:57:42','2023-09-01 17:57:42'),(8543,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  836\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T12:00:29-06:00\",\"transaction\":{\"id\":\"treyki0n5tedipmifzmp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"134692302\",\"creation_date\":\"2023-09-01T12:53:01-06:00\",\"operation_date\":\"2023-09-01T12:57:44-06:00\",\"description\":\"Pago Mensual academia: Dylan Alexander Grajales Castañeda (1032015427)\",\"error_message\":null,\"order_id\":\"6D3A2D24EB109DDDF78374FE5D0EE067_D9VZE75FGX_1693590772.4362\",\"due_date\":\"2023-09-02T00:53:01-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dylan Alexander\",\"last_name\":\"Grajales Castañeda\",\"email\":\"yesseniacas06@gmail.com\",\"phone_number\":\"3023306452\",\"address\":null,\"creation_date\":\"2023-09-01T12:53:01-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 18:00:30','2023-09-01 18:00:30'),(8544,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  845\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-01T13:01:32-05:00\",\"transaction\":{\"id\":\"trxd1ddepc7xnc2hh1ak\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-01T12:56:38-05:00\",\"operation_date\":\"2023-09-01T12:57:52-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"56DB57B4DB0A6FCB7F9E0C0B504F6472_4S8HJQ3RN1_1693590995.7925\",\"due_date\":\"2023-09-02T00:56:38-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-09-01T12:56:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 18:01:33','2023-09-01 18:01:33'),(8545,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T13:07:10-05:00\",\"transaction\":{\"id\":\"trb0d2xbi0mqrqs5x8kx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T13:05:20-05:00\",\"operation_date\":\"2023-09-01T13:05:20-05:00\",\"description\":\"Pago Mensual academia: Simón Jiménez Cano (1130704440)\",\"error_message\":null,\"order_id\":\"D8847BE3F7CC1B14E9173908BEBB2106_FL7DXMGB14_1693591514.207\",\"due_date\":\"2023-09-02T01:05:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Jiménez Cano\",\"email\":\"mariacano3011@gmail.com\",\"phone_number\":\"3133424011\",\"address\":null,\"creation_date\":\"2023-09-01T13:05:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb0d2xbi0mqrqs5x8kx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 18:07:11','2023-09-01 18:07:11'),(8546,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T13:08:27-05:00\",\"transaction\":{\"id\":\"trb0d2xbi0mqrqs5x8kx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"134722754\",\"creation_date\":\"2023-09-01T13:05:20-05:00\",\"operation_date\":\"2023-09-01T13:08:20-05:00\",\"description\":\"Pago Mensual academia: Simón Jiménez Cano (1130704440)\",\"error_message\":null,\"order_id\":\"D8847BE3F7CC1B14E9173908BEBB2106_FL7DXMGB14_1693591514.207\",\"due_date\":\"2023-09-02T01:05:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Jiménez Cano\",\"email\":\"mariacano3011@gmail.com\",\"phone_number\":\"3133424011\",\"address\":null,\"creation_date\":\"2023-09-01T13:05:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 18:08:28','2023-09-01 18:08:28'),(8547,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T13:39:32-05:00\",\"transaction\":{\"id\":\"trgl66ddh4c0s2xzzfke\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T13:38:44-05:00\",\"operation_date\":\"2023-09-01T13:38:44-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Salazar Garces (1017938650)\",\"error_message\":null,\"order_id\":\"AAACCD2766EC67AECBE26459BB828D81_AMSGBIQ4Y8_1693593519.5416\",\"due_date\":\"2023-09-02T01:38:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ana maria\",\"last_name\":\"Garces Ramirez\",\"email\":\"anita-g-r@hotmail.com\",\"phone_number\":\"3103861294\",\"address\":null,\"creation_date\":\"2023-09-01T13:38:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgl66ddh4c0s2xzzfke/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 18:39:33','2023-09-01 18:39:33'),(8548,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T13:41:42-05:00\",\"transaction\":{\"id\":\"trgl66ddh4c0s2xzzfke\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"134808830\",\"creation_date\":\"2023-09-01T13:38:44-05:00\",\"operation_date\":\"2023-09-01T13:41:30-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Salazar Garces (1017938650)\",\"error_message\":null,\"order_id\":\"AAACCD2766EC67AECBE26459BB828D81_AMSGBIQ4Y8_1693593519.5416\",\"due_date\":\"2023-09-02T01:38:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ana maria\",\"last_name\":\"Garces Ramirez\",\"email\":\"anita-g-r@hotmail.com\",\"phone_number\":\"3103861294\",\"address\":null,\"creation_date\":\"2023-09-01T13:38:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 18:41:42','2023-09-01 18:41:42'),(8549,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T13:51:30-05:00\",\"transaction\":{\"id\":\"trytas0xnayryajhlyuw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T13:50:34-05:00\",\"operation_date\":\"2023-09-01T13:50:34-05:00\",\"description\":\"Pago Mensual academia: Thomas Cañaveral Mora (1023536002)\",\"error_message\":null,\"order_id\":\"F9BEB1E831FAF6AAEC2A5CECAF1AF293_E7JH28LFRD_1693594214.672\",\"due_date\":\"2023-09-02T01:50:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"julian\",\"last_name\":\"cañaveral\",\"email\":\"julian_canaveral@hotmail.com\",\"phone_number\":\"3147101466\",\"address\":null,\"creation_date\":\"2023-09-01T13:50:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trytas0xnayryajhlyuw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 18:51:31','2023-09-01 18:51:31'),(8550,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T13:52:19-05:00\",\"transaction\":{\"id\":\"trytas0xnayryajhlyuw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"134840740\",\"creation_date\":\"2023-09-01T13:50:34-05:00\",\"operation_date\":\"2023-09-01T13:52:11-05:00\",\"description\":\"Pago Mensual academia: Thomas Cañaveral Mora (1023536002)\",\"error_message\":null,\"order_id\":\"F9BEB1E831FAF6AAEC2A5CECAF1AF293_E7JH28LFRD_1693594214.672\",\"due_date\":\"2023-09-02T01:50:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"julian\",\"last_name\":\"cañaveral\",\"email\":\"julian_canaveral@hotmail.com\",\"phone_number\":\"3147101466\",\"address\":null,\"creation_date\":\"2023-09-01T13:50:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 18:52:20','2023-09-01 18:52:20'),(8551,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T14:08:56-05:00\",\"transaction\":{\"id\":\"trpifwbx1nxashiymgza\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T14:01:03-05:00\",\"operation_date\":\"2023-09-01T14:01:03-05:00\",\"description\":\"Pago Mensual academia: Pedro Garcia Gutierrez (1035002525)\",\"error_message\":null,\"order_id\":\"685AC8CADC1BE5AC98DA9556BC1C8D9E_D7QMT938PF_1693594859.7654\",\"due_date\":\"2023-09-02T02:01:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marcela \",\"last_name\":\" Gutierrez\",\"email\":\"cmarcelapedro@gmail.com\",\"phone_number\":\"3006093720\",\"address\":null,\"creation_date\":\"2023-09-01T14:01:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpifwbx1nxashiymgza/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 19:08:57','2023-09-01 19:08:57'),(8552,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T14:11:32-05:00\",\"transaction\":{\"id\":\"trpifwbx1nxashiymgza\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"134887211\",\"creation_date\":\"2023-09-01T14:01:03-05:00\",\"operation_date\":\"2023-09-01T14:10:40-05:00\",\"description\":\"Pago Mensual academia: Pedro Garcia Gutierrez (1035002525)\",\"error_message\":null,\"order_id\":\"685AC8CADC1BE5AC98DA9556BC1C8D9E_D7QMT938PF_1693594859.7654\",\"due_date\":\"2023-09-02T02:01:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marcela \",\"last_name\":\" Gutierrez\",\"email\":\"cmarcelapedro@gmail.com\",\"phone_number\":\"3006093720\",\"address\":null,\"creation_date\":\"2023-09-01T14:01:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 19:11:33','2023-09-01 19:11:33'),(8553,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T14:21:40-05:00\",\"transaction\":{\"id\":\"tr23t6tkmtqilt6ydtam\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-01T14:21:40-05:00\",\"operation_date\":\"2023-09-01T14:21:40-05:00\",\"description\":\"Pago Mensual academia: Mathias Aguirre Rojas (1243088137)\",\"error_message\":null,\"order_id\":\"21CE689121E39821D07D04FAAB328370_EOVQ271G3N_1693596097.0968\",\"amount\":105000.00,\"customer\":{\"name\":\"jose\",\"last_name\":\"aguirre cardona\",\"email\":\"jac.18@hotmail.com\",\"phone_number\":\"3004112843\",\"address\":null,\"creation_date\":\"2023-09-01T14:21:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr23t6tkmtqilt6ydtam/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 19:21:40','2023-09-01 19:21:40'),(8554,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1132\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T14:24:02-05:00\",\"transaction\":{\"id\":\"tr23t6tkmtqilt6ydtam\",\"authorization\":\"142402\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-01T14:21:40-05:00\",\"operation_date\":\"2023-09-01T14:24:01-05:00\",\"description\":\"Pago Mensual academia: Mathias Aguirre Rojas (1243088137)\",\"error_message\":null,\"order_id\":\"21CE689121E39821D07D04FAAB328370_EOVQ271G3N_1693596097.0968\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX4375\",\"holder_name\":\"Mastercard\",\"expiration_year\":\"26\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":105000.00,\"customer\":{\"name\":\"jose\",\"last_name\":\"aguirre cardona\",\"email\":\"jac.18@hotmail.com\",\"phone_number\":\"3004112843\",\"address\":null,\"creation_date\":\"2023-09-01T14:21:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr23t6tkmtqilt6ydtam/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 19:24:03','2023-09-01 19:24:03'),(8555,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T15:10:40-05:00\",\"transaction\":{\"id\":\"trq1yozcchsgjlghc8fp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-01T15:10:40-05:00\",\"operation_date\":\"2023-09-01T15:10:40-05:00\",\"description\":\"Pago Mensual academia: Juan Miguel Ospina Velasquez (1021934278)\",\"error_message\":null,\"order_id\":\"63CE12DCF1EDE17589BEFD56BB5281A5_BGCA9ODS8L_1693598416.1103\",\"amount\":165900.00,\"customer\":{\"name\":\"Michel Alhekine\",\"last_name\":\"Ospina Zapata\",\"email\":\"michelv10@hotmail.com\",\"phone_number\":\"3122103314\",\"address\":null,\"creation_date\":\"2023-09-01T15:10:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq1yozcchsgjlghc8fp/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 20:10:41','2023-09-01 20:10:41'),(8556,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1157\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T15:11:23-05:00\",\"transaction\":{\"id\":\"trq1yozcchsgjlghc8fp\",\"authorization\":\"697245\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-01T15:10:40-05:00\",\"operation_date\":\"2023-09-01T15:11:21-05:00\",\"description\":\"Pago Mensual academia: Juan Miguel Ospina Velasquez (1021934278)\",\"error_message\":null,\"order_id\":\"63CE12DCF1EDE17589BEFD56BB5281A5_BGCA9ODS8L_1693598416.1103\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"528209XXXXXX4349\",\"holder_name\":\"Michel Alhekin ospina\",\"expiration_year\":\"27\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"FALABELLA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Michel Alhekine\",\"last_name\":\"Ospina Zapata\",\"email\":\"michelv10@hotmail.com\",\"phone_number\":\"3122103314\",\"address\":null,\"creation_date\":\"2023-09-01T15:10:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq1yozcchsgjlghc8fp/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 20:11:24','2023-09-01 20:11:24'),(8557,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T15:16:53-05:00\",\"transaction\":{\"id\":\"trxxsxz5fv2bzy4ipppx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T15:14:56-05:00\",\"operation_date\":\"2023-09-01T15:14:56-05:00\",\"description\":\"Pago Mensual academia: EMMANUEL LOMBANA  DELGADO (1027742111)\",\"error_message\":null,\"order_id\":\"48DF7B8E8D586A55CF3E7054A4C85B30_UESJT0PG5M_1693599283.5233\",\"due_date\":\"2023-09-02T03:14:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"EMMANUEL\",\"last_name\":\"LOMBANA DELGADO\",\"email\":\"Mlombana@une.net.co\",\"phone_number\":\"3117643357\",\"address\":null,\"creation_date\":\"2023-09-01T15:14:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxxsxz5fv2bzy4ipppx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 20:16:53','2023-09-01 20:16:53'),(8558,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T15:20:19-05:00\",\"transaction\":{\"id\":\"trxxsxz5fv2bzy4ipppx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135083852\",\"creation_date\":\"2023-09-01T15:14:56-05:00\",\"operation_date\":\"2023-09-01T15:19:35-05:00\",\"description\":\"Pago Mensual academia: EMMANUEL LOMBANA  DELGADO (1027742111)\",\"error_message\":null,\"order_id\":\"48DF7B8E8D586A55CF3E7054A4C85B30_UESJT0PG5M_1693599283.5233\",\"due_date\":\"2023-09-02T03:14:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"EMMANUEL\",\"last_name\":\"LOMBANA DELGADO\",\"email\":\"Mlombana@une.net.co\",\"phone_number\":\"3117643357\",\"address\":null,\"creation_date\":\"2023-09-01T15:14:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 20:20:20','2023-09-01 20:20:20'),(8559,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T15:41:19-05:00\",\"transaction\":{\"id\":\"tr2r2wzudfoxcrguoemf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T15:39:54-05:00\",\"operation_date\":\"2023-09-01T15:39:54-05:00\",\"description\":\"Pago Mensual academia: Samuel Cardona Gallego (1035008672)\",\"error_message\":null,\"order_id\":\"258E130476290221F597C56D351224B6_7PJNIO8X50_1693600791.6889\",\"due_date\":\"2023-09-02T03:39:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Gallego  Fernández\",\"email\":\"diana-gallego@hotmail.com\",\"phone_number\":\"3116368634\",\"address\":null,\"creation_date\":\"2023-09-01T15:39:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2r2wzudfoxcrguoemf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 20:41:20','2023-09-01 20:41:20'),(8560,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T15:42:38-05:00\",\"transaction\":{\"id\":\"tr2r2wzudfoxcrguoemf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135156108\",\"creation_date\":\"2023-09-01T15:39:54-05:00\",\"operation_date\":\"2023-09-01T15:42:21-05:00\",\"description\":\"Pago Mensual academia: Samuel Cardona Gallego (1035008672)\",\"error_message\":null,\"order_id\":\"258E130476290221F597C56D351224B6_7PJNIO8X50_1693600791.6889\",\"due_date\":\"2023-09-02T03:39:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Gallego  Fernández\",\"email\":\"diana-gallego@hotmail.com\",\"phone_number\":\"3116368634\",\"address\":null,\"creation_date\":\"2023-09-01T15:39:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 20:42:38','2023-09-01 20:42:38'),(8561,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T15:43:07-05:00\",\"transaction\":{\"id\":\"trxwbleq2o3auamonbfj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T15:42:27-05:00\",\"operation_date\":\"2023-09-01T15:42:27-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":null,\"order_id\":\"56DB57B4DB0A6FCB7F9E0C0B504F6472_4S8HJQ3RN1_1693600945.1219\",\"due_date\":\"2023-09-02T03:42:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-09-01T15:42:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxwbleq2o3auamonbfj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 20:43:07','2023-09-01 20:43:07'),(8562,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T15:44:14-05:00\",\"transaction\":{\"id\":\"trxwbleq2o3auamonbfj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135161379\",\"creation_date\":\"2023-09-01T15:42:27-05:00\",\"operation_date\":\"2023-09-01T15:44:02-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":null,\"order_id\":\"56DB57B4DB0A6FCB7F9E0C0B504F6472_4S8HJQ3RN1_1693600945.1219\",\"due_date\":\"2023-09-02T03:42:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-09-01T15:42:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 20:44:15','2023-09-01 20:44:15'),(8563,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T15:58:23-05:00\",\"transaction\":{\"id\":\"trlbd0vammjbj63fe0ey\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T15:57:40-05:00\",\"operation_date\":\"2023-09-01T15:57:40-05:00\",\"description\":\"Pago Mensual academia: Juan Martin Gutierrez Correa (1017942179)\",\"error_message\":null,\"order_id\":\"CD3BBC2D7CA1BBDC055ACF58609E6C24_SN8TGLVXAP_1693601857.4327\",\"due_date\":\"2023-09-02T03:57:40-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cinthia Maria\",\"last_name\":\"Correa Muñoz\",\"email\":\"cinthi1123@hotmail.com\",\"phone_number\":\"3105353577\",\"address\":null,\"creation_date\":\"2023-09-01T15:57:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlbd0vammjbj63fe0ey/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 20:58:23','2023-09-01 20:58:23'),(8564,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T15:59:47-05:00\",\"transaction\":{\"id\":\"trlbd0vammjbj63fe0ey\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135207756\",\"creation_date\":\"2023-09-01T15:57:40-05:00\",\"operation_date\":\"2023-09-01T15:59:41-05:00\",\"description\":\"Pago Mensual academia: Juan Martin Gutierrez Correa (1017942179)\",\"error_message\":null,\"order_id\":\"CD3BBC2D7CA1BBDC055ACF58609E6C24_SN8TGLVXAP_1693601857.4327\",\"due_date\":\"2023-09-02T03:57:40-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cinthia Maria\",\"last_name\":\"Correa Muñoz\",\"email\":\"cinthi1123@hotmail.com\",\"phone_number\":\"3105353577\",\"address\":null,\"creation_date\":\"2023-09-01T15:57:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 20:59:47','2023-09-01 20:59:47'),(8565,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T16:27:59-05:00\",\"transaction\":{\"id\":\"trs2wj9k9hkiltyxfbiv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T16:27:06-05:00\",\"operation_date\":\"2023-09-01T16:27:06-05:00\",\"description\":\"Pago Mensual academia: JUAN DAVID RIVERA BOHORQUEZ (1020308065)\",\"error_message\":null,\"order_id\":\"91F9FEC9B080C74297A55C392B5F40A4_3HTROK876W_1693603623.3308\",\"due_date\":\"2023-09-02T04:27:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN DAVID\",\"last_name\":\"RIVERA BOHORQUEZ\",\"email\":\"durley374@yahoo.es\",\"phone_number\":\"3012429864\",\"address\":null,\"creation_date\":\"2023-09-01T16:27:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trs2wj9k9hkiltyxfbiv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 21:27:59','2023-09-01 21:27:59'),(8566,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T16:29:40-05:00\",\"transaction\":{\"id\":\"trs2wj9k9hkiltyxfbiv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135295659\",\"creation_date\":\"2023-09-01T16:27:06-05:00\",\"operation_date\":\"2023-09-01T16:29:08-05:00\",\"description\":\"Pago Mensual academia: JUAN DAVID RIVERA BOHORQUEZ (1020308065)\",\"error_message\":null,\"order_id\":\"91F9FEC9B080C74297A55C392B5F40A4_3HTROK876W_1693603623.3308\",\"due_date\":\"2023-09-02T04:27:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN DAVID\",\"last_name\":\"RIVERA BOHORQUEZ\",\"email\":\"durley374@yahoo.es\",\"phone_number\":\"3012429864\",\"address\":null,\"creation_date\":\"2023-09-01T16:27:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 21:29:41','2023-09-01 21:29:41'),(8567,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T17:00:13-05:00\",\"transaction\":{\"id\":\"trtk6uuy0ntv1n5m8lfk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-01T17:00:13-05:00\",\"operation_date\":\"2023-09-01T17:00:13-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Zapata agudelo (1035003635)\",\"error_message\":null,\"order_id\":\"9D684C589D67031A627AD33D59DB65E5_0J9P2DQYHA_1693605606.8366\",\"amount\":82950.00,\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Zapata castañeda\",\"email\":\"servievent@hotmail.com\",\"phone_number\":\"3182721230\",\"address\":null,\"creation_date\":\"2023-09-01T17:00:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtk6uuy0ntv1n5m8lfk/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 22:00:13','2023-09-01 22:00:13'),(8568,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1156\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T17:01:29-05:00\",\"transaction\":{\"id\":\"trtk6uuy0ntv1n5m8lfk\",\"authorization\":\"170128\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-01T17:00:13-05:00\",\"operation_date\":\"2023-09-01T17:01:28-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Zapata agudelo (1035003635)\",\"error_message\":null,\"order_id\":\"9D684C589D67031A627AD33D59DB65E5_0J9P2DQYHA_1693605606.8366\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1252\",\"holder_name\":\"Beatriz agudelo\",\"expiration_year\":\"26\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":82950.00,\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Zapata castañeda\",\"email\":\"servievent@hotmail.com\",\"phone_number\":\"3182721230\",\"address\":null,\"creation_date\":\"2023-09-01T17:00:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtk6uuy0ntv1n5m8lfk/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 22:01:29','2023-09-01 22:01:29'),(8569,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T17:49:03-05:00\",\"transaction\":{\"id\":\"trmgd4jcrretqxsrq2cu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T17:48:20-05:00\",\"operation_date\":\"2023-09-01T17:48:20-05:00\",\"description\":\"Pago Mensual academia: Nicolas Ortiz Cadavid (1035013795)\",\"error_message\":null,\"order_id\":\"B4AFFA4F6B27DF047D63D66FE4AC5600_4D3U52P86G_1693608493.5326\",\"due_date\":\"2023-09-02T05:48:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Cadavid Cardenas\",\"email\":\"ana.cadavidc@gmail.com\",\"phone_number\":\"3104623991\",\"address\":null,\"creation_date\":\"2023-09-01T17:48:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmgd4jcrretqxsrq2cu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 22:49:04','2023-09-01 22:49:04'),(8570,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T17:50:49-05:00\",\"transaction\":{\"id\":\"trmgd4jcrretqxsrq2cu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135504763\",\"creation_date\":\"2023-09-01T17:48:20-05:00\",\"operation_date\":\"2023-09-01T17:50:43-05:00\",\"description\":\"Pago Mensual academia: Nicolas Ortiz Cadavid (1035013795)\",\"error_message\":null,\"order_id\":\"B4AFFA4F6B27DF047D63D66FE4AC5600_4D3U52P86G_1693608493.5326\",\"due_date\":\"2023-09-02T05:48:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Cadavid Cardenas\",\"email\":\"ana.cadavidc@gmail.com\",\"phone_number\":\"3104623991\",\"address\":null,\"creation_date\":\"2023-09-01T17:48:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 22:50:50','2023-09-01 22:50:50'),(8571,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T17:56:35-05:00\",\"transaction\":{\"id\":\"trrhqxoolbhrtw7bf55l\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T17:55:35-05:00\",\"operation_date\":\"2023-09-01T17:55:35-05:00\",\"description\":\"Pago Mensual academia: samuel henao valencia (1017938015)\",\"error_message\":null,\"order_id\":\"3DF07FDAE1AB273A967AAA1D355B8BB6_LABKDC6J7Y_1693608930.6387\",\"due_date\":\"2023-09-02T05:55:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maria\",\"last_name\":\"valencia\",\"email\":\"tatica2784@hotmail.com\",\"phone_number\":\"3147413566\",\"address\":null,\"creation_date\":\"2023-09-01T17:55:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrhqxoolbhrtw7bf55l/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 22:56:35','2023-09-01 22:56:35'),(8572,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T18:00:00-05:00\",\"transaction\":{\"id\":\"trx1pmicazi1sqsk6enj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T17:59:00-05:00\",\"operation_date\":\"2023-09-01T17:59:00-05:00\",\"description\":\"Pago Mensual academia: Emiliano Velasquez Garcia (1027814924)\",\"error_message\":null,\"order_id\":\"CBF22AB286E2AD4900BDF5D6A2E47009_N80OQWGFD1_1693609136.6072\",\"due_date\":\"2023-09-02T05:59:00-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Gabriel\",\"last_name\":\"Velasquez Leon\",\"email\":\"juan20092@gmail.com\",\"phone_number\":\"3127835658\",\"address\":null,\"creation_date\":\"2023-09-01T17:59:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trx1pmicazi1sqsk6enj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:00:01','2023-09-01 23:00:01'),(8573,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T17:00:21-06:00\",\"transaction\":{\"id\":\"trrhqxoolbhrtw7bf55l\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135523363\",\"creation_date\":\"2023-09-01T17:55:35-06:00\",\"operation_date\":\"2023-09-01T17:58:36-06:00\",\"description\":\"Pago Mensual academia: samuel henao valencia (1017938015)\",\"error_message\":null,\"order_id\":\"3DF07FDAE1AB273A967AAA1D355B8BB6_LABKDC6J7Y_1693608930.6387\",\"due_date\":\"2023-09-02T05:55:35-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maria\",\"last_name\":\"valencia\",\"email\":\"tatica2784@hotmail.com\",\"phone_number\":\"3147413566\",\"address\":null,\"creation_date\":\"2023-09-01T17:55:35-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:00:21','2023-09-01 23:00:21'),(8574,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T18:00:59-05:00\",\"transaction\":{\"id\":\"trx1pmicazi1sqsk6enj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135531701\",\"creation_date\":\"2023-09-01T17:59:00-05:00\",\"operation_date\":\"2023-09-01T18:00:53-05:00\",\"description\":\"Pago Mensual academia: Emiliano Velasquez Garcia (1027814924)\",\"error_message\":null,\"order_id\":\"CBF22AB286E2AD4900BDF5D6A2E47009_N80OQWGFD1_1693609136.6072\",\"due_date\":\"2023-09-02T05:59:00-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Gabriel\",\"last_name\":\"Velasquez Leon\",\"email\":\"juan20092@gmail.com\",\"phone_number\":\"3127835658\",\"address\":null,\"creation_date\":\"2023-09-01T17:59:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:01:00','2023-09-01 23:01:00'),(8575,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T18:05:28-05:00\",\"transaction\":{\"id\":\"tr8qlhoqosovm6bvnea7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T18:04:25-05:00\",\"operation_date\":\"2023-09-01T18:04:25-05:00\",\"description\":\"Pago Mensual academia: Juan pablo ceballos londoño (1032022715)\",\"error_message\":null,\"order_id\":\"27E8E17134DD7083B050476733207EA1_R5HQBA0OIZ_1693609462.1848\",\"due_date\":\"2023-09-02T06:04:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuela \",\"last_name\":\"Londoño\",\"email\":\"yennylondono75@gmail.com\",\"phone_number\":\"3007349689\",\"address\":null,\"creation_date\":\"2023-09-01T18:04:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8qlhoqosovm6bvnea7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:05:29','2023-09-01 23:05:29'),(8576,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T18:08:16-05:00\",\"transaction\":{\"id\":\"tr8qlhoqosovm6bvnea7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135544679\",\"creation_date\":\"2023-09-01T18:04:25-05:00\",\"operation_date\":\"2023-09-01T18:06:48-05:00\",\"description\":\"Pago Mensual academia: Juan pablo ceballos londoño (1032022715)\",\"error_message\":null,\"order_id\":\"27E8E17134DD7083B050476733207EA1_R5HQBA0OIZ_1693609462.1848\",\"due_date\":\"2023-09-02T06:04:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuela \",\"last_name\":\"Londoño\",\"email\":\"yennylondono75@gmail.com\",\"phone_number\":\"3007349689\",\"address\":null,\"creation_date\":\"2023-09-01T18:04:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:08:17','2023-09-01 23:08:17'),(8577,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T18:11:21-05:00\",\"transaction\":{\"id\":\"tr0xfsnzbpmbkb2jibjc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T18:10:39-05:00\",\"operation_date\":\"2023-09-01T18:10:39-05:00\",\"description\":\"Pago Mensual academia: Lorenzo Turizo Vasco (1027665082)\",\"error_message\":null,\"order_id\":\"8A50BAE297807DA9E97722A0B3FD8F27_1693609836.9121\",\"due_date\":\"2023-09-02T06:10:39-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Turizo\",\"email\":\"jeturizog@gmail.com\",\"phone_number\":\"3156320944\",\"address\":null,\"creation_date\":\"2023-09-01T18:10:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0xfsnzbpmbkb2jibjc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:11:22','2023-09-01 23:11:22'),(8578,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  782\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T17:12:33-06:00\",\"transaction\":{\"id\":\"tr0xfsnzbpmbkb2jibjc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135558291\",\"creation_date\":\"2023-09-01T18:10:39-06:00\",\"operation_date\":\"2023-09-01T18:12:18-06:00\",\"description\":\"Pago Mensual academia: Lorenzo Turizo Vasco (1027665082)\",\"error_message\":null,\"order_id\":\"8A50BAE297807DA9E97722A0B3FD8F27_1693609836.9121\",\"due_date\":\"2023-09-02T06:10:39-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Turizo\",\"email\":\"jeturizog@gmail.com\",\"phone_number\":\"3156320944\",\"address\":null,\"creation_date\":\"2023-09-01T18:10:39-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:12:33','2023-09-01 23:12:33'),(8579,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T18:15:05-05:00\",\"transaction\":{\"id\":\"trdgrivhm5dn0trmiiiq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T18:14:04-05:00\",\"operation_date\":\"2023-09-01T18:14:04-05:00\",\"description\":\"Pago Mensual academia: Emmanuel perez Restrepo (1034999806)\",\"error_message\":null,\"order_id\":\"9332C513EF44B682E9347822C2E457AC_30PBHI78O9_1693610042.1167\",\"due_date\":\"2023-09-02T06:14:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ferney Alfonso\",\"last_name\":\"perez Arango\",\"email\":\"hue.so@hotmail.com\",\"phone_number\":\"3122510356\",\"address\":null,\"creation_date\":\"2023-09-01T18:14:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdgrivhm5dn0trmiiiq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:15:05','2023-09-01 23:15:05'),(8580,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T18:15:09-05:00\",\"transaction\":{\"id\":\"trsnyzirgmrw5dyfiyw9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T18:13:16-05:00\",\"operation_date\":\"2023-09-01T18:13:16-05:00\",\"description\":\"Pago Mensual academia: Mario Jose Arango Cedeño (1035013666)\",\"error_message\":null,\"order_id\":\"092CB13C22D51C22B9035A2B4FE76B00_YAO9LKZTUB_1693609993.6213\",\"due_date\":\"2023-09-02T06:13:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Arango Rueda\",\"email\":\"arangorueda77@gmail.com\",\"phone_number\":\"3217465380\",\"address\":null,\"creation_date\":\"2023-09-01T18:13:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsnyzirgmrw5dyfiyw9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:15:10','2023-09-01 23:15:10'),(8581,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T18:17:08-05:00\",\"transaction\":{\"id\":\"trdgrivhm5dn0trmiiiq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135566952\",\"creation_date\":\"2023-09-01T18:14:04-05:00\",\"operation_date\":\"2023-09-01T18:16:58-05:00\",\"description\":\"Pago Mensual academia: Emmanuel perez Restrepo (1034999806)\",\"error_message\":null,\"order_id\":\"9332C513EF44B682E9347822C2E457AC_30PBHI78O9_1693610042.1167\",\"due_date\":\"2023-09-02T06:14:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ferney Alfonso\",\"last_name\":\"perez Arango\",\"email\":\"hue.so@hotmail.com\",\"phone_number\":\"3122510356\",\"address\":null,\"creation_date\":\"2023-09-01T18:14:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:17:08','2023-09-01 23:17:08'),(8582,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T18:17:18-05:00\",\"transaction\":{\"id\":\"trsnyzirgmrw5dyfiyw9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135567087\",\"creation_date\":\"2023-09-01T18:13:16-05:00\",\"operation_date\":\"2023-09-01T18:16:28-05:00\",\"description\":\"Pago Mensual academia: Mario Jose Arango Cedeño (1035013666)\",\"error_message\":null,\"order_id\":\"092CB13C22D51C22B9035A2B4FE76B00_YAO9LKZTUB_1693609993.6213\",\"due_date\":\"2023-09-02T06:13:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Arango Rueda\",\"email\":\"arangorueda77@gmail.com\",\"phone_number\":\"3217465380\",\"address\":null,\"creation_date\":\"2023-09-01T18:13:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:17:18','2023-09-01 23:17:18'),(8583,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T18:24:07-05:00\",\"transaction\":{\"id\":\"trfdc6i8cqso1m6fipff\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T18:21:23-05:00\",\"operation_date\":\"2023-09-01T18:21:23-05:00\",\"description\":\"Pago Mensual academia: Matias Ospina Bedoya (1028142492)\",\"error_message\":null,\"order_id\":\"7BA6D33C373FEA56B7258003B16C68E5_0S8IUTORCH_1693610480.321\",\"due_date\":\"2023-09-02T06:21:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos mario\",\"last_name\":\"Ospina Ramirez\",\"email\":\"matiasospina323@gmail.com\",\"phone_number\":\"3106323718\",\"address\":null,\"creation_date\":\"2023-09-01T18:21:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfdc6i8cqso1m6fipff/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:24:07','2023-09-01 23:24:07'),(8584,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T17:27:15-06:00\",\"transaction\":{\"id\":\"trfdc6i8cqso1m6fipff\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135587782\",\"creation_date\":\"2023-09-01T18:21:23-06:00\",\"operation_date\":\"2023-09-01T18:25:34-06:00\",\"description\":\"Pago Mensual academia: Matias Ospina Bedoya (1028142492)\",\"error_message\":null,\"order_id\":\"7BA6D33C373FEA56B7258003B16C68E5_0S8IUTORCH_1693610480.321\",\"due_date\":\"2023-09-02T06:21:23-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos mario\",\"last_name\":\"Ospina Ramirez\",\"email\":\"matiasospina323@gmail.com\",\"phone_number\":\"3106323718\",\"address\":null,\"creation_date\":\"2023-09-01T18:21:23-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:27:16','2023-09-01 23:27:16'),(8585,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T18:30:01-05:00\",\"transaction\":{\"id\":\"tryob8xy3dsrfsypygbw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-01T18:30:00-05:00\",\"operation_date\":\"2023-09-01T18:30:00-05:00\",\"description\":\"Pago Mensual academia: Nicolas Buitrago Gaviria (1034995250)\",\"error_message\":null,\"order_id\":\"641D77DD5271FCA28764612A028D9C8E_A8RFK4LJ3N_1693610993.3485\",\"amount\":165900.00,\"customer\":{\"name\":\"Estella\",\"last_name\":\"Gaviria Restrepo\",\"email\":\"estellagaviriar@une.net.co\",\"phone_number\":\"3104639177\",\"address\":null,\"creation_date\":\"2023-09-01T18:30:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryob8xy3dsrfsypygbw/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 23:30:01','2023-09-01 23:30:01'),(8586,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1143\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T18:31:04-05:00\",\"transaction\":{\"id\":\"tryob8xy3dsrfsypygbw\",\"authorization\":\"864356\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-01T18:30:00-05:00\",\"operation_date\":\"2023-09-01T18:31:04-05:00\",\"description\":\"Pago Mensual academia: Nicolas Buitrago Gaviria (1034995250)\",\"error_message\":null,\"order_id\":\"641D77DD5271FCA28764612A028D9C8E_A8RFK4LJ3N_1693610993.3485\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491268XXXXXX7497\",\"holder_name\":\"Ramiro Buitrago Issa\",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"amount\":165900.00,\"customer\":{\"name\":\"Estella\",\"last_name\":\"Gaviria Restrepo\",\"email\":\"estellagaviriar@une.net.co\",\"phone_number\":\"3104639177\",\"address\":null,\"creation_date\":\"2023-09-01T18:30:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryob8xy3dsrfsypygbw/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-01 23:31:05','2023-09-01 23:31:05'),(8587,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T18:31:09-05:00\",\"transaction\":{\"id\":\"trsaheoq63lzhphgaxin\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T18:30:15-05:00\",\"operation_date\":\"2023-09-01T18:30:15-05:00\",\"description\":\"Pago Mensual academia: Matias Ospina Bedoya (1028142492)\",\"error_message\":null,\"order_id\":\"211A7A84D3D5CE4D80347DA11E0C85ED_UQNRGH1MEF_1693611012.6297\",\"due_date\":\"2023-09-02T06:30:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Marcela\",\"last_name\":\"Bedoya Patiño\",\"email\":\"matiasospina323@gmail.com\",\"phone_number\":\"3217710974\",\"address\":null,\"creation_date\":\"2023-09-01T18:30:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsaheoq63lzhphgaxin/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:31:09','2023-09-01 23:31:09'),(8588,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T18:33:04-05:00\",\"transaction\":{\"id\":\"trsaheoq63lzhphgaxin\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"135603547\",\"creation_date\":\"2023-09-01T18:30:15-05:00\",\"operation_date\":\"2023-09-01T18:32:37-05:00\",\"description\":\"Pago Mensual academia: Matias Ospina Bedoya (1028142492)\",\"error_message\":null,\"order_id\":\"211A7A84D3D5CE4D80347DA11E0C85ED_UQNRGH1MEF_1693611012.6297\",\"due_date\":\"2023-09-02T06:30:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Marcela\",\"last_name\":\"Bedoya Patiño\",\"email\":\"matiasospina323@gmail.com\",\"phone_number\":\"3217710974\",\"address\":null,\"creation_date\":\"2023-09-01T18:30:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:33:05','2023-09-01 23:33:05'),(8589,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T18:44:51-05:00\",\"transaction\":{\"id\":\"trwjdx2qcvpuzgrwzer0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T18:43:27-05:00\",\"operation_date\":\"2023-09-01T18:43:27-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":null,\"order_id\":\"D74CB35426F3D808325876F45B69DBF1_JX4A2ZES8G_1693611803.3878\",\"due_date\":\"2023-09-02T06:43:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-09-01T18:43:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwjdx2qcvpuzgrwzer0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:44:52','2023-09-01 23:44:52'),(8590,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  857\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-01T18:46:45-05:00\",\"transaction\":{\"id\":\"trwjdx2qcvpuzgrwzer0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-01T18:43:27-05:00\",\"operation_date\":\"2023-09-01T18:45:00-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"D74CB35426F3D808325876F45B69DBF1_JX4A2ZES8G_1693611803.3878\",\"due_date\":\"2023-09-02T06:43:27-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-09-01T18:43:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-01 23:46:45','2023-09-01 23:46:45'),(8591,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  883\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T21:19:26-05:00\",\"transaction\":{\"id\":\"trctcsrdebzlwckpcdoj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-01T21:19:26-05:00\",\"operation_date\":\"2023-09-01T21:19:26-05:00\",\"description\":\"Pago Mensual academia: jeronimo vasquez vargas (1035012182)\",\"error_message\":null,\"order_id\":\"28D437661D95291767E7402DFE969962_5DLSH6XZWE_1693621163.1091\",\"amount\":165900.00,\"customer\":{\"name\":\"david\",\"last_name\":\"vasquez\",\"email\":\"davidvg88@hotmail.com\",\"phone_number\":\"3146486117\",\"address\":null,\"creation_date\":\"2023-09-01T21:19:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trctcsrdebzlwckpcdoj/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-02 02:19:27','2023-09-02 02:19:27'),(8592,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1137\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T21:20:07-05:00\",\"transaction\":{\"id\":\"trctcsrdebzlwckpcdoj\",\"authorization\":\"R03249\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-01T21:19:26-05:00\",\"operation_date\":\"2023-09-01T21:20:06-05:00\",\"description\":\"Pago Mensual academia: jeronimo vasquez vargas (1035012182)\",\"error_message\":null,\"order_id\":\"28D437661D95291767E7402DFE969962_5DLSH6XZWE_1693621163.1091\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX7640\",\"holder_name\":\"David vasquez g\",\"expiration_year\":\"27\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"david\",\"last_name\":\"vasquez\",\"email\":\"davidvg88@hotmail.com\",\"phone_number\":\"3146486117\",\"address\":null,\"creation_date\":\"2023-09-01T21:19:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trctcsrdebzlwckpcdoj/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-02 02:20:07','2023-09-02 02:20:07'),(8593,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T23:23:49-05:00\",\"transaction\":{\"id\":\"tr0aksubvr3m7ivp3uyw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T23:23:19-05:00\",\"operation_date\":\"2023-09-01T23:23:19-05:00\",\"description\":\"Pago Mensual academia: Emiliano Dávila Moná (1020316845)\",\"error_message\":null,\"order_id\":\"4625D8E31DAD7D1C4C83399A6EB62F0C_EU7654RPAL_1693628591.9498\",\"due_date\":\"2023-09-02T11:23:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-09-01T23:23:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0aksubvr3m7ivp3uyw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 04:23:50','2023-09-02 04:23:50'),(8594,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T23:24:54-05:00\",\"transaction\":{\"id\":\"tr0aksubvr3m7ivp3uyw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136122838\",\"creation_date\":\"2023-09-01T23:23:19-05:00\",\"operation_date\":\"2023-09-01T23:24:34-05:00\",\"description\":\"Pago Mensual academia: Emiliano Dávila Moná (1020316845)\",\"error_message\":null,\"order_id\":\"4625D8E31DAD7D1C4C83399A6EB62F0C_EU7654RPAL_1693628591.9498\",\"due_date\":\"2023-09-02T11:23:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-09-01T23:23:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 04:24:55','2023-09-02 04:24:55'),(8595,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-01T23:26:40-05:00\",\"transaction\":{\"id\":\"trspzolvl02wtrztsple\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-01T23:25:57-05:00\",\"operation_date\":\"2023-09-01T23:25:57-05:00\",\"description\":\"Pago Mensual academia: Cristóbal Dávila Moná (1035007965)\",\"error_message\":null,\"order_id\":\"7F6CAF1F0BA788CD7953D817724C2B6E_IOCXTSKDPJ_1693628754.1989\",\"due_date\":\"2023-09-02T11:25:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-09-01T23:25:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trspzolvl02wtrztsple/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 04:26:40','2023-09-02 04:26:40'),(8596,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-01T23:27:59-05:00\",\"transaction\":{\"id\":\"trspzolvl02wtrztsple\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136124825\",\"creation_date\":\"2023-09-01T23:25:57-05:00\",\"operation_date\":\"2023-09-01T23:27:24-05:00\",\"description\":\"Pago Mensual academia: Cristóbal Dávila Moná (1035007965)\",\"error_message\":null,\"order_id\":\"7F6CAF1F0BA788CD7953D817724C2B6E_IOCXTSKDPJ_1693628754.1989\",\"due_date\":\"2023-09-02T11:25:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-09-01T23:25:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 04:28:00','2023-09-02 04:28:00'),(8597,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-02T02:52:29-06:00\",\"transaction\":{\"id\":\"trz6a5lgz6k2cbws1ejf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-30T16:13:10-06:00\",\"operation_date\":\"2023-08-30T16:13:10-06:00\",\"description\":\"Pago Inscripción academia: kevin mateo garcia zarria (1015191139)\",\"error_message\":null,\"order_id\":\"2CFA3753D6A524711ACB5FCE38EECA1A_IQFMDLGHEC_1693429977.5598\",\"due_date\":\"2023-08-31T04:13:10-06:00\",\"amount\":431000.00,\"customer\":{\"name\":\"liliana maria\",\"last_name\":\"zarria\",\"email\":\"ppolizassyedictos@hotmail.com\",\"phone_number\":\"3013679859\",\"address\":null,\"creation_date\":\"2023-08-30T16:13:10-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz6a5lgz6k2cbws1ejf/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 08:52:30','2023-09-02 08:52:30'),(8598,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-02T02:52:29-06:00\",\"transaction\":{\"id\":\"tr5gj7dxaijcycule1qw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-30T16:55:14-06:00\",\"operation_date\":\"2023-08-30T16:55:14-06:00\",\"description\":\"Pago Inscripción academia: kevin mateo garcia zarria (1015191139)\",\"error_message\":null,\"order_id\":\"4764F37856FC727F70B666B8D0C4AB7A_CO85H7WGY4_1693432473.4894\",\"due_date\":\"2023-08-31T04:55:14-06:00\",\"amount\":431000.00,\"customer\":{\"name\":\"liliana maria\",\"last_name\":\"zarria\",\"email\":\"ppolizassyedictos@hotmail.com\",\"phone_number\":\"3013679859\",\"address\":null,\"creation_date\":\"2023-08-30T16:55:14-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5gj7dxaijcycule1qw/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 08:52:30','2023-09-02 08:52:30'),(8599,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-02T02:52:29-06:00\",\"transaction\":{\"id\":\"trqrjc7avpakfq3yipt2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-30T16:57:50-06:00\",\"operation_date\":\"2023-08-30T16:57:50-06:00\",\"description\":\"Pago Mensual academia: kevin mateo garcia zarria (1015191139)\",\"error_message\":null,\"order_id\":\"2AD9E5E943E43CAD612A7996C12A8796_WUBDTSJ894_1693432663.9614\",\"due_date\":\"2023-08-31T04:57:50-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"liliana maria\",\"last_name\":\"zarria\",\"email\":\"ppolizassyedictos@hotmail.com\",\"phone_number\":\"3013679859\",\"address\":null,\"creation_date\":\"2023-08-30T16:57:50-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqrjc7avpakfq3yipt2/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 08:52:30','2023-09-02 08:52:30'),(8600,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-02T02:52:29-06:00\",\"transaction\":{\"id\":\"trvzjnzchneigy706qsf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-30T18:16:05-06:00\",\"operation_date\":\"2023-08-30T18:16:05-06:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":null,\"order_id\":\"56DB57B4DB0A6FCB7F9E0C0B504F6472_4S8HJQ3RN1_1693437360.1034\",\"due_date\":\"2023-08-31T06:16:05-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-08-30T18:16:05-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvzjnzchneigy706qsf/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 08:52:30','2023-09-02 08:52:30'),(8601,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-02T02:52:29-06:00\",\"transaction\":{\"id\":\"tridnnfzp53u54y4rg8b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-31T07:59:00-06:00\",\"operation_date\":\"2023-08-31T07:59:00-06:00\",\"description\":\"Pago Mensual academia: JERONIMO VALENCIA RUIZ (1020321138)\",\"error_message\":null,\"order_id\":\"D2D2C6E2445EEF2BCFF6BF0FDF69846C_CMLQBK9IOY_1693486736.6009\",\"due_date\":\"2023-08-31T19:59:00-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"VALENCIA\",\"email\":\"alejovalencia25@hotmail.com\",\"phone_number\":\"3147004765\",\"address\":null,\"creation_date\":\"2023-08-31T07:59:00-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tridnnfzp53u54y4rg8b/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 08:52:30','2023-09-02 08:52:30'),(8602,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  959\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-02T02:52:29-06:00\",\"transaction\":{\"id\":\"tre6b9orz7ruca3hznff\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-30T20:25:23-06:00\",\"operation_date\":\"2023-08-30T20:25:23-06:00\",\"description\":\"Pago Mensual academia: jose Fernando heredia vergara (10320173600)\",\"error_message\":null,\"order_id\":\"A18630AB1C3B9F14454CF70DC7114834_FLNUM5JWS9_1693445117.1402\",\"due_date\":\"2023-08-31T08:25:23-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose fernando\",\"last_name\":\"heredia vergara\",\"email\":\"josefernandoherediavergara@gmail.com\",\"phone_number\":\"3147654236\",\"address\":null,\"creation_date\":\"2023-08-30T20:25:23-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre6b9orz7ruca3hznff/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 08:52:30','2023-09-02 08:52:30'),(8603,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T07:08:05-05:00\",\"transaction\":{\"id\":\"trpmybjt7cb7kmd9wyna\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T07:07:07-05:00\",\"operation_date\":\"2023-09-02T07:07:07-05:00\",\"description\":\"Pago Mensual academia: David Garcés Monsalve (1023561352)\",\"error_message\":null,\"order_id\":\"201E5BACD665709851B77148E225B332_XEGHZTIPW6_1693656423.2254\",\"due_date\":\"2023-09-02T19:07:07-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"Monsalve\",\"email\":\"cata.m2014@gmail.com\",\"phone_number\":\"3014253009\",\"address\":null,\"creation_date\":\"2023-09-02T07:07:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpmybjt7cb7kmd9wyna/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 12:08:06','2023-09-02 12:08:06'),(8604,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T07:09:48-05:00\",\"transaction\":{\"id\":\"treiq2lxx3z2khl2thkd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T07:09:03-05:00\",\"operation_date\":\"2023-09-02T07:09:03-05:00\",\"description\":\"Pago Mensual academia: martin parra acevedo (1021939537)\",\"error_message\":null,\"order_id\":\"1F72E258FF730035F2A1FB6637F562C2_U9BLVWS6I8_1693656539.9366\",\"due_date\":\"2023-09-02T19:09:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"acevedo giraldo\",\"email\":\"julyace05@hotmail.com\",\"phone_number\":\"3022542705\",\"address\":null,\"creation_date\":\"2023-09-02T07:09:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treiq2lxx3z2khl2thkd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 12:09:49','2023-09-02 12:09:49'),(8605,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T07:10:36-05:00\",\"transaction\":{\"id\":\"trpmybjt7cb7kmd9wyna\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136258035\",\"creation_date\":\"2023-09-02T07:07:07-05:00\",\"operation_date\":\"2023-09-02T07:10:27-05:00\",\"description\":\"Pago Mensual academia: David Garcés Monsalve (1023561352)\",\"error_message\":null,\"order_id\":\"201E5BACD665709851B77148E225B332_XEGHZTIPW6_1693656423.2254\",\"due_date\":\"2023-09-02T19:07:07-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"Monsalve\",\"email\":\"cata.m2014@gmail.com\",\"phone_number\":\"3014253009\",\"address\":null,\"creation_date\":\"2023-09-02T07:07:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 12:10:37','2023-09-02 12:10:37'),(8606,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T06:12:11-06:00\",\"transaction\":{\"id\":\"treiq2lxx3z2khl2thkd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136259678\",\"creation_date\":\"2023-09-02T07:09:03-06:00\",\"operation_date\":\"2023-09-02T07:10:40-06:00\",\"description\":\"Pago Mensual academia: martin parra acevedo (1021939537)\",\"error_message\":null,\"order_id\":\"1F72E258FF730035F2A1FB6637F562C2_U9BLVWS6I8_1693656539.9366\",\"due_date\":\"2023-09-02T19:09:03-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"acevedo giraldo\",\"email\":\"julyace05@hotmail.com\",\"phone_number\":\"3022542705\",\"address\":null,\"creation_date\":\"2023-09-02T07:09:03-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 12:12:12','2023-09-02 12:12:12'),(8607,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T07:46:36-05:00\",\"transaction\":{\"id\":\"trdg5flegsqecf8wroj8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T07:45:53-05:00\",\"operation_date\":\"2023-09-02T07:45:53-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Ramirez Gomez (1035986816)\",\"error_message\":null,\"order_id\":\"83DDFBD1C4F871159C148D7A010E69BE_MQX9YO1R6V_1693658749.886\",\"due_date\":\"2023-09-02T19:45:53-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Jose\",\"last_name\":\"Ramirez Gomez\",\"email\":\"sebas.181@hotmail.com\",\"phone_number\":\"3178754777\",\"address\":null,\"creation_date\":\"2023-09-02T07:45:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdg5flegsqecf8wroj8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 12:46:37','2023-09-02 12:46:37'),(8608,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T07:47:55-05:00\",\"transaction\":{\"id\":\"trdg5flegsqecf8wroj8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136300093\",\"creation_date\":\"2023-09-02T07:45:53-05:00\",\"operation_date\":\"2023-09-02T07:47:36-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Ramirez Gomez (1035986816)\",\"error_message\":null,\"order_id\":\"83DDFBD1C4F871159C148D7A010E69BE_MQX9YO1R6V_1693658749.886\",\"due_date\":\"2023-09-02T19:45:53-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Jose\",\"last_name\":\"Ramirez Gomez\",\"email\":\"sebas.181@hotmail.com\",\"phone_number\":\"3178754777\",\"address\":null,\"creation_date\":\"2023-09-02T07:45:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 12:47:55','2023-09-02 12:47:55'),(8609,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T08:25:38-05:00\",\"transaction\":{\"id\":\"trffng5grr1uzbvmba5s\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T08:24:32-05:00\",\"operation_date\":\"2023-09-02T08:24:32-05:00\",\"description\":\"Pago Mensual academia: matias calderon orozco (1020318922)\",\"error_message\":null,\"order_id\":\"5C151C2A9B76F9EF26D7E0F0D00C9A89_7108TPNCV4_1693661069.3437\",\"due_date\":\"2023-09-02T20:24:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"orozco agudelo\",\"email\":\"andreaabogada@icloud.com\",\"phone_number\":\"3128633485\",\"address\":null,\"creation_date\":\"2023-09-02T08:24:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trffng5grr1uzbvmba5s/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 13:25:38','2023-09-02 13:25:38'),(8610,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T08:26:34-05:00\",\"transaction\":{\"id\":\"trffng5grr1uzbvmba5s\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136357464\",\"creation_date\":\"2023-09-02T08:24:32-05:00\",\"operation_date\":\"2023-09-02T08:26:29-05:00\",\"description\":\"Pago Mensual academia: matias calderon orozco (1020318922)\",\"error_message\":null,\"order_id\":\"5C151C2A9B76F9EF26D7E0F0D00C9A89_7108TPNCV4_1693661069.3437\",\"due_date\":\"2023-09-02T20:24:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"orozco agudelo\",\"email\":\"andreaabogada@icloud.com\",\"phone_number\":\"3128633485\",\"address\":null,\"creation_date\":\"2023-09-02T08:24:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 13:26:35','2023-09-02 13:26:35'),(8611,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T08:57:37-05:00\",\"transaction\":{\"id\":\"trauw2n8dzmtkmypey0x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-02T08:57:37-05:00\",\"operation_date\":\"2023-09-02T08:57:37-05:00\",\"description\":\"Pago Mensual academia: jeremy ochoa gonzales (1035982917)\",\"error_message\":null,\"order_id\":\"73F104C9FBA50050EEA11D9D075247CC_UG6K047X1P_1693663052.8833\",\"amount\":165900.00,\"customer\":{\"name\":\"Ronal\",\"last_name\":\"blandon galeano\",\"email\":\"jordanochoa@hotmail.com\",\"phone_number\":\"3016603150\",\"address\":null,\"creation_date\":\"2023-09-02T08:57:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trauw2n8dzmtkmypey0x/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-02 13:57:38','2023-09-02 13:57:38'),(8612,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1157\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T08:59:20-05:00\",\"transaction\":{\"id\":\"trauw2n8dzmtkmypey0x\",\"authorization\":\"085920\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-02T08:57:37-05:00\",\"operation_date\":\"2023-09-02T08:59:19-05:00\",\"description\":\"Pago Mensual academia: jeremy ochoa gonzales (1035982917)\",\"error_message\":null,\"order_id\":\"73F104C9FBA50050EEA11D9D075247CC_UG6K047X1P_1693663052.8833\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX8028\",\"holder_name\":\"Ana Carolina Valencia moscoso\",\"expiration_year\":\"25\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Ronal\",\"last_name\":\"blandon galeano\",\"email\":\"jordanochoa@hotmail.com\",\"phone_number\":\"3016603150\",\"address\":null,\"creation_date\":\"2023-09-02T08:57:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trauw2n8dzmtkmypey0x/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-02 13:59:21','2023-09-02 13:59:21'),(8613,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T09:00:23-05:00\",\"transaction\":{\"id\":\"trch4fqzbusvyu6dupy1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-02T09:00:23-05:00\",\"operation_date\":\"2023-09-02T09:00:23-05:00\",\"description\":\"Pago Mensual academia: jeremy ochoa gonzales (1035982917)\",\"error_message\":null,\"order_id\":\"F2B93CE08763FDDF54BCB7BEB62A2C74_JWOQVRSFH3_1693663220.2533\",\"amount\":165900.00,\"customer\":{\"name\":\"Ronal\",\"last_name\":\"blandon galeano\",\"email\":\"jordanochoa@hotmail.com\",\"phone_number\":\"3016603150\",\"address\":null,\"creation_date\":\"2023-09-02T09:00:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trch4fqzbusvyu6dupy1/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-02 14:00:24','2023-09-02 14:00:24'),(8614,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1158\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T09:01:40-05:00\",\"transaction\":{\"id\":\"trch4fqzbusvyu6dupy1\",\"authorization\":\"090140\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-02T09:00:23-05:00\",\"operation_date\":\"2023-09-02T09:01:39-05:00\",\"description\":\"Pago Mensual academia: jeremy ochoa gonzales (1035982917)\",\"error_message\":null,\"order_id\":\"F2B93CE08763FDDF54BCB7BEB62A2C74_JWOQVRSFH3_1693663220.2533\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX8028\",\"holder_name\":\"Ana Carolina Valencia moscoso \",\"expiration_year\":\"25\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Ronal\",\"last_name\":\"blandon galeano\",\"email\":\"jordanochoa@hotmail.com\",\"phone_number\":\"3016603150\",\"address\":null,\"creation_date\":\"2023-09-02T09:00:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trch4fqzbusvyu6dupy1/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-02 14:01:41','2023-09-02 14:01:41'),(8615,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T09:31:18-05:00\",\"transaction\":{\"id\":\"trmfl9byidhpmruk7gww\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T09:30:42-05:00\",\"operation_date\":\"2023-09-02T09:30:42-05:00\",\"description\":\"Pago Mensual academia: Jerónimo molina muñetón (1013464337)\",\"error_message\":null,\"order_id\":\"2119B8D43EAFCF353E07D7CB5554170B_NV9D8EK2C5_1693665039.1537\",\"due_date\":\"2023-09-02T21:30:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"muñeton agudelo\",\"email\":\"johana032690@hotmail.com\",\"phone_number\":\"3108325627\",\"address\":null,\"creation_date\":\"2023-09-02T09:30:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmfl9byidhpmruk7gww/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 14:31:19','2023-09-02 14:31:19'),(8616,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T08:33:21-06:00\",\"transaction\":{\"id\":\"trmfl9byidhpmruk7gww\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136483149\",\"creation_date\":\"2023-09-02T09:30:42-06:00\",\"operation_date\":\"2023-09-02T00:00:00-06:00\",\"description\":\"Pago Mensual academia: Jerónimo molina muñetón (1013464337)\",\"error_message\":null,\"order_id\":\"2119B8D43EAFCF353E07D7CB5554170B_NV9D8EK2C5_1693665039.1537\",\"due_date\":\"2023-09-02T21:30:42-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"muñeton agudelo\",\"email\":\"johana032690@hotmail.com\",\"phone_number\":\"3108325627\",\"address\":null,\"creation_date\":\"2023-09-02T09:30:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 14:33:22','2023-09-02 14:33:22'),(8617,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T09:36:28-05:00\",\"transaction\":{\"id\":\"tru1ieerxlw0hay7jvex\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T09:35:42-05:00\",\"operation_date\":\"2023-09-02T09:35:42-05:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":null,\"order_id\":\"460B491B917D4185ED1F5BE97229721A_WL3C2O4EMB_1693665328.5021\",\"due_date\":\"2023-09-02T21:35:42-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-09-02T09:35:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru1ieerxlw0hay7jvex/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 14:36:29','2023-09-02 14:36:29'),(8618,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  853\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-02T08:57:09-06:00\",\"transaction\":{\"id\":\"tru1ieerxlw0hay7jvex\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-02T09:35:42-06:00\",\"operation_date\":\"2023-09-02T09:36:36-06:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"460B491B917D4185ED1F5BE97229721A_WL3C2O4EMB_1693665328.5021\",\"due_date\":\"2023-09-02T21:35:42-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-09-02T09:35:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 14:57:11','2023-09-02 14:57:11'),(8619,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T10:07:34-05:00\",\"transaction\":{\"id\":\"trew0bcyv2weh2kxb1fn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T10:06:36-05:00\",\"operation_date\":\"2023-09-02T10:06:36-05:00\",\"description\":\"Pago Mensual academia: juan andres muñoz roldan (1035000037)\",\"error_message\":null,\"order_id\":\"ADD7A048049671970976F3E18F21ADE3_RE5YGFKL9A_1693667189.5559\",\"due_date\":\"2023-09-02T22:06:36-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula andrea\",\"last_name\":\"Roldan Rios\",\"email\":\"paularoldan1680@gmail.com\",\"phone_number\":\"3185346104\",\"address\":null,\"creation_date\":\"2023-09-02T10:06:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trew0bcyv2weh2kxb1fn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:07:34','2023-09-02 15:07:34'),(8620,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T10:08:48-05:00\",\"transaction\":{\"id\":\"tryrithbodnqapilrwrf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T10:08:05-05:00\",\"operation_date\":\"2023-09-02T10:08:05-05:00\",\"description\":\"Pago Mensual academia: Pedro Osorio Moreno (1027811391)\",\"error_message\":null,\"order_id\":\"9426C311E76888B3B2368150CD05F362_XNH1JZ32EB_1693667272.0552\",\"due_date\":\"2023-09-02T22:08:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Moreno\",\"email\":\"mdaleja@hotmail.com\",\"phone_number\":\"3218002631\",\"address\":null,\"creation_date\":\"2023-09-02T10:08:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryrithbodnqapilrwrf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:08:49','2023-09-02 15:08:49'),(8621,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  842\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-02T10:09:51-05:00\",\"transaction\":{\"id\":\"tryrithbodnqapilrwrf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-02T10:08:05-05:00\",\"operation_date\":\"2023-09-02T10:08:54-05:00\",\"description\":\"Pago Mensual academia: Pedro Osorio Moreno (1027811391)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"9426C311E76888B3B2368150CD05F362_XNH1JZ32EB_1693667272.0552\",\"due_date\":\"2023-09-02T22:08:05-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Moreno\",\"email\":\"mdaleja@hotmail.com\",\"phone_number\":\"3218002631\",\"address\":null,\"creation_date\":\"2023-09-02T10:08:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:09:52','2023-09-02 15:09:52'),(8622,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T10:10:26-05:00\",\"transaction\":{\"id\":\"trew0bcyv2weh2kxb1fn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136560573\",\"creation_date\":\"2023-09-02T10:06:36-05:00\",\"operation_date\":\"2023-09-02T10:10:10-05:00\",\"description\":\"Pago Mensual academia: juan andres muñoz roldan (1035000037)\",\"error_message\":null,\"order_id\":\"ADD7A048049671970976F3E18F21ADE3_RE5YGFKL9A_1693667189.5559\",\"due_date\":\"2023-09-02T22:06:36-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula andrea\",\"last_name\":\"Roldan Rios\",\"email\":\"paularoldan1680@gmail.com\",\"phone_number\":\"3185346104\",\"address\":null,\"creation_date\":\"2023-09-02T10:06:36-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:10:26','2023-09-02 15:10:26'),(8623,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T10:11:06-05:00\",\"transaction\":{\"id\":\"trtkedxbcpsrqldgybdd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T10:10:31-05:00\",\"operation_date\":\"2023-09-02T10:10:31-05:00\",\"description\":\"Pago Mensual academia: Pedro Osorio Moreno (1027811391)\",\"error_message\":null,\"order_id\":\"9426C311E76888B3B2368150CD05F362_XNH1JZ32EB_1693667406.0915\",\"due_date\":\"2023-09-02T22:10:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Moreno\",\"email\":\"mdaleja@hotmail.com\",\"phone_number\":\"3218002631\",\"address\":null,\"creation_date\":\"2023-09-02T10:10:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtkedxbcpsrqldgybdd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:11:07','2023-09-02 15:11:07'),(8624,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T10:12:11-05:00\",\"transaction\":{\"id\":\"trtkedxbcpsrqldgybdd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136568355\",\"creation_date\":\"2023-09-02T10:10:31-05:00\",\"operation_date\":\"2023-09-02T10:11:52-05:00\",\"description\":\"Pago Mensual academia: Pedro Osorio Moreno (1027811391)\",\"error_message\":null,\"order_id\":\"9426C311E76888B3B2368150CD05F362_XNH1JZ32EB_1693667406.0915\",\"due_date\":\"2023-09-02T22:10:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Moreno\",\"email\":\"mdaleja@hotmail.com\",\"phone_number\":\"3218002631\",\"address\":null,\"creation_date\":\"2023-09-02T10:10:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:12:12','2023-09-02 15:12:12'),(8625,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T10:20:01-05:00\",\"transaction\":{\"id\":\"trzyqk9hmd5tzhxcoxgw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T10:18:44-05:00\",\"operation_date\":\"2023-09-02T10:18:44-05:00\",\"description\":\"Pago Mensual academia: Valentin Lopez Vargas (1023543293)\",\"error_message\":null,\"order_id\":\"CAB070D53BD0D200746FB852A922064A_X9BU86VSGL_1693667920.6139\",\"due_date\":\"2023-09-02T22:18:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jennifer Andrea\",\"last_name\":\"Vargas Amaya\",\"email\":\"jenni_818@hotmail.com\",\"phone_number\":\"3104395037\",\"address\":null,\"creation_date\":\"2023-09-02T10:18:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzyqk9hmd5tzhxcoxgw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:20:02','2023-09-02 15:20:02'),(8626,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T10:21:00-05:00\",\"transaction\":{\"id\":\"trkcr1svhficyurhg7t8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T10:19:47-05:00\",\"operation_date\":\"2023-09-02T10:19:47-05:00\",\"description\":\"Pago Mensual academia: Nicolas Moreno Mafla (1034998168)\",\"error_message\":null,\"order_id\":\"8CE87BDDA85CD44F14DE9AFB86491884_TZJ8OIW549_1693667984.0767\",\"due_date\":\"2023-09-02T22:19:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ANDREA\",\"last_name\":\"MAFLA DE LA PAVA\",\"email\":\"mafladelapava@gmail.com\",\"phone_number\":\"3114703992\",\"address\":null,\"creation_date\":\"2023-09-02T10:19:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkcr1svhficyurhg7t8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:21:01','2023-09-02 15:21:01'),(8627,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T10:21:05-05:00\",\"transaction\":{\"id\":\"trzyqk9hmd5tzhxcoxgw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136588410\",\"creation_date\":\"2023-09-02T10:18:44-05:00\",\"operation_date\":\"2023-09-02T10:20:54-05:00\",\"description\":\"Pago Mensual academia: Valentin Lopez Vargas (1023543293)\",\"error_message\":null,\"order_id\":\"CAB070D53BD0D200746FB852A922064A_X9BU86VSGL_1693667920.6139\",\"due_date\":\"2023-09-02T22:18:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jennifer Andrea\",\"last_name\":\"Vargas Amaya\",\"email\":\"jenni_818@hotmail.com\",\"phone_number\":\"3104395037\",\"address\":null,\"creation_date\":\"2023-09-02T10:18:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:21:05','2023-09-02 15:21:05'),(8628,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T10:23:27-05:00\",\"transaction\":{\"id\":\"trkcr1svhficyurhg7t8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136590681\",\"creation_date\":\"2023-09-02T10:19:47-05:00\",\"operation_date\":\"2023-09-02T10:23:02-05:00\",\"description\":\"Pago Mensual academia: Nicolas Moreno Mafla (1034998168)\",\"error_message\":null,\"order_id\":\"8CE87BDDA85CD44F14DE9AFB86491884_TZJ8OIW549_1693667984.0767\",\"due_date\":\"2023-09-02T22:19:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ANDREA\",\"last_name\":\"MAFLA DE LA PAVA\",\"email\":\"mafladelapava@gmail.com\",\"phone_number\":\"3114703992\",\"address\":null,\"creation_date\":\"2023-09-02T10:19:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:23:28','2023-09-02 15:23:28'),(8629,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T10:24:50-05:00\",\"transaction\":{\"id\":\"trk94xfhyjqvklq87n1f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-02T10:24:50-05:00\",\"operation_date\":\"2023-09-02T10:24:50-05:00\",\"description\":\"Pago Mensual academia: valentin gomez tapia (1035014264)\",\"error_message\":null,\"order_id\":\"3569DF159EC477451530C4455B2A9E86_HTPRAQMZ10_1693668283.4048\",\"amount\":105000.00,\"customer\":{\"name\":\"valentin\",\"last_name\":\"gomez tapia\",\"email\":\"sandratapia1983@hotmail.com\",\"phone_number\":\"3188278218\",\"address\":null,\"creation_date\":\"2023-09-02T10:24:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trk94xfhyjqvklq87n1f/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-02 15:24:51','2023-09-02 15:24:51'),(8630,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1138\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T10:26:21-05:00\",\"transaction\":{\"id\":\"trk94xfhyjqvklq87n1f\",\"authorization\":\"102620\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-02T10:24:50-05:00\",\"operation_date\":\"2023-09-02T10:26:19-05:00\",\"description\":\"Pago Mensual academia: valentin gomez tapia (1035014264)\",\"error_message\":null,\"order_id\":\"3569DF159EC477451530C4455B2A9E86_HTPRAQMZ10_1693668283.4048\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"441080XXXXXX6900\",\"holder_name\":\"Sandra tapia\",\"expiration_year\":\"26\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"valentin\",\"last_name\":\"gomez tapia\",\"email\":\"sandratapia1983@hotmail.com\",\"phone_number\":\"3188278218\",\"address\":null,\"creation_date\":\"2023-09-02T10:24:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trk94xfhyjqvklq87n1f/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-02 15:26:21','2023-09-02 15:26:21'),(8631,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T10:33:10-05:00\",\"transaction\":{\"id\":\"trqdl8lskxguaik6yqzi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T10:32:21-05:00\",\"operation_date\":\"2023-09-02T10:32:21-05:00\",\"description\":\"Pago Mensual academia: Luciana Duarte Velez (1025662862)\",\"error_message\":null,\"order_id\":\"_1693668737.0674\",\"due_date\":\"2023-09-02T22:32:21-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Pablo\",\"last_name\":\"Duarte Osorio\",\"email\":\"jpsolucionesintegralese@gmail.com\",\"phone_number\":\"3104733679\",\"address\":null,\"creation_date\":\"2023-09-02T10:32:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqdl8lskxguaik6yqzi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:33:11','2023-09-02 15:33:11'),(8632,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  777\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T09:36:28-06:00\",\"transaction\":{\"id\":\"trqdl8lskxguaik6yqzi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136618830\",\"creation_date\":\"2023-09-02T10:32:21-06:00\",\"operation_date\":\"2023-09-02T10:33:48-06:00\",\"description\":\"Pago Mensual academia: Luciana Duarte Velez (1025662862)\",\"error_message\":null,\"order_id\":\"_1693668737.0674\",\"due_date\":\"2023-09-02T22:32:21-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Pablo\",\"last_name\":\"Duarte Osorio\",\"email\":\"jpsolucionesintegralese@gmail.com\",\"phone_number\":\"3104733679\",\"address\":null,\"creation_date\":\"2023-09-02T10:32:21-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 15:36:29','2023-09-02 15:36:29'),(8633,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T11:30:37-05:00\",\"transaction\":{\"id\":\"treu8g0hpc8lyrvyia9z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-02T11:30:37-05:00\",\"operation_date\":\"2023-09-02T11:30:37-05:00\",\"description\":\"Pago Mensual academia: Tomás Ramírez Correa (1034993625)\",\"error_message\":null,\"order_id\":\"9FC664916BCE863561527F06A96F5FF3_FSUVO6GMYQ_1693672233.8028\",\"amount\":165900.00,\"customer\":{\"name\":\"Gloria Patricia\",\"last_name\":\"Correa Perez\",\"email\":\"patryco@hotmail.com\",\"phone_number\":\"3108252208\",\"address\":null,\"creation_date\":\"2023-09-02T11:30:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treu8g0hpc8lyrvyia9z/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-02 16:30:38','2023-09-02 16:30:38'),(8634,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1149\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T11:32:10-05:00\",\"transaction\":{\"id\":\"treu8g0hpc8lyrvyia9z\",\"authorization\":\"R05217\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-02T11:30:37-05:00\",\"operation_date\":\"2023-09-02T11:32:08-05:00\",\"description\":\"Pago Mensual academia: Tomás Ramírez Correa (1034993625)\",\"error_message\":null,\"order_id\":\"9FC664916BCE863561527F06A96F5FF3_FSUVO6GMYQ_1693672233.8028\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549157XXXXXX9945\",\"holder_name\":\"GLORIA CORREA P\",\"expiration_year\":\"26\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Gloria Patricia\",\"last_name\":\"Correa Perez\",\"email\":\"patryco@hotmail.com\",\"phone_number\":\"3108252208\",\"address\":null,\"creation_date\":\"2023-09-02T11:30:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treu8g0hpc8lyrvyia9z/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-02 16:32:10','2023-09-02 16:32:10'),(8635,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T12:26:59-05:00\",\"transaction\":{\"id\":\"trlwxuhices59q9ayxdn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T12:24:47-05:00\",\"operation_date\":\"2023-09-02T12:24:47-05:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":null,\"order_id\":\"1B32A022C52C0C6255C2A32E580BE34F_9VD20W3NCM_1693675484.1783\",\"due_date\":\"2023-09-03T00:24:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"jhoangar@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-09-02T12:24:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlwxuhices59q9ayxdn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 17:27:00','2023-09-02 17:27:00'),(8636,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T12:34:29-05:00\",\"transaction\":{\"id\":\"trxchlwkje1sf07pbikc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T12:33:41-05:00\",\"operation_date\":\"2023-09-02T12:33:41-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Ospina Zapata (1020312861)\",\"error_message\":null,\"order_id\":\"F87E955FD6B89F8963B6934BEB077D6E_G4BHN3WVAD_1693676013.1131\",\"due_date\":\"2023-09-03T00:33:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Zapata Sierra\",\"email\":\"paulazapata78@hotmail.com\",\"phone_number\":\"3013400537\",\"address\":null,\"creation_date\":\"2023-09-02T12:33:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxchlwkje1sf07pbikc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 17:34:29','2023-09-02 17:34:29'),(8637,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T11:36:28-06:00\",\"transaction\":{\"id\":\"trxchlwkje1sf07pbikc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136890736\",\"creation_date\":\"2023-09-02T12:33:41-06:00\",\"operation_date\":\"2023-09-02T12:35:43-06:00\",\"description\":\"Pago Mensual academia: Juan Pablo Ospina Zapata (1020312861)\",\"error_message\":null,\"order_id\":\"F87E955FD6B89F8963B6934BEB077D6E_G4BHN3WVAD_1693676013.1131\",\"due_date\":\"2023-09-03T00:33:41-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Zapata Sierra\",\"email\":\"paulazapata78@hotmail.com\",\"phone_number\":\"3013400537\",\"address\":null,\"creation_date\":\"2023-09-02T12:33:41-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 17:36:28','2023-09-02 17:36:28'),(8638,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  846\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-02T11:39:13-06:00\",\"transaction\":{\"id\":\"trlwxuhices59q9ayxdn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-02T12:24:47-06:00\",\"operation_date\":\"2023-09-02T12:39:13-06:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"1B32A022C52C0C6255C2A32E580BE34F_9VD20W3NCM_1693675484.1783\",\"due_date\":\"2023-09-03T00:24:47-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"jhoangar@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-09-02T12:24:47-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 17:39:14','2023-09-02 17:39:14'),(8639,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T12:46:07-05:00\",\"transaction\":{\"id\":\"trhl40fxbyhdoqlgsvg3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T12:45:10-05:00\",\"operation_date\":\"2023-09-02T12:45:10-05:00\",\"description\":\"Pago Mensual academia: sara López betancur (1020315986)\",\"error_message\":null,\"order_id\":\"1AA3D9C6CE672447E1E5D0F1B5207E85_OV38ZIFYGX_1693676706.3686\",\"due_date\":\"2023-09-03T00:45:10-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Angela María\",\"last_name\":\"betancur ospina\",\"email\":\"angelabetancur.7@hotmail.com\",\"phone_number\":\"3053911750\",\"address\":null,\"creation_date\":\"2023-09-02T12:45:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhl40fxbyhdoqlgsvg3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 17:46:07','2023-09-02 17:46:07'),(8640,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T11:48:19-06:00\",\"transaction\":{\"id\":\"trhl40fxbyhdoqlgsvg3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"136913453\",\"creation_date\":\"2023-09-02T12:45:10-06:00\",\"operation_date\":\"2023-09-02T12:47:25-06:00\",\"description\":\"Pago Mensual academia: sara López betancur (1020315986)\",\"error_message\":null,\"order_id\":\"1AA3D9C6CE672447E1E5D0F1B5207E85_OV38ZIFYGX_1693676706.3686\",\"due_date\":\"2023-09-03T00:45:10-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Angela María\",\"last_name\":\"betancur ospina\",\"email\":\"angelabetancur.7@hotmail.com\",\"phone_number\":\"3053911750\",\"address\":null,\"creation_date\":\"2023-09-02T12:45:10-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 17:48:20','2023-09-02 17:48:20'),(8641,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  911\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T14:45:30-05:00\",\"transaction\":{\"id\":\"tryvcqyjhheod5ufiypp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T14:44:43-05:00\",\"operation_date\":\"2023-09-02T14:44:43-05:00\",\"description\":\"Pago Mensual academia: luciano ramirez vega (1035014698)\",\"error_message\":null,\"order_id\":\"44FEB0096FAA8326192570788B38C1D1_VJF7OE16H5_1693683880.6773\",\"due_date\":\"2023-09-03T02:44:43-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"maria\",\"last_name\":\"vega\",\"email\":\"maria3641@hotmail.com\",\"phone_number\":\"3113839314\",\"address\":null,\"creation_date\":\"2023-09-02T14:44:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryvcqyjhheod5ufiypp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 19:45:31','2023-09-02 19:45:31'),(8642,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  794\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T14:46:25-05:00\",\"transaction\":{\"id\":\"tryvcqyjhheod5ufiypp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"137126645\",\"creation_date\":\"2023-09-02T14:44:43-05:00\",\"operation_date\":\"2023-09-02T14:46:21-05:00\",\"description\":\"Pago Mensual academia: luciano ramirez vega (1035014698)\",\"error_message\":null,\"order_id\":\"44FEB0096FAA8326192570788B38C1D1_VJF7OE16H5_1693683880.6773\",\"due_date\":\"2023-09-03T02:44:43-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"maria\",\"last_name\":\"vega\",\"email\":\"maria3641@hotmail.com\",\"phone_number\":\"3113839314\",\"address\":null,\"creation_date\":\"2023-09-02T14:44:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 19:46:26','2023-09-02 19:46:26'),(8643,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T16:41:56-05:00\",\"transaction\":{\"id\":\"trodu8tmlqd5wl3nazs8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-02T16:41:56-05:00\",\"operation_date\":\"2023-09-02T16:41:56-05:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":null,\"order_id\":\"460B491B917D4185ED1F5BE97229721A_WL3C2O4EMB_1693690908.7459\",\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-09-02T16:41:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trodu8tmlqd5wl3nazs8/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-02 21:41:57','2023-09-02 21:41:57'),(8644,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T17:24:19-05:00\",\"transaction\":{\"id\":\"truupogkvsr26uzzoymb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T17:23:00-05:00\",\"operation_date\":\"2023-09-02T17:23:00-05:00\",\"description\":\"Pago Mensual academia: mathias restrepo villegas (1034992992)\",\"error_message\":null,\"order_id\":\"34306D99C63613FAD5B2A140398C0420_ERMGA5XNBI_1693693377.1304\",\"due_date\":\"2023-09-03T05:23:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN GUILLERMO\",\"last_name\":\"RESTREPO OBANDO\",\"email\":\"juanguigui79@hotmail.com\",\"phone_number\":\"3162236926\",\"address\":null,\"creation_date\":\"2023-09-02T17:23:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truupogkvsr26uzzoymb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 22:24:19','2023-09-02 22:24:19'),(8645,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T17:25:41-05:00\",\"transaction\":{\"id\":\"truupogkvsr26uzzoymb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"137378242\",\"creation_date\":\"2023-09-02T17:23:00-05:00\",\"operation_date\":\"2023-09-02T17:25:25-05:00\",\"description\":\"Pago Mensual academia: mathias restrepo villegas (1034992992)\",\"error_message\":null,\"order_id\":\"34306D99C63613FAD5B2A140398C0420_ERMGA5XNBI_1693693377.1304\",\"due_date\":\"2023-09-03T05:23:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN GUILLERMO\",\"last_name\":\"RESTREPO OBANDO\",\"email\":\"juanguigui79@hotmail.com\",\"phone_number\":\"3162236926\",\"address\":null,\"creation_date\":\"2023-09-02T17:23:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 22:25:42','2023-09-02 22:25:42'),(8646,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T17:55:22-05:00\",\"transaction\":{\"id\":\"trchaiznz8ersh2oslgm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T17:54:29-05:00\",\"operation_date\":\"2023-09-02T17:54:29-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":null,\"order_id\":\"D74CB35426F3D808325876F45B69DBF1_JX4A2ZES8G_1693695264.9199\",\"due_date\":\"2023-09-03T05:54:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-09-02T17:54:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trchaiznz8ersh2oslgm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 22:55:23','2023-09-02 22:55:23'),(8647,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T17:57:52-05:00\",\"transaction\":{\"id\":\"trchaiznz8ersh2oslgm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"137425829\",\"creation_date\":\"2023-09-02T17:54:29-05:00\",\"operation_date\":\"2023-09-02T17:57:24-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":null,\"order_id\":\"D74CB35426F3D808325876F45B69DBF1_JX4A2ZES8G_1693695264.9199\",\"due_date\":\"2023-09-03T05:54:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-09-02T17:54:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-02 22:57:53','2023-09-02 22:57:53'),(8648,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T19:33:19-05:00\",\"transaction\":{\"id\":\"trdsx9acybexlcqwgfmd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T19:32:22-05:00\",\"operation_date\":\"2023-09-02T19:32:22-05:00\",\"description\":\"Pago Mensual academia: juan Diego grizales torrejano (1032024576)\",\"error_message\":null,\"order_id\":\"F3175210F90BFC7EA82901DB0EF7452F_E0NXTSZ36K_1693701134.0855\",\"due_date\":\"2023-09-03T07:32:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yarlenys\",\"last_name\":\"torrejano rios\",\"email\":\"laboratorioyada@gmail.com\",\"phone_number\":\"3103905122\",\"address\":null,\"creation_date\":\"2023-09-02T19:32:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdsx9acybexlcqwgfmd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 00:33:20','2023-09-03 00:33:20'),(8649,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T18:39:08-06:00\",\"transaction\":{\"id\":\"trdsx9acybexlcqwgfmd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"137570885\",\"creation_date\":\"2023-09-02T19:32:22-06:00\",\"operation_date\":\"2023-09-02T19:39:02-06:00\",\"description\":\"Pago Mensual academia: juan Diego grizales torrejano (1032024576)\",\"error_message\":null,\"order_id\":\"F3175210F90BFC7EA82901DB0EF7452F_E0NXTSZ36K_1693701134.0855\",\"due_date\":\"2023-09-03T07:32:22-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yarlenys\",\"last_name\":\"torrejano rios\",\"email\":\"laboratorioyada@gmail.com\",\"phone_number\":\"3103905122\",\"address\":null,\"creation_date\":\"2023-09-02T19:32:22-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 00:39:09','2023-09-03 00:39:09'),(8650,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T20:45:56-05:00\",\"transaction\":{\"id\":\"trxsn13zoszsy1rllkdv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-02T20:44:32-05:00\",\"operation_date\":\"2023-09-02T20:44:32-05:00\",\"description\":\"Pago Mensual academia: Matías Arango Gutiérrez (1031942381)\",\"error_message\":null,\"order_id\":\"DEB74A85A4A68465B75C721D45DB5D3B_230A85VFB4_1693705469.1995\",\"due_date\":\"2023-09-03T08:44:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Arango Castrillón\",\"email\":\"arajulian@gmail.com\",\"phone_number\":\"3206207280\",\"address\":null,\"creation_date\":\"2023-09-02T20:44:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxsn13zoszsy1rllkdv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 01:45:57','2023-09-03 01:45:57'),(8651,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T20:47:10-05:00\",\"transaction\":{\"id\":\"trxsn13zoszsy1rllkdv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"137664482\",\"creation_date\":\"2023-09-02T20:44:32-05:00\",\"operation_date\":\"2023-09-02T20:46:54-05:00\",\"description\":\"Pago Mensual academia: Matías Arango Gutiérrez (1031942381)\",\"error_message\":null,\"order_id\":\"DEB74A85A4A68465B75C721D45DB5D3B_230A85VFB4_1693705469.1995\",\"due_date\":\"2023-09-03T08:44:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Arango Castrillón\",\"email\":\"arajulian@gmail.com\",\"phone_number\":\"3206207280\",\"address\":null,\"creation_date\":\"2023-09-02T20:44:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 01:47:10','2023-09-03 01:47:10'),(8652,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  910\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T22:02:11-05:00\",\"transaction\":{\"id\":\"trl5fl804w1we0tw1dmy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-02T22:02:11-05:00\",\"operation_date\":\"2023-09-02T22:02:11-05:00\",\"description\":\"Pago Mensual academia: Michael Stiward Salcedo Hernandez (1038872790)\",\"error_message\":null,\"order_id\":\"335D3D1CD7EF05EC77714A215134914C_LMTWOCI83Z_1693710128.6969\",\"amount\":165900.00,\"customer\":{\"name\":\"victor Alfonso\",\"last_name\":\"Salcedo Arias\",\"email\":\"victor88asa@hotmail.com\",\"phone_number\":\"3108331051\",\"address\":null,\"creation_date\":\"2023-09-02T22:02:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl5fl804w1we0tw1dmy/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-03 03:02:12','2023-09-03 03:02:12'),(8653,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1160\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T22:03:51-05:00\",\"transaction\":{\"id\":\"trl5fl804w1we0tw1dmy\",\"authorization\":\"220351\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-02T22:02:11-05:00\",\"operation_date\":\"2023-09-02T22:03:50-05:00\",\"description\":\"Pago Mensual academia: Michael Stiward Salcedo Hernandez (1038872790)\",\"error_message\":null,\"order_id\":\"335D3D1CD7EF05EC77714A215134914C_LMTWOCI83Z_1693710128.6969\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX8958\",\"holder_name\":\"Victor arias \",\"expiration_year\":\"27\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"victor Alfonso\",\"last_name\":\"Salcedo Arias\",\"email\":\"victor88asa@hotmail.com\",\"phone_number\":\"3108331051\",\"address\":null,\"creation_date\":\"2023-09-02T22:02:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl5fl804w1we0tw1dmy/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-03 03:03:52','2023-09-03 03:03:52'),(8654,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-02T22:23:41-05:00\",\"transaction\":{\"id\":\"trsbuxuowtrlfcp3jmtk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-02T22:23:41-05:00\",\"operation_date\":\"2023-09-02T22:23:41-05:00\",\"description\":\"Pago Mensual academia: JERONIMO MOLINA GARCIA (1020322545)\",\"error_message\":null,\"order_id\":\"_1693711414.7825\",\"amount\":165900.00,\"customer\":{\"name\":\"JORGE LUIS\",\"last_name\":\"MOLINA VELEZ\",\"email\":\"jorgeluismolinavelez@gmail.com\",\"phone_number\":\"3125097819\",\"address\":null,\"creation_date\":\"2023-09-02T22:23:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsbuxuowtrlfcp3jmtk/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-03 03:23:42','2023-09-03 03:23:42'),(8655,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1180\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-02T22:25:15-05:00\",\"transaction\":{\"id\":\"trsbuxuowtrlfcp3jmtk\",\"authorization\":\"314944\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-09-02T22:23:41-05:00\",\"operation_date\":\"2023-09-02T22:25:14-05:00\",\"description\":\"Pago Mensual academia: JERONIMO MOLINA GARCIA (1020322545)\",\"error_message\":null,\"order_id\":\"_1693711414.7825\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459418XXXXXX9007\",\"holder_name\":\"JORGE LUIS MOLINA V\",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"JORGE LUIS\",\"last_name\":\"MOLINA VELEZ\",\"email\":\"jorgeluismolinavelez@gmail.com\",\"phone_number\":\"3125097819\",\"address\":null,\"creation_date\":\"2023-09-02T22:23:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsbuxuowtrlfcp3jmtk/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-03 03:25:16','2023-09-03 03:25:16'),(8656,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T07:59:34-05:00\",\"transaction\":{\"id\":\"tre79ig7sioq13qpfbjf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T07:58:43-05:00\",\"operation_date\":\"2023-09-03T07:58:43-05:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":null,\"order_id\":\"460B491B917D4185ED1F5BE97229721A_WL3C2O4EMB_1693745919.31\",\"due_date\":\"2023-09-03T19:58:43-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-09-03T07:58:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre79ig7sioq13qpfbjf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 12:59:35','2023-09-03 12:59:35'),(8657,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-03T07:21:09-06:00\",\"transaction\":{\"id\":\"tre79ig7sioq13qpfbjf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-03T07:58:43-06:00\",\"operation_date\":\"2023-09-03T07:59:40-06:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"460B491B917D4185ED1F5BE97229721A_WL3C2O4EMB_1693745919.31\",\"due_date\":\"2023-09-03T19:58:43-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-09-03T07:58:43-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 13:21:10','2023-09-03 13:21:10'),(8658,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T08:49:57-05:00\",\"transaction\":{\"id\":\"truvvou5ddw5acgwywfy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T08:47:55-05:00\",\"operation_date\":\"2023-09-03T08:47:55-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gomez Arango (1035014961)\",\"error_message\":null,\"order_id\":\"690BB330E5E7E3E07867FAFC4D32EC82_WT8AINPRBE_1693748864.8678\",\"due_date\":\"2023-09-03T20:47:55-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martha mercedes\",\"last_name\":\"Arango Valencia\",\"email\":\"martha.arango.finca@gmail.com\",\"phone_number\":\"3117873823\",\"address\":null,\"creation_date\":\"2023-09-03T08:47:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truvvou5ddw5acgwywfy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 13:49:58','2023-09-03 13:49:58'),(8659,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  828\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T07:51:11-06:00\",\"transaction\":{\"id\":\"truvvou5ddw5acgwywfy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"137932109\",\"creation_date\":\"2023-09-03T08:47:55-06:00\",\"operation_date\":\"2023-09-03T08:51:08-06:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gomez Arango (1035014961)\",\"error_message\":null,\"order_id\":\"690BB330E5E7E3E07867FAFC4D32EC82_WT8AINPRBE_1693748864.8678\",\"due_date\":\"2023-09-03T20:47:55-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martha mercedes\",\"last_name\":\"Arango Valencia\",\"email\":\"martha.arango.finca@gmail.com\",\"phone_number\":\"3117873823\",\"address\":null,\"creation_date\":\"2023-09-03T08:47:55-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 13:51:11','2023-09-03 13:51:11'),(8660,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T08:53:33-05:00\",\"transaction\":{\"id\":\"trenebsk3ookoruxuepq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T08:52:41-05:00\",\"operation_date\":\"2023-09-03T08:52:41-05:00\",\"description\":\"Pago Mensual academia: mathias betancur arango (1036456981)\",\"error_message\":null,\"order_id\":\"4ECB679FD35DCFD0F0894C399590BE1A_0B5GU2FSAD_1693749157.7642\",\"due_date\":\"2023-09-03T20:52:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"arango rodriguez\",\"email\":\"juliarango20@hotmail.com\",\"phone_number\":\"3004419025\",\"address\":null,\"creation_date\":\"2023-09-03T08:52:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trenebsk3ookoruxuepq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 13:53:34','2023-09-03 13:53:34'),(8661,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T08:54:41-05:00\",\"transaction\":{\"id\":\"trenebsk3ookoruxuepq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"137935514\",\"creation_date\":\"2023-09-03T08:52:41-05:00\",\"operation_date\":\"2023-09-03T08:54:30-05:00\",\"description\":\"Pago Mensual academia: mathias betancur arango (1036456981)\",\"error_message\":null,\"order_id\":\"4ECB679FD35DCFD0F0894C399590BE1A_0B5GU2FSAD_1693749157.7642\",\"due_date\":\"2023-09-03T20:52:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"arango rodriguez\",\"email\":\"juliarango20@hotmail.com\",\"phone_number\":\"3004419025\",\"address\":null,\"creation_date\":\"2023-09-03T08:52:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 13:54:42','2023-09-03 13:54:42'),(8662,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T09:16:35-05:00\",\"transaction\":{\"id\":\"tr4jdkzy3dhjc6cyfkdr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-03T09:16:35-05:00\",\"operation_date\":\"2023-09-03T09:16:35-05:00\",\"description\":\"Pago Mensual academia: Lukas Echeverry Cardenas (1036460627)\",\"error_message\":null,\"order_id\":\"C157297D1A1FF043255BFB18530CAAA2_N071WUYLO2_1693750587.7549\",\"amount\":105000.00,\"customer\":{\"name\":\"Lukas\",\"last_name\":\"Echeverry Cardenas\",\"email\":\"lorenacarbonell@gmail.com\",\"phone_number\":\"3045809806\",\"address\":null,\"creation_date\":\"2023-09-03T09:16:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4jdkzy3dhjc6cyfkdr/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-03 14:16:36','2023-09-03 14:16:36'),(8663,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1143\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T09:17:36-05:00\",\"transaction\":{\"id\":\"tr4jdkzy3dhjc6cyfkdr\",\"authorization\":\"835261\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-03T09:16:35-05:00\",\"operation_date\":\"2023-09-03T09:17:35-05:00\",\"description\":\"Pago Mensual academia: Lukas Echeverry Cardenas (1036460627)\",\"error_message\":null,\"order_id\":\"C157297D1A1FF043255BFB18530CAAA2_N071WUYLO2_1693750587.7549\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"469766XXXXXX5875\",\"holder_name\":\"Andrés F Echeverry \",\"expiration_year\":\"28\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"COOMEVA\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"Lukas\",\"last_name\":\"Echeverry Cardenas\",\"email\":\"lorenacarbonell@gmail.com\",\"phone_number\":\"3045809806\",\"address\":null,\"creation_date\":\"2023-09-03T09:16:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4jdkzy3dhjc6cyfkdr/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-03 14:17:37','2023-09-03 14:17:37'),(8664,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T09:18:07-05:00\",\"transaction\":{\"id\":\"trlzorvsowobxnm6xwtr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-03T09:18:07-05:00\",\"operation_date\":\"2023-09-03T09:18:07-05:00\",\"description\":\"Pago Mensual academia: Lukas Echeverry Cardenas (1036460627)\",\"error_message\":null,\"order_id\":\"916D3891A243C10FEDE49F9C276F1A20_O2KH6GYWIN_1693750685.7577\",\"amount\":105000.00,\"customer\":{\"name\":\"Lukas\",\"last_name\":\"Echeverry Cardenas\",\"email\":\"lorenacarbonell@gmail.com\",\"phone_number\":\"3045809806\",\"address\":null,\"creation_date\":\"2023-09-03T09:18:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlzorvsowobxnm6xwtr/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-03 14:18:07','2023-09-03 14:18:07'),(8665,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1143\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T09:18:50-05:00\",\"transaction\":{\"id\":\"trlzorvsowobxnm6xwtr\",\"authorization\":\"835281\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-03T09:18:07-05:00\",\"operation_date\":\"2023-09-03T09:18:49-05:00\",\"description\":\"Pago Mensual academia: Lukas Echeverry Cardenas (1036460627)\",\"error_message\":null,\"order_id\":\"916D3891A243C10FEDE49F9C276F1A20_O2KH6GYWIN_1693750685.7577\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"469766XXXXXX5875\",\"holder_name\":\"Andrés F Echeverry \",\"expiration_year\":\"28\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"COOMEVA\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"Lukas\",\"last_name\":\"Echeverry Cardenas\",\"email\":\"lorenacarbonell@gmail.com\",\"phone_number\":\"3045809806\",\"address\":null,\"creation_date\":\"2023-09-03T09:18:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlzorvsowobxnm6xwtr/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-03 14:18:50','2023-09-03 14:18:50'),(8666,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T09:30:59-05:00\",\"transaction\":{\"id\":\"trahyv5m0orspfhyzoaa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T09:29:23-05:00\",\"operation_date\":\"2023-09-03T09:29:23-05:00\",\"description\":\"Pago Mensual academia: tomas bedoya amaya (1027741407)\",\"error_message\":null,\"order_id\":\"42547F5A44D87DA3BC40EE5D09624606_28031JKG6T_1693751355.3624\",\"due_date\":\"2023-09-03T21:29:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"tomas\",\"last_name\":\"bedoya amaya\",\"email\":\"yadiamaya.0105@gmail.com\",\"phone_number\":\"3204941975\",\"address\":null,\"creation_date\":\"2023-09-03T09:29:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trahyv5m0orspfhyzoaa/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 14:30:59','2023-09-03 14:30:59'),(8667,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T08:33:12-06:00\",\"transaction\":{\"id\":\"trahyv5m0orspfhyzoaa\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"137975034\",\"creation_date\":\"2023-09-03T09:29:23-06:00\",\"operation_date\":\"2023-09-03T09:32:34-06:00\",\"description\":\"Pago Mensual academia: tomas bedoya amaya (1027741407)\",\"error_message\":null,\"order_id\":\"42547F5A44D87DA3BC40EE5D09624606_28031JKG6T_1693751355.3624\",\"due_date\":\"2023-09-03T21:29:23-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"tomas\",\"last_name\":\"bedoya amaya\",\"email\":\"yadiamaya.0105@gmail.com\",\"phone_number\":\"3204941975\",\"address\":null,\"creation_date\":\"2023-09-03T09:29:23-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 14:33:13','2023-09-03 14:33:13'),(8668,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T09:43:14-05:00\",\"transaction\":{\"id\":\"tr1it7fojcrltgalisil\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T09:42:24-05:00\",\"operation_date\":\"2023-09-03T09:42:24-05:00\",\"description\":\"Pago Mensual academia: Isaac Restrepo Parra (1017941839)\",\"error_message\":null,\"order_id\":\"41C542DFE6E4FC3DEB251D64CF6ED2E4_OLCJ69Z1PY_1693752133.3907\",\"due_date\":\"2023-09-03T21:42:24-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Deisy Yuliet\",\"last_name\":\"Parra Sepulveda\",\"email\":\"deisyparras@gmail.com\",\"phone_number\":\"3218525279\",\"address\":null,\"creation_date\":\"2023-09-03T09:42:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1it7fojcrltgalisil/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 14:43:14','2023-09-03 14:43:14'),(8669,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T09:44:49-05:00\",\"transaction\":{\"id\":\"tr1it7fojcrltgalisil\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"137989625\",\"creation_date\":\"2023-09-03T09:42:24-05:00\",\"operation_date\":\"2023-09-03T09:44:15-05:00\",\"description\":\"Pago Mensual academia: Isaac Restrepo Parra (1017941839)\",\"error_message\":null,\"order_id\":\"41C542DFE6E4FC3DEB251D64CF6ED2E4_OLCJ69Z1PY_1693752133.3907\",\"due_date\":\"2023-09-03T21:42:24-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Deisy Yuliet\",\"last_name\":\"Parra Sepulveda\",\"email\":\"deisyparras@gmail.com\",\"phone_number\":\"3218525279\",\"address\":null,\"creation_date\":\"2023-09-03T09:42:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 14:44:50','2023-09-03 14:44:50'),(8670,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T10:03:16-05:00\",\"transaction\":{\"id\":\"trsf6sovvdspy0yhfveg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T10:01:34-05:00\",\"operation_date\":\"2023-09-03T10:01:34-05:00\",\"description\":\"Pago Mensual academia: juan jose muñoz tamayo (1020315336)\",\"error_message\":null,\"order_id\":\"36072923BFC3CF47745D704FEB489480_MI65AJNK4H_1693753291.2188\",\"due_date\":\"2023-09-03T22:01:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan jose\",\"last_name\":\"muñoz tamayo\",\"email\":\"leidytamayog@hotmail.com\",\"phone_number\":\"3128975759\",\"address\":null,\"creation_date\":\"2023-09-03T10:01:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsf6sovvdspy0yhfveg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 15:03:16','2023-09-03 15:03:16'),(8671,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T10:04:48-05:00\",\"transaction\":{\"id\":\"trsf6sovvdspy0yhfveg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138014530\",\"creation_date\":\"2023-09-03T10:01:34-05:00\",\"operation_date\":\"2023-09-03T10:04:20-05:00\",\"description\":\"Pago Mensual academia: juan jose muñoz tamayo (1020315336)\",\"error_message\":null,\"order_id\":\"36072923BFC3CF47745D704FEB489480_MI65AJNK4H_1693753291.2188\",\"due_date\":\"2023-09-03T22:01:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan jose\",\"last_name\":\"muñoz tamayo\",\"email\":\"leidytamayog@hotmail.com\",\"phone_number\":\"3128975759\",\"address\":null,\"creation_date\":\"2023-09-03T10:01:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 15:04:49','2023-09-03 15:04:49'),(8672,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T10:06:24-05:00\",\"transaction\":{\"id\":\"trb7qpchhpzzimxausmn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T10:04:55-05:00\",\"operation_date\":\"2023-09-03T10:04:55-05:00\",\"description\":\"Pago Mensual academia: Martin Perez Saldarriaga (1021946968)\",\"error_message\":null,\"order_id\":\"C82836ED448C41094025B4A872C5341E_D4HB39I0M8_1693753492.8249\",\"due_date\":\"2023-09-03T22:04:55-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Clara \",\"last_name\":\"Alzate \",\"email\":\"clarita-1@hotmail.com\",\"phone_number\":\"3215616185\",\"address\":null,\"creation_date\":\"2023-09-03T10:04:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb7qpchhpzzimxausmn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 15:06:25','2023-09-03 15:06:25'),(8673,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  841\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-03T10:07:44-05:00\",\"transaction\":{\"id\":\"trb7qpchhpzzimxausmn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-03T10:04:55-05:00\",\"operation_date\":\"2023-09-03T10:06:32-05:00\",\"description\":\"Pago Mensual academia: Martin Perez Saldarriaga (1021946968)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"C82836ED448C41094025B4A872C5341E_D4HB39I0M8_1693753492.8249\",\"due_date\":\"2023-09-03T22:04:55-05:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"Clara \",\"last_name\":\"Alzate \",\"email\":\"clarita-1@hotmail.com\",\"phone_number\":\"3215616185\",\"address\":null,\"creation_date\":\"2023-09-03T10:04:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 15:07:44','2023-09-03 15:07:44'),(8674,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T12:58:46-05:00\",\"transaction\":{\"id\":\"tr2gmqwcwb2z2mz12lsw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T12:57:14-05:00\",\"operation_date\":\"2023-09-03T12:57:14-05:00\",\"description\":\"Pago Mensual academia: isaac maya valencia (1155717119)\",\"error_message\":null,\"order_id\":\"63C6598E9DDD2961E7DFA4D4EB8144A1_C62KP3FTNJ_1693763828.2839\",\"due_date\":\"2023-09-04T00:57:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"maya barrera\",\"email\":\"felipemaya318@gmail.com\",\"phone_number\":\"3155880709\",\"address\":null,\"creation_date\":\"2023-09-03T12:57:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2gmqwcwb2z2mz12lsw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 17:58:46','2023-09-03 17:58:46'),(8675,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T12:00:12-06:00\",\"transaction\":{\"id\":\"tr2gmqwcwb2z2mz12lsw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138260755\",\"creation_date\":\"2023-09-03T12:57:14-06:00\",\"operation_date\":\"2023-09-03T12:59:59-06:00\",\"description\":\"Pago Mensual academia: isaac maya valencia (1155717119)\",\"error_message\":null,\"order_id\":\"63C6598E9DDD2961E7DFA4D4EB8144A1_C62KP3FTNJ_1693763828.2839\",\"due_date\":\"2023-09-04T00:57:14-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"maya barrera\",\"email\":\"felipemaya318@gmail.com\",\"phone_number\":\"3155880709\",\"address\":null,\"creation_date\":\"2023-09-03T12:57:14-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 18:00:12','2023-09-03 18:00:12'),(8676,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T13:20:16-05:00\",\"transaction\":{\"id\":\"trghapdz43iscs71gp6b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T13:19:33-05:00\",\"operation_date\":\"2023-09-03T13:19:33-05:00\",\"description\":\"Pago Mensual academia: ANTONIO JIMENEZ AGUDELO (1020235872)\",\"error_message\":null,\"order_id\":\"95323660ED2124450CAAAC2C46B5ED90_1GSL2ZI0QH_1693765169.9802\",\"due_date\":\"2023-09-04T01:19:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Agudelo\",\"email\":\"lauraagudelo01@gmail.com\",\"phone_number\":\"3197690545\",\"address\":null,\"creation_date\":\"2023-09-03T13:19:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trghapdz43iscs71gp6b/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 18:20:17','2023-09-03 18:20:17'),(8677,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T13:21:23-05:00\",\"transaction\":{\"id\":\"trghapdz43iscs71gp6b\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138288608\",\"creation_date\":\"2023-09-03T13:19:33-05:00\",\"operation_date\":\"2023-09-03T13:21:18-05:00\",\"description\":\"Pago Mensual academia: ANTONIO JIMENEZ AGUDELO (1020235872)\",\"error_message\":null,\"order_id\":\"95323660ED2124450CAAAC2C46B5ED90_1GSL2ZI0QH_1693765169.9802\",\"due_date\":\"2023-09-04T01:19:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Agudelo\",\"email\":\"lauraagudelo01@gmail.com\",\"phone_number\":\"3197690545\",\"address\":null,\"creation_date\":\"2023-09-03T13:19:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 18:21:24','2023-09-03 18:21:24'),(8678,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T14:46:06-05:00\",\"transaction\":{\"id\":\"trmepli7gz6aawpn1v99\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T14:45:21-05:00\",\"operation_date\":\"2023-09-03T14:45:21-05:00\",\"description\":\"Pago Mensual academia: samuel perez jaramillo (1021933176)\",\"error_message\":null,\"order_id\":\"D3614F463B2D42ABA2700556D42740D0_VNQHPRU9O5_1693770315.3235\",\"due_date\":\"2023-09-04T02:45:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nathalia\",\"last_name\":\"Jaramillo Jaramillo\",\"email\":\"publicidad@tecnologiaydiseno.com\",\"phone_number\":\"3182379354\",\"address\":null,\"creation_date\":\"2023-09-03T14:45:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmepli7gz6aawpn1v99/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 19:46:07','2023-09-03 19:46:07'),(8679,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T13:48:14-06:00\",\"transaction\":{\"id\":\"trmepli7gz6aawpn1v99\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138394504\",\"creation_date\":\"2023-09-03T14:45:21-06:00\",\"operation_date\":\"2023-09-03T14:47:41-06:00\",\"description\":\"Pago Mensual academia: samuel perez jaramillo (1021933176)\",\"error_message\":null,\"order_id\":\"D3614F463B2D42ABA2700556D42740D0_VNQHPRU9O5_1693770315.3235\",\"due_date\":\"2023-09-04T02:45:21-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nathalia\",\"last_name\":\"Jaramillo Jaramillo\",\"email\":\"publicidad@tecnologiaydiseno.com\",\"phone_number\":\"3182379354\",\"address\":null,\"creation_date\":\"2023-09-03T14:45:21-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 19:48:15','2023-09-03 19:48:15'),(8680,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T15:53:43-05:00\",\"transaction\":{\"id\":\"tr5bkmjtixsw1k9fhrwn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T15:52:33-05:00\",\"operation_date\":\"2023-09-03T15:52:33-05:00\",\"description\":\"Pago Mensual academia: Juan José Grisales Jiménez (1036455688)\",\"error_message\":null,\"order_id\":\"E97399278D24E6BBF3A2D5E9C8D34262_P3CQDJ6IL5_1693774350.1258\",\"due_date\":\"2023-09-04T03:52:33-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"Diana Alejandra\",\"last_name\":\"Jiménez Vásquez\",\"email\":\"diyiva@hotmail.com\",\"phone_number\":\"3117707969\",\"address\":null,\"creation_date\":\"2023-09-03T15:52:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5bkmjtixsw1k9fhrwn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 20:53:43','2023-09-03 20:53:43'),(8681,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T15:55:06-05:00\",\"transaction\":{\"id\":\"tr5bkmjtixsw1k9fhrwn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138472573\",\"creation_date\":\"2023-09-03T15:52:33-05:00\",\"operation_date\":\"2023-09-03T15:54:59-05:00\",\"description\":\"Pago Mensual academia: Juan José Grisales Jiménez (1036455688)\",\"error_message\":null,\"order_id\":\"E97399278D24E6BBF3A2D5E9C8D34262_P3CQDJ6IL5_1693774350.1258\",\"due_date\":\"2023-09-04T03:52:33-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"Diana Alejandra\",\"last_name\":\"Jiménez Vásquez\",\"email\":\"diyiva@hotmail.com\",\"phone_number\":\"3117707969\",\"address\":null,\"creation_date\":\"2023-09-03T15:52:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 20:55:06','2023-09-03 20:55:06'),(8682,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T17:38:15-05:00\",\"transaction\":{\"id\":\"tredkbe9z8jkuxndmpyk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-03T17:38:15-05:00\",\"operation_date\":\"2023-09-03T17:38:15-05:00\",\"description\":\"Pago Mensual academia: Martin Perez Saldarriaga (1021946968)\",\"error_message\":null,\"order_id\":\"C82836ED448C41094025B4A872C5341E_D4HB39I0M8_1693780693.0124\",\"amount\":105000.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Perez Saldarriaga\",\"email\":\"angela.s15@hotmail.com\",\"phone_number\":\"3215616185\",\"address\":null,\"creation_date\":\"2023-09-03T17:38:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tredkbe9z8jkuxndmpyk/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-03 22:38:15','2023-09-03 22:38:15'),(8683,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T17:42:02-05:00\",\"transaction\":{\"id\":\"tra4ybvbugvpr9up0iii\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T17:40:43-05:00\",\"operation_date\":\"2023-09-03T17:40:43-05:00\",\"description\":\"Pago Mensual academia: Martin Perez Saldarriaga (1021946968)\",\"error_message\":null,\"order_id\":\"58521E4E2BD3D4B988CBD17D7365DF3C_V6BR451ALC_1693780840.1738\",\"due_date\":\"2023-09-04T05:40:43-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Clara \",\"last_name\":\"Alzate\",\"email\":\"clarita-1@hotmail.com\",\"phone_number\":\"3215616185\",\"address\":null,\"creation_date\":\"2023-09-03T17:40:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tra4ybvbugvpr9up0iii/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 22:42:03','2023-09-03 22:42:03'),(8684,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T17:43:30-05:00\",\"transaction\":{\"id\":\"tra4ybvbugvpr9up0iii\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138599441\",\"creation_date\":\"2023-09-03T17:40:43-05:00\",\"operation_date\":\"2023-09-03T17:43:10-05:00\",\"description\":\"Pago Mensual academia: Martin Perez Saldarriaga (1021946968)\",\"error_message\":null,\"order_id\":\"58521E4E2BD3D4B988CBD17D7365DF3C_V6BR451ALC_1693780840.1738\",\"due_date\":\"2023-09-04T05:40:43-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Clara \",\"last_name\":\"Alzate\",\"email\":\"clarita-1@hotmail.com\",\"phone_number\":\"3215616185\",\"address\":null,\"creation_date\":\"2023-09-03T17:40:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-03 22:43:30','2023-09-03 22:43:30'),(8685,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  905\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T18:27:56-05:00\",\"transaction\":{\"id\":\"triezkhmfy5oig8biqpw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-03T18:27:56-05:00\",\"operation_date\":\"2023-09-03T18:27:56-05:00\",\"description\":\"Pago Mensual academia: Jerónimo Quiñonez Raigoza (1023547001)\",\"error_message\":null,\"order_id\":\"37968AD196A5085F5ED91E58DF8C2CEF_3YFKBNZCID_1693783669.7999\",\"amount\":165900.00,\"customer\":{\"name\":\"Evelin Yuliana\",\"last_name\":\"Raigoza Montoya\",\"email\":\"evelin0118@hotmail.com\",\"phone_number\":\"3007454999\",\"address\":null,\"creation_date\":\"2023-09-03T18:27:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triezkhmfy5oig8biqpw/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-03 23:27:56','2023-09-03 23:27:56'),(8686,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1159\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T18:29:13-05:00\",\"transaction\":{\"id\":\"triezkhmfy5oig8biqpw\",\"authorization\":\"182912\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-03T18:27:56-05:00\",\"operation_date\":\"2023-09-03T18:29:12-05:00\",\"description\":\"Pago Mensual academia: Jerónimo Quiñonez Raigoza (1023547001)\",\"error_message\":null,\"order_id\":\"37968AD196A5085F5ED91E58DF8C2CEF_3YFKBNZCID_1693783669.7999\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX8031\",\"holder_name\":\"EVELIN RAIGOZA M \",\"expiration_year\":\"25\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Evelin Yuliana\",\"last_name\":\"Raigoza Montoya\",\"email\":\"evelin0118@hotmail.com\",\"phone_number\":\"3007454999\",\"address\":null,\"creation_date\":\"2023-09-03T18:27:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triezkhmfy5oig8biqpw/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-03 23:29:14','2023-09-03 23:29:14'),(8687,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T19:59:39-05:00\",\"transaction\":{\"id\":\"trmv3we2uz3lk2g2waww\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T19:58:21-05:00\",\"operation_date\":\"2023-09-03T19:58:21-05:00\",\"description\":\"Pago Mensual academia: Jacobo Velasquez Muñoz (1020323171)\",\"error_message\":null,\"order_id\":\"98CAC9D33AAD44BB31800130E8C50B5F_C2M1XU9LPJ_1693789094.7557\",\"due_date\":\"2023-09-04T07:58:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhon Arley\",\"last_name\":\"Velasquez Gonzalez\",\"email\":\"honderdog@hotmail.com\",\"phone_number\":\"3104759413\",\"address\":null,\"creation_date\":\"2023-09-03T19:58:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmv3we2uz3lk2g2waww/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 00:59:39','2023-09-04 00:59:39'),(8688,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T19:03:13-06:00\",\"transaction\":{\"id\":\"trmv3we2uz3lk2g2waww\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138783681\",\"creation_date\":\"2023-09-03T19:58:21-06:00\",\"operation_date\":\"2023-09-03T20:00:54-06:00\",\"description\":\"Pago Mensual academia: Jacobo Velasquez Muñoz (1020323171)\",\"error_message\":null,\"order_id\":\"98CAC9D33AAD44BB31800130E8C50B5F_C2M1XU9LPJ_1693789094.7557\",\"due_date\":\"2023-09-04T07:58:21-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhon Arley\",\"last_name\":\"Velasquez Gonzalez\",\"email\":\"honderdog@hotmail.com\",\"phone_number\":\"3104759413\",\"address\":null,\"creation_date\":\"2023-09-03T19:58:21-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 01:03:14','2023-09-04 01:03:14'),(8689,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T20:06:25-05:00\",\"transaction\":{\"id\":\"trzhahcskf2eiff57abo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T20:05:42-05:00\",\"operation_date\":\"2023-09-03T20:05:42-05:00\",\"description\":\"Pago Mensual academia: Tomás Enrique Contreras Gómez (1037672749)\",\"error_message\":null,\"order_id\":\"5E7264477CF9B6B237A0D254CF0324E2_RSOZ5YP37N_1693789535.7554\",\"due_date\":\"2023-09-04T08:05:42-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Enrique Antonio\",\"last_name\":\"Contreras Pereira\",\"email\":\"enriqueac54@gmail.com\",\"phone_number\":\"3177817335\",\"address\":null,\"creation_date\":\"2023-09-03T20:05:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzhahcskf2eiff57abo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 01:06:26','2023-09-04 01:06:26'),(8690,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  828\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T20:07:40-05:00\",\"transaction\":{\"id\":\"trzhahcskf2eiff57abo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138793465\",\"creation_date\":\"2023-09-03T20:05:42-05:00\",\"operation_date\":\"2023-09-03T20:07:32-05:00\",\"description\":\"Pago Mensual academia: Tomás Enrique Contreras Gómez (1037672749)\",\"error_message\":null,\"order_id\":\"5E7264477CF9B6B237A0D254CF0324E2_RSOZ5YP37N_1693789535.7554\",\"due_date\":\"2023-09-04T08:05:42-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Enrique Antonio\",\"last_name\":\"Contreras Pereira\",\"email\":\"enriqueac54@gmail.com\",\"phone_number\":\"3177817335\",\"address\":null,\"creation_date\":\"2023-09-03T20:05:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 01:07:41','2023-09-04 01:07:41'),(8691,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T20:52:15-05:00\",\"transaction\":{\"id\":\"trzdkwlsybuuaw15pfk1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-03T20:52:15-05:00\",\"operation_date\":\"2023-09-03T20:52:15-05:00\",\"description\":\"Pago Mensual academia: JACOBO ACERO ECHEVERRI (1021809700)\",\"error_message\":null,\"order_id\":\"43A115CBD6F4788924537365BE3D6012_D29KMREI5T_1693792331.1629\",\"amount\":165900.00,\"customer\":{\"name\":\"ANDRÉS\",\"last_name\":\"ACERO GIRALDO\",\"email\":\"maroacero@gmail.com\",\"phone_number\":\"3164741346\",\"address\":null,\"creation_date\":\"2023-09-03T20:52:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzdkwlsybuuaw15pfk1/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 01:52:16','2023-09-04 01:52:16'),(8692,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1140\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T20:53:10-05:00\",\"transaction\":{\"id\":\"trzdkwlsybuuaw15pfk1\",\"authorization\":\"205309\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-03T20:52:15-05:00\",\"operation_date\":\"2023-09-03T20:53:09-05:00\",\"description\":\"Pago Mensual academia: JACOBO ACERO ECHEVERRI (1021809700)\",\"error_message\":null,\"order_id\":\"43A115CBD6F4788924537365BE3D6012_D29KMREI5T_1693792331.1629\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"428387XXXXXX6106\",\"holder_name\":\"DIANA I ECHEVERRI V\",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"ANDRÉS\",\"last_name\":\"ACERO GIRALDO\",\"email\":\"maroacero@gmail.com\",\"phone_number\":\"3164741346\",\"address\":null,\"creation_date\":\"2023-09-03T20:52:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzdkwlsybuuaw15pfk1/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 01:53:11','2023-09-04 01:53:11'),(8693,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T21:45:31-05:00\",\"transaction\":{\"id\":\"trie97jbqi6kqc9uxwm3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T21:44:45-05:00\",\"operation_date\":\"2023-09-03T21:44:45-05:00\",\"description\":\"Pago Mensual academia: Santiago Bilbao Lopez (1036456780)\",\"error_message\":null,\"order_id\":\"CD8D5260C8131CA7AEEA5D41796D1A0A_CU097RDO4H_1693795477.9796\",\"due_date\":\"2023-09-04T09:44:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gustavo\",\"last_name\":\"Bilbao Cortes\",\"email\":\"gbilbao.gb@gmail.com\",\"phone_number\":\"3002033557\",\"address\":null,\"creation_date\":\"2023-09-03T21:44:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trie97jbqi6kqc9uxwm3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 02:45:31','2023-09-04 02:45:31'),(8694,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T21:46:25-05:00\",\"transaction\":{\"id\":\"trie97jbqi6kqc9uxwm3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138927401\",\"creation_date\":\"2023-09-03T21:44:45-05:00\",\"operation_date\":\"2023-09-03T21:46:20-05:00\",\"description\":\"Pago Mensual academia: Santiago Bilbao Lopez (1036456780)\",\"error_message\":null,\"order_id\":\"CD8D5260C8131CA7AEEA5D41796D1A0A_CU097RDO4H_1693795477.9796\",\"due_date\":\"2023-09-04T09:44:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gustavo\",\"last_name\":\"Bilbao Cortes\",\"email\":\"gbilbao.gb@gmail.com\",\"phone_number\":\"3002033557\",\"address\":null,\"creation_date\":\"2023-09-03T21:44:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 02:46:26','2023-09-04 02:46:26'),(8695,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T21:48:18-05:00\",\"transaction\":{\"id\":\"traf5u6fjjs6h8tkmrqf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-03T21:48:18-05:00\",\"operation_date\":\"2023-09-03T21:48:18-05:00\",\"description\":\"Pago Mensual academia: Martin Correa Corredor (1142115157)\",\"error_message\":null,\"order_id\":\"38EF4B66CB25E92ABE4D594ACB841471_371NFV2XOR_1693795692.2046\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Correa Corredor\",\"email\":\"davidricardocorrea@gmail.com\",\"phone_number\":\"3014477440\",\"address\":null,\"creation_date\":\"2023-09-03T21:48:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traf5u6fjjs6h8tkmrqf/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 02:48:19','2023-09-04 02:48:19'),(8696,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1141\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T21:49:06-05:00\",\"transaction\":{\"id\":\"traf5u6fjjs6h8tkmrqf\",\"authorization\":\"406903\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-03T21:48:18-05:00\",\"operation_date\":\"2023-09-03T21:49:06-05:00\",\"description\":\"Pago Mensual academia: Martin Correa Corredor (1142115157)\",\"error_message\":null,\"order_id\":\"38EF4B66CB25E92ABE4D594ACB841471_371NFV2XOR_1693795692.2046\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"485991XXXXXX4132\",\"holder_name\":\"DAVID R CORREA F\",\"expiration_year\":\"28\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO ITAU\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Correa Corredor\",\"email\":\"davidricardocorrea@gmail.com\",\"phone_number\":\"3014477440\",\"address\":null,\"creation_date\":\"2023-09-03T21:48:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traf5u6fjjs6h8tkmrqf/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 02:49:07','2023-09-04 02:49:07'),(8697,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T22:59:16-05:00\",\"transaction\":{\"id\":\"trqqwtt8pgjax2uekpa0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T22:58:38-05:00\",\"operation_date\":\"2023-09-03T22:58:38-05:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":null,\"order_id\":\"460B491B917D4185ED1F5BE97229721A_WL3C2O4EMB_1693799914.9783\",\"due_date\":\"2023-09-04T10:58:38-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-09-03T22:58:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqqwtt8pgjax2uekpa0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 03:59:17','2023-09-04 03:59:17'),(8698,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T22:00:14-06:00\",\"transaction\":{\"id\":\"trqqwtt8pgjax2uekpa0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138988895\",\"creation_date\":\"2023-09-03T22:58:38-06:00\",\"operation_date\":\"2023-09-03T00:00:00-06:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":null,\"order_id\":\"460B491B917D4185ED1F5BE97229721A_WL3C2O4EMB_1693799914.9783\",\"due_date\":\"2023-09-04T10:58:38-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-09-03T22:58:38-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 04:00:14','2023-09-04 04:00:14'),(8699,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T23:15:46-05:00\",\"transaction\":{\"id\":\"tr4b3hysnomgxnhayh9h\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T23:14:30-05:00\",\"operation_date\":\"2023-09-03T23:14:30-05:00\",\"description\":\"Pago Mensual academia: John Sebastián Gómez castaño (1015191978)\",\"error_message\":null,\"order_id\":\"02AE6A786BBF135D3D223CBC0E770B6E_5C9TGJDLMI_1693800864.4663\",\"due_date\":\"2023-09-04T11:14:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-09-03T23:14:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4b3hysnomgxnhayh9h/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 04:15:47','2023-09-04 04:15:47'),(8700,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T23:17:19-05:00\",\"transaction\":{\"id\":\"tr4b3hysnomgxnhayh9h\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138997123\",\"creation_date\":\"2023-09-03T23:14:30-05:00\",\"operation_date\":\"2023-09-03T23:16:46-05:00\",\"description\":\"Pago Mensual academia: John Sebastián Gómez castaño (1015191978)\",\"error_message\":null,\"order_id\":\"02AE6A786BBF135D3D223CBC0E770B6E_5C9TGJDLMI_1693800864.4663\",\"due_date\":\"2023-09-04T11:14:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-09-03T23:14:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 04:17:19','2023-09-04 04:17:19'),(8701,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-03T23:19:04-05:00\",\"transaction\":{\"id\":\"tr1msxj41qp5ngxbwsot\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-03T23:18:18-05:00\",\"operation_date\":\"2023-09-03T23:18:18-05:00\",\"description\":\"Pago Mensual academia: Matías Gómez castaño (1015194560)\",\"error_message\":null,\"order_id\":\"8068FEE5F49946B3A8F85B1007CD40BB_UO78GKSDLF_1693801092.6291\",\"due_date\":\"2023-09-04T11:18:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-09-03T23:18:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1msxj41qp5ngxbwsot/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 04:19:05','2023-09-04 04:19:05'),(8702,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-03T23:19:55-05:00\",\"transaction\":{\"id\":\"tr1msxj41qp5ngxbwsot\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"138998667\",\"creation_date\":\"2023-09-03T23:18:18-05:00\",\"operation_date\":\"2023-09-03T23:19:48-05:00\",\"description\":\"Pago Mensual academia: Matías Gómez castaño (1015194560)\",\"error_message\":null,\"order_id\":\"8068FEE5F49946B3A8F85B1007CD40BB_UO78GKSDLF_1693801092.6291\",\"due_date\":\"2023-09-04T11:18:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-09-03T23:18:18-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 04:19:56','2023-09-04 04:19:56'),(8703,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  879\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-04T02:28:57-06:00\",\"transaction\":{\"id\":\"trbpbjwj06s4q6ory1g9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-31T16:35:59-06:00\",\"operation_date\":\"2023-08-31T16:35:59-06:00\",\"description\":\"Pago Mensual academia: MATIAS MOYA ROBAYO (1035005319)\",\"error_message\":null,\"order_id\":\"_1693517754.1128\",\"due_date\":\"2023-09-01T04:35:59-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MATIAS\",\"last_name\":\"MOYA ROBAYO\",\"email\":\"dalilarobayo@gmail.com\",\"phone_number\":\"3007333632\",\"address\":null,\"creation_date\":\"2023-08-31T16:35:59-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbpbjwj06s4q6ory1g9/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 08:28:57','2023-09-04 08:28:57'),(8704,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-04T02:28:57-06:00\",\"transaction\":{\"id\":\"trl0gpnr1uonzr1ncoig\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-08-31T23:21:57-06:00\",\"operation_date\":\"2023-08-31T23:21:57-06:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"_1693542111.8065\",\"due_date\":\"2023-09-01T11:21:57-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-08-31T23:21:57-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl0gpnr1uonzr1ncoig/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 08:28:57','2023-09-04 08:28:57'),(8705,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  905\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-04T02:28:57-06:00\",\"transaction\":{\"id\":\"trcqosvgqlefpqfm7vna\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-01T07:50:59-06:00\",\"operation_date\":\"2023-09-01T07:50:59-06:00\",\"description\":\"Pago Mensual academia: jose Gabriel Quintero hoyos (1013365886)\",\"error_message\":null,\"order_id\":\"_1693572654.9192\",\"due_date\":\"2023-09-01T19:50:59-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jose Gabriel\",\"last_name\":\"quintero hoyos\",\"email\":\"matiasygabriel0409@hotmail.com\",\"phone_number\":\"3022012454\",\"address\":null,\"creation_date\":\"2023-09-01T07:50:59-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcqosvgqlefpqfm7vna/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 08:28:57','2023-09-04 08:28:57'),(8706,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-04T02:29:28-06:00\",\"transaction\":{\"id\":\"trzwxzktkgo7q2g4yuuh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-01T10:40:06-06:00\",\"operation_date\":\"2023-09-01T10:40:06-06:00\",\"description\":\"Pago Inscripción academia: Isabella Zuluaga (123765)\",\"error_message\":null,\"order_id\":\"C4CA4238A0B923820DCC509A6F75849B_Q70LF6YHIR_1693582795.8334\",\"due_date\":\"2023-09-01T22:40:06-06:00\",\"amount\":200.00,\"customer\":{\"name\":\"Test\",\"last_name\":\"SC\",\"email\":\"test@test.com\",\"phone_number\":\"3162844777\",\"address\":null,\"creation_date\":\"2023-09-01T10:40:06-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trzwxzktkgo7q2g4yuuh/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 08:29:28','2023-09-04 08:29:28'),(8707,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-04T02:29:28-06:00\",\"transaction\":{\"id\":\"trftvumareiziyojx59d\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-01T10:44:18-06:00\",\"operation_date\":\"2023-09-01T10:44:18-06:00\",\"description\":\"Pago Monthly payment academia: Isabella Zuluaga (123765)\",\"error_message\":null,\"order_id\":\"C81E728D9D4C2F636F067F89CC14862C_9YB8RVEPSX_1693583052.31\",\"due_date\":\"2023-09-01T22:44:19-06:00\",\"amount\":80.00,\"customer\":{\"name\":\"Test\",\"last_name\":\"SC\",\"email\":\"test@test.com\",\"phone_number\":\"3162844777\",\"address\":null,\"creation_date\":\"2023-09-01T10:44:18-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trftvumareiziyojx59d/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 08:29:28','2023-09-04 08:29:28'),(8708,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T08:07:07-05:00\",\"transaction\":{\"id\":\"trs1diaeet1dyeuuokt0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-04T08:07:07-05:00\",\"operation_date\":\"2023-09-04T08:07:07-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Hernandez Berrio (1041461298)\",\"error_message\":null,\"order_id\":\"40DBA662FAE60CD3BCCEAA76A82D2873_MCSQ02IRA6_1693832820.3139\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge Mario\",\"last_name\":\"Berrio\",\"email\":\"g-orbe@hotmail.com\",\"phone_number\":\"3008850836\",\"address\":null,\"creation_date\":\"2023-09-04T08:07:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trs1diaeet1dyeuuokt0/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 13:07:07','2023-09-04 13:07:07'),(8709,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1145\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T08:11:06-05:00\",\"transaction\":{\"id\":\"trs1diaeet1dyeuuokt0\",\"authorization\":\"081516\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-04T08:07:07-05:00\",\"operation_date\":\"2023-09-04T08:11:06-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Hernandez Berrio (1041461298)\",\"error_message\":null,\"order_id\":\"40DBA662FAE60CD3BCCEAA76A82D2873_MCSQ02IRA6_1693832820.3139\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"540695XXXXXX5167\",\"holder_name\":\"JORGE M BERRIO \",\"expiration_year\":\"24\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO CAJA SOCIAL\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Jorge Mario\",\"last_name\":\"Berrio\",\"email\":\"g-orbe@hotmail.com\",\"phone_number\":\"3008850836\",\"address\":null,\"creation_date\":\"2023-09-04T08:07:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trs1diaeet1dyeuuokt0/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 13:11:07','2023-09-04 13:11:07'),(8710,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T08:23:28-05:00\",\"transaction\":{\"id\":\"trtjth9afkdwb5zhyguj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T08:22:48-05:00\",\"operation_date\":\"2023-09-04T08:22:48-05:00\",\"description\":\"Pago Mensual academia: Martin Perez Saldarriaga (1021946968)\",\"error_message\":null,\"order_id\":\"C82836ED448C41094025B4A872C5341E_D4HB39I0M8_1693833765.802\",\"due_date\":\"2023-09-04T20:22:48-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Clara \",\"last_name\":\"Alzate \",\"email\":\"angela.s15@hotmail.com\",\"phone_number\":\"3215616185\",\"address\":null,\"creation_date\":\"2023-09-04T08:22:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtjth9afkdwb5zhyguj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 13:23:28','2023-09-04 13:23:28'),(8711,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T08:24:46-05:00\",\"transaction\":{\"id\":\"trtjth9afkdwb5zhyguj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"139224961\",\"creation_date\":\"2023-09-04T08:22:48-05:00\",\"operation_date\":\"2023-09-04T08:24:26-05:00\",\"description\":\"Pago Mensual academia: Martin Perez Saldarriaga (1021946968)\",\"error_message\":null,\"order_id\":\"C82836ED448C41094025B4A872C5341E_D4HB39I0M8_1693833765.802\",\"due_date\":\"2023-09-04T20:22:48-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Clara \",\"last_name\":\"Alzate \",\"email\":\"angela.s15@hotmail.com\",\"phone_number\":\"3215616185\",\"address\":null,\"creation_date\":\"2023-09-04T08:22:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 13:24:47','2023-09-04 13:24:47'),(8712,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T08:36:34-05:00\",\"transaction\":{\"id\":\"triq5bbemt4zper1vir1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-04T08:36:34-05:00\",\"operation_date\":\"2023-09-04T08:36:34-05:00\",\"description\":\"Pago Mensual academia: Matias Restrepo giraldo (1017935974)\",\"error_message\":null,\"order_id\":\"0A49E3C3A03EBDE64F85C0BACD8A08E2_HI48YXNCAT_1693834590.7203\",\"amount\":165900.00,\"customer\":{\"name\":\"Johan Stiven\",\"last_name\":\"Restrepo Zapata\",\"email\":\"tmstivenrpo@gmail.com\",\"phone_number\":\"3136427474\",\"address\":null,\"creation_date\":\"2023-09-04T08:36:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triq5bbemt4zper1vir1/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 13:36:35','2023-09-04 13:36:35'),(8713,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1151\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T08:37:27-05:00\",\"transaction\":{\"id\":\"triq5bbemt4zper1vir1\",\"authorization\":\"R09327\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-04T08:36:34-05:00\",\"operation_date\":\"2023-09-04T08:37:26-05:00\",\"description\":\"Pago Mensual academia: Matias Restrepo giraldo (1017935974)\",\"error_message\":null,\"order_id\":\"0A49E3C3A03EBDE64F85C0BACD8A08E2_HI48YXNCAT_1693834590.7203\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"543862XXXXXX2485\",\"holder_name\":\"Banco de bogota\",\"expiration_year\":\"26\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Johan Stiven\",\"last_name\":\"Restrepo Zapata\",\"email\":\"tmstivenrpo@gmail.com\",\"phone_number\":\"3136427474\",\"address\":null,\"creation_date\":\"2023-09-04T08:36:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triq5bbemt4zper1vir1/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 13:37:28','2023-09-04 13:37:28'),(8714,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T09:53:19-05:00\",\"transaction\":{\"id\":\"trvaym09ic144ps8n1iv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T09:52:38-05:00\",\"operation_date\":\"2023-09-04T09:52:38-05:00\",\"description\":\"Pago Mensual academia: samir restrepo jimenez (1031946292)\",\"error_message\":null,\"order_id\":\"C563C2C394023A07D56AD6B3EB09537A_3NHJ7RWOFM_1693839155.0026\",\"due_date\":\"2023-09-04T21:52:38-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"samir\",\"last_name\":\"restrepo jimenez\",\"email\":\"elizabethjimenezzuluaga@gmail.com\",\"phone_number\":\"3045928569\",\"address\":null,\"creation_date\":\"2023-09-04T09:52:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvaym09ic144ps8n1iv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 14:53:19','2023-09-04 14:53:19'),(8715,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T08:54:33-06:00\",\"transaction\":{\"id\":\"trvaym09ic144ps8n1iv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"139471310\",\"creation_date\":\"2023-09-04T09:52:38-06:00\",\"operation_date\":\"2023-09-04T09:54:04-06:00\",\"description\":\"Pago Mensual academia: samir restrepo jimenez (1031946292)\",\"error_message\":null,\"order_id\":\"C563C2C394023A07D56AD6B3EB09537A_3NHJ7RWOFM_1693839155.0026\",\"due_date\":\"2023-09-04T21:52:38-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"samir\",\"last_name\":\"restrepo jimenez\",\"email\":\"elizabethjimenezzuluaga@gmail.com\",\"phone_number\":\"3045928569\",\"address\":null,\"creation_date\":\"2023-09-04T09:52:38-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 14:54:34','2023-09-04 14:54:34'),(8716,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T10:32:48-05:00\",\"transaction\":{\"id\":\"trcgyl1v0szpfy7ixcvt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T10:32:07-05:00\",\"operation_date\":\"2023-09-04T10:32:07-05:00\",\"description\":\"Pago Mensual academia: martin ignacio pimiento puerta (1019907038)\",\"error_message\":null,\"order_id\":\"143758EE65FB29D30CAA170C0DB0ED36_R4QJ9NL8PW_1693841517.8471\",\"due_date\":\"2023-09-04T22:32:07-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MARTIN\",\"last_name\":\"PIMIENTO\",\"email\":\"jmpimiento2@gmail.com\",\"phone_number\":\"3157246615\",\"address\":null,\"creation_date\":\"2023-09-04T10:32:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcgyl1v0szpfy7ixcvt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 15:32:49','2023-09-04 15:32:49'),(8717,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T09:33:31-06:00\",\"transaction\":{\"id\":\"trcgyl1v0szpfy7ixcvt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"139595898\",\"creation_date\":\"2023-09-04T10:32:07-06:00\",\"operation_date\":\"2023-09-04T10:33:28-06:00\",\"description\":\"Pago Mensual academia: martin ignacio pimiento puerta (1019907038)\",\"error_message\":null,\"order_id\":\"143758EE65FB29D30CAA170C0DB0ED36_R4QJ9NL8PW_1693841517.8471\",\"due_date\":\"2023-09-04T22:32:07-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MARTIN\",\"last_name\":\"PIMIENTO\",\"email\":\"jmpimiento2@gmail.com\",\"phone_number\":\"3157246615\",\"address\":null,\"creation_date\":\"2023-09-04T10:32:07-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 15:33:32','2023-09-04 15:33:32'),(8718,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T10:50:56-05:00\",\"transaction\":{\"id\":\"trjfx0jqw2h6uj6vtkd5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-04T10:50:56-05:00\",\"operation_date\":\"2023-09-04T10:50:56-05:00\",\"description\":\"Pago Mensual academia: tomas iregui muñoz (1035006310)\",\"error_message\":null,\"order_id\":\"FA6C94460E902005A0B660266190C8BA_SQVKHTMXGP_1693842643.9998\",\"amount\":165900.00,\"customer\":{\"name\":\"LINA MARIA\",\"last_name\":\"MUÑOZ CAICEDO\",\"email\":\"linamunoz576@hotmail.com\",\"phone_number\":\"3122474469\",\"address\":null,\"creation_date\":\"2023-09-04T10:50:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjfx0jqw2h6uj6vtkd5/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 15:50:56','2023-09-04 15:50:56'),(8719,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1222\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T10:57:35-05:00\",\"transaction\":{\"id\":\"trjfx0jqw2h6uj6vtkd5\",\"authorization\":\"105735\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":3,\"conciliated\":true,\"creation_date\":\"2023-09-04T10:50:56-05:00\",\"operation_date\":\"2023-09-04T10:57:34-05:00\",\"description\":\"Pago Mensual academia: tomas iregui muñoz (1035006310)\",\"error_message\":null,\"order_id\":\"FA6C94460E902005A0B660266190C8BA_SQVKHTMXGP_1693842643.9998\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"423150XXXXXX0878\",\"holder_name\":\"Beatriz e munoz c\",\"expiration_year\":\"27\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":3,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"LINA MARIA\",\"last_name\":\"MUÑOZ CAICEDO\",\"email\":\"linamunoz576@hotmail.com\",\"phone_number\":\"3122474469\",\"address\":null,\"creation_date\":\"2023-09-04T10:50:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjfx0jqw2h6uj6vtkd5/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 15:57:36','2023-09-04 15:57:36'),(8720,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T11:47:27-05:00\",\"transaction\":{\"id\":\"trwic2r9vpegeev6q3yp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T11:46:06-05:00\",\"operation_date\":\"2023-09-04T11:46:06-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Duque Alvarez (1033189257)\",\"error_message\":null,\"order_id\":\"EB1848290D5A7DE9C9CCABC67FEFA211_NH504V6ZAR_1693845946.4594\",\"due_date\":\"2023-09-04T23:46:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eduardo\",\"last_name\":\"Duque Higuita\",\"email\":\"duqueedward@gmail.com\",\"phone_number\":\"3122383147\",\"address\":null,\"creation_date\":\"2023-09-04T11:46:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwic2r9vpegeev6q3yp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 16:47:27','2023-09-04 16:47:27'),(8721,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T11:49:37-05:00\",\"transaction\":{\"id\":\"trwic2r9vpegeev6q3yp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"139852749\",\"creation_date\":\"2023-09-04T11:46:06-05:00\",\"operation_date\":\"2023-09-04T11:49:15-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Duque Alvarez (1033189257)\",\"error_message\":null,\"order_id\":\"EB1848290D5A7DE9C9CCABC67FEFA211_NH504V6ZAR_1693845946.4594\",\"due_date\":\"2023-09-04T23:46:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eduardo\",\"last_name\":\"Duque Higuita\",\"email\":\"duqueedward@gmail.com\",\"phone_number\":\"3122383147\",\"address\":null,\"creation_date\":\"2023-09-04T11:46:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 16:49:37','2023-09-04 16:49:37'),(8722,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T13:14:01-05:00\",\"transaction\":{\"id\":\"trdsmpz0tqh7uymadm0i\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T13:13:08-05:00\",\"operation_date\":\"2023-09-04T13:13:08-05:00\",\"description\":\"Pago Mensual academia: Thomás Diosa Sierra (1023560772)\",\"error_message\":null,\"order_id\":\"91E50FE1E39AF2869D3336EAAEEBDB43_28J3G4DQBY_1693851181.5675\",\"due_date\":\"2023-09-05T01:13:08-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Diosa Arrubla\",\"email\":\"juan.hz@hotmail.com\",\"phone_number\":\"3226196131\",\"address\":null,\"creation_date\":\"2023-09-04T13:13:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdsmpz0tqh7uymadm0i/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 18:14:02','2023-09-04 18:14:02'),(8723,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  847\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-04T12:36:13-06:00\",\"transaction\":{\"id\":\"trdsmpz0tqh7uymadm0i\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-04T13:13:08-06:00\",\"operation_date\":\"2023-09-04T13:14:12-06:00\",\"description\":\"Pago Mensual academia: Thomás Diosa Sierra (1023560772)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"91E50FE1E39AF2869D3336EAAEEBDB43_28J3G4DQBY_1693851181.5675\",\"due_date\":\"2023-09-05T01:13:08-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Diosa Arrubla\",\"email\":\"juan.hz@hotmail.com\",\"phone_number\":\"3226196131\",\"address\":null,\"creation_date\":\"2023-09-04T13:13:08-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 18:36:14','2023-09-04 18:36:14'),(8724,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T13:42:10-05:00\",\"transaction\":{\"id\":\"trxhyde5fywb5namd3wm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-04T13:42:10-05:00\",\"operation_date\":\"2023-09-04T13:42:10-05:00\",\"description\":\"Pago Mensual academia: Martin Monsalve Guzman (1033202456)\",\"error_message\":null,\"order_id\":\"C04C19C2C2474DBF5F7AC4372C5B9AF1_AGJWC5IRYH_1693852910.6529\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Monsalve Arbelaez\",\"email\":\"alejandromonsalve91@gmail.com\",\"phone_number\":\"3002140944\",\"address\":null,\"creation_date\":\"2023-09-04T13:42:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxhyde5fywb5namd3wm/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 18:42:11','2023-09-04 18:42:11'),(8725,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1157\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T13:42:59-05:00\",\"transaction\":{\"id\":\"trxhyde5fywb5namd3wm\",\"authorization\":\"972173\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-04T13:42:10-05:00\",\"operation_date\":\"2023-09-04T13:42:57-05:00\",\"description\":\"Pago Mensual academia: Martin Monsalve Guzman (1033202456)\",\"error_message\":null,\"order_id\":\"C04C19C2C2474DBF5F7AC4372C5B9AF1_AGJWC5IRYH_1693852910.6529\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459425XXXXXX6711\",\"holder_name\":\"Alejandro monsalve a\",\"expiration_year\":\"27\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Monsalve Arbelaez\",\"email\":\"alejandromonsalve91@gmail.com\",\"phone_number\":\"3002140944\",\"address\":null,\"creation_date\":\"2023-09-04T13:42:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxhyde5fywb5namd3wm/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 18:42:59','2023-09-04 18:42:59'),(8726,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T14:00:43-05:00\",\"transaction\":{\"id\":\"trtictc1q5ya3rqeqdqa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T13:59:57-05:00\",\"operation_date\":\"2023-09-04T13:59:57-05:00\",\"description\":\"Pago Mensual academia: Pedro Escobar Acosta (1035003260)\",\"error_message\":null,\"order_id\":\"0E57098D0318A954D1443E2974A38FAC_49AKYG1RCW_1693853993.8041\",\"due_date\":\"2023-09-05T01:59:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jairo\",\"last_name\":\"Escobar Jaramillo\",\"email\":\"jaironcha@yahoo.com\",\"phone_number\":\"3155949427\",\"address\":null,\"creation_date\":\"2023-09-04T13:59:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtictc1q5ya3rqeqdqa/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 19:00:44','2023-09-04 19:00:44'),(8727,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T14:02:05-05:00\",\"transaction\":{\"id\":\"trtictc1q5ya3rqeqdqa\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140227883\",\"creation_date\":\"2023-09-04T13:59:57-05:00\",\"operation_date\":\"2023-09-04T14:01:33-05:00\",\"description\":\"Pago Mensual academia: Pedro Escobar Acosta (1035003260)\",\"error_message\":null,\"order_id\":\"0E57098D0318A954D1443E2974A38FAC_49AKYG1RCW_1693853993.8041\",\"due_date\":\"2023-09-05T01:59:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jairo\",\"last_name\":\"Escobar Jaramillo\",\"email\":\"jaironcha@yahoo.com\",\"phone_number\":\"3155949427\",\"address\":null,\"creation_date\":\"2023-09-04T13:59:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 19:02:06','2023-09-04 19:02:06'),(8728,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T14:09:40-05:00\",\"transaction\":{\"id\":\"trsa3jbi6ahcpwyh7ajs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T14:08:39-05:00\",\"operation_date\":\"2023-09-04T14:08:39-05:00\",\"description\":\"Pago Mensual academia: Thomás Diosa Sierra (1023560772)\",\"error_message\":null,\"order_id\":\"91E50FE1E39AF2869D3336EAAEEBDB43_28J3G4DQBY_1693854514.1278\",\"due_date\":\"2023-09-05T02:08:39-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Diosa Arrubla\",\"email\":\"juan.hz@hotmail.com\",\"phone_number\":\"3226196131\",\"address\":null,\"creation_date\":\"2023-09-04T14:08:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsa3jbi6ahcpwyh7ajs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 19:09:41','2023-09-04 19:09:41'),(8729,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T14:11:08-05:00\",\"transaction\":{\"id\":\"trsa3jbi6ahcpwyh7ajs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140252597\",\"creation_date\":\"2023-09-04T14:08:39-05:00\",\"operation_date\":\"2023-09-04T14:11:02-05:00\",\"description\":\"Pago Mensual academia: Thomás Diosa Sierra (1023560772)\",\"error_message\":null,\"order_id\":\"91E50FE1E39AF2869D3336EAAEEBDB43_28J3G4DQBY_1693854514.1278\",\"due_date\":\"2023-09-05T02:08:39-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Diosa Arrubla\",\"email\":\"juan.hz@hotmail.com\",\"phone_number\":\"3226196131\",\"address\":null,\"creation_date\":\"2023-09-04T14:08:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 19:11:09','2023-09-04 19:11:09'),(8730,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T14:14:32-05:00\",\"transaction\":{\"id\":\"tr08igekpuvvseeccuva\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T14:13:30-05:00\",\"operation_date\":\"2023-09-04T14:13:30-05:00\",\"description\":\"Pago Mensual academia: Emiliano Guzman Acosta (1035010754)\",\"error_message\":null,\"order_id\":\"BCA382C81484983F2D437F97D1E141F3_8HP163AXS7_1693854805.3152\",\"due_date\":\"2023-09-05T02:13:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Mariel\",\"last_name\":\"Acosta\",\"email\":\"javierguzman0713@gmail.com\",\"phone_number\":\"3218836496\",\"address\":null,\"creation_date\":\"2023-09-04T14:13:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr08igekpuvvseeccuva/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 19:14:32','2023-09-04 19:14:32'),(8731,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T14:15:31-05:00\",\"transaction\":{\"id\":\"tr08igekpuvvseeccuva\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140267061\",\"creation_date\":\"2023-09-04T14:13:30-05:00\",\"operation_date\":\"2023-09-04T14:15:23-05:00\",\"description\":\"Pago Mensual academia: Emiliano Guzman Acosta (1035010754)\",\"error_message\":null,\"order_id\":\"BCA382C81484983F2D437F97D1E141F3_8HP163AXS7_1693854805.3152\",\"due_date\":\"2023-09-05T02:13:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Mariel\",\"last_name\":\"Acosta\",\"email\":\"javierguzman0713@gmail.com\",\"phone_number\":\"3218836496\",\"address\":null,\"creation_date\":\"2023-09-04T14:13:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 19:15:32','2023-09-04 19:15:32'),(8732,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T15:06:45-05:00\",\"transaction\":{\"id\":\"trrnr9epsmrykqi9u4wi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T15:05:02-05:00\",\"operation_date\":\"2023-09-04T15:05:02-05:00\",\"description\":\"Pago Mensual academia: Nicolas Fernandez Valencia (1033194060)\",\"error_message\":null,\"order_id\":\"67974233917CEA0E42A49A2FB7EB4CF4_7MNCED8A01_1693857685.8361\",\"due_date\":\"2023-09-05T03:05:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Fernandez\",\"email\":\"jugrefe69@yahoo.es\",\"phone_number\":\"3117629791\",\"address\":null,\"creation_date\":\"2023-09-04T15:05:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrnr9epsmrykqi9u4wi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:06:45','2023-09-04 20:06:45'),(8733,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T15:07:27-05:00\",\"transaction\":{\"id\":\"tr2zb7mhdjbxlpommuu6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-04T15:07:27-05:00\",\"operation_date\":\"2023-09-04T15:07:27-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"115F89503138416A242F40FB7D7F338E_E-64F638DB-63_1693858017.6281\",\"amount\":86900.00,\"customer\":{\"name\":\"Isabela\",\"last_name\":\"gonzalez\",\"email\":\"ochoaisabela99@gmail.com\",\"phone_number\":\"3125495993\",\"address\":null,\"creation_date\":\"2023-09-04T15:07:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr2zb7mhdjbxlpommuu6/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 20:07:27','2023-09-04 20:07:27'),(8734,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T15:09:11-05:00\",\"transaction\":{\"id\":\"trrnr9epsmrykqi9u4wi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140429462\",\"creation_date\":\"2023-09-04T15:05:02-05:00\",\"operation_date\":\"2023-09-04T15:08:53-05:00\",\"description\":\"Pago Mensual academia: Nicolas Fernandez Valencia (1033194060)\",\"error_message\":null,\"order_id\":\"67974233917CEA0E42A49A2FB7EB4CF4_7MNCED8A01_1693857685.8361\",\"due_date\":\"2023-09-05T03:05:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Fernandez\",\"email\":\"jugrefe69@yahoo.es\",\"phone_number\":\"3117629791\",\"address\":null,\"creation_date\":\"2023-09-04T15:05:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:09:12','2023-09-04 20:09:12'),(8735,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  951\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T15:16:41-05:00\",\"transaction\":{\"id\":\"trxgiktkvyfrt9kwojtz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T15:14:47-05:00\",\"operation_date\":\"2023-09-04T15:14:47-05:00\",\"description\":\"Pago Mensual academia: José Angel Londoño Barrientos (1018244113)\",\"error_message\":null,\"order_id\":\"C24FE9F765A44048868B5A620F05678E_1Q7LDMFV5P_1693858484.7652\",\"due_date\":\"2023-09-05T03:14:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"OMAIRA MARGARITA\",\"last_name\":\"BARRIENTOS MORA\",\"email\":\"omairabarrientos@hotmail.com\",\"phone_number\":\"3128832937\",\"address\":null,\"creation_date\":\"2023-09-04T15:14:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxgiktkvyfrt9kwojtz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:16:42','2023-09-04 20:16:42'),(8736,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T15:16:59-05:00\",\"transaction\":{\"id\":\"trypxljcl92ffqyzwhrk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T15:15:17-05:00\",\"operation_date\":\"2023-09-04T15:15:17-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"115F89503138416A242F40FB7D7F338E_E-64F638DB-63_1693858192.9941\",\"due_date\":\"2023-09-05T03:15:17-05:00\",\"amount\":86900.00,\"customer\":{\"name\":\"Isabela\",\"last_name\":\"gonzalez\",\"email\":\"ochoaisabela99@gmail.com\",\"phone_number\":\"3125495993\",\"address\":null,\"creation_date\":\"2023-09-04T15:15:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trypxljcl92ffqyzwhrk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:16:59','2023-09-04 20:16:59'),(8737,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-04T14:18:25-06:00\",\"transaction\":{\"id\":\"trypxljcl92ffqyzwhrk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-04T15:15:17-06:00\",\"operation_date\":\"2023-09-04T15:17:14-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"115F89503138416A242F40FB7D7F338E_E-64F638DB-63_1693858192.9941\",\"due_date\":\"2023-09-05T03:15:17-06:00\",\"error_code\":1007,\"amount\":86900.00,\"customer\":{\"name\":\"Isabela\",\"last_name\":\"gonzalez\",\"email\":\"ochoaisabela99@gmail.com\",\"phone_number\":\"3125495993\",\"address\":null,\"creation_date\":\"2023-09-04T15:15:17-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:18:26','2023-09-04 20:18:26'),(8738,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T15:21:54-05:00\",\"transaction\":{\"id\":\"trhphadrly8krvmtdd7h\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T15:21:01-05:00\",\"operation_date\":\"2023-09-04T15:21:01-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Roldan Garcia (1020315369)\",\"error_message\":null,\"order_id\":\"_1693858855.957\",\"due_date\":\"2023-09-05T03:21:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Flavio\",\"last_name\":\"Roldan Ospina\",\"email\":\"flavioroldan@gmail.com\",\"phone_number\":\"3104444641\",\"address\":null,\"creation_date\":\"2023-09-04T15:21:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhphadrly8krvmtdd7h/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:21:55','2023-09-04 20:21:55'),(8739,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  834\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T15:22:54-05:00\",\"transaction\":{\"id\":\"trxgiktkvyfrt9kwojtz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140459973\",\"creation_date\":\"2023-09-04T15:14:47-05:00\",\"operation_date\":\"2023-09-04T15:21:58-05:00\",\"description\":\"Pago Mensual academia: José Angel Londoño Barrientos (1018244113)\",\"error_message\":null,\"order_id\":\"C24FE9F765A44048868B5A620F05678E_1Q7LDMFV5P_1693858484.7652\",\"due_date\":\"2023-09-05T03:14:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"OMAIRA MARGARITA\",\"last_name\":\"BARRIENTOS MORA\",\"email\":\"omairabarrientos@hotmail.com\",\"phone_number\":\"3128832937\",\"address\":null,\"creation_date\":\"2023-09-04T15:14:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:22:55','2023-09-04 20:22:55'),(8740,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T15:23:47-05:00\",\"transaction\":{\"id\":\"truo0yy7mxulchveliu3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T15:22:38-05:00\",\"operation_date\":\"2023-09-04T15:22:38-05:00\",\"description\":\"Pago Mensual academia: isaac marin chica (1033270352)\",\"error_message\":null,\"order_id\":\"A292F1C5874B2BE8395FFD75F313937F_0DQB435TGZ_1693858955.8041\",\"due_date\":\"2023-09-05T03:22:38-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"oscar\",\"last_name\":\"marin carvajal\",\"email\":\"marinozkar20@gmail.com\",\"phone_number\":\"3015171110\",\"address\":null,\"creation_date\":\"2023-09-04T15:22:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truo0yy7mxulchveliu3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:23:48','2023-09-04 20:23:48'),(8741,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  774\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T14:24:20-06:00\",\"transaction\":{\"id\":\"trhphadrly8krvmtdd7h\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140475877\",\"creation_date\":\"2023-09-04T15:21:01-06:00\",\"operation_date\":\"2023-09-04T15:22:43-06:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Roldan Garcia (1020315369)\",\"error_message\":null,\"order_id\":\"_1693858855.957\",\"due_date\":\"2023-09-05T03:21:01-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Flavio\",\"last_name\":\"Roldan Ospina\",\"email\":\"flavioroldan@gmail.com\",\"phone_number\":\"3104444641\",\"address\":null,\"creation_date\":\"2023-09-04T15:21:01-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:24:21','2023-09-04 20:24:21'),(8742,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T15:25:35-05:00\",\"transaction\":{\"id\":\"trtpu7ynqcjbfboshtek\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T15:23:16-05:00\",\"operation_date\":\"2023-09-04T15:23:16-05:00\",\"description\":\"Pago Mensual academia: santiago mercado gallego (1013463850)\",\"error_message\":null,\"order_id\":\"_1693858987.3159\",\"due_date\":\"2023-09-05T03:23:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"santiago\",\"last_name\":\"mercado gallego\",\"email\":\"agallegorivas23@gmail.com\",\"phone_number\":\"3004540902\",\"address\":null,\"creation_date\":\"2023-09-04T15:23:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtpu7ynqcjbfboshtek/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:25:35','2023-09-04 20:25:35'),(8743,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  773\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T15:26:15-05:00\",\"transaction\":{\"id\":\"trtpu7ynqcjbfboshtek\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140487494\",\"creation_date\":\"2023-09-04T15:23:16-05:00\",\"operation_date\":\"2023-09-04T15:26:06-05:00\",\"description\":\"Pago Mensual academia: santiago mercado gallego (1013463850)\",\"error_message\":null,\"order_id\":\"_1693858987.3159\",\"due_date\":\"2023-09-05T03:23:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"santiago\",\"last_name\":\"mercado gallego\",\"email\":\"agallegorivas23@gmail.com\",\"phone_number\":\"3004540902\",\"address\":null,\"creation_date\":\"2023-09-04T15:23:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:26:15','2023-09-04 20:26:15'),(8744,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  774\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T14:27:15-06:00\",\"transaction\":{\"id\":\"trhphadrly8krvmtdd7h\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140475877\",\"creation_date\":\"2023-09-04T15:21:01-06:00\",\"operation_date\":\"2023-09-04T15:22:43-06:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Roldan Garcia (1020315369)\",\"error_message\":null,\"order_id\":\"_1693858855.957\",\"due_date\":\"2023-09-05T03:21:01-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Flavio\",\"last_name\":\"Roldan Ospina\",\"email\":\"flavioroldan@gmail.com\",\"phone_number\":\"3104444641\",\"address\":null,\"creation_date\":\"2023-09-04T15:21:01-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:27:16','2023-09-04 20:27:16'),(8745,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  840\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-04T14:45:12-06:00\",\"transaction\":{\"id\":\"truo0yy7mxulchveliu3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-04T15:22:38-06:00\",\"operation_date\":\"2023-09-04T15:23:52-06:00\",\"description\":\"Pago Mensual academia: isaac marin chica (1033270352)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"A292F1C5874B2BE8395FFD75F313937F_0DQB435TGZ_1693858955.8041\",\"due_date\":\"2023-09-05T03:22:38-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"oscar\",\"last_name\":\"marin carvajal\",\"email\":\"marinozkar20@gmail.com\",\"phone_number\":\"3015171110\",\"address\":null,\"creation_date\":\"2023-09-04T15:22:38-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:45:14','2023-09-04 20:45:14'),(8746,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T15:46:41-05:00\",\"transaction\":{\"id\":\"tr8xgqpye8n9qfs80lwk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T15:46:00-05:00\",\"operation_date\":\"2023-09-04T15:46:00-05:00\",\"description\":\"Pago Mensual academia: isaac marin chica (1033270352)\",\"error_message\":null,\"order_id\":\"A292F1C5874B2BE8395FFD75F313937F_0DQB435TGZ_1693860356.3046\",\"due_date\":\"2023-09-05T03:46:00-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"oscar\",\"last_name\":\"marin carvajal\",\"email\":\"marinozkar20@gmail.com\",\"phone_number\":\"3015171110\",\"address\":null,\"creation_date\":\"2023-09-04T15:46:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8xgqpye8n9qfs80lwk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:46:42','2023-09-04 20:46:42'),(8747,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T15:48:04-05:00\",\"transaction\":{\"id\":\"tr8xgqpye8n9qfs80lwk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140553401\",\"creation_date\":\"2023-09-04T15:46:00-05:00\",\"operation_date\":\"2023-09-04T15:47:49-05:00\",\"description\":\"Pago Mensual academia: isaac marin chica (1033270352)\",\"error_message\":null,\"order_id\":\"A292F1C5874B2BE8395FFD75F313937F_0DQB435TGZ_1693860356.3046\",\"due_date\":\"2023-09-05T03:46:00-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"oscar\",\"last_name\":\"marin carvajal\",\"email\":\"marinozkar20@gmail.com\",\"phone_number\":\"3015171110\",\"address\":null,\"creation_date\":\"2023-09-04T15:46:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 20:48:05','2023-09-04 20:48:05'),(8748,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T16:01:27-05:00\",\"transaction\":{\"id\":\"tr23fsnzoeyke6tzextl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T16:00:35-05:00\",\"operation_date\":\"2023-09-04T16:00:35-05:00\",\"description\":\"Pago Mensual academia: matias restrepo botero (1035011652)\",\"error_message\":null,\"order_id\":\"46D3F6029F6170EBCCB28945964D09BF_CSAGZ8R2QH_1693861232.652\",\"due_date\":\"2023-09-05T04:00:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Restrepo Botero\",\"email\":\"andreaboterocorrea@gmail.com\",\"phone_number\":\"3103659855\",\"address\":null,\"creation_date\":\"2023-09-04T16:00:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr23fsnzoeyke6tzextl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:01:28','2023-09-04 21:01:28'),(8749,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T16:02:29-05:00\",\"transaction\":{\"id\":\"tr23fsnzoeyke6tzextl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140598734\",\"creation_date\":\"2023-09-04T16:00:35-05:00\",\"operation_date\":\"2023-09-04T16:02:21-05:00\",\"description\":\"Pago Mensual academia: matias restrepo botero (1035011652)\",\"error_message\":null,\"order_id\":\"46D3F6029F6170EBCCB28945964D09BF_CSAGZ8R2QH_1693861232.652\",\"due_date\":\"2023-09-05T04:00:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Restrepo Botero\",\"email\":\"andreaboterocorrea@gmail.com\",\"phone_number\":\"3103659855\",\"address\":null,\"creation_date\":\"2023-09-04T16:00:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:02:30','2023-09-04 21:02:30'),(8750,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T16:02:42-05:00\",\"transaction\":{\"id\":\"trw94xgudayrbsanqaqi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T16:01:59-05:00\",\"operation_date\":\"2023-09-04T16:01:59-05:00\",\"description\":\"Pago Mensual academia: Emiliano Pamplona Echavarria (1033201902)\",\"error_message\":null,\"order_id\":\"B7D0858D41A6C29B873E4ABA411E6D04_UX8ZFMGVSB_1693861316.0562\",\"due_date\":\"2023-09-05T04:01:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lisbeth\",\"last_name\":\"Echavarria\",\"email\":\"lismaret@gmail.com\",\"phone_number\":\"3128156663\",\"address\":null,\"creation_date\":\"2023-09-04T16:01:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trw94xgudayrbsanqaqi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:02:42','2023-09-04 21:02:42'),(8751,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T15:03:30-06:00\",\"transaction\":{\"id\":\"trw94xgudayrbsanqaqi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140602491\",\"creation_date\":\"2023-09-04T16:01:59-06:00\",\"operation_date\":\"2023-09-04T16:03:29-06:00\",\"description\":\"Pago Mensual academia: Emiliano Pamplona Echavarria (1033201902)\",\"error_message\":null,\"order_id\":\"B7D0858D41A6C29B873E4ABA411E6D04_UX8ZFMGVSB_1693861316.0562\",\"due_date\":\"2023-09-05T04:01:59-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lisbeth\",\"last_name\":\"Echavarria\",\"email\":\"lismaret@gmail.com\",\"phone_number\":\"3128156663\",\"address\":null,\"creation_date\":\"2023-09-04T16:01:59-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:03:30','2023-09-04 21:03:30'),(8752,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T16:13:27-05:00\",\"transaction\":{\"id\":\"tresxm6gcrz4tmduj6im\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T16:12:03-05:00\",\"operation_date\":\"2023-09-04T16:12:03-05:00\",\"description\":\"Pago Mensual academia: Martin Gonzalez Gallego (1035011968)\",\"error_message\":null,\"order_id\":\"FCDE14913C766CF307C75059E0E89AF5_LHSQ0ZR8O2_1693861912.9138\",\"due_date\":\"2023-09-05T04:12:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Marcela\",\"last_name\":\"Gallego Salazar\",\"email\":\"marcela440@hotmail.com\",\"phone_number\":\"3218310501\",\"address\":null,\"creation_date\":\"2023-09-04T16:12:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tresxm6gcrz4tmduj6im/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:13:27','2023-09-04 21:13:27'),(8753,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T16:15:02-05:00\",\"transaction\":{\"id\":\"tresxm6gcrz4tmduj6im\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140634499\",\"creation_date\":\"2023-09-04T16:12:03-05:00\",\"operation_date\":\"2023-09-04T16:14:35-05:00\",\"description\":\"Pago Mensual academia: Martin Gonzalez Gallego (1035011968)\",\"error_message\":null,\"order_id\":\"FCDE14913C766CF307C75059E0E89AF5_LHSQ0ZR8O2_1693861912.9138\",\"due_date\":\"2023-09-05T04:12:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Marcela\",\"last_name\":\"Gallego Salazar\",\"email\":\"marcela440@hotmail.com\",\"phone_number\":\"3218310501\",\"address\":null,\"creation_date\":\"2023-09-04T16:12:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:15:03','2023-09-04 21:15:03'),(8754,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T16:19:39-05:00\",\"transaction\":{\"id\":\"trkgjyqkfyju5pfwnugy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T16:18:52-05:00\",\"operation_date\":\"2023-09-04T16:18:52-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Dávila Morales (1017942344)\",\"error_message\":null,\"order_id\":\"C90E274D55309DB944076AFB3FF9C391_PTZ7MWDGJ1_1693862329.1952\",\"due_date\":\"2023-09-05T04:18:52-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Dávila Osorio\",\"email\":\"juancdavilao@gmail.com\",\"phone_number\":\"3104384569\",\"address\":null,\"creation_date\":\"2023-09-04T16:18:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkgjyqkfyju5pfwnugy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:19:40','2023-09-04 21:19:40'),(8755,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T16:20:36-05:00\",\"transaction\":{\"id\":\"trkgjyqkfyju5pfwnugy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140653601\",\"creation_date\":\"2023-09-04T16:18:52-05:00\",\"operation_date\":\"2023-09-04T16:20:29-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Dávila Morales (1017942344)\",\"error_message\":null,\"order_id\":\"C90E274D55309DB944076AFB3FF9C391_PTZ7MWDGJ1_1693862329.1952\",\"due_date\":\"2023-09-05T04:18:52-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Dávila Osorio\",\"email\":\"juancdavilao@gmail.com\",\"phone_number\":\"3104384569\",\"address\":null,\"creation_date\":\"2023-09-04T16:18:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:20:37','2023-09-04 21:20:37'),(8756,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T16:23:30-05:00\",\"transaction\":{\"id\":\"trqyci34tws2rfpsbv0d\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-04T16:23:30-05:00\",\"operation_date\":\"2023-09-04T16:23:30-05:00\",\"description\":\"Pago Mensual academia: simón vasquez  Velez (1034998011)\",\"error_message\":null,\"order_id\":\"CAC8E13055D2E4F62B6322254203B293_W2ZD8JH0CR_1693862605.4664\",\"amount\":165900.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"vasquez velez\",\"email\":\"vcarobenjamin@gmail.com\",\"phone_number\":\"3104160264\",\"address\":null,\"creation_date\":\"2023-09-04T16:23:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqyci34tws2rfpsbv0d/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 21:23:31','2023-09-04 21:23:31'),(8757,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1139\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T16:24:27-05:00\",\"transaction\":{\"id\":\"trqyci34tws2rfpsbv0d\",\"authorization\":\"063009\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-04T16:23:30-05:00\",\"operation_date\":\"2023-09-04T16:24:26-05:00\",\"description\":\"Pago Mensual academia: simón vasquez  Velez (1034998011)\",\"error_message\":null,\"order_id\":\"CAC8E13055D2E4F62B6322254203B293_W2ZD8JH0CR_1693862605.4664\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"466090XXXXXX8341\",\"holder_name\":\"Hector m vasquez d\",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"vasquez velez\",\"email\":\"vcarobenjamin@gmail.com\",\"phone_number\":\"3104160264\",\"address\":null,\"creation_date\":\"2023-09-04T16:23:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqyci34tws2rfpsbv0d/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 21:24:28','2023-09-04 21:24:28'),(8758,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  901\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T16:30:17-05:00\",\"transaction\":{\"id\":\"trlhdlygek9mmonwsaoe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T16:29:37-05:00\",\"operation_date\":\"2023-09-04T16:29:37-05:00\",\"description\":\"Pago Mensual academia: jose Gabriel Quintero hoyos (1013365886)\",\"error_message\":null,\"order_id\":\"_1693862972.0349\",\"due_date\":\"2023-09-05T04:29:37-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jose Gabriel\",\"last_name\":\"quintero hoyos\",\"email\":\"matiasygabriel0409@hotmail.com\",\"phone_number\":\"3022012454\",\"address\":null,\"creation_date\":\"2023-09-04T16:29:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlhdlygek9mmonwsaoe/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:30:17','2023-09-04 21:30:17'),(8759,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  784\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T16:32:31-05:00\",\"transaction\":{\"id\":\"trlhdlygek9mmonwsaoe\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140685146\",\"creation_date\":\"2023-09-04T16:29:37-05:00\",\"operation_date\":\"2023-09-04T00:00:00-05:00\",\"description\":\"Pago Mensual academia: jose Gabriel Quintero hoyos (1013365886)\",\"error_message\":null,\"order_id\":\"_1693862972.0349\",\"due_date\":\"2023-09-05T04:29:37-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jose Gabriel\",\"last_name\":\"quintero hoyos\",\"email\":\"matiasygabriel0409@hotmail.com\",\"phone_number\":\"3022012454\",\"address\":null,\"creation_date\":\"2023-09-04T16:29:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:32:32','2023-09-04 21:32:32'),(8760,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T16:43:25-05:00\",\"transaction\":{\"id\":\"tr8rtymitc6jjxtnsbth\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T16:42:26-05:00\",\"operation_date\":\"2023-09-04T16:42:26-05:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Ruiz Linares (1239490468)\",\"error_message\":null,\"order_id\":\"EA9268CB43F55D1D12380FB6EA5BF572_XIE3CK64N9_1693863742.3732\",\"due_date\":\"2023-09-05T04:42:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mavis\",\"last_name\":\"linares\",\"email\":\"mavis.linares@gmail.com\",\"phone_number\":\"3042543407\",\"address\":null,\"creation_date\":\"2023-09-04T16:42:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8rtymitc6jjxtnsbth/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:43:26','2023-09-04 21:43:26'),(8761,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T16:44:53-05:00\",\"transaction\":{\"id\":\"tr8rtymitc6jjxtnsbth\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140720433\",\"creation_date\":\"2023-09-04T16:42:26-05:00\",\"operation_date\":\"2023-09-04T16:44:47-05:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Ruiz Linares (1239490468)\",\"error_message\":null,\"order_id\":\"EA9268CB43F55D1D12380FB6EA5BF572_XIE3CK64N9_1693863742.3732\",\"due_date\":\"2023-09-05T04:42:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mavis\",\"last_name\":\"linares\",\"email\":\"mavis.linares@gmail.com\",\"phone_number\":\"3042543407\",\"address\":null,\"creation_date\":\"2023-09-04T16:42:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 21:44:54','2023-09-04 21:44:54'),(8762,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T17:05:45-05:00\",\"transaction\":{\"id\":\"trws4g1crhbtuaiwscot\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-04T17:05:45-05:00\",\"operation_date\":\"2023-09-04T17:05:45-05:00\",\"description\":\"Pago Mensual academia: Jacobo Giraldo Avendaño (1025902562)\",\"error_message\":null,\"order_id\":\"1C66F4627F1B9679F8DB47D1287D7E98_KJH0APEU7Y_1693865140.5689\",\"amount\":165900.00,\"customer\":{\"name\":\"katherin\",\"last_name\":\"Avendaño Vasquez\",\"email\":\"katherinavendanova@gmail.com\",\"phone_number\":\"3012176889\",\"address\":null,\"creation_date\":\"2023-09-04T17:05:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trws4g1crhbtuaiwscot/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 22:05:46','2023-09-04 22:05:46'),(8763,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1155\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T17:06:45-05:00\",\"transaction\":{\"id\":\"trws4g1crhbtuaiwscot\",\"authorization\":\"120298\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-04T17:05:45-05:00\",\"operation_date\":\"2023-09-04T17:06:43-05:00\",\"description\":\"Pago Mensual academia: Jacobo Giraldo Avendaño (1025902562)\",\"error_message\":null,\"order_id\":\"1C66F4627F1B9679F8DB47D1287D7E98_KJH0APEU7Y_1693865140.5689\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"409355XXXXXX5345\",\"holder_name\":\"Katherin avendano\",\"expiration_year\":\"27\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOLOMBIA -NEQUI\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"katherin\",\"last_name\":\"Avendaño Vasquez\",\"email\":\"katherinavendanova@gmail.com\",\"phone_number\":\"3012176889\",\"address\":null,\"creation_date\":\"2023-09-04T17:05:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trws4g1crhbtuaiwscot/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 22:06:46','2023-09-04 22:06:46'),(8764,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  886\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T17:16:35-05:00\",\"transaction\":{\"id\":\"trmded7qlypqqkflkdb8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-04T17:16:35-05:00\",\"operation_date\":\"2023-09-04T17:16:35-05:00\",\"description\":\"Pago Mensual academia: Santiago Giraldo Zapata (1036456930)\",\"error_message\":null,\"order_id\":\"6E2EEC9CA19C076736D19AC5426473AF_3WCBG1KH0T_1693865791.5888\",\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Zapata\",\"email\":\"erijoke_v0923@hotmail.com\",\"phone_number\":\"3212604509\",\"address\":null,\"creation_date\":\"2023-09-04T17:16:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmded7qlypqqkflkdb8/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 22:16:36','2023-09-04 22:16:36'),(8765,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1135\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T17:18:26-05:00\",\"transaction\":{\"id\":\"trmded7qlypqqkflkdb8\",\"authorization\":\"171826\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-04T17:16:35-05:00\",\"operation_date\":\"2023-09-04T17:18:25-05:00\",\"description\":\"Pago Mensual academia: Santiago Giraldo Zapata (1036456930)\",\"error_message\":null,\"order_id\":\"6E2EEC9CA19C076736D19AC5426473AF_3WCBG1KH0T_1693865791.5888\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5791\",\"holder_name\":\"Bancolombia \",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Zapata\",\"email\":\"erijoke_v0923@hotmail.com\",\"phone_number\":\"3212604509\",\"address\":null,\"creation_date\":\"2023-09-04T17:16:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmded7qlypqqkflkdb8/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-04 22:18:27','2023-09-04 22:18:27'),(8766,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T17:41:47-05:00\",\"transaction\":{\"id\":\"trjqvu9dcsjhca7rb4ij\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T17:40:59-05:00\",\"operation_date\":\"2023-09-04T17:40:59-05:00\",\"description\":\"Pago Mensual academia: jeronimo agudelo aguilar (1020230403)\",\"error_message\":null,\"order_id\":\"_1693867255.5418\",\"due_date\":\"2023-09-05T05:40:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"brayan antonio\",\"last_name\":\"agudelo sanchez\",\"email\":\"brayan.agudelo26@gmail.com\",\"phone_number\":\"3113643596\",\"address\":null,\"creation_date\":\"2023-09-04T17:40:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjqvu9dcsjhca7rb4ij/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 22:41:47','2023-09-04 22:41:47'),(8767,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  780\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T17:43:08-05:00\",\"transaction\":{\"id\":\"trjqvu9dcsjhca7rb4ij\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140869154\",\"creation_date\":\"2023-09-04T17:40:59-05:00\",\"operation_date\":\"2023-09-04T17:43:00-05:00\",\"description\":\"Pago Mensual academia: jeronimo agudelo aguilar (1020230403)\",\"error_message\":null,\"order_id\":\"_1693867255.5418\",\"due_date\":\"2023-09-05T05:40:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"brayan antonio\",\"last_name\":\"agudelo sanchez\",\"email\":\"brayan.agudelo26@gmail.com\",\"phone_number\":\"3113643596\",\"address\":null,\"creation_date\":\"2023-09-04T17:40:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 22:43:09','2023-09-04 22:43:09'),(8768,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T17:44:40-05:00\",\"transaction\":{\"id\":\"trzhoycv8nw5epzlvcez\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T17:43:36-05:00\",\"operation_date\":\"2023-09-04T17:43:36-05:00\",\"description\":\"Pago Mensual academia: MATIAS URIBE CASTAÑEDA (1035015682)\",\"error_message\":null,\"order_id\":\"A6ADE5AA93B826F8DE63C663E1159BF7_CSEOAR4D36_1693867406.9031\",\"due_date\":\"2023-09-05T05:43:36-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"VIVIANA\",\"last_name\":\"CASTAÑEDA ECHEVERRI\",\"email\":\"vivice028@yahoo.es\",\"phone_number\":\"3117841247\",\"address\":null,\"creation_date\":\"2023-09-04T17:43:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzhoycv8nw5epzlvcez/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 22:44:40','2023-09-04 22:44:40'),(8769,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T17:45:52-05:00\",\"transaction\":{\"id\":\"trzhoycv8nw5epzlvcez\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140876476\",\"creation_date\":\"2023-09-04T17:43:36-05:00\",\"operation_date\":\"2023-09-04T17:45:35-05:00\",\"description\":\"Pago Mensual academia: MATIAS URIBE CASTAÑEDA (1035015682)\",\"error_message\":null,\"order_id\":\"A6ADE5AA93B826F8DE63C663E1159BF7_CSEOAR4D36_1693867406.9031\",\"due_date\":\"2023-09-05T05:43:36-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"VIVIANA\",\"last_name\":\"CASTAÑEDA ECHEVERRI\",\"email\":\"vivice028@yahoo.es\",\"phone_number\":\"3117841247\",\"address\":null,\"creation_date\":\"2023-09-04T17:43:36-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 22:45:53','2023-09-04 22:45:53'),(8770,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T17:58:58-05:00\",\"transaction\":{\"id\":\"trwqgyygdvfm6kmpzwdp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T17:58:12-05:00\",\"operation_date\":\"2023-09-04T17:58:12-05:00\",\"description\":\"Pago Mensual academia: lorenzo rengifo restrepo (1033193056)\",\"error_message\":null,\"order_id\":\"F26DF67E8110EE2B44923DB775E3E47F_DP6J1NZYVK_1693868286.5291\",\"due_date\":\"2023-09-05T05:58:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Restrepo Ortiz\",\"email\":\"erikarestre@gmail.com\",\"phone_number\":\"3216487929\",\"address\":null,\"creation_date\":\"2023-09-04T17:58:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwqgyygdvfm6kmpzwdp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 22:58:59','2023-09-04 22:58:59'),(8771,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T17:59:42-05:00\",\"transaction\":{\"id\":\"trwqgyygdvfm6kmpzwdp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140911350\",\"creation_date\":\"2023-09-04T17:58:12-05:00\",\"operation_date\":\"2023-09-04T17:59:37-05:00\",\"description\":\"Pago Mensual academia: lorenzo rengifo restrepo (1033193056)\",\"error_message\":null,\"order_id\":\"F26DF67E8110EE2B44923DB775E3E47F_DP6J1NZYVK_1693868286.5291\",\"due_date\":\"2023-09-05T05:58:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Restrepo Ortiz\",\"email\":\"erikarestre@gmail.com\",\"phone_number\":\"3216487929\",\"address\":null,\"creation_date\":\"2023-09-04T17:58:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 22:59:42','2023-09-04 22:59:42'),(8772,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T18:24:57-05:00\",\"transaction\":{\"id\":\"tr3c4fmtpggcw4sja0ek\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T18:24:24-05:00\",\"operation_date\":\"2023-09-04T18:24:24-05:00\",\"description\":\"Pago Mensual academia: Gabriel Serna Congote (1239489821)\",\"error_message\":null,\"order_id\":\"9B2F00F37307F2C2F372ACAFE55843F3_QYNFETICS1_1693869861.9805\",\"due_date\":\"2023-09-05T06:24:24-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Gabriel\",\"last_name\":\"Serna congote\",\"email\":\"odserna32@hotmail.com\",\"phone_number\":\"3104933364\",\"address\":null,\"creation_date\":\"2023-09-04T18:24:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3c4fmtpggcw4sja0ek/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 23:24:58','2023-09-04 23:24:58'),(8773,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T18:25:55-05:00\",\"transaction\":{\"id\":\"tr3c4fmtpggcw4sja0ek\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140972275\",\"creation_date\":\"2023-09-04T18:24:24-05:00\",\"operation_date\":\"2023-09-04T18:25:50-05:00\",\"description\":\"Pago Mensual academia: Gabriel Serna Congote (1239489821)\",\"error_message\":null,\"order_id\":\"9B2F00F37307F2C2F372ACAFE55843F3_QYNFETICS1_1693869861.9805\",\"due_date\":\"2023-09-05T06:24:24-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Gabriel\",\"last_name\":\"Serna congote\",\"email\":\"odserna32@hotmail.com\",\"phone_number\":\"3104933364\",\"address\":null,\"creation_date\":\"2023-09-04T18:24:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 23:25:55','2023-09-04 23:25:55'),(8774,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T18:33:39-05:00\",\"transaction\":{\"id\":\"tr3pwaulmnuozdjc9pmw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T18:32:04-05:00\",\"operation_date\":\"2023-09-04T18:32:04-05:00\",\"description\":\"Pago Mensual academia: Luis Fernando Guerrero Palacios (1025766751)\",\"error_message\":null,\"order_id\":\"DFA037A53E121ECC9E0926800C3E814E_ZL4FVWGHBI_1693870312.3494\",\"due_date\":\"2023-09-05T06:32:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luis Hernando\",\"last_name\":\"Guerrero Renteria\",\"email\":\"luishg3535@gmail.com\",\"phone_number\":\"3137669507\",\"address\":null,\"creation_date\":\"2023-09-04T18:32:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3pwaulmnuozdjc9pmw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 23:33:40','2023-09-04 23:33:40'),(8775,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T17:36:16-06:00\",\"transaction\":{\"id\":\"tr3pwaulmnuozdjc9pmw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"140993064\",\"creation_date\":\"2023-09-04T18:32:04-06:00\",\"operation_date\":\"2023-09-04T18:36:12-06:00\",\"description\":\"Pago Mensual academia: Luis Fernando Guerrero Palacios (1025766751)\",\"error_message\":null,\"order_id\":\"DFA037A53E121ECC9E0926800C3E814E_ZL4FVWGHBI_1693870312.3494\",\"due_date\":\"2023-09-05T06:32:04-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luis Hernando\",\"last_name\":\"Guerrero Renteria\",\"email\":\"luishg3535@gmail.com\",\"phone_number\":\"3137669507\",\"address\":null,\"creation_date\":\"2023-09-04T18:32:04-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-04 23:36:16','2023-09-04 23:36:16'),(8776,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T19:13:07-05:00\",\"transaction\":{\"id\":\"trmm7v9aupsp9iwqq1ct\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T19:09:56-05:00\",\"operation_date\":\"2023-09-04T19:09:56-05:00\",\"description\":\"Pago Mensual academia: thomas jeronimo galeano tobon (1032014996)\",\"error_message\":null,\"order_id\":\"7DA18D0326A9F46A4817E19C805819AE_8TKPCH9GZ6_1693872573.1083\",\"due_date\":\"2023-09-05T07:09:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"michael\",\"last_name\":\"galeano\",\"email\":\"migalca2017@hotmail.com\",\"phone_number\":\"3012230146\",\"address\":null,\"creation_date\":\"2023-09-04T19:09:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmm7v9aupsp9iwqq1ct/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 00:13:08','2023-09-05 00:13:08'),(8777,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T18:15:17-06:00\",\"transaction\":{\"id\":\"trmm7v9aupsp9iwqq1ct\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141090402\",\"creation_date\":\"2023-09-04T19:09:56-06:00\",\"operation_date\":\"2023-09-04T19:14:38-06:00\",\"description\":\"Pago Mensual academia: thomas jeronimo galeano tobon (1032014996)\",\"error_message\":null,\"order_id\":\"7DA18D0326A9F46A4817E19C805819AE_8TKPCH9GZ6_1693872573.1083\",\"due_date\":\"2023-09-05T07:09:56-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"michael\",\"last_name\":\"galeano\",\"email\":\"migalca2017@hotmail.com\",\"phone_number\":\"3012230146\",\"address\":null,\"creation_date\":\"2023-09-04T19:09:56-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 00:15:17','2023-09-05 00:15:17'),(8778,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T19:30:08-05:00\",\"transaction\":{\"id\":\"trbuqmskrslqz7rnw7fn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T19:29:27-05:00\",\"operation_date\":\"2023-09-04T19:29:27-05:00\",\"description\":\"Pago Mensual academia: matias Echeverry Hurtado (1155717169)\",\"error_message\":null,\"order_id\":\"7FA215C9EFEBB3811A7EF58409907899_J4ZMFRUPBE_1693873764.0552\",\"due_date\":\"2023-09-05T07:29:27-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Sebastián\",\"last_name\":\"Echeverry\",\"email\":\"sebastian.echeverry.londono@gmail.com\",\"phone_number\":\"3102223363\",\"address\":null,\"creation_date\":\"2023-09-04T19:29:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbuqmskrslqz7rnw7fn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 00:30:09','2023-09-05 00:30:09'),(8779,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T19:36:24-05:00\",\"transaction\":{\"id\":\"tr8jrvezoxazhodfabea\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T19:34:46-05:00\",\"operation_date\":\"2023-09-04T19:34:46-05:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":null,\"order_id\":\"9EAC167EC1EFBE078138397FABBA902E_TEJV9YIS2K_1693874082.2936\",\"due_date\":\"2023-09-05T07:34:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-09-04T19:34:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8jrvezoxazhodfabea/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 00:36:25','2023-09-05 00:36:25'),(8780,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T19:39:03-05:00\",\"transaction\":{\"id\":\"tr8jrvezoxazhodfabea\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141145332\",\"creation_date\":\"2023-09-04T19:34:46-05:00\",\"operation_date\":\"2023-09-04T19:38:20-05:00\",\"description\":\"Pago Mensual academia: jerónimo estrada (1021926610)\",\"error_message\":null,\"order_id\":\"9EAC167EC1EFBE078138397FABBA902E_TEJV9YIS2K_1693874082.2936\",\"due_date\":\"2023-09-05T07:34:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"estrada\",\"email\":\"isamontoya78@hotmail.com\",\"phone_number\":\"3147303796\",\"address\":null,\"creation_date\":\"2023-09-04T19:34:46-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 00:39:04','2023-09-05 00:39:04'),(8781,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  863\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-04T18:51:11-06:00\",\"transaction\":{\"id\":\"trbuqmskrslqz7rnw7fn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-04T19:29:27-06:00\",\"operation_date\":\"2023-09-04T19:30:15-06:00\",\"description\":\"Pago Mensual academia: matias Echeverry Hurtado (1155717169)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"7FA215C9EFEBB3811A7EF58409907899_J4ZMFRUPBE_1693873764.0552\",\"due_date\":\"2023-09-05T07:29:27-06:00\",\"error_code\":1007,\"amount\":105000.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Sebastián\",\"last_name\":\"Echeverry\",\"email\":\"sebastian.echeverry.londono@gmail.com\",\"phone_number\":\"3102223363\",\"address\":null,\"creation_date\":\"2023-09-04T19:29:27-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 00:51:11','2023-09-05 00:51:11'),(8782,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T19:55:22-05:00\",\"transaction\":{\"id\":\"trjjdily2niw0k89jxnd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T19:54:28-05:00\",\"operation_date\":\"2023-09-04T19:54:28-05:00\",\"description\":\"Pago Mensual academia: juan roman pachon campillo (1023644640)\",\"error_message\":null,\"order_id\":\"494C08F7A144D3CC4CFA661ED1244039_NEXC91Q28B_1693875266.1404\",\"due_date\":\"2023-09-05T07:54:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"danget damian\",\"last_name\":\"pachon peñaloza\",\"email\":\"danget1@hotmail.com\",\"phone_number\":\"3173004892\",\"address\":null,\"creation_date\":\"2023-09-04T19:54:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjjdily2niw0k89jxnd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 00:55:23','2023-09-05 00:55:23'),(8783,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T18:57:18-06:00\",\"transaction\":{\"id\":\"trjjdily2niw0k89jxnd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141190045\",\"creation_date\":\"2023-09-04T19:54:28-06:00\",\"operation_date\":\"2023-09-04T19:57:03-06:00\",\"description\":\"Pago Mensual academia: juan roman pachon campillo (1023644640)\",\"error_message\":null,\"order_id\":\"494C08F7A144D3CC4CFA661ED1244039_NEXC91Q28B_1693875266.1404\",\"due_date\":\"2023-09-05T07:54:28-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"danget damian\",\"last_name\":\"pachon peñaloza\",\"email\":\"danget1@hotmail.com\",\"phone_number\":\"3173004892\",\"address\":null,\"creation_date\":\"2023-09-04T19:54:28-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 00:57:19','2023-09-05 00:57:19'),(8784,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T20:22:24-05:00\",\"transaction\":{\"id\":\"triny1tjv68bzgoq3iau\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T20:21:48-05:00\",\"operation_date\":\"2023-09-04T20:21:48-05:00\",\"description\":\"Pago Mensual academia: Mateo Ceballos Rodelo (1033191370)\",\"error_message\":null,\"order_id\":\"6236C78E73F52110AE39E588BA88DE0B_E5K2HQUWB6_1693876901.8681\",\"due_date\":\"2023-09-05T08:21:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria\",\"last_name\":\"Rodelo\",\"email\":\"angymaria1234@hotmail.com\",\"phone_number\":\"3217106275\",\"address\":null,\"creation_date\":\"2023-09-04T20:21:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triny1tjv68bzgoq3iau/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 01:22:25','2023-09-05 01:22:25'),(8785,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T20:23:04-05:00\",\"transaction\":{\"id\":\"trdhu75xda1xjdjuzzum\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T20:21:28-05:00\",\"operation_date\":\"2023-09-04T20:21:28-05:00\",\"description\":\"Pago Mensual academia: Sebastián Restrepo Londoño (1017938601)\",\"error_message\":null,\"order_id\":\"C6D6445D97E06D08B60853156601CF58_4X8HGAIZTJ_1693876874.4535\",\"due_date\":\"2023-09-05T08:21:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Astrid \",\"last_name\":\"Londoño Zapata\",\"email\":\"astro_1218@hotmail.com\",\"phone_number\":\"3113377769\",\"address\":null,\"creation_date\":\"2023-09-04T20:21:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdhu75xda1xjdjuzzum/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 01:23:04','2023-09-05 01:23:04'),(8786,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T20:23:08-05:00\",\"transaction\":{\"id\":\"triny1tjv68bzgoq3iau\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141253036\",\"creation_date\":\"2023-09-04T20:21:48-05:00\",\"operation_date\":\"2023-09-04T20:23:03-05:00\",\"description\":\"Pago Mensual academia: Mateo Ceballos Rodelo (1033191370)\",\"error_message\":null,\"order_id\":\"6236C78E73F52110AE39E588BA88DE0B_E5K2HQUWB6_1693876901.8681\",\"due_date\":\"2023-09-05T08:21:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria\",\"last_name\":\"Rodelo\",\"email\":\"angymaria1234@hotmail.com\",\"phone_number\":\"3217106275\",\"address\":null,\"creation_date\":\"2023-09-04T20:21:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 01:23:08','2023-09-05 01:23:08'),(8787,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T20:24:30-05:00\",\"transaction\":{\"id\":\"trdhu75xda1xjdjuzzum\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141254631\",\"creation_date\":\"2023-09-04T20:21:28-05:00\",\"operation_date\":\"2023-09-04T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Sebastián Restrepo Londoño (1017938601)\",\"error_message\":null,\"order_id\":\"C6D6445D97E06D08B60853156601CF58_4X8HGAIZTJ_1693876874.4535\",\"due_date\":\"2023-09-05T08:21:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Astrid \",\"last_name\":\"Londoño Zapata\",\"email\":\"astro_1218@hotmail.com\",\"phone_number\":\"3113377769\",\"address\":null,\"creation_date\":\"2023-09-04T20:21:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 01:24:31','2023-09-05 01:24:31'),(8788,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T20:33:35-05:00\",\"transaction\":{\"id\":\"trr36h1qxi7pxemxgngj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T20:31:29-05:00\",\"operation_date\":\"2023-09-04T20:31:29-05:00\",\"description\":\"Pago Mensual academia: Simon Escobar Posso (1040737966)\",\"error_message\":null,\"order_id\":\"AF1B5754061EBBD4412ADFB34C8D3534_8N4SQPJ5YH_1693877485.0016\",\"due_date\":\"2023-09-05T08:31:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"escobar Posso\",\"email\":\"simonescobar12345r@gmail.com\",\"phone_number\":\"3184161181\",\"address\":null,\"creation_date\":\"2023-09-04T20:31:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr36h1qxi7pxemxgngj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 01:33:36','2023-09-05 01:33:36'),(8789,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T20:35:49-05:00\",\"transaction\":{\"id\":\"trr36h1qxi7pxemxgngj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141279241\",\"creation_date\":\"2023-09-04T20:31:29-05:00\",\"operation_date\":\"2023-09-04T20:35:39-05:00\",\"description\":\"Pago Mensual academia: Simon Escobar Posso (1040737966)\",\"error_message\":null,\"order_id\":\"AF1B5754061EBBD4412ADFB34C8D3534_8N4SQPJ5YH_1693877485.0016\",\"due_date\":\"2023-09-05T08:31:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"escobar Posso\",\"email\":\"simonescobar12345r@gmail.com\",\"phone_number\":\"3184161181\",\"address\":null,\"creation_date\":\"2023-09-04T20:31:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 01:35:50','2023-09-05 01:35:50'),(8790,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T21:15:51-05:00\",\"transaction\":{\"id\":\"trovz5zjci7fb59xtnny\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-04T21:15:51-05:00\",\"operation_date\":\"2023-09-04T21:15:51-05:00\",\"description\":\"Pago Mensual academia: Mateo Andres Montoya Quinchia (1021808921)\",\"error_message\":null,\"order_id\":\"A3048E47310D6EFAA4B1EAF55227BC92_UNF60JQTA2_1693880147.3903\",\"amount\":165900.00,\"customer\":{\"name\":\"Arisbey\",\"last_name\":\"Montoya Llanos\",\"email\":\"aris.80llanos@gmail.com\",\"phone_number\":\"3158109825\",\"address\":null,\"creation_date\":\"2023-09-04T21:15:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trovz5zjci7fb59xtnny/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-05 02:15:52','2023-09-05 02:15:52'),(8791,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1144\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T21:18:17-05:00\",\"transaction\":{\"id\":\"trovz5zjci7fb59xtnny\",\"authorization\":\"R05138\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-04T21:15:51-05:00\",\"operation_date\":\"2023-09-04T21:18:15-05:00\",\"description\":\"Pago Mensual academia: Mateo Andres Montoya Quinchia (1021808921)\",\"error_message\":null,\"order_id\":\"A3048E47310D6EFAA4B1EAF55227BC92_UNF60JQTA2_1693880147.3903\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"521897XXXXXX5857\",\"holder_name\":\"Arisbey Montoya \",\"expiration_year\":\"25\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"EXITO\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Arisbey\",\"last_name\":\"Montoya Llanos\",\"email\":\"aris.80llanos@gmail.com\",\"phone_number\":\"3158109825\",\"address\":null,\"creation_date\":\"2023-09-04T21:15:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trovz5zjci7fb59xtnny/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-05 02:18:17','2023-09-05 02:18:17'),(8792,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T21:28:54-05:00\",\"transaction\":{\"id\":\"tro7tsfpgoxfrnnaymkk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T21:28:04-05:00\",\"operation_date\":\"2023-09-04T21:28:04-05:00\",\"description\":\"Pago Mensual academia: Nicolas Peñuela Gomez (1011513305)\",\"error_message\":null,\"order_id\":\"42C8938E4CF5777700700E642DC2A8CD_JNPT5KHV1M_1693880877.5104\",\"due_date\":\"2023-09-05T09:28:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Gomez Mora\",\"email\":\"cgmora2442@gmail.com\",\"phone_number\":\"3008110459\",\"address\":null,\"creation_date\":\"2023-09-04T21:28:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro7tsfpgoxfrnnaymkk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 02:28:55','2023-09-05 02:28:55'),(8793,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-04T21:30:53-05:00\",\"transaction\":{\"id\":\"tro7tsfpgoxfrnnaymkk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141405452\",\"creation_date\":\"2023-09-04T21:28:04-05:00\",\"operation_date\":\"2023-09-04T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Nicolas Peñuela Gomez (1011513305)\",\"error_message\":null,\"order_id\":\"42C8938E4CF5777700700E642DC2A8CD_JNPT5KHV1M_1693880877.5104\",\"due_date\":\"2023-09-05T09:28:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Gomez Mora\",\"email\":\"cgmora2442@gmail.com\",\"phone_number\":\"3008110459\",\"address\":null,\"creation_date\":\"2023-09-04T21:28:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 02:30:54','2023-09-05 02:30:54'),(8794,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T21:34:33-05:00\",\"transaction\":{\"id\":\"trbmu4usyiaf9amwawqo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T21:32:59-05:00\",\"operation_date\":\"2023-09-04T21:32:59-05:00\",\"description\":\"Pago Mensual academia: Emanuel Giraldo Hernández (1192466344)\",\"error_message\":null,\"order_id\":\"2DA6CC4A5D3A7EE43C1B3AF99267ED17_59R8XKTLHW_1693881173.5417\",\"due_date\":\"2023-09-05T09:32:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Giraldo Hernandez\",\"email\":\"dianamariahernandezgallon@gmail.com\",\"phone_number\":\"3006040597\",\"address\":null,\"creation_date\":\"2023-09-04T21:32:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbmu4usyiaf9amwawqo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 02:34:33','2023-09-05 02:34:33'),(8795,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  868\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-04T20:57:12-06:00\",\"transaction\":{\"id\":\"trbmu4usyiaf9amwawqo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-04T21:32:59-06:00\",\"operation_date\":\"2023-09-04T21:35:04-06:00\",\"description\":\"Pago Mensual academia: Emanuel Giraldo Hernández (1192466344)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"2DA6CC4A5D3A7EE43C1B3AF99267ED17_59R8XKTLHW_1693881173.5417\",\"due_date\":\"2023-09-05T09:32:59-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Giraldo Hernandez\",\"email\":\"dianamariahernandezgallon@gmail.com\",\"phone_number\":\"3006040597\",\"address\":null,\"creation_date\":\"2023-09-04T21:32:59-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 02:57:13','2023-09-05 02:57:13'),(8796,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  952\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T22:10:30-05:00\",\"transaction\":{\"id\":\"trai3avzcee5ap838ull\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T22:09:56-05:00\",\"operation_date\":\"2023-09-04T22:09:56-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Aristizábal Colorado (1015074954)\",\"error_message\":null,\"order_id\":\"4F5A97CF06CF69028997DB51D8726D28_T2WQSGKDLF_1693883389.1622\",\"due_date\":\"2023-09-05T10:09:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jenny Alexandra\",\"last_name\":\"Aristizábal Colorado\",\"email\":\"jenny24pablo@yahoo.com\",\"phone_number\":\"3004303882\",\"address\":null,\"creation_date\":\"2023-09-04T22:09:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trai3avzcee5ap838ull/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 03:10:31','2023-09-05 03:10:31'),(8797,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T22:21:26-05:00\",\"transaction\":{\"id\":\"trzpup057vmuprce6mep\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T22:20:46-05:00\",\"operation_date\":\"2023-09-04T22:20:46-05:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":null,\"order_id\":\"F550E0BA9E1C4E8BB4A5ED0AC23A952D_B0OE7KAQCT_1693884017.2803\",\"due_date\":\"2023-09-05T10:20:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-04T22:20:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzpup057vmuprce6mep/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 03:21:27','2023-09-05 03:21:27'),(8798,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T22:26:02-05:00\",\"transaction\":{\"id\":\"tr6iuxpafb2ij1tpll0z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T22:24:43-05:00\",\"operation_date\":\"2023-09-04T22:24:43-05:00\",\"description\":\"Pago Mensual academia: emanuel zuluaga henao (1027806389)\",\"error_message\":null,\"order_id\":\"DC0439CAEB74FFC2795571AF07A7EAB1_GZR6EV4D5T_1693884264.3973\",\"due_date\":\"2023-09-05T10:24:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"emanuel\",\"last_name\":\"zuluaga henao\",\"email\":\"jackehc03@gmail.com\",\"phone_number\":\"3215387431\",\"address\":null,\"creation_date\":\"2023-09-04T22:24:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6iuxpafb2ij1tpll0z/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 03:26:02','2023-09-05 03:26:02'),(8799,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  874\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-04T21:33:10-06:00\",\"transaction\":{\"id\":\"trai3avzcee5ap838ull\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-04T22:09:56-06:00\",\"operation_date\":\"2023-09-04T22:10:37-06:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Aristizábal Colorado (1015074954)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"4F5A97CF06CF69028997DB51D8726D28_T2WQSGKDLF_1693883389.1622\",\"due_date\":\"2023-09-05T10:09:56-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Jenny Alexandra\",\"last_name\":\"Aristizábal Colorado\",\"email\":\"jenny24pablo@yahoo.com\",\"phone_number\":\"3004303882\",\"address\":null,\"creation_date\":\"2023-09-04T22:09:56-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 03:33:11','2023-09-05 03:33:11'),(8800,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-04T21:42:09-06:00\",\"transaction\":{\"id\":\"trzpup057vmuprce6mep\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-04T22:20:46-06:00\",\"operation_date\":\"2023-09-04T22:21:41-06:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"F550E0BA9E1C4E8BB4A5ED0AC23A952D_B0OE7KAQCT_1693884017.2803\",\"due_date\":\"2023-09-05T10:20:46-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-04T22:20:46-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 03:42:10','2023-09-05 03:42:10'),(8801,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  843\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-04T21:48:09-06:00\",\"transaction\":{\"id\":\"tr6iuxpafb2ij1tpll0z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-04T22:24:43-06:00\",\"operation_date\":\"2023-09-04T22:26:08-06:00\",\"description\":\"Pago Mensual academia: emanuel zuluaga henao (1027806389)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"DC0439CAEB74FFC2795571AF07A7EAB1_GZR6EV4D5T_1693884264.3973\",\"due_date\":\"2023-09-05T10:24:43-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"emanuel\",\"last_name\":\"zuluaga henao\",\"email\":\"jackehc03@gmail.com\",\"phone_number\":\"3215387431\",\"address\":null,\"creation_date\":\"2023-09-04T22:24:43-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 03:48:10','2023-09-05 03:48:10'),(8802,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-04T22:49:37-05:00\",\"transaction\":{\"id\":\"trbfsbkl3enogmpe0nqs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-04T22:47:39-05:00\",\"operation_date\":\"2023-09-04T22:47:39-05:00\",\"description\":\"Pago Mensual academia: Matías Arroyo Suárez (1028141313)\",\"error_message\":null,\"order_id\":\"582967E09F1B30CA2539968DA0A174FA_9XDQY02Z71_1693885644.2492\",\"due_date\":\"2023-09-05T10:47:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Arroyo Quintero\",\"email\":\"carroyoquintero1989@gmail.com\",\"phone_number\":\"3104624259\",\"address\":null,\"creation_date\":\"2023-09-04T22:47:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbfsbkl3enogmpe0nqs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 03:49:38','2023-09-05 03:49:38'),(8803,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  862\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-04T22:00:23-06:00\",\"transaction\":{\"id\":\"trbfsbkl3enogmpe0nqs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-04T22:47:39-06:00\",\"operation_date\":\"2023-09-04T22:49:47-06:00\",\"description\":\"Pago Mensual academia: Matías Arroyo Suárez (1028141313)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"582967E09F1B30CA2539968DA0A174FA_9XDQY02Z71_1693885644.2492\",\"due_date\":\"2023-09-05T10:47:39-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Arroyo Quintero\",\"email\":\"carroyoquintero1989@gmail.com\",\"phone_number\":\"3104624259\",\"address\":null,\"creation_date\":\"2023-09-04T22:47:39-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 04:00:24','2023-09-05 04:00:24'),(8804,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T01:29:59-05:00\",\"transaction\":{\"id\":\"trezbfudpkn2xlapul7v\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-05T01:29:59-05:00\",\"operation_date\":\"2023-09-05T01:29:59-05:00\",\"description\":\"Pago Mensual academia: Marco Antonio Carmona Perez (1155717066)\",\"error_message\":null,\"order_id\":\"B9F35816F460AB999CBC168C4DA26FF3_7DIT1V04AG_1693895395.5084\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura Maria\",\"last_name\":\"Perez Cadavid\",\"email\":\"laupc94@gmail.com\",\"phone_number\":\"3107354449\",\"address\":null,\"creation_date\":\"2023-09-05T01:29:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trezbfudpkn2xlapul7v/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-05 06:30:00','2023-09-05 06:30:00'),(8805,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1220\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T01:31:02-05:00\",\"transaction\":{\"id\":\"trezbfudpkn2xlapul7v\",\"authorization\":\"355387\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":12,\"conciliated\":true,\"creation_date\":\"2023-09-05T01:29:59-05:00\",\"operation_date\":\"2023-09-05T01:30:58-05:00\",\"description\":\"Pago Mensual academia: Marco Antonio Carmona Perez (1155717066)\",\"error_message\":null,\"order_id\":\"B9F35816F460AB999CBC168C4DA26FF3_7DIT1V04AG_1693895395.5084\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"528209XXXXXX6652\",\"holder_name\":\"Laura Perez c\",\"expiration_year\":\"28\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"FALABELLA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":12,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Laura Maria\",\"last_name\":\"Perez Cadavid\",\"email\":\"laupc94@gmail.com\",\"phone_number\":\"3107354449\",\"address\":null,\"creation_date\":\"2023-09-05T01:29:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trezbfudpkn2xlapul7v/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-05 06:31:02','2023-09-05 06:31:02'),(8806,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-05T02:48:25-06:00\",\"transaction\":{\"id\":\"trg0efqzdbc1bbnhwawk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-01T12:08:16-06:00\",\"operation_date\":\"2023-09-01T12:08:16-06:00\",\"description\":\"Pago Mensual academia: Tomás Castrillón Posada (1035004589)\",\"error_message\":null,\"order_id\":\"B4FD1D2CB085390FBBADAE65E07876A7_FZLON86Q5B_1693588092.3267\",\"due_date\":\"2023-09-02T00:08:16-06:00\",\"amount\":149310.00,\"customer\":{\"name\":\"Isabel Cristina\",\"last_name\":\"Posada Durango\",\"email\":\"posadadurango@gmail.com\",\"phone_number\":\"3205837017\",\"address\":null,\"creation_date\":\"2023-09-01T12:08:16-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg0efqzdbc1bbnhwawk/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 08:48:26','2023-09-05 08:48:26'),(8807,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-05T02:48:25-06:00\",\"transaction\":{\"id\":\"tr3gd61tgkug01kibsal\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-03T10:08:27-06:00\",\"operation_date\":\"2023-09-03T10:08:27-06:00\",\"description\":\"Pago Mensual academia: Martin Perez Saldarriaga (1021946968)\",\"error_message\":null,\"order_id\":\"C82836ED448C41094025B4A872C5341E_D4HB39I0M8_1693753703.0315\",\"due_date\":\"2023-09-03T22:08:27-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Perez Saldarriaga\",\"email\":\"angela.s15@hotmail.com\",\"phone_number\":\"3215616185\",\"address\":null,\"creation_date\":\"2023-09-03T10:08:27-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3gd61tgkug01kibsal/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 08:48:26','2023-09-05 08:48:26'),(8808,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-05T02:48:25-06:00\",\"transaction\":{\"id\":\"trwgcsbs3sbujoq1egdm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-02T14:38:03-06:00\",\"operation_date\":\"2023-09-02T14:38:03-06:00\",\"description\":\"Pago Mensual academia: Nicolás Melo Estrada (1035009757)\",\"error_message\":null,\"order_id\":\"E16E74A63567ECB44ADE5C87002BB1D9_18YU3SFO9G_1693683478.4123\",\"due_date\":\"2023-09-03T02:38:03-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan carlos\",\"last_name\":\"melo campo\",\"email\":\"meloc21@gmail.com\",\"phone_number\":\"3222651609\",\"address\":null,\"creation_date\":\"2023-09-02T14:38:03-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwgcsbs3sbujoq1egdm/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 08:48:26','2023-09-05 08:48:26'),(8809,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-05T02:48:25-06:00\",\"transaction\":{\"id\":\"trkn620afewew2eniden\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-01T15:45:31-06:00\",\"operation_date\":\"2023-09-01T15:45:31-06:00\",\"description\":\"Pago Mensual academia: Tomás Castrillón Posada (1035004589)\",\"error_message\":null,\"order_id\":\"2E3D2C4F33A7A1F58BC6C81CACD21E9C_JDY3BE1UZ6_1693601128.6685\",\"due_date\":\"2023-09-02T03:45:31-06:00\",\"amount\":149310.00,\"customer\":{\"name\":\"Isabel Cristina\",\"last_name\":\"Posada Durango\",\"email\":\"posadadurango@gmail.com\",\"phone_number\":\"3205837017\",\"address\":null,\"creation_date\":\"2023-09-01T15:45:31-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkn620afewew2eniden/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 08:48:26','2023-09-05 08:48:26'),(8810,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-05T02:48:25-06:00\",\"transaction\":{\"id\":\"trxuwbx8bhmr7dxrg1bf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-04T11:44:40-06:00\",\"operation_date\":\"2023-09-04T11:44:40-06:00\",\"description\":\"Pago Mensual academia: Jose Miguel Duque Alvarez (1033189257)\",\"error_message\":null,\"order_id\":\"B994697479C5716EDA77E8E9713E5F0F_713TFNE4SC_1693845856.9758\",\"due_date\":\"2023-09-04T23:44:40-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eduardo\",\"last_name\":\"Duque Higuita\",\"email\":\"duqueedward@gmail.com\",\"phone_number\":\"3122383147\",\"address\":null,\"creation_date\":\"2023-09-04T11:44:40-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxuwbx8bhmr7dxrg1bf/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 08:48:26','2023-09-05 08:48:26'),(8811,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-05T02:48:25-06:00\",\"transaction\":{\"id\":\"trxnzmsxnclwlypdxae2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-01T15:31:27-06:00\",\"operation_date\":\"2023-09-01T15:31:27-06:00\",\"description\":\"Pago Mensual academia: Tomás Castrillón Posada (1035004589)\",\"error_message\":null,\"order_id\":\"B4FD1D2CB085390FBBADAE65E07876A7_FZLON86Q5B_1693600284.9786\",\"due_date\":\"2023-09-02T03:31:27-06:00\",\"amount\":149310.00,\"customer\":{\"name\":\"Isabel Cristina\",\"last_name\":\"Posada Durango\",\"email\":\"posadadurango@gmail.com\",\"phone_number\":\"3205837017\",\"address\":null,\"creation_date\":\"2023-09-01T15:31:27-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxnzmsxnclwlypdxae2/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 08:48:26','2023-09-05 08:48:26'),(8812,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T06:04:43-05:00\",\"transaction\":{\"id\":\"trwbavksg3op2xmmok8c\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T06:03:42-05:00\",\"operation_date\":\"2023-09-05T06:03:42-05:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":null,\"order_id\":\"1B32A022C52C0C6255C2A32E580BE34F_9VD20W3NCM_1693911819.9158\",\"due_date\":\"2023-09-05T18:03:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"xiomaragomez20@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-09-05T06:03:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwbavksg3op2xmmok8c/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 11:04:43','2023-09-05 11:04:43'),(8813,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T06:05:29-05:00\",\"transaction\":{\"id\":\"trwbavksg3op2xmmok8c\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141664105\",\"creation_date\":\"2023-09-05T06:03:42-05:00\",\"operation_date\":\"2023-09-05T06:05:21-05:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":null,\"order_id\":\"1B32A022C52C0C6255C2A32E580BE34F_9VD20W3NCM_1693911819.9158\",\"due_date\":\"2023-09-05T18:03:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"xiomaragomez20@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-09-05T06:03:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 11:05:30','2023-09-05 11:05:30'),(8814,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T06:06:26-05:00\",\"transaction\":{\"id\":\"trknwpqq59sdwvj1ezhb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T06:05:50-05:00\",\"operation_date\":\"2023-09-05T06:05:50-05:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":null,\"order_id\":\"240C945BB72980130446FC2B40FBB8E0_PJ9QU1ZNXM_1693911947.9792\",\"due_date\":\"2023-09-05T18:05:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"xiomaragomez20@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-09-05T06:05:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trknwpqq59sdwvj1ezhb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 11:06:27','2023-09-05 11:06:27'),(8815,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T06:07:07-05:00\",\"transaction\":{\"id\":\"trknwpqq59sdwvj1ezhb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141665260\",\"creation_date\":\"2023-09-05T06:05:50-05:00\",\"operation_date\":\"2023-09-05T06:06:56-05:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":null,\"order_id\":\"240C945BB72980130446FC2B40FBB8E0_PJ9QU1ZNXM_1693911947.9792\",\"due_date\":\"2023-09-05T18:05:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"xiomaragomez20@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-09-05T06:05:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 11:07:08','2023-09-05 11:07:08'),(8816,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T06:08:20-05:00\",\"transaction\":{\"id\":\"trnwdzqmnnk66jy8snns\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T06:07:25-05:00\",\"operation_date\":\"2023-09-05T06:07:25-05:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":null,\"order_id\":\"31C0B36AEF265D9221AF80872CEB62F9_WBTH5AND08_1693912042.4262\",\"due_date\":\"2023-09-05T18:07:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"xiomaragomez20@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-09-05T06:07:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnwdzqmnnk66jy8snns/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 11:08:20','2023-09-05 11:08:20'),(8817,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T06:09:03-05:00\",\"transaction\":{\"id\":\"trnwdzqmnnk66jy8snns\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141666449\",\"creation_date\":\"2023-09-05T06:07:25-05:00\",\"operation_date\":\"2023-09-05T06:08:59-05:00\",\"description\":\"Pago Mensual academia: Dilan Jhoan Arias Gomez (1022994602)\",\"error_message\":null,\"order_id\":\"31C0B36AEF265D9221AF80872CEB62F9_WBTH5AND08_1693912042.4262\",\"due_date\":\"2023-09-05T18:07:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dilan Jhoan\",\"last_name\":\"Arias Gomez\",\"email\":\"xiomaragomez20@gmail.com\",\"phone_number\":\"3102921088\",\"address\":null,\"creation_date\":\"2023-09-05T06:07:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 11:09:04','2023-09-05 11:09:04'),(8818,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  952\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T06:19:09-05:00\",\"transaction\":{\"id\":\"trm7zwp61kamqcf3npym\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T06:18:42-05:00\",\"operation_date\":\"2023-09-05T06:18:42-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Aristizábal Colorado (1015074954)\",\"error_message\":null,\"order_id\":\"4F5A97CF06CF69028997DB51D8726D28_T2WQSGKDLF_1693912714.4667\",\"due_date\":\"2023-09-05T18:18:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jenny Alexandra\",\"last_name\":\"Aristizábal Colorado\",\"email\":\"jenny24pablo@yahoo.com\",\"phone_number\":\"3004303882\",\"address\":null,\"creation_date\":\"2023-09-05T06:18:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm7zwp61kamqcf3npym/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 11:19:10','2023-09-05 11:19:10'),(8819,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  835\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T06:19:55-05:00\",\"transaction\":{\"id\":\"trm7zwp61kamqcf3npym\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141674031\",\"creation_date\":\"2023-09-05T06:18:42-05:00\",\"operation_date\":\"2023-09-05T06:19:51-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Aristizábal Colorado (1015074954)\",\"error_message\":null,\"order_id\":\"4F5A97CF06CF69028997DB51D8726D28_T2WQSGKDLF_1693912714.4667\",\"due_date\":\"2023-09-05T18:18:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jenny Alexandra\",\"last_name\":\"Aristizábal Colorado\",\"email\":\"jenny24pablo@yahoo.com\",\"phone_number\":\"3004303882\",\"address\":null,\"creation_date\":\"2023-09-05T06:18:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 11:19:56','2023-09-05 11:19:56'),(8820,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T07:46:25-05:00\",\"transaction\":{\"id\":\"trnuqv6mdp1kip4ddjpx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-05T07:46:25-05:00\",\"operation_date\":\"2023-09-05T07:46:25-05:00\",\"description\":\"Pago Mensual academia: Nicolas Aguirre Giraldo (1035013722)\",\"error_message\":null,\"order_id\":\"748D6B6ED8E13F857CEAA6CFBDCA14B8_JEU8FXHKR1_1693917975.0097\",\"amount\":210000.00,\"customer\":{\"name\":\"Edgard\",\"last_name\":\"Aguirre\",\"email\":\"aguirrerozzo@gmail.com\",\"phone_number\":\"3106467475\",\"address\":null,\"creation_date\":\"2023-09-05T07:46:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnuqv6mdp1kip4ddjpx/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-05 12:46:26','2023-09-05 12:46:26'),(8821,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1139\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T07:47:21-05:00\",\"transaction\":{\"id\":\"trnuqv6mdp1kip4ddjpx\",\"authorization\":\"09114Z\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-05T07:46:25-05:00\",\"operation_date\":\"2023-09-05T07:47:20-05:00\",\"description\":\"Pago Mensual academia: Nicolas Aguirre Giraldo (1035013722)\",\"error_message\":null,\"order_id\":\"748D6B6ED8E13F857CEAA6CFBDCA14B8_JEU8FXHKR1_1693917975.0097\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"526219XXXXXX9890\",\"holder_name\":\"Edgard Aguirre Rozo\",\"expiration_year\":\"25\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CITIBANK N.A.\",\"bank_code\":\"000\"},\"amount\":210000.00,\"customer\":{\"name\":\"Edgard\",\"last_name\":\"Aguirre\",\"email\":\"aguirrerozzo@gmail.com\",\"phone_number\":\"3106467475\",\"address\":null,\"creation_date\":\"2023-09-05T07:46:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnuqv6mdp1kip4ddjpx/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-05 12:47:22','2023-09-05 12:47:22'),(8822,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T07:48:19-05:00\",\"transaction\":{\"id\":\"trzsenauk7cutf4mylgv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T07:43:46-05:00\",\"operation_date\":\"2023-09-05T07:43:46-05:00\",\"description\":\"Pago Mensual academia: ivan del rio zuluaga (1035002157)\",\"error_message\":null,\"order_id\":\"D58F855FDCC76DAF232AEE454C4E59F7_2UKZBE753X_1693917821.2291\",\"due_date\":\"2023-09-05T19:43:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"oscar ivan\",\"last_name\":\"del rio del rio\",\"email\":\"gerencia@abarrotesdelrio.com\",\"phone_number\":\"3163283923\",\"address\":null,\"creation_date\":\"2023-09-05T07:43:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzsenauk7cutf4mylgv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 12:48:19','2023-09-05 12:48:19'),(8823,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T07:48:45-05:00\",\"transaction\":{\"id\":\"trpl3yg5fm2tw1sosobo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T07:47:30-05:00\",\"operation_date\":\"2023-09-05T07:47:30-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rueda Cardozo (1016913762)\",\"error_message\":null,\"order_id\":\"4C2E5EAAE9152079B9E95845750BB9AB_KD5CSYHMUO_1693918045.5776\",\"due_date\":\"2023-09-05T19:47:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hernando\",\"last_name\":\"Rueda ojeda\",\"email\":\"carolandreacardozo@gmail.com\",\"phone_number\":\"3013558382\",\"address\":null,\"creation_date\":\"2023-09-05T07:47:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpl3yg5fm2tw1sosobo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 12:48:45','2023-09-05 12:48:45'),(8824,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T07:49:14-05:00\",\"transaction\":{\"id\":\"try0l1fhoabwossjda8t\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T07:47:54-05:00\",\"operation_date\":\"2023-09-05T07:47:54-05:00\",\"description\":\"Pago Mensual academia: JOSE LUIS RODRIGUEZ PABON (1155713386)\",\"error_message\":null,\"order_id\":\"F269CB7796C3319C9AA4D146B52139E6_2LIQMRUG1S_1693918071.1645\",\"due_date\":\"2023-09-05T19:47:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JOSE LUIS\",\"last_name\":\"RODRIGUEZ PABON\",\"email\":\"francirpabon@icloud.com\",\"phone_number\":\"3042931479\",\"address\":null,\"creation_date\":\"2023-09-05T07:47:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/try0l1fhoabwossjda8t/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 12:49:14','2023-09-05 12:49:14'),(8825,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T07:49:43-05:00\",\"transaction\":{\"id\":\"trzsenauk7cutf4mylgv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141776625\",\"creation_date\":\"2023-09-05T07:43:46-05:00\",\"operation_date\":\"2023-09-05T07:49:35-05:00\",\"description\":\"Pago Mensual academia: ivan del rio zuluaga (1035002157)\",\"error_message\":null,\"order_id\":\"D58F855FDCC76DAF232AEE454C4E59F7_2UKZBE753X_1693917821.2291\",\"due_date\":\"2023-09-05T19:43:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"oscar ivan\",\"last_name\":\"del rio del rio\",\"email\":\"gerencia@abarrotesdelrio.com\",\"phone_number\":\"3163283923\",\"address\":null,\"creation_date\":\"2023-09-05T07:43:46-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 12:49:43','2023-09-05 12:49:43'),(8826,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T07:49:57-05:00\",\"transaction\":{\"id\":\"trpl3yg5fm2tw1sosobo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141777295\",\"creation_date\":\"2023-09-05T07:47:30-05:00\",\"operation_date\":\"2023-09-05T07:49:24-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rueda Cardozo (1016913762)\",\"error_message\":null,\"order_id\":\"4C2E5EAAE9152079B9E95845750BB9AB_KD5CSYHMUO_1693918045.5776\",\"due_date\":\"2023-09-05T19:47:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hernando\",\"last_name\":\"Rueda ojeda\",\"email\":\"carolandreacardozo@gmail.com\",\"phone_number\":\"3013558382\",\"address\":null,\"creation_date\":\"2023-09-05T07:47:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 12:49:58','2023-09-05 12:49:58'),(8827,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T07:50:26-05:00\",\"transaction\":{\"id\":\"try0l1fhoabwossjda8t\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141778185\",\"creation_date\":\"2023-09-05T07:47:54-05:00\",\"operation_date\":\"2023-09-05T07:50:16-05:00\",\"description\":\"Pago Mensual academia: JOSE LUIS RODRIGUEZ PABON (1155713386)\",\"error_message\":null,\"order_id\":\"F269CB7796C3319C9AA4D146B52139E6_2LIQMRUG1S_1693918071.1645\",\"due_date\":\"2023-09-05T19:47:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JOSE LUIS\",\"last_name\":\"RODRIGUEZ PABON\",\"email\":\"francirpabon@icloud.com\",\"phone_number\":\"3042931479\",\"address\":null,\"creation_date\":\"2023-09-05T07:47:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 12:50:26','2023-09-05 12:50:26'),(8828,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T07:54:58-05:00\",\"transaction\":{\"id\":\"trc6p4vxiwha127n8p7f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-05T07:54:58-05:00\",\"operation_date\":\"2023-09-05T07:54:58-05:00\",\"description\":\"Pago Mensual academia: Angel David Botero Montoya (1023538420)\",\"error_message\":null,\"order_id\":\"50DD7100BCBD98C41B1179143A2325A4_PV98RMJIU7_1693918491.6653\",\"amount\":165900.00,\"customer\":{\"name\":\"Yojan Adolfo\",\"last_name\":\"Botero Gomez\",\"email\":\"yadolfo@gmail.com\",\"phone_number\":\"3217000118\",\"address\":null,\"creation_date\":\"2023-09-05T07:54:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc6p4vxiwha127n8p7f/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-05 12:54:59','2023-09-05 12:54:59'),(8829,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1141\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T07:56:44-05:00\",\"transaction\":{\"id\":\"trc6p4vxiwha127n8p7f\",\"authorization\":\"403750\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-05T07:54:58-05:00\",\"operation_date\":\"2023-09-05T07:56:43-05:00\",\"description\":\"Pago Mensual academia: Angel David Botero Montoya (1023538420)\",\"error_message\":null,\"order_id\":\"50DD7100BCBD98C41B1179143A2325A4_PV98RMJIU7_1693918491.6653\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"518841XXXXXX9838\",\"holder_name\":\"YOJAN A BOTERO G\",\"expiration_year\":\"26\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"amount\":165900.00,\"customer\":{\"name\":\"Yojan Adolfo\",\"last_name\":\"Botero Gomez\",\"email\":\"yadolfo@gmail.com\",\"phone_number\":\"3217000118\",\"address\":null,\"creation_date\":\"2023-09-05T07:54:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc6p4vxiwha127n8p7f/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-05 12:56:44','2023-09-05 12:56:44'),(8830,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T08:05:50-05:00\",\"transaction\":{\"id\":\"triskupa39bysgdzryar\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T07:58:56-05:00\",\"operation_date\":\"2023-09-05T07:58:56-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Hidalgo Londoño (1023639863)\",\"error_message\":null,\"order_id\":\"7171E95248FF768E1EBEE3EDDE01EA7A_VUP5Z4A1LX_1693918696.7926\",\"due_date\":\"2023-09-05T19:58:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres Felipe\",\"last_name\":\"Hidalgo Londoño\",\"email\":\"luisachica.12@gmail.com\",\"phone_number\":\"3194402621\",\"address\":null,\"creation_date\":\"2023-09-05T07:58:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triskupa39bysgdzryar/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 13:05:51','2023-09-05 13:05:51'),(8831,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T08:11:22-05:00\",\"transaction\":{\"id\":\"trvoke2vwaem4p40m4on\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-05T08:11:22-05:00\",\"operation_date\":\"2023-09-05T08:11:22-05:00\",\"description\":\"Pago Mensual academia: lucio gaviria uribe (1035010951)\",\"error_message\":null,\"order_id\":\"5A5EAB21CA2A8FEF4AF5E35709ECCA15_PO5FUW349S_1693919479.1623\",\"amount\":165900.00,\"customer\":{\"name\":\"sebastian\",\"last_name\":\"gaviria\",\"email\":\"sebastiangaviria@centrosur.co\",\"phone_number\":\"3168763936\",\"address\":null,\"creation_date\":\"2023-09-05T08:11:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvoke2vwaem4p40m4on/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-05 13:11:23','2023-09-05 13:11:23'),(8832,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1148\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T08:12:10-05:00\",\"transaction\":{\"id\":\"trvoke2vwaem4p40m4on\",\"authorization\":\"R06042\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-05T08:11:22-05:00\",\"operation_date\":\"2023-09-05T08:12:09-05:00\",\"description\":\"Pago Mensual academia: lucio gaviria uribe (1035010951)\",\"error_message\":null,\"order_id\":\"5A5EAB21CA2A8FEF4AF5E35709ECCA15_PO5FUW349S_1693919479.1623\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX0348\",\"holder_name\":\"Sebastian gaviria \",\"expiration_year\":\"27\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"sebastian\",\"last_name\":\"gaviria\",\"email\":\"sebastiangaviria@centrosur.co\",\"phone_number\":\"3168763936\",\"address\":null,\"creation_date\":\"2023-09-05T08:11:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvoke2vwaem4p40m4on/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-05 13:12:11','2023-09-05 13:12:11'),(8833,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T08:17:47-05:00\",\"transaction\":{\"id\":\"trkbqvnyap5ljwxrindj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T08:16:53-05:00\",\"operation_date\":\"2023-09-05T08:16:53-05:00\",\"description\":\"Pago Mensual academia: emiliano saldarriaga perez (1021946106)\",\"error_message\":null,\"order_id\":\"A6197A578FE7778E8D49A95AC425BCFC_VORX3IKMC1_1693919809.0405\",\"due_date\":\"2023-09-05T20:16:53-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Maria Patricia\",\"last_name\":\"Perez Alzate\",\"email\":\"patrialzate94@gmail.com\",\"phone_number\":\"3006114131\",\"address\":null,\"creation_date\":\"2023-09-05T08:16:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkbqvnyap5ljwxrindj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 13:17:48','2023-09-05 13:17:48'),(8834,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T08:19:26-05:00\",\"transaction\":{\"id\":\"trrnhs1wk1fhl7vnnm7f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T08:18:06-05:00\",\"operation_date\":\"2023-09-05T08:18:06-05:00\",\"description\":\"Pago Mensual academia: Agustin Garcia Chain (1035008392)\",\"error_message\":null,\"order_id\":\"533FA796B43291FC61A9E812A50C3FB6_472S0E69MW_1693919882.8618\",\"due_date\":\"2023-09-05T20:18:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edgar Alberto\",\"last_name\":\"Garcia Rodriguez\",\"email\":\"ealbertogarcia@gmail.com\",\"phone_number\":\"3183967339\",\"address\":null,\"creation_date\":\"2023-09-05T08:18:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrnhs1wk1fhl7vnnm7f/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 13:19:27','2023-09-05 13:19:27'),(8835,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T08:20:55-05:00\",\"transaction\":{\"id\":\"trrnhs1wk1fhl7vnnm7f\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141835039\",\"creation_date\":\"2023-09-05T08:18:06-05:00\",\"operation_date\":\"2023-09-05T08:20:44-05:00\",\"description\":\"Pago Mensual academia: Agustin Garcia Chain (1035008392)\",\"error_message\":null,\"order_id\":\"533FA796B43291FC61A9E812A50C3FB6_472S0E69MW_1693919882.8618\",\"due_date\":\"2023-09-05T20:18:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edgar Alberto\",\"last_name\":\"Garcia Rodriguez\",\"email\":\"ealbertogarcia@gmail.com\",\"phone_number\":\"3183967339\",\"address\":null,\"creation_date\":\"2023-09-05T08:18:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 13:20:56','2023-09-05 13:20:56'),(8836,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T07:21:15-06:00\",\"transaction\":{\"id\":\"trkbqvnyap5ljwxrindj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141831492\",\"creation_date\":\"2023-09-05T08:16:53-06:00\",\"operation_date\":\"2023-09-05T08:18:41-06:00\",\"description\":\"Pago Mensual academia: emiliano saldarriaga perez (1021946106)\",\"error_message\":null,\"order_id\":\"A6197A578FE7778E8D49A95AC425BCFC_VORX3IKMC1_1693919809.0405\",\"due_date\":\"2023-09-05T20:16:53-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Maria Patricia\",\"last_name\":\"Perez Alzate\",\"email\":\"patrialzate94@gmail.com\",\"phone_number\":\"3006114131\",\"address\":null,\"creation_date\":\"2023-09-05T08:16:53-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 13:21:16','2023-09-05 13:21:16'),(8837,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  865\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-05T07:27:10-06:00\",\"transaction\":{\"id\":\"triskupa39bysgdzryar\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-05T07:58:56-06:00\",\"operation_date\":\"2023-09-05T08:06:12-06:00\",\"description\":\"Pago Mensual academia: Andres Felipe Hidalgo Londoño (1023639863)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"7171E95248FF768E1EBEE3EDDE01EA7A_VUP5Z4A1LX_1693918696.7926\",\"due_date\":\"2023-09-05T19:58:56-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Andres Felipe\",\"last_name\":\"Hidalgo Londoño\",\"email\":\"luisachica.12@gmail.com\",\"phone_number\":\"3194402621\",\"address\":null,\"creation_date\":\"2023-09-05T07:58:56-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 13:27:11','2023-09-05 13:27:11'),(8838,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T08:42:43-05:00\",\"transaction\":{\"id\":\"trbavxcllwrmrw6bb6hb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T08:42:08-05:00\",\"operation_date\":\"2023-09-05T08:42:08-05:00\",\"description\":\"Pago Mensual academia: Nicolas Ruiz Urbano (1089641876)\",\"error_message\":null,\"order_id\":\"C4D2CE3F3EBB5393A77C33C0CD95DC93_Q3HFI01AZ5_1693921324.982\",\"due_date\":\"2023-09-05T20:42:08-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Ruiz Urbano\",\"email\":\"nathalia_urbano@hotmail.com\",\"phone_number\":\"3004400511\",\"address\":null,\"creation_date\":\"2023-09-05T08:42:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbavxcllwrmrw6bb6hb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 13:42:44','2023-09-05 13:42:44'),(8839,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T08:44:02-05:00\",\"transaction\":{\"id\":\"trbavxcllwrmrw6bb6hb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141889593\",\"creation_date\":\"2023-09-05T08:42:08-05:00\",\"operation_date\":\"2023-09-05T08:43:52-05:00\",\"description\":\"Pago Mensual academia: Nicolas Ruiz Urbano (1089641876)\",\"error_message\":null,\"order_id\":\"C4D2CE3F3EBB5393A77C33C0CD95DC93_Q3HFI01AZ5_1693921324.982\",\"due_date\":\"2023-09-05T20:42:08-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Ruiz Urbano\",\"email\":\"nathalia_urbano@hotmail.com\",\"phone_number\":\"3004400511\",\"address\":null,\"creation_date\":\"2023-09-05T08:42:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 13:44:03','2023-09-05 13:44:03'),(8840,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T09:14:28-05:00\",\"transaction\":{\"id\":\"trwlojdu3qnvcbozvecs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T09:13:33-05:00\",\"operation_date\":\"2023-09-05T09:13:33-05:00\",\"description\":\"Pago Mensual academia: julian Solórzano Munera (1017934722)\",\"error_message\":null,\"order_id\":\"4F8BC5AC1DC2B49434EFE9E72F183DE8_CD6QJKBWET_1693923208.014\",\"due_date\":\"2023-09-05T21:13:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julian\",\"last_name\":\"Solorzano\",\"email\":\"solojulio@yahoo.com\",\"phone_number\":\"3132965088\",\"address\":null,\"creation_date\":\"2023-09-05T09:13:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwlojdu3qnvcbozvecs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 14:14:28','2023-09-05 14:14:28'),(8841,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T09:15:57-05:00\",\"transaction\":{\"id\":\"trwlojdu3qnvcbozvecs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"141972266\",\"creation_date\":\"2023-09-05T09:13:33-05:00\",\"operation_date\":\"2023-09-05T09:15:51-05:00\",\"description\":\"Pago Mensual academia: julian Solórzano Munera (1017934722)\",\"error_message\":null,\"order_id\":\"4F8BC5AC1DC2B49434EFE9E72F183DE8_CD6QJKBWET_1693923208.014\",\"due_date\":\"2023-09-05T21:13:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julian\",\"last_name\":\"Solorzano\",\"email\":\"solojulio@yahoo.com\",\"phone_number\":\"3132965088\",\"address\":null,\"creation_date\":\"2023-09-05T09:13:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 14:15:57','2023-09-05 14:15:57'),(8842,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T09:26:39-05:00\",\"transaction\":{\"id\":\"tr4vntq78cgfoeilkoyl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T09:25:23-05:00\",\"operation_date\":\"2023-09-05T09:25:23-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda jaramillo (1038264565)\",\"error_message\":null,\"order_id\":\"866D90E0921AC7B024B47D672445A086_6WLS1AI4EY_1693923918.4799\",\"due_date\":\"2023-09-05T21:25:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"didier\",\"last_name\":\"marulanda bran\",\"email\":\"emiliogp12@gmail.com\",\"phone_number\":\"3165522973\",\"address\":null,\"creation_date\":\"2023-09-05T09:25:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4vntq78cgfoeilkoyl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 14:26:40','2023-09-05 14:26:40'),(8843,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T09:29:53-05:00\",\"transaction\":{\"id\":\"tr4vntq78cgfoeilkoyl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142006913\",\"creation_date\":\"2023-09-05T09:25:23-05:00\",\"operation_date\":\"2023-09-05T09:28:42-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda jaramillo (1038264565)\",\"error_message\":null,\"order_id\":\"866D90E0921AC7B024B47D672445A086_6WLS1AI4EY_1693923918.4799\",\"due_date\":\"2023-09-05T21:25:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"didier\",\"last_name\":\"marulanda bran\",\"email\":\"emiliogp12@gmail.com\",\"phone_number\":\"3165522973\",\"address\":null,\"creation_date\":\"2023-09-05T09:25:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 14:29:54','2023-09-05 14:29:54'),(8844,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T10:03:55-05:00\",\"transaction\":{\"id\":\"tri9wnosglmnqowrye6q\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T10:03:15-05:00\",\"operation_date\":\"2023-09-05T10:03:15-05:00\",\"description\":\"Pago Mensual academia: Mateo Esteban Arroyave Robles (1125279657)\",\"error_message\":null,\"order_id\":\"C911241D00294E8BB714EEE2E83FA475_M2FGKI10DH_1693926192.8157\",\"due_date\":\"2023-09-05T22:03:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"Robles Lomas\",\"email\":\"srobleslomas@hotmail.com\",\"phone_number\":\"3125036629\",\"address\":null,\"creation_date\":\"2023-09-05T10:03:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tri9wnosglmnqowrye6q/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 15:03:56','2023-09-05 15:03:56'),(8845,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T09:06:17-06:00\",\"transaction\":{\"id\":\"tri9wnosglmnqowrye6q\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142119985\",\"creation_date\":\"2023-09-05T10:03:15-06:00\",\"operation_date\":\"2023-09-05T10:05:11-06:00\",\"description\":\"Pago Mensual academia: Mateo Esteban Arroyave Robles (1125279657)\",\"error_message\":null,\"order_id\":\"C911241D00294E8BB714EEE2E83FA475_M2FGKI10DH_1693926192.8157\",\"due_date\":\"2023-09-05T22:03:15-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"Robles Lomas\",\"email\":\"srobleslomas@hotmail.com\",\"phone_number\":\"3125036629\",\"address\":null,\"creation_date\":\"2023-09-05T10:03:15-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 15:06:18','2023-09-05 15:06:18'),(8846,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T10:20:59-05:00\",\"transaction\":{\"id\":\"tr9fxzhlawuiedi1ecki\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T10:20:00-05:00\",\"operation_date\":\"2023-09-05T10:20:00-05:00\",\"description\":\"Pago Mensual academia: Christopher Castaño Blandón (1023639803)\",\"error_message\":null,\"order_id\":\"A9DF2255AD642B923D95503B9A7958D8_2WE1B7VKMO_1693927193.0364\",\"due_date\":\"2023-09-05T22:20:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Blandón Acosta\",\"email\":\"tati.blandona@gmail.com\",\"phone_number\":\"3216570192\",\"address\":null,\"creation_date\":\"2023-09-05T10:20:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9fxzhlawuiedi1ecki/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 15:21:00','2023-09-05 15:21:00'),(8847,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T10:22:42-05:00\",\"transaction\":{\"id\":\"tr9fxzhlawuiedi1ecki\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142173373\",\"creation_date\":\"2023-09-05T10:20:00-05:00\",\"operation_date\":\"2023-09-05T10:22:17-05:00\",\"description\":\"Pago Mensual academia: Christopher Castaño Blandón (1023639803)\",\"error_message\":null,\"order_id\":\"A9DF2255AD642B923D95503B9A7958D8_2WE1B7VKMO_1693927193.0364\",\"due_date\":\"2023-09-05T22:20:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Blandón Acosta\",\"email\":\"tati.blandona@gmail.com\",\"phone_number\":\"3216570192\",\"address\":null,\"creation_date\":\"2023-09-05T10:20:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 15:22:43','2023-09-05 15:22:43'),(8848,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T10:55:54-05:00\",\"transaction\":{\"id\":\"trmit6mxw0qelctsmv4p\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T10:54:42-05:00\",\"operation_date\":\"2023-09-05T10:54:42-05:00\",\"description\":\"Pago Mensual academia: Matías Arroyo Suárez (1028141313)\",\"error_message\":null,\"order_id\":\"582967E09F1B30CA2539968DA0A174FA_9XDQY02Z71_1693929278.1741\",\"due_date\":\"2023-09-05T22:54:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Arroyo Quintero\",\"email\":\"carroyoquintero1989@gmail.com\",\"phone_number\":\"3104624259\",\"address\":null,\"creation_date\":\"2023-09-05T10:54:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmit6mxw0qelctsmv4p/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 15:55:55','2023-09-05 15:55:55'),(8849,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T10:57:04-05:00\",\"transaction\":{\"id\":\"trmit6mxw0qelctsmv4p\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142283786\",\"creation_date\":\"2023-09-05T10:54:42-05:00\",\"operation_date\":\"2023-09-05T10:56:50-05:00\",\"description\":\"Pago Mensual academia: Matías Arroyo Suárez (1028141313)\",\"error_message\":null,\"order_id\":\"582967E09F1B30CA2539968DA0A174FA_9XDQY02Z71_1693929278.1741\",\"due_date\":\"2023-09-05T22:54:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Arroyo Quintero\",\"email\":\"carroyoquintero1989@gmail.com\",\"phone_number\":\"3104624259\",\"address\":null,\"creation_date\":\"2023-09-05T10:54:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 15:57:04','2023-09-05 15:57:04'),(8850,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T11:02:16-05:00\",\"transaction\":{\"id\":\"trouqp6yy2fieorzbcmk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T11:01:31-05:00\",\"operation_date\":\"2023-09-05T11:01:31-05:00\",\"description\":\"Pago Mensual academia: Thiago Alvarez Robayo (1025077316)\",\"error_message\":null,\"order_id\":\"2C620A8C232F32AA9E7DCBC90102B253_RKNZW0BPSA_1693929688.4012\",\"due_date\":\"2023-09-05T23:01:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ángela\",\"last_name\":\"Robayo Herrera\",\"email\":\"angelapao.robayo@gmail.com\",\"phone_number\":\"3043765119\",\"address\":null,\"creation_date\":\"2023-09-05T11:01:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trouqp6yy2fieorzbcmk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 16:02:16','2023-09-05 16:02:16'),(8851,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T10:03:33-06:00\",\"transaction\":{\"id\":\"trouqp6yy2fieorzbcmk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142303804\",\"creation_date\":\"2023-09-05T11:01:31-06:00\",\"operation_date\":\"2023-09-05T11:03:14-06:00\",\"description\":\"Pago Mensual academia: Thiago Alvarez Robayo (1025077316)\",\"error_message\":null,\"order_id\":\"2C620A8C232F32AA9E7DCBC90102B253_RKNZW0BPSA_1693929688.4012\",\"due_date\":\"2023-09-05T23:01:31-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ángela\",\"last_name\":\"Robayo Herrera\",\"email\":\"angelapao.robayo@gmail.com\",\"phone_number\":\"3043765119\",\"address\":null,\"creation_date\":\"2023-09-05T11:01:31-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 16:03:33','2023-09-05 16:03:33'),(8852,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T11:11:53-05:00\",\"transaction\":{\"id\":\"trrkwakeffjodztw5owh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T11:10:45-05:00\",\"operation_date\":\"2023-09-05T11:10:45-05:00\",\"description\":\"Pago Mensual academia: Maria Alejandra Bohórquez Junco (1043685595)\",\"error_message\":null,\"order_id\":\"8E54D6B523B279543AC12A0F7333CD3C_HWVK3DOGZ8_1693927680.6887\",\"due_date\":\"2023-09-05T23:10:45-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Karen\",\"last_name\":\"Junco\",\"email\":\"junco.karen@gmail.com\",\"phone_number\":\"3004400435\",\"address\":null,\"creation_date\":\"2023-09-05T11:10:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrkwakeffjodztw5owh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 16:11:53','2023-09-05 16:11:53'),(8853,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T10:15:23-06:00\",\"transaction\":{\"id\":\"trrkwakeffjodztw5owh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142334275\",\"creation_date\":\"2023-09-05T11:10:45-06:00\",\"operation_date\":\"2023-09-05T11:12:56-06:00\",\"description\":\"Pago Mensual academia: Maria Alejandra Bohórquez Junco (1043685595)\",\"error_message\":null,\"order_id\":\"8E54D6B523B279543AC12A0F7333CD3C_HWVK3DOGZ8_1693927680.6887\",\"due_date\":\"2023-09-05T23:10:45-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Karen\",\"last_name\":\"Junco\",\"email\":\"junco.karen@gmail.com\",\"phone_number\":\"3004400435\",\"address\":null,\"creation_date\":\"2023-09-05T11:10:45-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 16:15:24','2023-09-05 16:15:24'),(8854,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T11:48:27-05:00\",\"transaction\":{\"id\":\"trxubkkiigygubsws7zv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T11:47:07-05:00\",\"operation_date\":\"2023-09-05T11:47:07-05:00\",\"description\":\"Pago Mensual academia: Cristobal Choperena González (1020122976)\",\"error_message\":null,\"order_id\":\"C255C05246A081654A0267CBB725F5A7_E4WIBT16RC_1693932424.3886\",\"due_date\":\"2023-09-05T23:47:07-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristobal\",\"last_name\":\"Choperena González\",\"email\":\"sandra0918@hotmail.com\",\"phone_number\":\"3218512057\",\"address\":null,\"creation_date\":\"2023-09-05T11:47:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxubkkiigygubsws7zv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 16:48:27','2023-09-05 16:48:27'),(8855,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T11:49:28-05:00\",\"transaction\":{\"id\":\"trxubkkiigygubsws7zv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142449519\",\"creation_date\":\"2023-09-05T11:47:07-05:00\",\"operation_date\":\"2023-09-05T11:49:22-05:00\",\"description\":\"Pago Mensual academia: Cristobal Choperena González (1020122976)\",\"error_message\":null,\"order_id\":\"C255C05246A081654A0267CBB725F5A7_E4WIBT16RC_1693932424.3886\",\"due_date\":\"2023-09-05T23:47:07-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristobal\",\"last_name\":\"Choperena González\",\"email\":\"sandra0918@hotmail.com\",\"phone_number\":\"3218512057\",\"address\":null,\"creation_date\":\"2023-09-05T11:47:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 16:49:29','2023-09-05 16:49:29'),(8856,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T12:10:04-05:00\",\"transaction\":{\"id\":\"tryvymqxqurkgxt21xfb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T12:09:07-05:00\",\"operation_date\":\"2023-09-05T12:09:07-05:00\",\"description\":\"Pago Mensual academia: Nicolás Melo Estrada (1035009757)\",\"error_message\":null,\"order_id\":\"E16E74A63567ECB44ADE5C87002BB1D9_18YU3SFO9G_1693933741.4647\",\"due_date\":\"2023-09-06T00:09:07-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan carlos\",\"last_name\":\"melo campo\",\"email\":\"meloc21@gmail.com\",\"phone_number\":\"3222651609\",\"address\":null,\"creation_date\":\"2023-09-05T12:09:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryvymqxqurkgxt21xfb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 17:10:05','2023-09-05 17:10:05'),(8857,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T11:12:22-06:00\",\"transaction\":{\"id\":\"tryvymqxqurkgxt21xfb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142514203\",\"creation_date\":\"2023-09-05T12:09:07-06:00\",\"operation_date\":\"2023-09-05T12:11:00-06:00\",\"description\":\"Pago Mensual academia: Nicolás Melo Estrada (1035009757)\",\"error_message\":null,\"order_id\":\"E16E74A63567ECB44ADE5C87002BB1D9_18YU3SFO9G_1693933741.4647\",\"due_date\":\"2023-09-06T00:09:07-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan carlos\",\"last_name\":\"melo campo\",\"email\":\"meloc21@gmail.com\",\"phone_number\":\"3222651609\",\"address\":null,\"creation_date\":\"2023-09-05T12:09:07-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 17:12:22','2023-09-05 17:12:22'),(8858,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T12:12:22-05:00\",\"transaction\":{\"id\":\"tretl3pvgzbtjvzxa7nf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T12:11:35-05:00\",\"operation_date\":\"2023-09-05T12:11:35-05:00\",\"description\":\"Pago Mensual academia: Nicolás Melo Estrada (1035009757)\",\"error_message\":null,\"order_id\":\"551CB238F4895024B98D1943B708DE7C_LU5DG4TJCF_1693933888.1983\",\"due_date\":\"2023-09-06T00:11:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan carlos\",\"last_name\":\"melo campo\",\"email\":\"meloc21@gmail.com\",\"phone_number\":\"3222651609\",\"address\":null,\"creation_date\":\"2023-09-05T12:11:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tretl3pvgzbtjvzxa7nf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 17:12:23','2023-09-05 17:12:23'),(8859,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T11:15:20-06:00\",\"transaction\":{\"id\":\"tretl3pvgzbtjvzxa7nf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142520811\",\"creation_date\":\"2023-09-05T12:11:35-06:00\",\"operation_date\":\"2023-09-05T12:13:15-06:00\",\"description\":\"Pago Mensual academia: Nicolás Melo Estrada (1035009757)\",\"error_message\":null,\"order_id\":\"551CB238F4895024B98D1943B708DE7C_LU5DG4TJCF_1693933888.1983\",\"due_date\":\"2023-09-06T00:11:35-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan carlos\",\"last_name\":\"melo campo\",\"email\":\"meloc21@gmail.com\",\"phone_number\":\"3222651609\",\"address\":null,\"creation_date\":\"2023-09-05T12:11:35-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 17:15:21','2023-09-05 17:15:21'),(8860,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T12:19:11-05:00\",\"transaction\":{\"id\":\"trkwnpxlg758eo4s8yhl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T12:17:55-05:00\",\"operation_date\":\"2023-09-05T12:17:55-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Mejía Arias (1036454391)\",\"error_message\":null,\"order_id\":\"D35B05A832E2BB91F110D54E34E2DA79_URA3ZVF1YL_1693934269.4832\",\"due_date\":\"2023-09-06T00:17:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cesar Augusto\",\"last_name\":\"Mejía Mejia\",\"email\":\"cesarm.cm417@gmail.com\",\"phone_number\":\"3052671413\",\"address\":null,\"creation_date\":\"2023-09-05T12:17:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkwnpxlg758eo4s8yhl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 17:19:11','2023-09-05 17:19:11'),(8861,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T11:21:15-06:00\",\"transaction\":{\"id\":\"trkwnpxlg758eo4s8yhl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142539770\",\"creation_date\":\"2023-09-05T12:17:55-06:00\",\"operation_date\":\"2023-09-05T12:20:46-06:00\",\"description\":\"Pago Mensual academia: Miguel Angel Mejía Arias (1036454391)\",\"error_message\":null,\"order_id\":\"D35B05A832E2BB91F110D54E34E2DA79_URA3ZVF1YL_1693934269.4832\",\"due_date\":\"2023-09-06T00:17:55-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cesar Augusto\",\"last_name\":\"Mejía Mejia\",\"email\":\"cesarm.cm417@gmail.com\",\"phone_number\":\"3052671413\",\"address\":null,\"creation_date\":\"2023-09-05T12:17:55-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 17:21:15','2023-09-05 17:21:15'),(8862,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T12:53:02-05:00\",\"transaction\":{\"id\":\"trpwqliwvokhfwr0k3tb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T12:52:21-05:00\",\"operation_date\":\"2023-09-05T12:52:21-05:00\",\"description\":\"Pago Mensual academia: Martín Betancur Giraldo (1035013869)\",\"error_message\":null,\"order_id\":\"DB346CCB62D491029B590BBBF0F5C412_IE6A2PBMLT_1693936339.0875\",\"due_date\":\"2023-09-06T00:52:21-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"German René\",\"last_name\":\"Betancur Giraldo\",\"email\":\"grbg28@hotmail.com\",\"phone_number\":\"3155109052\",\"address\":null,\"creation_date\":\"2023-09-05T12:52:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpwqliwvokhfwr0k3tb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 17:53:03','2023-09-05 17:53:03'),(8863,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T12:53:52-05:00\",\"transaction\":{\"id\":\"trpwqliwvokhfwr0k3tb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142629826\",\"creation_date\":\"2023-09-05T12:52:21-05:00\",\"operation_date\":\"2023-09-05T12:53:44-05:00\",\"description\":\"Pago Mensual academia: Martín Betancur Giraldo (1035013869)\",\"error_message\":null,\"order_id\":\"DB346CCB62D491029B590BBBF0F5C412_IE6A2PBMLT_1693936339.0875\",\"due_date\":\"2023-09-06T00:52:21-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"German René\",\"last_name\":\"Betancur Giraldo\",\"email\":\"grbg28@hotmail.com\",\"phone_number\":\"3155109052\",\"address\":null,\"creation_date\":\"2023-09-05T12:52:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 17:53:53','2023-09-05 17:53:53'),(8864,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T13:14:49-05:00\",\"transaction\":{\"id\":\"trlcfnyguufdwdhj4ekn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T13:13:45-05:00\",\"operation_date\":\"2023-09-05T13:13:45-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Cordoba Lemos (1020322520)\",\"error_message\":null,\"order_id\":\"CCC81A97C1535F9A631B9DB584A264E4_0KY1R56GE9_1693937619.7897\",\"due_date\":\"2023-09-06T01:13:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Cordoba Lemos\",\"email\":\"wesulebe@hotmail.com\",\"phone_number\":\"3105150656\",\"address\":null,\"creation_date\":\"2023-09-05T13:13:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlcfnyguufdwdhj4ekn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:14:50','2023-09-05 18:14:50'),(8865,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T13:16:04-05:00\",\"transaction\":{\"id\":\"trlcfnyguufdwdhj4ekn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142684054\",\"creation_date\":\"2023-09-05T13:13:45-05:00\",\"operation_date\":\"2023-09-05T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Cordoba Lemos (1020322520)\",\"error_message\":null,\"order_id\":\"CCC81A97C1535F9A631B9DB584A264E4_0KY1R56GE9_1693937619.7897\",\"due_date\":\"2023-09-06T01:13:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Cordoba Lemos\",\"email\":\"wesulebe@hotmail.com\",\"phone_number\":\"3105150656\",\"address\":null,\"creation_date\":\"2023-09-05T13:13:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:16:05','2023-09-05 18:16:05'),(8866,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T13:18:53-05:00\",\"transaction\":{\"id\":\"trp0v1bpue0xfkegswtq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T13:15:45-05:00\",\"operation_date\":\"2023-09-05T13:15:45-05:00\",\"description\":\"Pago Mensual academia: Matias Duque Barrera (1020320699)\",\"error_message\":null,\"order_id\":\"834A3BD235BCA0CAA53141F2EBC30438_859Q1CM3VS_1693937741.5701\",\"due_date\":\"2023-09-06T01:15:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lissette\",\"last_name\":\"Barrera Villa\",\"email\":\"lissibarrera@hotmail.com\",\"phone_number\":\"3113221134\",\"address\":null,\"creation_date\":\"2023-09-05T13:15:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trp0v1bpue0xfkegswtq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:18:53','2023-09-05 18:18:53'),(8867,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T13:19:08-05:00\",\"transaction\":{\"id\":\"troumxwazl3upad59hk6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T13:18:24-05:00\",\"operation_date\":\"2023-09-05T13:18:24-05:00\",\"description\":\"Pago Mensual academia: Mateo Suarez Salazar (1040574340)\",\"error_message\":null,\"order_id\":\"8D9A6E908ED2B731FB96151D9BB94D49_TI0QSZ49GU_1693937891.4401\",\"due_date\":\"2023-09-06T01:18:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Salazar Cardona\",\"email\":\"carito-900@hotmail.com\",\"phone_number\":\"3006393961\",\"address\":null,\"creation_date\":\"2023-09-05T13:18:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troumxwazl3upad59hk6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:19:09','2023-09-05 18:19:09'),(8868,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T13:20:50-05:00\",\"transaction\":{\"id\":\"trp0v1bpue0xfkegswtq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142694273\",\"creation_date\":\"2023-09-05T13:15:45-05:00\",\"operation_date\":\"2023-09-05T13:19:59-05:00\",\"description\":\"Pago Mensual academia: Matias Duque Barrera (1020320699)\",\"error_message\":null,\"order_id\":\"834A3BD235BCA0CAA53141F2EBC30438_859Q1CM3VS_1693937741.5701\",\"due_date\":\"2023-09-06T01:15:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lissette\",\"last_name\":\"Barrera Villa\",\"email\":\"lissibarrera@hotmail.com\",\"phone_number\":\"3113221134\",\"address\":null,\"creation_date\":\"2023-09-05T13:15:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:20:51','2023-09-05 18:20:51'),(8869,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T13:22:59-05:00\",\"transaction\":{\"id\":\"troumxwazl3upad59hk6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142695013\",\"creation_date\":\"2023-09-05T13:18:24-05:00\",\"operation_date\":\"2023-09-05T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Mateo Suarez Salazar (1040574340)\",\"error_message\":null,\"order_id\":\"8D9A6E908ED2B731FB96151D9BB94D49_TI0QSZ49GU_1693937891.4401\",\"due_date\":\"2023-09-06T01:18:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Salazar Cardona\",\"email\":\"carito-900@hotmail.com\",\"phone_number\":\"3006393961\",\"address\":null,\"creation_date\":\"2023-09-05T13:18:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:22:59','2023-09-05 18:22:59'),(8870,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T13:38:07-05:00\",\"transaction\":{\"id\":\"trfahizzjusejq0nr0ze\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T13:37:36-05:00\",\"operation_date\":\"2023-09-05T13:37:36-05:00\",\"description\":\"Pago Mensual academia: Martín Betancur Giraldo (1035013869)\",\"error_message\":null,\"order_id\":\"2ED80F6311C1825FEB854D78FA969D34_W806ON9SUT_1693939050.2234\",\"due_date\":\"2023-09-06T01:37:36-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"German René\",\"last_name\":\"Betancur Giraldo\",\"email\":\"grbg28@hotmail.com\",\"phone_number\":\"3155109052\",\"address\":null,\"creation_date\":\"2023-09-05T13:37:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfahizzjusejq0nr0ze/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:38:07','2023-09-05 18:38:07'),(8871,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T13:42:24-05:00\",\"transaction\":{\"id\":\"trfahizzjusejq0nr0ze\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142742365\",\"creation_date\":\"2023-09-05T13:37:36-05:00\",\"operation_date\":\"2023-09-05T13:42:18-05:00\",\"description\":\"Pago Mensual academia: Martín Betancur Giraldo (1035013869)\",\"error_message\":null,\"order_id\":\"2ED80F6311C1825FEB854D78FA969D34_W806ON9SUT_1693939050.2234\",\"due_date\":\"2023-09-06T01:37:36-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"German René\",\"last_name\":\"Betancur Giraldo\",\"email\":\"grbg28@hotmail.com\",\"phone_number\":\"3155109052\",\"address\":null,\"creation_date\":\"2023-09-05T13:37:36-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:42:24','2023-09-05 18:42:24'),(8872,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T13:50:21-05:00\",\"transaction\":{\"id\":\"trng9awhk2ggjtjmsmln\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T13:49:13-05:00\",\"operation_date\":\"2023-09-05T13:49:13-05:00\",\"description\":\"Pago Mensual academia: Jacobo Palacios Morales (1023595586)\",\"error_message\":null,\"order_id\":\"9854D7AFCE413AA13CD0A1D39D0BCEC5_O7CG6Q2W5Y_1693939749.5119\",\"due_date\":\"2023-09-06T01:49:13-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Sandra\",\"last_name\":\"Morales\",\"email\":\"crismo0304@gmail.com\",\"phone_number\":\"3147456601\",\"address\":null,\"creation_date\":\"2023-09-05T13:49:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trng9awhk2ggjtjmsmln/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:50:22','2023-09-05 18:50:22'),(8873,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T13:52:15-05:00\",\"transaction\":{\"id\":\"trng9awhk2ggjtjmsmln\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142773794\",\"creation_date\":\"2023-09-05T13:49:13-05:00\",\"operation_date\":\"2023-09-05T13:51:58-05:00\",\"description\":\"Pago Mensual academia: Jacobo Palacios Morales (1023595586)\",\"error_message\":null,\"order_id\":\"9854D7AFCE413AA13CD0A1D39D0BCEC5_O7CG6Q2W5Y_1693939749.5119\",\"due_date\":\"2023-09-06T01:49:13-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Sandra\",\"last_name\":\"Morales\",\"email\":\"crismo0304@gmail.com\",\"phone_number\":\"3147456601\",\"address\":null,\"creation_date\":\"2023-09-05T13:49:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:52:16','2023-09-05 18:52:16'),(8874,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T13:56:49-05:00\",\"transaction\":{\"id\":\"trgoa5xifofh9t9a8qbl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T13:56:04-05:00\",\"operation_date\":\"2023-09-05T13:56:04-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Londoño Carvajal (1035979642)\",\"error_message\":null,\"order_id\":\"CC58F7ABF0B0CF2D5AC95AB60E4F14E9_B1OK63RWFG_1693940158.2099\",\"due_date\":\"2023-09-06T01:56:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Elizabeth\",\"last_name\":\"Carvajal Zapata\",\"email\":\"eliza-0712@hotmail.com\",\"phone_number\":\"3193051274\",\"address\":null,\"creation_date\":\"2023-09-05T13:56:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgoa5xifofh9t9a8qbl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:56:50','2023-09-05 18:56:50'),(8875,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T13:58:47-05:00\",\"transaction\":{\"id\":\"trgoa5xifofh9t9a8qbl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142790887\",\"creation_date\":\"2023-09-05T13:56:04-05:00\",\"operation_date\":\"2023-09-05T13:58:18-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Londoño Carvajal (1035979642)\",\"error_message\":null,\"order_id\":\"CC58F7ABF0B0CF2D5AC95AB60E4F14E9_B1OK63RWFG_1693940158.2099\",\"due_date\":\"2023-09-06T01:56:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Elizabeth\",\"last_name\":\"Carvajal Zapata\",\"email\":\"eliza-0712@hotmail.com\",\"phone_number\":\"3193051274\",\"address\":null,\"creation_date\":\"2023-09-05T13:56:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 18:58:48','2023-09-05 18:58:48'),(8876,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T14:53:35-05:00\",\"transaction\":{\"id\":\"trwxnntqmc32gnimafnb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T14:51:54-05:00\",\"operation_date\":\"2023-09-05T14:51:54-05:00\",\"description\":\"Pago Mensual academia: Tomas Echavarria Urrea (1017933144)\",\"error_message\":null,\"order_id\":\"0DD1BC593A91620DAECF7723D2235624_4CS8T3L1EI_1693943508.3666\",\"due_date\":\"2023-09-06T02:51:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Urrea Uribe\",\"email\":\"aa.urrea@yahoo.com\",\"phone_number\":\"3155365343\",\"address\":null,\"creation_date\":\"2023-09-05T14:51:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwxnntqmc32gnimafnb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 19:53:36','2023-09-05 19:53:36'),(8877,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T14:54:58-05:00\",\"transaction\":{\"id\":\"trmbk8bk67ub7ugwisgp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T14:54:32-05:00\",\"operation_date\":\"2023-09-05T14:54:32-05:00\",\"description\":\"Pago Mensual academia: Samuel Osorio Ospina (1013349520)\",\"error_message\":null,\"order_id\":\"A1C5AFF9679455A233086E26B72B9A06_4R5EW6SCUK_1693943667.8884\",\"due_date\":\"2023-09-06T02:54:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Osorio Ospina\",\"email\":\"daniosorio3004@gmail.com\",\"phone_number\":\"3146288545\",\"address\":null,\"creation_date\":\"2023-09-05T14:54:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmbk8bk67ub7ugwisgp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 19:54:59','2023-09-05 19:54:59'),(8878,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T14:56:12-05:00\",\"transaction\":{\"id\":\"trmbk8bk67ub7ugwisgp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142955496\",\"creation_date\":\"2023-09-05T14:54:32-05:00\",\"operation_date\":\"2023-09-05T14:55:55-05:00\",\"description\":\"Pago Mensual academia: Samuel Osorio Ospina (1013349520)\",\"error_message\":null,\"order_id\":\"A1C5AFF9679455A233086E26B72B9A06_4R5EW6SCUK_1693943667.8884\",\"due_date\":\"2023-09-06T02:54:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Osorio Ospina\",\"email\":\"daniosorio3004@gmail.com\",\"phone_number\":\"3146288545\",\"address\":null,\"creation_date\":\"2023-09-05T14:54:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 19:56:13','2023-09-05 19:56:13'),(8879,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T14:56:41-05:00\",\"transaction\":{\"id\":\"trwxnntqmc32gnimafnb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142951293\",\"creation_date\":\"2023-09-05T14:51:54-05:00\",\"operation_date\":\"2023-09-05T14:55:45-05:00\",\"description\":\"Pago Mensual academia: Tomas Echavarria Urrea (1017933144)\",\"error_message\":null,\"order_id\":\"0DD1BC593A91620DAECF7723D2235624_4CS8T3L1EI_1693943508.3666\",\"due_date\":\"2023-09-06T02:51:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Urrea Uribe\",\"email\":\"aa.urrea@yahoo.com\",\"phone_number\":\"3155365343\",\"address\":null,\"creation_date\":\"2023-09-05T14:51:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 19:56:42','2023-09-05 19:56:42'),(8880,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T15:09:02-05:00\",\"transaction\":{\"id\":\"tr9djzrlodt1ellhzdvn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T15:07:40-05:00\",\"operation_date\":\"2023-09-05T15:07:40-05:00\",\"description\":\"Pago Mensual academia: Emilio Carvajal Velasquez (1038266576)\",\"error_message\":null,\"order_id\":\"B5A1D925221B37E2E399F7B319038BA0_2EWZCGOPK0_1693944448.4499\",\"due_date\":\"2023-09-06T03:07:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"steven\",\"last_name\":\"carvajal\",\"email\":\"teven1508@icloud.com\",\"phone_number\":\"3007549588\",\"address\":null,\"creation_date\":\"2023-09-05T15:07:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9djzrlodt1ellhzdvn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:09:03','2023-09-05 20:09:03'),(8881,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T14:12:15-06:00\",\"transaction\":{\"id\":\"tr9djzrlodt1ellhzdvn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"142998678\",\"creation_date\":\"2023-09-05T15:07:40-06:00\",\"operation_date\":\"2023-09-05T15:10:03-06:00\",\"description\":\"Pago Mensual academia: Emilio Carvajal Velasquez (1038266576)\",\"error_message\":null,\"order_id\":\"B5A1D925221B37E2E399F7B319038BA0_2EWZCGOPK0_1693944448.4499\",\"due_date\":\"2023-09-06T03:07:40-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"steven\",\"last_name\":\"carvajal\",\"email\":\"teven1508@icloud.com\",\"phone_number\":\"3007549588\",\"address\":null,\"creation_date\":\"2023-09-05T15:07:40-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:12:16','2023-09-05 20:12:16'),(8882,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T15:14:19-05:00\",\"transaction\":{\"id\":\"trumpt64nmndbkqojcez\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T15:13:04-05:00\",\"operation_date\":\"2023-09-05T15:13:04-05:00\",\"description\":\"Pago Mensual academia: Matias García Góez (1013347301)\",\"error_message\":null,\"order_id\":\"DF42E2244C97A0D80D565AE8176D3351_ESQ6ZMNTI0_1693944781.1963\",\"due_date\":\"2023-09-06T03:13:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"García Góez\",\"email\":\"mgoezcalle@gmail.com\",\"phone_number\":\"3104605269\",\"address\":null,\"creation_date\":\"2023-09-05T15:13:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trumpt64nmndbkqojcez/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:14:20','2023-09-05 20:14:20'),(8883,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T14:15:22-06:00\",\"transaction\":{\"id\":\"trumpt64nmndbkqojcez\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143014957\",\"creation_date\":\"2023-09-05T15:13:04-06:00\",\"operation_date\":\"2023-09-05T15:15:09-06:00\",\"description\":\"Pago Mensual academia: Matias García Góez (1013347301)\",\"error_message\":null,\"order_id\":\"DF42E2244C97A0D80D565AE8176D3351_ESQ6ZMNTI0_1693944781.1963\",\"due_date\":\"2023-09-06T03:13:04-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Matias\",\"last_name\":\"García Góez\",\"email\":\"mgoezcalle@gmail.com\",\"phone_number\":\"3104605269\",\"address\":null,\"creation_date\":\"2023-09-05T15:13:04-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:15:23','2023-09-05 20:15:23'),(8884,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T15:18:03-05:00\",\"transaction\":{\"id\":\"trci5lvckvt07clfdguw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T15:16:18-05:00\",\"operation_date\":\"2023-09-05T15:16:18-05:00\",\"description\":\"Pago Mensual academia: Thiago Cespedes Perez (1023559490)\",\"error_message\":null,\"order_id\":\"51F3EB940FD73A19119534C063967BFF_XWVCO76T1Q_1693944974.987\",\"due_date\":\"2023-09-06T03:16:18-05:00\",\"amount\":47500.00,\"customer\":{\"name\":\"Yenifer\",\"last_name\":\"Perez Acero\",\"email\":\"jennifer_perez_a@hotmail.com\",\"phone_number\":\"3216136820\",\"address\":null,\"creation_date\":\"2023-09-05T15:16:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trci5lvckvt07clfdguw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:18:04','2023-09-05 20:18:04'),(8885,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T15:21:03-05:00\",\"transaction\":{\"id\":\"trci5lvckvt07clfdguw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143026409\",\"creation_date\":\"2023-09-05T15:16:18-05:00\",\"operation_date\":\"2023-09-05T15:19:23-05:00\",\"description\":\"Pago Mensual academia: Thiago Cespedes Perez (1023559490)\",\"error_message\":null,\"order_id\":\"51F3EB940FD73A19119534C063967BFF_XWVCO76T1Q_1693944974.987\",\"due_date\":\"2023-09-06T03:16:18-05:00\",\"amount\":47500.00,\"customer\":{\"name\":\"Yenifer\",\"last_name\":\"Perez Acero\",\"email\":\"jennifer_perez_a@hotmail.com\",\"phone_number\":\"3216136820\",\"address\":null,\"creation_date\":\"2023-09-05T15:16:18-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:21:04','2023-09-05 20:21:04'),(8886,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T15:21:21-05:00\",\"transaction\":{\"id\":\"tro3plrhfminf3qh6wgs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T15:20:37-05:00\",\"operation_date\":\"2023-09-05T15:20:37-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Garcia Bermudez (1035004171)\",\"error_message\":null,\"order_id\":\"8DCF2420E78A64333A59674678FB283B_XPV4OGJ5HM_1693945230.9142\",\"due_date\":\"2023-09-06T03:20:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Mabel\",\"last_name\":\"Bermudez\",\"email\":\"mabelb0820@gmail.com\",\"phone_number\":\"304291429\",\"address\":null,\"creation_date\":\"2023-09-05T15:20:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro3plrhfminf3qh6wgs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:21:22','2023-09-05 20:21:22'),(8887,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T15:22:30-05:00\",\"transaction\":{\"id\":\"tro3plrhfminf3qh6wgs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143036555\",\"creation_date\":\"2023-09-05T15:20:37-05:00\",\"operation_date\":\"2023-09-05T15:22:20-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Garcia Bermudez (1035004171)\",\"error_message\":null,\"order_id\":\"8DCF2420E78A64333A59674678FB283B_XPV4OGJ5HM_1693945230.9142\",\"due_date\":\"2023-09-06T03:20:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Mabel\",\"last_name\":\"Bermudez\",\"email\":\"mabelb0820@gmail.com\",\"phone_number\":\"304291429\",\"address\":null,\"creation_date\":\"2023-09-05T15:20:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:22:30','2023-09-05 20:22:30'),(8888,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T15:23:25-05:00\",\"transaction\":{\"id\":\"traqaaauprrn4yoki7co\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T15:22:51-05:00\",\"operation_date\":\"2023-09-05T15:22:51-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Garcia Bermudez (1035004171)\",\"error_message\":null,\"order_id\":\"311ABB492A69FE7DA41BE858FDD2AAE8_8G1SR72FLP_1693945366.5819\",\"due_date\":\"2023-09-06T03:22:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Mabel\",\"last_name\":\"Bermudez\",\"email\":\"mabelb0820@gmail.com\",\"phone_number\":\"304291429\",\"address\":null,\"creation_date\":\"2023-09-05T15:22:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traqaaauprrn4yoki7co/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:23:26','2023-09-05 20:23:26'),(8889,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T15:24:40-05:00\",\"transaction\":{\"id\":\"traqaaauprrn4yoki7co\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143042774\",\"creation_date\":\"2023-09-05T15:22:51-05:00\",\"operation_date\":\"2023-09-05T15:24:34-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Garcia Bermudez (1035004171)\",\"error_message\":null,\"order_id\":\"311ABB492A69FE7DA41BE858FDD2AAE8_8G1SR72FLP_1693945366.5819\",\"due_date\":\"2023-09-06T03:22:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Mabel\",\"last_name\":\"Bermudez\",\"email\":\"mabelb0820@gmail.com\",\"phone_number\":\"304291429\",\"address\":null,\"creation_date\":\"2023-09-05T15:22:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:24:40','2023-09-05 20:24:40'),(8890,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T15:29:27-05:00\",\"transaction\":{\"id\":\"tra1gty5gtp7dw9lzamn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T15:28:40-05:00\",\"operation_date\":\"2023-09-05T15:28:40-05:00\",\"description\":\"Pago Mensual academia: Martín Cardona Lopera (1020327124)\",\"error_message\":null,\"order_id\":\"5DB60C98209913790E4FCCE4597EE37C_AXURHM01IK_1693945714.6211\",\"due_date\":\"2023-09-06T03:28:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andrés\",\"last_name\":\"Cardona\",\"email\":\"andres.cardona@hotmail.com\",\"phone_number\":\"3176430484\",\"address\":null,\"creation_date\":\"2023-09-05T15:28:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tra1gty5gtp7dw9lzamn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:29:27','2023-09-05 20:29:27'),(8891,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T15:30:27-05:00\",\"transaction\":{\"id\":\"tra1gty5gtp7dw9lzamn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143061274\",\"creation_date\":\"2023-09-05T15:28:40-05:00\",\"operation_date\":\"2023-09-05T15:30:21-05:00\",\"description\":\"Pago Mensual academia: Martín Cardona Lopera (1020327124)\",\"error_message\":null,\"order_id\":\"5DB60C98209913790E4FCCE4597EE37C_AXURHM01IK_1693945714.6211\",\"due_date\":\"2023-09-06T03:28:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andrés\",\"last_name\":\"Cardona\",\"email\":\"andres.cardona@hotmail.com\",\"phone_number\":\"3176430484\",\"address\":null,\"creation_date\":\"2023-09-05T15:28:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:30:28','2023-09-05 20:30:28'),(8892,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T15:37:58-05:00\",\"transaction\":{\"id\":\"triwmxzllaxy8x3rmwlt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T15:36:51-05:00\",\"operation_date\":\"2023-09-05T15:36:51-05:00\",\"description\":\"Pago Mensual academia: julian david uribe bustamante (1035003281)\",\"error_message\":null,\"order_id\":\"9649DEC6196D730C5E024F204477D8D1_6WO0KXINER_1693946189.4395\",\"due_date\":\"2023-09-06T03:36:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"leidy juliana\",\"last_name\":\"bustamante restrepo\",\"email\":\"leidy_juli@hotmail.com\",\"phone_number\":\"3042901112\",\"address\":null,\"creation_date\":\"2023-09-05T15:36:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triwmxzllaxy8x3rmwlt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:37:59','2023-09-05 20:37:59'),(8893,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T14:39:22-06:00\",\"transaction\":{\"id\":\"triwmxzllaxy8x3rmwlt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143087334\",\"creation_date\":\"2023-09-05T15:36:51-06:00\",\"operation_date\":\"2023-09-05T15:38:47-06:00\",\"description\":\"Pago Mensual academia: julian david uribe bustamante (1035003281)\",\"error_message\":null,\"order_id\":\"9649DEC6196D730C5E024F204477D8D1_6WO0KXINER_1693946189.4395\",\"due_date\":\"2023-09-06T03:36:51-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"leidy juliana\",\"last_name\":\"bustamante restrepo\",\"email\":\"leidy_juli@hotmail.com\",\"phone_number\":\"3042901112\",\"address\":null,\"creation_date\":\"2023-09-05T15:36:51-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 20:39:23','2023-09-05 20:39:23'),(8894,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T16:54:37-05:00\",\"transaction\":{\"id\":\"trymogijdhqp3btodpbs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T16:53:50-05:00\",\"operation_date\":\"2023-09-05T16:53:50-05:00\",\"description\":\"Pago Mensual academia: emanuel zuluaga henao (1027806389)\",\"error_message\":null,\"order_id\":\"DC0439CAEB74FFC2795571AF07A7EAB1_GZR6EV4D5T_1693950826.3329\",\"due_date\":\"2023-09-06T04:53:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"emanuel\",\"last_name\":\"zuluaga henao\",\"email\":\"jackehc03@gmail.com\",\"phone_number\":\"3215387431\",\"address\":null,\"creation_date\":\"2023-09-05T16:53:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trymogijdhqp3btodpbs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 21:54:38','2023-09-05 21:54:38'),(8895,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T15:57:29-06:00\",\"transaction\":{\"id\":\"trymogijdhqp3btodpbs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143306576\",\"creation_date\":\"2023-09-05T16:53:50-06:00\",\"operation_date\":\"2023-09-05T16:55:20-06:00\",\"description\":\"Pago Mensual academia: emanuel zuluaga henao (1027806389)\",\"error_message\":null,\"order_id\":\"DC0439CAEB74FFC2795571AF07A7EAB1_GZR6EV4D5T_1693950826.3329\",\"due_date\":\"2023-09-06T04:53:50-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"emanuel\",\"last_name\":\"zuluaga henao\",\"email\":\"jackehc03@gmail.com\",\"phone_number\":\"3215387431\",\"address\":null,\"creation_date\":\"2023-09-05T16:53:50-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 21:57:30','2023-09-05 21:57:30'),(8896,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  874\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T17:34:58-05:00\",\"transaction\":{\"id\":\"trmd3qvlidujn18esj8s\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T17:34:07-05:00\",\"operation_date\":\"2023-09-05T17:34:07-05:00\",\"description\":\"Pago Mensual academia: Tomas Aguirre Corrales (1186463976)\",\"error_message\":null,\"order_id\":\"_1693953242.8998\",\"due_date\":\"2023-09-06T05:34:07-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Corrales\",\"email\":\"linacvelez12@gmail.com\",\"phone_number\":\"3102134431\",\"address\":null,\"creation_date\":\"2023-09-05T17:34:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmd3qvlidujn18esj8s/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 22:34:59','2023-09-05 22:34:59'),(8897,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  757\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T17:36:29-05:00\",\"transaction\":{\"id\":\"trmd3qvlidujn18esj8s\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143393002\",\"creation_date\":\"2023-09-05T17:34:07-05:00\",\"operation_date\":\"2023-09-05T17:36:20-05:00\",\"description\":\"Pago Mensual academia: Tomas Aguirre Corrales (1186463976)\",\"error_message\":null,\"order_id\":\"_1693953242.8998\",\"due_date\":\"2023-09-06T05:34:07-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Corrales\",\"email\":\"linacvelez12@gmail.com\",\"phone_number\":\"3102134431\",\"address\":null,\"creation_date\":\"2023-09-05T17:34:07-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 22:36:30','2023-09-05 22:36:30'),(8898,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T18:15:28-05:00\",\"transaction\":{\"id\":\"truobupeayaktirydbya\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T18:13:05-05:00\",\"operation_date\":\"2023-09-05T18:13:05-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"13FE9D84310E77F13A6D184DBF1232F3_E-64F7B5EE-13_1693955572.8136\",\"due_date\":\"2023-09-06T06:13:05-05:00\",\"amount\":57000.00,\"customer\":{\"name\":\"Deivan Alfredo\",\"last_name\":\"Alvis Moreno\",\"email\":\"dalvis8@outlook.com\",\"phone_number\":\"3004414991\",\"address\":null,\"creation_date\":\"2023-09-05T18:13:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/truobupeayaktirydbya/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 23:15:29','2023-09-05 23:15:29'),(8899,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  781\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T18:17:37-05:00\",\"transaction\":{\"id\":\"truobupeayaktirydbya\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143479278\",\"creation_date\":\"2023-09-05T18:13:05-05:00\",\"operation_date\":\"2023-09-05T00:00:00-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"13FE9D84310E77F13A6D184DBF1232F3_E-64F7B5EE-13_1693955572.8136\",\"due_date\":\"2023-09-06T06:13:05-05:00\",\"amount\":57000.00,\"customer\":{\"name\":\"Deivan Alfredo\",\"last_name\":\"Alvis Moreno\",\"email\":\"dalvis8@outlook.com\",\"phone_number\":\"3004414991\",\"address\":null,\"creation_date\":\"2023-09-05T18:13:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 23:17:38','2023-09-05 23:17:38'),(8900,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T18:53:40-05:00\",\"transaction\":{\"id\":\"trahphu90cgv2alkvxob\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T18:52:41-05:00\",\"operation_date\":\"2023-09-05T18:52:41-05:00\",\"description\":\"Pago Mensual academia: Cristobal Giraldo Ospina (1034993085)\",\"error_message\":null,\"order_id\":\"CBFE5681369338A48E2D1B63998099D6_4YQD31LPBA_1693957957.3224\",\"due_date\":\"2023-09-06T06:52:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina \",\"last_name\":\"Ospina\",\"email\":\"carospina@hotmail.com\",\"phone_number\":\"3173659297\",\"address\":null,\"creation_date\":\"2023-09-05T18:52:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trahphu90cgv2alkvxob/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 23:53:40','2023-09-05 23:53:40'),(8901,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T17:54:23-06:00\",\"transaction\":{\"id\":\"trahphu90cgv2alkvxob\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143562283\",\"creation_date\":\"2023-09-05T18:52:41-06:00\",\"operation_date\":\"2023-09-05T18:54:20-06:00\",\"description\":\"Pago Mensual academia: Cristobal Giraldo Ospina (1034993085)\",\"error_message\":null,\"order_id\":\"CBFE5681369338A48E2D1B63998099D6_4YQD31LPBA_1693957957.3224\",\"due_date\":\"2023-09-06T06:52:41-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina \",\"last_name\":\"Ospina\",\"email\":\"carospina@hotmail.com\",\"phone_number\":\"3173659297\",\"address\":null,\"creation_date\":\"2023-09-05T18:52:41-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-05 23:54:23','2023-09-05 23:54:23'),(8902,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T19:28:21-05:00\",\"transaction\":{\"id\":\"trgc81qbhyvtndv2so3e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T19:26:56-05:00\",\"operation_date\":\"2023-09-05T19:26:56-05:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"C2C2A04512B35D13102459F8784F1A2D_3IAJXV8WUS_1693960002.905\",\"due_date\":\"2023-09-06T07:26:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matías\",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-09-05T19:26:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgc81qbhyvtndv2so3e/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 00:28:22','2023-09-06 00:28:22'),(8903,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  865\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-05T18:51:10-06:00\",\"transaction\":{\"id\":\"trgc81qbhyvtndv2so3e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-05T19:26:56-06:00\",\"operation_date\":\"2023-09-05T19:28:27-06:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"C2C2A04512B35D13102459F8784F1A2D_3IAJXV8WUS_1693960002.905\",\"due_date\":\"2023-09-06T07:26:56-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matías\",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-09-05T19:26:56-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 00:51:11','2023-09-06 00:51:11'),(8904,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  865\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-05T18:54:09-06:00\",\"transaction\":{\"id\":\"trgc81qbhyvtndv2so3e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-05T19:26:56-06:00\",\"operation_date\":\"2023-09-05T19:28:27-06:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"C2C2A04512B35D13102459F8784F1A2D_3IAJXV8WUS_1693960002.905\",\"due_date\":\"2023-09-06T07:26:56-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Daniel Matías\",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3246084083\",\"address\":null,\"creation_date\":\"2023-09-05T19:26:56-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 00:54:10','2023-09-06 00:54:10'),(8905,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T20:02:31-05:00\",\"transaction\":{\"id\":\"trekyhckt6xchsrq35xh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T20:00:22-05:00\",\"operation_date\":\"2023-09-05T20:00:22-05:00\",\"description\":\"Pago Mensual academia: Emanuel Giraldo Hernández (1192466344)\",\"error_message\":null,\"order_id\":\"2DA6CC4A5D3A7EE43C1B3AF99267ED17_59R8XKTLHW_1693962001.1143\",\"due_date\":\"2023-09-06T08:00:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Giraldo Hernandez\",\"email\":\"dianamariahernandezgallon@gmail.com\",\"phone_number\":\"3006040597\",\"address\":null,\"creation_date\":\"2023-09-05T20:00:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trekyhckt6xchsrq35xh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 01:02:32','2023-09-06 01:02:32'),(8906,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  829\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T19:06:13-06:00\",\"transaction\":{\"id\":\"trekyhckt6xchsrq35xh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143710070\",\"creation_date\":\"2023-09-05T20:00:22-06:00\",\"operation_date\":\"2023-09-05T20:03:46-06:00\",\"description\":\"Pago Mensual academia: Emanuel Giraldo Hernández (1192466344)\",\"error_message\":null,\"order_id\":\"2DA6CC4A5D3A7EE43C1B3AF99267ED17_59R8XKTLHW_1693962001.1143\",\"due_date\":\"2023-09-06T08:00:22-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Giraldo Hernandez\",\"email\":\"dianamariahernandezgallon@gmail.com\",\"phone_number\":\"3006040597\",\"address\":null,\"creation_date\":\"2023-09-05T20:00:22-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 01:06:13','2023-09-06 01:06:13'),(8907,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T20:23:41-05:00\",\"transaction\":{\"id\":\"trdkmkytgpu77jgjwnog\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T20:22:04-05:00\",\"operation_date\":\"2023-09-05T20:22:04-05:00\",\"description\":\"Pago Mensual academia: Samuel Lopez Restrepo (1034999941)\",\"error_message\":null,\"order_id\":\"FB0650FF38F84D526883336FF5119DC0_RELHS9W24G_1693963320.7693\",\"due_date\":\"2023-09-06T08:22:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"marcela \",\"last_name\":\"Restrepo\",\"email\":\"marcera@gmail.com\",\"phone_number\":\"3174313093\",\"address\":null,\"creation_date\":\"2023-09-05T20:22:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdkmkytgpu77jgjwnog/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 01:23:42','2023-09-06 01:23:42'),(8908,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T20:25:01-05:00\",\"transaction\":{\"id\":\"trdkmkytgpu77jgjwnog\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143755754\",\"creation_date\":\"2023-09-05T20:22:04-05:00\",\"operation_date\":\"2023-09-05T20:24:43-05:00\",\"description\":\"Pago Mensual academia: Samuel Lopez Restrepo (1034999941)\",\"error_message\":null,\"order_id\":\"FB0650FF38F84D526883336FF5119DC0_RELHS9W24G_1693963320.7693\",\"due_date\":\"2023-09-06T08:22:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"marcela \",\"last_name\":\"Restrepo\",\"email\":\"marcera@gmail.com\",\"phone_number\":\"3174313093\",\"address\":null,\"creation_date\":\"2023-09-05T20:22:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 01:25:01','2023-09-06 01:25:01'),(8909,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T20:56:16-05:00\",\"transaction\":{\"id\":\"trkepvi0haqo43tbyhwq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T20:55:26-05:00\",\"operation_date\":\"2023-09-05T20:55:26-05:00\",\"description\":\"Pago Mensual academia: andres felipe jimenez balbin (1017938453)\",\"error_message\":null,\"order_id\":\"51DA85A3C3DFA1F360B48852B64218B2_9OZMXPTGRU_1693965323.0754\",\"due_date\":\"2023-09-06T08:55:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"olga yaned\",\"last_name\":\"balbin cossio\",\"email\":\"olgandy.2019@hotmail.com\",\"phone_number\":\"3167851655\",\"address\":null,\"creation_date\":\"2023-09-05T20:55:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkepvi0haqo43tbyhwq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 01:56:17','2023-09-06 01:56:17'),(8910,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T20:57:59-05:00\",\"transaction\":{\"id\":\"trkepvi0haqo43tbyhwq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143824496\",\"creation_date\":\"2023-09-05T20:55:26-05:00\",\"operation_date\":\"2023-09-05T20:57:42-05:00\",\"description\":\"Pago Mensual academia: andres felipe jimenez balbin (1017938453)\",\"error_message\":null,\"order_id\":\"51DA85A3C3DFA1F360B48852B64218B2_9OZMXPTGRU_1693965323.0754\",\"due_date\":\"2023-09-06T08:55:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"olga yaned\",\"last_name\":\"balbin cossio\",\"email\":\"olgandy.2019@hotmail.com\",\"phone_number\":\"3167851655\",\"address\":null,\"creation_date\":\"2023-09-05T20:55:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 01:57:59','2023-09-06 01:57:59'),(8911,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T21:19:24-05:00\",\"transaction\":{\"id\":\"trrhyzpabmvvl5lcebvy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T21:18:02-05:00\",\"operation_date\":\"2023-09-05T21:18:02-05:00\",\"description\":\"Pago Mensual academia: Emiliano Morales Rios (1038874755)\",\"error_message\":null,\"order_id\":\"E8D66338FAB3727E34A9179ED8804F64_SKQH7AFG2Z_1693966678.9742\",\"due_date\":\"2023-09-06T09:18:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Morales Rios\",\"email\":\"ccmorales@noel.com.co\",\"phone_number\":\"3136979739\",\"address\":null,\"creation_date\":\"2023-09-05T21:18:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrhyzpabmvvl5lcebvy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:19:24','2023-09-06 02:19:24'),(8912,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T21:21:09-05:00\",\"transaction\":{\"id\":\"tr3vdc5xdfy1tgbi5p9t\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T21:19:30-05:00\",\"operation_date\":\"2023-09-05T21:19:30-05:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"C2C2A04512B35D13102459F8784F1A2D_3IAJXV8WUS_1693966768.0503\",\"due_date\":\"2023-09-06T09:19:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matias\",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3225358516\",\"address\":null,\"creation_date\":\"2023-09-05T21:19:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3vdc5xdfy1tgbi5p9t/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:21:10','2023-09-06 02:21:10'),(8913,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T21:21:57-05:00\",\"transaction\":{\"id\":\"trpjzlr2cj1lzxzgh5t5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-05T21:21:56-05:00\",\"operation_date\":\"2023-09-05T21:21:56-05:00\",\"description\":\"Pago Mensual academia: Simón Gonzalez Murillo (1022148437)\",\"error_message\":null,\"order_id\":\"5C8E07660E3000F141DDA8B83107ED6E_O6BPG4821V_1693966914.2979\",\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Gonzalez Murillo\",\"email\":\"negris1075@gmail.com\",\"phone_number\":\"3206407049\",\"address\":null,\"creation_date\":\"2023-09-05T21:21:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpjzlr2cj1lzxzgh5t5/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-06 02:21:57','2023-09-06 02:21:57'),(8914,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1154\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T21:23:03-05:00\",\"transaction\":{\"id\":\"trpjzlr2cj1lzxzgh5t5\",\"authorization\":\"212302\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-05T21:21:56-05:00\",\"operation_date\":\"2023-09-05T21:23:02-05:00\",\"description\":\"Pago Mensual academia: Simón Gonzalez Murillo (1022148437)\",\"error_message\":null,\"order_id\":\"5C8E07660E3000F141DDA8B83107ED6E_O6BPG4821V_1693966914.2979\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX7134\",\"holder_name\":\"alba lucia murillo tapias \",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Gonzalez Murillo\",\"email\":\"negris1075@gmail.com\",\"phone_number\":\"3206407049\",\"address\":null,\"creation_date\":\"2023-09-05T21:21:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpjzlr2cj1lzxzgh5t5/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-06 02:23:03','2023-09-06 02:23:03'),(8915,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T21:23:24-05:00\",\"transaction\":{\"id\":\"trm91ujtp6ge6ay3pwi6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T21:22:24-05:00\",\"operation_date\":\"2023-09-05T21:22:24-05:00\",\"description\":\"Pago Mensual academia: Josué Blandón Ospina (1036454829)\",\"error_message\":null,\"order_id\":\"EE188463935A061DEE6DF8BF449CB882_G63WKDFE29_1693966940.7997\",\"due_date\":\"2023-09-06T09:22:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Josue\",\"last_name\":\"Blandon Ospina\",\"email\":\"gospinab@gmail.com\",\"phone_number\":\"3003642004\",\"address\":null,\"creation_date\":\"2023-09-05T21:22:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm91ujtp6ge6ay3pwi6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:23:24','2023-09-06 02:23:24'),(8916,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T20:24:16-06:00\",\"transaction\":{\"id\":\"tr3vdc5xdfy1tgbi5p9t\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143874963\",\"creation_date\":\"2023-09-05T21:19:30-06:00\",\"operation_date\":\"2023-09-05T21:23:11-06:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"C2C2A04512B35D13102459F8784F1A2D_3IAJXV8WUS_1693966768.0503\",\"due_date\":\"2023-09-06T09:19:30-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matias\",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3225358516\",\"address\":null,\"creation_date\":\"2023-09-05T21:19:30-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:24:16','2023-09-06 02:24:16'),(8917,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T20:27:17-06:00\",\"transaction\":{\"id\":\"tr3vdc5xdfy1tgbi5p9t\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143874963\",\"creation_date\":\"2023-09-05T21:19:30-06:00\",\"operation_date\":\"2023-09-05T21:23:11-06:00\",\"description\":\"Pago Mensual academia: Daniel Matias Caro Jimenez (1011403894)\",\"error_message\":null,\"order_id\":\"C2C2A04512B35D13102459F8784F1A2D_3IAJXV8WUS_1693966768.0503\",\"due_date\":\"2023-09-06T09:19:30-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Matias\",\"last_name\":\"Caro Jimenez \",\"email\":\"daniela.jimenezri@amigo.edu.co\",\"phone_number\":\"3225358516\",\"address\":null,\"creation_date\":\"2023-09-05T21:19:30-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:27:17','2023-09-06 02:27:17'),(8918,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T21:33:37-05:00\",\"transaction\":{\"id\":\"tr4ewjrfbw6ub5oxfibj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T21:31:51-05:00\",\"operation_date\":\"2023-09-05T21:31:51-05:00\",\"description\":\"Pago Mensual academia: santiago lotero castro (1034923449)\",\"error_message\":null,\"order_id\":\"B5B8C484824D8A06F4F3D570BC420313_4GP2ITDABH_1693967500.3621\",\"due_date\":\"2023-09-06T09:31:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres\",\"last_name\":\"Lotero\",\"email\":\"andresloterogalvis04@gmail.com\",\"phone_number\":\"3147044483\",\"address\":null,\"creation_date\":\"2023-09-05T21:31:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4ewjrfbw6ub5oxfibj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:33:38','2023-09-06 02:33:38'),(8919,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T21:35:18-05:00\",\"transaction\":{\"id\":\"tr4ewjrfbw6ub5oxfibj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143900194\",\"creation_date\":\"2023-09-05T21:31:51-05:00\",\"operation_date\":\"2023-09-05T00:00:00-05:00\",\"description\":\"Pago Mensual academia: santiago lotero castro (1034923449)\",\"error_message\":null,\"order_id\":\"B5B8C484824D8A06F4F3D570BC420313_4GP2ITDABH_1693967500.3621\",\"due_date\":\"2023-09-06T09:31:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres\",\"last_name\":\"Lotero\",\"email\":\"andresloterogalvis04@gmail.com\",\"phone_number\":\"3147044483\",\"address\":null,\"creation_date\":\"2023-09-05T21:31:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:35:18','2023-09-06 02:35:18'),(8920,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  842\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-05T20:36:14-06:00\",\"transaction\":{\"id\":\"trm91ujtp6ge6ay3pwi6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-05T21:22:24-06:00\",\"operation_date\":\"2023-09-05T21:22:24-06:00\",\"description\":\"Pago Mensual academia: Josué Blandón Ospina (1036454829)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"EE188463935A061DEE6DF8BF449CB882_G63WKDFE29_1693966940.7997\",\"due_date\":\"2023-09-06T09:22:24-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Josue\",\"last_name\":\"Blandon Ospina\",\"email\":\"gospinab@gmail.com\",\"phone_number\":\"3003642004\",\"address\":null,\"creation_date\":\"2023-09-05T21:22:24-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:36:14','2023-09-06 02:36:14'),(8921,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T21:37:08-05:00\",\"transaction\":{\"id\":\"trzdrfdhutesqlofje9t\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T21:35:08-05:00\",\"operation_date\":\"2023-09-05T21:35:08-05:00\",\"description\":\"Pago Mensual academia: Emiliano Soto Cardona (1027663640)\",\"error_message\":null,\"order_id\":\"4175F2EBB265D58C6D8877841D016D08_KXR162HOGQ_1693967703.6892\",\"due_date\":\"2023-09-06T09:35:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Milena\",\"last_name\":\"Cardona Rios\",\"email\":\"milenacardona614@gmail.com\",\"phone_number\":\"3046204578\",\"address\":null,\"creation_date\":\"2023-09-05T21:35:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzdrfdhutesqlofje9t/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:37:09','2023-09-06 02:37:09'),(8922,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T21:41:30-05:00\",\"transaction\":{\"id\":\"trzdrfdhutesqlofje9t\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143907176\",\"creation_date\":\"2023-09-05T21:35:08-05:00\",\"operation_date\":\"2023-09-05T21:41:17-05:00\",\"description\":\"Pago Mensual academia: Emiliano Soto Cardona (1027663640)\",\"error_message\":null,\"order_id\":\"4175F2EBB265D58C6D8877841D016D08_KXR162HOGQ_1693967703.6892\",\"due_date\":\"2023-09-06T09:35:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Milena\",\"last_name\":\"Cardona Rios\",\"email\":\"milenacardona614@gmail.com\",\"phone_number\":\"3046204578\",\"address\":null,\"creation_date\":\"2023-09-05T21:35:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:41:31','2023-09-06 02:41:31'),(8923,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  845\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-05T20:42:10-06:00\",\"transaction\":{\"id\":\"trrhyzpabmvvl5lcebvy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-05T21:18:02-06:00\",\"operation_date\":\"2023-09-05T21:19:30-06:00\",\"description\":\"Pago Mensual academia: Emiliano Morales Rios (1038874755)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"E8D66338FAB3727E34A9179ED8804F64_SKQH7AFG2Z_1693966678.9742\",\"due_date\":\"2023-09-06T09:18:02-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Morales Rios\",\"email\":\"ccmorales@noel.com.co\",\"phone_number\":\"3136979739\",\"address\":null,\"creation_date\":\"2023-09-05T21:18:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:42:10','2023-09-06 02:42:10'),(8924,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T21:45:05-05:00\",\"transaction\":{\"id\":\"trij4xfzl6iu7yadblrj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T21:43:58-05:00\",\"operation_date\":\"2023-09-05T21:43:58-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Coronel Urrego (1198213007)\",\"error_message\":null,\"order_id\":\"B957D47523C4E92A822CC38703A3BCC3_WBXDLTVFR2_1693968230.6486\",\"due_date\":\"2023-09-06T09:43:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luz marina\",\"last_name\":\"urrego ibarra\",\"email\":\"mariurrego05@gmail.com\",\"phone_number\":\"3148346797\",\"address\":null,\"creation_date\":\"2023-09-05T21:43:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trij4xfzl6iu7yadblrj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:45:06','2023-09-06 02:45:06'),(8925,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T20:48:17-06:00\",\"transaction\":{\"id\":\"trij4xfzl6iu7yadblrj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143922337\",\"creation_date\":\"2023-09-05T21:43:58-06:00\",\"operation_date\":\"2023-09-05T21:47:10-06:00\",\"description\":\"Pago Mensual academia: Emmanuel Coronel Urrego (1198213007)\",\"error_message\":null,\"order_id\":\"B957D47523C4E92A822CC38703A3BCC3_WBXDLTVFR2_1693968230.6486\",\"due_date\":\"2023-09-06T09:43:58-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luz marina\",\"last_name\":\"urrego ibarra\",\"email\":\"mariurrego05@gmail.com\",\"phone_number\":\"3148346797\",\"address\":null,\"creation_date\":\"2023-09-05T21:43:58-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 02:48:18','2023-09-06 02:48:18'),(8926,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T22:28:27-05:00\",\"transaction\":{\"id\":\"tr81htogbz7dfxmbtmku\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T22:26:52-05:00\",\"operation_date\":\"2023-09-05T22:26:52-05:00\",\"description\":\"Pago Mensual academia: SAMUEL GOMEZ RODAS (1021936511)\",\"error_message\":null,\"order_id\":\"FD5AC6CE504B74460B93610F39E481F7_CUYFJ5D9B4_1693970807.2197\",\"due_date\":\"2023-09-06T10:26:52-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"VICTOR HUGO\",\"last_name\":\"GOMEZ DAVID\",\"email\":\"victor.gomez82@hotmail.com\",\"phone_number\":\"3006949134\",\"address\":null,\"creation_date\":\"2023-09-05T22:26:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr81htogbz7dfxmbtmku/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 03:28:28','2023-09-06 03:28:28'),(8927,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T21:30:13-06:00\",\"transaction\":{\"id\":\"tr81htogbz7dfxmbtmku\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"143992403\",\"creation_date\":\"2023-09-05T22:26:52-06:00\",\"operation_date\":\"2023-09-05T22:29:52-06:00\",\"description\":\"Pago Mensual academia: SAMUEL GOMEZ RODAS (1021936511)\",\"error_message\":null,\"order_id\":\"FD5AC6CE504B74460B93610F39E481F7_CUYFJ5D9B4_1693970807.2197\",\"due_date\":\"2023-09-06T10:26:52-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"VICTOR HUGO\",\"last_name\":\"GOMEZ DAVID\",\"email\":\"victor.gomez82@hotmail.com\",\"phone_number\":\"3006949134\",\"address\":null,\"creation_date\":\"2023-09-05T22:26:52-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 03:30:14','2023-09-06 03:30:14'),(8928,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-05T22:49:15-05:00\",\"transaction\":{\"id\":\"trgeznlyvmcapmkobwjw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-05T22:48:03-05:00\",\"operation_date\":\"2023-09-05T22:48:03-05:00\",\"description\":\"Pago Mensual academia: Emiliano Morales Rios (1038874755)\",\"error_message\":null,\"order_id\":\"E8D66338FAB3727E34A9179ED8804F64_SKQH7AFG2Z_1693972080.8044\",\"due_date\":\"2023-09-06T10:48:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Morales Rios\",\"email\":\"ccmorales@noel.com.co\",\"phone_number\":\"3136979739\",\"address\":null,\"creation_date\":\"2023-09-05T22:48:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgeznlyvmcapmkobwjw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 03:49:16','2023-09-06 03:49:16'),(8929,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-05T22:50:09-05:00\",\"transaction\":{\"id\":\"trgeznlyvmcapmkobwjw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"144017682\",\"creation_date\":\"2023-09-05T22:48:03-05:00\",\"operation_date\":\"2023-09-05T22:50:01-05:00\",\"description\":\"Pago Mensual academia: Emiliano Morales Rios (1038874755)\",\"error_message\":null,\"order_id\":\"E8D66338FAB3727E34A9179ED8804F64_SKQH7AFG2Z_1693972080.8044\",\"due_date\":\"2023-09-06T10:48:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emiliano\",\"last_name\":\"Morales Rios\",\"email\":\"ccmorales@noel.com.co\",\"phone_number\":\"3136979739\",\"address\":null,\"creation_date\":\"2023-09-05T22:48:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 03:50:10','2023-09-06 03:50:10'),(8930,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T02:25:14-05:00\",\"transaction\":{\"id\":\"trxeouobhkfkmnyunrzz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T02:24:30-05:00\",\"operation_date\":\"2023-09-06T02:24:30-05:00\",\"description\":\"Pago Mensual academia: Simon Ruiz Restrepo (1035016205)\",\"error_message\":null,\"order_id\":\"4837BA5CD49C7F03CAAA423049E66DAF_JA1QBDITSE_1693985064.484\",\"due_date\":\"2023-09-06T14:24:30-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Laura Catalina\",\"last_name\":\"Restrepo Perez\",\"email\":\"lauris-0108@hotmail.com\",\"phone_number\":\"3014090445\",\"address\":null,\"creation_date\":\"2023-09-06T02:24:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxeouobhkfkmnyunrzz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 07:25:15','2023-09-06 07:25:15'),(8931,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T02:26:08-05:00\",\"transaction\":{\"id\":\"trxeouobhkfkmnyunrzz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"144097770\",\"creation_date\":\"2023-09-06T02:24:30-05:00\",\"operation_date\":\"2023-09-06T02:26:01-05:00\",\"description\":\"Pago Mensual academia: Simon Ruiz Restrepo (1035016205)\",\"error_message\":null,\"order_id\":\"4837BA5CD49C7F03CAAA423049E66DAF_JA1QBDITSE_1693985064.484\",\"due_date\":\"2023-09-06T14:24:30-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Laura Catalina\",\"last_name\":\"Restrepo Perez\",\"email\":\"lauris-0108@hotmail.com\",\"phone_number\":\"3014090445\",\"address\":null,\"creation_date\":\"2023-09-06T02:24:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 07:26:09','2023-09-06 07:26:09'),(8932,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-06T02:14:16-06:00\",\"transaction\":{\"id\":\"trfcwv1srjn2lqgcrirt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-04T20:13:54-06:00\",\"operation_date\":\"2023-09-04T20:13:54-06:00\",\"description\":\"Pago Mensual academia: Matias Guzman Montoya (1034995159)\",\"error_message\":null,\"order_id\":\"7C220A2091C26A7F5E9F1CFB099511E3_VO1HGU96TZ_1693876430.2371\",\"due_date\":\"2023-09-05T08:13:54-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Doris\",\"last_name\":\"Montoya\",\"email\":\"dorismontoya36@gmail.com\",\"phone_number\":\"3163210575\",\"address\":null,\"creation_date\":\"2023-09-04T20:13:54-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfcwv1srjn2lqgcrirt/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 08:14:17','2023-09-06 08:14:17'),(8933,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T06:57:20-05:00\",\"transaction\":{\"id\":\"tryloh7uoxj5w2tg8bov\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T06:56:29-05:00\",\"operation_date\":\"2023-09-06T06:56:29-05:00\",\"description\":\"Pago Mensual academia: Pedro Yepes Ruiz (1022007398)\",\"error_message\":null,\"order_id\":\"4FC848051E4459B8A6AFEB210C3664EC_JY8LQTAF6W_1694001382.4857\",\"due_date\":\"2023-09-06T18:56:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres\",\"last_name\":\"Yepes Arcila\",\"email\":\"ayepesa@hotmail.com\",\"phone_number\":\"3117462193\",\"address\":null,\"creation_date\":\"2023-09-06T06:56:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryloh7uoxj5w2tg8bov/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 11:57:20','2023-09-06 11:57:20'),(8934,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  797\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T06:59:00-05:00\",\"transaction\":{\"id\":\"tryloh7uoxj5w2tg8bov\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"144194138\",\"creation_date\":\"2023-09-06T06:56:29-05:00\",\"operation_date\":\"2023-09-06T06:58:50-05:00\",\"description\":\"Pago Mensual academia: Pedro Yepes Ruiz (1022007398)\",\"error_message\":null,\"order_id\":\"4FC848051E4459B8A6AFEB210C3664EC_JY8LQTAF6W_1694001382.4857\",\"due_date\":\"2023-09-06T18:56:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres\",\"last_name\":\"Yepes Arcila\",\"email\":\"ayepesa@hotmail.com\",\"phone_number\":\"3117462193\",\"address\":null,\"creation_date\":\"2023-09-06T06:56:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 11:59:00','2023-09-06 11:59:00'),(8935,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T07:18:35-05:00\",\"transaction\":{\"id\":\"trpizz1hofvuqu7f5ezl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T07:17:53-05:00\",\"operation_date\":\"2023-09-06T07:17:53-05:00\",\"description\":\"Pago Mensual academia: emanuel muñoz supelano (1023548616)\",\"error_message\":null,\"order_id\":\"285A25C17F351708754CDB6D56F3962E_O1QPYTBVCH_1694002664.11\",\"due_date\":\"2023-09-06T19:17:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Muñoz  salinas\",\"email\":\"sebasmsalinasr@gmail.com\",\"phone_number\":\"3205384693\",\"address\":null,\"creation_date\":\"2023-09-06T07:17:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpizz1hofvuqu7f5ezl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 12:18:36','2023-09-06 12:18:36'),(8936,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T07:20:20-05:00\",\"transaction\":{\"id\":\"trpizz1hofvuqu7f5ezl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"144220910\",\"creation_date\":\"2023-09-06T07:17:53-05:00\",\"operation_date\":\"2023-09-06T07:19:57-05:00\",\"description\":\"Pago Mensual academia: emanuel muñoz supelano (1023548616)\",\"error_message\":null,\"order_id\":\"285A25C17F351708754CDB6D56F3962E_O1QPYTBVCH_1694002664.11\",\"due_date\":\"2023-09-06T19:17:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Muñoz  salinas\",\"email\":\"sebasmsalinasr@gmail.com\",\"phone_number\":\"3205384693\",\"address\":null,\"creation_date\":\"2023-09-06T07:17:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 12:20:20','2023-09-06 12:20:20'),(8937,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T07:48:55-05:00\",\"transaction\":{\"id\":\"trhzjhhcmfn9rjnutfhu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T07:48:21-05:00\",\"operation_date\":\"2023-09-06T07:48:21-05:00\",\"description\":\"Pago Mensual academia: pedro mejia angulo (1035011107)\",\"error_message\":null,\"order_id\":\"1517C8664BE296F0D87D9E5FC54FDD60_3YWRLF5DUT_1694004498.3676\",\"due_date\":\"2023-09-06T19:48:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"pedro\",\"last_name\":\"mejia angulo\",\"email\":\"paula.angulo2008@gmail.com\",\"phone_number\":\"3183502233\",\"address\":null,\"creation_date\":\"2023-09-06T07:48:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhzjhhcmfn9rjnutfhu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 12:48:56','2023-09-06 12:48:56'),(8938,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T07:49:53-05:00\",\"transaction\":{\"id\":\"trhzjhhcmfn9rjnutfhu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"144268317\",\"creation_date\":\"2023-09-06T07:48:21-05:00\",\"operation_date\":\"2023-09-06T07:49:48-05:00\",\"description\":\"Pago Mensual academia: pedro mejia angulo (1035011107)\",\"error_message\":null,\"order_id\":\"1517C8664BE296F0D87D9E5FC54FDD60_3YWRLF5DUT_1694004498.3676\",\"due_date\":\"2023-09-06T19:48:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"pedro\",\"last_name\":\"mejia angulo\",\"email\":\"paula.angulo2008@gmail.com\",\"phone_number\":\"3183502233\",\"address\":null,\"creation_date\":\"2023-09-06T07:48:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 12:49:54','2023-09-06 12:49:54'),(8939,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T09:09:02-05:00\",\"transaction\":{\"id\":\"trjayr00sittrkczqxbx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T09:07:37-05:00\",\"operation_date\":\"2023-09-06T09:07:37-05:00\",\"description\":\"Pago Mensual academia: Martin Ospina Velez (1021933640)\",\"error_message\":null,\"order_id\":\"C09F9CAF5E08836D4673CCDD69BB041E_S8G1LFAHZT_1694009252.477\",\"due_date\":\"2023-09-06T21:07:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"ospina velez\",\"email\":\"luiscarlosospinasierra@hotmail.com\",\"phone_number\":\"3163197979\",\"address\":null,\"creation_date\":\"2023-09-06T09:07:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjayr00sittrkczqxbx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 14:09:02','2023-09-06 14:09:02'),(8940,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T09:10:27-05:00\",\"transaction\":{\"id\":\"trjayr00sittrkczqxbx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"144445747\",\"creation_date\":\"2023-09-06T09:07:37-05:00\",\"operation_date\":\"2023-09-06T09:10:18-05:00\",\"description\":\"Pago Mensual academia: Martin Ospina Velez (1021933640)\",\"error_message\":null,\"order_id\":\"C09F9CAF5E08836D4673CCDD69BB041E_S8G1LFAHZT_1694009252.477\",\"due_date\":\"2023-09-06T21:07:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"ospina velez\",\"email\":\"luiscarlosospinasierra@hotmail.com\",\"phone_number\":\"3163197979\",\"address\":null,\"creation_date\":\"2023-09-06T09:07:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 14:10:27','2023-09-06 14:10:27'),(8941,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T10:04:11-05:00\",\"transaction\":{\"id\":\"tr6xtuqcpytxo4xsxjdk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T10:03:08-05:00\",\"operation_date\":\"2023-09-06T10:03:08-05:00\",\"description\":\"Pago Mensual academia: Isaac Giraldo Giraldo (1020315563)\",\"error_message\":null,\"order_id\":\"63154D5661F774FB7D2D11701D466AA2_42J70WCZB8_1694012585.1665\",\"due_date\":\"2023-09-06T22:03:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Alejandro \",\"last_name\":\"Giraldo Giraldo\",\"email\":\"lenyliz_giraldo7@hotmail.com\",\"phone_number\":\"3042228036\",\"address\":null,\"creation_date\":\"2023-09-06T10:03:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6xtuqcpytxo4xsxjdk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 15:04:12','2023-09-06 15:04:12'),(8942,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T10:06:09-05:00\",\"transaction\":{\"id\":\"tr6xtuqcpytxo4xsxjdk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"144595836\",\"creation_date\":\"2023-09-06T10:03:08-05:00\",\"operation_date\":\"2023-09-06T10:05:53-05:00\",\"description\":\"Pago Mensual academia: Isaac Giraldo Giraldo (1020315563)\",\"error_message\":null,\"order_id\":\"63154D5661F774FB7D2D11701D466AA2_42J70WCZB8_1694012585.1665\",\"due_date\":\"2023-09-06T22:03:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Alejandro \",\"last_name\":\"Giraldo Giraldo\",\"email\":\"lenyliz_giraldo7@hotmail.com\",\"phone_number\":\"3042228036\",\"address\":null,\"creation_date\":\"2023-09-06T10:03:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 15:06:10','2023-09-06 15:06:10'),(8943,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T10:41:22-05:00\",\"transaction\":{\"id\":\"trcmilkvlp958jjyiga3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T10:40:29-05:00\",\"operation_date\":\"2023-09-06T10:40:29-05:00\",\"description\":\"Pago Mensual academia: martin osorio monsalve (1023557324)\",\"error_message\":null,\"order_id\":\"E593C562359C3C2E42A22B808D3383E7_DHUIPJM98E_1694014825.5022\",\"due_date\":\"2023-09-06T22:40:29-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Martín \",\"last_name\":\"Osorio monsalve \",\"email\":\"natymonsalvep@hotmail.com\",\"phone_number\":\"3206766933\",\"address\":null,\"creation_date\":\"2023-09-06T10:40:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcmilkvlp958jjyiga3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 15:41:23','2023-09-06 15:41:23'),(8944,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T09:42:35-06:00\",\"transaction\":{\"id\":\"trcmilkvlp958jjyiga3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"144702380\",\"creation_date\":\"2023-09-06T10:40:29-06:00\",\"operation_date\":\"2023-09-06T10:42:22-06:00\",\"description\":\"Pago Mensual academia: martin osorio monsalve (1023557324)\",\"error_message\":null,\"order_id\":\"E593C562359C3C2E42A22B808D3383E7_DHUIPJM98E_1694014825.5022\",\"due_date\":\"2023-09-06T22:40:29-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Martín \",\"last_name\":\"Osorio monsalve \",\"email\":\"natymonsalvep@hotmail.com\",\"phone_number\":\"3206766933\",\"address\":null,\"creation_date\":\"2023-09-06T10:40:29-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 15:42:35','2023-09-06 15:42:35'),(8945,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T10:44:05-05:00\",\"transaction\":{\"id\":\"tr83vqeggedyvd0hkzmg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T10:43:15-05:00\",\"operation_date\":\"2023-09-06T10:43:15-05:00\",\"description\":\"Pago Mensual academia: martin osorio monsalve (1023557324)\",\"error_message\":null,\"order_id\":\"3341F6F048384EC73A7BA2E77D2DB48B_PSFNI3OB68_1694014991.1243\",\"due_date\":\"2023-09-06T22:43:15-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Martín \",\"last_name\":\"Osorio monsalve \",\"email\":\"natymonsalvep@hotmail.com\",\"phone_number\":\"3206766933\",\"address\":null,\"creation_date\":\"2023-09-06T10:43:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr83vqeggedyvd0hkzmg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 15:44:06','2023-09-06 15:44:06'),(8946,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T09:45:33-06:00\",\"transaction\":{\"id\":\"tr83vqeggedyvd0hkzmg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"144710275\",\"creation_date\":\"2023-09-06T10:43:15-06:00\",\"operation_date\":\"2023-09-06T10:45:19-06:00\",\"description\":\"Pago Mensual academia: martin osorio monsalve (1023557324)\",\"error_message\":null,\"order_id\":\"3341F6F048384EC73A7BA2E77D2DB48B_PSFNI3OB68_1694014991.1243\",\"due_date\":\"2023-09-06T22:43:15-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Martín \",\"last_name\":\"Osorio monsalve \",\"email\":\"natymonsalvep@hotmail.com\",\"phone_number\":\"3206766933\",\"address\":null,\"creation_date\":\"2023-09-06T10:43:15-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 15:45:34','2023-09-06 15:45:34'),(8947,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T09:48:30-06:00\",\"transaction\":{\"id\":\"tr83vqeggedyvd0hkzmg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"144710275\",\"creation_date\":\"2023-09-06T10:43:15-06:00\",\"operation_date\":\"2023-09-06T10:45:19-06:00\",\"description\":\"Pago Mensual academia: martin osorio monsalve (1023557324)\",\"error_message\":null,\"order_id\":\"3341F6F048384EC73A7BA2E77D2DB48B_PSFNI3OB68_1694014991.1243\",\"due_date\":\"2023-09-06T22:43:15-06:00\",\"amount\":95000.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Martín \",\"last_name\":\"Osorio monsalve \",\"email\":\"natymonsalvep@hotmail.com\",\"phone_number\":\"3206766933\",\"address\":null,\"creation_date\":\"2023-09-06T10:43:15-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 15:48:30','2023-09-06 15:48:30'),(8948,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  909\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T10:50:32-05:00\",\"transaction\":{\"id\":\"trsj9sbd67ul0yt3ckm0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-06T10:50:32-05:00\",\"operation_date\":\"2023-09-06T10:50:32-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Hidalgo Londoño (1023639863)\",\"error_message\":null,\"order_id\":\"7171E95248FF768E1EBEE3EDDE01EA7A_VUP5Z4A1LX_1694015429.1213\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres Felipe\",\"last_name\":\"Hidalgo Londoño\",\"email\":\"luisachica.12@gmail.com\",\"phone_number\":\"3194402621\",\"address\":null,\"creation_date\":\"2023-09-06T10:50:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsj9sbd67ul0yt3ckm0/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-06 15:50:32','2023-09-06 15:50:32'),(8949,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1160\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T10:51:58-05:00\",\"transaction\":{\"id\":\"trsj9sbd67ul0yt3ckm0\",\"authorization\":\"105157\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-06T10:50:32-05:00\",\"operation_date\":\"2023-09-06T10:51:57-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Hidalgo Londoño (1023639863)\",\"error_message\":null,\"order_id\":\"7171E95248FF768E1EBEE3EDDE01EA7A_VUP5Z4A1LX_1694015429.1213\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1748\",\"holder_name\":\"Byron Bastidas\",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Andres Felipe\",\"last_name\":\"Hidalgo Londoño\",\"email\":\"luisachica.12@gmail.com\",\"phone_number\":\"3194402621\",\"address\":null,\"creation_date\":\"2023-09-06T10:50:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsj9sbd67ul0yt3ckm0/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-06 15:51:58','2023-09-06 15:51:58'),(8950,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T13:50:13-05:00\",\"transaction\":{\"id\":\"trhcwysb8aw3jcfwze5m\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T13:49:26-05:00\",\"operation_date\":\"2023-09-06T13:49:26-05:00\",\"description\":\"Pago Mensual academia: martin orozco (1035011724)\",\"error_message\":null,\"order_id\":\"4175A4B46A45813FCCF4BD34C779D817_MFZU6K297Y_1694026163.6857\",\"due_date\":\"2023-09-07T01:49:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catherine\",\"last_name\":\"jimenez\",\"email\":\"cathe84@gmail.com\",\"phone_number\":\"3216483416\",\"address\":null,\"creation_date\":\"2023-09-06T13:49:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhcwysb8aw3jcfwze5m/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 18:50:13','2023-09-06 18:50:13'),(8951,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  790\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T13:51:10-05:00\",\"transaction\":{\"id\":\"trhcwysb8aw3jcfwze5m\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"145195381\",\"creation_date\":\"2023-09-06T13:49:26-05:00\",\"operation_date\":\"2023-09-06T13:51:01-05:00\",\"description\":\"Pago Mensual academia: martin orozco (1035011724)\",\"error_message\":null,\"order_id\":\"4175A4B46A45813FCCF4BD34C779D817_MFZU6K297Y_1694026163.6857\",\"due_date\":\"2023-09-07T01:49:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catherine\",\"last_name\":\"jimenez\",\"email\":\"cathe84@gmail.com\",\"phone_number\":\"3216483416\",\"address\":null,\"creation_date\":\"2023-09-06T13:49:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 18:51:10','2023-09-06 18:51:10'),(8952,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T15:02:12-05:00\",\"transaction\":{\"id\":\"trzcciqs73r9zpjbvqe8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T14:59:20-05:00\",\"operation_date\":\"2023-09-06T14:59:20-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Aguirre Velasquez (1034993490)\",\"error_message\":null,\"order_id\":\"1BF50AAF147B3B0DDD26A820D2ED394D_352DG8PRYL_1694030357.3496\",\"due_date\":\"2023-09-07T02:59:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jimmy Leandro\",\"last_name\":\"Aguirre Navales\",\"email\":\"aguirrejimmy@hotmail.com\",\"phone_number\":\"3128514979\",\"address\":null,\"creation_date\":\"2023-09-06T14:59:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzcciqs73r9zpjbvqe8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 20:02:13','2023-09-06 20:02:13'),(8953,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T15:04:10-05:00\",\"transaction\":{\"id\":\"trzcciqs73r9zpjbvqe8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"145380764\",\"creation_date\":\"2023-09-06T14:59:20-05:00\",\"operation_date\":\"2023-09-06T15:03:42-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Aguirre Velasquez (1034993490)\",\"error_message\":null,\"order_id\":\"1BF50AAF147B3B0DDD26A820D2ED394D_352DG8PRYL_1694030357.3496\",\"due_date\":\"2023-09-07T02:59:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jimmy Leandro\",\"last_name\":\"Aguirre Navales\",\"email\":\"aguirrejimmy@hotmail.com\",\"phone_number\":\"3128514979\",\"address\":null,\"creation_date\":\"2023-09-06T14:59:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 20:04:11','2023-09-06 20:04:11'),(8954,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T15:35:31-05:00\",\"transaction\":{\"id\":\"triict9avpilz0allvzh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T15:34:21-05:00\",\"operation_date\":\"2023-09-06T15:34:21-05:00\",\"description\":\"Pago Mensual academia: Samuel Zapata ochoa (1036454926)\",\"error_message\":null,\"order_id\":\"27B587BBE83AECF9A98C8FE6AB48CACC_JIZTWGBVFK_1694032437.1289\",\"due_date\":\"2023-09-07T03:34:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marcela\",\"last_name\":\"Zapata ochoa\",\"email\":\"marcela.zapata@hotmail.com\",\"phone_number\":\"3128351811\",\"address\":null,\"creation_date\":\"2023-09-06T15:34:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triict9avpilz0allvzh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 20:35:32','2023-09-06 20:35:32'),(8955,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T15:37:37-05:00\",\"transaction\":{\"id\":\"triict9avpilz0allvzh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"145471585\",\"creation_date\":\"2023-09-06T15:34:21-05:00\",\"operation_date\":\"2023-09-06T15:36:53-05:00\",\"description\":\"Pago Mensual academia: Samuel Zapata ochoa (1036454926)\",\"error_message\":null,\"order_id\":\"27B587BBE83AECF9A98C8FE6AB48CACC_JIZTWGBVFK_1694032437.1289\",\"due_date\":\"2023-09-07T03:34:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marcela\",\"last_name\":\"Zapata ochoa\",\"email\":\"marcela.zapata@hotmail.com\",\"phone_number\":\"3128351811\",\"address\":null,\"creation_date\":\"2023-09-06T15:34:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 20:37:37','2023-09-06 20:37:37'),(8956,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T16:14:19-05:00\",\"transaction\":{\"id\":\"trw816qwd2ctg5etoiwz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T16:13:27-05:00\",\"operation_date\":\"2023-09-06T16:13:27-05:00\",\"description\":\"Pago Mensual academia: wiston leonel torres castillo (1035003053)\",\"error_message\":null,\"order_id\":\"B085C4FA543AFE32970749F5E2BCDC6A_JWLZXVOHQ5_1694034800.305\",\"due_date\":\"2023-09-07T04:13:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"leidy juliana\",\"last_name\":\"bustamante restrepo\",\"email\":\"leidy_juli@hotmail.com\",\"phone_number\":\"3042901112\",\"address\":null,\"creation_date\":\"2023-09-06T16:13:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trw816qwd2ctg5etoiwz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 21:14:20','2023-09-06 21:14:20'),(8957,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T16:16:38-05:00\",\"transaction\":{\"id\":\"trpz60inckg8dgmfxqcw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T16:15:34-05:00\",\"operation_date\":\"2023-09-06T16:15:34-05:00\",\"description\":\"Pago Mensual academia: VICENTE GIRALDO ARANGO (1036457876)\",\"error_message\":null,\"order_id\":\"B85D65C39E12A5515C19FD72B6F48199_IWKJ4YRO36_1694034925.5052\",\"due_date\":\"2023-09-07T04:15:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BEATRIZ\",\"last_name\":\"ARANGO AGUDELO\",\"email\":\"bearango609@gmail.com\",\"phone_number\":\"3044722226\",\"address\":null,\"creation_date\":\"2023-09-06T16:15:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpz60inckg8dgmfxqcw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 21:16:38','2023-09-06 21:16:38'),(8958,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T16:17:46-05:00\",\"transaction\":{\"id\":\"trkcegps1rjfoz0rvjgb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T16:16:35-05:00\",\"operation_date\":\"2023-09-06T16:16:35-05:00\",\"description\":\"Pago Mensual academia: wiston leonel torres castillo (1035003053)\",\"error_message\":null,\"order_id\":\"39539F630A3B94D3ED61EA9D04C9BB05_ERZG4YXN1H_1694034992.675\",\"due_date\":\"2023-09-07T04:16:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"leidy juliana\",\"last_name\":\"bustamante restrepo\",\"email\":\"leidy_juli@hotmail.com\",\"phone_number\":\"3042901112\",\"address\":null,\"creation_date\":\"2023-09-06T16:16:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkcegps1rjfoz0rvjgb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 21:17:47','2023-09-06 21:17:47'),(8959,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T15:18:21-06:00\",\"transaction\":{\"id\":\"trw816qwd2ctg5etoiwz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"145578807\",\"creation_date\":\"2023-09-06T16:13:27-06:00\",\"operation_date\":\"2023-09-06T16:15:33-06:00\",\"description\":\"Pago Mensual academia: wiston leonel torres castillo (1035003053)\",\"error_message\":null,\"order_id\":\"B085C4FA543AFE32970749F5E2BCDC6A_JWLZXVOHQ5_1694034800.305\",\"due_date\":\"2023-09-07T04:13:27-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"leidy juliana\",\"last_name\":\"bustamante restrepo\",\"email\":\"leidy_juli@hotmail.com\",\"phone_number\":\"3042901112\",\"address\":null,\"creation_date\":\"2023-09-06T16:13:27-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 21:18:21','2023-09-06 21:18:21'),(8960,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T15:18:24-06:00\",\"transaction\":{\"id\":\"trpz60inckg8dgmfxqcw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"145584707\",\"creation_date\":\"2023-09-06T16:15:34-06:00\",\"operation_date\":\"2023-09-06T16:17:55-06:00\",\"description\":\"Pago Mensual academia: VICENTE GIRALDO ARANGO (1036457876)\",\"error_message\":null,\"order_id\":\"B85D65C39E12A5515C19FD72B6F48199_IWKJ4YRO36_1694034925.5052\",\"due_date\":\"2023-09-07T04:15:34-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BEATRIZ\",\"last_name\":\"ARANGO AGUDELO\",\"email\":\"bearango609@gmail.com\",\"phone_number\":\"3044722226\",\"address\":null,\"creation_date\":\"2023-09-06T16:15:34-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 21:18:24','2023-09-06 21:18:24'),(8961,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T15:21:15-06:00\",\"transaction\":{\"id\":\"trkcegps1rjfoz0rvjgb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"145587790\",\"creation_date\":\"2023-09-06T16:16:35-06:00\",\"operation_date\":\"2023-09-06T16:18:45-06:00\",\"description\":\"Pago Mensual academia: wiston leonel torres castillo (1035003053)\",\"error_message\":null,\"order_id\":\"39539F630A3B94D3ED61EA9D04C9BB05_ERZG4YXN1H_1694034992.675\",\"due_date\":\"2023-09-07T04:16:35-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"leidy juliana\",\"last_name\":\"bustamante restrepo\",\"email\":\"leidy_juli@hotmail.com\",\"phone_number\":\"3042901112\",\"address\":null,\"creation_date\":\"2023-09-06T16:16:35-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 21:21:15','2023-09-06 21:21:15'),(8962,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T16:21:25-05:00\",\"transaction\":{\"id\":\"tryigdcgcj2msrkm8xnj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T16:20:15-05:00\",\"operation_date\":\"2023-09-06T16:20:15-05:00\",\"description\":\"Pago Mensual academia: Maximiliano De Villa Luján (1035002732)\",\"error_message\":null,\"order_id\":\"49CBB75927723EFBA3B4C108ED4A12F3_Y7PGE4WQBZ_1694035188.2427\",\"due_date\":\"2023-09-07T04:20:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Raul\",\"last_name\":\"De Villa\",\"email\":\"raul.devilla@gmail.com\",\"phone_number\":\"3176591127\",\"address\":null,\"creation_date\":\"2023-09-06T16:20:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryigdcgcj2msrkm8xnj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 21:21:26','2023-09-06 21:21:26'),(8963,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T16:22:24-05:00\",\"transaction\":{\"id\":\"tryigdcgcj2msrkm8xnj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"145597564\",\"creation_date\":\"2023-09-06T16:20:15-05:00\",\"operation_date\":\"2023-09-06T16:22:19-05:00\",\"description\":\"Pago Mensual academia: Maximiliano De Villa Luján (1035002732)\",\"error_message\":null,\"order_id\":\"49CBB75927723EFBA3B4C108ED4A12F3_Y7PGE4WQBZ_1694035188.2427\",\"due_date\":\"2023-09-07T04:20:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Raul\",\"last_name\":\"De Villa\",\"email\":\"raul.devilla@gmail.com\",\"phone_number\":\"3176591127\",\"address\":null,\"creation_date\":\"2023-09-06T16:20:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-06 21:22:25','2023-09-06 21:22:25'),(8964,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T16:39:17-05:00\",\"transaction\":{\"id\":\"trshoobjl6asxmxzc5c7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-06T16:39:17-05:00\",\"operation_date\":\"2023-09-06T16:39:17-05:00\",\"description\":\"Pago Mensual academia: Samuel Montoya Serna (1034998338)\",\"error_message\":null,\"order_id\":\"4D95D05A4FC4EADBC3B9DDE67AFDCA39_U9IY4X732Q_1694036353.8206\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Serna Mejia\",\"email\":\"alejandraserna2008@gmail.com\",\"phone_number\":\"3165210425\",\"address\":null,\"creation_date\":\"2023-09-06T16:39:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trshoobjl6asxmxzc5c7/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-06 21:39:18','2023-09-06 21:39:18'),(8965,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1142\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T16:40:10-05:00\",\"transaction\":{\"id\":\"trshoobjl6asxmxzc5c7\",\"authorization\":\"242261\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-06T16:39:17-05:00\",\"operation_date\":\"2023-09-06T16:40:08-05:00\",\"description\":\"Pago Mensual academia: Samuel Montoya Serna (1034998338)\",\"error_message\":null,\"order_id\":\"4D95D05A4FC4EADBC3B9DDE67AFDCA39_U9IY4X732Q_1694036353.8206\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"461202XXXXXX9204\",\"holder_name\":\"Alejandra Serna\",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Serna Mejia\",\"email\":\"alejandraserna2008@gmail.com\",\"phone_number\":\"3165210425\",\"address\":null,\"creation_date\":\"2023-09-06T16:39:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trshoobjl6asxmxzc5c7/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-06 21:40:11','2023-09-06 21:40:11'),(8966,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T19:13:19-05:00\",\"transaction\":{\"id\":\"trriauqiisyyipn6vlya\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T19:12:31-05:00\",\"operation_date\":\"2023-09-06T19:12:31-05:00\",\"description\":\"Pago Mensual academia: Samuel Loaiza Toro (1038267129)\",\"error_message\":null,\"order_id\":\"9B8F0779BADBAD3B46D6718EE95A68FF_0D1A48OXI2_1694045542.431\",\"due_date\":\"2023-09-07T07:12:31-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"sandra\",\"last_name\":\"toro acevedo\",\"email\":\"sandristoro@gmail.com\",\"phone_number\":\"3185222868\",\"address\":null,\"creation_date\":\"2023-09-06T19:12:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trriauqiisyyipn6vlya/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 00:13:20','2023-09-07 00:13:20'),(8967,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T19:14:50-05:00\",\"transaction\":{\"id\":\"trriauqiisyyipn6vlya\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"145979443\",\"creation_date\":\"2023-09-06T19:12:31-05:00\",\"operation_date\":\"2023-09-06T19:14:43-05:00\",\"description\":\"Pago Mensual academia: Samuel Loaiza Toro (1038267129)\",\"error_message\":null,\"order_id\":\"9B8F0779BADBAD3B46D6718EE95A68FF_0D1A48OXI2_1694045542.431\",\"due_date\":\"2023-09-07T07:12:31-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"sandra\",\"last_name\":\"toro acevedo\",\"email\":\"sandristoro@gmail.com\",\"phone_number\":\"3185222868\",\"address\":null,\"creation_date\":\"2023-09-06T19:12:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 00:14:51','2023-09-07 00:14:51'),(8968,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  955\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T19:37:54-05:00\",\"transaction\":{\"id\":\"trq87uzohbc28z3yasi7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T19:37:00-05:00\",\"operation_date\":\"2023-09-06T19:37:00-05:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Quintero londoño (1038872847)\",\"error_message\":null,\"order_id\":\"D90E5B6628B4291225CBA0BDC643C295_FTGL123ADK_1694046996.6443\",\"due_date\":\"2023-09-07T07:37:00-05:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq87uzohbc28z3yasi7/redirect/\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Julieth Natalia\",\"last_name\":\"londoño Bustamante\",\"email\":\"construccioneslaq@hotmail.com\",\"phone_number\":\"3213614548\",\"address\":null,\"creation_date\":\"2023-09-06T19:37:00-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 00:37:55','2023-09-07 00:37:55'),(8969,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  838\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T18:39:25-06:00\",\"transaction\":{\"id\":\"trq87uzohbc28z3yasi7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"146029020\",\"creation_date\":\"2023-09-06T19:37:00-06:00\",\"operation_date\":\"2023-09-06T19:39:15-06:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Quintero londoño (1038872847)\",\"error_message\":null,\"order_id\":\"D90E5B6628B4291225CBA0BDC643C295_FTGL123ADK_1694046996.6443\",\"due_date\":\"2023-09-07T07:37:00-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julieth Natalia\",\"last_name\":\"londoño Bustamante\",\"email\":\"construccioneslaq@hotmail.com\",\"phone_number\":\"3213614548\",\"address\":null,\"creation_date\":\"2023-09-06T19:37:00-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 00:39:26','2023-09-07 00:39:26'),(8970,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T19:47:23-05:00\",\"transaction\":{\"id\":\"trqm2ws2vgdgnvggaveb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T19:46:54-05:00\",\"operation_date\":\"2023-09-06T19:46:54-05:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Valencia (1023554895)\",\"error_message\":null,\"order_id\":\"97F081D3B1B352E9D1AAA2225DD6BB16_LMXV3JGF12_1694047611.2742\",\"due_date\":\"2023-09-07T07:46:54-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jaime\",\"last_name\":\"Giraldo\",\"email\":\"jaime2406@hotmail.com\",\"phone_number\":\"3002037003\",\"address\":null,\"creation_date\":\"2023-09-06T19:46:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqm2ws2vgdgnvggaveb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 00:47:24','2023-09-07 00:47:24'),(8971,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T19:48:21-05:00\",\"transaction\":{\"id\":\"trqm2ws2vgdgnvggaveb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"146046987\",\"creation_date\":\"2023-09-06T19:46:54-05:00\",\"operation_date\":\"2023-09-06T19:48:16-05:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Valencia (1023554895)\",\"error_message\":null,\"order_id\":\"97F081D3B1B352E9D1AAA2225DD6BB16_LMXV3JGF12_1694047611.2742\",\"due_date\":\"2023-09-07T07:46:54-05:00\",\"amount\":105000.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Jaime\",\"last_name\":\"Giraldo\",\"email\":\"jaime2406@hotmail.com\",\"phone_number\":\"3002037003\",\"address\":null,\"creation_date\":\"2023-09-06T19:46:54-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 00:48:22','2023-09-07 00:48:22'),(8972,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T20:58:33-05:00\",\"transaction\":{\"id\":\"trynqd0cscci19hyee4a\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T20:57:39-05:00\",\"operation_date\":\"2023-09-06T20:57:39-05:00\",\"description\":\"Pago Mensual academia: Sebastián Lafaurie Londoño (1031949789)\",\"error_message\":null,\"order_id\":\"943B5FD1EF60D3A4DB537AF4A4D0C802_ILYN6PVGUQ_1694051854.2536\",\"due_date\":\"2023-09-07T08:57:39-05:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trynqd0cscci19hyee4a/redirect/\"},\"amount\":95000.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Jean Paul\",\"last_name\":\"Lafaurie Plata\",\"email\":\"jplafauri@gmail.com\",\"phone_number\":\"3008028947\",\"address\":null,\"creation_date\":\"2023-09-06T20:57:39-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 01:58:34','2023-09-07 01:58:34'),(8973,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-06T20:59:51-05:00\",\"transaction\":{\"id\":\"trynqd0cscci19hyee4a\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"146193675\",\"creation_date\":\"2023-09-06T20:57:39-05:00\",\"operation_date\":\"2023-09-06T20:59:45-05:00\",\"description\":\"Pago Mensual academia: Sebastián Lafaurie Londoño (1031949789)\",\"error_message\":null,\"order_id\":\"943B5FD1EF60D3A4DB537AF4A4D0C802_ILYN6PVGUQ_1694051854.2536\",\"due_date\":\"2023-09-07T08:57:39-05:00\",\"amount\":95000.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Jean Paul\",\"last_name\":\"Lafaurie Plata\",\"email\":\"jplafauri@gmail.com\",\"phone_number\":\"3008028947\",\"address\":null,\"creation_date\":\"2023-09-06T20:57:39-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 01:59:52','2023-09-07 01:59:52'),(8974,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T21:57:50-05:00\",\"transaction\":{\"id\":\"trrmdhecpbqdyuzlfbre\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T21:56:47-05:00\",\"operation_date\":\"2023-09-06T21:56:47-05:00\",\"description\":\"Pago Mensual academia: simon puerta gomez (1015189399)\",\"error_message\":null,\"order_id\":\"_1694055399.2751\",\"due_date\":\"2023-09-07T09:56:47-05:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrmdhecpbqdyuzlfbre/redirect/\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Leidy Johana\",\"last_name\":\"Gomez Rincon\",\"email\":\"johanita_gomez21@hotmail.com\",\"phone_number\":\"3001590927\",\"address\":null,\"creation_date\":\"2023-09-06T21:56:47-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 02:57:51','2023-09-07 02:57:51'),(8975,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-06T22:01:07-05:00\",\"transaction\":{\"id\":\"trpu9wgdvudnq2wz9e5k\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-06T22:00:00-05:00\",\"operation_date\":\"2023-09-06T22:00:00-05:00\",\"description\":\"Pago Mensual academia: simon puerta gomez (1015189399)\",\"error_message\":null,\"order_id\":\"1340CCF24722F02BBC81B3822CE23D4C_A54OP97GN6_1694055595.5751\",\"due_date\":\"2023-09-07T10:00:00-05:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpu9wgdvudnq2wz9e5k/redirect/\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Leidy Johana\",\"last_name\":\"Gomez Rincon\",\"email\":\"johanita_gomez21@hotmail.com\",\"phone_number\":\"3001590927\",\"address\":null,\"creation_date\":\"2023-09-06T22:00:00-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 03:01:08','2023-09-07 03:01:08'),(8976,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-06T21:18:11-06:00\",\"transaction\":{\"id\":\"trrmdhecpbqdyuzlfbre\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-06T21:56:47-06:00\",\"operation_date\":\"2023-09-06T21:58:09-06:00\",\"description\":\"Pago Mensual academia: simon puerta gomez (1015189399)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"_1694055399.2751\",\"due_date\":\"2023-09-07T09:56:47-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Leidy Johana\",\"last_name\":\"Gomez Rincon\",\"email\":\"johanita_gomez21@hotmail.com\",\"phone_number\":\"3001590927\",\"address\":null,\"creation_date\":\"2023-09-06T21:56:47-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 03:18:13','2023-09-07 03:18:13'),(8977,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  853\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-06T21:24:09-06:00\",\"transaction\":{\"id\":\"trpu9wgdvudnq2wz9e5k\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-06T22:00:00-06:00\",\"operation_date\":\"2023-09-06T22:01:15-06:00\",\"description\":\"Pago Mensual academia: simon puerta gomez (1015189399)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"1340CCF24722F02BBC81B3822CE23D4C_A54OP97GN6_1694055595.5751\",\"due_date\":\"2023-09-07T10:00:00-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Johana\",\"last_name\":\"Gomez Rincon\",\"email\":\"johanita_gomez21@hotmail.com\",\"phone_number\":\"3001590927\",\"address\":null,\"creation_date\":\"2023-09-06T22:00:00-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 03:24:10','2023-09-07 03:24:10'),(8978,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-07T02:30:22-06:00\",\"transaction\":{\"id\":\"trovimtbgmx313a6opkx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-05T12:54:06-06:00\",\"operation_date\":\"2023-09-05T12:54:06-06:00\",\"description\":\"Pago Mensual academia: Martín Betancur Giraldo (1035013869)\",\"error_message\":null,\"order_id\":\"2ED80F6311C1825FEB854D78FA969D34_W806ON9SUT_1693936444.1566\",\"due_date\":\"2023-09-06T00:54:06-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"German René\",\"last_name\":\"Betancur Giraldo\",\"email\":\"grbg28@hotmail.com\",\"phone_number\":\"3155109052\",\"address\":null,\"creation_date\":\"2023-09-05T12:54:06-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trovimtbgmx313a6opkx/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 08:30:22','2023-09-07 08:30:22'),(8979,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T09:17:55-05:00\",\"transaction\":{\"id\":\"trm5r4s7ph9u3cg8qrzj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-07T09:16:00-05:00\",\"operation_date\":\"2023-09-07T09:16:00-05:00\",\"description\":\"Pago Mensual academia: samuel aristizabal patiño (1035015540)\",\"error_message\":null,\"order_id\":\"4FC28B7093B135C21C7183AC07E928A6_ZUJF6KSMRI_1694096153.3614\",\"due_date\":\"2023-09-07T21:16:00-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"fredy alexander\",\"last_name\":\"aristizabal martinez\",\"email\":\"alexoceantex@gmail.com\",\"phone_number\":\"3148940916\",\"address\":null,\"creation_date\":\"2023-09-07T09:16:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm5r4s7ph9u3cg8qrzj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 14:17:56','2023-09-07 14:17:56'),(8980,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T09:19:48-05:00\",\"transaction\":{\"id\":\"trm5r4s7ph9u3cg8qrzj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"146778646\",\"creation_date\":\"2023-09-07T09:16:00-05:00\",\"operation_date\":\"2023-09-07T09:19:35-05:00\",\"description\":\"Pago Mensual academia: samuel aristizabal patiño (1035015540)\",\"error_message\":null,\"order_id\":\"4FC28B7093B135C21C7183AC07E928A6_ZUJF6KSMRI_1694096153.3614\",\"due_date\":\"2023-09-07T21:16:00-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"fredy alexander\",\"last_name\":\"aristizabal martinez\",\"email\":\"alexoceantex@gmail.com\",\"phone_number\":\"3148940916\",\"address\":null,\"creation_date\":\"2023-09-07T09:16:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 14:19:48','2023-09-07 14:19:48'),(8981,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T09:40:40-05:00\",\"transaction\":{\"id\":\"trcf99gwdnoipkmyrkgq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-07T09:39:34-05:00\",\"operation_date\":\"2023-09-07T09:39:34-05:00\",\"description\":\"Pago Mensual academia: maximiliano florez henao (1023534063)\",\"error_message\":null,\"order_id\":\"D2DC6368837861B42020EE72B0896182_U1KH8NIXFV_1694097567.8242\",\"due_date\":\"2023-09-07T21:39:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"claudia maria\",\"last_name\":\"henao estrada\",\"email\":\"juans10311@gmail.com\",\"phone_number\":\"3016319874\",\"address\":null,\"creation_date\":\"2023-09-07T09:39:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcf99gwdnoipkmyrkgq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 14:40:41','2023-09-07 14:40:41'),(8982,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T09:42:01-05:00\",\"transaction\":{\"id\":\"trcf99gwdnoipkmyrkgq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"146835188\",\"creation_date\":\"2023-09-07T09:39:34-05:00\",\"operation_date\":\"2023-09-07T00:00:00-05:00\",\"description\":\"Pago Mensual academia: maximiliano florez henao (1023534063)\",\"error_message\":null,\"order_id\":\"D2DC6368837861B42020EE72B0896182_U1KH8NIXFV_1694097567.8242\",\"due_date\":\"2023-09-07T21:39:34-05:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"claudia maria\",\"last_name\":\"henao estrada\",\"email\":\"juans10311@gmail.com\",\"phone_number\":\"3016319874\",\"address\":null,\"creation_date\":\"2023-09-07T09:39:33-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 14:42:02','2023-09-07 14:42:02'),(8983,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  912\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T09:52:30-05:00\",\"transaction\":{\"id\":\"trtezzlyfmoueeisw1ty\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-07T09:52:29-05:00\",\"operation_date\":\"2023-09-07T09:52:29-05:00\",\"description\":\"Pago Mensual academia: Thomas Alejandro Garcia Garcia (1093599202)\",\"error_message\":null,\"order_id\":\"1597D21403F63DA1BB0539592597A525_M82KH4T7V3_1694098341.2089\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexandra\",\"last_name\":\"Garcia Ospina\",\"email\":\"alexandragarciaospina@hotmail.com\",\"phone_number\":\"3185201241\",\"address\":null,\"creation_date\":\"2023-09-07T09:52:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtezzlyfmoueeisw1ty/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-07 14:52:30','2023-09-07 14:52:30'),(8984,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T09:53:36-05:00\",\"transaction\":{\"id\":\"trtezzlyfmoueeisw1ty\",\"authorization\":\"216318\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-07T09:52:29-05:00\",\"operation_date\":\"2023-09-07T09:53:36-05:00\",\"description\":\"Pago Mensual academia: Thomas Alejandro Garcia Garcia (1093599202)\",\"error_message\":null,\"order_id\":\"1597D21403F63DA1BB0539592597A525_M82KH4T7V3_1694098341.2089\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491268XXXXXX5021\",\"holder_name\":\"Alexandra García \",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtezzlyfmoueeisw1ty/redirect/\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Alexandra\",\"last_name\":\"Garcia Ospina\",\"email\":\"alexandragarciaospina@hotmail.com\",\"phone_number\":\"3185201241\",\"address\":null,\"creation_date\":\"2023-09-07T09:52:30-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"card\"}}',NULL,NULL,'2023-09-07 14:53:37','2023-09-07 14:53:37'),(8985,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T11:01:03-05:00\",\"transaction\":{\"id\":\"trrzxxsgsc2w9o8kg8rr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-07T11:00:18-05:00\",\"operation_date\":\"2023-09-07T11:00:18-05:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":null,\"order_id\":\"F550E0BA9E1C4E8BB4A5ED0AC23A952D_B0OE7KAQCT_1694102413.7691\",\"due_date\":\"2023-09-07T23:00:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-07T11:00:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrzxxsgsc2w9o8kg8rr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 16:01:03','2023-09-07 16:01:03'),(8986,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-07T10:06:22-06:00\",\"transaction\":{\"id\":\"trrzxxsgsc2w9o8kg8rr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-07T11:00:18-06:00\",\"operation_date\":\"2023-09-07T11:01:09-06:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"F550E0BA9E1C4E8BB4A5ED0AC23A952D_B0OE7KAQCT_1694102413.7691\",\"due_date\":\"2023-09-07T23:00:18-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-07T11:00:18-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 16:06:23','2023-09-07 16:06:23'),(8987,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T11:08:29-05:00\",\"transaction\":{\"id\":\"trrpaisicl5zvuvxwr2g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-07T11:06:59-05:00\",\"operation_date\":\"2023-09-07T11:06:59-05:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":null,\"order_id\":\"F550E0BA9E1C4E8BB4A5ED0AC23A952D_B0OE7KAQCT_1694102814.3866\",\"due_date\":\"2023-09-07T23:06:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-07T11:06:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrpaisicl5zvuvxwr2g/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 16:08:30','2023-09-07 16:08:30'),(8988,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-07T11:09:00-05:00\",\"transaction\":{\"id\":\"trrpaisicl5zvuvxwr2g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-07T11:06:59-05:00\",\"operation_date\":\"2023-09-07T11:08:36-05:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"F550E0BA9E1C4E8BB4A5ED0AC23A952D_B0OE7KAQCT_1694102814.3866\",\"due_date\":\"2023-09-07T23:06:59-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-07T11:06:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 16:09:00','2023-09-07 16:09:00'),(8989,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T11:09:52-05:00\",\"transaction\":{\"id\":\"trjft2vcudnnan5obrc8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-07T11:09:26-05:00\",\"operation_date\":\"2023-09-07T11:09:26-05:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":null,\"order_id\":\"F550E0BA9E1C4E8BB4A5ED0AC23A952D_B0OE7KAQCT_1694102958.3594\",\"due_date\":\"2023-09-07T23:09:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-07T11:09:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjft2vcudnnan5obrc8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 16:09:53','2023-09-07 16:09:53'),(8990,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-07T10:12:31-06:00\",\"transaction\":{\"id\":\"trjft2vcudnnan5obrc8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-07T11:09:26-06:00\",\"operation_date\":\"2023-09-07T11:10:00-06:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"F550E0BA9E1C4E8BB4A5ED0AC23A952D_B0OE7KAQCT_1694102958.3594\",\"due_date\":\"2023-09-07T23:09:26-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-07T11:09:26-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 16:12:32','2023-09-07 16:12:32'),(8991,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T11:59:05-05:00\",\"transaction\":{\"id\":\"trfetbqoqmy3yl9odsui\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-07T11:58:09-05:00\",\"operation_date\":\"2023-09-07T11:58:09-05:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":null,\"order_id\":\"F550E0BA9E1C4E8BB4A5ED0AC23A952D_B0OE7KAQCT_1694105885.4251\",\"due_date\":\"2023-09-07T23:58:09-05:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfetbqoqmy3yl9odsui/redirect/\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-07T11:58:09-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 16:59:06','2023-09-07 16:59:06'),(8992,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T12:01:19-05:00\",\"transaction\":{\"id\":\"trfetbqoqmy3yl9odsui\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"147214928\",\"creation_date\":\"2023-09-07T11:58:09-05:00\",\"operation_date\":\"2023-09-07T12:01:09-05:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":null,\"order_id\":\"F550E0BA9E1C4E8BB4A5ED0AC23A952D_B0OE7KAQCT_1694105885.4251\",\"due_date\":\"2023-09-07T23:58:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-07T11:58:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 17:01:20','2023-09-07 17:01:20'),(8993,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  901\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T12:14:57-05:00\",\"transaction\":{\"id\":\"trgb5l8xxek6ekwmsnud\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-07T12:14:57-05:00\",\"operation_date\":\"2023-09-07T12:14:57-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Rojas Madrid (1011401910)\",\"error_message\":null,\"order_id\":\"740A02D0786A4239A62076F650CD26DA_1C06DQXVM4_1694106893.8185\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgb5l8xxek6ekwmsnud/card_capture\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"Rojas Madrid\",\"email\":\"meridafergus201@gmail.com\",\"phone_number\":\"3203306007\",\"address\":null,\"creation_date\":\"2023-09-07T12:14:57-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"card\"}}',NULL,NULL,'2023-09-07 17:14:58','2023-09-07 17:14:58'),(8994,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1159\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T12:22:53-05:00\",\"transaction\":{\"id\":\"trgb5l8xxek6ekwmsnud\",\"authorization\":\"122252\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-07T12:14:57-05:00\",\"operation_date\":\"2023-09-07T12:22:52-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Rojas Madrid (1011401910)\",\"error_message\":null,\"order_id\":\"740A02D0786A4239A62076F650CD26DA_1C06DQXVM4_1694106893.8185\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5384\",\"holder_name\":\"Jose David dominguez \",\"expiration_year\":\"27\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"Rojas Madrid\",\"email\":\"meridafergus201@gmail.com\",\"phone_number\":\"3203306007\",\"address\":null,\"creation_date\":\"2023-09-07T12:14:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgb5l8xxek6ekwmsnud/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-07 17:22:53','2023-09-07 17:22:53'),(8995,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T13:29:42-05:00\",\"transaction\":{\"id\":\"trcvcu3djt2p3fdxicel\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-07T13:29:08-05:00\",\"operation_date\":\"2023-09-07T13:29:08-05:00\",\"description\":\"Pago Mensual academia: JUAN JOSÉ LONDOÑO GRACIANO (1036457036)\",\"error_message\":null,\"order_id\":\"79F69230354B71206FB723C571CCE58B_6RBNDI9PYA_1694111341.5321\",\"due_date\":\"2023-09-08T01:29:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BIBIANA\",\"last_name\":\"GRACIANO VALENCIA\",\"email\":\"vivianagraciano.82@gmail.com\",\"phone_number\":\"3122193283\",\"address\":null,\"creation_date\":\"2023-09-07T13:29:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcvcu3djt2p3fdxicel/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 18:29:43','2023-09-07 18:29:43'),(8996,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T12:30:37-06:00\",\"transaction\":{\"id\":\"trcvcu3djt2p3fdxicel\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"147433521\",\"creation_date\":\"2023-09-07T13:29:08-06:00\",\"operation_date\":\"2023-09-07T13:30:22-06:00\",\"description\":\"Pago Mensual academia: JUAN JOSÉ LONDOÑO GRACIANO (1036457036)\",\"error_message\":null,\"order_id\":\"79F69230354B71206FB723C571CCE58B_6RBNDI9PYA_1694111341.5321\",\"due_date\":\"2023-09-08T01:29:08-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BIBIANA\",\"last_name\":\"GRACIANO VALENCIA\",\"email\":\"vivianagraciano.82@gmail.com\",\"phone_number\":\"3122193283\",\"address\":null,\"creation_date\":\"2023-09-07T13:29:08-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 18:30:38','2023-09-07 18:30:38'),(8997,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T16:02:22-05:00\",\"transaction\":{\"id\":\"trst3xttwpfolfbkgcjg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-07T15:59:45-05:00\",\"operation_date\":\"2023-09-07T15:59:45-05:00\",\"description\":\"Pago Mensual academia: Nicolas Quinchia Patiño (1034927231)\",\"error_message\":null,\"order_id\":\"ACFF1AF62D0F91F4BE73F4857552D70C_A8TZDRB7L4_1694120381.8536\",\"due_date\":\"2023-09-08T03:59:45-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Quinchia Patiño\",\"email\":\"npatinon.2002@gmail.com\",\"phone_number\":\"3042901987\",\"address\":null,\"creation_date\":\"2023-09-07T15:59:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trst3xttwpfolfbkgcjg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 21:02:23','2023-09-07 21:02:23'),(8998,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T15:03:21-06:00\",\"transaction\":{\"id\":\"trst3xttwpfolfbkgcjg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"147821308\",\"creation_date\":\"2023-09-07T15:59:45-06:00\",\"operation_date\":\"2023-09-07T16:03:06-06:00\",\"description\":\"Pago Mensual academia: Nicolas Quinchia Patiño (1034927231)\",\"error_message\":null,\"order_id\":\"ACFF1AF62D0F91F4BE73F4857552D70C_A8TZDRB7L4_1694120381.8536\",\"due_date\":\"2023-09-08T03:59:45-06:00\",\"amount\":105000.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Quinchia Patiño\",\"email\":\"npatinon.2002@gmail.com\",\"phone_number\":\"3042901987\",\"address\":null,\"creation_date\":\"2023-09-07T15:59:45-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 21:03:22','2023-09-07 21:03:22'),(8999,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  903\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T16:34:53-05:00\",\"transaction\":{\"id\":\"trxa2akdjatsnskeoxrl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-07T16:34:53-05:00\",\"operation_date\":\"2023-09-07T16:34:53-05:00\",\"description\":\"Pago Mensual academia: Isaac Loaiza Monsalve (1017938265)\",\"error_message\":null,\"order_id\":\"C56A022B15250525F8B9BDFC41A13152_XIPY19K48T_1694122489.4937\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Carolina\",\"last_name\":\"Monsalve Estrada\",\"email\":\"diana.monsalve8@gmail.com\",\"phone_number\":\"3135756382\",\"address\":null,\"creation_date\":\"2023-09-07T16:34:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxa2akdjatsnskeoxrl/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-07 21:34:53','2023-09-07 21:34:53'),(9000,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1234\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T16:36:11-05:00\",\"transaction\":{\"id\":\"trxa2akdjatsnskeoxrl\",\"authorization\":\"163610\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":10,\"conciliated\":true,\"creation_date\":\"2023-09-07T16:34:53-05:00\",\"operation_date\":\"2023-09-07T16:36:09-05:00\",\"description\":\"Pago Mensual academia: Isaac Loaiza Monsalve (1017938265)\",\"error_message\":null,\"order_id\":\"C56A022B15250525F8B9BDFC41A13152_XIPY19K48T_1694122489.4937\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"428385XXXXXX8645\",\"holder_name\":\"Diana c Monsalve e\",\"expiration_year\":\"24\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":10,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Diana Carolina\",\"last_name\":\"Monsalve Estrada\",\"email\":\"diana.monsalve8@gmail.com\",\"phone_number\":\"3135756382\",\"address\":null,\"creation_date\":\"2023-09-07T16:34:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxa2akdjatsnskeoxrl/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-07 21:36:12','2023-09-07 21:36:12'),(9001,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T18:33:38-05:00\",\"transaction\":{\"id\":\"trskp1uunyx37ouvfzle\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-07T18:32:45-05:00\",\"operation_date\":\"2023-09-07T18:32:45-05:00\",\"description\":\"Pago Mensual academia: Pedro Botero Montoya (1035003729)\",\"error_message\":null,\"order_id\":\"298F587406C914FAD5373BB689300433_U6JXSHZ3N2_1694129562.9949\",\"due_date\":\"2023-09-08T06:32:45-05:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trskp1uunyx37ouvfzle/redirect/\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Botero Montoya\",\"email\":\"linamonty@hotmail.com\",\"phone_number\":\"3176567400\",\"address\":null,\"creation_date\":\"2023-09-07T18:32:45-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 23:33:38','2023-09-07 23:33:38'),(9002,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T18:35:25-05:00\",\"transaction\":{\"id\":\"trskp1uunyx37ouvfzle\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"148165451\",\"creation_date\":\"2023-09-07T18:32:45-05:00\",\"operation_date\":\"2023-09-07T18:35:03-05:00\",\"description\":\"Pago Mensual academia: Pedro Botero Montoya (1035003729)\",\"error_message\":null,\"order_id\":\"298F587406C914FAD5373BB689300433_U6JXSHZ3N2_1694129562.9949\",\"due_date\":\"2023-09-08T06:32:45-05:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Botero Montoya\",\"email\":\"linamonty@hotmail.com\",\"phone_number\":\"3176567400\",\"address\":null,\"creation_date\":\"2023-09-07T18:32:45-05:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-07 23:35:26','2023-09-07 23:35:26'),(9003,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T20:32:49-05:00\",\"transaction\":{\"id\":\"trtxcsxxkrufvhefjk3j\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-07T20:31:45-05:00\",\"operation_date\":\"2023-09-07T20:31:45-05:00\",\"description\":\"Pago Mensual academia: simon puerta gomez (1015189399)\",\"error_message\":null,\"order_id\":\"_1694136701.9665\",\"due_date\":\"2023-09-08T08:31:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Johana\",\"last_name\":\"Gomez Rincon\",\"email\":\"johanita_gomez21@hotmail.com\",\"phone_number\":\"3001590927\",\"address\":null,\"creation_date\":\"2023-09-07T20:31:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtxcsxxkrufvhefjk3j/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 01:32:50','2023-09-08 01:32:50'),(9004,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  771\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T20:33:56-05:00\",\"transaction\":{\"id\":\"trtxcsxxkrufvhefjk3j\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"148381492\",\"creation_date\":\"2023-09-07T20:31:45-05:00\",\"operation_date\":\"2023-09-07T20:33:48-05:00\",\"description\":\"Pago Mensual academia: simon puerta gomez (1015189399)\",\"error_message\":null,\"order_id\":\"_1694136701.9665\",\"due_date\":\"2023-09-08T08:31:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Johana\",\"last_name\":\"Gomez Rincon\",\"email\":\"johanita_gomez21@hotmail.com\",\"phone_number\":\"3001590927\",\"address\":null,\"creation_date\":\"2023-09-07T20:31:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 01:33:57','2023-09-08 01:33:57'),(9005,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  903\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T21:09:28-05:00\",\"transaction\":{\"id\":\"tr46pedkob3f99g8ycng\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-07T21:09:28-05:00\",\"operation_date\":\"2023-09-07T21:09:28-05:00\",\"description\":\"Pago Mensual academia: thiago Ramirez barbosa (1010848956)\",\"error_message\":null,\"order_id\":\"F8F122D50EBA11C3AF5607575B277BC6_9YJS6A7I3U_1694138945.809\",\"amount\":95000.00,\"customer\":{\"name\":\"julian esteban\",\"last_name\":\"Ramírez moreno\",\"email\":\"ramirezjulian9258@gmail.com\",\"phone_number\":\"3028491192\",\"address\":null,\"creation_date\":\"2023-09-07T21:09:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr46pedkob3f99g8ycng/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-08 02:09:29','2023-09-08 02:09:29'),(9006,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1156\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T21:11:21-05:00\",\"transaction\":{\"id\":\"tr46pedkob3f99g8ycng\",\"authorization\":\"211121\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-07T21:09:28-05:00\",\"operation_date\":\"2023-09-07T21:11:20-05:00\",\"description\":\"Pago Mensual academia: thiago Ramirez barbosa (1010848956)\",\"error_message\":null,\"order_id\":\"F8F122D50EBA11C3AF5607575B277BC6_9YJS6A7I3U_1694138945.809\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX2023\",\"holder_name\":\"Yulieth Barbosa \",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":95000.00,\"customer\":{\"name\":\"julian esteban\",\"last_name\":\"Ramírez moreno\",\"email\":\"ramirezjulian9258@gmail.com\",\"phone_number\":\"3028491192\",\"address\":null,\"creation_date\":\"2023-09-07T21:09:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr46pedkob3f99g8ycng/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-08 02:11:22','2023-09-08 02:11:22'),(9007,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-07T22:17:45-05:00\",\"transaction\":{\"id\":\"tr5vq7tmymuexhzmnfp9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-07T22:15:54-05:00\",\"operation_date\":\"2023-09-07T22:15:54-05:00\",\"description\":\"Pago Mensual academia: martin perez castaño (1033200095)\",\"error_message\":null,\"order_id\":\"13E36F06C66134AD65F532E90D898545_WXUYOBSMHQ_1694142949.6936\",\"due_date\":\"2023-09-08T10:15:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"perez\",\"email\":\"lizethagudelo19@hotmail.com\",\"phone_number\":\"3017485555\",\"address\":null,\"creation_date\":\"2023-09-07T22:15:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5vq7tmymuexhzmnfp9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 03:17:45','2023-09-08 03:17:45'),(9008,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-07T21:21:08-06:00\",\"transaction\":{\"id\":\"tr5vq7tmymuexhzmnfp9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"148536342\",\"creation_date\":\"2023-09-07T22:15:54-06:00\",\"operation_date\":\"2023-09-07T21:19:56-06:00\",\"description\":\"Pago Mensual academia: martin perez castaño (1033200095)\",\"error_message\":null,\"order_id\":\"13E36F06C66134AD65F532E90D898545_WXUYOBSMHQ_1694142949.6936\",\"due_date\":\"2023-09-08T10:15:54-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"perez\",\"email\":\"lizethagudelo19@hotmail.com\",\"phone_number\":\"3017485555\",\"address\":null,\"creation_date\":\"2023-09-07T22:15:54-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 03:21:09','2023-09-08 03:21:09'),(9009,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T05:48:03-05:00\",\"transaction\":{\"id\":\"trzlrxrmhuwxaogw8j04\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T05:47:03-05:00\",\"operation_date\":\"2023-09-08T05:47:03-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Gómez Padilla (1020314565)\",\"error_message\":null,\"order_id\":\"70FC5F043205720A49D973D280EB83E7_NW5QL9FSIR_1694170018.8564\",\"due_date\":\"2023-09-08T17:47:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Gomez Padilla\",\"email\":\"lilianapad22@gmail.com\",\"phone_number\":\"3126163463\",\"address\":null,\"creation_date\":\"2023-09-08T05:47:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzlrxrmhuwxaogw8j04/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 10:48:04','2023-09-08 10:48:04'),(9010,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T05:49:22-05:00\",\"transaction\":{\"id\":\"trzlrxrmhuwxaogw8j04\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"148648742\",\"creation_date\":\"2023-09-08T05:47:03-05:00\",\"operation_date\":\"2023-09-08T05:49:13-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Gómez Padilla (1020314565)\",\"error_message\":null,\"order_id\":\"70FC5F043205720A49D973D280EB83E7_NW5QL9FSIR_1694170018.8564\",\"due_date\":\"2023-09-08T17:47:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Gomez Padilla\",\"email\":\"lilianapad22@gmail.com\",\"phone_number\":\"3126163463\",\"address\":null,\"creation_date\":\"2023-09-08T05:47:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 10:49:22','2023-09-08 10:49:22'),(9011,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T07:37:18-05:00\",\"transaction\":{\"id\":\"trml3m0ra3mfi1armygz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T07:36:23-05:00\",\"operation_date\":\"2023-09-08T07:36:23-05:00\",\"description\":\"Pago Mensual academia: emilio restrepo moscoso (1022008070)\",\"error_message\":null,\"order_id\":\"394868456436DBE743E4380554C0493A_3KGX6L8RJ1_1694176580.0812\",\"due_date\":\"2023-09-08T19:36:23-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"EMILIO\",\"last_name\":\"RESTREPO MOSCOSO\",\"email\":\"maite.mos@hotmail.com\",\"phone_number\":\"3012736979\",\"address\":null,\"creation_date\":\"2023-09-08T07:36:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trml3m0ra3mfi1armygz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 12:37:19','2023-09-08 12:37:19'),(9012,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T07:39:38-05:00\",\"transaction\":{\"id\":\"trml3m0ra3mfi1armygz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"148729262\",\"creation_date\":\"2023-09-08T07:36:23-05:00\",\"operation_date\":\"2023-09-08T07:39:20-05:00\",\"description\":\"Pago Mensual academia: emilio restrepo moscoso (1022008070)\",\"error_message\":null,\"order_id\":\"394868456436DBE743E4380554C0493A_3KGX6L8RJ1_1694176580.0812\",\"due_date\":\"2023-09-08T19:36:23-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"EMILIO\",\"last_name\":\"RESTREPO MOSCOSO\",\"email\":\"maite.mos@hotmail.com\",\"phone_number\":\"3012736979\",\"address\":null,\"creation_date\":\"2023-09-08T07:36:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 12:39:39','2023-09-08 12:39:39'),(9013,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  875\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T09:46:51-05:00\",\"transaction\":{\"id\":\"trbtywsynuzno1iqxi4n\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-08T09:46:51-05:00\",\"operation_date\":\"2023-09-08T09:46:51-05:00\",\"description\":\"Pago Mensual academia: Tomás Usuga Rivera (1035012845)\",\"error_message\":null,\"order_id\":\"74C407E263578D03D02C1123AA730B52_JUA9FMTCX8_1694184408.931\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Usuga\",\"email\":\"jorge063@hotmail.com\",\"phone_number\":\"3188581589\",\"address\":null,\"creation_date\":\"2023-09-08T09:46:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbtywsynuzno1iqxi4n/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-08 14:46:51','2023-09-08 14:46:51'),(9014,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1139\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T09:47:32-05:00\",\"transaction\":{\"id\":\"trbtywsynuzno1iqxi4n\",\"authorization\":\"N37RNL\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-08T09:46:51-05:00\",\"operation_date\":\"2023-09-08T09:47:30-05:00\",\"description\":\"Pago Mensual academia: Tomás Usuga Rivera (1035012845)\",\"error_message\":null,\"order_id\":\"74C407E263578D03D02C1123AA730B52_JUA9FMTCX8_1694184408.931\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555691XXXXXX2675\",\"holder_name\":\"Jorge Armando Usuga Hidalgo \",\"expiration_year\":\"27\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NIUM PTE. LTD.\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Usuga\",\"email\":\"jorge063@hotmail.com\",\"phone_number\":\"3188581589\",\"address\":null,\"creation_date\":\"2023-09-08T09:46:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbtywsynuzno1iqxi4n/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-08 14:47:33','2023-09-08 14:47:33'),(9015,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T10:26:44-05:00\",\"transaction\":{\"id\":\"trhx6obtn3h8bsxiawy3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T10:25:58-05:00\",\"operation_date\":\"2023-09-08T10:25:58-05:00\",\"description\":\"Pago Mensual academia: Anthony Ramirez Rendon (1038874697)\",\"error_message\":null,\"order_id\":\"E5AFB0F2DBC6D39B312D7406054CB4C6_0KX9AWBF8I_1694186751.2505\",\"due_date\":\"2023-09-08T22:25:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Rendon\",\"email\":\"tatirendonc@gmail.com\",\"phone_number\":\"3008949106\",\"address\":null,\"creation_date\":\"2023-09-08T10:25:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhx6obtn3h8bsxiawy3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 15:26:44','2023-09-08 15:26:44'),(9016,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T10:27:53-05:00\",\"transaction\":{\"id\":\"trhx6obtn3h8bsxiawy3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"149072169\",\"creation_date\":\"2023-09-08T10:25:58-05:00\",\"operation_date\":\"2023-09-08T10:27:46-05:00\",\"description\":\"Pago Mensual academia: Anthony Ramirez Rendon (1038874697)\",\"error_message\":null,\"order_id\":\"E5AFB0F2DBC6D39B312D7406054CB4C6_0KX9AWBF8I_1694186751.2505\",\"due_date\":\"2023-09-08T22:25:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Rendon\",\"email\":\"tatirendonc@gmail.com\",\"phone_number\":\"3008949106\",\"address\":null,\"creation_date\":\"2023-09-08T10:25:58-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 15:27:54','2023-09-08 15:27:54'),(9017,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T11:26:44-05:00\",\"transaction\":{\"id\":\"trh2qrodygkf8vfdsgnm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T11:25:42-05:00\",\"operation_date\":\"2023-09-08T11:25:42-05:00\",\"description\":\"Pago Mensual academia: Emmanuel alvarez ramirez (32209206)\",\"error_message\":null,\"order_id\":\"3FA146219C48A4393AACE23E8F353125_6IHTO439EV_1694190330.3944\",\"due_date\":\"2023-09-08T23:25:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isabel\",\"last_name\":\"ramirez arbelaez\",\"email\":\"Isabel.ramirez.arbelaez@hotmail.com\",\"phone_number\":\"3015830669\",\"address\":null,\"creation_date\":\"2023-09-08T11:25:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trh2qrodygkf8vfdsgnm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 16:26:45','2023-09-08 16:26:45'),(9018,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T11:28:03-05:00\",\"transaction\":{\"id\":\"trh2qrodygkf8vfdsgnm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"149231040\",\"creation_date\":\"2023-09-08T11:25:42-05:00\",\"operation_date\":\"2023-09-08T11:27:46-05:00\",\"description\":\"Pago Mensual academia: Emmanuel alvarez ramirez (32209206)\",\"error_message\":null,\"order_id\":\"3FA146219C48A4393AACE23E8F353125_6IHTO439EV_1694190330.3944\",\"due_date\":\"2023-09-08T23:25:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isabel\",\"last_name\":\"ramirez arbelaez\",\"email\":\"Isabel.ramirez.arbelaez@hotmail.com\",\"phone_number\":\"3015830669\",\"address\":null,\"creation_date\":\"2023-09-08T11:25:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 16:28:03','2023-09-08 16:28:03'),(9019,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T12:50:19-05:00\",\"transaction\":{\"id\":\"trjwzsszegnzoyxtgox8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T12:49:34-05:00\",\"operation_date\":\"2023-09-08T12:49:34-05:00\",\"description\":\"Pago Mensual academia: Thiago Hinestroza Rengifo (1017939994)\",\"error_message\":null,\"order_id\":\"29E1C59BE16C852670E3BE302E8C303B_6A7RIXBYK5_1694195371.2278\",\"due_date\":\"2023-09-09T00:49:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dorian\",\"last_name\":\"Hinestroza Mosquera\",\"email\":\"afrito@gmail.com\",\"phone_number\":\"3147917163\",\"address\":null,\"creation_date\":\"2023-09-08T12:49:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjwzsszegnzoyxtgox8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 17:50:19','2023-09-08 17:50:19'),(9020,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T12:51:40-05:00\",\"transaction\":{\"id\":\"trjwzsszegnzoyxtgox8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"149435832\",\"creation_date\":\"2023-09-08T12:49:34-05:00\",\"operation_date\":\"2023-09-08T12:51:32-05:00\",\"description\":\"Pago Mensual academia: Thiago Hinestroza Rengifo (1017939994)\",\"error_message\":null,\"order_id\":\"29E1C59BE16C852670E3BE302E8C303B_6A7RIXBYK5_1694195371.2278\",\"due_date\":\"2023-09-09T00:49:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dorian\",\"last_name\":\"Hinestroza Mosquera\",\"email\":\"afrito@gmail.com\",\"phone_number\":\"3147917163\",\"address\":null,\"creation_date\":\"2023-09-08T12:49:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 17:51:41','2023-09-08 17:51:41'),(9021,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T13:49:18-05:00\",\"transaction\":{\"id\":\"trk2vziwv7q8ovsjb310\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T13:48:20-05:00\",\"operation_date\":\"2023-09-08T13:48:20-05:00\",\"description\":\"Pago Mensual academia: Pedro Piedrahita (1021943243)\",\"error_message\":null,\"order_id\":\"EC36E2BA64F11C9E910E0353E0836D81_NXKP4SIG0B_1694198897.7322\",\"due_date\":\"2023-09-09T01:48:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Piedrahita Ruiz\",\"email\":\"jspiedrahita@hotmail.com\",\"phone_number\":\"3137637975\",\"address\":null,\"creation_date\":\"2023-09-08T13:48:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trk2vziwv7q8ovsjb310/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 18:49:18','2023-09-08 18:49:18'),(9022,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T13:50:28-05:00\",\"transaction\":{\"id\":\"trk2vziwv7q8ovsjb310\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"149563087\",\"creation_date\":\"2023-09-08T13:48:20-05:00\",\"operation_date\":\"2023-09-08T13:50:22-05:00\",\"description\":\"Pago Mensual academia: Pedro Piedrahita (1021943243)\",\"error_message\":null,\"order_id\":\"EC36E2BA64F11C9E910E0353E0836D81_NXKP4SIG0B_1694198897.7322\",\"due_date\":\"2023-09-09T01:48:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Piedrahita Ruiz\",\"email\":\"jspiedrahita@hotmail.com\",\"phone_number\":\"3137637975\",\"address\":null,\"creation_date\":\"2023-09-08T13:48:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 18:50:28','2023-09-08 18:50:28'),(9023,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T14:08:40-05:00\",\"transaction\":{\"id\":\"trerwqrqkhb5gt02dhyy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T14:07:56-05:00\",\"operation_date\":\"2023-09-08T14:07:56-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"D1C38A09ACC34845C6BE3A127A5AACAF_E-64FB7104-34_1694200073.1483\",\"due_date\":\"2023-09-09T02:07:56-05:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Arenas\",\"email\":\"arenascr7@hotmail.com\",\"phone_number\":\"3014576344\",\"address\":null,\"creation_date\":\"2023-09-08T14:07:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trerwqrqkhb5gt02dhyy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 19:08:41','2023-09-08 19:08:41'),(9024,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  772\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T13:09:30-06:00\",\"transaction\":{\"id\":\"trerwqrqkhb5gt02dhyy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"149605760\",\"creation_date\":\"2023-09-08T14:07:56-06:00\",\"operation_date\":\"2023-09-08T13:09:29-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"D1C38A09ACC34845C6BE3A127A5AACAF_E-64FB7104-34_1694200073.1483\",\"due_date\":\"2023-09-09T02:07:56-06:00\",\"amount\":146900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Arenas\",\"email\":\"arenascr7@hotmail.com\",\"phone_number\":\"3014576344\",\"address\":null,\"creation_date\":\"2023-09-08T14:07:56-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 19:09:31','2023-09-08 19:09:31'),(9025,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  880\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T14:26:47-05:00\",\"transaction\":{\"id\":\"traka9kqnuh1vgikvw3w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-08T14:26:47-05:00\",\"operation_date\":\"2023-09-08T14:26:47-05:00\",\"description\":\"Pago Mensual academia: isaac rojas pineda (1018252036)\",\"error_message\":null,\"order_id\":\"DA21BAE82C02D1E2B8168D57CD3FBAB7_T85RVN7UKD_1694201200.6748\",\"amount\":165900.00,\"customer\":{\"name\":\"Luisa\",\"last_name\":\"Nuñez\",\"email\":\"luisanunez1697@gmail.com\",\"phone_number\":\"3042901783\",\"address\":null,\"creation_date\":\"2023-09-08T14:26:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traka9kqnuh1vgikvw3w/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-08 19:26:48','2023-09-08 19:26:48'),(9026,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1130\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T14:27:54-05:00\",\"transaction\":{\"id\":\"traka9kqnuh1vgikvw3w\",\"authorization\":\"142754\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-08T14:26:47-05:00\",\"operation_date\":\"2023-09-08T14:27:53-05:00\",\"description\":\"Pago Mensual academia: isaac rojas pineda (1018252036)\",\"error_message\":null,\"order_id\":\"DA21BAE82C02D1E2B8168D57CD3FBAB7_T85RVN7UKD_1694201200.6748\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX7170\",\"holder_name\":\"Tatiana Rojas\",\"expiration_year\":\"26\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Luisa\",\"last_name\":\"Nuñez\",\"email\":\"luisanunez1697@gmail.com\",\"phone_number\":\"3042901783\",\"address\":null,\"creation_date\":\"2023-09-08T14:26:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traka9kqnuh1vgikvw3w/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-08 19:27:55','2023-09-08 19:27:55'),(9027,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T15:26:44-05:00\",\"transaction\":{\"id\":\"tr3lt82kqcxrwbwsm0qb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T15:26:05-05:00\",\"operation_date\":\"2023-09-08T15:26:05-05:00\",\"description\":\"Pago Mensual academia: Juan Manuel Lopez Garcia (1027663083)\",\"error_message\":null,\"order_id\":\"F9FE83F1EA3DD2108188FB7BF8AA5B3C_XU2HV1908K_1694204762.7655\",\"due_date\":\"2023-09-09T03:26:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Andrea\",\"last_name\":\"Garcia\",\"email\":\"valentina.garcia1605@gmail.com\",\"phone_number\":\"3113982541\",\"address\":null,\"creation_date\":\"2023-09-08T15:26:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3lt82kqcxrwbwsm0qb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 20:26:44','2023-09-08 20:26:44'),(9028,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T15:27:55-05:00\",\"transaction\":{\"id\":\"tr3lt82kqcxrwbwsm0qb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"149798595\",\"creation_date\":\"2023-09-08T15:26:05-05:00\",\"operation_date\":\"2023-09-08T15:27:50-05:00\",\"description\":\"Pago Mensual academia: Juan Manuel Lopez Garcia (1027663083)\",\"error_message\":null,\"order_id\":\"F9FE83F1EA3DD2108188FB7BF8AA5B3C_XU2HV1908K_1694204762.7655\",\"due_date\":\"2023-09-09T03:26:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Andrea\",\"last_name\":\"Garcia\",\"email\":\"valentina.garcia1605@gmail.com\",\"phone_number\":\"3113982541\",\"address\":null,\"creation_date\":\"2023-09-08T15:26:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 20:27:55','2023-09-08 20:27:55'),(9029,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  884\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T15:43:00-05:00\",\"transaction\":{\"id\":\"tr6v6wztdo2g4a4jvaaa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T15:41:18-05:00\",\"operation_date\":\"2023-09-08T15:41:18-05:00\",\"description\":\"Pago Mensual academia: Alejandro Alonso Vargas (1023646217)\",\"error_message\":null,\"order_id\":\"_1694204779.6295\",\"due_date\":\"2023-09-09T03:41:18-05:00\",\"amount\":31300.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Alonso\",\"email\":\"alexanderalonso1789@gmail.com\",\"phone_number\":\"3136451651\",\"address\":null,\"creation_date\":\"2023-09-08T15:41:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6v6wztdo2g4a4jvaaa/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 20:43:01','2023-09-08 20:43:01'),(9030,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  767\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T14:48:16-06:00\",\"transaction\":{\"id\":\"tr6v6wztdo2g4a4jvaaa\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"149840989\",\"creation_date\":\"2023-09-08T15:41:18-06:00\",\"operation_date\":\"2023-09-08T14:45:22-06:00\",\"description\":\"Pago Mensual academia: Alejandro Alonso Vargas (1023646217)\",\"error_message\":null,\"order_id\":\"_1694204779.6295\",\"due_date\":\"2023-09-09T03:41:18-06:00\",\"amount\":31300.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Alonso\",\"email\":\"alexanderalonso1789@gmail.com\",\"phone_number\":\"3136451651\",\"address\":null,\"creation_date\":\"2023-09-08T15:41:18-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 20:48:17','2023-09-08 20:48:17'),(9031,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T15:50:27-05:00\",\"transaction\":{\"id\":\"trmyr0vqjuejenbg8wyn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T15:48:55-05:00\",\"operation_date\":\"2023-09-08T15:48:55-05:00\",\"description\":\"Pago Mensual academia: andres felipe ibañez jaraba (1041697312)\",\"error_message\":null,\"order_id\":\"C3810D4A9513B028FC0F2A83CB6D7B50_RF7U063SXI_1694206124.1397\",\"due_date\":\"2023-09-09T03:48:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Katia \",\"last_name\":\"Jaraba\",\"email\":\"katyajaraba.2207@gmail.com\",\"phone_number\":\"3012134574\",\"address\":null,\"creation_date\":\"2023-09-08T15:48:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmyr0vqjuejenbg8wyn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 20:50:28','2023-09-08 20:50:28'),(9032,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T14:54:21-06:00\",\"transaction\":{\"id\":\"trmyr0vqjuejenbg8wyn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"149861213\",\"creation_date\":\"2023-09-08T15:48:55-06:00\",\"operation_date\":\"2023-09-07T23:00:00-06:00\",\"description\":\"Pago Mensual academia: andres felipe ibañez jaraba (1041697312)\",\"error_message\":null,\"order_id\":\"C3810D4A9513B028FC0F2A83CB6D7B50_RF7U063SXI_1694206124.1397\",\"due_date\":\"2023-09-09T03:48:55-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Katia \",\"last_name\":\"Jaraba\",\"email\":\"katyajaraba.2207@gmail.com\",\"phone_number\":\"3012134574\",\"address\":null,\"creation_date\":\"2023-09-08T15:48:55-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 20:54:22','2023-09-08 20:54:22'),(9033,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T16:58:59-05:00\",\"transaction\":{\"id\":\"trk51rtf8y8dubbft1gz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T16:58:09-05:00\",\"operation_date\":\"2023-09-08T16:58:09-05:00\",\"description\":\"Pago Inscripción academia: Eliana Alvarez (1040749876)\",\"error_message\":null,\"order_id\":\"DA4F21D00B1992E0B25F463B722DCC6A_74K2UOJ5P3_1694210248.74\",\"due_date\":\"2023-09-09T04:58:09-05:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Eliana María\",\"last_name\":\"Alvarez\",\"email\":\"elianaalvarez2@hotmail.com\",\"phone_number\":\"3002965986\",\"address\":null,\"creation_date\":\"2023-09-08T16:58:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trk51rtf8y8dubbft1gz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 21:59:00','2023-09-08 21:59:00'),(9034,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  846\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-08T16:59:14-05:00\",\"transaction\":{\"id\":\"trk51rtf8y8dubbft1gz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-08T16:58:09-05:00\",\"operation_date\":\"2023-09-08T00:00:00-05:00\",\"description\":\"Pago Inscripción academia: Eliana Alvarez (1040749876)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"DA4F21D00B1992E0B25F463B722DCC6A_74K2UOJ5P3_1694210248.74\",\"due_date\":\"2023-09-09T04:58:09-05:00\",\"error_code\":1007,\"amount\":431000.00,\"customer\":{\"name\":\"Eliana María\",\"last_name\":\"Alvarez\",\"email\":\"elianaalvarez2@hotmail.com\",\"phone_number\":\"3002965986\",\"address\":null,\"creation_date\":\"2023-09-08T16:58:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 21:59:14','2023-09-08 21:59:14'),(9035,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T17:16:15-05:00\",\"transaction\":{\"id\":\"trr6l2nir2pv6lpv6es0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-08T17:16:15-05:00\",\"operation_date\":\"2023-09-08T17:16:15-05:00\",\"description\":\"Pago Mensual academia: mathias falcao agudelo buitrago (1038266640)\",\"error_message\":null,\"order_id\":\"69EBA34671B3EF1EF38EE85CAAE6B2A1_DJ6CNZ1V5G_1694211370.7985\",\"amount\":165900.00,\"customer\":{\"name\":\"julian david\",\"last_name\":\"agudelo upegui\",\"email\":\"juliupegui1@hotmail.com\",\"phone_number\":\"3106505783\",\"address\":null,\"creation_date\":\"2023-09-08T17:16:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr6l2nir2pv6lpv6es0/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-08 22:16:16','2023-09-08 22:16:16'),(9036,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1158\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T17:17:08-05:00\",\"transaction\":{\"id\":\"trr6l2nir2pv6lpv6es0\",\"authorization\":\"322376\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-08T17:16:15-05:00\",\"operation_date\":\"2023-09-08T17:17:06-05:00\",\"description\":\"Pago Mensual academia: mathias falcao agudelo buitrago (1038266640)\",\"error_message\":null,\"order_id\":\"69EBA34671B3EF1EF38EE85CAAE6B2A1_DJ6CNZ1V5G_1694211370.7985\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491511XXXXXX8587\",\"holder_name\":\"Julian david agudelo\",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"julian david\",\"last_name\":\"agudelo upegui\",\"email\":\"juliupegui1@hotmail.com\",\"phone_number\":\"3106505783\",\"address\":null,\"creation_date\":\"2023-09-08T17:16:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr6l2nir2pv6lpv6es0/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-08 22:17:08','2023-09-08 22:17:08'),(9037,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T18:32:28-05:00\",\"transaction\":{\"id\":\"trgyi9bqm2xbbtvfdeuh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T18:31:32-05:00\",\"operation_date\":\"2023-09-08T18:31:32-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rendon Marin (1032100475)\",\"error_message\":null,\"order_id\":\"2E5C2CB8D13E8FBA78D95211440BA326_ZC9RY3GUQP_1694215887.3368\",\"due_date\":\"2023-09-09T06:31:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana carolina\",\"last_name\":\"marin arango\",\"email\":\"caritoiq@yahoo.com\",\"phone_number\":\"3202820297\",\"address\":null,\"creation_date\":\"2023-09-08T18:31:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgyi9bqm2xbbtvfdeuh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 23:32:29','2023-09-08 23:32:29'),(9038,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T17:36:21-06:00\",\"transaction\":{\"id\":\"trgyi9bqm2xbbtvfdeuh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"150212856\",\"creation_date\":\"2023-09-08T18:31:32-06:00\",\"operation_date\":\"2023-09-08T17:33:26-06:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rendon Marin (1032100475)\",\"error_message\":null,\"order_id\":\"2E5C2CB8D13E8FBA78D95211440BA326_ZC9RY3GUQP_1694215887.3368\",\"due_date\":\"2023-09-09T06:31:32-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"diana carolina\",\"last_name\":\"marin arango\",\"email\":\"caritoiq@yahoo.com\",\"phone_number\":\"3202820297\",\"address\":null,\"creation_date\":\"2023-09-08T18:31:32-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 23:36:21','2023-09-08 23:36:21'),(9039,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T18:46:04-05:00\",\"transaction\":{\"id\":\"trkvrnuqppzer2dkwbf2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T18:45:28-05:00\",\"operation_date\":\"2023-09-08T18:45:28-05:00\",\"description\":\"Pago Mensual academia: matias Echeverry Hurtado (1155717169)\",\"error_message\":null,\"order_id\":\"7FA215C9EFEBB3811A7EF58409907899_J4ZMFRUPBE_1694216724.355\",\"due_date\":\"2023-09-09T06:45:28-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Sebastián\",\"last_name\":\"Echeverry\",\"email\":\"sebastian.echeverry.londono@gmail.com\",\"phone_number\":\"3102223363\",\"address\":null,\"creation_date\":\"2023-09-08T18:45:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkvrnuqppzer2dkwbf2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 23:46:04','2023-09-08 23:46:04'),(9040,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T18:47:00-05:00\",\"transaction\":{\"id\":\"trkvrnuqppzer2dkwbf2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"150238912\",\"creation_date\":\"2023-09-08T18:45:28-05:00\",\"operation_date\":\"2023-09-08T18:46:54-05:00\",\"description\":\"Pago Mensual academia: matias Echeverry Hurtado (1155717169)\",\"error_message\":null,\"order_id\":\"7FA215C9EFEBB3811A7EF58409907899_J4ZMFRUPBE_1694216724.355\",\"due_date\":\"2023-09-09T06:45:28-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Sebastián\",\"last_name\":\"Echeverry\",\"email\":\"sebastian.echeverry.londono@gmail.com\",\"phone_number\":\"3102223363\",\"address\":null,\"creation_date\":\"2023-09-08T18:45:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-08 23:47:00','2023-09-08 23:47:00'),(9041,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T20:00:07-05:00\",\"transaction\":{\"id\":\"tr3gvm7ob1pyop83pzka\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T19:58:47-05:00\",\"operation_date\":\"2023-09-08T19:58:47-05:00\",\"description\":\"Pago Mensual academia: Emiliano Zuluaga Gonzalez (1035006037)\",\"error_message\":null,\"order_id\":\"BB702465F3C3141263DDD046C9585B27_XGSVTM72HR_1694221115.4962\",\"due_date\":\"2023-09-09T07:58:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Zuluaga Meneses\",\"email\":\"jzuluagams@hotmail.com\",\"phone_number\":\"3137372476\",\"address\":null,\"creation_date\":\"2023-09-08T19:58:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3gvm7ob1pyop83pzka/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 01:00:08','2023-09-09 01:00:08'),(9042,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T20:02:29-05:00\",\"transaction\":{\"id\":\"tr3gvm7ob1pyop83pzka\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"150367972\",\"creation_date\":\"2023-09-08T19:58:47-05:00\",\"operation_date\":\"2023-09-08T20:01:20-05:00\",\"description\":\"Pago Mensual academia: Emiliano Zuluaga Gonzalez (1035006037)\",\"error_message\":null,\"order_id\":\"BB702465F3C3141263DDD046C9585B27_XGSVTM72HR_1694221115.4962\",\"due_date\":\"2023-09-09T07:58:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Zuluaga Meneses\",\"email\":\"jzuluagams@hotmail.com\",\"phone_number\":\"3137372476\",\"address\":null,\"creation_date\":\"2023-09-08T19:58:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 01:02:30','2023-09-09 01:02:30'),(9043,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T20:05:36-05:00\",\"transaction\":{\"id\":\"trzecihqhgkycuwv3bhs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T20:04:23-05:00\",\"operation_date\":\"2023-09-08T20:04:23-05:00\",\"description\":\"Pago Mensual academia: Emiliano Zuluaga Gonzalez (1035006037)\",\"error_message\":null,\"order_id\":\"7F278AD602C7F47AA76D1BFC90F20263_Z5JS4AEC8Q_1694221460.7174\",\"due_date\":\"2023-09-09T08:04:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan david\",\"last_name\":\"Zuluaga meneses\",\"email\":\"jzuluagams@hotmail.com\",\"phone_number\":\"3137382476\",\"address\":null,\"creation_date\":\"2023-09-08T20:04:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzecihqhgkycuwv3bhs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 01:05:37','2023-09-09 01:05:37'),(9044,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-08T20:06:42-05:00\",\"transaction\":{\"id\":\"trzecihqhgkycuwv3bhs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"150376849\",\"creation_date\":\"2023-09-08T20:04:23-05:00\",\"operation_date\":\"2023-09-08T20:06:20-05:00\",\"description\":\"Pago Mensual academia: Emiliano Zuluaga Gonzalez (1035006037)\",\"error_message\":null,\"order_id\":\"7F278AD602C7F47AA76D1BFC90F20263_Z5JS4AEC8Q_1694221460.7174\",\"due_date\":\"2023-09-09T08:04:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan david\",\"last_name\":\"Zuluaga meneses\",\"email\":\"jzuluagams@hotmail.com\",\"phone_number\":\"3137382476\",\"address\":null,\"creation_date\":\"2023-09-08T20:04:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 01:06:42','2023-09-09 01:06:42'),(9045,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-08T20:47:33-05:00\",\"transaction\":{\"id\":\"trwkwxy0gd9iyzhs3m6z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-08T20:47:00-05:00\",\"operation_date\":\"2023-09-08T20:47:00-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694224016.5365\",\"due_date\":\"2023-09-09T08:47:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-08T20:47:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwkwxy0gd9iyzhs3m6z/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 01:47:34','2023-09-09 01:47:34'),(9046,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  861\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-08T20:09:09-06:00\",\"transaction\":{\"id\":\"trwkwxy0gd9iyzhs3m6z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-08T20:47:00-06:00\",\"operation_date\":\"2023-09-08T19:48:02-06:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694224016.5365\",\"due_date\":\"2023-09-09T08:47:00-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-08T20:47:00-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 02:09:10','2023-09-09 02:09:10'),(9047,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-09T07:16:20-05:00\",\"transaction\":{\"id\":\"trln2ykjrfal1y220lb9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-09T07:15:21-05:00\",\"operation_date\":\"2023-09-09T07:15:21-05:00\",\"description\":\"Pago Mensual academia: Santiago arroyave segura (1034993465)\",\"error_message\":null,\"order_id\":\"B928FEC5932BF2FDDD2CC88C038B8CCB_78AZQEYTKU_1694261717.8359\",\"due_date\":\"2023-09-09T19:15:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Héctor\",\"last_name\":\"arroyave\",\"email\":\"hectorarroyave@gmail.com\",\"phone_number\":\"3006001213\",\"address\":null,\"creation_date\":\"2023-09-09T07:15:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trln2ykjrfal1y220lb9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 12:16:21','2023-09-09 12:16:21'),(9048,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-09T07:17:34-05:00\",\"transaction\":{\"id\":\"trln2ykjrfal1y220lb9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"150687278\",\"creation_date\":\"2023-09-09T07:15:21-05:00\",\"operation_date\":\"2023-09-09T07:17:27-05:00\",\"description\":\"Pago Mensual academia: Santiago arroyave segura (1034993465)\",\"error_message\":null,\"order_id\":\"B928FEC5932BF2FDDD2CC88C038B8CCB_78AZQEYTKU_1694261717.8359\",\"due_date\":\"2023-09-09T19:15:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Héctor\",\"last_name\":\"arroyave\",\"email\":\"hectorarroyave@gmail.com\",\"phone_number\":\"3006001213\",\"address\":null,\"creation_date\":\"2023-09-09T07:15:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 12:17:35','2023-09-09 12:17:35'),(9049,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-09T08:55:28-05:00\",\"transaction\":{\"id\":\"trz2p2qxnyow1mank1if\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-09T08:55:27-05:00\",\"operation_date\":\"2023-09-09T08:55:27-05:00\",\"description\":\"Pago Mensual academia: Jeronimo castaño piñeros (1155718680)\",\"error_message\":null,\"order_id\":\"6E2D5D50A943A0E0D738377F51011685_1C5AQEL2KT_1694267722.9648\",\"amount\":95000.00,\"customer\":{\"name\":\"melisa\",\"last_name\":\"piñeros osorio\",\"email\":\"melysa1037@gmail.com\",\"phone_number\":\"3015859977\",\"address\":null,\"creation_date\":\"2023-09-09T08:55:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz2p2qxnyow1mank1if/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-09 13:55:28','2023-09-09 13:55:28'),(9050,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1219\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-09T08:57:24-05:00\",\"transaction\":{\"id\":\"trz2p2qxnyow1mank1if\",\"authorization\":\"131301\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-09-09T08:55:27-05:00\",\"operation_date\":\"2023-09-09T08:57:21-05:00\",\"description\":\"Pago Mensual academia: Jeronimo castaño piñeros (1155718680)\",\"error_message\":null,\"order_id\":\"6E2D5D50A943A0E0D738377F51011685_1C5AQEL2KT_1694267722.9648\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"528209XXXXXX2301\",\"holder_name\":\"Melisa pineros o\",\"expiration_year\":\"28\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"FALABELLA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":95000.00,\"customer\":{\"name\":\"melisa\",\"last_name\":\"piñeros osorio\",\"email\":\"melysa1037@gmail.com\",\"phone_number\":\"3015859977\",\"address\":null,\"creation_date\":\"2023-09-09T08:55:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz2p2qxnyow1mank1if/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-09 13:57:25','2023-09-09 13:57:25'),(9051,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-09T10:36:47-05:00\",\"transaction\":{\"id\":\"trfidxiw2qv0vlmaybgv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-09T10:36:47-05:00\",\"operation_date\":\"2023-09-09T10:36:47-05:00\",\"description\":\"Pago Inscripción academia: Juan Luis Mesa Ocampo (1038264356)\",\"error_message\":null,\"order_id\":\"3F900DB2608FB3EECB3EE77BA9EF5F60_60SQ7TZBI4_1694273800.7642\",\"amount\":391000.00,\"customer\":{\"name\":\"Dora\",\"last_name\":\"Ocampo Castaño\",\"email\":\"docampoc@yahoo.com\",\"phone_number\":\"3223520331\",\"address\":null,\"creation_date\":\"2023-09-09T10:36:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfidxiw2qv0vlmaybgv/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-09 15:36:48','2023-09-09 15:36:48'),(9052,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1139\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-09T10:40:42-05:00\",\"transaction\":{\"id\":\"trfidxiw2qv0vlmaybgv\",\"authorization\":\"099111\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-09T10:36:47-05:00\",\"operation_date\":\"2023-09-09T10:40:41-05:00\",\"description\":\"Pago Inscripción academia: Juan Luis Mesa Ocampo (1038264356)\",\"error_message\":null,\"order_id\":\"3F900DB2608FB3EECB3EE77BA9EF5F60_60SQ7TZBI4_1694273800.7642\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"400491XXXXXX8374\",\"holder_name\":\"Edinson Mesa E\",\"expiration_year\":\"28\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE OCCIDENTE\",\"bank_code\":\"000\"},\"amount\":391000.00,\"customer\":{\"name\":\"Dora\",\"last_name\":\"Ocampo Castaño\",\"email\":\"docampoc@yahoo.com\",\"phone_number\":\"3223520331\",\"address\":null,\"creation_date\":\"2023-09-09T10:36:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfidxiw2qv0vlmaybgv/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-09 15:40:43','2023-09-09 15:40:43'),(9053,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-09T10:45:01-05:00\",\"transaction\":{\"id\":\"trzlt3xhxxlayunt2jbs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-09T10:43:18-05:00\",\"operation_date\":\"2023-09-09T10:43:18-05:00\",\"description\":\"Pago Mensual academia: Juan Luis Mesa Ocampo (1038264356)\",\"error_message\":null,\"order_id\":\"0F3C5D0C3666EEC8CD311BEC6D878915_H5ZF7U3EYL_1694274186.2214\",\"due_date\":\"2023-09-09T22:43:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edinson\",\"last_name\":\"Mesa Estrada\",\"email\":\"docampoc@yahoo.com\",\"phone_number\":\"3223520331\",\"address\":null,\"creation_date\":\"2023-09-09T10:43:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzlt3xhxxlayunt2jbs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 15:45:01','2023-09-09 15:45:01'),(9054,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-09T09:48:15-06:00\",\"transaction\":{\"id\":\"trzlt3xhxxlayunt2jbs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"150976168\",\"creation_date\":\"2023-09-09T10:43:18-06:00\",\"operation_date\":\"2023-09-09T09:46:17-06:00\",\"description\":\"Pago Mensual academia: Juan Luis Mesa Ocampo (1038264356)\",\"error_message\":null,\"order_id\":\"0F3C5D0C3666EEC8CD311BEC6D878915_H5ZF7U3EYL_1694274186.2214\",\"due_date\":\"2023-09-09T22:43:18-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edinson\",\"last_name\":\"Mesa Estrada\",\"email\":\"docampoc@yahoo.com\",\"phone_number\":\"3223520331\",\"address\":null,\"creation_date\":\"2023-09-09T10:43:18-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 15:48:16','2023-09-09 15:48:16'),(9055,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-09T14:09:11-05:00\",\"transaction\":{\"id\":\"tronpjuzlme1yhxxh9fa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-09T14:09:11-05:00\",\"operation_date\":\"2023-09-09T14:09:11-05:00\",\"description\":\"Pago Mensual academia: Matias Mejia Garces (1020310551)\",\"error_message\":null,\"order_id\":\"86C51678350F656DCC7F490A43946EE5_EZSF9T530Q_1694286542.5727\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Mejía Garcés\",\"email\":\"karitovalencia@hotmail.com\",\"phone_number\":\"3176577857\",\"address\":null,\"creation_date\":\"2023-09-09T14:09:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tronpjuzlme1yhxxh9fa/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-09 19:09:12','2023-09-09 19:09:12'),(9056,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-09T14:09:52-05:00\",\"transaction\":{\"id\":\"tronpjuzlme1yhxxh9fa\",\"authorization\":\"R04198\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-09T14:09:11-05:00\",\"operation_date\":\"2023-09-09T14:09:51-05:00\",\"description\":\"Pago Mensual academia: Matias Mejia Garces (1020310551)\",\"error_message\":null,\"order_id\":\"86C51678350F656DCC7F490A43946EE5_EZSF9T530Q_1694286542.5727\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX9635\",\"holder_name\":\"KAROL GARCES VALENCIA \",\"expiration_year\":\"26\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Mejía Garcés\",\"email\":\"karitovalencia@hotmail.com\",\"phone_number\":\"3176577857\",\"address\":null,\"creation_date\":\"2023-09-09T14:09:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tronpjuzlme1yhxxh9fa/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-09 19:09:53','2023-09-09 19:09:53'),(9057,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-09T17:05:06-05:00\",\"transaction\":{\"id\":\"tr91b9oono8yoklfdcsz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-09T17:05:06-05:00\",\"operation_date\":\"2023-09-09T17:05:06-05:00\",\"description\":\"Pago Mensual academia: Pablo Campuzano Giraldo (1013464237)\",\"error_message\":null,\"order_id\":\"1BE883EEC3231F9FE43C35BD1B4B3BB5_S9FOHB5GAV_1694297103.0904\",\"amount\":331800.00,\"customer\":{\"name\":\"Luis Fernando\",\"last_name\":\"Campuzano Montoya\",\"email\":\"lf-campuzano@hotmail.com\",\"phone_number\":\"3116009087\",\"address\":null,\"creation_date\":\"2023-09-09T17:05:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr91b9oono8yoklfdcsz/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-09 22:05:07','2023-09-09 22:05:07'),(9058,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1150\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-09T17:06:06-05:00\",\"transaction\":{\"id\":\"tr91b9oono8yoklfdcsz\",\"authorization\":\"392727\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-09T17:05:06-05:00\",\"operation_date\":\"2023-09-09T17:06:05-05:00\",\"description\":\"Pago Mensual academia: Pablo Campuzano Giraldo (1013464237)\",\"error_message\":null,\"order_id\":\"1BE883EEC3231F9FE43C35BD1B4B3BB5_S9FOHB5GAV_1694297103.0904\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"422274XXXXXX4580\",\"holder_name\":\"LUIS CAMPUZANO\",\"expiration_year\":\"26\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":331800.00,\"customer\":{\"name\":\"Luis Fernando\",\"last_name\":\"Campuzano Montoya\",\"email\":\"lf-campuzano@hotmail.com\",\"phone_number\":\"3116009087\",\"address\":null,\"creation_date\":\"2023-09-09T17:05:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr91b9oono8yoklfdcsz/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-09 22:06:07','2023-09-09 22:06:07'),(9059,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-09T17:17:23-05:00\",\"transaction\":{\"id\":\"truc7npkmnnhobua3igr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-09T17:16:45-05:00\",\"operation_date\":\"2023-09-09T17:16:45-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gómez Loaiza (1025666604)\",\"error_message\":null,\"order_id\":\"BF5CD8B2509011B9502A72296EDC14A0_OKZ7PV8BHQ_1694297802.914\",\"due_date\":\"2023-09-10T05:16:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Loaiza Marin\",\"email\":\"estefanialoaizamarin0927@gmail.com\",\"phone_number\":\"3003261902\",\"address\":null,\"creation_date\":\"2023-09-09T17:16:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truc7npkmnnhobua3igr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 22:17:24','2023-09-09 22:17:24'),(9060,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  863\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-09T16:39:10-06:00\",\"transaction\":{\"id\":\"truc7npkmnnhobua3igr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-09T17:16:45-06:00\",\"operation_date\":\"2023-09-09T16:17:32-06:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gómez Loaiza (1025666604)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"BF5CD8B2509011B9502A72296EDC14A0_OKZ7PV8BHQ_1694297802.914\",\"due_date\":\"2023-09-10T05:16:45-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Loaiza Marin\",\"email\":\"estefanialoaizamarin0927@gmail.com\",\"phone_number\":\"3003261902\",\"address\":null,\"creation_date\":\"2023-09-09T17:16:45-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 22:39:10','2023-09-09 22:39:10'),(9061,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  911\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-09T18:11:20-05:00\",\"transaction\":{\"id\":\"tryf27kxtodwtanq9spi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-09T18:10:22-05:00\",\"operation_date\":\"2023-09-09T18:10:22-05:00\",\"description\":\"Pago Mensual academia: Thomás Duque Madrid (1020240744)\",\"error_message\":null,\"order_id\":\"806D926414CE19D907700E23177AB4FF_RMXA230JU8_1694301007.2602\",\"due_date\":\"2023-09-10T06:10:22-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Duque\",\"email\":\"johanduque7@gmail.com\",\"phone_number\":\"3014560230\",\"address\":null,\"creation_date\":\"2023-09-09T18:10:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryf27kxtodwtanq9spi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 23:11:20','2023-09-09 23:11:20'),(9062,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  794\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-09T18:12:07-05:00\",\"transaction\":{\"id\":\"tryf27kxtodwtanq9spi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"151649407\",\"creation_date\":\"2023-09-09T18:10:22-05:00\",\"operation_date\":\"2023-09-09T18:12:01-05:00\",\"description\":\"Pago Mensual academia: Thomás Duque Madrid (1020240744)\",\"error_message\":null,\"order_id\":\"806D926414CE19D907700E23177AB4FF_RMXA230JU8_1694301007.2602\",\"due_date\":\"2023-09-10T06:10:22-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Duque\",\"email\":\"johanduque7@gmail.com\",\"phone_number\":\"3014560230\",\"address\":null,\"creation_date\":\"2023-09-09T18:10:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-09 23:12:07','2023-09-09 23:12:07'),(9063,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-09T19:24:02-05:00\",\"transaction\":{\"id\":\"trvpvzmmd0bknl1klgbk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-09T19:22:57-05:00\",\"operation_date\":\"2023-09-09T19:22:57-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gómez Loaiza (1025666604)\",\"error_message\":null,\"order_id\":\"BF5CD8B2509011B9502A72296EDC14A0_OKZ7PV8BHQ_1694305372.5985\",\"due_date\":\"2023-09-10T07:22:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Loaiza Marin\",\"email\":\"estefanialoaizamarin0927@gmail.com\",\"phone_number\":\"3003261902\",\"address\":null,\"creation_date\":\"2023-09-09T19:22:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvpvzmmd0bknl1klgbk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 00:24:03','2023-09-10 00:24:03'),(9064,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-09T19:27:33-05:00\",\"transaction\":{\"id\":\"trvpvzmmd0bknl1klgbk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"151739039\",\"creation_date\":\"2023-09-09T19:22:57-05:00\",\"operation_date\":\"2023-09-09T19:27:19-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gómez Loaiza (1025666604)\",\"error_message\":null,\"order_id\":\"BF5CD8B2509011B9502A72296EDC14A0_OKZ7PV8BHQ_1694305372.5985\",\"due_date\":\"2023-09-10T07:22:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Loaiza Marin\",\"email\":\"estefanialoaizamarin0927@gmail.com\",\"phone_number\":\"3003261902\",\"address\":null,\"creation_date\":\"2023-09-09T19:22:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 00:27:34','2023-09-10 00:27:34'),(9065,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  910\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-09T19:35:53-05:00\",\"transaction\":{\"id\":\"tr8srtort2xmm50fzzcd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-09T19:35:01-05:00\",\"operation_date\":\"2023-09-09T19:35:01-05:00\",\"description\":\"Pago Mensual academia: Martin Gomez (1023559239)\",\"error_message\":null,\"order_id\":\"AC52C626AFC10D4075708AC4C778DDFC_ZB1F6VD2AI_1694306096.0435\",\"due_date\":\"2023-09-10T07:35:01-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Martín\",\"last_name\":\"Gomez\",\"email\":\"estefaniaclaross@gmail.com\",\"phone_number\":\"3015699077\",\"address\":null,\"creation_date\":\"2023-09-09T19:35:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8srtort2xmm50fzzcd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 00:35:53','2023-09-10 00:35:53'),(9066,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  793\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-09T19:37:10-05:00\",\"transaction\":{\"id\":\"tr8srtort2xmm50fzzcd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"151753054\",\"creation_date\":\"2023-09-09T19:35:01-05:00\",\"operation_date\":\"2023-09-09T19:36:51-05:00\",\"description\":\"Pago Mensual academia: Martin Gomez (1023559239)\",\"error_message\":null,\"order_id\":\"AC52C626AFC10D4075708AC4C778DDFC_ZB1F6VD2AI_1694306096.0435\",\"due_date\":\"2023-09-10T07:35:01-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Martín\",\"last_name\":\"Gomez\",\"email\":\"estefaniaclaross@gmail.com\",\"phone_number\":\"3015699077\",\"address\":null,\"creation_date\":\"2023-09-09T19:35:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 00:37:11','2023-09-10 00:37:11'),(9067,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-10T00:32:47-05:00\",\"transaction\":{\"id\":\"trgudrnjz31dbmmaqfvf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-10T00:32:03-05:00\",\"operation_date\":\"2023-09-10T00:32:03-05:00\",\"description\":\"Pago Mensual academia: Martin Bonilla Toro (1011416254)\",\"error_message\":null,\"order_id\":\"24E01830D213D75DEB99C22B9CD91DDD_KA2RWQDY7S_1694323920.4206\",\"due_date\":\"2023-09-10T12:32:03-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"tatiana\",\"last_name\":\"toro\",\"email\":\"torotatiana22@gmail.com\",\"phone_number\":\"3022176993\",\"address\":null,\"creation_date\":\"2023-09-10T00:32:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgudrnjz31dbmmaqfvf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 05:32:48','2023-09-10 05:32:48'),(9068,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  797\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-10T00:34:34-05:00\",\"transaction\":{\"id\":\"trgudrnjz31dbmmaqfvf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"151954063\",\"creation_date\":\"2023-09-10T00:32:03-05:00\",\"operation_date\":\"2023-09-10T00:33:45-05:00\",\"description\":\"Pago Mensual academia: Martin Bonilla Toro (1011416254)\",\"error_message\":null,\"order_id\":\"24E01830D213D75DEB99C22B9CD91DDD_KA2RWQDY7S_1694323920.4206\",\"due_date\":\"2023-09-10T12:32:03-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"tatiana\",\"last_name\":\"toro\",\"email\":\"torotatiana22@gmail.com\",\"phone_number\":\"3022176993\",\"address\":null,\"creation_date\":\"2023-09-10T00:32:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 05:34:35','2023-09-10 05:34:35'),(9069,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-10T00:40:05-05:00\",\"transaction\":{\"id\":\"trfewgrjiujtqpm5shmp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-10T00:38:58-05:00\",\"operation_date\":\"2023-09-10T00:38:58-05:00\",\"description\":\"Pago Mensual academia: sergio andres delgado guerrero (1127360594)\",\"error_message\":null,\"order_id\":\"6F611188AD4A81FFC2EDAB83B0705D76_09WGPYAR56_1694324334.2799\",\"due_date\":\"2023-09-10T12:38:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sergio andres\",\"last_name\":\"delgado guerrero\",\"email\":\"andresedc@hotmail.com\",\"phone_number\":\"3187883259\",\"address\":null,\"creation_date\":\"2023-09-10T00:38:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfewgrjiujtqpm5shmp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 05:40:05','2023-09-10 05:40:05'),(9070,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-10T00:41:29-05:00\",\"transaction\":{\"id\":\"trfewgrjiujtqpm5shmp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"151955395\",\"creation_date\":\"2023-09-10T00:38:58-05:00\",\"operation_date\":\"2023-09-10T00:41:23-05:00\",\"description\":\"Pago Mensual academia: sergio andres delgado guerrero (1127360594)\",\"error_message\":null,\"order_id\":\"6F611188AD4A81FFC2EDAB83B0705D76_09WGPYAR56_1694324334.2799\",\"due_date\":\"2023-09-10T12:38:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sergio andres\",\"last_name\":\"delgado guerrero\",\"email\":\"andresedc@hotmail.com\",\"phone_number\":\"3187883259\",\"address\":null,\"creation_date\":\"2023-09-10T00:38:58-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 05:41:30','2023-09-10 05:41:30'),(9071,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-10T09:09:42-05:00\",\"transaction\":{\"id\":\"trrc9iuhifqwd7byz8er\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-10T09:08:36-05:00\",\"operation_date\":\"2023-09-10T09:08:36-05:00\",\"description\":\"Pago Mensual academia: Tomás Ramírez González (1040578850)\",\"error_message\":null,\"order_id\":\"F51238CD02C93B89D8FBEE5667D077FC_IM6L5ZNXBP_1694354886.1824\",\"due_date\":\"2023-09-10T21:08:36-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"daniela\",\"last_name\":\"gonzalez\",\"email\":\"dagohe.2107@gmail.com\",\"phone_number\":\"3002308948\",\"address\":null,\"creation_date\":\"2023-09-10T09:08:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrc9iuhifqwd7byz8er/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 14:09:42','2023-09-10 14:09:42'),(9072,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-10T08:12:15-06:00\",\"transaction\":{\"id\":\"trrc9iuhifqwd7byz8er\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"152065880\",\"creation_date\":\"2023-09-10T09:08:36-06:00\",\"operation_date\":\"2023-09-10T08:10:46-06:00\",\"description\":\"Pago Mensual academia: Tomás Ramírez González (1040578850)\",\"error_message\":null,\"order_id\":\"F51238CD02C93B89D8FBEE5667D077FC_IM6L5ZNXBP_1694354886.1824\",\"due_date\":\"2023-09-10T21:08:36-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"daniela\",\"last_name\":\"gonzalez\",\"email\":\"dagohe.2107@gmail.com\",\"phone_number\":\"3002308948\",\"address\":null,\"creation_date\":\"2023-09-10T09:08:36-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 14:12:15','2023-09-10 14:12:15'),(9073,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-10T10:07:14-05:00\",\"transaction\":{\"id\":\"tr3qpufjtl8ddtalssq3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-10T10:06:33-05:00\",\"operation_date\":\"2023-09-10T10:06:33-05:00\",\"description\":\"Pago Mensual academia: ismael marin  zapata (1021946861)\",\"error_message\":null,\"order_id\":\"DD50E4D9C47CDF72D24E89D248EDB35B_BQAVJLWCGZ_1694358374.6555\",\"due_date\":\"2023-09-10T22:06:33-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"luis david\",\"last_name\":\"marin zapata\",\"email\":\"ldmzapata@hotmail.com\",\"phone_number\":\"3137928002\",\"address\":null,\"creation_date\":\"2023-09-10T10:06:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3qpufjtl8ddtalssq3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 15:07:15','2023-09-10 15:07:15'),(9074,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-10T10:09:12-05:00\",\"transaction\":{\"id\":\"tr57tis3jfm4zau2iumz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-10T10:08:32-05:00\",\"operation_date\":\"2023-09-10T10:08:32-05:00\",\"description\":\"Pago Mensual academia: Thomas Colorado Patiño (1038875386)\",\"error_message\":null,\"order_id\":\"DB9AD56C71619AEED9723314D1456037_UT8Y5X2QGK_1694358506.6539\",\"due_date\":\"2023-09-10T22:08:32-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jhonny Alexander\",\"last_name\":\"Colorado Londoño\",\"email\":\"jalexander1227@hotmail.com\",\"phone_number\":\"3102318133\",\"address\":null,\"creation_date\":\"2023-09-10T10:08:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr57tis3jfm4zau2iumz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 15:09:13','2023-09-10 15:09:13'),(9075,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-10T10:11:48-05:00\",\"transaction\":{\"id\":\"tr3qpufjtl8ddtalssq3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"152118351\",\"creation_date\":\"2023-09-10T10:06:33-05:00\",\"operation_date\":\"2023-09-10T00:00:00-05:00\",\"description\":\"Pago Mensual academia: ismael marin  zapata (1021946861)\",\"error_message\":null,\"order_id\":\"DD50E4D9C47CDF72D24E89D248EDB35B_BQAVJLWCGZ_1694358374.6555\",\"due_date\":\"2023-09-10T22:06:33-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"luis david\",\"last_name\":\"marin zapata\",\"email\":\"ldmzapata@hotmail.com\",\"phone_number\":\"3137928002\",\"address\":null,\"creation_date\":\"2023-09-10T10:06:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 15:11:48','2023-09-10 15:11:48'),(9076,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  865\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-10T09:30:11-06:00\",\"transaction\":{\"id\":\"tr57tis3jfm4zau2iumz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-10T10:08:32-06:00\",\"operation_date\":\"2023-09-10T09:09:18-06:00\",\"description\":\"Pago Mensual academia: Thomas Colorado Patiño (1038875386)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"DB9AD56C71619AEED9723314D1456037_UT8Y5X2QGK_1694358506.6539\",\"due_date\":\"2023-09-10T22:08:32-06:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"Jhonny Alexander\",\"last_name\":\"Colorado Londoño\",\"email\":\"jalexander1227@hotmail.com\",\"phone_number\":\"3102318133\",\"address\":null,\"creation_date\":\"2023-09-10T10:08:32-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 15:30:11','2023-09-10 15:30:11'),(9077,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-10T10:52:40-05:00\",\"transaction\":{\"id\":\"tr1y56rztyzx8quovxl1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-10T10:52:06-05:00\",\"operation_date\":\"2023-09-10T10:52:06-05:00\",\"description\":\"Pago Mensual academia: Thomas Colorado Patiño (1038875386)\",\"error_message\":null,\"order_id\":\"DB9AD56C71619AEED9723314D1456037_UT8Y5X2QGK_1694361121.344\",\"due_date\":\"2023-09-10T22:52:06-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jhonny Alexander\",\"last_name\":\"Colorado Londoño\",\"email\":\"jalexander1227@hotmail.com\",\"phone_number\":\"3102318133\",\"address\":null,\"creation_date\":\"2023-09-10T10:52:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1y56rztyzx8quovxl1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 15:52:40','2023-09-10 15:52:40'),(9078,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-10T10:53:39-05:00\",\"transaction\":{\"id\":\"tr1y56rztyzx8quovxl1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"152167634\",\"creation_date\":\"2023-09-10T10:52:06-05:00\",\"operation_date\":\"2023-09-10T10:53:27-05:00\",\"description\":\"Pago Mensual academia: Thomas Colorado Patiño (1038875386)\",\"error_message\":null,\"order_id\":\"DB9AD56C71619AEED9723314D1456037_UT8Y5X2QGK_1694361121.344\",\"due_date\":\"2023-09-10T22:52:06-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jhonny Alexander\",\"last_name\":\"Colorado Londoño\",\"email\":\"jalexander1227@hotmail.com\",\"phone_number\":\"3102318133\",\"address\":null,\"creation_date\":\"2023-09-10T10:52:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 15:53:40','2023-09-10 15:53:40'),(9079,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-10T11:03:39-05:00\",\"transaction\":{\"id\":\"trcc6yfw5tgf56fyfmkm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-10T11:03:03-05:00\",\"operation_date\":\"2023-09-10T11:03:03-05:00\",\"description\":\"Pago Mensual academia: Manuel Rendon Ángel (1034995147)\",\"error_message\":null,\"order_id\":\"43D762CA733A839226415450B0DBF9D2_ADPB4J567N_1694361780.3331\",\"due_date\":\"2023-09-10T23:03:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Rendon Angel\",\"email\":\"caroangelh@yahoo.com\",\"phone_number\":\"3174371479\",\"address\":null,\"creation_date\":\"2023-09-10T11:03:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcc6yfw5tgf56fyfmkm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 16:03:40','2023-09-10 16:03:40'),(9080,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-10T11:04:25-05:00\",\"transaction\":{\"id\":\"trcc6yfw5tgf56fyfmkm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"152180511\",\"creation_date\":\"2023-09-10T11:03:03-05:00\",\"operation_date\":\"2023-09-10T11:04:21-05:00\",\"description\":\"Pago Mensual academia: Manuel Rendon Ángel (1034995147)\",\"error_message\":null,\"order_id\":\"43D762CA733A839226415450B0DBF9D2_ADPB4J567N_1694361780.3331\",\"due_date\":\"2023-09-10T23:03:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Rendon Angel\",\"email\":\"caroangelh@yahoo.com\",\"phone_number\":\"3174371479\",\"address\":null,\"creation_date\":\"2023-09-10T11:03:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 16:04:26','2023-09-10 16:04:26'),(9081,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-10T14:57:09-05:00\",\"transaction\":{\"id\":\"trf1qr6nurihrbdrx127\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-10T14:54:55-05:00\",\"operation_date\":\"2023-09-10T14:54:55-05:00\",\"description\":\"Pago Mensual academia: Ismael Alejandro Medina Sanchez (1195213124)\",\"error_message\":null,\"order_id\":\"B607BA543AD05417B8507EE86C54FCB7_OK8UPINQFD_1694375687.7601\",\"due_date\":\"2023-09-11T02:54:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ismael Alejandro\",\"last_name\":\"Medina Sanchez\",\"email\":\"maricelamj@hotmail.com\",\"phone_number\":\"3046721422\",\"address\":null,\"creation_date\":\"2023-09-10T14:54:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trf1qr6nurihrbdrx127/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 19:57:10','2023-09-10 19:57:10'),(9082,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-10T14:59:41-05:00\",\"transaction\":{\"id\":\"trf1qr6nurihrbdrx127\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"152442024\",\"creation_date\":\"2023-09-10T14:54:55-05:00\",\"operation_date\":\"2023-09-10T14:58:54-05:00\",\"description\":\"Pago Mensual academia: Ismael Alejandro Medina Sanchez (1195213124)\",\"error_message\":null,\"order_id\":\"B607BA543AD05417B8507EE86C54FCB7_OK8UPINQFD_1694375687.7601\",\"due_date\":\"2023-09-11T02:54:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ismael Alejandro\",\"last_name\":\"Medina Sanchez\",\"email\":\"maricelamj@hotmail.com\",\"phone_number\":\"3046721422\",\"address\":null,\"creation_date\":\"2023-09-10T14:54:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-10 19:59:41','2023-09-10 19:59:41'),(9083,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-10T16:12:37-05:00\",\"transaction\":{\"id\":\"trvht3mglgqwcscvmyhe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-10T16:12:37-05:00\",\"operation_date\":\"2023-09-10T16:12:37-05:00\",\"description\":\"Pago Mensual academia: Thomas Ballesteros Jaramillo (1145124312)\",\"error_message\":null,\"order_id\":\"0CBED40C0D920B94126EAF5E707BE1F5_OSX74YUW2T_1694380340.8976\",\"amount\":165900.00,\"customer\":{\"name\":\"Ricardo\",\"last_name\":\"Ballesteros\",\"email\":\"rballesteros296@gmail.com\",\"phone_number\":\"3005091099\",\"address\":null,\"creation_date\":\"2023-09-10T16:12:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvht3mglgqwcscvmyhe/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-10 21:12:37','2023-09-10 21:12:37'),(9084,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1154\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-10T16:13:44-05:00\",\"transaction\":{\"id\":\"trvht3mglgqwcscvmyhe\",\"authorization\":\"161343\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-10T16:12:37-05:00\",\"operation_date\":\"2023-09-10T16:13:43-05:00\",\"description\":\"Pago Mensual academia: Thomas Ballesteros Jaramillo (1145124312)\",\"error_message\":null,\"order_id\":\"0CBED40C0D920B94126EAF5E707BE1F5_OSX74YUW2T_1694380340.8976\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX4174\",\"holder_name\":\"RICARDO BALLESTEROS\",\"expiration_year\":\"26\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Ricardo\",\"last_name\":\"Ballesteros\",\"email\":\"rballesteros296@gmail.com\",\"phone_number\":\"3005091099\",\"address\":null,\"creation_date\":\"2023-09-10T16:12:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvht3mglgqwcscvmyhe/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-10 21:13:44','2023-09-10 21:13:44'),(9085,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-10T20:17:03-05:00\",\"transaction\":{\"id\":\"tr3dh5ucptuqt9lyzpyn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-10T20:16:23-05:00\",\"operation_date\":\"2023-09-10T20:16:23-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694394980.7065\",\"due_date\":\"2023-09-11T08:16:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-10T20:16:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3dh5ucptuqt9lyzpyn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 01:17:03','2023-09-11 01:17:03'),(9086,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  861\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-10T19:39:10-06:00\",\"transaction\":{\"id\":\"tr3dh5ucptuqt9lyzpyn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-10T20:16:23-06:00\",\"operation_date\":\"2023-09-10T19:17:08-06:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694394980.7065\",\"due_date\":\"2023-09-11T08:16:23-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-10T20:16:23-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 01:39:11','2023-09-11 01:39:11'),(9087,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-10T21:58:42-05:00\",\"transaction\":{\"id\":\"tre0mdee4sdqezmtyvvf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-10T21:57:50-05:00\",\"operation_date\":\"2023-09-10T21:57:50-05:00\",\"description\":\"Pago Mensual academia: Juan Esteban Torres Vélez (1032018626)\",\"error_message\":null,\"order_id\":\"F81DEE42585B3814DE199B2E88757F5C_H5M8QA24R0_1694401066.9099\",\"due_date\":\"2023-09-11T09:57:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Ferney\",\"last_name\":\"Torres\",\"email\":\"ferneytorres21@gmail.com\",\"phone_number\":\"3176637812\",\"address\":null,\"creation_date\":\"2023-09-10T21:57:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre0mdee4sdqezmtyvvf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 02:58:42','2023-09-11 02:58:42'),(9088,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-10T21:00:09-06:00\",\"transaction\":{\"id\":\"tre0mdee4sdqezmtyvvf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"152898386\",\"creation_date\":\"2023-09-10T21:57:50-06:00\",\"operation_date\":\"2023-09-10T20:59:41-06:00\",\"description\":\"Pago Mensual academia: Juan Esteban Torres Vélez (1032018626)\",\"error_message\":null,\"order_id\":\"F81DEE42585B3814DE199B2E88757F5C_H5M8QA24R0_1694401066.9099\",\"due_date\":\"2023-09-11T09:57:50-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Ferney\",\"last_name\":\"Torres\",\"email\":\"ferneytorres21@gmail.com\",\"phone_number\":\"3176637812\",\"address\":null,\"creation_date\":\"2023-09-10T21:57:50-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 03:00:09','2023-09-11 03:00:09'),(9089,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T08:54:23-05:00\",\"transaction\":{\"id\":\"trlaghb5u7uvk04vf7zk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T08:53:43-05:00\",\"operation_date\":\"2023-09-11T08:53:43-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694440409.9131\",\"due_date\":\"2023-09-11T20:53:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-11T08:53:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlaghb5u7uvk04vf7zk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 13:54:24','2023-09-11 13:54:24'),(9090,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T08:55:18-05:00\",\"transaction\":{\"id\":\"trxifkaana4bsuuqm0il\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T08:53:20-05:00\",\"operation_date\":\"2023-09-11T08:53:20-05:00\",\"description\":\"Pago Mensual academia: Emmanuel David Rincon Flores (1091374399)\",\"error_message\":null,\"order_id\":\"11BCD3C1D43688891ED23F5677A174EA_M7J8PEFK2O_1694440396.7112\",\"due_date\":\"2023-09-11T20:53:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Rincon\",\"email\":\"nahoj28nahoj28@gmail.com\",\"phone_number\":\"3502027936\",\"address\":null,\"creation_date\":\"2023-09-11T08:53:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxifkaana4bsuuqm0il/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 13:55:19','2023-09-11 13:55:19'),(9091,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-11T08:56:17-05:00\",\"transaction\":{\"id\":\"trxifkaana4bsuuqm0il\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"153195704\",\"creation_date\":\"2023-09-11T08:53:20-05:00\",\"operation_date\":\"2023-09-11T08:56:02-05:00\",\"description\":\"Pago Mensual academia: Emmanuel David Rincon Flores (1091374399)\",\"error_message\":null,\"order_id\":\"11BCD3C1D43688891ED23F5677A174EA_M7J8PEFK2O_1694440396.7112\",\"due_date\":\"2023-09-11T20:53:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Rincon\",\"email\":\"nahoj28nahoj28@gmail.com\",\"phone_number\":\"3502027936\",\"address\":null,\"creation_date\":\"2023-09-11T08:53:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 13:56:18','2023-09-11 13:56:18'),(9092,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  861\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-11T08:15:13-06:00\",\"transaction\":{\"id\":\"trlaghb5u7uvk04vf7zk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-11T08:53:43-06:00\",\"operation_date\":\"2023-09-11T07:54:30-06:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694440409.9131\",\"due_date\":\"2023-09-11T20:53:43-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-11T08:53:43-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 14:15:14','2023-09-11 14:15:14'),(9093,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T12:38:24-05:00\",\"transaction\":{\"id\":\"trdpgmu9fyzjrzk7x4fy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T12:37:19-05:00\",\"operation_date\":\"2023-09-11T12:37:19-05:00\",\"description\":\"Pago Mensual academia: jeronimo Solarte Calle (1031942450)\",\"error_message\":null,\"order_id\":\"CBA0A4EE5CCD02FDA0FE3F9A3E7B89FE_542BTJ6NH3_1694453824.3237\",\"due_date\":\"2023-09-12T00:37:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"solarte Calle\",\"email\":\"jasol2@hotmail.com\",\"phone_number\":\"3182407090\",\"address\":null,\"creation_date\":\"2023-09-11T12:37:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdpgmu9fyzjrzk7x4fy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 17:38:25','2023-09-11 17:38:25'),(9094,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-11T12:40:02-05:00\",\"transaction\":{\"id\":\"trdpgmu9fyzjrzk7x4fy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"153765624\",\"creation_date\":\"2023-09-11T12:37:19-05:00\",\"operation_date\":\"2023-09-11T12:39:47-05:00\",\"description\":\"Pago Mensual academia: jeronimo Solarte Calle (1031942450)\",\"error_message\":null,\"order_id\":\"CBA0A4EE5CCD02FDA0FE3F9A3E7B89FE_542BTJ6NH3_1694453824.3237\",\"due_date\":\"2023-09-12T00:37:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"solarte Calle\",\"email\":\"jasol2@hotmail.com\",\"phone_number\":\"3182407090\",\"address\":null,\"creation_date\":\"2023-09-11T12:37:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 17:40:03','2023-09-11 17:40:03'),(9095,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T13:08:22-05:00\",\"transaction\":{\"id\":\"trizm0dqeypgc6xe03la\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T13:07:26-05:00\",\"operation_date\":\"2023-09-11T13:07:26-05:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Zabala Martinez (148448429)\",\"error_message\":null,\"order_id\":\"F2E84D98D6DC0C7ACD56B40509355666_GXDRPNO9A1_1694455642.2379\",\"due_date\":\"2023-09-12T01:07:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeison Fernando\",\"last_name\":\"Jaimes Martinez\",\"email\":\"fer.jm.18@gmail.com\",\"phone_number\":\"3204321716\",\"address\":null,\"creation_date\":\"2023-09-11T13:07:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trizm0dqeypgc6xe03la/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 18:08:23','2023-09-11 18:08:23'),(9096,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  862\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-11T12:12:26-06:00\",\"transaction\":{\"id\":\"trizm0dqeypgc6xe03la\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-11T13:07:26-06:00\",\"operation_date\":\"2023-09-11T12:08:30-06:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Zabala Martinez (148448429)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"F2E84D98D6DC0C7ACD56B40509355666_GXDRPNO9A1_1694455642.2379\",\"due_date\":\"2023-09-12T01:07:26-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Yeison Fernando\",\"last_name\":\"Jaimes Martinez\",\"email\":\"fer.jm.18@gmail.com\",\"phone_number\":\"3204321716\",\"address\":null,\"creation_date\":\"2023-09-11T13:07:26-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 18:12:27','2023-09-11 18:12:27'),(9097,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T13:17:33-05:00\",\"transaction\":{\"id\":\"troz9lroxxabtxkvqs4b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T13:16:51-05:00\",\"operation_date\":\"2023-09-11T13:16:51-05:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Zabala Martinez (148448429)\",\"error_message\":null,\"order_id\":\"F2E84D98D6DC0C7ACD56B40509355666_GXDRPNO9A1_1694456185.0791\",\"due_date\":\"2023-09-12T01:16:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeison Fernando\",\"last_name\":\"Jaimes Martinez\",\"email\":\"fer.jm.18@gmail.com\",\"phone_number\":\"3204321716\",\"address\":null,\"creation_date\":\"2023-09-11T13:16:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troz9lroxxabtxkvqs4b/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 18:17:34','2023-09-11 18:17:34'),(9098,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-11T12:21:17-06:00\",\"transaction\":{\"id\":\"troz9lroxxabtxkvqs4b\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"153850115\",\"creation_date\":\"2023-09-11T13:16:51-06:00\",\"operation_date\":\"2023-09-11T12:19:02-06:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Zabala Martinez (148448429)\",\"error_message\":null,\"order_id\":\"F2E84D98D6DC0C7ACD56B40509355666_GXDRPNO9A1_1694456185.0791\",\"due_date\":\"2023-09-12T01:16:51-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yeison Fernando\",\"last_name\":\"Jaimes Martinez\",\"email\":\"fer.jm.18@gmail.com\",\"phone_number\":\"3204321716\",\"address\":null,\"creation_date\":\"2023-09-11T13:16:51-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 18:21:17','2023-09-11 18:21:17'),(9099,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T13:45:20-05:00\",\"transaction\":{\"id\":\"trd2n2qnzk1mgl6st9p4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T13:43:56-05:00\",\"operation_date\":\"2023-09-11T13:43:56-05:00\",\"description\":\"Pago Mensual academia: maximiliano bravo sanchez (1126789526)\",\"error_message\":null,\"order_id\":\"678004486C119599ED7D199F47DA043A_I3P0JFO54Q_1694457813.6194\",\"due_date\":\"2023-09-12T01:43:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"esteban\",\"last_name\":\"bravo\",\"email\":\"estebanbravo17@hotmail.com\",\"phone_number\":\"3025558808\",\"address\":null,\"creation_date\":\"2023-09-11T13:43:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trd2n2qnzk1mgl6st9p4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 18:45:20','2023-09-11 18:45:20'),(9100,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-11T13:46:45-05:00\",\"transaction\":{\"id\":\"trd2n2qnzk1mgl6st9p4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"153909727\",\"creation_date\":\"2023-09-11T13:43:56-05:00\",\"operation_date\":\"2023-09-11T13:46:21-05:00\",\"description\":\"Pago Mensual academia: maximiliano bravo sanchez (1126789526)\",\"error_message\":null,\"order_id\":\"678004486C119599ED7D199F47DA043A_I3P0JFO54Q_1694457813.6194\",\"due_date\":\"2023-09-12T01:43:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"esteban\",\"last_name\":\"bravo\",\"email\":\"estebanbravo17@hotmail.com\",\"phone_number\":\"3025558808\",\"address\":null,\"creation_date\":\"2023-09-11T13:43:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 18:46:46','2023-09-11 18:46:46'),(9101,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T15:28:07-05:00\",\"transaction\":{\"id\":\"trhxvzdouqovxhpopszo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-11T15:28:07-05:00\",\"operation_date\":\"2023-09-11T15:28:07-05:00\",\"description\":\"Pago Mensual academia: Leandro Ramirez Pareja (635811)\",\"error_message\":null,\"order_id\":\"9A32FF36C65E8BA30915A21B7BD76506_7TXNYB8R1E_1694464084.7494\",\"amount\":95000.00,\"customer\":{\"name\":\"Maribel\",\"last_name\":\"Pareja Gallego\",\"email\":\"marypareja93@gmail.com\",\"phone_number\":\"3052919400\",\"address\":null,\"creation_date\":\"2023-09-11T15:28:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhxvzdouqovxhpopszo/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-11 20:28:08','2023-09-11 20:28:08'),(9102,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1138\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-11T15:28:56-05:00\",\"transaction\":{\"id\":\"trhxvzdouqovxhpopszo\",\"authorization\":\"152855\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-11T15:28:07-05:00\",\"operation_date\":\"2023-09-11T15:28:55-05:00\",\"description\":\"Pago Mensual academia: Leandro Ramirez Pareja (635811)\",\"error_message\":null,\"order_id\":\"9A32FF36C65E8BA30915A21B7BD76506_7TXNYB8R1E_1694464084.7494\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX2117\",\"holder_name\":\"Maribel Pareja\",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":95000.00,\"customer\":{\"name\":\"Maribel\",\"last_name\":\"Pareja Gallego\",\"email\":\"marypareja93@gmail.com\",\"phone_number\":\"3052919400\",\"address\":null,\"creation_date\":\"2023-09-11T15:28:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhxvzdouqovxhpopszo/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-11 20:28:56','2023-09-11 20:28:56'),(9103,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T16:21:22-05:00\",\"transaction\":{\"id\":\"trm9pkne2zlbfdaaqofw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T16:20:55-05:00\",\"operation_date\":\"2023-09-11T16:20:55-05:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Uribe Toro (1036460847)\",\"error_message\":null,\"order_id\":\"4F5A9BF135F285358A4A74B08F8121F8_ZXDF0T7G3O_1694467252.3909\",\"due_date\":\"2023-09-12T04:20:55-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Toro Restrepo\",\"email\":\"danyst_04@hotmail.com\",\"phone_number\":\"3104754113\",\"address\":null,\"creation_date\":\"2023-09-11T16:20:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm9pkne2zlbfdaaqofw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 21:21:23','2023-09-11 21:21:23'),(9104,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-11T16:22:49-05:00\",\"transaction\":{\"id\":\"trm9pkne2zlbfdaaqofw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"154291870\",\"creation_date\":\"2023-09-11T16:20:55-05:00\",\"operation_date\":\"2023-09-11T16:22:35-05:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Uribe Toro (1036460847)\",\"error_message\":null,\"order_id\":\"4F5A9BF135F285358A4A74B08F8121F8_ZXDF0T7G3O_1694467252.3909\",\"due_date\":\"2023-09-12T04:20:55-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Toro Restrepo\",\"email\":\"danyst_04@hotmail.com\",\"phone_number\":\"3104754113\",\"address\":null,\"creation_date\":\"2023-09-11T16:20:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 21:22:50','2023-09-11 21:22:50'),(9105,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T16:23:54-05:00\",\"transaction\":{\"id\":\"trp5ellfufnlghsrd7pe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T16:23:25-05:00\",\"operation_date\":\"2023-09-11T16:23:25-05:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Uribe Toro (1036460847)\",\"error_message\":null,\"order_id\":\"2BA3C4B9390CC43EDB94E42144729D33_BQT7APNF6U_1694467402.649\",\"due_date\":\"2023-09-12T04:23:25-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Toro Restrepo\",\"email\":\"danyst_04@hotmail.com\",\"phone_number\":\"3104754113\",\"address\":null,\"creation_date\":\"2023-09-11T16:23:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trp5ellfufnlghsrd7pe/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 21:23:55','2023-09-11 21:23:55'),(9106,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-11T15:24:30-06:00\",\"transaction\":{\"id\":\"trp5ellfufnlghsrd7pe\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"154298373\",\"creation_date\":\"2023-09-11T16:23:25-06:00\",\"operation_date\":\"2023-09-11T15:24:28-06:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Uribe Toro (1036460847)\",\"error_message\":null,\"order_id\":\"2BA3C4B9390CC43EDB94E42144729D33_BQT7APNF6U_1694467402.649\",\"due_date\":\"2023-09-12T04:23:25-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Toro Restrepo\",\"email\":\"danyst_04@hotmail.com\",\"phone_number\":\"3104754113\",\"address\":null,\"creation_date\":\"2023-09-11T16:23:25-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 21:24:30','2023-09-11 21:24:30'),(9107,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T16:35:39-05:00\",\"transaction\":{\"id\":\"trplze2yr10ormp68t8z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T16:34:41-05:00\",\"operation_date\":\"2023-09-11T16:34:41-05:00\",\"description\":\"Pago Mensual academia: FRANCO RIOS LOPEZ (1035005410)\",\"error_message\":null,\"order_id\":\"7D571E5C15BAD5EF8C4352CE7A1D9E78_LSK0X8HMBF_1694468078.6371\",\"due_date\":\"2023-09-12T04:34:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"LUIS ANTONIO\",\"last_name\":\"RIOS GUZMAN\",\"email\":\"luis@misideas.me\",\"phone_number\":\"3165367339\",\"address\":null,\"creation_date\":\"2023-09-11T16:34:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trplze2yr10ormp68t8z/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 21:35:39','2023-09-11 21:35:39'),(9108,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-11T16:37:07-05:00\",\"transaction\":{\"id\":\"trplze2yr10ormp68t8z\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"154326846\",\"creation_date\":\"2023-09-11T16:34:41-05:00\",\"operation_date\":\"2023-09-11T16:36:36-05:00\",\"description\":\"Pago Mensual academia: FRANCO RIOS LOPEZ (1035005410)\",\"error_message\":null,\"order_id\":\"7D571E5C15BAD5EF8C4352CE7A1D9E78_LSK0X8HMBF_1694468078.6371\",\"due_date\":\"2023-09-12T04:34:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"LUIS ANTONIO\",\"last_name\":\"RIOS GUZMAN\",\"email\":\"luis@misideas.me\",\"phone_number\":\"3165367339\",\"address\":null,\"creation_date\":\"2023-09-11T16:34:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 21:37:08','2023-09-11 21:37:08'),(9109,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T16:56:15-05:00\",\"transaction\":{\"id\":\"tr8kcexamadkwekmbck9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T16:55:12-05:00\",\"operation_date\":\"2023-09-11T16:55:12-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Guzman Villa (1034998389)\",\"error_message\":null,\"order_id\":\"C7B90B0FC23725F299B47C5224E6EC0D_8D59GOQ2YI_1694469295.3609\",\"due_date\":\"2023-09-12T04:55:12-05:00\",\"amount\":331800.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Villa\",\"email\":\"ternerita26@hotmail.com\",\"phone_number\":\"3206998001\",\"address\":null,\"creation_date\":\"2023-09-11T16:55:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8kcexamadkwekmbck9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 21:56:16','2023-09-11 21:56:16'),(9110,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-11T15:57:31-06:00\",\"transaction\":{\"id\":\"tr8kcexamadkwekmbck9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"154372284\",\"creation_date\":\"2023-09-11T16:55:12-06:00\",\"operation_date\":\"2023-09-11T15:57:13-06:00\",\"description\":\"Pago Mensual academia: Maximiliano Guzman Villa (1034998389)\",\"error_message\":null,\"order_id\":\"C7B90B0FC23725F299B47C5224E6EC0D_8D59GOQ2YI_1694469295.3609\",\"due_date\":\"2023-09-12T04:55:12-06:00\",\"amount\":331800.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Villa\",\"email\":\"ternerita26@hotmail.com\",\"phone_number\":\"3206998001\",\"address\":null,\"creation_date\":\"2023-09-11T16:55:12-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 21:57:32','2023-09-11 21:57:32'),(9111,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T17:13:50-05:00\",\"transaction\":{\"id\":\"tr4gfxaxw1z3vad435qb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T17:12:56-05:00\",\"operation_date\":\"2023-09-11T17:12:56-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Villegas Pemberty (1035011996)\",\"error_message\":null,\"order_id\":\"A8BADD37C221A3F19D9AD0AC2196849A_9CHUA61XER_1694470372.8484\",\"due_date\":\"2023-09-12T05:12:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"villegas\",\"email\":\"alejandrovillegasrpo@gmail.com\",\"phone_number\":\"3185162645\",\"address\":null,\"creation_date\":\"2023-09-11T17:12:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4gfxaxw1z3vad435qb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 22:13:50','2023-09-11 22:13:50'),(9112,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-11T16:15:27-06:00\",\"transaction\":{\"id\":\"tr4gfxaxw1z3vad435qb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"154409001\",\"creation_date\":\"2023-09-11T17:12:56-06:00\",\"operation_date\":\"2023-09-11T16:14:46-06:00\",\"description\":\"Pago Mensual academia: Maximiliano Villegas Pemberty (1035011996)\",\"error_message\":null,\"order_id\":\"A8BADD37C221A3F19D9AD0AC2196849A_9CHUA61XER_1694470372.8484\",\"due_date\":\"2023-09-12T05:12:56-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"villegas\",\"email\":\"alejandrovillegasrpo@gmail.com\",\"phone_number\":\"3185162645\",\"address\":null,\"creation_date\":\"2023-09-11T17:12:56-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-11 22:15:28','2023-09-11 22:15:28'),(9113,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T23:18:39-05:00\",\"transaction\":{\"id\":\"triy85ememlumgprk2ij\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-11T23:17:51-05:00\",\"operation_date\":\"2023-09-11T23:17:51-05:00\",\"description\":\"Pago Mensual academia: mathias mora perez (1023546714)\",\"error_message\":null,\"order_id\":\"70162FE655EC381AC6312EBF026AAC54_ZYA2TSOLD6_1694492267.5326\",\"due_date\":\"2023-09-12T11:17:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"rosemberg yair\",\"last_name\":\"mora revelo\",\"email\":\"yair89@outlook.com\",\"phone_number\":\"3506321002\",\"address\":null,\"creation_date\":\"2023-09-11T23:17:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triy85ememlumgprk2ij/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 04:18:39','2023-09-12 04:18:39'),(9114,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  844\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-11T22:36:10-06:00\",\"transaction\":{\"id\":\"triy85ememlumgprk2ij\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-11T23:17:51-06:00\",\"operation_date\":\"2023-09-11T22:36:08-06:00\",\"description\":\"Pago Mensual academia: mathias mora perez (1023546714)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"70162FE655EC381AC6312EBF026AAC54_ZYA2TSOLD6_1694492267.5326\",\"due_date\":\"2023-09-12T11:17:51-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"rosemberg yair\",\"last_name\":\"mora revelo\",\"email\":\"yair89@outlook.com\",\"phone_number\":\"3506321002\",\"address\":null,\"creation_date\":\"2023-09-11T23:17:51-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 04:36:10','2023-09-12 04:36:10'),(9115,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-11T23:45:52-05:00\",\"transaction\":{\"id\":\"trwddlvqj6zvxrie1xth\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-11T23:45:52-05:00\",\"operation_date\":\"2023-09-11T23:45:52-05:00\",\"description\":\"Pago Mensual academia: mathias mora perez (1023546714)\",\"error_message\":null,\"order_id\":\"70162FE655EC381AC6312EBF026AAC54_ZYA2TSOLD6_1694493912.2709\",\"amount\":165900.00,\"customer\":{\"name\":\"rosemberg yair\",\"last_name\":\"mora revelo\",\"email\":\"yair89@outlook.com\",\"phone_number\":\"3506321002\",\"address\":null,\"creation_date\":\"2023-09-11T23:45:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwddlvqj6zvxrie1xth/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 04:45:53','2023-09-12 04:45:53'),(9116,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1137\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-11T23:47:13-05:00\",\"transaction\":{\"id\":\"trwddlvqj6zvxrie1xth\",\"authorization\":\"192458\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-11T23:45:52-05:00\",\"operation_date\":\"2023-09-11T23:47:11-05:00\",\"description\":\"Pago Mensual academia: mathias mora perez (1023546714)\",\"error_message\":null,\"order_id\":\"70162FE655EC381AC6312EBF026AAC54_ZYA2TSOLD6_1694493912.2709\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"409355XXXXXX0833\",\"holder_name\":\"Rosemberg mora \",\"expiration_year\":\"28\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOLOMBIA -NEQUI\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"rosemberg yair\",\"last_name\":\"mora revelo\",\"email\":\"yair89@outlook.com\",\"phone_number\":\"3506321002\",\"address\":null,\"creation_date\":\"2023-09-11T23:45:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwddlvqj6zvxrie1xth/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 04:47:14','2023-09-12 04:47:14'),(9117,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-12T02:19:34-06:00\",\"transaction\":{\"id\":\"tresrhp0ht3udwfqip6f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-09T08:05:48-06:00\",\"operation_date\":\"2023-09-09T08:05:48-06:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"7371364B3D72AC9A3ED8638E6F0BE2C9_NEI8TKS7HZ_1694264742.1757\",\"due_date\":\"2023-09-09T20:05:48-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-09-09T08:05:48-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tresrhp0ht3udwfqip6f/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 08:19:35','2023-09-12 08:19:35'),(9118,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-12T02:19:34-06:00\",\"transaction\":{\"id\":\"trub3nydjpvv7aft5wkq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-08T17:08:16-06:00\",\"operation_date\":\"2023-09-08T17:08:16-06:00\",\"description\":\"Pago Inscripción academia: andrea orrego (1017130331)\",\"error_message\":null,\"order_id\":\"6DF182582740607DA754E4515B70E32D_W971ZIGPS3_1694210886.1444\",\"due_date\":\"2023-09-09T05:08:16-06:00\",\"amount\":431000.00,\"customer\":{\"name\":\"Andrea\",\"last_name\":\"Orrego Jaramillo\",\"email\":\"andre_orrego@hotmail.com\",\"phone_number\":\"3005614936\",\"address\":null,\"creation_date\":\"2023-09-08T17:08:16-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trub3nydjpvv7aft5wkq/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 08:19:35','2023-09-12 08:19:35'),(9119,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  954\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T08:23:13-05:00\",\"transaction\":{\"id\":\"trxrdsuo06rdb2spgz95\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-12T08:21:55-05:00\",\"operation_date\":\"2023-09-12T08:21:55-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Castrillón Echavarria (59876198)\",\"error_message\":null,\"order_id\":\"A58616464D14208B2677A084F5D7456F_GPX5LKBMR2_1694524910.628\",\"due_date\":\"2023-09-12T20:21:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Castrillón Echavarria\",\"email\":\"juancas2323@hotmail.com\",\"phone_number\":\"3127867266\",\"address\":null,\"creation_date\":\"2023-09-12T08:21:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxrdsuo06rdb2spgz95/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 13:23:13','2023-09-12 13:23:13'),(9120,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  837\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-12T07:24:18-06:00\",\"transaction\":{\"id\":\"trxrdsuo06rdb2spgz95\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"155218089\",\"creation_date\":\"2023-09-12T08:21:55-06:00\",\"operation_date\":\"2023-09-12T07:24:15-06:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Castrillón Echavarria (59876198)\",\"error_message\":null,\"order_id\":\"A58616464D14208B2677A084F5D7456F_GPX5LKBMR2_1694524910.628\",\"due_date\":\"2023-09-12T20:21:55-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Castrillón Echavarria\",\"email\":\"juancas2323@hotmail.com\",\"phone_number\":\"3127867266\",\"address\":null,\"creation_date\":\"2023-09-12T08:21:55-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 13:24:18','2023-09-12 13:24:18'),(9121,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T08:34:09-05:00\",\"transaction\":{\"id\":\"trtiwoc952cmc7yb6n7y\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-12T08:33:20-05:00\",\"operation_date\":\"2023-09-12T08:33:20-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694525598.7026\",\"due_date\":\"2023-09-12T20:33:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-12T08:33:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtiwoc952cmc7yb6n7y/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 13:34:10','2023-09-12 13:34:10'),(9122,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  861\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-12T08:35:02-05:00\",\"transaction\":{\"id\":\"trtiwoc952cmc7yb6n7y\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-12T08:33:20-05:00\",\"operation_date\":\"2023-09-12T08:34:19-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694525598.7026\",\"due_date\":\"2023-09-12T20:33:20-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-12T08:33:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 13:35:02','2023-09-12 13:35:02'),(9123,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T08:37:10-05:00\",\"transaction\":{\"id\":\"trse6wxwl7lhvppxzbsn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-12T08:36:32-05:00\",\"operation_date\":\"2023-09-12T08:36:32-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694525786.1535\",\"due_date\":\"2023-09-12T20:36:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-12T08:36:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trse6wxwl7lhvppxzbsn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 13:37:10','2023-09-12 13:37:10'),(9124,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  861\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-12T08:00:11-06:00\",\"transaction\":{\"id\":\"trse6wxwl7lhvppxzbsn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-12T08:36:32-06:00\",\"operation_date\":\"2023-09-12T07:37:17-06:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694525786.1535\",\"due_date\":\"2023-09-12T20:36:32-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-12T08:36:32-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 14:00:12','2023-09-12 14:00:12'),(9125,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T10:34:10-05:00\",\"transaction\":{\"id\":\"tran4icuivr481iaaqtq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-12T10:33:24-05:00\",\"operation_date\":\"2023-09-12T10:33:24-05:00\",\"description\":\"Pago Mensual academia: Gerrard Alvarez Restrepo (1028142667)\",\"error_message\":null,\"order_id\":\"9425BE43BA92C2B4454CA7BF602EFAD8_DVUEJ1S7ZL_1694532800.004\",\"due_date\":\"2023-09-12T22:33:24-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gerrard\",\"last_name\":\"Alvarez Restrepo\",\"email\":\"jeny_rere@hotmail.com\",\"phone_number\":\"3113864202\",\"address\":null,\"creation_date\":\"2023-09-12T10:33:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tran4icuivr481iaaqtq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 15:34:10','2023-09-12 15:34:10'),(9126,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-12T10:34:52-05:00\",\"transaction\":{\"id\":\"tran4icuivr481iaaqtq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"155547145\",\"creation_date\":\"2023-09-12T10:33:24-05:00\",\"operation_date\":\"2023-09-12T10:34:47-05:00\",\"description\":\"Pago Mensual academia: Gerrard Alvarez Restrepo (1028142667)\",\"error_message\":null,\"order_id\":\"9425BE43BA92C2B4454CA7BF602EFAD8_DVUEJ1S7ZL_1694532800.004\",\"due_date\":\"2023-09-12T22:33:24-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gerrard\",\"last_name\":\"Alvarez Restrepo\",\"email\":\"jeny_rere@hotmail.com\",\"phone_number\":\"3113864202\",\"address\":null,\"creation_date\":\"2023-09-12T10:33:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 15:34:53','2023-09-12 15:34:53'),(9127,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  882\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T11:41:45-05:00\",\"transaction\":{\"id\":\"tr6jg3cc6xi3mcy7stud\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-12T11:41:44-05:00\",\"operation_date\":\"2023-09-12T11:41:44-05:00\",\"description\":\"Pago Mensual academia: Jerónimo Sarabia Suarez (1027812213)\",\"error_message\":null,\"order_id\":\"1BDA4C789C38754F639A376716C5859F_N0G6E17IJR_1694536898.5122\",\"amount\":165900.00,\"customer\":{\"name\":\"Elie\",\"last_name\":\"Sarabia\",\"email\":\"essarabi@hotmail.com\",\"phone_number\":\"3008169308\",\"address\":null,\"creation_date\":\"2023-09-12T11:41:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6jg3cc6xi3mcy7stud/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 16:41:45','2023-09-12 16:41:45'),(9128,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1132\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-12T11:42:53-05:00\",\"transaction\":{\"id\":\"tr6jg3cc6xi3mcy7stud\",\"authorization\":\"507151\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-12T11:41:44-05:00\",\"operation_date\":\"2023-09-12T11:42:52-05:00\",\"description\":\"Pago Mensual academia: Jerónimo Sarabia Suarez (1027812213)\",\"error_message\":null,\"order_id\":\"1BDA4C789C38754F639A376716C5859F_N0G6E17IJR_1694536898.5122\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"554933XXXXXX2728\",\"holder_name\":\"Elie Sarabia\",\"expiration_year\":\"27\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Elie\",\"last_name\":\"Sarabia\",\"email\":\"essarabi@hotmail.com\",\"phone_number\":\"3008169308\",\"address\":null,\"creation_date\":\"2023-09-12T11:41:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6jg3cc6xi3mcy7stud/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 16:42:54','2023-09-12 16:42:54'),(9129,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T17:17:56-05:00\",\"transaction\":{\"id\":\"tr5yirlll68gggy2r1th\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-12T17:17:08-05:00\",\"operation_date\":\"2023-09-12T17:17:08-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Garcia Cardona (1141519149)\",\"error_message\":null,\"order_id\":\"7059B7DEA43DA04FD342088D7C1698F0_1L4JRGTM89_1694557024.9081\",\"due_date\":\"2023-09-13T05:17:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"veronica\",\"last_name\":\"cardona\",\"email\":\"Veronicacardona949@gmail.com\",\"phone_number\":\"3013320074\",\"address\":null,\"creation_date\":\"2023-09-12T17:17:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5yirlll68gggy2r1th/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 22:17:57','2023-09-12 22:17:57'),(9130,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-12T17:19:11-05:00\",\"transaction\":{\"id\":\"tr5yirlll68gggy2r1th\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"156607982\",\"creation_date\":\"2023-09-12T17:17:08-05:00\",\"operation_date\":\"2023-09-12T17:18:58-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Garcia Cardona (1141519149)\",\"error_message\":null,\"order_id\":\"7059B7DEA43DA04FD342088D7C1698F0_1L4JRGTM89_1694557024.9081\",\"due_date\":\"2023-09-13T05:17:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"veronica\",\"last_name\":\"cardona\",\"email\":\"Veronicacardona949@gmail.com\",\"phone_number\":\"3013320074\",\"address\":null,\"creation_date\":\"2023-09-12T17:17:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 22:19:11','2023-09-12 22:19:11'),(9131,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T17:28:56-05:00\",\"transaction\":{\"id\":\"trjsj7v9vbppckikyc4n\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-12T17:27:42-05:00\",\"operation_date\":\"2023-09-12T17:27:42-05:00\",\"description\":\"Pago Inscripción academia: juan elias mosquera tobon (1018247755)\",\"error_message\":null,\"order_id\":\"5E4450DC93010BBEEA7CD28EBA296850_71DUABISZ8_1694557657.6315\",\"due_date\":\"2023-09-13T05:27:42-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"Audier Jaime\",\"last_name\":\"Mosquera Medina\",\"email\":\"jaime25mosquera@gmail.com\",\"phone_number\":\"3138433267\",\"address\":null,\"creation_date\":\"2023-09-12T17:27:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjsj7v9vbppckikyc4n/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 22:28:57','2023-09-12 22:28:57'),(9132,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  865\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-12T16:36:02-06:00\",\"transaction\":{\"id\":\"trjsj7v9vbppckikyc4n\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-12T17:27:42-06:00\",\"operation_date\":\"2023-09-12T16:29:29-06:00\",\"description\":\"Pago Inscripción academia: juan elias mosquera tobon (1018247755)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"5E4450DC93010BBEEA7CD28EBA296850_71DUABISZ8_1694557657.6315\",\"due_date\":\"2023-09-13T05:27:42-06:00\",\"error_code\":1007,\"amount\":391000.00,\"customer\":{\"name\":\"Audier Jaime\",\"last_name\":\"Mosquera Medina\",\"email\":\"jaime25mosquera@gmail.com\",\"phone_number\":\"3138433267\",\"address\":null,\"creation_date\":\"2023-09-12T17:27:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 22:36:03','2023-09-12 22:36:03'),(9133,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T17:38:03-05:00\",\"transaction\":{\"id\":\"trlhbl8st8tjpcocuwmd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-12T17:37:21-05:00\",\"operation_date\":\"2023-09-12T17:37:21-05:00\",\"description\":\"Pago Inscripción academia: juan elias mosquera tobon (1018247755)\",\"error_message\":null,\"order_id\":\"5E4450DC93010BBEEA7CD28EBA296850_71DUABISZ8_1694558231.4418\",\"due_date\":\"2023-09-13T05:37:21-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"Audier Jaime\",\"last_name\":\"Mosquera Medina\",\"email\":\"jaime25mosquera@gmail.com\",\"phone_number\":\"3138433267\",\"address\":null,\"creation_date\":\"2023-09-12T17:37:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlhbl8st8tjpcocuwmd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 22:38:03','2023-09-12 22:38:03'),(9134,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-12T16:44:39-06:00\",\"transaction\":{\"id\":\"trlhbl8st8tjpcocuwmd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"156655742\",\"creation_date\":\"2023-09-12T17:37:21-06:00\",\"operation_date\":\"2023-09-12T16:39:55-06:00\",\"description\":\"Pago Inscripción academia: juan elias mosquera tobon (1018247755)\",\"error_message\":null,\"order_id\":\"5E4450DC93010BBEEA7CD28EBA296850_71DUABISZ8_1694558231.4418\",\"due_date\":\"2023-09-13T05:37:21-06:00\",\"amount\":391000.00,\"customer\":{\"name\":\"Audier Jaime\",\"last_name\":\"Mosquera Medina\",\"email\":\"jaime25mosquera@gmail.com\",\"phone_number\":\"3138433267\",\"address\":null,\"creation_date\":\"2023-09-12T17:37:21-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 22:44:40','2023-09-12 22:44:40'),(9135,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  879\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T18:18:18-05:00\",\"transaction\":{\"id\":\"tr9vragvkptk7oeqtaf1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-12T18:18:17-05:00\",\"operation_date\":\"2023-09-12T18:18:17-05:00\",\"description\":\"Pago Mensual academia: Mateo Garcia Garcia (1039465940)\",\"error_message\":null,\"order_id\":\"0C2F66F43752D47FB49ABEEA0BADF47A_65VT3F4UB0_1694560692.7294\",\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"Garcia\",\"email\":\"vivi1247@hotmail.com\",\"phone_number\":\"3014771549\",\"address\":null,\"creation_date\":\"2023-09-12T18:18:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9vragvkptk7oeqtaf1/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 23:18:18','2023-09-12 23:18:18'),(9136,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T18:19:12-05:00\",\"transaction\":{\"id\":\"traxwpqigvcpy2d1jwe2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-12T18:18:23-05:00\",\"operation_date\":\"2023-09-12T18:18:23-05:00\",\"description\":\"Pago Mensual academia: juan elias mosquera tobon (1018247755)\",\"error_message\":null,\"order_id\":\"540393AE7F8B7A7FD6CDF47250B05679_EBH5329G4V_1694560698.9258\",\"due_date\":\"2023-09-13T06:18:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Audier Jaime\",\"last_name\":\"Mosquera Medina\",\"email\":\"jaime25mosquera@gmail.com\",\"phone_number\":\"3138433267\",\"address\":null,\"creation_date\":\"2023-09-12T18:18:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traxwpqigvcpy2d1jwe2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 23:19:12','2023-09-12 23:19:12'),(9137,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1128\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-12T18:20:35-05:00\",\"transaction\":{\"id\":\"tr9vragvkptk7oeqtaf1\",\"authorization\":\"01029G\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-12T18:18:17-05:00\",\"operation_date\":\"2023-09-12T18:20:33-05:00\",\"description\":\"Pago Mensual academia: Mateo Garcia Garcia (1039465940)\",\"error_message\":null,\"order_id\":\"0C2F66F43752D47FB49ABEEA0BADF47A_65VT3F4UB0_1694560692.7294\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"424631XXXXXX5145\",\"holder_name\":\"John Garcia \",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CHASE BANK USA, N.A.\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"Garcia\",\"email\":\"vivi1247@hotmail.com\",\"phone_number\":\"3014771549\",\"address\":null,\"creation_date\":\"2023-09-12T18:18:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9vragvkptk7oeqtaf1/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 23:20:35','2023-09-12 23:20:35'),(9138,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-12T18:20:54-05:00\",\"transaction\":{\"id\":\"traxwpqigvcpy2d1jwe2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"156749662\",\"creation_date\":\"2023-09-12T18:18:23-05:00\",\"operation_date\":\"2023-09-12T18:20:26-05:00\",\"description\":\"Pago Mensual academia: juan elias mosquera tobon (1018247755)\",\"error_message\":null,\"order_id\":\"540393AE7F8B7A7FD6CDF47250B05679_EBH5329G4V_1694560698.9258\",\"due_date\":\"2023-09-13T06:18:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Audier Jaime\",\"last_name\":\"Mosquera Medina\",\"email\":\"jaime25mosquera@gmail.com\",\"phone_number\":\"3138433267\",\"address\":null,\"creation_date\":\"2023-09-12T18:18:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-12 23:20:54','2023-09-12 23:20:54'),(9139,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  879\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T18:22:06-05:00\",\"transaction\":{\"id\":\"trzlaenbccvpqfvhyctv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-12T18:22:06-05:00\",\"operation_date\":\"2023-09-12T18:22:06-05:00\",\"description\":\"Pago Mensual academia: Mateo Garcia Garcia (1039465940)\",\"error_message\":null,\"order_id\":\"4F9C76CF97F84048C5990DD4EF842EA2_R2V3KFMHDG_1694560914.0264\",\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"Garcia\",\"email\":\"vivi1247@hotmail.com\",\"phone_number\":\"3014771549\",\"address\":null,\"creation_date\":\"2023-09-12T18:22:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzlaenbccvpqfvhyctv/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 23:22:07','2023-09-12 23:22:07'),(9140,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1128\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-12T18:22:45-05:00\",\"transaction\":{\"id\":\"trzlaenbccvpqfvhyctv\",\"authorization\":\"07336G\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-12T18:22:06-05:00\",\"operation_date\":\"2023-09-12T18:22:44-05:00\",\"description\":\"Pago Mensual academia: Mateo Garcia Garcia (1039465940)\",\"error_message\":null,\"order_id\":\"4F9C76CF97F84048C5990DD4EF842EA2_R2V3KFMHDG_1694560914.0264\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"424631XXXXXX5145\",\"holder_name\":\"John Garcia \",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CHASE BANK USA, N.A.\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"Garcia\",\"email\":\"vivi1247@hotmail.com\",\"phone_number\":\"3014771549\",\"address\":null,\"creation_date\":\"2023-09-12T18:22:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzlaenbccvpqfvhyctv/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 23:22:46','2023-09-12 23:22:46'),(9141,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  879\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T18:23:11-05:00\",\"transaction\":{\"id\":\"trhdzb1ndrpbbwjexfnv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-12T18:23:11-05:00\",\"operation_date\":\"2023-09-12T18:23:11-05:00\",\"description\":\"Pago Mensual academia: Mateo Garcia Garcia (1039465940)\",\"error_message\":null,\"order_id\":\"BBBE7EF28A0018C4484EAA8B2D0A0328_QZE1UCNGYX_1694560988.9701\",\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"Garcia\",\"email\":\"vivi1247@hotmail.com\",\"phone_number\":\"3014771549\",\"address\":null,\"creation_date\":\"2023-09-12T18:23:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhdzb1ndrpbbwjexfnv/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 23:23:12','2023-09-12 23:23:12'),(9142,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1128\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-12T18:24:01-05:00\",\"transaction\":{\"id\":\"trhdzb1ndrpbbwjexfnv\",\"authorization\":\"02033G\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-12T18:23:11-05:00\",\"operation_date\":\"2023-09-12T18:24:00-05:00\",\"description\":\"Pago Mensual academia: Mateo Garcia Garcia (1039465940)\",\"error_message\":null,\"order_id\":\"BBBE7EF28A0018C4484EAA8B2D0A0328_QZE1UCNGYX_1694560988.9701\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"424631XXXXXX5145\",\"holder_name\":\"John Garcia \",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CHASE BANK USA, N.A.\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"Garcia\",\"email\":\"vivi1247@hotmail.com\",\"phone_number\":\"3014771549\",\"address\":null,\"creation_date\":\"2023-09-12T18:23:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhdzb1ndrpbbwjexfnv/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 23:24:02','2023-09-12 23:24:02'),(9143,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  879\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-12T18:24:27-05:00\",\"transaction\":{\"id\":\"trkjjayhocmti6xg5k8f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-12T18:24:27-05:00\",\"operation_date\":\"2023-09-12T18:24:27-05:00\",\"description\":\"Pago Mensual academia: Mateo Garcia Garcia (1039465940)\",\"error_message\":null,\"order_id\":\"6516C28727509C3DB6280AE16254E916_J31AOBSZDX_1694561064.1371\",\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"Garcia\",\"email\":\"vivi1247@hotmail.com\",\"phone_number\":\"3014771549\",\"address\":null,\"creation_date\":\"2023-09-12T18:24:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkjjayhocmti6xg5k8f/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 23:24:28','2023-09-12 23:24:28'),(9144,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1128\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-12T18:25:10-05:00\",\"transaction\":{\"id\":\"trkjjayhocmti6xg5k8f\",\"authorization\":\"05299G\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-12T18:24:27-05:00\",\"operation_date\":\"2023-09-12T18:25:09-05:00\",\"description\":\"Pago Mensual academia: Mateo Garcia Garcia (1039465940)\",\"error_message\":null,\"order_id\":\"6516C28727509C3DB6280AE16254E916_J31AOBSZDX_1694561064.1371\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"424631XXXXXX5145\",\"holder_name\":\"John Garcia \",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CHASE BANK USA, N.A.\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"Garcia\",\"email\":\"vivi1247@hotmail.com\",\"phone_number\":\"3014771549\",\"address\":null,\"creation_date\":\"2023-09-12T18:24:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkjjayhocmti6xg5k8f/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-12 23:25:11','2023-09-12 23:25:11'),(9145,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-13T07:27:47-05:00\",\"transaction\":{\"id\":\"tr7hoip5xi5xpdxdoqqj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-13T07:25:57-05:00\",\"operation_date\":\"2023-09-13T07:25:57-05:00\",\"description\":\"Pago Mensual academia: Juan Martin Pino Alzate (1035015684)\",\"error_message\":null,\"order_id\":\"84C2D4860A0FC27BCF854C444FB8B400_ABDXSQ4CY8_1694607945.0213\",\"due_date\":\"2023-09-13T19:25:57-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Alzate Gonzalez\",\"email\":\"analzate_5@hotmail.com\",\"phone_number\":\"3103588945\",\"address\":null,\"creation_date\":\"2023-09-13T07:25:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7hoip5xi5xpdxdoqqj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 12:27:48','2023-09-13 12:27:48'),(9146,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-13T07:28:49-05:00\",\"transaction\":{\"id\":\"tr7hoip5xi5xpdxdoqqj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"157410766\",\"creation_date\":\"2023-09-13T07:25:57-05:00\",\"operation_date\":\"2023-09-13T07:28:44-05:00\",\"description\":\"Pago Mensual academia: Juan Martin Pino Alzate (1035015684)\",\"error_message\":null,\"order_id\":\"84C2D4860A0FC27BCF854C444FB8B400_ABDXSQ4CY8_1694607945.0213\",\"due_date\":\"2023-09-13T19:25:57-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Alzate Gonzalez\",\"email\":\"analzate_5@hotmail.com\",\"phone_number\":\"3103588945\",\"address\":null,\"creation_date\":\"2023-09-13T07:25:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 12:28:50','2023-09-13 12:28:50'),(9147,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-13T11:39:24-05:00\",\"transaction\":{\"id\":\"trb0rr8ws7vuub4v4f72\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-13T11:38:29-05:00\",\"operation_date\":\"2023-09-13T11:38:29-05:00\",\"description\":\"Pago Mensual academia: Josué Blandón Ospina (1036454829)\",\"error_message\":null,\"order_id\":\"EE188463935A061DEE6DF8BF449CB882_G63WKDFE29_1694623106.8312\",\"due_date\":\"2023-09-13T23:38:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Josue\",\"last_name\":\"Blandon Ospina\",\"email\":\"gospinab@gmail.com\",\"phone_number\":\"3003642004\",\"address\":null,\"creation_date\":\"2023-09-13T11:38:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb0rr8ws7vuub4v4f72/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 16:39:24','2023-09-13 16:39:24'),(9148,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  842\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-13T11:00:17-06:00\",\"transaction\":{\"id\":\"trb0rr8ws7vuub4v4f72\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-13T11:38:29-06:00\",\"operation_date\":\"2023-09-13T10:39:31-06:00\",\"description\":\"Pago Mensual academia: Josué Blandón Ospina (1036454829)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"EE188463935A061DEE6DF8BF449CB882_G63WKDFE29_1694623106.8312\",\"due_date\":\"2023-09-13T23:38:29-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Josue\",\"last_name\":\"Blandon Ospina\",\"email\":\"gospinab@gmail.com\",\"phone_number\":\"3003642004\",\"address\":null,\"creation_date\":\"2023-09-13T11:38:29-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 17:00:18','2023-09-13 17:00:18'),(9149,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-13T13:15:58-05:00\",\"transaction\":{\"id\":\"trempz7pbslmrv6au4yj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-13T13:15:11-05:00\",\"operation_date\":\"2023-09-13T13:15:11-05:00\",\"description\":\"Pago Mensual academia: jeronimo zuluaga cardona (1023530744)\",\"error_message\":null,\"order_id\":\"7612936DCC85282C6FA4DD9D4FFE57F1_USH2D47W13_1694628907.2147\",\"due_date\":\"2023-09-14T01:15:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"cardona londoño\",\"email\":\"fevi19@hotmail.com\",\"phone_number\":\"3157461215\",\"address\":null,\"creation_date\":\"2023-09-13T13:15:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trempz7pbslmrv6au4yj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 18:15:59','2023-09-13 18:15:59'),(9150,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-13T13:17:14-05:00\",\"transaction\":{\"id\":\"trempz7pbslmrv6au4yj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"158144760\",\"creation_date\":\"2023-09-13T13:15:11-05:00\",\"operation_date\":\"2023-09-13T13:17:00-05:00\",\"description\":\"Pago Mensual academia: jeronimo zuluaga cardona (1023530744)\",\"error_message\":null,\"order_id\":\"7612936DCC85282C6FA4DD9D4FFE57F1_USH2D47W13_1694628907.2147\",\"due_date\":\"2023-09-14T01:15:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"cardona londoño\",\"email\":\"fevi19@hotmail.com\",\"phone_number\":\"3157461215\",\"address\":null,\"creation_date\":\"2023-09-13T13:15:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 18:17:14','2023-09-13 18:17:14'),(9151,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  913\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-13T13:41:47-05:00\",\"transaction\":{\"id\":\"trkvtwso9lh3fxrsmgsj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-13T13:39:29-05:00\",\"operation_date\":\"2023-09-13T13:39:29-05:00\",\"description\":\"Pago Mensual academia: Geronimo Paba Moreno (1023167804)\",\"error_message\":null,\"order_id\":\"A0443C8C8C3372D662E9173C18FAAA2C_HW690J3KG5_1694630365.8922\",\"due_date\":\"2023-09-14T01:39:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"RAMON \",\"last_name\":\"PABA \",\"email\":\"ramonpaba@hotmail.com\",\"phone_number\":\"3005576931\",\"address\":null,\"creation_date\":\"2023-09-13T13:39:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkvtwso9lh3fxrsmgsj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 18:41:48','2023-09-13 18:41:48'),(9152,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  796\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-13T12:45:48-06:00\",\"transaction\":{\"id\":\"trkvtwso9lh3fxrsmgsj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"158196008\",\"creation_date\":\"2023-09-13T13:39:29-06:00\",\"operation_date\":\"2023-09-13T12:43:51-06:00\",\"description\":\"Pago Mensual academia: Geronimo Paba Moreno (1023167804)\",\"error_message\":null,\"order_id\":\"A0443C8C8C3372D662E9173C18FAAA2C_HW690J3KG5_1694630365.8922\",\"due_date\":\"2023-09-14T01:39:29-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"RAMON \",\"last_name\":\"PABA \",\"email\":\"ramonpaba@hotmail.com\",\"phone_number\":\"3005576931\",\"address\":null,\"creation_date\":\"2023-09-13T13:39:29-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 18:45:49','2023-09-13 18:45:49'),(9153,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-13T13:58:09-05:00\",\"transaction\":{\"id\":\"trlgblogq1unqji5vmvy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-13T13:56:47-05:00\",\"operation_date\":\"2023-09-13T13:56:47-05:00\",\"description\":\"Pago Mensual academia: Jeronimo Espinosa Caballero (1019913798)\",\"error_message\":null,\"order_id\":\"C12D1F7CC7C4B41A125B5752D1238B03_AHW8EOJI43_1694631402.3831\",\"due_date\":\"2023-09-14T01:56:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge \",\"last_name\":\"Espinosa\",\"email\":\"jorgehdoespinosa@gmail.com\",\"phone_number\":\"3164946292\",\"address\":null,\"creation_date\":\"2023-09-13T13:56:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlgblogq1unqji5vmvy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 18:58:10','2023-09-13 18:58:10'),(9154,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  842\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-13T13:01:44-06:00\",\"transaction\":{\"id\":\"trlgblogq1unqji5vmvy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-13T13:56:47-06:00\",\"operation_date\":\"2023-09-13T13:56:47-06:00\",\"description\":\"Pago Mensual academia: Jeronimo Espinosa Caballero (1019913798)\",\"error_message\":\"Gateway rejected the operation: FAILED\",\"order_id\":\"C12D1F7CC7C4B41A125B5752D1238B03_AHW8EOJI43_1694631402.3831\",\"due_date\":\"2023-09-14T01:56:47-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Jorge \",\"last_name\":\"Espinosa\",\"email\":\"jorgehdoespinosa@gmail.com\",\"phone_number\":\"3164946292\",\"address\":null,\"creation_date\":\"2023-09-13T13:56:47-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 19:01:45','2023-09-13 19:01:45'),(9155,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-13T14:09:35-05:00\",\"transaction\":{\"id\":\"trjuqqkze9b0z8po9fb5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-13T14:08:44-05:00\",\"operation_date\":\"2023-09-13T14:08:44-05:00\",\"description\":\"Pago Mensual academia: Salomon Jiménez Martínez (1035006701)\",\"error_message\":null,\"order_id\":\"ADF8D7F8C53C8688E63A02BFB3055497_5UVYMAIE1Z_1694632106.1284\",\"due_date\":\"2023-09-14T02:08:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marianella\",\"last_name\":\"Martínez Rave\",\"email\":\"marianella_347@hotmail.com\",\"phone_number\":\"3146102579\",\"address\":null,\"creation_date\":\"2023-09-13T14:08:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjuqqkze9b0z8po9fb5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 19:09:36','2023-09-13 19:09:36'),(9156,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-13T14:11:30-05:00\",\"transaction\":{\"id\":\"trjuqqkze9b0z8po9fb5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"158254064\",\"creation_date\":\"2023-09-13T14:08:44-05:00\",\"operation_date\":\"2023-09-13T14:10:38-05:00\",\"description\":\"Pago Mensual academia: Salomon Jiménez Martínez (1035006701)\",\"error_message\":null,\"order_id\":\"ADF8D7F8C53C8688E63A02BFB3055497_5UVYMAIE1Z_1694632106.1284\",\"due_date\":\"2023-09-14T02:08:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marianella\",\"last_name\":\"Martínez Rave\",\"email\":\"marianella_347@hotmail.com\",\"phone_number\":\"3146102579\",\"address\":null,\"creation_date\":\"2023-09-13T14:08:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 19:11:31','2023-09-13 19:11:31'),(9157,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-13T14:18:41-05:00\",\"transaction\":{\"id\":\"trgrz2oua6z1jcl7yq2f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-13T14:17:31-05:00\",\"operation_date\":\"2023-09-13T14:17:31-05:00\",\"description\":\"Pago Mensual academia: Jeronimo Espinosa Caballero (1019913798)\",\"error_message\":null,\"order_id\":\"C12D1F7CC7C4B41A125B5752D1238B03_AHW8EOJI43_1694632644.1401\",\"due_date\":\"2023-09-14T02:17:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Carolina\",\"last_name\":\"Caballero Roa\",\"email\":\"jorgehdoespinosa@gmail.com\",\"phone_number\":\"3188272099\",\"address\":null,\"creation_date\":\"2023-09-13T14:17:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgrz2oua6z1jcl7yq2f/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 19:18:41','2023-09-13 19:18:41'),(9158,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-13T14:23:01-05:00\",\"transaction\":{\"id\":\"trgrz2oua6z1jcl7yq2f\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"158274741\",\"creation_date\":\"2023-09-13T14:17:31-05:00\",\"operation_date\":\"2023-09-13T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Jeronimo Espinosa Caballero (1019913798)\",\"error_message\":null,\"order_id\":\"C12D1F7CC7C4B41A125B5752D1238B03_AHW8EOJI43_1694632644.1401\",\"due_date\":\"2023-09-14T02:17:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Carolina\",\"last_name\":\"Caballero Roa\",\"email\":\"jorgehdoespinosa@gmail.com\",\"phone_number\":\"3188272099\",\"address\":null,\"creation_date\":\"2023-09-13T14:17:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 19:23:02','2023-09-13 19:23:02'),(9159,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-13T16:59:51-05:00\",\"transaction\":{\"id\":\"trcgg6ubgjctxqcylyp4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-13T16:59:51-05:00\",\"operation_date\":\"2023-09-13T16:59:51-05:00\",\"description\":\"Pago Mensual academia: miguel angel velez restrepo (1013465944)\",\"error_message\":null,\"order_id\":\"ABEC16F483ABB4F1810CA029AADF8446_1BACZXFHP2_1694642375.3815\",\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"velez Restrepo\",\"email\":\"laurapaisa0422@hotmail.com\",\"phone_number\":\"3104894154\",\"address\":null,\"creation_date\":\"2023-09-13T16:59:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcgg6ubgjctxqcylyp4/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-13 21:59:52','2023-09-13 21:59:52'),(9160,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1163\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-13T17:01:07-05:00\",\"transaction\":{\"id\":\"trcgg6ubgjctxqcylyp4\",\"authorization\":\"170107\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-13T16:59:51-05:00\",\"operation_date\":\"2023-09-13T17:01:06-05:00\",\"description\":\"Pago Mensual academia: miguel angel velez restrepo (1013465944)\",\"error_message\":null,\"order_id\":\"ABEC16F483ABB4F1810CA029AADF8446_1BACZXFHP2_1694642375.3815\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5920\",\"holder_name\":\"Sebastián restrepo \",\"expiration_year\":\"26\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"velez Restrepo\",\"email\":\"laurapaisa0422@hotmail.com\",\"phone_number\":\"3104894154\",\"address\":null,\"creation_date\":\"2023-09-13T16:59:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcgg6ubgjctxqcylyp4/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-13 22:01:08','2023-09-13 22:01:08'),(9161,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-13T17:18:34-05:00\",\"transaction\":{\"id\":\"trfsk7ukwgkxdyckmmbv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-13T17:16:22-05:00\",\"operation_date\":\"2023-09-13T17:16:22-05:00\",\"description\":\"Pago Mensual academia: Anthony Suárez Rendón (1033495665)\",\"error_message\":null,\"order_id\":\"74306EEF5860833E2E47FF169A73B45B_NETM9G53DJ_1694643364.1604\",\"due_date\":\"2023-09-14T05:16:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Melissa\",\"last_name\":\"Rendón valenzuela\",\"email\":\"melis_78@hotmail.com\",\"phone_number\":\"3012871657\",\"address\":null,\"creation_date\":\"2023-09-13T17:16:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfsk7ukwgkxdyckmmbv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 22:18:34','2023-09-13 22:18:34'),(9162,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-13T16:21:37-06:00\",\"transaction\":{\"id\":\"trfsk7ukwgkxdyckmmbv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"158700218\",\"creation_date\":\"2023-09-13T17:16:22-06:00\",\"operation_date\":\"2023-09-13T16:19:37-06:00\",\"description\":\"Pago Mensual academia: Anthony Suárez Rendón (1033495665)\",\"error_message\":null,\"order_id\":\"74306EEF5860833E2E47FF169A73B45B_NETM9G53DJ_1694643364.1604\",\"due_date\":\"2023-09-14T05:16:22-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Melissa\",\"last_name\":\"Rendón valenzuela\",\"email\":\"melis_78@hotmail.com\",\"phone_number\":\"3012871657\",\"address\":null,\"creation_date\":\"2023-09-13T17:16:22-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-13 22:21:38','2023-09-13 22:21:38'),(9163,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-13T21:27:39-05:00\",\"transaction\":{\"id\":\"tringcc8lupbf4pddv5z\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-13T21:27:11-05:00\",\"operation_date\":\"2023-09-13T21:27:11-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694658429.272\",\"due_date\":\"2023-09-14T09:27:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-13T21:27:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tringcc8lupbf4pddv5z/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 02:27:39','2023-09-14 02:27:39'),(9164,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-13T21:29:16-05:00\",\"transaction\":{\"id\":\"tringcc8lupbf4pddv5z\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"159135159\",\"creation_date\":\"2023-09-13T21:27:11-05:00\",\"operation_date\":\"2023-09-13T21:29:06-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"AF8D9C4E238C63FB074B44EB6AED80AE_ABUYJNWD7T_1694658429.272\",\"due_date\":\"2023-09-14T09:27:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-09-13T21:27:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 02:29:16','2023-09-14 02:29:16'),(9165,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-14T02:56:12-06:00\",\"transaction\":{\"id\":\"trovbj8pcpnombauwc02\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-13T10:02:14-06:00\",\"operation_date\":\"2023-09-13T10:02:14-06:00\",\"description\":\"Pago Mensual academia: jeronimo zuluaga cardona (1023530744)\",\"error_message\":null,\"order_id\":\"7612936DCC85282C6FA4DD9D4FFE57F1_USH2D47W13_1694617327.0039\",\"due_date\":\"2023-09-13T22:02:14-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"cardona londoño\",\"email\":\"fevi19@hotmail.com\",\"phone_number\":\"3157461215\",\"address\":null,\"creation_date\":\"2023-09-13T10:02:14-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trovbj8pcpnombauwc02/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 08:56:13','2023-09-14 08:56:13'),(9166,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T08:21:20-05:00\",\"transaction\":{\"id\":\"trnueryo5kejfahwrhjw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-14T08:21:20-05:00\",\"operation_date\":\"2023-09-14T08:21:20-05:00\",\"description\":\"Pago Mensual academia: lorenzo morales sanchez (1023545834)\",\"error_message\":null,\"order_id\":\"1BD69C7DF3112FB9A584FBD9EDFC6C90_DIHUA2BJ6G_1694697677.5412\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Morales\",\"email\":\"xandermoraserna@gmail.com\",\"phone_number\":\"3104747465\",\"address\":null,\"creation_date\":\"2023-09-14T08:21:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnueryo5kejfahwrhjw/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 13:21:21','2023-09-14 13:21:21'),(9167,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1145\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T08:22:19-05:00\",\"transaction\":{\"id\":\"trnueryo5kejfahwrhjw\",\"authorization\":\"082219\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-14T08:21:20-05:00\",\"operation_date\":\"2023-09-14T08:22:18-05:00\",\"description\":\"Pago Mensual academia: lorenzo morales sanchez (1023545834)\",\"error_message\":null,\"order_id\":\"1BD69C7DF3112FB9A584FBD9EDFC6C90_DIHUA2BJ6G_1694697677.5412\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX4281\",\"holder_name\":\"Alexander morales\",\"expiration_year\":\"25\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Morales\",\"email\":\"xandermoraserna@gmail.com\",\"phone_number\":\"3104747465\",\"address\":null,\"creation_date\":\"2023-09-14T08:21:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnueryo5kejfahwrhjw/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 13:22:20','2023-09-14 13:22:20'),(9168,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T10:37:23-05:00\",\"transaction\":{\"id\":\"treywmhfpa5mafgumtch\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T10:36:42-05:00\",\"operation_date\":\"2023-09-14T10:36:42-05:00\",\"description\":\"Pago Mensual academia: alejandro lopez rios (1021933632)\",\"error_message\":null,\"order_id\":\"FFC58105BF6F8A91ABA0FA2D99E6F106_49A8OLNVTW_1694705798.5402\",\"due_date\":\"2023-09-14T22:36:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johanna\",\"last_name\":\"rios rios\",\"email\":\"joha.8606@hotmail.com\",\"phone_number\":\"3147496936\",\"address\":null,\"creation_date\":\"2023-09-14T10:36:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treywmhfpa5mafgumtch/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 15:37:24','2023-09-14 15:37:24'),(9169,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T09:39:41-06:00\",\"transaction\":{\"id\":\"treywmhfpa5mafgumtch\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"159711095\",\"creation_date\":\"2023-09-14T10:36:42-06:00\",\"operation_date\":\"2023-09-14T09:38:09-06:00\",\"description\":\"Pago Mensual academia: alejandro lopez rios (1021933632)\",\"error_message\":null,\"order_id\":\"FFC58105BF6F8A91ABA0FA2D99E6F106_49A8OLNVTW_1694705798.5402\",\"due_date\":\"2023-09-14T22:36:42-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johanna\",\"last_name\":\"rios rios\",\"email\":\"joha.8606@hotmail.com\",\"phone_number\":\"3147496936\",\"address\":null,\"creation_date\":\"2023-09-14T10:36:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 15:39:42','2023-09-14 15:39:42'),(9170,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  957\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T11:46:52-05:00\",\"transaction\":{\"id\":\"tr9qcs5gtrijygugdaiv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T11:46:11-05:00\",\"operation_date\":\"2023-09-14T11:46:11-05:00\",\"description\":\"Pago Mensual academia: cristian santiago pino caldero (1038266839)\",\"error_message\":null,\"order_id\":\"254ED7D2DE3B23AB10936522DD547B78_63XRBANC4H_1694709964.0003\",\"due_date\":\"2023-09-14T23:46:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ingrid alexandra\",\"last_name\":\"Calderón bohorquez\",\"email\":\"calderonalexandra1996@gmail.com\",\"phone_number\":\"3023859850\",\"address\":null,\"creation_date\":\"2023-09-14T11:46:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9qcs5gtrijygugdaiv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 16:46:52','2023-09-14 16:46:52'),(9171,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  840\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T11:47:57-05:00\",\"transaction\":{\"id\":\"tr9qcs5gtrijygugdaiv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"159886802\",\"creation_date\":\"2023-09-14T11:46:11-05:00\",\"operation_date\":\"2023-09-14T11:47:40-05:00\",\"description\":\"Pago Mensual academia: cristian santiago pino caldero (1038266839)\",\"error_message\":null,\"order_id\":\"254ED7D2DE3B23AB10936522DD547B78_63XRBANC4H_1694709964.0003\",\"due_date\":\"2023-09-14T23:46:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ingrid alexandra\",\"last_name\":\"Calderón bohorquez\",\"email\":\"calderonalexandra1996@gmail.com\",\"phone_number\":\"3023859850\",\"address\":null,\"creation_date\":\"2023-09-14T11:46:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 16:47:58','2023-09-14 16:47:58'),(9172,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  957\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T11:49:27-05:00\",\"transaction\":{\"id\":\"trkzcvosgjf5d77d6ctn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T11:48:32-05:00\",\"operation_date\":\"2023-09-14T11:48:32-05:00\",\"description\":\"Pago Mensual academia: cristian santiago pino caldero (1038266839)\",\"error_message\":null,\"order_id\":\"3CE83F544DBE69BB4FB19211FC442C2F_65DAMJPVXQ_1694710108.6987\",\"due_date\":\"2023-09-14T23:48:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ingrid alexandra\",\"last_name\":\"Calderón bohorquez\",\"email\":\"calderonalexandra1996@gmail.com\",\"phone_number\":\"3023859850\",\"address\":null,\"creation_date\":\"2023-09-14T11:48:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkzcvosgjf5d77d6ctn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 16:49:27','2023-09-14 16:49:27'),(9173,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  879\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-14T10:51:46-06:00\",\"transaction\":{\"id\":\"trkzcvosgjf5d77d6ctn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-14T11:48:32-06:00\",\"operation_date\":\"2023-09-14T10:49:46-06:00\",\"description\":\"Pago Mensual academia: cristian santiago pino caldero (1038266839)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"3CE83F544DBE69BB4FB19211FC442C2F_65DAMJPVXQ_1694710108.6987\",\"due_date\":\"2023-09-14T23:48:32-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"ingrid alexandra\",\"last_name\":\"Calderón bohorquez\",\"email\":\"calderonalexandra1996@gmail.com\",\"phone_number\":\"3023859850\",\"address\":null,\"creation_date\":\"2023-09-14T11:48:32-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 16:51:47','2023-09-14 16:51:47'),(9174,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  879\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-14T10:55:59-06:00\",\"transaction\":{\"id\":\"trkzcvosgjf5d77d6ctn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-14T11:48:32-06:00\",\"operation_date\":\"2023-09-14T10:49:46-06:00\",\"description\":\"Pago Mensual academia: cristian santiago pino caldero (1038266839)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"3CE83F544DBE69BB4FB19211FC442C2F_65DAMJPVXQ_1694710108.6987\",\"due_date\":\"2023-09-14T23:48:32-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"ingrid alexandra\",\"last_name\":\"Calderón bohorquez\",\"email\":\"calderonalexandra1996@gmail.com\",\"phone_number\":\"3023859850\",\"address\":null,\"creation_date\":\"2023-09-14T11:48:32-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 16:55:59','2023-09-14 16:55:59'),(9175,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  879\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-14T10:57:32-06:00\",\"transaction\":{\"id\":\"trkzcvosgjf5d77d6ctn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-14T11:48:32-06:00\",\"operation_date\":\"2023-09-14T10:49:46-06:00\",\"description\":\"Pago Mensual academia: cristian santiago pino caldero (1038266839)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"3CE83F544DBE69BB4FB19211FC442C2F_65DAMJPVXQ_1694710108.6987\",\"due_date\":\"2023-09-14T23:48:32-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"ingrid alexandra\",\"last_name\":\"Calderón bohorquez\",\"email\":\"calderonalexandra1996@gmail.com\",\"phone_number\":\"3023859850\",\"address\":null,\"creation_date\":\"2023-09-14T11:48:32-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 16:57:33','2023-09-14 16:57:33'),(9176,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T12:34:25-05:00\",\"transaction\":{\"id\":\"trwitn873iq55rky3lpe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T12:32:40-05:00\",\"operation_date\":\"2023-09-14T12:32:40-05:00\",\"description\":\"Pago Inscripción academia: Sebastian Rubio parra (1032943505)\",\"error_message\":null,\"order_id\":\"9CF742E94F29F454AC42FF68F37D5CC4_KIV1JU0Q68_1694712697.7817\",\"due_date\":\"2023-09-15T00:32:40-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Rubio\",\"email\":\"ggasdercol5987@gmail.com\",\"phone_number\":\"3152353147\",\"address\":null,\"creation_date\":\"2023-09-14T12:32:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwitn873iq55rky3lpe/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 17:34:25','2023-09-14 17:34:25'),(9177,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  847\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-14T11:45:30-06:00\",\"transaction\":{\"id\":\"trwitn873iq55rky3lpe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-14T12:32:40-06:00\",\"operation_date\":\"2023-09-14T12:32:40-06:00\",\"description\":\"Pago Inscripción academia: Sebastian Rubio parra (1032943505)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"9CF742E94F29F454AC42FF68F37D5CC4_KIV1JU0Q68_1694712697.7817\",\"due_date\":\"2023-09-15T00:32:40-06:00\",\"error_code\":1007,\"amount\":391000.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Rubio\",\"email\":\"ggasdercol5987@gmail.com\",\"phone_number\":\"3152353147\",\"address\":null,\"creation_date\":\"2023-09-14T12:32:40-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 17:45:31','2023-09-14 17:45:31'),(9178,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  847\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-14T11:48:28-06:00\",\"transaction\":{\"id\":\"trwitn873iq55rky3lpe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-14T12:32:40-06:00\",\"operation_date\":\"2023-09-14T12:32:40-06:00\",\"description\":\"Pago Inscripción academia: Sebastian Rubio parra (1032943505)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"9CF742E94F29F454AC42FF68F37D5CC4_KIV1JU0Q68_1694712697.7817\",\"due_date\":\"2023-09-15T00:32:40-06:00\",\"error_code\":1007,\"amount\":391000.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Rubio\",\"email\":\"ggasdercol5987@gmail.com\",\"phone_number\":\"3152353147\",\"address\":null,\"creation_date\":\"2023-09-14T12:32:40-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 17:48:28','2023-09-14 17:48:28'),(9179,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T13:19:29-05:00\",\"transaction\":{\"id\":\"triu2nbn7czq6izpacsh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-14T13:19:29-05:00\",\"operation_date\":\"2023-09-14T13:19:29-05:00\",\"description\":\"Pago Mensual academia: Emiliano puerta lopez (1035982675)\",\"error_message\":null,\"order_id\":\"21B5680D80F75A616096F2E791AFFAC6_Q9EMNHL6D4_1694715564.1014\",\"amount\":165900.00,\"customer\":{\"name\":\"lina Marcela\",\"last_name\":\"lopez peña\",\"email\":\"lamarce1616@gmail.com\",\"phone_number\":\"3117359167\",\"address\":null,\"creation_date\":\"2023-09-14T13:19:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triu2nbn7czq6izpacsh/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 18:19:30','2023-09-14 18:19:30'),(9180,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1151\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T13:22:09-05:00\",\"transaction\":{\"id\":\"triu2nbn7czq6izpacsh\",\"authorization\":\"132209\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-14T13:19:29-05:00\",\"operation_date\":\"2023-09-14T13:22:08-05:00\",\"description\":\"Pago Mensual academia: Emiliano puerta lopez (1035982675)\",\"error_message\":null,\"order_id\":\"21B5680D80F75A616096F2E791AFFAC6_Q9EMNHL6D4_1694715564.1014\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX6322\",\"holder_name\":\"William puerta franco \",\"expiration_year\":\"25\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"lina Marcela\",\"last_name\":\"lopez peña\",\"email\":\"lamarce1616@gmail.com\",\"phone_number\":\"3117359167\",\"address\":null,\"creation_date\":\"2023-09-14T13:19:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triu2nbn7czq6izpacsh/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 18:22:10','2023-09-14 18:22:10');
INSERT INTO `system_logs` VALUES (9181,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  886\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T14:09:34-05:00\",\"transaction\":{\"id\":\"trcxt9jcktekhsxql0qx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-14T14:09:34-05:00\",\"operation_date\":\"2023-09-14T14:09:34-05:00\",\"description\":\"Pago Mensual academia: miguel fernando lugo arrieta (1016915798)\",\"error_message\":null,\"order_id\":\"CB5F984421C93F1EFB42B53A43F83C3A_T68RFY2Z07_1694718564.6199\",\"amount\":165900.00,\"customer\":{\"name\":\"adaiz\",\"last_name\":\"arrieta\",\"email\":\"luisflugo@gmail.com\",\"phone_number\":\"3102502540\",\"address\":null,\"creation_date\":\"2023-09-14T14:09:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcxt9jcktekhsxql0qx/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 19:09:34','2023-09-14 19:09:34'),(9182,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1132\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T14:10:33-05:00\",\"transaction\":{\"id\":\"trcxt9jcktekhsxql0qx\",\"authorization\":\"200571\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-14T14:09:34-05:00\",\"operation_date\":\"2023-09-14T14:10:32-05:00\",\"description\":\"Pago Mensual academia: miguel fernando lugo arrieta (1016915798)\",\"error_message\":null,\"order_id\":\"CB5F984421C93F1EFB42B53A43F83C3A_T68RFY2Z07_1694718564.6199\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"451308XXXXXX7514\",\"holder_name\":\"Luis F Lugo D\",\"expiration_year\":\"26\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"adaiz\",\"last_name\":\"arrieta\",\"email\":\"luisflugo@gmail.com\",\"phone_number\":\"3102502540\",\"address\":null,\"creation_date\":\"2023-09-14T14:09:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcxt9jcktekhsxql0qx/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 19:10:34','2023-09-14 19:10:34'),(9183,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T14:21:38-05:00\",\"transaction\":{\"id\":\"trlurofc2ou6pqr2vqu5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-14T14:21:38-05:00\",\"operation_date\":\"2023-09-14T14:21:38-05:00\",\"description\":\"Pago Mensual academia: NICOLAS RIVERA ARANGO (1013019876)\",\"error_message\":null,\"order_id\":\"6693A7AACB8A2E74C6F5FE91BC39864B_4ACDEMTIYP_1694719295.1701\",\"amount\":165900.00,\"customer\":{\"name\":\"SERGIO\",\"last_name\":\"RIVERA CELIS\",\"email\":\"chechocum@hotmail.com\",\"phone_number\":\"3124397825\",\"address\":null,\"creation_date\":\"2023-09-14T14:21:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlurofc2ou6pqr2vqu5/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 19:21:39','2023-09-14 19:21:39'),(9184,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1131\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T14:22:57-05:00\",\"transaction\":{\"id\":\"trlurofc2ou6pqr2vqu5\",\"authorization\":\"176796\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-14T14:21:38-05:00\",\"operation_date\":\"2023-09-14T14:22:56-05:00\",\"description\":\"Pago Mensual academia: NICOLAS RIVERA ARANGO (1013019876)\",\"error_message\":null,\"order_id\":\"6693A7AACB8A2E74C6F5FE91BC39864B_4ACDEMTIYP_1694719295.1701\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"450418XXXXXX7576\",\"holder_name\":\"Sergio rivera celia\",\"expiration_year\":\"24\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"amount\":165900.00,\"customer\":{\"name\":\"SERGIO\",\"last_name\":\"RIVERA CELIS\",\"email\":\"chechocum@hotmail.com\",\"phone_number\":\"3124397825\",\"address\":null,\"creation_date\":\"2023-09-14T14:21:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlurofc2ou6pqr2vqu5/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 19:22:58','2023-09-14 19:22:58'),(9185,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T14:23:21-05:00\",\"transaction\":{\"id\":\"treiqk0ctiltumw3sbkd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-14T14:23:21-05:00\",\"operation_date\":\"2023-09-14T14:23:21-05:00\",\"description\":\"Pago Mensual academia: NICOLAS RIVERA ARANGO (1013019876)\",\"error_message\":null,\"order_id\":\"BD3EF5C19067FE179F71C8B86EA4B39B_J54XQT31AM_1694719398.7826\",\"amount\":165900.00,\"customer\":{\"name\":\"SERGIO\",\"last_name\":\"RIVERA CELIS\",\"email\":\"chechocum@hotmail.com\",\"phone_number\":\"3124397825\",\"address\":null,\"creation_date\":\"2023-09-14T14:23:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treiqk0ctiltumw3sbkd/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 19:23:22','2023-09-14 19:23:22'),(9186,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1132\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T14:24:05-05:00\",\"transaction\":{\"id\":\"treiqk0ctiltumw3sbkd\",\"authorization\":\"245085\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-14T14:23:21-05:00\",\"operation_date\":\"2023-09-14T14:24:04-05:00\",\"description\":\"Pago Mensual academia: NICOLAS RIVERA ARANGO (1013019876)\",\"error_message\":null,\"order_id\":\"BD3EF5C19067FE179F71C8B86EA4B39B_J54XQT31AM_1694719398.7826\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"450418XXXXXX7576\",\"holder_name\":\"Sergio rivera celis \",\"expiration_year\":\"24\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"amount\":165900.00,\"customer\":{\"name\":\"SERGIO\",\"last_name\":\"RIVERA CELIS\",\"email\":\"chechocum@hotmail.com\",\"phone_number\":\"3124397825\",\"address\":null,\"creation_date\":\"2023-09-14T14:23:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treiqk0ctiltumw3sbkd/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 19:24:06','2023-09-14 19:24:06'),(9187,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T14:24:50-05:00\",\"transaction\":{\"id\":\"trz9tm2pa2fkvnwb6tnq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T14:23:01-05:00\",\"operation_date\":\"2023-09-14T14:23:01-05:00\",\"description\":\"Pago Inscripción academia: Samuel Ocampo (1028141703)\",\"error_message\":null,\"order_id\":\"B14680DEC683E744ADA1F2FE08614086_MBKZU8HSOJ_1694719373.9143\",\"due_date\":\"2023-09-15T02:23:02-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"Alvaro\",\"last_name\":\"Ocampo\",\"email\":\"alvaroocampo@fuentedeverdad.com\",\"phone_number\":\"3138863180\",\"address\":null,\"creation_date\":\"2023-09-14T14:23:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz9tm2pa2fkvnwb6tnq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 19:24:51','2023-09-14 19:24:51'),(9188,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T14:26:15-05:00\",\"transaction\":{\"id\":\"trz9tm2pa2fkvnwb6tnq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"160220262\",\"creation_date\":\"2023-09-14T14:23:01-05:00\",\"operation_date\":\"2023-09-14T14:25:53-05:00\",\"description\":\"Pago Inscripción academia: Samuel Ocampo (1028141703)\",\"error_message\":null,\"order_id\":\"B14680DEC683E744ADA1F2FE08614086_MBKZU8HSOJ_1694719373.9143\",\"due_date\":\"2023-09-15T02:23:02-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"Alvaro\",\"last_name\":\"Ocampo\",\"email\":\"alvaroocampo@fuentedeverdad.com\",\"phone_number\":\"3138863180\",\"address\":null,\"creation_date\":\"2023-09-14T14:23:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 19:26:16','2023-09-14 19:26:16'),(9189,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T14:28:33-05:00\",\"transaction\":{\"id\":\"trthtqheerot2cuunpq0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-14T14:28:33-05:00\",\"operation_date\":\"2023-09-14T14:28:33-05:00\",\"description\":\"Pago Inscripción academia: Sebastian Rubio parra (1032943505)\",\"error_message\":null,\"order_id\":\"9CF742E94F29F454AC42FF68F37D5CC4_KIV1JU0Q68_1694719707.2351\",\"amount\":391000.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Rubio\",\"email\":\"darkerpro251@gmail.com\",\"phone_number\":\"3152353147\",\"address\":null,\"creation_date\":\"2023-09-14T14:28:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trthtqheerot2cuunpq0/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 19:28:33','2023-09-14 19:28:33'),(9190,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1146\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T14:40:05-05:00\",\"transaction\":{\"id\":\"trthtqheerot2cuunpq0\",\"authorization\":\"144004\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-14T14:28:33-05:00\",\"operation_date\":\"2023-09-14T14:40:04-05:00\",\"description\":\"Pago Inscripción academia: Sebastian Rubio parra (1032943505)\",\"error_message\":null,\"order_id\":\"9CF742E94F29F454AC42FF68F37D5CC4_KIV1JU0Q68_1694719707.2351\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5133\",\"holder_name\":\"Rodrigo rubio agaton\",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":391000.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Rubio\",\"email\":\"darkerpro251@gmail.com\",\"phone_number\":\"3152353147\",\"address\":null,\"creation_date\":\"2023-09-14T14:28:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trthtqheerot2cuunpq0/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 19:40:05','2023-09-14 19:40:05'),(9191,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  884\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T14:42:30-05:00\",\"transaction\":{\"id\":\"trjly1yptwn2ecbgyp5c\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-14T14:42:29-05:00\",\"operation_date\":\"2023-09-14T14:42:29-05:00\",\"description\":\"Pago Mensual academia: Sebastian Rubio parra (1032943505)\",\"error_message\":null,\"order_id\":\"1CDF14D1E3699D61D237CF76CE1C2DCA_J2EF8GKR3I_1694720547.9847\",\"amount\":165900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Rubio\",\"email\":\"darkerpro251@gmail.com\",\"phone_number\":\"3152353147\",\"address\":null,\"creation_date\":\"2023-09-14T14:42:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjly1yptwn2ecbgyp5c/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 19:42:30','2023-09-14 19:42:30'),(9192,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1141\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T14:43:27-05:00\",\"transaction\":{\"id\":\"trjly1yptwn2ecbgyp5c\",\"authorization\":\"144327\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-14T14:42:29-05:00\",\"operation_date\":\"2023-09-14T14:43:26-05:00\",\"description\":\"Pago Mensual academia: Sebastian Rubio parra (1032943505)\",\"error_message\":null,\"order_id\":\"1CDF14D1E3699D61D237CF76CE1C2DCA_J2EF8GKR3I_1694720547.9847\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5133\",\"holder_name\":\"Rodrigo Rubio Agaton\",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Sebastian\",\"last_name\":\"Rubio\",\"email\":\"darkerpro251@gmail.com\",\"phone_number\":\"3152353147\",\"address\":null,\"creation_date\":\"2023-09-14T14:42:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjly1yptwn2ecbgyp5c/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 19:43:28','2023-09-14 19:43:28'),(9193,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  874\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T15:10:43-05:00\",\"transaction\":{\"id\":\"trybi1pxxsxxwmazqqbs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T15:09:45-05:00\",\"operation_date\":\"2023-09-14T15:09:45-05:00\",\"description\":\"Pago Mensual academia: Samuel Ocampo (1028141703)\",\"error_message\":null,\"order_id\":\"_1694722182.2898\",\"due_date\":\"2023-09-15T03:09:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alvaro\",\"last_name\":\"Ocampo\",\"email\":\"alvaroocampo@fuentedeverdad.com\",\"phone_number\":\"3138863180\",\"address\":null,\"creation_date\":\"2023-09-14T15:09:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trybi1pxxsxxwmazqqbs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 20:10:43','2023-09-14 20:10:43'),(9194,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  757\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T15:11:58-05:00\",\"transaction\":{\"id\":\"trybi1pxxsxxwmazqqbs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"160331418\",\"creation_date\":\"2023-09-14T15:09:45-05:00\",\"operation_date\":\"2023-09-14T15:11:39-05:00\",\"description\":\"Pago Mensual academia: Samuel Ocampo (1028141703)\",\"error_message\":null,\"order_id\":\"_1694722182.2898\",\"due_date\":\"2023-09-15T03:09:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alvaro\",\"last_name\":\"Ocampo\",\"email\":\"alvaroocampo@fuentedeverdad.com\",\"phone_number\":\"3138863180\",\"address\":null,\"creation_date\":\"2023-09-14T15:09:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 20:11:59','2023-09-14 20:11:59'),(9195,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T15:26:01-05:00\",\"transaction\":{\"id\":\"trha4p5r30a6eudlbvwx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T15:25:00-05:00\",\"operation_date\":\"2023-09-14T15:25:00-05:00\",\"description\":\"Pago Inscripción academia: Thiago Gomez  Guzman (1023563823)\",\"error_message\":null,\"order_id\":\"587524833EAF98EB779A387E33768C6A_FINBTSCZ83_1694723096.1721\",\"due_date\":\"2023-09-15T03:25:00-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"leidy\",\"last_name\":\"guzman\",\"email\":\"ljohagm@gmail.com\",\"phone_number\":\"3166241980\",\"address\":null,\"creation_date\":\"2023-09-14T15:25:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trha4p5r30a6eudlbvwx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 20:26:02','2023-09-14 20:26:02'),(9196,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  836\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-14T14:28:11-06:00\",\"transaction\":{\"id\":\"trha4p5r30a6eudlbvwx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-14T15:25:00-06:00\",\"operation_date\":\"2023-09-14T14:26:27-06:00\",\"description\":\"Pago Inscripción academia: Thiago Gomez  Guzman (1023563823)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"587524833EAF98EB779A387E33768C6A_FINBTSCZ83_1694723096.1721\",\"due_date\":\"2023-09-15T03:25:00-06:00\",\"error_code\":1007,\"amount\":286000.00,\"customer\":{\"name\":\"leidy\",\"last_name\":\"guzman\",\"email\":\"ljohagm@gmail.com\",\"phone_number\":\"3166241980\",\"address\":null,\"creation_date\":\"2023-09-14T15:25:00-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 20:28:11','2023-09-14 20:28:11'),(9197,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T15:29:41-05:00\",\"transaction\":{\"id\":\"trf7y9zssnu7rmmyurja\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T15:28:45-05:00\",\"operation_date\":\"2023-09-14T15:28:45-05:00\",\"description\":\"Pago Inscripción academia: Thiago Gomez  Guzman (1023563823)\",\"error_message\":null,\"order_id\":\"587524833EAF98EB779A387E33768C6A_FINBTSCZ83_1694723318.8005\",\"due_date\":\"2023-09-15T03:28:45-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"leidy\",\"last_name\":\"guzman\",\"email\":\"ljohagm@gmail.com\",\"phone_number\":\"3166241980\",\"address\":null,\"creation_date\":\"2023-09-14T15:28:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trf7y9zssnu7rmmyurja/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 20:29:42','2023-09-14 20:29:42'),(9198,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  797\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T15:32:19-05:00\",\"transaction\":{\"id\":\"trf7y9zssnu7rmmyurja\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"160379856\",\"creation_date\":\"2023-09-14T15:28:45-05:00\",\"operation_date\":\"2023-09-14T15:31:53-05:00\",\"description\":\"Pago Inscripción academia: Thiago Gomez  Guzman (1023563823)\",\"error_message\":null,\"order_id\":\"587524833EAF98EB779A387E33768C6A_FINBTSCZ83_1694723318.8005\",\"due_date\":\"2023-09-15T03:28:45-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"leidy\",\"last_name\":\"guzman\",\"email\":\"ljohagm@gmail.com\",\"phone_number\":\"3166241980\",\"address\":null,\"creation_date\":\"2023-09-14T15:28:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 20:32:20','2023-09-14 20:32:20'),(9199,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T16:36:04-05:00\",\"transaction\":{\"id\":\"trrlukw775t0f4id7dly\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T16:35:23-05:00\",\"operation_date\":\"2023-09-14T16:35:23-05:00\",\"description\":\"Pago Mensual academia: Pablo Jaramillo Jaramillo (1035016112)\",\"error_message\":null,\"order_id\":\"621C090C3A61C6809130675A63897A0F_XKE7NGUT6L_1694727317.2259\",\"due_date\":\"2023-09-15T04:35:23-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Jaramillo\",\"email\":\"lina21jllo@yahoo.es\",\"phone_number\":\"3006195770\",\"address\":null,\"creation_date\":\"2023-09-14T16:35:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrlukw775t0f4id7dly/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 21:36:05','2023-09-14 21:36:05'),(9200,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T16:36:57-05:00\",\"transaction\":{\"id\":\"trrlukw775t0f4id7dly\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"160551700\",\"creation_date\":\"2023-09-14T16:35:23-05:00\",\"operation_date\":\"2023-09-14T16:36:48-05:00\",\"description\":\"Pago Mensual academia: Pablo Jaramillo Jaramillo (1035016112)\",\"error_message\":null,\"order_id\":\"621C090C3A61C6809130675A63897A0F_XKE7NGUT6L_1694727317.2259\",\"due_date\":\"2023-09-15T04:35:23-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Lina\",\"last_name\":\"Jaramillo\",\"email\":\"lina21jllo@yahoo.es\",\"phone_number\":\"3006195770\",\"address\":null,\"creation_date\":\"2023-09-14T16:35:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 21:36:57','2023-09-14 21:36:57'),(9201,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T17:46:17-05:00\",\"transaction\":{\"id\":\"trcawayv4x6eqpqcukev\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-14T17:46:17-05:00\",\"operation_date\":\"2023-09-14T17:46:17-05:00\",\"description\":\"Pago Mensual academia: juan Felipe Sánchez Benavides (1201466082)\",\"error_message\":null,\"order_id\":\"1192265FB31AB52A6332C561EE6E5258_Z1CVF7MPN8_1694731574.6045\",\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"sanchez benavides\",\"email\":\"katerinefeli@gmail.com\",\"phone_number\":\"3122709310\",\"address\":null,\"creation_date\":\"2023-09-14T17:46:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcawayv4x6eqpqcukev/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 22:46:18','2023-09-14 22:46:18'),(9202,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1163\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T17:47:57-05:00\",\"transaction\":{\"id\":\"trcawayv4x6eqpqcukev\",\"authorization\":\"174756\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-14T17:46:17-05:00\",\"operation_date\":\"2023-09-14T17:47:56-05:00\",\"description\":\"Pago Mensual academia: juan Felipe Sánchez Benavides (1201466082)\",\"error_message\":null,\"order_id\":\"1192265FB31AB52A6332C561EE6E5258_Z1CVF7MPN8_1694731574.6045\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1722\",\"holder_name\":\"Katerine Benavides \",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"sanchez benavides\",\"email\":\"katerinefeli@gmail.com\",\"phone_number\":\"3122709310\",\"address\":null,\"creation_date\":\"2023-09-14T17:46:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcawayv4x6eqpqcukev/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-14 22:47:58','2023-09-14 22:47:58'),(9203,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T18:41:10-05:00\",\"transaction\":{\"id\":\"tr5cjosuidjx8ey0d1dy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T18:40:32-05:00\",\"operation_date\":\"2023-09-14T18:40:32-05:00\",\"description\":\"Pago Mensual academia: Emiliano Fiallo García (1027813536)\",\"error_message\":null,\"order_id\":\"AEC851E565646F6835E915293381E20A_CP9M6WEDO2_1694734825.9592\",\"due_date\":\"2023-09-15T06:40:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"García Sánchez\",\"email\":\"tatigs0303@hotmail.com\",\"phone_number\":\"3137669661\",\"address\":null,\"creation_date\":\"2023-09-14T18:40:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5cjosuidjx8ey0d1dy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 23:41:10','2023-09-14 23:41:10'),(9204,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-14T17:51:22-06:00\",\"transaction\":{\"id\":\"tr5cjosuidjx8ey0d1dy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-14T18:40:32-06:00\",\"operation_date\":\"2023-09-14T18:40:32-06:00\",\"description\":\"Pago Mensual academia: Emiliano Fiallo García (1027813536)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"AEC851E565646F6835E915293381E20A_CP9M6WEDO2_1694734825.9592\",\"due_date\":\"2023-09-15T06:40:32-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"García Sánchez\",\"email\":\"tatigs0303@hotmail.com\",\"phone_number\":\"3137669661\",\"address\":null,\"creation_date\":\"2023-09-14T18:40:32-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-14 23:51:22','2023-09-14 23:51:22'),(9205,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T20:27:03-05:00\",\"transaction\":{\"id\":\"trnnsm4l3gndzkrqvjzi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T20:26:18-05:00\",\"operation_date\":\"2023-09-14T20:26:18-05:00\",\"description\":\"Pago Mensual academia: Felipe Andres Montenegro Murillo (1035000564)\",\"error_message\":null,\"order_id\":\"4E477793DF9BDDE030226DCD3A262A4A_LTJDW79KXO_1694741170.2146\",\"due_date\":\"2023-09-15T08:26:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria\",\"last_name\":\"Camila\",\"email\":\"murillomariacamila@gmail.com\",\"phone_number\":\"3046304466\",\"address\":null,\"creation_date\":\"2023-09-14T20:26:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnnsm4l3gndzkrqvjzi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 01:27:04','2023-09-15 01:27:04'),(9206,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T20:30:03-05:00\",\"transaction\":{\"id\":\"trnnsm4l3gndzkrqvjzi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"160999480\",\"creation_date\":\"2023-09-14T20:26:18-05:00\",\"operation_date\":\"2023-09-14T20:29:58-05:00\",\"description\":\"Pago Mensual academia: Felipe Andres Montenegro Murillo (1035000564)\",\"error_message\":null,\"order_id\":\"4E477793DF9BDDE030226DCD3A262A4A_LTJDW79KXO_1694741170.2146\",\"due_date\":\"2023-09-15T08:26:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria\",\"last_name\":\"Camila\",\"email\":\"murillomariacamila@gmail.com\",\"phone_number\":\"3046304466\",\"address\":null,\"creation_date\":\"2023-09-14T20:26:18-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 01:30:04','2023-09-15 01:30:04'),(9207,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  884\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T20:53:43-05:00\",\"transaction\":{\"id\":\"trdzcldts4fs07a2vkrv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-14T20:53:43-05:00\",\"operation_date\":\"2023-09-14T20:53:43-05:00\",\"description\":\"Pago Mensual academia: Martin Montoya Vera (1035011244)\",\"error_message\":null,\"order_id\":\"31B91E3A8737FD8DD3D4B0C8C679049B_ZL3WOJQY7T_1694742817.413\",\"amount\":165900.00,\"customer\":{\"name\":\"Antonio\",\"last_name\":\"Montoya\",\"email\":\"anmontoya2011@hotmail.com\",\"phone_number\":\"3004086507\",\"address\":null,\"creation_date\":\"2023-09-14T20:53:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdzcldts4fs07a2vkrv/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-15 01:53:43','2023-09-15 01:53:43'),(9208,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1131\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T20:54:35-05:00\",\"transaction\":{\"id\":\"trdzcldts4fs07a2vkrv\",\"authorization\":\"265414\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-14T20:53:43-05:00\",\"operation_date\":\"2023-09-14T20:54:33-05:00\",\"description\":\"Pago Mensual academia: Martin Montoya Vera (1035011244)\",\"error_message\":null,\"order_id\":\"31B91E3A8737FD8DD3D4B0C8C679049B_ZL3WOJQY7T_1694742817.413\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459356XXXXXX8610\",\"holder_name\":\"ANTONIO MONTOYA\",\"expiration_year\":\"26\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Antonio\",\"last_name\":\"Montoya\",\"email\":\"anmontoya2011@hotmail.com\",\"phone_number\":\"3004086507\",\"address\":null,\"creation_date\":\"2023-09-14T20:53:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdzcldts4fs07a2vkrv/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-15 01:54:35','2023-09-15 01:54:35'),(9209,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T21:02:19-05:00\",\"transaction\":{\"id\":\"trtx54hc97fkzodvcyzu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T21:01:30-05:00\",\"operation_date\":\"2023-09-14T21:01:30-05:00\",\"description\":\"Pago Mensual academia: Jeronimo Diaz Cespedes (1011404754)\",\"error_message\":null,\"order_id\":\"D5FF135377D39F1DE7372C95C74DD962_1UE4LWSY3F_1694743273.6592\",\"due_date\":\"2023-09-15T09:01:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Cespedes Guiral\",\"email\":\"paulandrea2830@gmail.com\",\"phone_number\":\"3206675821\",\"address\":null,\"creation_date\":\"2023-09-14T21:01:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtx54hc97fkzodvcyzu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 02:02:20','2023-09-15 02:02:20'),(9210,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T21:03:52-05:00\",\"transaction\":{\"id\":\"trtx54hc97fkzodvcyzu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"161060605\",\"creation_date\":\"2023-09-14T21:01:30-05:00\",\"operation_date\":\"2023-09-14T21:03:40-05:00\",\"description\":\"Pago Mensual academia: Jeronimo Diaz Cespedes (1011404754)\",\"error_message\":null,\"order_id\":\"D5FF135377D39F1DE7372C95C74DD962_1UE4LWSY3F_1694743273.6592\",\"due_date\":\"2023-09-15T09:01:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Cespedes Guiral\",\"email\":\"paulandrea2830@gmail.com\",\"phone_number\":\"3206675821\",\"address\":null,\"creation_date\":\"2023-09-14T21:01:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 02:03:52','2023-09-15 02:03:52'),(9211,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-14T22:22:20-05:00\",\"transaction\":{\"id\":\"tra69whzcocnzagjwcfm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-14T22:21:22-05:00\",\"operation_date\":\"2023-09-14T22:21:22-05:00\",\"description\":\"Pago Mensual academia: Martin Posada Bustamante (1020324373)\",\"error_message\":null,\"order_id\":\"1625ABB8E458A79765C62009235E9D5B_9YC7JM1LNW_1694748077.2901\",\"due_date\":\"2023-09-15T10:21:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yonny\",\"last_name\":\"Posada\",\"email\":\"yonnypos@hotmail.com\",\"phone_number\":\"3145895103\",\"address\":null,\"creation_date\":\"2023-09-14T22:21:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tra69whzcocnzagjwcfm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 03:22:20','2023-09-15 03:22:20'),(9212,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-14T22:24:07-05:00\",\"transaction\":{\"id\":\"tra69whzcocnzagjwcfm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"161173877\",\"creation_date\":\"2023-09-14T22:21:22-05:00\",\"operation_date\":\"2023-09-14T22:23:26-05:00\",\"description\":\"Pago Mensual academia: Martin Posada Bustamante (1020324373)\",\"error_message\":null,\"order_id\":\"1625ABB8E458A79765C62009235E9D5B_9YC7JM1LNW_1694748077.2901\",\"due_date\":\"2023-09-15T10:21:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Yonny\",\"last_name\":\"Posada\",\"email\":\"yonnypos@hotmail.com\",\"phone_number\":\"3145895103\",\"address\":null,\"creation_date\":\"2023-09-14T22:21:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 03:24:08','2023-09-15 03:24:08'),(9213,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  910\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T08:09:12-05:00\",\"transaction\":{\"id\":\"trtdh1ij8zanybq6eng0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T08:07:32-05:00\",\"operation_date\":\"2023-09-15T08:07:32-05:00\",\"description\":\"Pago Mensual academia: Agustín Valencia Lobo (1035012790)\",\"error_message\":null,\"order_id\":\"C952CE98517AC529C60744AC28364B03_PBVRIO9NKQ_1694783246.1207\",\"due_date\":\"2023-09-15T20:07:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Lobo\",\"email\":\"leidy240@gmail.com\",\"phone_number\":\"3012414912\",\"address\":null,\"creation_date\":\"2023-09-15T08:07:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtdh1ij8zanybq6eng0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 13:09:13','2023-09-15 13:09:13'),(9214,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  793\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T08:10:53-05:00\",\"transaction\":{\"id\":\"trtdh1ij8zanybq6eng0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"161423769\",\"creation_date\":\"2023-09-15T08:07:32-05:00\",\"operation_date\":\"2023-09-15T08:10:37-05:00\",\"description\":\"Pago Mensual academia: Agustín Valencia Lobo (1035012790)\",\"error_message\":null,\"order_id\":\"C952CE98517AC529C60744AC28364B03_PBVRIO9NKQ_1694783246.1207\",\"due_date\":\"2023-09-15T20:07:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Lobo\",\"email\":\"leidy240@gmail.com\",\"phone_number\":\"3012414912\",\"address\":null,\"creation_date\":\"2023-09-15T08:07:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 13:10:54','2023-09-15 13:10:54'),(9215,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T09:02:28-05:00\",\"transaction\":{\"id\":\"trooyaazpomc61tbiaxu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T09:01:20-05:00\",\"operation_date\":\"2023-09-15T09:01:20-05:00\",\"description\":\"Pago Mensual academia: Emiliano Marín Cano (1027813033)\",\"error_message\":null,\"order_id\":\"AC4E7A4F341E7281B0F6F274F9EC3905_TFC75QYP62_1694786476.7724\",\"due_date\":\"2023-09-15T21:01:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Héctor Javier\",\"last_name\":\"Marín Cano\",\"email\":\"Hjmc0109@gmail.com\",\"phone_number\":\"3147792226\",\"address\":null,\"creation_date\":\"2023-09-15T09:01:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trooyaazpomc61tbiaxu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 14:02:29','2023-09-15 14:02:29'),(9216,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T08:03:53-06:00\",\"transaction\":{\"id\":\"trooyaazpomc61tbiaxu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"161532658\",\"creation_date\":\"2023-09-15T09:01:20-06:00\",\"operation_date\":\"2023-09-15T08:03:44-06:00\",\"description\":\"Pago Mensual academia: Emiliano Marín Cano (1027813033)\",\"error_message\":null,\"order_id\":\"AC4E7A4F341E7281B0F6F274F9EC3905_TFC75QYP62_1694786476.7724\",\"due_date\":\"2023-09-15T21:01:20-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Héctor Javier\",\"last_name\":\"Marín Cano\",\"email\":\"Hjmc0109@gmail.com\",\"phone_number\":\"3147792226\",\"address\":null,\"creation_date\":\"2023-09-15T09:01:20-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 14:03:54','2023-09-15 14:03:54'),(9217,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T10:16:48-05:00\",\"transaction\":{\"id\":\"trh3bdvumby2it4mldju\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-15T10:16:48-05:00\",\"operation_date\":\"2023-09-15T10:16:48-05:00\",\"description\":\"Pago Mensual academia: juan Felipe Sánchez Benavides (1201466082)\",\"error_message\":null,\"order_id\":\"7FC63FF01769C4FA7D9279E97E307829_ZLO5SX1PBA_1694790996.4175\",\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"sanchez benavides\",\"email\":\"katerinefeli@gmail.com\",\"phone_number\":\"3122709310\",\"address\":null,\"creation_date\":\"2023-09-15T10:16:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trh3bdvumby2it4mldju/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-15 15:16:49','2023-09-15 15:16:49'),(9218,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1163\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T10:18:53-05:00\",\"transaction\":{\"id\":\"trh3bdvumby2it4mldju\",\"authorization\":\"101852\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-15T10:16:48-05:00\",\"operation_date\":\"2023-09-15T10:18:52-05:00\",\"description\":\"Pago Mensual academia: juan Felipe Sánchez Benavides (1201466082)\",\"error_message\":null,\"order_id\":\"7FC63FF01769C4FA7D9279E97E307829_ZLO5SX1PBA_1694790996.4175\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1722\",\"holder_name\":\"Katerine Benavides \",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"sanchez benavides\",\"email\":\"katerinefeli@gmail.com\",\"phone_number\":\"3122709310\",\"address\":null,\"creation_date\":\"2023-09-15T10:16:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trh3bdvumby2it4mldju/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-15 15:18:53','2023-09-15 15:18:53'),(9219,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T10:20:41-05:00\",\"transaction\":{\"id\":\"trniz3y8mq1casi2n7ef\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T10:19:50-05:00\",\"operation_date\":\"2023-09-15T10:19:50-05:00\",\"description\":\"Pago Mensual academia: julian david uribe bustamante (1035003281)\",\"error_message\":null,\"order_id\":\"A09E75C5C86A7BF6582D2B4D75AAD615_RF48VZ2W3G_1694791176.9154\",\"due_date\":\"2023-09-15T22:19:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"leidy juliana\",\"last_name\":\"bustamante restrepo\",\"email\":\"leidy_juli@hotmail.com\",\"phone_number\":\"3042901112\",\"address\":null,\"creation_date\":\"2023-09-15T10:19:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trniz3y8mq1casi2n7ef/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 15:20:42','2023-09-15 15:20:42'),(9220,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T10:22:10-05:00\",\"transaction\":{\"id\":\"trniz3y8mq1casi2n7ef\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"161748149\",\"creation_date\":\"2023-09-15T10:19:50-05:00\",\"operation_date\":\"2023-09-15T10:21:47-05:00\",\"description\":\"Pago Mensual academia: julian david uribe bustamante (1035003281)\",\"error_message\":null,\"order_id\":\"A09E75C5C86A7BF6582D2B4D75AAD615_RF48VZ2W3G_1694791176.9154\",\"due_date\":\"2023-09-15T22:19:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"leidy juliana\",\"last_name\":\"bustamante restrepo\",\"email\":\"leidy_juli@hotmail.com\",\"phone_number\":\"3042901112\",\"address\":null,\"creation_date\":\"2023-09-15T10:19:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 15:22:10','2023-09-15 15:22:10'),(9221,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T11:18:11-05:00\",\"transaction\":{\"id\":\"trpcdyygjyhke3sbz6np\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T11:17:25-05:00\",\"operation_date\":\"2023-09-15T11:17:25-05:00\",\"description\":\"Pago Mensual academia: Josue Paternina Bohorquez (1011405994)\",\"error_message\":null,\"order_id\":\"015E31933548461020E2BA448E85995E_0NQ9GD6PXY_1694794642.2257\",\"due_date\":\"2023-09-15T23:17:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sebastian\",\"last_name\":\"gutierrez montoya\",\"email\":\"guti0872@gmail.com\",\"phone_number\":\"3206572642\",\"address\":null,\"creation_date\":\"2023-09-15T11:17:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpcdyygjyhke3sbz6np/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 16:18:11','2023-09-15 16:18:11'),(9222,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T11:19:02-05:00\",\"transaction\":{\"id\":\"trpcdyygjyhke3sbz6np\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"161925532\",\"creation_date\":\"2023-09-15T11:17:25-05:00\",\"operation_date\":\"2023-09-15T11:18:57-05:00\",\"description\":\"Pago Mensual academia: Josue Paternina Bohorquez (1011405994)\",\"error_message\":null,\"order_id\":\"015E31933548461020E2BA448E85995E_0NQ9GD6PXY_1694794642.2257\",\"due_date\":\"2023-09-15T23:17:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sebastian\",\"last_name\":\"gutierrez montoya\",\"email\":\"guti0872@gmail.com\",\"phone_number\":\"3206572642\",\"address\":null,\"creation_date\":\"2023-09-15T11:17:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 16:19:02','2023-09-15 16:19:02'),(9223,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T12:25:45-05:00\",\"transaction\":{\"id\":\"tr8emp2mdzyd7wcs0wed\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T12:24:43-05:00\",\"operation_date\":\"2023-09-15T12:24:43-05:00\",\"description\":\"Pago Mensual academia: Emiliano Parrado Cossio (1034999265)\",\"error_message\":null,\"order_id\":\"084A8A9AA8CCED9175BD07BC44998E75_3VQAGSHJXK_1694798664.9725\",\"due_date\":\"2023-09-16T00:24:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paola Andrea\",\"last_name\":\"Cossio Alvarez\",\"email\":\"paocossioalvarez@hotmail.com\",\"phone_number\":\"3208654833\",\"address\":null,\"creation_date\":\"2023-09-15T12:24:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8emp2mdzyd7wcs0wed/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 17:25:46','2023-09-15 17:25:46'),(9224,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T11:28:00-06:00\",\"transaction\":{\"id\":\"tr8emp2mdzyd7wcs0wed\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"162136121\",\"creation_date\":\"2023-09-15T12:24:43-06:00\",\"operation_date\":\"2023-09-15T11:27:02-06:00\",\"description\":\"Pago Mensual academia: Emiliano Parrado Cossio (1034999265)\",\"error_message\":null,\"order_id\":\"084A8A9AA8CCED9175BD07BC44998E75_3VQAGSHJXK_1694798664.9725\",\"due_date\":\"2023-09-16T00:24:43-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Paola Andrea\",\"last_name\":\"Cossio Alvarez\",\"email\":\"paocossioalvarez@hotmail.com\",\"phone_number\":\"3208654833\",\"address\":null,\"creation_date\":\"2023-09-15T12:24:43-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 17:28:01','2023-09-15 17:28:01'),(9225,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  865\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T13:11:05-05:00\",\"transaction\":{\"id\":\"tr6an7y4velmehnkujlv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T13:09:56-05:00\",\"operation_date\":\"2023-09-15T13:09:56-05:00\",\"description\":\"Pago Mensual academia: Thiago Gomez  Guzman (1023563823)\",\"error_message\":null,\"order_id\":\"_1694801394.0475\",\"due_date\":\"2023-09-16T01:09:56-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Guzman\",\"email\":\"ljohagm@gmail.com\",\"phone_number\":\"3166241980\",\"address\":null,\"creation_date\":\"2023-09-15T13:09:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6an7y4velmehnkujlv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 18:11:06','2023-09-15 18:11:06'),(9226,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  748\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T13:12:13-05:00\",\"transaction\":{\"id\":\"tr6an7y4velmehnkujlv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"162251028\",\"creation_date\":\"2023-09-15T13:09:56-05:00\",\"operation_date\":\"2023-09-15T13:12:08-05:00\",\"description\":\"Pago Mensual academia: Thiago Gomez  Guzman (1023563823)\",\"error_message\":null,\"order_id\":\"_1694801394.0475\",\"due_date\":\"2023-09-16T01:09:56-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Guzman\",\"email\":\"ljohagm@gmail.com\",\"phone_number\":\"3166241980\",\"address\":null,\"creation_date\":\"2023-09-15T13:09:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 18:12:14','2023-09-15 18:12:14'),(9227,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T13:15:54-05:00\",\"transaction\":{\"id\":\"trkouskwqf41u0ffgo6x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T13:15:00-05:00\",\"operation_date\":\"2023-09-15T13:15:00-05:00\",\"description\":\"Pago Mensual academia: Robben Mosquera Asprilla (1012923128)\",\"error_message\":null,\"order_id\":\"576D026223582A390CD323BEF4BAD026_Y1FQKMUICZ_1694801697.5184\",\"due_date\":\"2023-09-16T01:15:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"karina\",\"last_name\":\"Asprilla Bonilla\",\"email\":\"asprillabonillak@gmail.com\",\"phone_number\":\"3216407736\",\"address\":null,\"creation_date\":\"2023-09-15T13:15:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkouskwqf41u0ffgo6x/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 18:15:55','2023-09-15 18:15:55'),(9228,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T12:18:41-06:00\",\"transaction\":{\"id\":\"trkouskwqf41u0ffgo6x\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"162263047\",\"creation_date\":\"2023-09-15T13:15:00-06:00\",\"operation_date\":\"2023-09-15T12:17:02-06:00\",\"description\":\"Pago Mensual academia: Robben Mosquera Asprilla (1012923128)\",\"error_message\":null,\"order_id\":\"576D026223582A390CD323BEF4BAD026_Y1FQKMUICZ_1694801697.5184\",\"due_date\":\"2023-09-16T01:15:00-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"karina\",\"last_name\":\"Asprilla Bonilla\",\"email\":\"asprillabonillak@gmail.com\",\"phone_number\":\"3216407736\",\"address\":null,\"creation_date\":\"2023-09-15T13:15:00-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 18:18:42','2023-09-15 18:18:42'),(9229,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T13:21:25-05:00\",\"transaction\":{\"id\":\"trcjrlfzkaxkhvynfile\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-15T13:21:25-05:00\",\"operation_date\":\"2023-09-15T13:21:25-05:00\",\"description\":\"Pago Inscripción academia: samuel Jesus Barrios Ortiz (1046739912)\",\"error_message\":null,\"order_id\":\"3BE0214185D6177A9AA6ADEA5A720B09_HYUBCKXLZ3_1694802075.6082\",\"amount\":286000.00,\"customer\":{\"name\":\"wilson hernan\",\"last_name\":\"barrios villada\",\"email\":\"Barriosvilladawilsonhernan@gmail.com\",\"phone_number\":\"3136735674\",\"address\":null,\"creation_date\":\"2023-09-15T13:21:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcjrlfzkaxkhvynfile/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-15 18:21:26','2023-09-15 18:21:26'),(9230,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T14:01:33-05:00\",\"transaction\":{\"id\":\"tr7zqgul7k7rzsemkb9w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T14:00:57-05:00\",\"operation_date\":\"2023-09-15T14:00:57-05:00\",\"description\":\"Pago Mensual academia: Wesly Villalobo Moreno (1023532063)\",\"error_message\":null,\"order_id\":\"3CC578F087EA520AEFAAF92C802C1A34_8WNCMUSH2I_1694804454.6124\",\"due_date\":\"2023-09-16T02:00:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Alvarez\",\"email\":\"estefania7a@gmail.com\",\"phone_number\":\"3207348590\",\"address\":null,\"creation_date\":\"2023-09-15T14:00:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7zqgul7k7rzsemkb9w/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 19:01:33','2023-09-15 19:01:33'),(9231,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T13:05:32-06:00\",\"transaction\":{\"id\":\"tr7zqgul7k7rzsemkb9w\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"162392068\",\"creation_date\":\"2023-09-15T14:00:57-06:00\",\"operation_date\":\"2023-09-15T13:02:22-06:00\",\"description\":\"Pago Mensual academia: Wesly Villalobo Moreno (1023532063)\",\"error_message\":null,\"order_id\":\"3CC578F087EA520AEFAAF92C802C1A34_8WNCMUSH2I_1694804454.6124\",\"due_date\":\"2023-09-16T02:00:57-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Alvarez\",\"email\":\"estefania7a@gmail.com\",\"phone_number\":\"3207348590\",\"address\":null,\"creation_date\":\"2023-09-15T14:00:57-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 19:05:32','2023-09-15 19:05:32'),(9232,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T13:08:34-06:00\",\"transaction\":{\"id\":\"tr7zqgul7k7rzsemkb9w\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"162392068\",\"creation_date\":\"2023-09-15T14:00:57-06:00\",\"operation_date\":\"2023-09-15T13:02:22-06:00\",\"description\":\"Pago Mensual academia: Wesly Villalobo Moreno (1023532063)\",\"error_message\":null,\"order_id\":\"3CC578F087EA520AEFAAF92C802C1A34_8WNCMUSH2I_1694804454.6124\",\"due_date\":\"2023-09-16T02:00:57-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Estefania\",\"last_name\":\"Alvarez\",\"email\":\"estefania7a@gmail.com\",\"phone_number\":\"3207348590\",\"address\":null,\"creation_date\":\"2023-09-15T14:00:57-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 19:08:34','2023-09-15 19:08:34'),(9233,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T14:39:19-05:00\",\"transaction\":{\"id\":\"trnpebucu9pgpsx8zal7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-15T14:39:19-05:00\",\"operation_date\":\"2023-09-15T14:39:19-05:00\",\"description\":\"Pago Inscripción academia: samuel Jesus Barrios Ortiz (1046739912)\",\"error_message\":null,\"order_id\":\"3BE0214185D6177A9AA6ADEA5A720B09_HYUBCKXLZ3_1694806752.1149\",\"amount\":286000.00,\"customer\":{\"name\":\"wilson hernan\",\"last_name\":\"barrios villada\",\"email\":\"Barriosvilladawilsonhernan@gmail.com\",\"phone_number\":\"3136735674\",\"address\":null,\"creation_date\":\"2023-09-15T14:39:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnpebucu9pgpsx8zal7/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-15 19:39:20','2023-09-15 19:39:20'),(9234,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1171\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T14:41:51-05:00\",\"transaction\":{\"id\":\"trnpebucu9pgpsx8zal7\",\"authorization\":\"710814\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-15T14:39:19-05:00\",\"operation_date\":\"2023-09-15T14:41:50-05:00\",\"description\":\"Pago Inscripción academia: samuel Jesus Barrios Ortiz (1046739912)\",\"error_message\":null,\"order_id\":\"3BE0214185D6177A9AA6ADEA5A720B09_HYUBCKXLZ3_1694806752.1149\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"548115XXXXXX6861\",\"holder_name\":\"WILSON H BARRIOS V\",\"expiration_year\":\"25\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"amount\":286000.00,\"customer\":{\"name\":\"wilson hernan\",\"last_name\":\"barrios villada\",\"email\":\"Barriosvilladawilsonhernan@gmail.com\",\"phone_number\":\"3136735674\",\"address\":null,\"creation_date\":\"2023-09-15T14:39:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnpebucu9pgpsx8zal7/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-15 19:41:51','2023-09-15 19:41:51'),(9235,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T16:34:41-05:00\",\"transaction\":{\"id\":\"tryqmsmmaz8u3tneijph\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T16:31:58-05:00\",\"operation_date\":\"2023-09-15T16:31:58-05:00\",\"description\":\"Pago Mensual academia: mateo tamayo gonzalez (1020116579)\",\"error_message\":null,\"order_id\":\"7F5FC754C7AF0A6370C9BF91314E79F4_JTRNMD8GLU_1694813513.1137\",\"due_date\":\"2023-09-16T04:31:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mateo\",\"last_name\":\"tamayo gonzalez\",\"email\":\"mateotamayogonzalez@iemadrelaura.edu.co\",\"phone_number\":\"3117481888\",\"address\":null,\"creation_date\":\"2023-09-15T16:31:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryqmsmmaz8u3tneijph/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 21:34:41','2023-09-15 21:34:41'),(9236,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T15:38:33-06:00\",\"transaction\":{\"id\":\"tryqmsmmaz8u3tneijph\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"162908069\",\"creation_date\":\"2023-09-15T16:31:58-06:00\",\"operation_date\":\"2023-09-15T15:38:14-06:00\",\"description\":\"Pago Mensual academia: mateo tamayo gonzalez (1020116579)\",\"error_message\":null,\"order_id\":\"7F5FC754C7AF0A6370C9BF91314E79F4_JTRNMD8GLU_1694813513.1137\",\"due_date\":\"2023-09-16T04:31:58-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mateo\",\"last_name\":\"tamayo gonzalez\",\"email\":\"mateotamayogonzalez@iemadrelaura.edu.co\",\"phone_number\":\"3117481888\",\"address\":null,\"creation_date\":\"2023-09-15T16:31:58-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-15 21:38:33','2023-09-15 21:38:33'),(9237,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  871\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T19:36:24-05:00\",\"transaction\":{\"id\":\"troujkrewjyigtktdf3m\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T19:35:17-05:00\",\"operation_date\":\"2023-09-15T19:35:17-05:00\",\"description\":\"Pago Mensual academia: Isaac Marin Callejas (1023562656)\",\"error_message\":null,\"order_id\":\"_1694824513.7595\",\"due_date\":\"2023-09-16T07:35:17-05:00\",\"amount\":85000.00,\"customer\":{\"name\":\"Oscar\",\"last_name\":\"Marin\",\"email\":\"oscar-mara22@hotmail.com\",\"phone_number\":\"3043782910\",\"address\":null,\"creation_date\":\"2023-09-15T19:35:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troujkrewjyigtktdf3m/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 00:36:24','2023-09-16 00:36:24'),(9238,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  793\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-15T18:39:28-06:00\",\"transaction\":{\"id\":\"troujkrewjyigtktdf3m\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-15T19:35:17-06:00\",\"operation_date\":\"2023-09-15T18:37:33-06:00\",\"description\":\"Pago Mensual academia: Isaac Marin Callejas (1023562656)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"_1694824513.7595\",\"due_date\":\"2023-09-16T07:35:17-06:00\",\"error_code\":1007,\"amount\":85000.00,\"customer\":{\"name\":\"Oscar\",\"last_name\":\"Marin\",\"email\":\"oscar-mara22@hotmail.com\",\"phone_number\":\"3043782910\",\"address\":null,\"creation_date\":\"2023-09-15T19:35:17-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 00:39:29','2023-09-16 00:39:29'),(9239,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  871\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T19:41:58-05:00\",\"transaction\":{\"id\":\"tr3zib1ov8d9hs5vcmiq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T19:40:58-05:00\",\"operation_date\":\"2023-09-15T19:40:58-05:00\",\"description\":\"Pago Mensual academia: Isaac Marin Callejas (1023562656)\",\"error_message\":null,\"order_id\":\"_1694824855.8515\",\"due_date\":\"2023-09-16T07:40:58-05:00\",\"amount\":85000.00,\"customer\":{\"name\":\"Oscar\",\"last_name\":\"Marin\",\"email\":\"oscar-mara22@hotmail.com\",\"phone_number\":\"3043782910\",\"address\":null,\"creation_date\":\"2023-09-15T19:40:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3zib1ov8d9hs5vcmiq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 00:41:58','2023-09-16 00:41:58'),(9240,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  754\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T19:42:48-05:00\",\"transaction\":{\"id\":\"tr3zib1ov8d9hs5vcmiq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"163414961\",\"creation_date\":\"2023-09-15T19:40:58-05:00\",\"operation_date\":\"2023-09-15T19:42:41-05:00\",\"description\":\"Pago Mensual academia: Isaac Marin Callejas (1023562656)\",\"error_message\":null,\"order_id\":\"_1694824855.8515\",\"due_date\":\"2023-09-16T07:40:58-05:00\",\"amount\":85000.00,\"customer\":{\"name\":\"Oscar\",\"last_name\":\"Marin\",\"email\":\"oscar-mara22@hotmail.com\",\"phone_number\":\"3043782910\",\"address\":null,\"creation_date\":\"2023-09-15T19:40:58-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 00:42:49','2023-09-16 00:42:49'),(9241,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T19:51:48-05:00\",\"transaction\":{\"id\":\"trqgnksn36wlbx2m9n4w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-15T19:51:48-05:00\",\"operation_date\":\"2023-09-15T19:51:48-05:00\",\"description\":\"Pago Mensual academia: ALEJANDRO POSADA QUINTERO (1023641305)\",\"error_message\":null,\"order_id\":\"4F81B1D964419548F01CA35BBAEEDA75_5OS8EBKFW9_1694825499.6296\",\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"POSADA QUINTERO\",\"email\":\"cristinaq312@gmail.com\",\"phone_number\":\"3216067476\",\"address\":null,\"creation_date\":\"2023-09-15T19:51:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqgnksn36wlbx2m9n4w/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-16 00:51:48','2023-09-16 00:51:48'),(9242,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T19:53:57-05:00\",\"transaction\":{\"id\":\"trqgnksn36wlbx2m9n4w\",\"authorization\":\"195356\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-15T19:51:48-05:00\",\"operation_date\":\"2023-09-15T19:53:56-05:00\",\"description\":\"Pago Mensual academia: ALEJANDRO POSADA QUINTERO (1023641305)\",\"error_message\":null,\"order_id\":\"4F81B1D964419548F01CA35BBAEEDA75_5OS8EBKFW9_1694825499.6296\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1307\",\"holder_name\":\"Isabel Quintero v.\",\"expiration_year\":\"27\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"POSADA QUINTERO\",\"email\":\"cristinaq312@gmail.com\",\"phone_number\":\"3216067476\",\"address\":null,\"creation_date\":\"2023-09-15T19:51:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqgnksn36wlbx2m9n4w/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-16 00:53:57','2023-09-16 00:53:57'),(9243,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T21:14:18-05:00\",\"transaction\":{\"id\":\"trvqobfegpx4xzk8jeli\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T21:13:37-05:00\",\"operation_date\":\"2023-09-15T21:13:37-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":null,\"order_id\":\"5B5E6CC50CEFA5E9F1F5CA272B136475_I5VUWYE3M1_1694830404.6555\",\"due_date\":\"2023-09-16T09:13:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-09-15T21:13:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvqobfegpx4xzk8jeli/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 02:14:19','2023-09-16 02:14:19'),(9244,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-15T20:27:10-06:00\",\"transaction\":{\"id\":\"trvqobfegpx4xzk8jeli\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-15T21:13:37-06:00\",\"operation_date\":\"2023-09-15T21:13:37-06:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"5B5E6CC50CEFA5E9F1F5CA272B136475_I5VUWYE3M1_1694830404.6555\",\"due_date\":\"2023-09-16T09:13:37-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-09-15T21:13:37-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 02:27:11','2023-09-16 02:27:11'),(9245,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-15T20:30:09-06:00\",\"transaction\":{\"id\":\"trvqobfegpx4xzk8jeli\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-15T21:13:37-06:00\",\"operation_date\":\"2023-09-15T21:13:37-06:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"5B5E6CC50CEFA5E9F1F5CA272B136475_I5VUWYE3M1_1694830404.6555\",\"due_date\":\"2023-09-16T09:13:37-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-09-15T21:13:37-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 02:30:10','2023-09-16 02:30:10'),(9246,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-15T21:51:37-05:00\",\"transaction\":{\"id\":\"trsdik7tgcxv3rmiodpp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-15T21:51:00-05:00\",\"operation_date\":\"2023-09-15T21:51:00-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Garcia Gonzalez (1038876109)\",\"error_message\":null,\"order_id\":\"D360A502598A4B64B936683B44A5523A_IK7Y5VC41T_1694832657.6216\",\"due_date\":\"2023-09-16T09:51:00-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Garcia Gonzalez\",\"email\":\"nata.1201@hotmail.com\",\"phone_number\":\"3145195711\",\"address\":null,\"creation_date\":\"2023-09-15T21:51:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsdik7tgcxv3rmiodpp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 02:51:38','2023-09-16 02:51:38'),(9247,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-15T21:53:31-05:00\",\"transaction\":{\"id\":\"trsdik7tgcxv3rmiodpp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"163700942\",\"creation_date\":\"2023-09-15T21:51:00-05:00\",\"operation_date\":\"2023-09-15T21:53:17-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Garcia Gonzalez (1038876109)\",\"error_message\":null,\"order_id\":\"D360A502598A4B64B936683B44A5523A_IK7Y5VC41T_1694832657.6216\",\"due_date\":\"2023-09-16T09:51:00-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Garcia Gonzalez\",\"email\":\"nata.1201@hotmail.com\",\"phone_number\":\"3145195711\",\"address\":null,\"creation_date\":\"2023-09-15T21:51:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 02:53:31','2023-09-16 02:53:31'),(9248,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T06:31:53-05:00\",\"transaction\":{\"id\":\"tr2xwffbsmulsjskq1ae\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T06:30:47-05:00\",\"operation_date\":\"2023-09-16T06:30:47-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN LONDOÑO PEREAÑEZ (1020303276)\",\"error_message\":null,\"order_id\":\"56577889B3C1CD083B6D7B32D32F99D5_6JGYMS1Z27_1694863843.6214\",\"due_date\":\"2023-09-16T18:30:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ELIANA\",\"last_name\":\"PEREAÑEZ PATIÑO\",\"email\":\"eliana.pereanez@gmail.com\",\"phone_number\":\"3117737115\",\"address\":null,\"creation_date\":\"2023-09-16T06:30:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2xwffbsmulsjskq1ae/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 11:31:54','2023-09-16 11:31:54'),(9249,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-16T06:32:42-05:00\",\"transaction\":{\"id\":\"tr2xwffbsmulsjskq1ae\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"163933429\",\"creation_date\":\"2023-09-16T06:30:47-05:00\",\"operation_date\":\"2023-09-16T06:32:37-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN LONDOÑO PEREAÑEZ (1020303276)\",\"error_message\":null,\"order_id\":\"56577889B3C1CD083B6D7B32D32F99D5_6JGYMS1Z27_1694863843.6214\",\"due_date\":\"2023-09-16T18:30:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ELIANA\",\"last_name\":\"PEREAÑEZ PATIÑO\",\"email\":\"eliana.pereanez@gmail.com\",\"phone_number\":\"3117737115\",\"address\":null,\"creation_date\":\"2023-09-16T06:30:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 11:32:42','2023-09-16 11:32:42'),(9250,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T06:33:38-05:00\",\"transaction\":{\"id\":\"trig4bahnkn9aamyrj9v\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T06:32:59-05:00\",\"operation_date\":\"2023-09-16T06:32:59-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN LONDOÑO PEREAÑEZ (1020303276)\",\"error_message\":null,\"order_id\":\"1CD73BE1E256A7405516501E94E892AC_MNUPDBV4OS_1694863976.9851\",\"due_date\":\"2023-09-16T18:32:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ELIANA\",\"last_name\":\"PEREAÑEZ PATIÑO\",\"email\":\"eliana.pereanez@gmail.com\",\"phone_number\":\"3117737115\",\"address\":null,\"creation_date\":\"2023-09-16T06:32:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trig4bahnkn9aamyrj9v/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 11:33:39','2023-09-16 11:33:39'),(9251,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-16T06:35:25-05:00\",\"transaction\":{\"id\":\"trig4bahnkn9aamyrj9v\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"163934711\",\"creation_date\":\"2023-09-16T06:32:59-05:00\",\"operation_date\":\"2023-09-16T06:35:19-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN LONDOÑO PEREAÑEZ (1020303276)\",\"error_message\":null,\"order_id\":\"1CD73BE1E256A7405516501E94E892AC_MNUPDBV4OS_1694863976.9851\",\"due_date\":\"2023-09-16T18:32:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ELIANA\",\"last_name\":\"PEREAÑEZ PATIÑO\",\"email\":\"eliana.pereanez@gmail.com\",\"phone_number\":\"3117737115\",\"address\":null,\"creation_date\":\"2023-09-16T06:32:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 11:35:26','2023-09-16 11:35:26'),(9252,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T08:34:27-05:00\",\"transaction\":{\"id\":\"trguqgvnuetwc86pvf3p\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T08:33:35-05:00\",\"operation_date\":\"2023-09-16T08:33:35-05:00\",\"description\":\"Pago Mensual academia: emiliano campuzano correa (1234992631)\",\"error_message\":null,\"order_id\":\"CA4B33532855080DFA79CF8A925D146D_6SZHAWK0U7_1694871212.4137\",\"due_date\":\"2023-09-16T20:33:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"estefania\",\"last_name\":\"campuzano\",\"email\":\"stfacorrea91@gmail.com\",\"phone_number\":\"3126082267\",\"address\":null,\"creation_date\":\"2023-09-16T08:33:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trguqgvnuetwc86pvf3p/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 13:34:28','2023-09-16 13:34:28'),(9253,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-16T08:35:28-05:00\",\"transaction\":{\"id\":\"trguqgvnuetwc86pvf3p\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"164082587\",\"creation_date\":\"2023-09-16T08:33:35-05:00\",\"operation_date\":\"2023-09-16T08:35:23-05:00\",\"description\":\"Pago Mensual academia: emiliano campuzano correa (1234992631)\",\"error_message\":null,\"order_id\":\"CA4B33532855080DFA79CF8A925D146D_6SZHAWK0U7_1694871212.4137\",\"due_date\":\"2023-09-16T20:33:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"estefania\",\"last_name\":\"campuzano\",\"email\":\"stfacorrea91@gmail.com\",\"phone_number\":\"3126082267\",\"address\":null,\"creation_date\":\"2023-09-16T08:33:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 13:35:28','2023-09-16 13:35:28'),(9254,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T09:14:23-05:00\",\"transaction\":{\"id\":\"trzrgo5hzeuxwi6ka2y1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T09:12:59-05:00\",\"operation_date\":\"2023-09-16T09:12:59-05:00\",\"description\":\"Pago Mensual academia: jeronimo agudelo aguilar (1020230403)\",\"error_message\":null,\"order_id\":\"DA0B566359C3862F20B5072C3D49BD0F_UK1DOISCMJ_1694873571.9408\",\"due_date\":\"2023-09-16T21:12:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"brayan antonio\",\"last_name\":\"agudelo sanchez\",\"email\":\"brayan.agudelo26@gmail.com\",\"phone_number\":\"3113643596\",\"address\":null,\"creation_date\":\"2023-09-16T09:12:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzrgo5hzeuxwi6ka2y1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 14:14:24','2023-09-16 14:14:24'),(9255,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-16T08:15:32-06:00\",\"transaction\":{\"id\":\"trzrgo5hzeuxwi6ka2y1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"164159774\",\"creation_date\":\"2023-09-16T09:12:59-06:00\",\"operation_date\":\"2023-09-16T08:15:27-06:00\",\"description\":\"Pago Mensual academia: jeronimo agudelo aguilar (1020230403)\",\"error_message\":null,\"order_id\":\"DA0B566359C3862F20B5072C3D49BD0F_UK1DOISCMJ_1694873571.9408\",\"due_date\":\"2023-09-16T21:12:59-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"brayan antonio\",\"last_name\":\"agudelo sanchez\",\"email\":\"brayan.agudelo26@gmail.com\",\"phone_number\":\"3113643596\",\"address\":null,\"creation_date\":\"2023-09-16T09:12:59-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 14:15:32','2023-09-16 14:15:32'),(9256,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T09:30:39-05:00\",\"transaction\":{\"id\":\"trknomrzekhhrba5hdwh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T09:30:02-05:00\",\"operation_date\":\"2023-09-16T09:30:02-05:00\",\"description\":\"Pago Mensual academia: jacobo campos giraldo (1035014287)\",\"error_message\":null,\"order_id\":\"D3F5D4DE09EA19461DAB00590DF91E4F_WSYM36PAKX_1694874598.5773\",\"due_date\":\"2023-09-16T21:30:02-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"natalia\",\"last_name\":\"giraldo upegui\",\"email\":\"natygiraldo203@hotmail.com\",\"phone_number\":\"3117294410\",\"address\":null,\"creation_date\":\"2023-09-16T09:30:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trknomrzekhhrba5hdwh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 14:30:40','2023-09-16 14:30:40'),(9257,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-16T09:31:43-05:00\",\"transaction\":{\"id\":\"trknomrzekhhrba5hdwh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"164194578\",\"creation_date\":\"2023-09-16T09:30:02-05:00\",\"operation_date\":\"2023-09-16T09:31:32-05:00\",\"description\":\"Pago Mensual academia: jacobo campos giraldo (1035014287)\",\"error_message\":null,\"order_id\":\"D3F5D4DE09EA19461DAB00590DF91E4F_WSYM36PAKX_1694874598.5773\",\"due_date\":\"2023-09-16T21:30:02-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"natalia\",\"last_name\":\"giraldo upegui\",\"email\":\"natygiraldo203@hotmail.com\",\"phone_number\":\"3117294410\",\"address\":null,\"creation_date\":\"2023-09-16T09:30:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 14:31:44','2023-09-16 14:31:44'),(9258,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T10:06:44-05:00\",\"transaction\":{\"id\":\"trnt2kk1ydntn4adpijo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T10:02:42-05:00\",\"operation_date\":\"2023-09-16T10:02:42-05:00\",\"description\":\"Pago Mensual academia: Santiago Hernandez palomino (1018255925)\",\"error_message\":null,\"order_id\":\"485843481A7EDACBFCE101ECB1E4D2A8_4OT16JM7DE_1694876559.8243\",\"due_date\":\"2023-09-16T22:02:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sergio andres\",\"last_name\":\"Hernandez jaramillo\",\"email\":\"sahj00@gmail.com\",\"phone_number\":\"3106635700\",\"address\":null,\"creation_date\":\"2023-09-16T10:02:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnt2kk1ydntn4adpijo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 15:06:45','2023-09-16 15:06:45'),(9259,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T10:06:49-05:00\",\"transaction\":{\"id\":\"trxibgenhvegf1bff5m5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T10:05:39-05:00\",\"operation_date\":\"2023-09-16T10:05:39-05:00\",\"description\":\"Pago Mensual academia: Samuel Alejandro Saavedra Montero (1013368875)\",\"error_message\":null,\"order_id\":\"8FB134F258B1F7865A6AB2D935A897C9_RX5FMKYZ78_1694876732.211\",\"due_date\":\"2023-09-16T22:05:39-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Saavedra\",\"email\":\"alejandro10ula@gmail.com\",\"phone_number\":\"3152916630\",\"address\":null,\"creation_date\":\"2023-09-16T10:05:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxibgenhvegf1bff5m5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 15:06:50','2023-09-16 15:06:50'),(9260,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-16T09:09:26-06:00\",\"transaction\":{\"id\":\"trnt2kk1ydntn4adpijo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-16T10:02:42-06:00\",\"operation_date\":\"2023-09-16T09:06:54-06:00\",\"description\":\"Pago Mensual academia: Santiago Hernandez palomino (1018255925)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"485843481A7EDACBFCE101ECB1E4D2A8_4OT16JM7DE_1694876559.8243\",\"due_date\":\"2023-09-16T22:02:42-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Sergio andres\",\"last_name\":\"Hernandez jaramillo\",\"email\":\"sahj00@gmail.com\",\"phone_number\":\"3106635700\",\"address\":null,\"creation_date\":\"2023-09-16T10:02:42-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 15:09:27','2023-09-16 15:09:27'),(9261,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-16T09:09:33-06:00\",\"transaction\":{\"id\":\"trxibgenhvegf1bff5m5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"164274474\",\"creation_date\":\"2023-09-16T10:05:39-06:00\",\"operation_date\":\"2023-09-15T23:00:00-06:00\",\"description\":\"Pago Mensual academia: Samuel Alejandro Saavedra Montero (1013368875)\",\"error_message\":null,\"order_id\":\"8FB134F258B1F7865A6AB2D935A897C9_RX5FMKYZ78_1694876732.211\",\"due_date\":\"2023-09-16T22:05:39-06:00\",\"amount\":105000.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Saavedra\",\"email\":\"alejandro10ula@gmail.com\",\"phone_number\":\"3152916630\",\"address\":null,\"creation_date\":\"2023-09-16T10:05:39-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 15:09:33','2023-09-16 15:09:33'),(9262,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T10:40:26-05:00\",\"transaction\":{\"id\":\"trvu6qndtkinhucd3atf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T10:39:20-05:00\",\"operation_date\":\"2023-09-16T10:39:20-05:00\",\"description\":\"Pago Mensual academia: Sebastián gavilanes yepes (1023551301)\",\"error_message\":null,\"order_id\":\"DF5354693177E83E8BA089E94B7B6B55_TKULCO9QNE_1694878740.9302\",\"due_date\":\"2023-09-16T22:39:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"edwin oswaldo\",\"last_name\":\"gavilanes garcia\",\"email\":\"eogavila@gmail.com\",\"phone_number\":\"3105982823\",\"address\":null,\"creation_date\":\"2023-09-16T10:39:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvu6qndtkinhucd3atf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 15:40:26','2023-09-16 15:40:26'),(9263,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-16T10:42:03-05:00\",\"transaction\":{\"id\":\"trvu6qndtkinhucd3atf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"164351216\",\"creation_date\":\"2023-09-16T10:39:20-05:00\",\"operation_date\":\"2023-09-16T10:41:48-05:00\",\"description\":\"Pago Mensual academia: Sebastián gavilanes yepes (1023551301)\",\"error_message\":null,\"order_id\":\"DF5354693177E83E8BA089E94B7B6B55_TKULCO9QNE_1694878740.9302\",\"due_date\":\"2023-09-16T22:39:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"edwin oswaldo\",\"last_name\":\"gavilanes garcia\",\"email\":\"eogavila@gmail.com\",\"phone_number\":\"3105982823\",\"address\":null,\"creation_date\":\"2023-09-16T10:39:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 15:42:03','2023-09-16 15:42:03'),(9264,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T13:12:07-05:00\",\"transaction\":{\"id\":\"trqrzykuqdre0psrniip\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T13:11:29-05:00\",\"operation_date\":\"2023-09-16T13:11:29-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Serna Gil (1033268035)\",\"error_message\":null,\"order_id\":\"EE0E95249268B86FF2053BEF214BFEDA_A8SH5RB3F1_1694887873.191\",\"due_date\":\"2023-09-17T01:11:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego\",\"last_name\":\"Serna\",\"email\":\"diegoserna.as@gmail.com\",\"phone_number\":\"3128737141\",\"address\":null,\"creation_date\":\"2023-09-16T13:11:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqrzykuqdre0psrniip/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 18:12:08','2023-09-16 18:12:08'),(9265,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  837\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-16T12:33:11-06:00\",\"transaction\":{\"id\":\"trqrzykuqdre0psrniip\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-16T13:11:29-06:00\",\"operation_date\":\"2023-09-16T12:12:16-06:00\",\"description\":\"Pago Mensual academia: Juan Martín Serna Gil (1033268035)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"EE0E95249268B86FF2053BEF214BFEDA_A8SH5RB3F1_1694887873.191\",\"due_date\":\"2023-09-17T01:11:29-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Diego\",\"last_name\":\"Serna\",\"email\":\"diegoserna.as@gmail.com\",\"phone_number\":\"3128737141\",\"address\":null,\"creation_date\":\"2023-09-16T13:11:29-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 18:33:11','2023-09-16 18:33:11'),(9266,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T15:17:17-05:00\",\"transaction\":{\"id\":\"trukerjpw6ztpnrhvzqe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T15:16:32-05:00\",\"operation_date\":\"2023-09-16T15:16:32-05:00\",\"description\":\"Pago Mensual academia: Mathias Cano Floréz (1041352972)\",\"error_message\":null,\"order_id\":\"354AC345FD8C6D7EF634D9A8E3D47B83_45N3H2EK0Y_1694895387.1317\",\"due_date\":\"2023-09-17T03:16:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana Marcela\",\"last_name\":\"Floréz\",\"email\":\"elianablandon15@outlook.com\",\"phone_number\":\"3145374253\",\"address\":null,\"creation_date\":\"2023-09-16T15:16:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trukerjpw6ztpnrhvzqe/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 20:17:17','2023-09-16 20:17:17'),(9267,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-16T14:21:15-06:00\",\"transaction\":{\"id\":\"trukerjpw6ztpnrhvzqe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-16T15:16:32-06:00\",\"operation_date\":\"2023-09-16T14:17:27-06:00\",\"description\":\"Pago Mensual academia: Mathias Cano Floréz (1041352972)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"354AC345FD8C6D7EF634D9A8E3D47B83_45N3H2EK0Y_1694895387.1317\",\"due_date\":\"2023-09-17T03:16:32-06:00\",\"error_code\":1007,\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Eliana Marcela\",\"last_name\":\"Floréz\",\"email\":\"elianablandon15@outlook.com\",\"phone_number\":\"3145374253\",\"address\":null,\"creation_date\":\"2023-09-16T15:16:32-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 20:21:16','2023-09-16 20:21:16'),(9268,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T15:21:33-05:00\",\"transaction\":{\"id\":\"tr6itjy4w2fiypkb1aq5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-16T15:21:33-05:00\",\"operation_date\":\"2023-09-16T15:21:33-05:00\",\"description\":\"Pago Mensual academia: Mathias Cano Floréz (1041352972)\",\"error_message\":null,\"order_id\":\"354AC345FD8C6D7EF634D9A8E3D47B83_45N3H2EK0Y_1694895684.6006\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana Marcela\",\"last_name\":\"Floréz\",\"email\":\"elianablandon15@outlook.com\",\"phone_number\":\"3145374253\",\"address\":null,\"creation_date\":\"2023-09-16T15:21:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6itjy4w2fiypkb1aq5/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-16 20:21:34','2023-09-16 20:21:34'),(9269,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1145\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-16T15:23:15-05:00\",\"transaction\":{\"id\":\"tr6itjy4w2fiypkb1aq5\",\"authorization\":\"152315\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-16T15:21:33-05:00\",\"operation_date\":\"2023-09-16T15:23:13-05:00\",\"description\":\"Pago Mensual academia: Mathias Cano Floréz (1041352972)\",\"error_message\":null,\"order_id\":\"354AC345FD8C6D7EF634D9A8E3D47B83_45N3H2EK0Y_1694895684.6006\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX0486\",\"holder_name\":\"Eliana Florez\",\"expiration_year\":\"27\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Eliana Marcela\",\"last_name\":\"Floréz\",\"email\":\"elianablandon15@outlook.com\",\"phone_number\":\"3145374253\",\"address\":null,\"creation_date\":\"2023-09-16T15:21:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6itjy4w2fiypkb1aq5/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-16 20:23:16','2023-09-16 20:23:16'),(9270,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T16:25:59-05:00\",\"transaction\":{\"id\":\"trvxeamrvqxtpdzs7fu9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-16T16:25:59-05:00\",\"operation_date\":\"2023-09-16T16:25:59-05:00\",\"description\":\"Pago Mensual academia: Mattias David Henao Vasquez (1155713038)\",\"error_message\":null,\"order_id\":\"E366D105CFD734677897AACCF51E97A3_4PIMLHQZYW_1694899555.3719\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"vasquez bustos\",\"email\":\"sarawac@hotmail.com\",\"phone_number\":\"3004331580\",\"address\":null,\"creation_date\":\"2023-09-16T16:25:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvxeamrvqxtpdzs7fu9/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-16 21:26:00','2023-09-16 21:26:00'),(9271,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  911\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T17:04:25-05:00\",\"transaction\":{\"id\":\"trosch2jofvb7hmoiq38\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T17:02:34-05:00\",\"operation_date\":\"2023-09-16T17:02:34-05:00\",\"description\":\"Pago Mensual academia: Emanuel Rojas Pérez (1018268563)\",\"error_message\":null,\"order_id\":\"5901FE6483310C89C35B54455F2A5557_Z6H14JGVFC_1694901739.6281\",\"due_date\":\"2023-09-17T05:02:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Isaza\",\"email\":\"dianisat19@gmail.com\",\"phone_number\":\"3026132889\",\"address\":null,\"creation_date\":\"2023-09-16T17:02:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trosch2jofvb7hmoiq38/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 22:04:26','2023-09-16 22:04:26'),(9272,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  794\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-16T17:07:09-05:00\",\"transaction\":{\"id\":\"trosch2jofvb7hmoiq38\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"165049389\",\"creation_date\":\"2023-09-16T17:02:34-05:00\",\"operation_date\":\"2023-09-16T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Emanuel Rojas Pérez (1018268563)\",\"error_message\":null,\"order_id\":\"5901FE6483310C89C35B54455F2A5557_Z6H14JGVFC_1694901739.6281\",\"due_date\":\"2023-09-17T05:02:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Isaza\",\"email\":\"dianisat19@gmail.com\",\"phone_number\":\"3026132889\",\"address\":null,\"creation_date\":\"2023-09-16T17:02:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 22:07:10','2023-09-16 22:07:10'),(9273,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T18:03:08-05:00\",\"transaction\":{\"id\":\"trjd82qc4tyyndnud2us\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-16T18:03:08-05:00\",\"operation_date\":\"2023-09-16T18:03:08-05:00\",\"description\":\"Pago Mensual academia: emiliano urrego rios (1023595679)\",\"error_message\":null,\"order_id\":\"89A4779D3836EA432F7EA074E522A17E_PC4OIVRXT5_1694905380.3337\",\"amount\":105000.00,\"customer\":{\"name\":\"juan carlos\",\"last_name\":\"urrego perez\",\"email\":\"juan18_92@hotmail.com\",\"phone_number\":\"3104136934\",\"address\":null,\"creation_date\":\"2023-09-16T18:03:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjd82qc4tyyndnud2us/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-16 23:03:09','2023-09-16 23:03:09'),(9274,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-16T18:09:47-05:00\",\"transaction\":{\"id\":\"truav6mmsdlpsv96jtzh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-16T18:08:37-05:00\",\"operation_date\":\"2023-09-16T18:08:37-05:00\",\"description\":\"Pago Mensual academia: Julián Trespalacios Obando (1023552443)\",\"error_message\":null,\"order_id\":\"385822E359AFA26D52B5B286226F2CEA_247FLUSX5C_1694905712.3568\",\"due_date\":\"2023-09-17T06:08:37-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Marivel\",\"last_name\":\"Obando Galindo\",\"email\":\"Obando833@hotmail.com\",\"phone_number\":\"3014010516\",\"address\":null,\"creation_date\":\"2023-09-16T18:08:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truav6mmsdlpsv96jtzh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 23:09:48','2023-09-16 23:09:48'),(9275,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-16T18:11:17-05:00\",\"transaction\":{\"id\":\"truav6mmsdlpsv96jtzh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"165143095\",\"creation_date\":\"2023-09-16T18:08:37-05:00\",\"operation_date\":\"2023-09-16T18:11:02-05:00\",\"description\":\"Pago Mensual academia: Julián Trespalacios Obando (1023552443)\",\"error_message\":null,\"order_id\":\"385822E359AFA26D52B5B286226F2CEA_247FLUSX5C_1694905712.3568\",\"due_date\":\"2023-09-17T06:08:37-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Marivel\",\"last_name\":\"Obando Galindo\",\"email\":\"Obando833@hotmail.com\",\"phone_number\":\"3014010516\",\"address\":null,\"creation_date\":\"2023-09-16T18:08:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-16 23:11:17','2023-09-16 23:11:17'),(9276,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-17T08:46:18-05:00\",\"transaction\":{\"id\":\"trg0ffalqzu7ybngg95l\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-17T08:45:06-05:00\",\"operation_date\":\"2023-09-17T08:45:06-05:00\",\"description\":\"Pago Mensual academia: Nicolas Cueto Arango (1036461020)\",\"error_message\":null,\"order_id\":\"3E33B970F21D2FC65096871EA0D2C6E4_97C6EUKDSL_1694958300.9565\",\"due_date\":\"2023-09-17T20:45:06-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Cueto Arango\",\"email\":\"yesidcueto@hotmail.com\",\"phone_number\":\"3005569903\",\"address\":null,\"creation_date\":\"2023-09-17T08:45:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg0ffalqzu7ybngg95l/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-17 13:46:18','2023-09-17 13:46:18'),(9277,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-17T08:47:43-05:00\",\"transaction\":{\"id\":\"trg0ffalqzu7ybngg95l\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"165598031\",\"creation_date\":\"2023-09-17T08:45:06-05:00\",\"operation_date\":\"2023-09-17T08:47:21-05:00\",\"description\":\"Pago Mensual academia: Nicolas Cueto Arango (1036461020)\",\"error_message\":null,\"order_id\":\"3E33B970F21D2FC65096871EA0D2C6E4_97C6EUKDSL_1694958300.9565\",\"due_date\":\"2023-09-17T20:45:06-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Cueto Arango\",\"email\":\"yesidcueto@hotmail.com\",\"phone_number\":\"3005569903\",\"address\":null,\"creation_date\":\"2023-09-17T08:45:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-17 13:47:43','2023-09-17 13:47:43'),(9278,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-17T08:55:13-05:00\",\"transaction\":{\"id\":\"trxoawzicnz3y7tpnlfa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-17T08:55:13-05:00\",\"operation_date\":\"2023-09-17T08:55:13-05:00\",\"description\":\"Pago Mensual academia: emiliano urrego rios (1023595679)\",\"error_message\":null,\"order_id\":\"89A4779D3836EA432F7EA074E522A17E_PC4OIVRXT5_1694958908.0642\",\"amount\":105000.00,\"customer\":{\"name\":\"juan carlos\",\"last_name\":\"urrego perez\",\"email\":\"juan18_92@hotmail.com\",\"phone_number\":\"3104136934\",\"address\":null,\"creation_date\":\"2023-09-17T08:55:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxoawzicnz3y7tpnlfa/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-17 13:55:14','2023-09-17 13:55:14'),(9279,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-17T08:58:12-05:00\",\"transaction\":{\"id\":\"trxoawzicnz3y7tpnlfa\",\"authorization\":\"085811\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-17T08:55:13-05:00\",\"operation_date\":\"2023-09-17T08:58:11-05:00\",\"description\":\"Pago Mensual academia: emiliano urrego rios (1023595679)\",\"error_message\":null,\"order_id\":\"89A4779D3836EA432F7EA074E522A17E_PC4OIVRXT5_1694958908.0642\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1046\",\"holder_name\":\"Juan Carlos urrego perez \",\"expiration_year\":\"27\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":105000.00,\"customer\":{\"name\":\"juan carlos\",\"last_name\":\"urrego perez\",\"email\":\"juan18_92@hotmail.com\",\"phone_number\":\"3104136934\",\"address\":null,\"creation_date\":\"2023-09-17T08:55:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxoawzicnz3y7tpnlfa/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-17 13:58:12','2023-09-17 13:58:12'),(9280,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-17T09:22:22-05:00\",\"transaction\":{\"id\":\"trsbykvvz6df8ectauag\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-17T09:21:30-05:00\",\"operation_date\":\"2023-09-17T09:21:30-05:00\",\"description\":\"Pago Mensual academia: Paolo Colorado Álvarez (1025908793)\",\"error_message\":null,\"order_id\":\"90525E70B7842930586545C6F1C9310C_JNTXV2GUA5_1694960485.7621\",\"due_date\":\"2023-09-17T21:21:30-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maryelly\",\"last_name\":\"Álvarez Arboleda\",\"email\":\"marlly_16_@hotmail.com\",\"phone_number\":\"3003589264\",\"address\":null,\"creation_date\":\"2023-09-17T09:21:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsbykvvz6df8ectauag/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-17 14:22:22','2023-09-17 14:22:22'),(9281,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-17T09:24:11-05:00\",\"transaction\":{\"id\":\"trsbykvvz6df8ectauag\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"165629949\",\"creation_date\":\"2023-09-17T09:21:30-05:00\",\"operation_date\":\"2023-09-17T09:23:41-05:00\",\"description\":\"Pago Mensual academia: Paolo Colorado Álvarez (1025908793)\",\"error_message\":null,\"order_id\":\"90525E70B7842930586545C6F1C9310C_JNTXV2GUA5_1694960485.7621\",\"due_date\":\"2023-09-17T21:21:30-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maryelly\",\"last_name\":\"Álvarez Arboleda\",\"email\":\"marlly_16_@hotmail.com\",\"phone_number\":\"3003589264\",\"address\":null,\"creation_date\":\"2023-09-17T09:21:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-17 14:24:11','2023-09-17 14:24:11'),(9282,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-17T15:46:23-05:00\",\"transaction\":{\"id\":\"trtvfy8vkyfz2kqvjxe1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-17T15:46:23-05:00\",\"operation_date\":\"2023-09-17T15:46:23-05:00\",\"description\":\"Pago Mensual academia: Matías Yepes Ríos (1023595226)\",\"error_message\":null,\"order_id\":\"9565F1CD832C9675C76672081C819342_FX6DAHERKY_1694983579.206\",\"amount\":165900.00,\"customer\":{\"name\":\"Herbert\",\"last_name\":\"Yepes Cartagena\",\"email\":\"herbertyepes@yahoo.es\",\"phone_number\":\"3153123628\",\"address\":null,\"creation_date\":\"2023-09-17T15:46:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtvfy8vkyfz2kqvjxe1/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-17 20:46:23','2023-09-17 20:46:23'),(9283,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  657\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-17T15:54:04-05:00\",\"transaction\":{\"id\":\"trrpzc9pnpxqitz2laki\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"payments\":12,\"conciliated\":true,\"creation_date\":\"2023-09-17T15:54:04-05:00\",\"operation_date\":\"2023-09-17T15:54:04-05:00\",\"description\":\"Pago Mensual academia: Matías Yepes Ríos (1023595226)\",\"error_message\":\"The card doesn\'t have sufficient funds\",\"order_id\":\"9565F1CD832C9675C76672081C819342_FX6DAHERKY_1694983579.206\",\"error_code\":3003,\"payment_plan\":{\"payments\":12,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-17 20:54:05','2023-09-17 20:54:05'),(9284,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  577\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-17T15:54:31-05:00\",\"transaction\":{\"id\":\"tr9bgtmslotvnif6sgtc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-09-17T15:54:31-05:00\",\"operation_date\":\"2023-09-17T15:54:31-05:00\",\"description\":\"Pago Mensual academia: Matías Yepes Ríos (1023595226)\",\"error_message\":\"The card doesn\'t have sufficient funds\",\"order_id\":\"9565F1CD832C9675C76672081C819342_FX6DAHERKY_1694983579.206\",\"error_code\":3003,\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-17 20:54:32','2023-09-17 20:54:32'),(9285,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-17T18:16:10-05:00\",\"transaction\":{\"id\":\"trirpnecepilh3iaharb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-17T18:14:56-05:00\",\"operation_date\":\"2023-09-17T18:14:56-05:00\",\"description\":\"Pago Mensual academia: Said Andrés Rodríguez (1141523596)\",\"error_message\":null,\"order_id\":\"5487E79FA0CCD0B79E5D4A4C8CED005D_IRNZFL4WV0_1694992491.1694\",\"due_date\":\"2023-09-18T06:14:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dora Elisa\",\"last_name\":\"Rodriguez R\",\"email\":\"doraeliza2020@hotmail.com\",\"phone_number\":\"3146483570\",\"address\":null,\"creation_date\":\"2023-09-17T18:14:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trirpnecepilh3iaharb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-17 23:16:11','2023-09-17 23:16:11'),(9286,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-17T17:18:34-06:00\",\"transaction\":{\"id\":\"trirpnecepilh3iaharb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"166268126\",\"creation_date\":\"2023-09-17T18:14:56-06:00\",\"operation_date\":\"2023-09-17T17:18:05-06:00\",\"description\":\"Pago Mensual academia: Said Andrés Rodríguez (1141523596)\",\"error_message\":null,\"order_id\":\"5487E79FA0CCD0B79E5D4A4C8CED005D_IRNZFL4WV0_1694992491.1694\",\"due_date\":\"2023-09-18T06:14:56-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Dora Elisa\",\"last_name\":\"Rodriguez R\",\"email\":\"doraeliza2020@hotmail.com\",\"phone_number\":\"3146483570\",\"address\":null,\"creation_date\":\"2023-09-17T18:14:56-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-17 23:18:34','2023-09-17 23:18:34'),(9287,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-17T21:35:07-05:00\",\"transaction\":{\"id\":\"trfyzbkavinxngiww04j\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-17T21:33:55-05:00\",\"operation_date\":\"2023-09-17T21:33:55-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Mejia Montoya (1155713567)\",\"error_message\":null,\"order_id\":\"8D6A06B2F1208B59454A9A749928B0C0_1IULBZ6YAE_1695004432.5466\",\"due_date\":\"2023-09-18T09:33:55-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"Isabel\",\"last_name\":\"montoya\",\"email\":\"isa-montoya-16@hotmail.com\",\"phone_number\":\"3104326273\",\"address\":null,\"creation_date\":\"2023-09-17T21:33:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfyzbkavinxngiww04j/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 02:35:08','2023-09-18 02:35:08'),(9288,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-17T21:36:28-05:00\",\"transaction\":{\"id\":\"trfyzbkavinxngiww04j\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"166514237\",\"creation_date\":\"2023-09-17T21:33:55-05:00\",\"operation_date\":\"2023-09-17T21:36:12-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Mejia Montoya (1155713567)\",\"error_message\":null,\"order_id\":\"8D6A06B2F1208B59454A9A749928B0C0_1IULBZ6YAE_1695004432.5466\",\"due_date\":\"2023-09-18T09:33:55-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"Isabel\",\"last_name\":\"montoya\",\"email\":\"isa-montoya-16@hotmail.com\",\"phone_number\":\"3104326273\",\"address\":null,\"creation_date\":\"2023-09-17T21:33:55-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 02:36:29','2023-09-18 02:36:29'),(9289,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-18T02:47:28-06:00\",\"transaction\":{\"id\":\"trfqv723bdx0hnv99puk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-14T20:06:26-06:00\",\"operation_date\":\"2023-09-14T20:06:26-06:00\",\"description\":\"Pago Mensual academia: Jeronimo Diaz Cespedes (1011404754)\",\"error_message\":null,\"order_id\":\"D5FF135377D39F1DE7372C95C74DD962_1UE4LWSY3F_1694739971.6045\",\"due_date\":\"2023-09-15T08:06:26-06:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfqv723bdx0hnv99puk/pse_capture\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Cespedes Guiral\",\"email\":\"paulandrea2830@gmail.com\",\"phone_number\":\"3206675821\",\"address\":null,\"creation_date\":\"2023-09-14T20:06:26-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 08:47:29','2023-09-18 08:47:29'),(9290,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-18T02:47:28-06:00\",\"transaction\":{\"id\":\"trmangi0qh7dztcjzyfe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-14T17:44:30-06:00\",\"operation_date\":\"2023-09-14T17:44:30-06:00\",\"description\":\"Pago Mensual academia: juan Felipe Sánchez Benavides (1201466082)\",\"error_message\":null,\"order_id\":\"7FC63FF01769C4FA7D9279E97E307829_ZLO5SX1PBA_1694731461.8969\",\"due_date\":\"2023-09-15T05:44:30-06:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmangi0qh7dztcjzyfe/pse_capture\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"sanchez benavides\",\"email\":\"katerinefeli@gmail.com\",\"phone_number\":\"3122709310\",\"address\":null,\"creation_date\":\"2023-09-14T17:44:30-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 08:47:29','2023-09-18 08:47:29'),(9291,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-18T02:47:28-06:00\",\"transaction\":{\"id\":\"trxn71xxheay4fcaldzz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-14T17:49:40-06:00\",\"operation_date\":\"2023-09-14T17:49:40-06:00\",\"description\":\"Pago Mensual academia: Emiliano Fiallo García (1027813536)\",\"error_message\":null,\"order_id\":\"AEC851E565646F6835E915293381E20A_CP9M6WEDO2_1694731776.1211\",\"due_date\":\"2023-09-15T05:49:40-06:00\",\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxn71xxheay4fcaldzz/pse_capture\"},\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"García Sánchez\",\"email\":\"tatigs0303@hotmail.com\",\"phone_number\":\"3137669661\",\"address\":null,\"creation_date\":\"2023-09-14T17:49:40-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 08:47:29','2023-09-18 08:47:29'),(9292,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T06:28:16-05:00\",\"transaction\":{\"id\":\"tr0yryc4i1nvvxlltnj7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T06:27:27-05:00\",\"operation_date\":\"2023-09-18T06:27:27-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Pérez Osorio (71782231)\",\"error_message\":null,\"order_id\":\"9529FBBA677729D3206B3B9073D1E9CA_IJHVTRY2ZA_1695036440.0615\",\"due_date\":\"2023-09-18T18:27:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Pablo\",\"last_name\":\"Perez Velez\",\"email\":\"juanpapv@yahoo.es\",\"phone_number\":\"3002743179\",\"address\":null,\"creation_date\":\"2023-09-18T06:27:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0yryc4i1nvvxlltnj7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 11:28:17','2023-09-18 11:28:17'),(9293,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T06:29:31-05:00\",\"transaction\":{\"id\":\"tr0yryc4i1nvvxlltnj7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"166666411\",\"creation_date\":\"2023-09-18T06:27:27-05:00\",\"operation_date\":\"2023-09-18T06:29:10-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Pérez Osorio (71782231)\",\"error_message\":null,\"order_id\":\"9529FBBA677729D3206B3B9073D1E9CA_IJHVTRY2ZA_1695036440.0615\",\"due_date\":\"2023-09-18T18:27:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Pablo\",\"last_name\":\"Perez Velez\",\"email\":\"juanpapv@yahoo.es\",\"phone_number\":\"3002743179\",\"address\":null,\"creation_date\":\"2023-09-18T06:27:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 11:29:32','2023-09-18 11:29:32'),(9294,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T07:37:04-05:00\",\"transaction\":{\"id\":\"trfpduvkzsisxpa6i4jh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-18T07:37:04-05:00\",\"operation_date\":\"2023-09-18T07:37:04-05:00\",\"description\":\"Pago Mensual academia: Ismael Ramirez Restrepo (1035003577)\",\"error_message\":null,\"order_id\":\"4B04B0DCD2ADE339A3D7CE13252A29D4_K8XYCWNGH9_1695040620.2093\",\"amount\":165900.00,\"customer\":{\"name\":\"Brayan\",\"last_name\":\"Ramirez García\",\"email\":\"Nrestre26@gmail.com\",\"phone_number\":\"3206350374\",\"address\":null,\"creation_date\":\"2023-09-18T07:37:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfpduvkzsisxpa6i4jh/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-18 12:37:04','2023-09-18 12:37:04'),(9295,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1145\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T07:38:17-05:00\",\"transaction\":{\"id\":\"trfpduvkzsisxpa6i4jh\",\"authorization\":\"R03695\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-18T07:37:04-05:00\",\"operation_date\":\"2023-09-18T07:38:16-05:00\",\"description\":\"Pago Mensual academia: Ismael Ramirez Restrepo (1035003577)\",\"error_message\":null,\"order_id\":\"4B04B0DCD2ADE339A3D7CE13252A29D4_K8XYCWNGH9_1695040620.2093\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX5764\",\"holder_name\":\"BRAYAN RAMIREZ G\",\"expiration_year\":\"25\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Brayan\",\"last_name\":\"Ramirez García\",\"email\":\"Nrestre26@gmail.com\",\"phone_number\":\"3206350374\",\"address\":null,\"creation_date\":\"2023-09-18T07:37:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfpduvkzsisxpa6i4jh/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-18 12:38:18','2023-09-18 12:38:18'),(9296,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T07:41:15-05:00\",\"transaction\":{\"id\":\"trfgfpcotlhp09pes57g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T07:40:20-05:00\",\"operation_date\":\"2023-09-18T07:40:20-05:00\",\"description\":\"Pago Mensual academia: jeronimo rivas echeverri (1020318285)\",\"error_message\":null,\"order_id\":\"8133415EA4647B6345849FB38311CF32_5C4DX2F0YE_1695040817.2887\",\"due_date\":\"2023-09-18T19:40:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"john jairo\",\"last_name\":\"rivas lopez\",\"email\":\"jhonj828@hotmail.com\",\"phone_number\":\"3015111086\",\"address\":null,\"creation_date\":\"2023-09-18T07:40:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfgfpcotlhp09pes57g/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 12:41:15','2023-09-18 12:41:15'),(9297,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T06:42:17-06:00\",\"transaction\":{\"id\":\"trfgfpcotlhp09pes57g\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"166735749\",\"creation_date\":\"2023-09-18T07:40:20-06:00\",\"operation_date\":\"2023-09-18T06:42:09-06:00\",\"description\":\"Pago Mensual academia: jeronimo rivas echeverri (1020318285)\",\"error_message\":null,\"order_id\":\"8133415EA4647B6345849FB38311CF32_5C4DX2F0YE_1695040817.2887\",\"due_date\":\"2023-09-18T19:40:20-06:00\",\"amount\":165900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"john jairo\",\"last_name\":\"rivas lopez\",\"email\":\"jhonj828@hotmail.com\",\"phone_number\":\"3015111086\",\"address\":null,\"creation_date\":\"2023-09-18T07:40:20-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 12:42:18','2023-09-18 12:42:18'),(9298,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T08:08:29-05:00\",\"transaction\":{\"id\":\"traeibcspdhxgsmresfl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T08:07:42-05:00\",\"operation_date\":\"2023-09-18T08:07:42-05:00\",\"description\":\"Pago Mensual academia: isaac castañeda bedoya (1033204955)\",\"error_message\":null,\"order_id\":\"75806E8A1C04CAD241934A374C1359C0_XL0Y2AHFUN_1695042458.8384\",\"due_date\":\"2023-09-18T20:07:42-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Castañeda Bedoya\",\"email\":\"emily.30enero@hotmail.com\",\"phone_number\":\"3053371991\",\"address\":null,\"creation_date\":\"2023-09-18T08:07:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traeibcspdhxgsmresfl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 13:08:29','2023-09-18 13:08:29'),(9299,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T07:12:23-06:00\",\"transaction\":{\"id\":\"traeibcspdhxgsmresfl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"166777598\",\"creation_date\":\"2023-09-18T08:07:42-06:00\",\"operation_date\":\"2023-09-18T07:09:31-06:00\",\"description\":\"Pago Mensual academia: isaac castañeda bedoya (1033204955)\",\"error_message\":null,\"order_id\":\"75806E8A1C04CAD241934A374C1359C0_XL0Y2AHFUN_1695042458.8384\",\"due_date\":\"2023-09-18T20:07:42-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Castañeda Bedoya\",\"email\":\"emily.30enero@hotmail.com\",\"phone_number\":\"3053371991\",\"address\":null,\"creation_date\":\"2023-09-18T08:07:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 13:12:24','2023-09-18 13:12:24'),(9300,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T09:00:11-05:00\",\"transaction\":{\"id\":\"trgehgtvz4k4trqbauh9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T08:58:54-05:00\",\"operation_date\":\"2023-09-18T08:58:54-05:00\",\"description\":\"Pago Mensual academia: maximiliano torres monsalve (1020320205)\",\"error_message\":null,\"order_id\":\"AB2481C9F93D0ED3033A3281D865CCB2_UQCSZA9PF6_1695045519.9226\",\"due_date\":\"2023-09-18T20:58:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"javier  hernando\",\"last_name\":\"torres  mejia\",\"email\":\"dulcejesusmio76@hotmail.com\",\"phone_number\":\"3218862987\",\"address\":null,\"creation_date\":\"2023-09-18T08:58:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgehgtvz4k4trqbauh9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 14:00:12','2023-09-18 14:00:12'),(9301,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T09:04:31-05:00\",\"transaction\":{\"id\":\"trgehgtvz4k4trqbauh9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"166888093\",\"creation_date\":\"2023-09-18T08:58:54-05:00\",\"operation_date\":\"2023-09-18T09:04:14-05:00\",\"description\":\"Pago Mensual academia: maximiliano torres monsalve (1020320205)\",\"error_message\":null,\"order_id\":\"AB2481C9F93D0ED3033A3281D865CCB2_UQCSZA9PF6_1695045519.9226\",\"due_date\":\"2023-09-18T20:58:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"javier  hernando\",\"last_name\":\"torres  mejia\",\"email\":\"dulcejesusmio76@hotmail.com\",\"phone_number\":\"3218862987\",\"address\":null,\"creation_date\":\"2023-09-18T08:58:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 14:04:32','2023-09-18 14:04:32'),(9302,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  913\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T09:04:56-05:00\",\"transaction\":{\"id\":\"treuv9idmukmsb38fccc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T09:04:03-05:00\",\"operation_date\":\"2023-09-18T09:04:03-05:00\",\"description\":\"Pago Mensual academia: Federico Velez Cardona (1232799141)\",\"error_message\":null,\"order_id\":\"F3A3A63A79EB1831B0A2776BFD20D838_76XTKVBQL9_1695045837.7673\",\"due_date\":\"2023-09-18T21:04:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edward\",\"last_name\":\"Velez\",\"email\":\"eevelezg2@gmail.com\",\"phone_number\":\"3186083620\",\"address\":null,\"creation_date\":\"2023-09-18T09:04:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treuv9idmukmsb38fccc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 14:04:57','2023-09-18 14:04:57'),(9303,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  796\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T09:06:08-05:00\",\"transaction\":{\"id\":\"treuv9idmukmsb38fccc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"166899741\",\"creation_date\":\"2023-09-18T09:04:03-05:00\",\"operation_date\":\"2023-09-18T09:06:03-05:00\",\"description\":\"Pago Mensual academia: Federico Velez Cardona (1232799141)\",\"error_message\":null,\"order_id\":\"F3A3A63A79EB1831B0A2776BFD20D838_76XTKVBQL9_1695045837.7673\",\"due_date\":\"2023-09-18T21:04:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edward\",\"last_name\":\"Velez\",\"email\":\"eevelezg2@gmail.com\",\"phone_number\":\"3186083620\",\"address\":null,\"creation_date\":\"2023-09-18T09:04:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 14:06:08','2023-09-18 14:06:08'),(9304,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T10:05:41-05:00\",\"transaction\":{\"id\":\"tr3yg0etkgfvrzhsrhxf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T10:04:54-05:00\",\"operation_date\":\"2023-09-18T10:04:54-05:00\",\"description\":\"Pago Mensual academia: Tomás Castrillón Posada (1035004589)\",\"error_message\":null,\"order_id\":\"B4FD1D2CB085390FBBADAE65E07876A7_FZLON86Q5B_1695049491.5882\",\"due_date\":\"2023-09-18T22:04:54-05:00\",\"amount\":149310.00,\"customer\":{\"name\":\"Isabel Cristina\",\"last_name\":\"Posada Durango\",\"email\":\"posadadurango@gmail.com\",\"phone_number\":\"3205837017\",\"address\":null,\"creation_date\":\"2023-09-18T10:04:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3yg0etkgfvrzhsrhxf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 15:05:42','2023-09-18 15:05:42'),(9305,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T09:06:44-06:00\",\"transaction\":{\"id\":\"tr3yg0etkgfvrzhsrhxf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"167061929\",\"creation_date\":\"2023-09-18T10:04:54-06:00\",\"operation_date\":\"2023-09-18T09:06:27-06:00\",\"description\":\"Pago Mensual academia: Tomás Castrillón Posada (1035004589)\",\"error_message\":null,\"order_id\":\"B4FD1D2CB085390FBBADAE65E07876A7_FZLON86Q5B_1695049491.5882\",\"due_date\":\"2023-09-18T22:04:54-06:00\",\"amount\":149310.00,\"customer\":{\"name\":\"Isabel Cristina\",\"last_name\":\"Posada Durango\",\"email\":\"posadadurango@gmail.com\",\"phone_number\":\"3205837017\",\"address\":null,\"creation_date\":\"2023-09-18T10:04:54-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 15:06:44','2023-09-18 15:06:44'),(9306,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T10:06:50-05:00\",\"transaction\":{\"id\":\"trerkdn9mupm2fzyjkaz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T10:06:00-05:00\",\"operation_date\":\"2023-09-18T10:06:00-05:00\",\"description\":\"Pago Mensual academia: Alan David Córdoba Orozco (1032029565)\",\"error_message\":null,\"order_id\":\"A76DA37101DFFABE00E5D636C01719B6_DY9GVAXPHF_1695049547.4714\",\"due_date\":\"2023-09-18T22:06:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Henao\",\"email\":\"jorgehecor@gmail.com\",\"phone_number\":\"3246489931\",\"address\":null,\"creation_date\":\"2023-09-18T10:06:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trerkdn9mupm2fzyjkaz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 15:06:51','2023-09-18 15:06:51'),(9307,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T09:09:31-06:00\",\"transaction\":{\"id\":\"trerkdn9mupm2fzyjkaz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"167065218\",\"creation_date\":\"2023-09-18T10:06:00-06:00\",\"operation_date\":\"2023-09-18T09:08:23-06:00\",\"description\":\"Pago Mensual academia: Alan David Córdoba Orozco (1032029565)\",\"error_message\":null,\"order_id\":\"A76DA37101DFFABE00E5D636C01719B6_DY9GVAXPHF_1695049547.4714\",\"due_date\":\"2023-09-18T22:06:00-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Henao\",\"email\":\"jorgehecor@gmail.com\",\"phone_number\":\"3246489931\",\"address\":null,\"creation_date\":\"2023-09-18T10:06:00-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 15:09:32','2023-09-18 15:09:32'),(9308,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T14:09:18-05:00\",\"transaction\":{\"id\":\"tr26mzqphdzmic9obvkt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-18T14:09:18-05:00\",\"operation_date\":\"2023-09-18T14:09:18-05:00\",\"description\":\"Pago Mensual academia: Agustin Cespedes Escobar (1035014802)\",\"error_message\":null,\"order_id\":\"7D97667A3E056ACAB9AAF653807B4A03_41OGZK7RDH_1695064156.28\",\"amount\":105000.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Cespedes Gutierrez\",\"email\":\"manuelcespedes08@gmail.com\",\"phone_number\":\"3135218151\",\"address\":null,\"creation_date\":\"2023-09-18T14:09:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr26mzqphdzmic9obvkt/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-18 19:09:19','2023-09-18 19:09:19'),(9309,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1158\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T14:11:11-05:00\",\"transaction\":{\"id\":\"tr26mzqphdzmic9obvkt\",\"authorization\":\"4a1bbd\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-18T14:09:18-05:00\",\"operation_date\":\"2023-09-18T14:11:10-05:00\",\"description\":\"Pago Mensual academia: Agustin Cespedes Escobar (1035014802)\",\"error_message\":null,\"order_id\":\"7D97667A3E056ACAB9AAF653807B4A03_41OGZK7RDH_1695064156.28\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"534271XXXXXX5639\",\"holder_name\":\"Manuel Cespedes\",\"expiration_year\":\"29\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CHOICE FINANCIAL GROUP\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Cespedes Gutierrez\",\"email\":\"manuelcespedes08@gmail.com\",\"phone_number\":\"3135218151\",\"address\":null,\"creation_date\":\"2023-09-18T14:09:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr26mzqphdzmic9obvkt/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-18 19:11:12','2023-09-18 19:11:12'),(9310,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T14:35:12-05:00\",\"transaction\":{\"id\":\"trgo7mcwfyjr5pqm1ujk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T14:34:22-05:00\",\"operation_date\":\"2023-09-18T14:34:22-05:00\",\"description\":\"Pago Mensual academia: isaac jaramillo montoya (1036454668)\",\"error_message\":null,\"order_id\":\"7DE32147A4F1055BED9E4FAF3485A84D_2M6OKALVNI_1695065657.0498\",\"due_date\":\"2023-09-19T02:34:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"bibiana\",\"last_name\":\"montoya\",\"email\":\"bibimon1982@gmail.com\",\"phone_number\":\"3017793248\",\"address\":null,\"creation_date\":\"2023-09-18T14:34:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgo7mcwfyjr5pqm1ujk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 19:35:13','2023-09-18 19:35:13'),(9311,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T14:36:21-05:00\",\"transaction\":{\"id\":\"trgo7mcwfyjr5pqm1ujk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"167793786\",\"creation_date\":\"2023-09-18T14:34:22-05:00\",\"operation_date\":\"2023-09-18T14:35:59-05:00\",\"description\":\"Pago Mensual academia: isaac jaramillo montoya (1036454668)\",\"error_message\":null,\"order_id\":\"7DE32147A4F1055BED9E4FAF3485A84D_2M6OKALVNI_1695065657.0498\",\"due_date\":\"2023-09-19T02:34:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"bibiana\",\"last_name\":\"montoya\",\"email\":\"bibimon1982@gmail.com\",\"phone_number\":\"3017793248\",\"address\":null,\"creation_date\":\"2023-09-18T14:34:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 19:36:22','2023-09-18 19:36:22'),(9312,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T15:45:38-05:00\",\"transaction\":{\"id\":\"trtawv0awzuurjqh4k2h\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T15:44:23-05:00\",\"operation_date\":\"2023-09-18T15:44:23-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Serna Gil (1033268035)\",\"error_message\":null,\"order_id\":\"EE0E95249268B86FF2053BEF214BFEDA_A8SH5RB3F1_1695069859.9742\",\"due_date\":\"2023-09-19T03:44:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego\",\"last_name\":\"Serna\",\"email\":\"diegoserna.as@gmail.com\",\"phone_number\":\"3128737141\",\"address\":null,\"creation_date\":\"2023-09-18T15:44:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtawv0awzuurjqh4k2h/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 20:45:39','2023-09-18 20:45:39'),(9313,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T15:47:10-05:00\",\"transaction\":{\"id\":\"trtawv0awzuurjqh4k2h\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"167993160\",\"creation_date\":\"2023-09-18T15:44:23-05:00\",\"operation_date\":\"2023-09-18T15:46:53-05:00\",\"description\":\"Pago Mensual academia: Juan Martín Serna Gil (1033268035)\",\"error_message\":null,\"order_id\":\"EE0E95249268B86FF2053BEF214BFEDA_A8SH5RB3F1_1695069859.9742\",\"due_date\":\"2023-09-19T03:44:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego\",\"last_name\":\"Serna\",\"email\":\"diegoserna.as@gmail.com\",\"phone_number\":\"3128737141\",\"address\":null,\"creation_date\":\"2023-09-18T15:44:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 20:47:10','2023-09-18 20:47:10'),(9314,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  903\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T16:13:34-05:00\",\"transaction\":{\"id\":\"trnw7v2ow0uz8ujfr20o\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T16:11:48-05:00\",\"operation_date\":\"2023-09-18T16:11:48-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"9CFDF10E8FC047A44B08ED031E1F0ED1_E-6508BC77-42_1695071502.3375\",\"due_date\":\"2023-09-19T04:11:48-05:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Juan Diego\",\"last_name\":\"Pizarro Vanegas\",\"email\":\"charmadera5057@gmail.com\",\"phone_number\":\"3138965418\",\"address\":null,\"creation_date\":\"2023-09-18T16:11:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trnw7v2ow0uz8ujfr20o/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 21:13:35','2023-09-18 21:13:35'),(9315,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-18T15:32:54-06:00\",\"transaction\":{\"id\":\"trnw7v2ow0uz8ujfr20o\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-18T16:11:48-06:00\",\"operation_date\":\"2023-09-18T15:32:50-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"9CFDF10E8FC047A44B08ED031E1F0ED1_E-6508BC77-42_1695071502.3375\",\"due_date\":\"2023-09-19T04:11:48-06:00\",\"error_code\":1007,\"amount\":146900.00,\"currency\":\"COP\",\"customer\":{\"name\":\"Juan Diego\",\"last_name\":\"Pizarro Vanegas\",\"email\":\"charmadera5057@gmail.com\",\"phone_number\":\"3138965418\",\"address\":null,\"creation_date\":\"2023-09-18T16:11:48-06:00\",\"external_id\":null,\"clabe\":null},\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-18 21:32:54','2023-09-18 21:32:54'),(9316,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T16:53:00-05:00\",\"transaction\":{\"id\":\"tr3l4e6bpekltyh9r77x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-18T16:52:59-05:00\",\"operation_date\":\"2023-09-18T16:52:59-05:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Taborda (1037632734)\",\"error_message\":null,\"order_id\":\"5463B514E21FBD3FEC3772FBA142A46E_ZO1CJQR2HX_1695073974.2885\",\"amount\":165900.00,\"customer\":{\"name\":\"wendy\",\"last_name\":\"Taborda\",\"email\":\"wendytabor-zap@outlook.com\",\"phone_number\":\"3107673536\",\"address\":null,\"creation_date\":\"2023-09-18T16:52:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3l4e6bpekltyh9r77x/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-18 21:53:00','2023-09-18 21:53:00'),(9317,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T20:11:46-05:00\",\"transaction\":{\"id\":\"trj4synevq1ycqgmslv6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T20:10:44-05:00\",\"operation_date\":\"2023-09-18T20:10:44-05:00\",\"description\":\"Pago Mensual academia: Fernando Andres Neuman Rodríguez (674414)\",\"error_message\":null,\"order_id\":\"A19883FCA95D0E5EC7EE6C94C6C32028_GY940MSNA8_1695085835.9546\",\"due_date\":\"2023-09-19T08:10:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marielisa\",\"last_name\":\"Rodriguez\",\"email\":\"marielisa_rodriguez@hotmail.com\",\"phone_number\":\"3185230619\",\"address\":null,\"creation_date\":\"2023-09-18T20:10:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trj4synevq1ycqgmslv6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 01:11:47','2023-09-19 01:11:47'),(9318,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T20:13:59-05:00\",\"transaction\":{\"id\":\"trj4synevq1ycqgmslv6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"168614890\",\"creation_date\":\"2023-09-18T20:10:44-05:00\",\"operation_date\":\"2023-09-18T20:13:33-05:00\",\"description\":\"Pago Mensual academia: Fernando Andres Neuman Rodríguez (674414)\",\"error_message\":null,\"order_id\":\"A19883FCA95D0E5EC7EE6C94C6C32028_GY940MSNA8_1695085835.9546\",\"due_date\":\"2023-09-19T08:10:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marielisa\",\"last_name\":\"Rodriguez\",\"email\":\"marielisa_rodriguez@hotmail.com\",\"phone_number\":\"3185230619\",\"address\":null,\"creation_date\":\"2023-09-18T20:10:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 01:14:00','2023-09-19 01:14:00'),(9319,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T20:15:28-05:00\",\"transaction\":{\"id\":\"trwvqoaepmsu6zykavwm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T20:14:42-05:00\",\"operation_date\":\"2023-09-18T20:14:42-05:00\",\"description\":\"Pago Mensual academia: Fernando Andres Neuman Rodríguez (674414)\",\"error_message\":null,\"order_id\":\"E951CCD95572A67138F4572C1C7D7EE8_H90QCIJT46_1695086079.3653\",\"due_date\":\"2023-09-19T08:14:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marielisa\",\"last_name\":\"Rodriguez\",\"email\":\"marielisa_rodriguez@hotmail.com\",\"phone_number\":\"3185230619\",\"address\":null,\"creation_date\":\"2023-09-18T20:14:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwvqoaepmsu6zykavwm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 01:15:28','2023-09-19 01:15:28'),(9320,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T20:16:49-05:00\",\"transaction\":{\"id\":\"trwvqoaepmsu6zykavwm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"168622660\",\"creation_date\":\"2023-09-18T20:14:42-05:00\",\"operation_date\":\"2023-09-18T20:16:32-05:00\",\"description\":\"Pago Mensual academia: Fernando Andres Neuman Rodríguez (674414)\",\"error_message\":null,\"order_id\":\"E951CCD95572A67138F4572C1C7D7EE8_H90QCIJT46_1695086079.3653\",\"due_date\":\"2023-09-19T08:14:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marielisa\",\"last_name\":\"Rodriguez\",\"email\":\"marielisa_rodriguez@hotmail.com\",\"phone_number\":\"3185230619\",\"address\":null,\"creation_date\":\"2023-09-18T20:14:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 01:16:50','2023-09-19 01:16:50'),(9321,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-18T21:58:02-05:00\",\"transaction\":{\"id\":\"trt8aoehlwlmsqpquu6d\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-18T21:57:27-05:00\",\"operation_date\":\"2023-09-18T21:57:27-05:00\",\"description\":\"Pago Mensual academia: Simón Garcia Alvarez (1155717983)\",\"error_message\":null,\"order_id\":\"23755432DA68528F115C9633C0D7834F_J9LZ0T62MR_1695092240.5443\",\"due_date\":\"2023-09-19T09:57:27-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Omar Esteban\",\"last_name\":\"Garcia Benavides\",\"email\":\"omarestebangarcia@gmail.com\",\"phone_number\":\"3138083637\",\"address\":null,\"creation_date\":\"2023-09-18T21:57:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trt8aoehlwlmsqpquu6d/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 02:58:02','2023-09-19 02:58:02'),(9322,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-18T21:59:06-05:00\",\"transaction\":{\"id\":\"trt8aoehlwlmsqpquu6d\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"168819333\",\"creation_date\":\"2023-09-18T21:57:27-05:00\",\"operation_date\":\"2023-09-18T21:58:48-05:00\",\"description\":\"Pago Mensual academia: Simón Garcia Alvarez (1155717983)\",\"error_message\":null,\"order_id\":\"23755432DA68528F115C9633C0D7834F_J9LZ0T62MR_1695092240.5443\",\"due_date\":\"2023-09-19T09:57:27-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Omar Esteban\",\"last_name\":\"Garcia Benavides\",\"email\":\"omarestebangarcia@gmail.com\",\"phone_number\":\"3138083637\",\"address\":null,\"creation_date\":\"2023-09-18T21:57:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 02:59:07','2023-09-19 02:59:07'),(9323,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T07:28:59-05:00\",\"transaction\":{\"id\":\"trci06o1qwsshukisiea\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-19T07:28:23-05:00\",\"operation_date\":\"2023-09-19T07:28:23-05:00\",\"description\":\"Pago Mensual academia: Antonio Pelaez Rojas (1038875760)\",\"error_message\":null,\"order_id\":\"FB4C48608CE8825B558CCF07169A3421_W1STAJ5GEX_1695126500.3064\",\"due_date\":\"2023-09-19T19:28:23-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juliana\",\"last_name\":\"Rojas\",\"email\":\"julyrm2011@hotmail.com\",\"phone_number\":\"3225044943\",\"address\":null,\"creation_date\":\"2023-09-19T07:28:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trci06o1qwsshukisiea/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 12:29:00','2023-09-19 12:29:00'),(9324,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  797\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T06:30:25-06:00\",\"transaction\":{\"id\":\"trci06o1qwsshukisiea\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"169051529\",\"creation_date\":\"2023-09-19T07:28:23-06:00\",\"operation_date\":\"2023-09-19T06:29:49-06:00\",\"description\":\"Pago Mensual academia: Antonio Pelaez Rojas (1038875760)\",\"error_message\":null,\"order_id\":\"FB4C48608CE8825B558CCF07169A3421_W1STAJ5GEX_1695126500.3064\",\"due_date\":\"2023-09-19T19:28:23-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juliana\",\"last_name\":\"Rojas\",\"email\":\"julyrm2011@hotmail.com\",\"phone_number\":\"3225044943\",\"address\":null,\"creation_date\":\"2023-09-19T07:28:23-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 12:30:25','2023-09-19 12:30:25'),(9325,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T08:48:42-05:00\",\"transaction\":{\"id\":\"trj8eoesik5yjsnr1wyt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-19T08:48:42-05:00\",\"operation_date\":\"2023-09-19T08:48:42-05:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Taborda (1037632734)\",\"error_message\":null,\"order_id\":\"5463B514E21FBD3FEC3772FBA142A46E_ZO1CJQR2HX_1695131313.7335\",\"amount\":165900.00,\"customer\":{\"name\":\"wendy\",\"last_name\":\"Taborda\",\"email\":\"wendytabor-zap@outlook.com\",\"phone_number\":\"3107673536\",\"address\":null,\"creation_date\":\"2023-09-19T08:48:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trj8eoesik5yjsnr1wyt/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-19 13:48:42','2023-09-19 13:48:42'),(9326,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1142\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T08:49:47-05:00\",\"transaction\":{\"id\":\"trj8eoesik5yjsnr1wyt\",\"authorization\":\"R01138\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-19T08:48:42-05:00\",\"operation_date\":\"2023-09-19T08:49:45-05:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Taborda (1037632734)\",\"error_message\":null,\"order_id\":\"5463B514E21FBD3FEC3772FBA142A46E_ZO1CJQR2HX_1695131313.7335\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"540691XXXXXX5517\",\"holder_name\":\"John e giraldo s\",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"wendy\",\"last_name\":\"Taborda\",\"email\":\"wendytabor-zap@outlook.com\",\"phone_number\":\"3107673536\",\"address\":null,\"creation_date\":\"2023-09-19T08:48:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trj8eoesik5yjsnr1wyt/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-19 13:49:47','2023-09-19 13:49:47'),(9327,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T13:54:28-05:00\",\"transaction\":{\"id\":\"trpzqw0lvtnun6wnffpl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-19T13:54:28-05:00\",\"operation_date\":\"2023-09-19T13:54:28-05:00\",\"description\":\"Pago Inscripción academia: David Giraldo Cuervo (1035005563)\",\"error_message\":null,\"order_id\":\"D01EECA8B24321CD2FE89DD85B9BEB51_OYT2C1V30W_1695149574.3819\",\"amount\":391000.00,\"customer\":{\"name\":\"David\",\"last_name\":\"Giraldo Cuervo\",\"email\":\"dagiraldoc@colegiobenedictino.edu.co\",\"phone_number\":\"3193782685\",\"address\":null,\"creation_date\":\"2023-09-19T13:54:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpzqw0lvtnun6wnffpl/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-19 18:54:29','2023-09-19 18:54:29'),(9328,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  579\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-19T13:56:01-05:00\",\"transaction\":{\"id\":\"trs0arh0l6e6z6ey2qan\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-09-19T13:56:00-05:00\",\"operation_date\":\"2023-09-19T13:56:00-05:00\",\"description\":\"Pago Inscripción academia: David Giraldo Cuervo (1035005563)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"D01EECA8B24321CD2FE89DD85B9BEB51_OYT2C1V30W_1695149574.3819\",\"error_code\":3001,\"amount\":391000.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-19 18:56:01','2023-09-19 18:56:01'),(9329,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  579\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-19T13:57:03-05:00\",\"transaction\":{\"id\":\"trh3fdpgtevpeoe5zdmj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-09-19T13:57:03-05:00\",\"operation_date\":\"2023-09-19T13:57:03-05:00\",\"description\":\"Pago Inscripción academia: David Giraldo Cuervo (1035005563)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"D01EECA8B24321CD2FE89DD85B9BEB51_OYT2C1V30W_1695149574.3819\",\"error_code\":3001,\"amount\":391000.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-19 18:57:04','2023-09-19 18:57:04'),(9330,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T14:00:10-05:00\",\"transaction\":{\"id\":\"trquiz0atah3ahc0mven\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-19T13:58:53-05:00\",\"operation_date\":\"2023-09-19T13:58:53-05:00\",\"description\":\"Pago Inscripción academia: David Giraldo Cuervo (1035005563)\",\"error_message\":null,\"order_id\":\"D01EECA8B24321CD2FE89DD85B9BEB51_OYT2C1V30W_1695149927.1589\",\"due_date\":\"2023-09-20T01:58:53-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Giraldo Cano\",\"email\":\"charliegiraldo118@gmail.com\",\"phone_number\":\"3502045823\",\"address\":null,\"creation_date\":\"2023-09-19T13:58:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trquiz0atah3ahc0mven/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 19:00:10','2023-09-19 19:00:10'),(9331,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  886\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-19T13:03:39-06:00\",\"transaction\":{\"id\":\"trquiz0atah3ahc0mven\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-19T13:58:53-06:00\",\"operation_date\":\"2023-09-19T13:58:53-06:00\",\"description\":\"Pago Inscripción academia: David Giraldo Cuervo (1035005563)\",\"error_message\":\"The payment gateway is not available at the moment, please try again later\",\"order_id\":\"D01EECA8B24321CD2FE89DD85B9BEB51_OYT2C1V30W_1695149927.1589\",\"due_date\":\"2023-09-20T01:58:53-06:00\",\"error_code\":1017,\"amount\":391000.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Giraldo Cano\",\"email\":\"charliegiraldo118@gmail.com\",\"phone_number\":\"3502045823\",\"address\":null,\"creation_date\":\"2023-09-19T13:58:52-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 19:03:40','2023-09-19 19:03:40'),(9332,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  886\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-19T13:06:36-06:00\",\"transaction\":{\"id\":\"trquiz0atah3ahc0mven\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-19T13:58:53-06:00\",\"operation_date\":\"2023-09-19T13:58:53-06:00\",\"description\":\"Pago Inscripción academia: David Giraldo Cuervo (1035005563)\",\"error_message\":\"The payment gateway is not available at the moment, please try again later\",\"order_id\":\"D01EECA8B24321CD2FE89DD85B9BEB51_OYT2C1V30W_1695149927.1589\",\"due_date\":\"2023-09-20T01:58:53-06:00\",\"error_code\":1017,\"amount\":391000.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Giraldo Cano\",\"email\":\"charliegiraldo118@gmail.com\",\"phone_number\":\"3502045823\",\"address\":null,\"creation_date\":\"2023-09-19T13:58:52-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 19:06:37','2023-09-19 19:06:37'),(9333,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T14:53:23-05:00\",\"transaction\":{\"id\":\"trsp7ubddmsm0nk0rgai\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-19T14:51:25-05:00\",\"operation_date\":\"2023-09-19T14:51:25-05:00\",\"description\":\"Pago Mensual academia: samuel duque colorado (1035011994)\",\"error_message\":null,\"order_id\":\"FA8DBBCB682699544E4E8F2212115F73_DEC9706J58_1695153076.3701\",\"due_date\":\"2023-09-20T02:51:25-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CINTHYA\",\"last_name\":\"COLORADO HINCAPIE\",\"email\":\"hincapie17@hotmail.com\",\"phone_number\":\"3052763714\",\"address\":null,\"creation_date\":\"2023-09-19T14:51:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsp7ubddmsm0nk0rgai/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 19:53:24','2023-09-19 19:53:24'),(9334,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T13:57:35-06:00\",\"transaction\":{\"id\":\"trsp7ubddmsm0nk0rgai\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"170058249\",\"creation_date\":\"2023-09-19T14:51:25-06:00\",\"operation_date\":\"2023-09-19T13:54:38-06:00\",\"description\":\"Pago Mensual academia: samuel duque colorado (1035011994)\",\"error_message\":null,\"order_id\":\"FA8DBBCB682699544E4E8F2212115F73_DEC9706J58_1695153076.3701\",\"due_date\":\"2023-09-20T02:51:25-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CINTHYA\",\"last_name\":\"COLORADO HINCAPIE\",\"email\":\"hincapie17@hotmail.com\",\"phone_number\":\"3052763714\",\"address\":null,\"creation_date\":\"2023-09-19T14:51:25-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 19:57:36','2023-09-19 19:57:36'),(9335,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T14:59:26-05:00\",\"transaction\":{\"id\":\"tr78ygof8cyuwjpg40qf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-19T14:58:29-05:00\",\"operation_date\":\"2023-09-19T14:58:29-05:00\",\"description\":\"Pago Mensual academia: samuel duque colorado (1035011994)\",\"error_message\":null,\"order_id\":\"27669F3F141DA48BFE5E6B7AA37C38F9_RWZIBF2JUE_1695153506.9911\",\"due_date\":\"2023-09-20T02:58:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CINTHYA\",\"last_name\":\"COLORADO HINCAPIE\",\"email\":\"hincapie17@hotmail.com\",\"phone_number\":\"3052763714\",\"address\":null,\"creation_date\":\"2023-09-19T14:58:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr78ygof8cyuwjpg40qf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 19:59:26','2023-09-19 19:59:26'),(9336,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T15:00:27-05:00\",\"transaction\":{\"id\":\"tr78ygof8cyuwjpg40qf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"170073295\",\"creation_date\":\"2023-09-19T14:58:29-05:00\",\"operation_date\":\"2023-09-19T15:00:20-05:00\",\"description\":\"Pago Mensual academia: samuel duque colorado (1035011994)\",\"error_message\":null,\"order_id\":\"27669F3F141DA48BFE5E6B7AA37C38F9_RWZIBF2JUE_1695153506.9911\",\"due_date\":\"2023-09-20T02:58:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CINTHYA\",\"last_name\":\"COLORADO HINCAPIE\",\"email\":\"hincapie17@hotmail.com\",\"phone_number\":\"3052763714\",\"address\":null,\"creation_date\":\"2023-09-19T14:58:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 20:00:28','2023-09-19 20:00:28'),(9337,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T14:00:36-06:00\",\"transaction\":{\"id\":\"trsp7ubddmsm0nk0rgai\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"170058249\",\"creation_date\":\"2023-09-19T14:51:25-06:00\",\"operation_date\":\"2023-09-19T13:54:38-06:00\",\"description\":\"Pago Mensual academia: samuel duque colorado (1035011994)\",\"error_message\":null,\"order_id\":\"FA8DBBCB682699544E4E8F2212115F73_DEC9706J58_1695153076.3701\",\"due_date\":\"2023-09-20T02:51:25-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CINTHYA\",\"last_name\":\"COLORADO HINCAPIE\",\"email\":\"hincapie17@hotmail.com\",\"phone_number\":\"3052763714\",\"address\":null,\"creation_date\":\"2023-09-19T14:51:25-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 20:00:36','2023-09-19 20:00:36'),(9338,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T15:01:36-05:00\",\"transaction\":{\"id\":\"trgpeliyt0aigakschie\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-19T15:00:51-05:00\",\"operation_date\":\"2023-09-19T15:00:51-05:00\",\"description\":\"Pago Mensual academia: samuel duque colorado (1035011994)\",\"error_message\":null,\"order_id\":\"350A3797CAEA1668D227C8CBE52C793E_J29DZB8FQL_1695153639.2235\",\"due_date\":\"2023-09-20T03:00:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CINTHYA\",\"last_name\":\"COLORADO HINCAPIE\",\"email\":\"hincapie17@hotmail.com\",\"phone_number\":\"3052763714\",\"address\":null,\"creation_date\":\"2023-09-19T15:00:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgpeliyt0aigakschie/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 20:01:37','2023-09-19 20:01:37'),(9339,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T15:02:36-05:00\",\"transaction\":{\"id\":\"trgpeliyt0aigakschie\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"170078661\",\"creation_date\":\"2023-09-19T15:00:51-05:00\",\"operation_date\":\"2023-09-19T15:02:30-05:00\",\"description\":\"Pago Mensual academia: samuel duque colorado (1035011994)\",\"error_message\":null,\"order_id\":\"350A3797CAEA1668D227C8CBE52C793E_J29DZB8FQL_1695153639.2235\",\"due_date\":\"2023-09-20T03:00:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CINTHYA\",\"last_name\":\"COLORADO HINCAPIE\",\"email\":\"hincapie17@hotmail.com\",\"phone_number\":\"3052763714\",\"address\":null,\"creation_date\":\"2023-09-19T15:00:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 20:02:37','2023-09-19 20:02:37'),(9340,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T14:03:28-06:00\",\"transaction\":{\"id\":\"trsp7ubddmsm0nk0rgai\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"170058249\",\"creation_date\":\"2023-09-19T14:51:25-06:00\",\"operation_date\":\"2023-09-19T13:54:38-06:00\",\"description\":\"Pago Mensual academia: samuel duque colorado (1035011994)\",\"error_message\":null,\"order_id\":\"FA8DBBCB682699544E4E8F2212115F73_DEC9706J58_1695153076.3701\",\"due_date\":\"2023-09-20T02:51:25-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CINTHYA\",\"last_name\":\"COLORADO HINCAPIE\",\"email\":\"hincapie17@hotmail.com\",\"phone_number\":\"3052763714\",\"address\":null,\"creation_date\":\"2023-09-19T14:51:25-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 20:03:28','2023-09-19 20:03:28'),(9341,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T14:06:24-06:00\",\"transaction\":{\"id\":\"trsp7ubddmsm0nk0rgai\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"170058249\",\"creation_date\":\"2023-09-19T14:51:25-06:00\",\"operation_date\":\"2023-09-19T13:54:38-06:00\",\"description\":\"Pago Mensual academia: samuel duque colorado (1035011994)\",\"error_message\":null,\"order_id\":\"FA8DBBCB682699544E4E8F2212115F73_DEC9706J58_1695153076.3701\",\"due_date\":\"2023-09-20T02:51:25-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CINTHYA\",\"last_name\":\"COLORADO HINCAPIE\",\"email\":\"hincapie17@hotmail.com\",\"phone_number\":\"3052763714\",\"address\":null,\"creation_date\":\"2023-09-19T14:51:25-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 20:06:25','2023-09-19 20:06:25'),(9342,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  912\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T15:28:25-05:00\",\"transaction\":{\"id\":\"trkmdzt1maa4dkkcjwcu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-19T15:28:25-05:00\",\"operation_date\":\"2023-09-19T15:28:25-05:00\",\"description\":\"Pago Mensual academia: federico echeverri correa (1038265591)\",\"error_message\":null,\"order_id\":\"0F9CAFD014DB7A619DDB4276AF0D692C_B0JDV3T8M1_1695155296.69\",\"amount\":165900.00,\"customer\":{\"name\":\"carlos arturo\",\"last_name\":\"echeverri rios\",\"email\":\"echeverririoscarlosarturo@gmail.com\",\"phone_number\":\"3148289231\",\"address\":null,\"creation_date\":\"2023-09-19T15:28:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkmdzt1maa4dkkcjwcu/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-19 20:28:26','2023-09-19 20:28:26'),(9343,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  577\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-19T15:31:26-05:00\",\"transaction\":{\"id\":\"trp5uxq9xxavbblibxss\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-09-19T15:31:26-05:00\",\"operation_date\":\"2023-09-19T15:31:26-05:00\",\"description\":\"Pago Mensual academia: federico echeverri correa (1038265591)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"0F9CAFD014DB7A619DDB4276AF0D692C_B0JDV3T8M1_1695155296.69\",\"error_code\":3001,\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-19 20:31:27','2023-09-19 20:31:27'),(9344,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T16:18:35-05:00\",\"transaction\":{\"id\":\"tro0dozk6kymcp18vpde\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-19T16:18:35-05:00\",\"operation_date\":\"2023-09-19T16:18:35-05:00\",\"description\":\"Pago Mensual academia: federico echeverri correa (1038265591)\",\"error_message\":null,\"order_id\":\"0F9CAFD014DB7A619DDB4276AF0D692C_B0JDV3T8M1_1695158297.5505\",\"amount\":165900.00,\"customer\":{\"name\":\"carlos arturo\",\"last_name\":\"echeverri rios\",\"email\":\"echeverririoscarlosarturo@gmail.com\",\"phone_number\":\"3148289231\",\"address\":null,\"creation_date\":\"2023-09-19T16:18:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro0dozk6kymcp18vpde/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-19 21:18:36','2023-09-19 21:18:36'),(9345,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  584\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-19T16:21:14-05:00\",\"transaction\":{\"id\":\"trbck8mi0sz1gjk3wyg8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-09-19T16:21:14-05:00\",\"operation_date\":\"2023-09-19T16:21:14-05:00\",\"description\":\"Pago Mensual academia: federico echeverri correa (1038265591)\",\"error_message\":\"The card doesn\'t have sufficient funds\",\"order_id\":\"0F9CAFD014DB7A619DDB4276AF0D692C_B0JDV3T8M1_1695158297.5505\",\"error_code\":3003,\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-19 21:21:15','2023-09-19 21:21:15'),(9346,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  957\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T16:45:28-05:00\",\"transaction\":{\"id\":\"trex9shznsbpxxx81e5b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-19T16:43:43-05:00\",\"operation_date\":\"2023-09-19T16:43:43-05:00\",\"description\":\"Pago Mensual academia: Joaquín Ignacio González Monsalve (1037663184)\",\"error_message\":null,\"order_id\":\"EC0F40C389AEEF789CE03EB814FACC6C_BQ1T4ZFD85_1695159814.4164\",\"due_date\":\"2023-09-20T04:43:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Joaquín  Ignacio\",\"last_name\":\"González Monsalve\",\"email\":\"luizanamonsalves@gmail.com\",\"phone_number\":\"3004474753\",\"address\":null,\"creation_date\":\"2023-09-19T16:43:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trex9shznsbpxxx81e5b/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 21:45:29','2023-09-19 21:45:29'),(9347,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  840\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T16:47:23-05:00\",\"transaction\":{\"id\":\"trex9shznsbpxxx81e5b\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"170319955\",\"creation_date\":\"2023-09-19T16:43:43-05:00\",\"operation_date\":\"2023-09-19T16:47:03-05:00\",\"description\":\"Pago Mensual academia: Joaquín Ignacio González Monsalve (1037663184)\",\"error_message\":null,\"order_id\":\"EC0F40C389AEEF789CE03EB814FACC6C_BQ1T4ZFD85_1695159814.4164\",\"due_date\":\"2023-09-20T04:43:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Joaquín  Ignacio\",\"last_name\":\"González Monsalve\",\"email\":\"luizanamonsalves@gmail.com\",\"phone_number\":\"3004474753\",\"address\":null,\"creation_date\":\"2023-09-19T16:43:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 21:47:24','2023-09-19 21:47:24'),(9348,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T18:37:54-05:00\",\"transaction\":{\"id\":\"tr3efgypymnp8smchene\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-19T18:36:46-05:00\",\"operation_date\":\"2023-09-19T18:36:46-05:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Mesa Henao (1034925834)\",\"error_message\":null,\"order_id\":\"_1695166603.3557\",\"due_date\":\"2023-09-20T06:36:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Ángel\",\"last_name\":\"mesa henao\",\"email\":\"zuletaesneider22@gmail.com\",\"phone_number\":\"3205407863\",\"address\":null,\"creation_date\":\"2023-09-19T18:36:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3efgypymnp8smchene/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 23:37:54','2023-09-19 23:37:54'),(9349,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-19T17:42:24-06:00\",\"transaction\":{\"id\":\"tr3efgypymnp8smchene\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-19T18:36:46-06:00\",\"operation_date\":\"2023-09-19T17:38:02-06:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Mesa Henao (1034925834)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"_1695166603.3557\",\"due_date\":\"2023-09-20T06:36:46-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Ángel\",\"last_name\":\"mesa henao\",\"email\":\"zuletaesneider22@gmail.com\",\"phone_number\":\"3205407863\",\"address\":null,\"creation_date\":\"2023-09-19T18:36:46-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 23:42:25','2023-09-19 23:42:25'),(9350,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T18:45:31-05:00\",\"transaction\":{\"id\":\"tre0ttyx87vzd606au7c\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-19T18:44:34-05:00\",\"operation_date\":\"2023-09-19T18:44:34-05:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Mesa Henao (1034925834)\",\"error_message\":null,\"order_id\":\"_1695167067.9409\",\"due_date\":\"2023-09-20T06:44:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Ángel\",\"last_name\":\"mesa henao\",\"email\":\"zuletaesneider22@gmail.com\",\"phone_number\":\"3205407863\",\"address\":null,\"creation_date\":\"2023-09-19T18:44:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tre0ttyx87vzd606au7c/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 23:45:31','2023-09-19 23:45:31'),(9351,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  774\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T18:47:51-05:00\",\"transaction\":{\"id\":\"tre0ttyx87vzd606au7c\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"170555555\",\"creation_date\":\"2023-09-19T18:44:34-05:00\",\"operation_date\":\"2023-09-19T18:46:51-05:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Mesa Henao (1034925834)\",\"error_message\":null,\"order_id\":\"_1695167067.9409\",\"due_date\":\"2023-09-20T06:44:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Ángel\",\"last_name\":\"mesa henao\",\"email\":\"zuletaesneider22@gmail.com\",\"phone_number\":\"3205407863\",\"address\":null,\"creation_date\":\"2023-09-19T18:44:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-19 23:47:52','2023-09-19 23:47:52'),(9352,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  892\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T20:53:36-05:00\",\"transaction\":{\"id\":\"trvjj9lkp1yficesavjd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-19T20:53:36-05:00\",\"operation_date\":\"2023-09-19T20:53:36-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Muñoz David (1017942661)\",\"error_message\":null,\"order_id\":\"AD68473A64305626A27C32A5408552D7_B4P5WC83VT_1695174808.4125\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Diego\",\"last_name\":\"Muñoz Aguilar\",\"email\":\"judmunoz1@gmail.com\",\"phone_number\":\"3183875368\",\"address\":null,\"creation_date\":\"2023-09-19T20:53:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvjj9lkp1yficesavjd/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-20 01:53:37','2023-09-20 01:53:37'),(9353,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1138\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T20:54:11-05:00\",\"transaction\":{\"id\":\"trvjj9lkp1yficesavjd\",\"authorization\":\"381633\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-19T20:53:36-05:00\",\"operation_date\":\"2023-09-19T20:54:10-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Muñoz David (1017942661)\",\"error_message\":null,\"order_id\":\"AD68473A64305626A27C32A5408552D7_B4P5WC83VT_1695174808.4125\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"409984XXXXXX4074\",\"holder_name\":\"Juan Muñoz a\",\"expiration_year\":\"27\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":95000.00,\"customer\":{\"name\":\"Juan Diego\",\"last_name\":\"Muñoz Aguilar\",\"email\":\"judmunoz1@gmail.com\",\"phone_number\":\"3183875368\",\"address\":null,\"creation_date\":\"2023-09-19T20:53:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvjj9lkp1yficesavjd/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-20 01:54:12','2023-09-20 01:54:12'),(9354,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  884\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-19T21:19:28-05:00\",\"transaction\":{\"id\":\"trimtvustg1nvhhlz6f6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-19T21:19:28-05:00\",\"operation_date\":\"2023-09-19T21:19:28-05:00\",\"description\":\"Pago Mensual academia: Antonio Luna Muñoz (1036459411)\",\"error_message\":null,\"order_id\":\"9C9F1366EDBAE758A3BB56ECA4388B64_BHY5SETQZJ_1695176357.2207\",\"amount\":165900.00,\"customer\":{\"name\":\"Aparicio\",\"last_name\":\"Luna Toro\",\"email\":\"aluna_215@hotmail.com\",\"phone_number\":\"3014344748\",\"address\":null,\"creation_date\":\"2023-09-19T21:19:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trimtvustg1nvhhlz6f6/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-20 02:19:28','2023-09-20 02:19:28'),(9355,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1140\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-19T21:20:28-05:00\",\"transaction\":{\"id\":\"trimtvustg1nvhhlz6f6\",\"authorization\":\"R02146\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-19T21:19:28-05:00\",\"operation_date\":\"2023-09-19T21:20:27-05:00\",\"description\":\"Pago Mensual academia: Antonio Luna Muñoz (1036459411)\",\"error_message\":null,\"order_id\":\"9C9F1366EDBAE758A3BB56ECA4388B64_BHY5SETQZJ_1695176357.2207\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530372XXXXXX1905\",\"holder_name\":\"Gloria P Muñoz c\",\"expiration_year\":\"27\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Aparicio\",\"last_name\":\"Luna Toro\",\"email\":\"aluna_215@hotmail.com\",\"phone_number\":\"3014344748\",\"address\":null,\"creation_date\":\"2023-09-19T21:19:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trimtvustg1nvhhlz6f6/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-20 02:20:29','2023-09-20 02:20:29'),(9356,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-20T03:19:36-06:00\",\"transaction\":{\"id\":\"tr7dzgdzlp22z3x3cjym\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-18T15:19:59-06:00\",\"operation_date\":\"2023-09-18T15:19:59-06:00\",\"description\":\"Pago Mensual academia: Alejandro Arias Florez (1018251209)\",\"error_message\":null,\"order_id\":\"8430B32B5BAC908E765DF8813D4405C5_NZ9MFRCVU1_1695068397.0867\",\"due_date\":\"2023-09-19T03:19:59-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Francy\",\"last_name\":\"Florez Echeverri\",\"email\":\"floreze062011@gmail.com\",\"phone_number\":\"3163832486\",\"address\":null,\"creation_date\":\"2023-09-18T15:19:59-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7dzgdzlp22z3x3cjym/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 09:19:36','2023-09-20 09:19:36'),(9357,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-20T03:20:11-06:00\",\"transaction\":{\"id\":\"trmth5zpuqxcrboxo5ni\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-18T16:09:22-06:00\",\"operation_date\":\"2023-09-18T16:09:22-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"9CFDF10E8FC047A44B08ED031E1F0ED1_E-6508BC77-42_1695071356.5951\",\"due_date\":\"2023-09-19T04:09:22-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"Juan Diego\",\"last_name\":\"Pizarro Vanegas\",\"email\":\"charmadera5057@gmail.com\",\"phone_number\":\"3138965418\",\"address\":null,\"creation_date\":\"2023-09-18T16:09:22-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trmth5zpuqxcrboxo5ni/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 09:20:11','2023-09-20 09:20:11'),(9358,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  902\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-20T03:20:11-06:00\",\"transaction\":{\"id\":\"trskazsmtmz63hr4u9pa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-18T16:27:58-06:00\",\"operation_date\":\"2023-09-18T16:27:58-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"705F2172834666788607EFBFCA35AFB3_E-6508C06C-11_1695072370.2493\",\"due_date\":\"2023-09-19T04:27:58-06:00\",\"amount\":153200.00,\"customer\":{\"name\":\"Adrian\",\"last_name\":\"Perez Mejia\",\"email\":\"adrianjoseperez03@gmail.com\",\"phone_number\":\"3104948965\",\"address\":null,\"creation_date\":\"2023-09-18T16:27:58-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trskazsmtmz63hr4u9pa/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 09:20:11','2023-09-20 09:20:11'),(9359,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T08:10:23-05:00\",\"transaction\":{\"id\":\"trpkrt4lyt0t9thvy9pw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-20T08:08:35-05:00\",\"operation_date\":\"2023-09-20T08:08:35-05:00\",\"description\":\"Pago Mensual academia: Martin Peña Bustamante (1035006293)\",\"error_message\":null,\"order_id\":\"486C825DB2F776DA72D0B7A791F45B8F_KF5DE43YG1_1695215303.2518\",\"due_date\":\"2023-09-20T20:08:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Peña  Bustamante\",\"email\":\"sandrabustamante5@hotmail.com\",\"phone_number\":\"3216792265\",\"address\":null,\"creation_date\":\"2023-09-20T08:08:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpkrt4lyt0t9thvy9pw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 13:10:24','2023-09-20 13:10:24'),(9360,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-20T08:14:03-05:00\",\"transaction\":{\"id\":\"trpkrt4lyt0t9thvy9pw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"171216567\",\"creation_date\":\"2023-09-20T08:08:35-05:00\",\"operation_date\":\"2023-09-20T08:12:42-05:00\",\"description\":\"Pago Mensual academia: Martin Peña Bustamante (1035006293)\",\"error_message\":null,\"order_id\":\"486C825DB2F776DA72D0B7A791F45B8F_KF5DE43YG1_1695215303.2518\",\"due_date\":\"2023-09-20T20:08:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Peña  Bustamante\",\"email\":\"sandrabustamante5@hotmail.com\",\"phone_number\":\"3216792265\",\"address\":null,\"creation_date\":\"2023-09-20T08:08:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 13:14:04','2023-09-20 13:14:04'),(9361,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T11:07:32-05:00\",\"transaction\":{\"id\":\"trf6gv6tlammiodflds6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-20T11:06:04-05:00\",\"operation_date\":\"2023-09-20T11:06:04-05:00\",\"description\":\"Pago Mensual academia: Felipe Gallego Sepulveda (1020325504)\",\"error_message\":null,\"order_id\":\"02BF86214E264535E3412283E817DEAA_2LIRATXCSB_1695225960.5713\",\"due_date\":\"2023-09-20T23:06:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Felipe\",\"last_name\":\"Gallego Sepulveda\",\"email\":\"yandreas86@hotmail.com\",\"phone_number\":\"3015668969\",\"address\":null,\"creation_date\":\"2023-09-20T11:06:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trf6gv6tlammiodflds6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 16:07:33','2023-09-20 16:07:33'),(9362,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-20T11:09:25-05:00\",\"transaction\":{\"id\":\"trf6gv6tlammiodflds6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"171619314\",\"creation_date\":\"2023-09-20T11:06:04-05:00\",\"operation_date\":\"2023-09-20T11:09:02-05:00\",\"description\":\"Pago Mensual academia: Felipe Gallego Sepulveda (1020325504)\",\"error_message\":null,\"order_id\":\"02BF86214E264535E3412283E817DEAA_2LIRATXCSB_1695225960.5713\",\"due_date\":\"2023-09-20T23:06:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Felipe\",\"last_name\":\"Gallego Sepulveda\",\"email\":\"yandreas86@hotmail.com\",\"phone_number\":\"3015668969\",\"address\":null,\"creation_date\":\"2023-09-20T11:06:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 16:09:26','2023-09-20 16:09:26'),(9363,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T12:53:09-05:00\",\"transaction\":{\"id\":\"trlu3jywus8c1poqru0o\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-20T12:53:09-05:00\",\"operation_date\":\"2023-09-20T12:53:09-05:00\",\"description\":\"Pago Mensual academia: Samuel Zapata ochoa (1036454926)\",\"error_message\":null,\"order_id\":\"E1B90346C92331860B1391257A106BB1_7XD35AK9YR_1695232377.6379\",\"amount\":165900.00,\"customer\":{\"name\":\"Marcela\",\"last_name\":\"Zapata ochoa\",\"email\":\"marcela.zapata@hotmail.com\",\"phone_number\":\"3128351811\",\"address\":null,\"creation_date\":\"2023-09-20T12:53:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlu3jywus8c1poqru0o/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-20 17:53:09','2023-09-20 17:53:09'),(9364,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T13:04:49-05:00\",\"transaction\":{\"id\":\"trbvxa0qvl3udvuevf20\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-20T13:04:48-05:00\",\"operation_date\":\"2023-09-20T13:04:48-05:00\",\"description\":\"Pago Mensual academia: Matías Yepes Ríos (1023595226)\",\"error_message\":null,\"order_id\":\"9565F1CD832C9675C76672081C819342_FX6DAHERKY_1695233080.825\",\"amount\":165900.00,\"customer\":{\"name\":\"Herbert\",\"last_name\":\"Yepes Cartagena\",\"email\":\"herbertyepes@yahoo.es\",\"phone_number\":\"3153123628\",\"address\":null,\"creation_date\":\"2023-09-20T13:04:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbvxa0qvl3udvuevf20/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-20 18:04:49','2023-09-20 18:04:49'),(9365,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1209\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-20T13:06:50-05:00\",\"transaction\":{\"id\":\"trbvxa0qvl3udvuevf20\",\"authorization\":\"R00537\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":12,\"conciliated\":true,\"creation_date\":\"2023-09-20T13:04:48-05:00\",\"operation_date\":\"2023-09-20T13:06:48-05:00\",\"description\":\"Pago Mensual academia: Matías Yepes Ríos (1023595226)\",\"error_message\":null,\"order_id\":\"9565F1CD832C9675C76672081C819342_FX6DAHERKY_1695233080.825\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"521897XXXXXX3957\",\"holder_name\":\"Herbert Yepes\",\"expiration_year\":\"23\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"EXITO\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":12,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Herbert\",\"last_name\":\"Yepes Cartagena\",\"email\":\"herbertyepes@yahoo.es\",\"phone_number\":\"3153123628\",\"address\":null,\"creation_date\":\"2023-09-20T13:04:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbvxa0qvl3udvuevf20/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-20 18:06:50','2023-09-20 18:06:50'),(9366,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T13:25:59-05:00\",\"transaction\":{\"id\":\"trmiptmksy2fdihdgpz0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-20T13:24:35-05:00\",\"operation_date\":\"2023-09-20T13:24:35-05:00\",\"description\":\"Pago Inscripción academia: Pablo Angulo Suárez (1035013017)\",\"error_message\":null,\"order_id\":\"7AC71D433F282034E088473244DF8C02_9JMOFT1065_1695234260.2121\",\"due_date\":\"2023-09-21T01:24:35-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"María Angélica\",\"last_name\":\"Suárez Rodas\",\"email\":\"mangelicasr2@gmail.com\",\"phone_number\":\"3104569577\",\"address\":null,\"creation_date\":\"2023-09-20T13:24:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmiptmksy2fdihdgpz0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 18:26:00','2023-09-20 18:26:00'),(9367,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-20T13:29:02-05:00\",\"transaction\":{\"id\":\"trmiptmksy2fdihdgpz0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"171976698\",\"creation_date\":\"2023-09-20T13:24:35-05:00\",\"operation_date\":\"2023-09-20T13:28:16-05:00\",\"description\":\"Pago Inscripción academia: Pablo Angulo Suárez (1035013017)\",\"error_message\":null,\"order_id\":\"7AC71D433F282034E088473244DF8C02_9JMOFT1065_1695234260.2121\",\"due_date\":\"2023-09-21T01:24:35-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"María Angélica\",\"last_name\":\"Suárez Rodas\",\"email\":\"mangelicasr2@gmail.com\",\"phone_number\":\"3104569577\",\"address\":null,\"creation_date\":\"2023-09-20T13:24:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 18:29:03','2023-09-20 18:29:03'),(9368,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T14:12:19-05:00\",\"transaction\":{\"id\":\"trjgbfec8qyc60ah6bt7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-20T14:11:11-05:00\",\"operation_date\":\"2023-09-20T14:11:11-05:00\",\"description\":\"Pago Mensual academia: Carlos Andrés grizales torrejano (1033184787)\",\"error_message\":null,\"order_id\":\"FC76150735DDE1D2D860AEB77EE2009E_I9F6YMPL3X_1695237068.9156\",\"due_date\":\"2023-09-21T02:11:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yarlenys\",\"last_name\":\"torrejano rios\",\"email\":\"laboratorioyada@gmail.com\",\"phone_number\":\"3103905122\",\"address\":null,\"creation_date\":\"2023-09-20T14:11:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjgbfec8qyc60ah6bt7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 19:12:20','2023-09-20 19:12:20'),(9369,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  863\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-20T13:21:22-06:00\",\"transaction\":{\"id\":\"trjgbfec8qyc60ah6bt7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-20T14:11:11-06:00\",\"operation_date\":\"2023-09-20T13:21:20-06:00\",\"description\":\"Pago Mensual academia: Carlos Andrés grizales torrejano (1033184787)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"FC76150735DDE1D2D860AEB77EE2009E_I9F6YMPL3X_1695237068.9156\",\"due_date\":\"2023-09-21T02:11:11-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"yarlenys\",\"last_name\":\"torrejano rios\",\"email\":\"laboratorioyada@gmail.com\",\"phone_number\":\"3103905122\",\"address\":null,\"creation_date\":\"2023-09-20T14:11:11-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 19:21:22','2023-09-20 19:21:22'),(9370,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  863\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-20T13:24:19-06:00\",\"transaction\":{\"id\":\"trjgbfec8qyc60ah6bt7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-20T14:11:11-06:00\",\"operation_date\":\"2023-09-20T13:21:20-06:00\",\"description\":\"Pago Mensual academia: Carlos Andrés grizales torrejano (1033184787)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"FC76150735DDE1D2D860AEB77EE2009E_I9F6YMPL3X_1695237068.9156\",\"due_date\":\"2023-09-21T02:11:11-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"yarlenys\",\"last_name\":\"torrejano rios\",\"email\":\"laboratorioyada@gmail.com\",\"phone_number\":\"3103905122\",\"address\":null,\"creation_date\":\"2023-09-20T14:11:11-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 19:24:20','2023-09-20 19:24:20'),(9371,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T14:52:27-05:00\",\"transaction\":{\"id\":\"trtm5cxjoc0s4v0xob7x\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-20T14:51:18-05:00\",\"operation_date\":\"2023-09-20T14:51:18-05:00\",\"description\":\"Pago Mensual academia: Martin Muñoz Gonzalez (1021945789)\",\"error_message\":null,\"order_id\":\"46123E470D3226911C48DF4E9867B9DB_N0BPD94Y1Z_1695239473.2323\",\"due_date\":\"2023-09-21T02:51:18-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Natalia \",\"last_name\":\" Gonzalez F\",\"email\":\"ngonzalezfranco@gmail.com\",\"phone_number\":\"3113038003\",\"address\":null,\"creation_date\":\"2023-09-20T14:51:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtm5cxjoc0s4v0xob7x/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 19:52:28','2023-09-20 19:52:28'),(9372,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-20T14:53:52-05:00\",\"transaction\":{\"id\":\"trtm5cxjoc0s4v0xob7x\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"172192206\",\"creation_date\":\"2023-09-20T14:51:18-05:00\",\"operation_date\":\"2023-09-20T14:53:35-05:00\",\"description\":\"Pago Mensual academia: Martin Muñoz Gonzalez (1021945789)\",\"error_message\":null,\"order_id\":\"46123E470D3226911C48DF4E9867B9DB_N0BPD94Y1Z_1695239473.2323\",\"due_date\":\"2023-09-21T02:51:18-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Natalia \",\"last_name\":\" Gonzalez F\",\"email\":\"ngonzalezfranco@gmail.com\",\"phone_number\":\"3113038003\",\"address\":null,\"creation_date\":\"2023-09-20T14:51:18-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 19:53:52','2023-09-20 19:53:52'),(9373,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T15:07:48-05:00\",\"transaction\":{\"id\":\"trq0litr903dlayopvlo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-20T15:07:04-05:00\",\"operation_date\":\"2023-09-20T15:07:04-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"74DB120F0A8E5646EF5A30154E9F6DEB_E-650B50DA-11_1695240416.534\",\"due_date\":\"2023-09-21T03:07:04-05:00\",\"amount\":153200.00,\"customer\":{\"name\":\"Adrian\",\"last_name\":\"Perez Mejia\",\"email\":\"adrianjoseperez03@gmail.com\",\"phone_number\":\"3104948965\",\"address\":null,\"creation_date\":\"2023-09-20T15:07:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trq0litr903dlayopvlo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 20:07:49','2023-09-20 20:07:49'),(9374,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  780\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-20T15:10:02-05:00\",\"transaction\":{\"id\":\"trq0litr903dlayopvlo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"172230740\",\"creation_date\":\"2023-09-20T15:07:04-05:00\",\"operation_date\":\"2023-09-20T00:00:00-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"74DB120F0A8E5646EF5A30154E9F6DEB_E-650B50DA-11_1695240416.534\",\"due_date\":\"2023-09-21T03:07:04-05:00\",\"amount\":153200.00,\"customer\":{\"name\":\"Adrian\",\"last_name\":\"Perez Mejia\",\"email\":\"adrianjoseperez03@gmail.com\",\"phone_number\":\"3104948965\",\"address\":null,\"creation_date\":\"2023-09-20T15:07:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 20:10:03','2023-09-20 20:10:03'),(9375,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T16:31:15-05:00\",\"transaction\":{\"id\":\"trr4ymiv7ynnwd3wkgrq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-20T16:30:01-05:00\",\"operation_date\":\"2023-09-20T16:30:01-05:00\",\"description\":\"Pago Inscripción academia: Ronald Castro Archbold (1194982738)\",\"error_message\":null,\"order_id\":\"455CB2657AAA59E32FAD80CB0B65B9DC_X7D3BI9JCN_1695245396.5759\",\"due_date\":\"2023-09-21T04:30:01-05:00\",\"amount\":301000.00,\"customer\":{\"name\":\"Ronald\",\"last_name\":\"Castro\",\"email\":\"alixonarchbold@hotmail.com\",\"phone_number\":\"3175861755\",\"address\":null,\"creation_date\":\"2023-09-20T16:30:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr4ymiv7ynnwd3wkgrq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 21:31:16','2023-09-20 21:31:16'),(9376,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-20T16:31:55-05:00\",\"transaction\":{\"id\":\"trr4ymiv7ynnwd3wkgrq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"172442646\",\"creation_date\":\"2023-09-20T16:30:01-05:00\",\"operation_date\":\"2023-09-20T16:31:50-05:00\",\"description\":\"Pago Inscripción academia: Ronald Castro Archbold (1194982738)\",\"error_message\":null,\"order_id\":\"455CB2657AAA59E32FAD80CB0B65B9DC_X7D3BI9JCN_1695245396.5759\",\"due_date\":\"2023-09-21T04:30:01-05:00\",\"amount\":301000.00,\"customer\":{\"name\":\"Ronald\",\"last_name\":\"Castro\",\"email\":\"alixonarchbold@hotmail.com\",\"phone_number\":\"3175861755\",\"address\":null,\"creation_date\":\"2023-09-20T16:30:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 21:31:56','2023-09-20 21:31:56'),(9377,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T16:33:21-05:00\",\"transaction\":{\"id\":\"trkqseblt78zmoaqr0vo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-20T16:32:39-05:00\",\"operation_date\":\"2023-09-20T16:32:39-05:00\",\"description\":\"Pago Mensual academia: Ronald Castro Archbold (1194982738)\",\"error_message\":null,\"order_id\":\"BE93CCA187E923AABC702667BA5F0D06_2T1W35ID8K_1695245554.811\",\"due_date\":\"2023-09-21T04:32:39-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Ronald\",\"last_name\":\"Castro\",\"email\":\"alixonarchbold@hotmail.com\",\"phone_number\":\"3175861755\",\"address\":null,\"creation_date\":\"2023-09-20T16:32:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkqseblt78zmoaqr0vo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 21:33:22','2023-09-20 21:33:22'),(9378,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-20T16:34:26-05:00\",\"transaction\":{\"id\":\"trkqseblt78zmoaqr0vo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"172447374\",\"creation_date\":\"2023-09-20T16:32:39-05:00\",\"operation_date\":\"2023-09-20T16:34:18-05:00\",\"description\":\"Pago Mensual academia: Ronald Castro Archbold (1194982738)\",\"error_message\":null,\"order_id\":\"BE93CCA187E923AABC702667BA5F0D06_2T1W35ID8K_1695245554.811\",\"due_date\":\"2023-09-21T04:32:39-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Ronald\",\"last_name\":\"Castro\",\"email\":\"alixonarchbold@hotmail.com\",\"phone_number\":\"3175861755\",\"address\":null,\"creation_date\":\"2023-09-20T16:32:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 21:34:26','2023-09-20 21:34:26'),(9379,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T16:53:45-05:00\",\"transaction\":{\"id\":\"trw4bdejfnwrw220wfbl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-20T16:53:08-05:00\",\"operation_date\":\"2023-09-20T16:53:08-05:00\",\"description\":\"Pago Mensual academia: Carlos Andrés grizales torrejano (1033184787)\",\"error_message\":null,\"order_id\":\"FC76150735DDE1D2D860AEB77EE2009E_I9F6YMPL3X_1695246785.5488\",\"due_date\":\"2023-09-21T04:53:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yarlenys\",\"last_name\":\"torrejano rios\",\"email\":\"laboratorioyada@gmail.com\",\"phone_number\":\"3103905122\",\"address\":null,\"creation_date\":\"2023-09-20T16:53:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trw4bdejfnwrw220wfbl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 21:53:45','2023-09-20 21:53:45'),(9380,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-20T15:54:56-06:00\",\"transaction\":{\"id\":\"trw4bdejfnwrw220wfbl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"172493627\",\"creation_date\":\"2023-09-20T16:53:08-06:00\",\"operation_date\":\"2023-09-20T15:54:52-06:00\",\"description\":\"Pago Mensual academia: Carlos Andrés grizales torrejano (1033184787)\",\"error_message\":null,\"order_id\":\"FC76150735DDE1D2D860AEB77EE2009E_I9F6YMPL3X_1695246785.5488\",\"due_date\":\"2023-09-21T04:53:08-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yarlenys\",\"last_name\":\"torrejano rios\",\"email\":\"laboratorioyada@gmail.com\",\"phone_number\":\"3103905122\",\"address\":null,\"creation_date\":\"2023-09-20T16:53:08-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 21:54:56','2023-09-20 21:54:56'),(9381,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-20T18:10:22-05:00\",\"transaction\":{\"id\":\"trslcwr0th2fvltfjejm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-20T18:09:20-05:00\",\"operation_date\":\"2023-09-20T18:09:20-05:00\",\"description\":\"Pago Mensual academia: Emiliano velez Arteaga (1035006643)\",\"error_message\":null,\"order_id\":\"F7EFA4F864AE9B88D43527F4B14F750F_PB0829HGMR_1695251356.9487\",\"due_date\":\"2023-09-21T06:09:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra\",\"last_name\":\"Arteaga\",\"email\":\"sandraarteagacorrea@hotmail.com\",\"phone_number\":\"3104646458\",\"address\":null,\"creation_date\":\"2023-09-20T18:09:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trslcwr0th2fvltfjejm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 23:10:23','2023-09-20 23:10:23'),(9382,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-20T18:11:47-05:00\",\"transaction\":{\"id\":\"trslcwr0th2fvltfjejm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"172656930\",\"creation_date\":\"2023-09-20T18:09:20-05:00\",\"operation_date\":\"2023-09-20T18:11:36-05:00\",\"description\":\"Pago Mensual academia: Emiliano velez Arteaga (1035006643)\",\"error_message\":null,\"order_id\":\"F7EFA4F864AE9B88D43527F4B14F750F_PB0829HGMR_1695251356.9487\",\"due_date\":\"2023-09-21T06:09:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra\",\"last_name\":\"Arteaga\",\"email\":\"sandraarteagacorrea@hotmail.com\",\"phone_number\":\"3104646458\",\"address\":null,\"creation_date\":\"2023-09-20T18:09:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-20 23:11:48','2023-09-20 23:11:48'),(9383,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-21T10:51:47-05:00\",\"transaction\":{\"id\":\"trdvyxhh84dju2kflklm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-21T10:51:02-05:00\",\"operation_date\":\"2023-09-21T10:51:02-05:00\",\"description\":\"Pago Mensual academia: Alejandro Torres Castañeda (1033199081)\",\"error_message\":null,\"order_id\":\"DA0B1B5BEC71B468BCAB872A64595541_BKHQ9Z8C2T_1695311456.9327\",\"due_date\":\"2023-09-21T22:51:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Torres Castañeda\",\"email\":\"Ladyjohanac@hotmail.com\",\"phone_number\":\"3137707097\",\"address\":null,\"creation_date\":\"2023-09-21T10:51:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdvyxhh84dju2kflklm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 15:51:48','2023-09-21 15:51:48'),(9384,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-21T10:53:38-05:00\",\"transaction\":{\"id\":\"trdvyxhh84dju2kflklm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"173680885\",\"creation_date\":\"2023-09-21T10:51:02-05:00\",\"operation_date\":\"2023-09-21T10:53:35-05:00\",\"description\":\"Pago Mensual academia: Alejandro Torres Castañeda (1033199081)\",\"error_message\":null,\"order_id\":\"DA0B1B5BEC71B468BCAB872A64595541_BKHQ9Z8C2T_1695311456.9327\",\"due_date\":\"2023-09-21T22:51:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Torres Castañeda\",\"email\":\"Ladyjohanac@hotmail.com\",\"phone_number\":\"3137707097\",\"address\":null,\"creation_date\":\"2023-09-21T10:51:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 15:53:38','2023-09-21 15:53:38'),(9385,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-21T11:52:55-05:00\",\"transaction\":{\"id\":\"trxcxty3soxr0xygpjqt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-21T11:52:55-05:00\",\"operation_date\":\"2023-09-21T11:52:55-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Marin Hernandez (1013466462)\",\"error_message\":null,\"order_id\":\"68897F19B106926ED889FE3F7E3D01C9_XTRGECS9N2_1695315172.9332\",\"amount\":165900.00,\"customer\":{\"name\":\"Orlando\",\"last_name\":\"Marin\",\"email\":\"ojmarin@loteriademedellin.com.co\",\"phone_number\":\"3113976050\",\"address\":null,\"creation_date\":\"2023-09-21T11:52:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxcxty3soxr0xygpjqt/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-21 16:52:56','2023-09-21 16:52:56'),(9386,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1148\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-21T11:55:07-05:00\",\"transaction\":{\"id\":\"trxcxty3soxr0xygpjqt\",\"authorization\":\"607329\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-21T11:52:55-05:00\",\"operation_date\":\"2023-09-21T11:55:07-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Marin Hernandez (1013466462)\",\"error_message\":null,\"order_id\":\"68897F19B106926ED889FE3F7E3D01C9_XTRGECS9N2_1695315172.9332\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"554933XXXXXX8571\",\"holder_name\":\"Orlando Marin\",\"expiration_year\":\"26\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Orlando\",\"last_name\":\"Marin\",\"email\":\"ojmarin@loteriademedellin.com.co\",\"phone_number\":\"3113976050\",\"address\":null,\"creation_date\":\"2023-09-21T11:52:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxcxty3soxr0xygpjqt/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-21 16:55:08','2023-09-21 16:55:08'),(9387,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  948\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-21T15:40:44-05:00\",\"transaction\":{\"id\":\"tr2oq57tgewyg53srbtc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-21T15:39:46-05:00\",\"operation_date\":\"2023-09-21T15:39:46-05:00\",\"description\":\"Pago Inscripción academia: Leonardo Andrés Díaz Gómez (1035018131)\",\"error_message\":null,\"order_id\":\"4CA9764C98C203D7BC747CBCE9D9174F_LMZ9JQ3KYE_1695328775.3208\",\"due_date\":\"2023-09-22T03:39:46-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Jaime Andrés\",\"last_name\":\"Díaz Sánchez\",\"email\":\"jaimeandres089@hotmail.com\",\"phone_number\":\"3218210933\",\"address\":null,\"creation_date\":\"2023-09-21T15:39:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2oq57tgewyg53srbtc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 20:40:44','2023-09-21 20:40:44'),(9388,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  831\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-21T15:42:19-05:00\",\"transaction\":{\"id\":\"tr2oq57tgewyg53srbtc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"174323782\",\"creation_date\":\"2023-09-21T15:39:46-05:00\",\"operation_date\":\"2023-09-21T15:41:56-05:00\",\"description\":\"Pago Inscripción academia: Leonardo Andrés Díaz Gómez (1035018131)\",\"error_message\":null,\"order_id\":\"4CA9764C98C203D7BC747CBCE9D9174F_LMZ9JQ3KYE_1695328775.3208\",\"due_date\":\"2023-09-22T03:39:46-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Jaime Andrés\",\"last_name\":\"Díaz Sánchez\",\"email\":\"jaimeandres089@hotmail.com\",\"phone_number\":\"3218210933\",\"address\":null,\"creation_date\":\"2023-09-21T15:39:46-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 20:42:19','2023-09-21 20:42:19'),(9389,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-21T15:47:29-05:00\",\"transaction\":{\"id\":\"trdkl91lwm84aje8b5ml\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-21T15:46:24-05:00\",\"operation_date\":\"2023-09-21T15:46:24-05:00\",\"description\":\"Pago Mensual academia: Leonardo Andrés Díaz Gómez (1035018131)\",\"error_message\":null,\"order_id\":\"2297607A5DB8576D5AD6BBD83696FF60_G9HAORF385_1695329175.6556\",\"due_date\":\"2023-09-22T03:46:24-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jaime Andrés\",\"last_name\":\"Díaz Sánchez\",\"email\":\"jaimeandres089@hotmail.com\",\"phone_number\":\"3218210933\",\"address\":null,\"creation_date\":\"2023-09-21T15:46:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdkl91lwm84aje8b5ml/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 20:47:30','2023-09-21 20:47:30'),(9390,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  864\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-21T15:47:48-05:00\",\"transaction\":{\"id\":\"trdkl91lwm84aje8b5ml\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-21T15:46:24-05:00\",\"operation_date\":\"2023-09-21T15:47:40-05:00\",\"description\":\"Pago Mensual academia: Leonardo Andrés Díaz Gómez (1035018131)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"2297607A5DB8576D5AD6BBD83696FF60_G9HAORF385_1695329175.6556\",\"due_date\":\"2023-09-22T03:46:24-05:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Jaime Andrés\",\"last_name\":\"Díaz Sánchez\",\"email\":\"jaimeandres089@hotmail.com\",\"phone_number\":\"3218210933\",\"address\":null,\"creation_date\":\"2023-09-21T15:46:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 20:47:48','2023-09-21 20:47:48'),(9391,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-21T15:52:00-05:00\",\"transaction\":{\"id\":\"trseaxhoomeefl8h4qsf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-21T15:49:26-05:00\",\"operation_date\":\"2023-09-21T15:49:26-05:00\",\"description\":\"Pago Mensual academia: Leonardo Andrés Díaz Gómez (1035018131)\",\"error_message\":null,\"order_id\":\"2297607A5DB8576D5AD6BBD83696FF60_G9HAORF385_1695329355.6546\",\"due_date\":\"2023-09-22T03:49:26-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jaime Andrés\",\"last_name\":\"Díaz Sánchez\",\"email\":\"jaimeandres089@hotmail.com\",\"phone_number\":\"3218210933\",\"address\":null,\"creation_date\":\"2023-09-21T15:49:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trseaxhoomeefl8h4qsf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 20:52:01','2023-09-21 20:52:01'),(9392,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-21T15:53:04-05:00\",\"transaction\":{\"id\":\"trseaxhoomeefl8h4qsf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"174348470\",\"creation_date\":\"2023-09-21T15:49:26-05:00\",\"operation_date\":\"2023-09-21T15:52:54-05:00\",\"description\":\"Pago Mensual academia: Leonardo Andrés Díaz Gómez (1035018131)\",\"error_message\":null,\"order_id\":\"2297607A5DB8576D5AD6BBD83696FF60_G9HAORF385_1695329355.6546\",\"due_date\":\"2023-09-22T03:49:26-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jaime Andrés\",\"last_name\":\"Díaz Sánchez\",\"email\":\"jaimeandres089@hotmail.com\",\"phone_number\":\"3218210933\",\"address\":null,\"creation_date\":\"2023-09-21T15:49:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 20:53:05','2023-09-21 20:53:05'),(9393,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-21T16:16:56-05:00\",\"transaction\":{\"id\":\"tr6ulrdfxmz1px25dzk1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-21T16:16:09-05:00\",\"operation_date\":\"2023-09-21T16:16:09-05:00\",\"description\":\"Pago Inscripción academia: José David Restrepo Cossio (1038873289)\",\"error_message\":null,\"order_id\":\"B2B7C555125ECACF4BB7678D9DC39A21_DMPATRV4XQ_1695330962.5092\",\"due_date\":\"2023-09-22T04:16:09-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"Jose David\",\"last_name\":\"Restrepo Cossio\",\"email\":\"acossio17@gmail.com\",\"phone_number\":\"3014781011\",\"address\":null,\"creation_date\":\"2023-09-21T16:16:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6ulrdfxmz1px25dzk1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 21:16:56','2023-09-21 21:16:56'),(9394,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-21T16:18:29-05:00\",\"transaction\":{\"id\":\"tr6ulrdfxmz1px25dzk1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"174403514\",\"creation_date\":\"2023-09-21T16:16:09-05:00\",\"operation_date\":\"2023-09-21T16:18:24-05:00\",\"description\":\"Pago Inscripción academia: José David Restrepo Cossio (1038873289)\",\"error_message\":null,\"order_id\":\"B2B7C555125ECACF4BB7678D9DC39A21_DMPATRV4XQ_1695330962.5092\",\"due_date\":\"2023-09-22T04:16:09-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"Jose David\",\"last_name\":\"Restrepo Cossio\",\"email\":\"acossio17@gmail.com\",\"phone_number\":\"3014781011\",\"address\":null,\"creation_date\":\"2023-09-21T16:16:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 21:18:29','2023-09-21 21:18:29'),(9395,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-21T18:30:58-05:00\",\"transaction\":{\"id\":\"tr2cqemdkmautvye2bon\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-21T18:29:57-05:00\",\"operation_date\":\"2023-09-21T18:29:57-05:00\",\"description\":\"Pago Mensual academia: emanuel ortiz sanchez (1020309328)\",\"error_message\":null,\"order_id\":\"FDEEA652A89EC3E970D22A86698AC8C4_79J68L34O1_1695338993.4843\",\"due_date\":\"2023-09-22T06:29:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Sanchez\",\"email\":\"paulaandreasanchez506@gmail.com\",\"phone_number\":\"3003116096\",\"address\":null,\"creation_date\":\"2023-09-21T18:29:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2cqemdkmautvye2bon/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 23:30:59','2023-09-21 23:30:59'),(9396,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-21T18:32:13-05:00\",\"transaction\":{\"id\":\"tr2cqemdkmautvye2bon\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"174656394\",\"creation_date\":\"2023-09-21T18:29:57-05:00\",\"operation_date\":\"2023-09-21T00:00:00-05:00\",\"description\":\"Pago Mensual academia: emanuel ortiz sanchez (1020309328)\",\"error_message\":null,\"order_id\":\"FDEEA652A89EC3E970D22A86698AC8C4_79J68L34O1_1695338993.4843\",\"due_date\":\"2023-09-22T06:29:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Sanchez\",\"email\":\"paulaandreasanchez506@gmail.com\",\"phone_number\":\"3003116096\",\"address\":null,\"creation_date\":\"2023-09-21T18:29:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-21 23:32:13','2023-09-21 23:32:13'),(9397,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  860\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-21T19:45:52-05:00\",\"transaction\":{\"id\":\"trdgwdgn5harrpsnhmf7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-21T19:45:52-05:00\",\"operation_date\":\"2023-09-21T19:45:52-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"57AEEE35C98205091E18D1140E9F38CF_E-650CE3B6-92_1695343547.2608\",\"amount\":173200.00,\"customer\":{\"name\":\"camilo\",\"last_name\":\"barreto cardozo\",\"email\":\"parcenal@gmail.com\",\"phone_number\":\"315 2013102\",\"address\":null,\"creation_date\":\"2023-09-21T19:45:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trdgwdgn5harrpsnhmf7/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-22 00:45:53','2023-09-22 00:45:53'),(9398,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1117\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-21T19:46:36-05:00\",\"transaction\":{\"id\":\"trdgwdgn5harrpsnhmf7\",\"authorization\":\"194635\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-21T19:45:52-05:00\",\"operation_date\":\"2023-09-21T19:46:35-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"57AEEE35C98205091E18D1140E9F38CF_E-650CE3B6-92_1695343547.2608\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"552336XXXXXX0613\",\"holder_name\":\"Camilo a barreto c\",\"expiration_year\":\"28\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"amount\":173200.00,\"customer\":{\"name\":\"camilo\",\"last_name\":\"barreto cardozo\",\"email\":\"parcenal@gmail.com\",\"phone_number\":\"315 2013102\",\"address\":null,\"creation_date\":\"2023-09-21T19:45:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trdgwdgn5harrpsnhmf7/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-22 00:46:36','2023-09-22 00:46:36'),(9399,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  881\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-21T21:06:13-05:00\",\"transaction\":{\"id\":\"trpvdfakkd747zluatlb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-21T21:06:13-05:00\",\"operation_date\":\"2023-09-21T21:06:13-05:00\",\"description\":\"Pago Mensual academia: Joaquin Palacios Calle (1033265847)\",\"error_message\":null,\"order_id\":\"4EE78D4122EF8503FE01CDAD3E9EA4EE_MQS7PNLFGT_1695348370.9398\",\"amount\":132720.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Calle\",\"email\":\"marcal1384@hotmail.com\",\"phone_number\":\"3012635012\",\"address\":null,\"creation_date\":\"2023-09-21T21:06:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpvdfakkd747zluatlb/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-22 02:06:14','2023-09-22 02:06:14'),(9400,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  659\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-21T21:06:52-05:00\",\"transaction\":{\"id\":\"trnyqymekgubzsqafivl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"payments\":3,\"conciliated\":true,\"creation_date\":\"2023-09-21T21:06:52-05:00\",\"operation_date\":\"2023-09-21T21:06:52-05:00\",\"description\":\"Pago Mensual academia: Joaquin Palacios Calle (1033265847)\",\"error_message\":\"The card doesn\'t have sufficient funds\",\"order_id\":\"4EE78D4122EF8503FE01CDAD3E9EA4EE_MQS7PNLFGT_1695348370.9398\",\"error_code\":3003,\"payment_plan\":{\"payments\":3,\"payments_type\":\"without_interest\"},\"amount\":132720.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-22 02:06:53','2023-09-22 02:06:53'),(9401,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  659\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-21T21:07:01-05:00\",\"transaction\":{\"id\":\"trpznkiqdvt0akbmk4ro\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"payments\":3,\"conciliated\":true,\"creation_date\":\"2023-09-21T21:07:01-05:00\",\"operation_date\":\"2023-09-21T21:07:01-05:00\",\"description\":\"Pago Mensual academia: Joaquin Palacios Calle (1033265847)\",\"error_message\":\"The card doesn\'t have sufficient funds\",\"order_id\":\"4EE78D4122EF8503FE01CDAD3E9EA4EE_MQS7PNLFGT_1695348370.9398\",\"error_code\":3003,\"payment_plan\":{\"payments\":3,\"payments_type\":\"without_interest\"},\"amount\":132720.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-22 02:07:02','2023-09-22 02:07:02'),(9402,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  947\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-21T22:06:13-05:00\",\"transaction\":{\"id\":\"trrphcgrdan16xtaaxks\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-21T22:04:21-05:00\",\"operation_date\":\"2023-09-21T22:04:21-05:00\",\"description\":\"Pago Inscripción academia: james giovanny hortua sanchez (1045110696)\",\"error_message\":null,\"order_id\":\"AB24CD2B811EE48A416FC7A833D736A9_ZBSQL7I0ON_1695351849.7776\",\"due_date\":\"2023-09-22T10:04:21-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"James Giovanny\",\"last_name\":\"Hortua Sanchez\",\"email\":\"giovannydevia1@gmail.com\",\"phone_number\":\"3105379576\",\"address\":null,\"creation_date\":\"2023-09-21T22:04:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrphcgrdan16xtaaxks/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 03:06:14','2023-09-22 03:06:14'),(9403,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  830\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-21T22:11:28-05:00\",\"transaction\":{\"id\":\"trrphcgrdan16xtaaxks\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"174984237\",\"creation_date\":\"2023-09-21T22:04:21-05:00\",\"operation_date\":\"2023-09-21T22:10:49-05:00\",\"description\":\"Pago Inscripción academia: james giovanny hortua sanchez (1045110696)\",\"error_message\":null,\"order_id\":\"AB24CD2B811EE48A416FC7A833D736A9_ZBSQL7I0ON_1695351849.7776\",\"due_date\":\"2023-09-22T10:04:21-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"James Giovanny\",\"last_name\":\"Hortua Sanchez\",\"email\":\"giovannydevia1@gmail.com\",\"phone_number\":\"3105379576\",\"address\":null,\"creation_date\":\"2023-09-21T22:04:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 03:11:29','2023-09-22 03:11:29'),(9404,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-22T03:32:27-06:00\",\"transaction\":{\"id\":\"trcnmpdk4gqbdfypuorv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-20T16:02:31-06:00\",\"operation_date\":\"2023-09-20T16:02:31-06:00\",\"description\":\"Pago Mensual academia: Samuel Sepulveda Taborda (1140418367)\",\"error_message\":null,\"order_id\":\"73C14008D55C730E10BB9412A5BE1A16_7YBESLGOFM_1695243740.6507\",\"due_date\":\"2023-09-21T04:02:31-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Guillermo\",\"last_name\":\"Sepulveda\",\"email\":\"memosep45@gmail.com\",\"phone_number\":\"3022239656\",\"address\":null,\"creation_date\":\"2023-09-20T16:02:31-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcnmpdk4gqbdfypuorv/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 09:32:27','2023-09-22 09:32:27'),(9405,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-22T11:23:57-05:00\",\"transaction\":{\"id\":\"trjkel9yb4gojfjgpptg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-22T11:23:11-05:00\",\"operation_date\":\"2023-09-22T11:23:11-05:00\",\"description\":\"Pago Mensual academia: SANTIAGO MOYA ROJAS (1012435034)\",\"error_message\":null,\"order_id\":\"A5FF5D4B0A0D7B3E4D64147037D8C344_FN12TWR8LC_1695399784.2386\",\"due_date\":\"2023-09-22T23:23:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-09-22T11:23:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjkel9yb4gojfjgpptg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 16:23:57','2023-09-22 16:23:57'),(9406,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-22T11:25:27-05:00\",\"transaction\":{\"id\":\"trjkel9yb4gojfjgpptg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"175573357\",\"creation_date\":\"2023-09-22T11:23:11-05:00\",\"operation_date\":\"2023-09-22T11:25:20-05:00\",\"description\":\"Pago Mensual academia: SANTIAGO MOYA ROJAS (1012435034)\",\"error_message\":null,\"order_id\":\"A5FF5D4B0A0D7B3E4D64147037D8C344_FN12TWR8LC_1695399784.2386\",\"due_date\":\"2023-09-22T23:23:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-09-22T11:23:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 16:25:28','2023-09-22 16:25:28'),(9407,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-22T11:27:25-05:00\",\"transaction\":{\"id\":\"trkwyjhibsi8jcgiudpv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-22T11:26:50-05:00\",\"operation_date\":\"2023-09-22T11:26:50-05:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":null,\"order_id\":\"1E8CA836C962598551882E689265C1C5_023TU1YG7A_1695400005.8209\",\"due_date\":\"2023-09-22T23:26:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-09-22T11:26:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkwyjhibsi8jcgiudpv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 16:27:26','2023-09-22 16:27:26'),(9408,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-22T11:29:03-05:00\",\"transaction\":{\"id\":\"trvwbevzxykg0mi39zgd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-22T11:28:15-05:00\",\"operation_date\":\"2023-09-22T11:28:15-05:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":null,\"order_id\":\"1E8CA836C962598551882E689265C1C5_023TU1YG7A_1695400084.2634\",\"due_date\":\"2023-09-22T23:28:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-09-22T11:28:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvwbevzxykg0mi39zgd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 16:29:04','2023-09-22 16:29:04'),(9409,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  829\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-22T11:30:08-05:00\",\"transaction\":{\"id\":\"trvwbevzxykg0mi39zgd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"175584579\",\"creation_date\":\"2023-09-22T11:28:15-05:00\",\"operation_date\":\"2023-09-22T11:30:01-05:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":null,\"order_id\":\"1E8CA836C962598551882E689265C1C5_023TU1YG7A_1695400084.2634\",\"due_date\":\"2023-09-22T23:28:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-09-22T11:28:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 16:30:09','2023-09-22 16:30:09'),(9410,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  868\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-22T10:48:15-06:00\",\"transaction\":{\"id\":\"trkwyjhibsi8jcgiudpv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-22T11:26:50-06:00\",\"operation_date\":\"2023-09-22T10:27:32-06:00\",\"description\":\"Pago Mensual academia: Gabriel Mauricio Moya Rojas (1012415603)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"1E8CA836C962598551882E689265C1C5_023TU1YG7A_1695400005.8209\",\"due_date\":\"2023-09-22T23:26:50-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"CARMEN ELENA\",\"last_name\":\"ROJAS ORTEGA\",\"email\":\"carmenelena.rojas.ortega@gmail.com\",\"phone_number\":\"3214544481\",\"address\":null,\"creation_date\":\"2023-09-22T11:26:50-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 16:48:15','2023-09-22 16:48:15'),(9411,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-22T12:51:38-05:00\",\"transaction\":{\"id\":\"trxsiotx5onfaiv6uv2c\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-22T12:50:49-05:00\",\"operation_date\":\"2023-09-22T12:50:49-05:00\",\"description\":\"Pago Mensual academia: ANTHONY HINCAPIE CARDONA (1155714117)\",\"error_message\":null,\"order_id\":\"DE3C1A733C9C51DE130BC7AE775FD930_ER7V3N4TUS_1695405041.7482\",\"due_date\":\"2023-09-23T00:50:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"YESID\",\"last_name\":\"HINCAPIE CASTRILLON\",\"email\":\"yesidhincapie268@gmail.com\",\"phone_number\":\"3016502735\",\"address\":null,\"creation_date\":\"2023-09-22T12:50:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxsiotx5onfaiv6uv2c/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 17:51:39','2023-09-22 17:51:39'),(9412,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-22T12:53:42-05:00\",\"transaction\":{\"id\":\"trxsiotx5onfaiv6uv2c\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"175752316\",\"creation_date\":\"2023-09-22T12:50:49-05:00\",\"operation_date\":\"2023-09-22T12:53:27-05:00\",\"description\":\"Pago Mensual academia: ANTHONY HINCAPIE CARDONA (1155714117)\",\"error_message\":null,\"order_id\":\"DE3C1A733C9C51DE130BC7AE775FD930_ER7V3N4TUS_1695405041.7482\",\"due_date\":\"2023-09-23T00:50:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"YESID\",\"last_name\":\"HINCAPIE CASTRILLON\",\"email\":\"yesidhincapie268@gmail.com\",\"phone_number\":\"3016502735\",\"address\":null,\"creation_date\":\"2023-09-22T12:50:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 17:53:43','2023-09-22 17:53:43'),(9413,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-22T13:20:12-05:00\",\"transaction\":{\"id\":\"trjuqrmhzzmblszxxcid\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-22T13:19:16-05:00\",\"operation_date\":\"2023-09-22T13:19:16-05:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"B986700C627DB479A4D9460B75DE7222_GZVHF5CP3B_1695406746.1699\",\"due_date\":\"2023-09-23T01:19:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-09-22T13:19:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjuqrmhzzmblszxxcid/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 18:20:13','2023-09-22 18:20:13'),(9414,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-22T12:21:29-06:00\",\"transaction\":{\"id\":\"trjuqrmhzzmblszxxcid\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"175802574\",\"creation_date\":\"2023-09-22T13:19:16-06:00\",\"operation_date\":\"2023-09-22T12:21:13-06:00\",\"description\":\"Pago Mensual academia: joaquin chaverra rincon (1035007671)\",\"error_message\":null,\"order_id\":\"B986700C627DB479A4D9460B75DE7222_GZVHF5CP3B_1695406746.1699\",\"due_date\":\"2023-09-23T01:19:16-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel\",\"last_name\":\"chaverra gomez\",\"email\":\"danielchaverragomez@gmail.com\",\"phone_number\":\"3024107180\",\"address\":null,\"creation_date\":\"2023-09-22T13:19:16-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 18:21:30','2023-09-22 18:21:30'),(9415,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-22T13:59:20-05:00\",\"transaction\":{\"id\":\"tryiezmlsszkv3by8mbx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-22T13:58:09-05:00\",\"operation_date\":\"2023-09-22T13:58:09-05:00\",\"description\":\"Pago Mensual academia: SAMUEL VALENCIA SCALANTE (1033190890)\",\"error_message\":null,\"order_id\":\"6098ED616E715171F0DABAD60A8E5197_F5BK8J9ZX6_1695409084.6162\",\"due_date\":\"2023-09-23T01:58:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Johan Darío\",\"last_name\":\"Valencia López\",\"email\":\"johanvl81@hotmail.com\",\"phone_number\":\"3218419108\",\"address\":null,\"creation_date\":\"2023-09-22T13:58:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryiezmlsszkv3by8mbx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 18:59:21','2023-09-22 18:59:21'),(9416,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-22T14:00:14-05:00\",\"transaction\":{\"id\":\"tryiezmlsszkv3by8mbx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"175872325\",\"creation_date\":\"2023-09-22T13:58:09-05:00\",\"operation_date\":\"2023-09-22T14:00:08-05:00\",\"description\":\"Pago Mensual academia: SAMUEL VALENCIA SCALANTE (1033190890)\",\"error_message\":null,\"order_id\":\"6098ED616E715171F0DABAD60A8E5197_F5BK8J9ZX6_1695409084.6162\",\"due_date\":\"2023-09-23T01:58:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Johan Darío\",\"last_name\":\"Valencia López\",\"email\":\"johanvl81@hotmail.com\",\"phone_number\":\"3218419108\",\"address\":null,\"creation_date\":\"2023-09-22T13:58:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 19:00:14','2023-09-22 19:00:14'),(9417,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-22T15:41:11-05:00\",\"transaction\":{\"id\":\"tro5pa4l10nchxmrqdkm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-22T15:40:24-05:00\",\"operation_date\":\"2023-09-22T15:40:24-05:00\",\"description\":\"Pago Mensual academia: Matias Serna Giraldo (1035013129)\",\"error_message\":null,\"order_id\":\"92FDE850D824C2BA9B563CB6FA4078C3_ERC0TZG31I_1695415221.3868\",\"due_date\":\"2023-09-23T03:40:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Giraldo Franco\",\"email\":\"cristinagirafra@gmail.com\",\"phone_number\":\"3137439487\",\"address\":null,\"creation_date\":\"2023-09-22T15:40:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro5pa4l10nchxmrqdkm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 20:41:12','2023-09-22 20:41:12'),(9418,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-22T15:42:30-05:00\",\"transaction\":{\"id\":\"tro5pa4l10nchxmrqdkm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"176075980\",\"creation_date\":\"2023-09-22T15:40:24-05:00\",\"operation_date\":\"2023-09-22T15:42:21-05:00\",\"description\":\"Pago Mensual academia: Matias Serna Giraldo (1035013129)\",\"error_message\":null,\"order_id\":\"92FDE850D824C2BA9B563CB6FA4078C3_ERC0TZG31I_1695415221.3868\",\"due_date\":\"2023-09-23T03:40:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"cristina\",\"last_name\":\"Giraldo Franco\",\"email\":\"cristinagirafra@gmail.com\",\"phone_number\":\"3137439487\",\"address\":null,\"creation_date\":\"2023-09-22T15:40:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 20:42:31','2023-09-22 20:42:31'),(9419,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-22T18:11:36-05:00\",\"transaction\":{\"id\":\"trzfvshjhjcygzdjpeq8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-22T18:10:42-05:00\",\"operation_date\":\"2023-09-22T18:10:42-05:00\",\"description\":\"Pago Mensual academia: juan pablo velez gomez (1025652882)\",\"error_message\":null,\"order_id\":\"5BF8AAEF51C6E0D363CBE554ACAF3F20_JZ9H12LIWV_1695424239.9133\",\"due_date\":\"2023-09-23T06:10:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan pablo\",\"last_name\":\"velez gomez\",\"email\":\"djpvf@hotmail.com\",\"phone_number\":\"3103899470\",\"address\":null,\"creation_date\":\"2023-09-22T18:10:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzfvshjhjcygzdjpeq8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 23:11:37','2023-09-22 23:11:37'),(9420,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-22T18:12:41-05:00\",\"transaction\":{\"id\":\"trzfvshjhjcygzdjpeq8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"176354290\",\"creation_date\":\"2023-09-22T18:10:42-05:00\",\"operation_date\":\"2023-09-22T18:12:34-05:00\",\"description\":\"Pago Mensual academia: juan pablo velez gomez (1025652882)\",\"error_message\":null,\"order_id\":\"5BF8AAEF51C6E0D363CBE554ACAF3F20_JZ9H12LIWV_1695424239.9133\",\"due_date\":\"2023-09-23T06:10:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan pablo\",\"last_name\":\"velez gomez\",\"email\":\"djpvf@hotmail.com\",\"phone_number\":\"3103899470\",\"address\":null,\"creation_date\":\"2023-09-22T18:10:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 23:12:42','2023-09-22 23:12:42'),(9421,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-22T18:30:14-05:00\",\"transaction\":{\"id\":\"trngh0yzxsbcs3ykwn5y\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-22T18:29:03-05:00\",\"operation_date\":\"2023-09-22T18:29:03-05:00\",\"description\":\"Pago Mensual academia: Alejandro Higuera Arboleda (1035006557)\",\"error_message\":null,\"order_id\":\"E910A63844DF7022C9B194D39B2686BF_7WLN8IJBCX_1695425339.7837\",\"due_date\":\"2023-09-23T06:29:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Isabel Cristina\",\"last_name\":\"Arboleda Álvarez\",\"email\":\"isarboleda@hotmail.com\",\"phone_number\":\"3183386756\",\"address\":null,\"creation_date\":\"2023-09-22T18:29:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trngh0yzxsbcs3ykwn5y/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 23:30:14','2023-09-22 23:30:14'),(9422,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-22T18:32:19-05:00\",\"transaction\":{\"id\":\"trngh0yzxsbcs3ykwn5y\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"176383692\",\"creation_date\":\"2023-09-22T18:29:03-05:00\",\"operation_date\":\"2023-09-22T18:32:05-05:00\",\"description\":\"Pago Mensual academia: Alejandro Higuera Arboleda (1035006557)\",\"error_message\":null,\"order_id\":\"E910A63844DF7022C9B194D39B2686BF_7WLN8IJBCX_1695425339.7837\",\"due_date\":\"2023-09-23T06:29:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Isabel Cristina\",\"last_name\":\"Arboleda Álvarez\",\"email\":\"isarboleda@hotmail.com\",\"phone_number\":\"3183386756\",\"address\":null,\"creation_date\":\"2023-09-22T18:29:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 23:32:20','2023-09-22 23:32:20'),(9423,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-22T18:58:02-05:00\",\"transaction\":{\"id\":\"tr3iarcre0kkfdc3lini\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-22T18:56:36-05:00\",\"operation_date\":\"2023-09-22T18:56:36-05:00\",\"description\":\"Pago Mensual academia: Justin Restrepo Pérez (1033491125)\",\"error_message\":null,\"order_id\":\"84F74CE4511E0C9531AF1182FB636F0F_VNT2R7ZW5I_1695426989.9869\",\"due_date\":\"2023-09-23T06:56:36-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana Andrea\",\"last_name\":\"Restrepo Pérez\",\"email\":\"tatyjus20@hotmail.com\",\"phone_number\":\"3003349879\",\"address\":null,\"creation_date\":\"2023-09-22T18:56:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3iarcre0kkfdc3lini/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-22 23:58:02','2023-09-22 23:58:02'),(9424,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-22T18:00:31-06:00\",\"transaction\":{\"id\":\"tr3iarcre0kkfdc3lini\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"176428158\",\"creation_date\":\"2023-09-22T18:56:36-06:00\",\"operation_date\":\"2023-09-22T18:00:06-06:00\",\"description\":\"Pago Mensual academia: Justin Restrepo Pérez (1033491125)\",\"error_message\":null,\"order_id\":\"84F74CE4511E0C9531AF1182FB636F0F_VNT2R7ZW5I_1695426989.9869\",\"due_date\":\"2023-09-23T06:56:36-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana Andrea\",\"last_name\":\"Restrepo Pérez\",\"email\":\"tatyjus20@hotmail.com\",\"phone_number\":\"3003349879\",\"address\":null,\"creation_date\":\"2023-09-22T18:56:36-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 00:00:32','2023-09-23 00:00:32'),(9425,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T07:48:11-05:00\",\"transaction\":{\"id\":\"trzb4tuv1gykcaxhn1ff\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-23T07:46:54-05:00\",\"operation_date\":\"2023-09-23T07:46:54-05:00\",\"description\":\"Pago Mensual academia: Jacobo Betancur Rivera (1020122857)\",\"error_message\":null,\"order_id\":\"CA8A2D76A5BCC212226417361A5F0740_RGO7INL64Z_1695473207.6826\",\"due_date\":\"2023-09-23T19:46:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"rivera loaiza\",\"email\":\"johanariveraodontologa@hotmail.com\",\"phone_number\":\"3106368849\",\"address\":null,\"creation_date\":\"2023-09-23T07:46:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzb4tuv1gykcaxhn1ff/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 12:48:11','2023-09-23 12:48:11'),(9426,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T07:50:26-05:00\",\"transaction\":{\"id\":\"trzb4tuv1gykcaxhn1ff\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"176842744\",\"creation_date\":\"2023-09-23T07:46:54-05:00\",\"operation_date\":\"2023-09-23T07:49:48-05:00\",\"description\":\"Pago Mensual academia: Jacobo Betancur Rivera (1020122857)\",\"error_message\":null,\"order_id\":\"CA8A2D76A5BCC212226417361A5F0740_RGO7INL64Z_1695473207.6826\",\"due_date\":\"2023-09-23T19:46:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"rivera loaiza\",\"email\":\"johanariveraodontologa@hotmail.com\",\"phone_number\":\"3106368849\",\"address\":null,\"creation_date\":\"2023-09-23T07:46:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 12:50:26','2023-09-23 12:50:26'),(9427,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T08:07:58-05:00\",\"transaction\":{\"id\":\"tr9srmyndklajwkbj5um\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-23T08:07:10-05:00\",\"operation_date\":\"2023-09-23T08:07:10-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Ramirez Gomez (1035986816)\",\"error_message\":null,\"order_id\":\"7A6A6127FF85640EC69691FB0F7CB1A2_DSON9JV1XW_1695474407.5795\",\"due_date\":\"2023-09-23T20:07:10-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Jose\",\"last_name\":\"Ramirez Gomez\",\"email\":\"sebas.181@hotmail.com\",\"phone_number\":\"3178754777\",\"address\":null,\"creation_date\":\"2023-09-23T08:07:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9srmyndklajwkbj5um/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 13:07:58','2023-09-23 13:07:58'),(9428,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T07:09:19-06:00\",\"transaction\":{\"id\":\"tr9srmyndklajwkbj5um\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"176861339\",\"creation_date\":\"2023-09-23T08:07:10-06:00\",\"operation_date\":\"2023-09-23T07:09:09-06:00\",\"description\":\"Pago Mensual academia: Juan Jose Ramirez Gomez (1035986816)\",\"error_message\":null,\"order_id\":\"7A6A6127FF85640EC69691FB0F7CB1A2_DSON9JV1XW_1695474407.5795\",\"due_date\":\"2023-09-23T20:07:10-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Jose\",\"last_name\":\"Ramirez Gomez\",\"email\":\"sebas.181@hotmail.com\",\"phone_number\":\"3178754777\",\"address\":null,\"creation_date\":\"2023-09-23T08:07:10-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 13:09:20','2023-09-23 13:09:20'),(9429,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T08:59:29-05:00\",\"transaction\":{\"id\":\"tri1ojagb323wwqrr2md\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-23T08:53:31-05:00\",\"operation_date\":\"2023-09-23T08:53:31-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"770C0E7E2AF0DB73409AA2431AA8F33E_DIS3O9AJYZ_1695477208.5498\",\"due_date\":\"2023-09-23T20:53:31-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-09-23T08:53:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tri1ojagb323wwqrr2md/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 13:59:30','2023-09-23 13:59:30'),(9430,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T09:00:42-05:00\",\"transaction\":{\"id\":\"tri1ojagb323wwqrr2md\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"176923212\",\"creation_date\":\"2023-09-23T08:53:31-05:00\",\"operation_date\":\"2023-09-23T09:00:32-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"770C0E7E2AF0DB73409AA2431AA8F33E_DIS3O9AJYZ_1695477208.5498\",\"due_date\":\"2023-09-23T20:53:31-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-09-23T08:53:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 14:00:43','2023-09-23 14:00:43'),(9431,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T09:12:55-05:00\",\"transaction\":{\"id\":\"trnjanpeklqdrfz6vkqg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-23T09:01:04-05:00\",\"operation_date\":\"2023-09-23T09:01:04-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"C929F2210333206F417E3862F431776D_RG5DFW31TX_1695477660.3276\",\"due_date\":\"2023-09-23T21:01:04-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-09-23T09:01:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnjanpeklqdrfz6vkqg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 14:12:56','2023-09-23 14:12:56'),(9432,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T09:13:57-05:00\",\"transaction\":{\"id\":\"trnjanpeklqdrfz6vkqg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"176940976\",\"creation_date\":\"2023-09-23T09:01:04-05:00\",\"operation_date\":\"2023-09-23T09:13:47-05:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"C929F2210333206F417E3862F431776D_RG5DFW31TX_1695477660.3276\",\"due_date\":\"2023-09-23T21:01:04-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-09-23T09:01:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 14:13:57','2023-09-23 14:13:57'),(9433,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T09:33:57-05:00\",\"transaction\":{\"id\":\"tr9wpkcwcdyw4mhpfips\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-23T09:33:57-05:00\",\"operation_date\":\"2023-09-23T09:33:57-05:00\",\"description\":\"Pago Mensual academia: matias araque londoño (1027810120)\",\"error_message\":null,\"order_id\":\"0314C9B108B8C39F1CF878ED93FDD5AE_IEUFDY7BWP_1695479633.5432\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel felipe\",\"last_name\":\"araque lopera\",\"email\":\"araque0102@hotmail.com\",\"phone_number\":\"3022191708\",\"address\":null,\"creation_date\":\"2023-09-23T09:33:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9wpkcwcdyw4mhpfips/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 14:33:58','2023-09-23 14:33:58'),(9434,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1151\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T09:35:02-05:00\",\"transaction\":{\"id\":\"tr9wpkcwcdyw4mhpfips\",\"authorization\":\"093501\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-23T09:33:57-05:00\",\"operation_date\":\"2023-09-23T09:35:01-05:00\",\"description\":\"Pago Mensual academia: matias araque londoño (1027810120)\",\"error_message\":null,\"order_id\":\"0314C9B108B8C39F1CF878ED93FDD5AE_IEUFDY7BWP_1695479633.5432\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5829\",\"holder_name\":\"El punto de chupa\",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"daniel felipe\",\"last_name\":\"araque lopera\",\"email\":\"araque0102@hotmail.com\",\"phone_number\":\"3022191708\",\"address\":null,\"creation_date\":\"2023-09-23T09:33:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9wpkcwcdyw4mhpfips/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 14:35:02','2023-09-23 14:35:02'),(9435,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T09:35:35-05:00\",\"transaction\":{\"id\":\"trivcvd5f5eepe192i0o\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-23T09:35:35-05:00\",\"operation_date\":\"2023-09-23T09:35:35-05:00\",\"description\":\"Pago Mensual academia: matias araque londoño (1027810120)\",\"error_message\":null,\"order_id\":\"A4D8E2A7E0D0C102339F97716D2FDFB6_01K3WH86CQ_1695479732.8265\",\"amount\":165900.00,\"customer\":{\"name\":\"daniel felipe\",\"last_name\":\"araque lopera\",\"email\":\"araque0102@hotmail.com\",\"phone_number\":\"3022191708\",\"address\":null,\"creation_date\":\"2023-09-23T09:35:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trivcvd5f5eepe192i0o/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 14:35:35','2023-09-23 14:35:35'),(9436,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1152\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T09:36:16-05:00\",\"transaction\":{\"id\":\"trivcvd5f5eepe192i0o\",\"authorization\":\"093615\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-23T09:35:35-05:00\",\"operation_date\":\"2023-09-23T09:36:15-05:00\",\"description\":\"Pago Mensual academia: matias araque londoño (1027810120)\",\"error_message\":null,\"order_id\":\"A4D8E2A7E0D0C102339F97716D2FDFB6_01K3WH86CQ_1695479732.8265\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5829\",\"holder_name\":\"El punto de chupa \",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"daniel felipe\",\"last_name\":\"araque lopera\",\"email\":\"araque0102@hotmail.com\",\"phone_number\":\"3022191708\",\"address\":null,\"creation_date\":\"2023-09-23T09:35:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trivcvd5f5eepe192i0o/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 14:36:17','2023-09-23 14:36:17'),(9437,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T10:20:13-05:00\",\"transaction\":{\"id\":\"tredrsd0bnyojzimf9pf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-23T10:19:24-05:00\",\"operation_date\":\"2023-09-23T10:19:24-05:00\",\"description\":\"Pago Mensual academia: Martin Molina Melguizo (1023545133)\",\"error_message\":null,\"order_id\":\"3B9BE7E15B46C42911F39A4A9E861022_D1RL69N5QH_1695482357.5303\",\"due_date\":\"2023-09-23T22:19:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Melguizo\",\"email\":\"carolina0506@hotmail.com\",\"phone_number\":\"3014583207\",\"address\":null,\"creation_date\":\"2023-09-23T10:19:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tredrsd0bnyojzimf9pf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 15:20:14','2023-09-23 15:20:14'),(9438,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T10:21:57-05:00\",\"transaction\":{\"id\":\"tredrsd0bnyojzimf9pf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"177041833\",\"creation_date\":\"2023-09-23T10:19:24-05:00\",\"operation_date\":\"2023-09-23T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Martin Molina Melguizo (1023545133)\",\"error_message\":null,\"order_id\":\"3B9BE7E15B46C42911F39A4A9E861022_D1RL69N5QH_1695482357.5303\",\"due_date\":\"2023-09-23T22:19:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Melguizo\",\"email\":\"carolina0506@hotmail.com\",\"phone_number\":\"3014583207\",\"address\":null,\"creation_date\":\"2023-09-23T10:19:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 15:21:58','2023-09-23 15:21:58'),(9439,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T11:16:38-05:00\",\"transaction\":{\"id\":\"trbygbvmw1yovejln2iq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-23T11:16:38-05:00\",\"operation_date\":\"2023-09-23T11:16:38-05:00\",\"description\":\"Pago Mensual academia: emmanuel granda sanchez (1027811176)\",\"error_message\":null,\"order_id\":\"A6A767BBB2E3513233F942E0FF24272C_RS07MBOIZ8_1695485792.8736\",\"amount\":165900.00,\"customer\":{\"name\":\"emmanuel\",\"last_name\":\"granda sanchez\",\"email\":\"francisabogada@gmail.com\",\"phone_number\":\"3108397353\",\"address\":null,\"creation_date\":\"2023-09-23T11:16:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbygbvmw1yovejln2iq/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 16:16:38','2023-09-23 16:16:38'),(9440,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1147\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T11:18:01-05:00\",\"transaction\":{\"id\":\"trbygbvmw1yovejln2iq\",\"authorization\":\"111800\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-23T11:16:38-05:00\",\"operation_date\":\"2023-09-23T11:18:00-05:00\",\"description\":\"Pago Mensual academia: emmanuel granda sanchez (1027811176)\",\"error_message\":null,\"order_id\":\"A6A767BBB2E3513233F942E0FF24272C_RS07MBOIZ8_1695485792.8736\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX2319\",\"holder_name\":\"Diana Sanchez \",\"expiration_year\":\"27\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"emmanuel\",\"last_name\":\"granda sanchez\",\"email\":\"francisabogada@gmail.com\",\"phone_number\":\"3108397353\",\"address\":null,\"creation_date\":\"2023-09-23T11:16:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbygbvmw1yovejln2iq/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 16:18:02','2023-09-23 16:18:02'),(9441,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T12:24:54-05:00\",\"transaction\":{\"id\":\"treizby3hdbic4q1f5ng\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-23T12:23:44-05:00\",\"operation_date\":\"2023-09-23T12:23:44-05:00\",\"description\":\"Pago Mensual academia: Martín Motta Martínez (1077242914)\",\"error_message\":null,\"order_id\":\"46FC943ECD56441056A560BA37D0B9E8_R4X8FANT2Y_1695489819.7588\",\"due_date\":\"2023-09-24T00:23:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Martínez\",\"email\":\"juniorcamilo2003@gmail.com\",\"phone_number\":\"3212119992\",\"address\":null,\"creation_date\":\"2023-09-23T12:23:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treizby3hdbic4q1f5ng/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 17:24:54','2023-09-23 17:24:54'),(9442,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T12:25:58-05:00\",\"transaction\":{\"id\":\"treizby3hdbic4q1f5ng\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"177245420\",\"creation_date\":\"2023-09-23T12:23:44-05:00\",\"operation_date\":\"2023-09-23T12:25:44-05:00\",\"description\":\"Pago Mensual academia: Martín Motta Martínez (1077242914)\",\"error_message\":null,\"order_id\":\"46FC943ECD56441056A560BA37D0B9E8_R4X8FANT2Y_1695489819.7588\",\"due_date\":\"2023-09-24T00:23:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Martínez\",\"email\":\"juniorcamilo2003@gmail.com\",\"phone_number\":\"3212119992\",\"address\":null,\"creation_date\":\"2023-09-23T12:23:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 17:25:59','2023-09-23 17:25:59'),(9443,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T12:49:37-05:00\",\"transaction\":{\"id\":\"tribldwgrgi75hbucgnh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-23T12:49:05-05:00\",\"operation_date\":\"2023-09-23T12:49:05-05:00\",\"description\":\"Pago Mensual academia: Samuel Henao Benitez (1054919379)\",\"error_message\":null,\"order_id\":\"93DA579A65CE84CD1D4C85C2CBB84FC5_J7MPKHOZ9R_1695491339.6445\",\"due_date\":\"2023-09-24T00:49:05-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Samuel\",\"last_name\":\"Henao Benitez\",\"email\":\"isabelcristina.benitez@bbva.com\",\"phone_number\":\"3117315519\",\"address\":null,\"creation_date\":\"2023-09-23T12:49:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tribldwgrgi75hbucgnh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 17:49:37','2023-09-23 17:49:37'),(9444,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T12:51:08-05:00\",\"transaction\":{\"id\":\"tribldwgrgi75hbucgnh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"177281516\",\"creation_date\":\"2023-09-23T12:49:05-05:00\",\"operation_date\":\"2023-09-23T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Samuel Henao Benitez (1054919379)\",\"error_message\":null,\"order_id\":\"93DA579A65CE84CD1D4C85C2CBB84FC5_J7MPKHOZ9R_1695491339.6445\",\"due_date\":\"2023-09-24T00:49:05-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Samuel\",\"last_name\":\"Henao Benitez\",\"email\":\"isabelcristina.benitez@bbva.com\",\"phone_number\":\"3117315519\",\"address\":null,\"creation_date\":\"2023-09-23T12:49:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-23 17:51:09','2023-09-23 17:51:09'),(9445,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T15:57:37-05:00\",\"transaction\":{\"id\":\"tr91pxbt0e2n4m7iuoup\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-23T15:57:37-05:00\",\"operation_date\":\"2023-09-23T15:57:37-05:00\",\"description\":\"Pago Mensual academia: Tomas Lopez Bermudez (1038873541)\",\"error_message\":null,\"order_id\":\"6734FA703F6633AB896EECBDFAD8953A_3KMO9QWDSV_1695502586.9487\",\"amount\":165900.00,\"customer\":{\"name\":\"Sara\",\"last_name\":\"Bermudez\",\"email\":\"saravelez.2010@hotmail.com\",\"phone_number\":\"3148734060\",\"address\":null,\"creation_date\":\"2023-09-23T15:57:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr91pxbt0e2n4m7iuoup/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 20:57:38','2023-09-23 20:57:38'),(9446,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  652\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-23T16:01:29-05:00\",\"transaction\":{\"id\":\"tr37gtsr1vychtxcck4r\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-09-23T16:01:29-05:00\",\"operation_date\":\"2023-09-23T16:01:29-05:00\",\"description\":\"Pago Mensual academia: Tomas Lopez Bermudez (1038873541)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"6734FA703F6633AB896EECBDFAD8953A_3KMO9QWDSV_1695502586.9487\",\"error_code\":3001,\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 21:01:30','2023-09-23 21:01:30'),(9447,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  652\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-23T16:02:40-05:00\",\"transaction\":{\"id\":\"tr0bwxfdatf2zzejiafj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-09-23T16:02:40-05:00\",\"operation_date\":\"2023-09-23T16:02:40-05:00\",\"description\":\"Pago Mensual academia: Tomas Lopez Bermudez (1038873541)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"6734FA703F6633AB896EECBDFAD8953A_3KMO9QWDSV_1695502586.9487\",\"error_code\":3001,\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 21:02:41','2023-09-23 21:02:41'),(9448,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1133\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T16:03:34-05:00\",\"transaction\":{\"id\":\"tr91pxbt0e2n4m7iuoup\",\"authorization\":\"042671\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-23T15:57:37-05:00\",\"operation_date\":\"2023-09-23T16:03:32-05:00\",\"description\":\"Pago Mensual academia: Tomas Lopez Bermudez (1038873541)\",\"error_message\":null,\"order_id\":\"6734FA703F6633AB896EECBDFAD8953A_3KMO9QWDSV_1695502586.9487\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555825XXXXXX3331\",\"holder_name\":\"Sara bermudez velez\",\"expiration_year\":\"31\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NUBANK\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Sara\",\"last_name\":\"Bermudez\",\"email\":\"saravelez.2010@hotmail.com\",\"phone_number\":\"3148734060\",\"address\":null,\"creation_date\":\"2023-09-23T15:57:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr91pxbt0e2n4m7iuoup/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 21:03:35','2023-09-23 21:03:35'),(9449,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-23T16:04:41-05:00\",\"transaction\":{\"id\":\"tru9eobwdu4poujxxwm2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-23T16:04:41-05:00\",\"operation_date\":\"2023-09-23T16:04:41-05:00\",\"description\":\"Pago Mensual academia: Tomas Lopez Bermudez (1038873541)\",\"error_message\":null,\"order_id\":\"88479E328A8633F54E9C667651832FBC_4W962FDN31_1695503040.1057\",\"amount\":165900.00,\"customer\":{\"name\":\"Sara\",\"last_name\":\"Bermudez\",\"email\":\"saravelez.2010@hotmail.com\",\"phone_number\":\"3148734060\",\"address\":null,\"creation_date\":\"2023-09-23T16:04:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru9eobwdu4poujxxwm2/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 21:04:41','2023-09-23 21:04:41'),(9450,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1134\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-23T16:05:45-05:00\",\"transaction\":{\"id\":\"tru9eobwdu4poujxxwm2\",\"authorization\":\"924984\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-23T16:04:41-05:00\",\"operation_date\":\"2023-09-23T16:05:43-05:00\",\"description\":\"Pago Mensual academia: Tomas Lopez Bermudez (1038873541)\",\"error_message\":null,\"order_id\":\"88479E328A8633F54E9C667651832FBC_4W962FDN31_1695503040.1057\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555825XXXXXX3331\",\"holder_name\":\"Sara bermudez velez \",\"expiration_year\":\"31\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NUBANK\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Sara\",\"last_name\":\"Bermudez\",\"email\":\"saravelez.2010@hotmail.com\",\"phone_number\":\"3148734060\",\"address\":null,\"creation_date\":\"2023-09-23T16:04:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru9eobwdu4poujxxwm2/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-23 21:05:46','2023-09-23 21:05:46'),(9451,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-24T10:11:01-05:00\",\"transaction\":{\"id\":\"trtmqq33pfbum6wqnt3v\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-24T10:09:56-05:00\",\"operation_date\":\"2023-09-24T10:09:56-05:00\",\"description\":\"Pago Mensual academia: Jhoseph Giraldo Diosa (1023547927)\",\"error_message\":null,\"order_id\":\"440924C5948E05070663F88E69E8242B_4XGHNPIJOE_1695568193.7837\",\"due_date\":\"2023-09-24T22:09:56-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"hillary\",\"last_name\":\"Diosa\",\"email\":\"hillary.diosa@gmail.com\",\"phone_number\":\"3013299833\",\"address\":null,\"creation_date\":\"2023-09-24T10:09:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtmqq33pfbum6wqnt3v/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-24 15:11:02','2023-09-24 15:11:02'),(9452,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  839\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-24T09:12:32-06:00\",\"transaction\":{\"id\":\"trtmqq33pfbum6wqnt3v\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-24T10:09:56-06:00\",\"operation_date\":\"2023-09-24T09:11:11-06:00\",\"description\":\"Pago Mensual academia: Jhoseph Giraldo Diosa (1023547927)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"440924C5948E05070663F88E69E8242B_4XGHNPIJOE_1695568193.7837\",\"due_date\":\"2023-09-24T22:09:56-06:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"hillary\",\"last_name\":\"Diosa\",\"email\":\"hillary.diosa@gmail.com\",\"phone_number\":\"3013299833\",\"address\":null,\"creation_date\":\"2023-09-24T10:09:56-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-24 15:12:33','2023-09-24 15:12:33'),(9453,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-24T10:13:43-05:00\",\"transaction\":{\"id\":\"trko8djdxjlp4ub5lity\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-24T10:12:48-05:00\",\"operation_date\":\"2023-09-24T10:12:48-05:00\",\"description\":\"Pago Mensual academia: Jhoseph Giraldo Diosa (1023547927)\",\"error_message\":null,\"order_id\":\"440924C5948E05070663F88E69E8242B_4XGHNPIJOE_1695568363.8258\",\"due_date\":\"2023-09-24T22:12:48-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"hillary\",\"last_name\":\"Diosa\",\"email\":\"robinson.02@gmail.com\",\"phone_number\":\"3013299833\",\"address\":null,\"creation_date\":\"2023-09-24T10:12:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trko8djdxjlp4ub5lity/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-24 15:13:44','2023-09-24 15:13:44'),(9454,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-24T09:15:25-06:00\",\"transaction\":{\"id\":\"trko8djdxjlp4ub5lity\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"178115679\",\"creation_date\":\"2023-09-24T10:12:48-06:00\",\"operation_date\":\"2023-09-24T09:14:43-06:00\",\"description\":\"Pago Mensual academia: Jhoseph Giraldo Diosa (1023547927)\",\"error_message\":null,\"order_id\":\"440924C5948E05070663F88E69E8242B_4XGHNPIJOE_1695568363.8258\",\"due_date\":\"2023-09-24T22:12:48-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"hillary\",\"last_name\":\"Diosa\",\"email\":\"robinson.02@gmail.com\",\"phone_number\":\"3013299833\",\"address\":null,\"creation_date\":\"2023-09-24T10:12:48-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-24 15:15:26','2023-09-24 15:15:26'),(9455,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  910\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-24T15:38:18-05:00\",\"transaction\":{\"id\":\"triwsiv1o3g3im9pqlyt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-24T15:37:43-05:00\",\"operation_date\":\"2023-09-24T15:37:43-05:00\",\"description\":\"Pago Mensual academia: Genaro Cisneros (1023634823)\",\"error_message\":null,\"order_id\":\"0777ACFF7C9AB34562699E4E1D05AFFB_YXNDTRPC72_1695587858.9794\",\"due_date\":\"2023-09-25T03:37:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Genaro\",\"last_name\":\"Cisneros\",\"email\":\"cgenaro704@gmail.com\",\"phone_number\":\"3154853110\",\"address\":null,\"creation_date\":\"2023-09-24T15:37:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triwsiv1o3g3im9pqlyt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-24 20:38:19','2023-09-24 20:38:19'),(9456,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  793\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-24T14:42:22-06:00\",\"transaction\":{\"id\":\"triwsiv1o3g3im9pqlyt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"178436544\",\"creation_date\":\"2023-09-24T15:37:43-06:00\",\"operation_date\":\"2023-09-24T14:39:31-06:00\",\"description\":\"Pago Mensual academia: Genaro Cisneros (1023634823)\",\"error_message\":null,\"order_id\":\"0777ACFF7C9AB34562699E4E1D05AFFB_YXNDTRPC72_1695587858.9794\",\"due_date\":\"2023-09-25T03:37:43-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Genaro\",\"last_name\":\"Cisneros\",\"email\":\"cgenaro704@gmail.com\",\"phone_number\":\"3154853110\",\"address\":null,\"creation_date\":\"2023-09-24T15:37:43-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-24 20:42:23','2023-09-24 20:42:23'),(9457,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-24T19:39:34-05:00\",\"transaction\":{\"id\":\"trouqe01nzot4chnbrbo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-24T19:38:56-05:00\",\"operation_date\":\"2023-09-24T19:38:56-05:00\",\"description\":\"Pago Inscripción academia: Agustín Garcia Hurtado (1035009370)\",\"error_message\":null,\"order_id\":\"6195F47DCFF14B8F242AA333CDB2703E_ZU7Q83VYPA_1695602333.6963\",\"due_date\":\"2023-09-25T07:38:56-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Garcia\",\"email\":\"camuelo@hotmail.com\",\"phone_number\":\"3128883453\",\"address\":null,\"creation_date\":\"2023-09-24T19:38:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trouqe01nzot4chnbrbo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 00:39:35','2023-09-25 00:39:35'),(9458,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  847\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-24T18:42:19-06:00\",\"transaction\":{\"id\":\"trouqe01nzot4chnbrbo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-24T19:38:56-06:00\",\"operation_date\":\"2023-09-24T18:39:44-06:00\",\"description\":\"Pago Inscripción academia: Agustín Garcia Hurtado (1035009370)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"6195F47DCFF14B8F242AA333CDB2703E_ZU7Q83VYPA_1695602333.6963\",\"due_date\":\"2023-09-25T07:38:56-06:00\",\"error_code\":1007,\"amount\":286000.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Garcia\",\"email\":\"camuelo@hotmail.com\",\"phone_number\":\"3128883453\",\"address\":null,\"creation_date\":\"2023-09-24T19:38:56-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 00:42:20','2023-09-25 00:42:20'),(9459,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-24T19:43:12-05:00\",\"transaction\":{\"id\":\"trtrbvjtxwvacxnusfdi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-24T19:42:31-05:00\",\"operation_date\":\"2023-09-24T19:42:31-05:00\",\"description\":\"Pago Inscripción academia: Agustín Garcia Hurtado (1035009370)\",\"error_message\":null,\"order_id\":\"6195F47DCFF14B8F242AA333CDB2703E_ZU7Q83VYPA_1695602548.4219\",\"due_date\":\"2023-09-25T07:42:31-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Garcia\",\"email\":\"camuelo@hotmail.com\",\"phone_number\":\"3128883453\",\"address\":null,\"creation_date\":\"2023-09-24T19:42:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtrbvjtxwvacxnusfdi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 00:43:13','2023-09-25 00:43:13'),(9460,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-24T19:44:05-05:00\",\"transaction\":{\"id\":\"trtrbvjtxwvacxnusfdi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"178665659\",\"creation_date\":\"2023-09-24T19:42:31-05:00\",\"operation_date\":\"2023-09-24T19:43:55-05:00\",\"description\":\"Pago Inscripción academia: Agustín Garcia Hurtado (1035009370)\",\"error_message\":null,\"order_id\":\"6195F47DCFF14B8F242AA333CDB2703E_ZU7Q83VYPA_1695602548.4219\",\"due_date\":\"2023-09-25T07:42:31-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Garcia\",\"email\":\"camuelo@hotmail.com\",\"phone_number\":\"3128883453\",\"address\":null,\"creation_date\":\"2023-09-24T19:42:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 00:44:06','2023-09-25 00:44:06'),(9461,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-24T21:18:22-05:00\",\"transaction\":{\"id\":\"tr5eegvqo3zb5dkwzplx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-24T21:17:40-05:00\",\"operation_date\":\"2023-09-24T21:17:40-05:00\",\"description\":\"Pago Mensual academia: Tomás Gallo Montoya (1023549058)\",\"error_message\":null,\"order_id\":\"605AC7E4C16B8A013B4779B81F883E66_MWG19NCD6P_1695608256.7347\",\"due_date\":\"2023-09-25T09:17:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tomás\",\"last_name\":\"Gallo Montoya\",\"email\":\"Yuranymontoya79@gmail.com\",\"phone_number\":\"3116265680\",\"address\":null,\"creation_date\":\"2023-09-24T21:17:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5eegvqo3zb5dkwzplx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 02:18:23','2023-09-25 02:18:23'),(9462,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-24T20:21:20-06:00\",\"transaction\":{\"id\":\"tr5eegvqo3zb5dkwzplx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"178761140\",\"creation_date\":\"2023-09-24T21:17:40-06:00\",\"operation_date\":\"2023-09-24T20:19:08-06:00\",\"description\":\"Pago Mensual academia: Tomás Gallo Montoya (1023549058)\",\"error_message\":null,\"order_id\":\"605AC7E4C16B8A013B4779B81F883E66_MWG19NCD6P_1695608256.7347\",\"due_date\":\"2023-09-25T09:17:40-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tomás\",\"last_name\":\"Gallo Montoya\",\"email\":\"Yuranymontoya79@gmail.com\",\"phone_number\":\"3116265680\",\"address\":null,\"creation_date\":\"2023-09-24T21:17:40-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 02:21:20','2023-09-25 02:21:20'),(9463,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-24T21:40:58-05:00\",\"transaction\":{\"id\":\"trnvjqei1qicfewvlwho\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-24T21:39:13-05:00\",\"operation_date\":\"2023-09-24T21:39:13-05:00\",\"description\":\"Pago Mensual academia: Matias Guzman Montoya (1034995159)\",\"error_message\":null,\"order_id\":\"A655FBE4B8D7439994AA37DDAD80DE56_0S2DO81YJ6_1695609549.7497\",\"due_date\":\"2023-09-25T09:39:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Doris\",\"last_name\":\"Montoya\",\"email\":\"dorismontoya36@gmail.com\",\"phone_number\":\"3163210575\",\"address\":null,\"creation_date\":\"2023-09-24T21:39:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnvjqei1qicfewvlwho/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 02:40:58','2023-09-25 02:40:58'),(9464,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-24T21:42:35-05:00\",\"transaction\":{\"id\":\"trnvjqei1qicfewvlwho\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"178780529\",\"creation_date\":\"2023-09-24T21:39:13-05:00\",\"operation_date\":\"2023-09-24T21:42:25-05:00\",\"description\":\"Pago Mensual academia: Matias Guzman Montoya (1034995159)\",\"error_message\":null,\"order_id\":\"A655FBE4B8D7439994AA37DDAD80DE56_0S2DO81YJ6_1695609549.7497\",\"due_date\":\"2023-09-25T09:39:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Doris\",\"last_name\":\"Montoya\",\"email\":\"dorismontoya36@gmail.com\",\"phone_number\":\"3163210575\",\"address\":null,\"creation_date\":\"2023-09-24T21:39:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 02:42:35','2023-09-25 02:42:35'),(9465,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  951\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-25T02:04:42-06:00\",\"transaction\":{\"id\":\"trytbiqlfriawlfijdu1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-21T21:29:01-06:00\",\"operation_date\":\"2023-09-21T21:29:01-06:00\",\"description\":\"Pago Inscripción academia: james giovanny hortua sanchez (1045110696)\",\"error_message\":null,\"order_id\":\"AB24CD2B811EE48A416FC7A833D736A9_ZBSQL7I0ON_1695349734.8489\",\"due_date\":\"2023-09-22T09:29:01-06:00\",\"amount\":391000.00,\"customer\":{\"name\":\"James Giovanny\",\"last_name\":\"Hortua Sanchez\",\"email\":\"giovannydevia1@gmail.com\",\"phone_number\":\"3105379576\",\"address\":null,\"creation_date\":\"2023-09-21T21:29:01-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trytbiqlfriawlfijdu1/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 08:04:43','2023-09-25 08:04:43'),(9466,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-25T02:04:42-06:00\",\"transaction\":{\"id\":\"trdtmv84ivtuaqthnif6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-21T17:59:49-06:00\",\"operation_date\":\"2023-09-21T17:59:49-06:00\",\"description\":\"Pago Mensual academia: emanuel ortiz sanchez (1020309328)\",\"error_message\":null,\"order_id\":\"FDEEA652A89EC3E970D22A86698AC8C4_79J68L34O1_1695337185.0528\",\"due_date\":\"2023-09-22T05:59:49-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Sanchez\",\"email\":\"paulaandreasanchez506@gmail.com\",\"phone_number\":\"3003116096\",\"address\":null,\"creation_date\":\"2023-09-21T17:59:49-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdtmv84ivtuaqthnif6/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 08:04:43','2023-09-25 08:04:43'),(9467,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-25T07:14:40-05:00\",\"transaction\":{\"id\":\"tr8dto5vqrghcc09ekfk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-25T07:13:39-05:00\",\"operation_date\":\"2023-09-25T07:13:39-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Escobar Gil (1027664277)\",\"error_message\":null,\"order_id\":\"109F91266EF89CC3690079B28ABFE9A3_FQU8KB1DYC_1695644011.7186\",\"due_date\":\"2023-09-25T19:13:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego Luis\",\"last_name\":\"Escobar Mejia\",\"email\":\"dilui333@gmail.com\",\"phone_number\":\"3113446018\",\"address\":null,\"creation_date\":\"2023-09-25T07:13:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8dto5vqrghcc09ekfk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 12:14:41','2023-09-25 12:14:41'),(9468,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-25T07:15:51-05:00\",\"transaction\":{\"id\":\"tr8dto5vqrghcc09ekfk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"178931466\",\"creation_date\":\"2023-09-25T07:13:39-05:00\",\"operation_date\":\"2023-09-25T07:15:26-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Escobar Gil (1027664277)\",\"error_message\":null,\"order_id\":\"109F91266EF89CC3690079B28ABFE9A3_FQU8KB1DYC_1695644011.7186\",\"due_date\":\"2023-09-25T19:13:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diego Luis\",\"last_name\":\"Escobar Mejia\",\"email\":\"dilui333@gmail.com\",\"phone_number\":\"3113446018\",\"address\":null,\"creation_date\":\"2023-09-25T07:13:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 12:15:51','2023-09-25 12:15:51'),(9469,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-25T09:34:13-05:00\",\"transaction\":{\"id\":\"trqontymcpyimvm8xyx2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-25T09:33:23-05:00\",\"operation_date\":\"2023-09-25T09:33:23-05:00\",\"description\":\"Pago Mensual academia: Martin Loaiza Ramirez (1035006356)\",\"error_message\":null,\"order_id\":\"810DFBBEBB17302018AE903E9CB7A483_73P0OUKRTF_1695652400.0362\",\"due_date\":\"2023-09-25T21:33:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Grace Julieta\",\"last_name\":\"Ramirez\",\"email\":\"julietamrr@hotmail.com\",\"phone_number\":\"3143319536\",\"address\":null,\"creation_date\":\"2023-09-25T09:33:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqontymcpyimvm8xyx2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 14:34:14','2023-09-25 14:34:14'),(9470,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-25T09:35:08-05:00\",\"transaction\":{\"id\":\"trqontymcpyimvm8xyx2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"179160675\",\"creation_date\":\"2023-09-25T09:33:23-05:00\",\"operation_date\":\"2023-09-25T09:35:02-05:00\",\"description\":\"Pago Mensual academia: Martin Loaiza Ramirez (1035006356)\",\"error_message\":null,\"order_id\":\"810DFBBEBB17302018AE903E9CB7A483_73P0OUKRTF_1695652400.0362\",\"due_date\":\"2023-09-25T21:33:23-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Grace Julieta\",\"last_name\":\"Ramirez\",\"email\":\"julietamrr@hotmail.com\",\"phone_number\":\"3143319536\",\"address\":null,\"creation_date\":\"2023-09-25T09:33:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 14:35:08','2023-09-25 14:35:08'),(9471,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-25T13:25:23-05:00\",\"transaction\":{\"id\":\"trhjaysccngfiw69qvba\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-25T13:24:38-05:00\",\"operation_date\":\"2023-09-25T13:24:38-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN GUEVARA AGUDELO (1035008731)\",\"error_message\":null,\"order_id\":\"2D199F9ABD28EA425D262558BDE5CF22_7XZ5G6H03J_1695666264.9351\",\"due_date\":\"2023-09-26T01:24:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Guevara\",\"email\":\"jaguevara726@hotmail.com\",\"phone_number\":\"3146829322\",\"address\":null,\"creation_date\":\"2023-09-25T13:24:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhjaysccngfiw69qvba/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 18:25:23','2023-09-25 18:25:23'),(9472,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-25T13:27:03-05:00\",\"transaction\":{\"id\":\"trhjaysccngfiw69qvba\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"179745831\",\"creation_date\":\"2023-09-25T13:24:38-05:00\",\"operation_date\":\"2023-09-25T13:26:50-05:00\",\"description\":\"Pago Mensual academia: SEBASTIAN GUEVARA AGUDELO (1035008731)\",\"error_message\":null,\"order_id\":\"2D199F9ABD28EA425D262558BDE5CF22_7XZ5G6H03J_1695666264.9351\",\"due_date\":\"2023-09-26T01:24:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Guevara\",\"email\":\"jaguevara726@hotmail.com\",\"phone_number\":\"3146829322\",\"address\":null,\"creation_date\":\"2023-09-25T13:24:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 18:27:04','2023-09-25 18:27:04'),(9473,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-25T15:19:38-05:00\",\"transaction\":{\"id\":\"trydecoqcbahpruenign\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-25T15:18:56-05:00\",\"operation_date\":\"2023-09-25T15:18:56-05:00\",\"description\":\"Pago Mensual academia: Matias Alvarez Montes (1020326486)\",\"error_message\":null,\"order_id\":\"8B5C8441A8FF8E151B191C53C1842A38_NM6KD9IPFH_1695673132.9004\",\"due_date\":\"2023-09-26T03:18:56-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Silvana\",\"last_name\":\"Montes Gonzalez\",\"email\":\"silvana_m03@hotmail.com\",\"phone_number\":\"3148124200\",\"address\":null,\"creation_date\":\"2023-09-25T15:18:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trydecoqcbahpruenign/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 20:19:39','2023-09-25 20:19:39'),(9474,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-25T15:20:58-05:00\",\"transaction\":{\"id\":\"trydecoqcbahpruenign\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"180041251\",\"creation_date\":\"2023-09-25T15:18:56-05:00\",\"operation_date\":\"2023-09-25T15:20:39-05:00\",\"description\":\"Pago Mensual academia: Matias Alvarez Montes (1020326486)\",\"error_message\":null,\"order_id\":\"8B5C8441A8FF8E151B191C53C1842A38_NM6KD9IPFH_1695673132.9004\",\"due_date\":\"2023-09-26T03:18:56-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Silvana\",\"last_name\":\"Montes Gonzalez\",\"email\":\"silvana_m03@hotmail.com\",\"phone_number\":\"3148124200\",\"address\":null,\"creation_date\":\"2023-09-25T15:18:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 20:20:59','2023-09-25 20:20:59'),(9475,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  913\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-25T16:35:22-05:00\",\"transaction\":{\"id\":\"trckllltshvq6vf3av1y\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-25T16:34:15-05:00\",\"operation_date\":\"2023-09-25T16:34:15-05:00\",\"description\":\"Pago Mensual academia: Thiago Rodriguez Yepes (1036461453)\",\"error_message\":null,\"order_id\":\"9F60AB2B55468F104055B16DF8F69E81_R58D1LXKWY_1695677643.4393\",\"due_date\":\"2023-09-26T04:34:15-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Yepes\",\"email\":\"dcyepestoro@gmail.com\",\"phone_number\":\"3002899212\",\"address\":null,\"creation_date\":\"2023-09-25T16:34:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trckllltshvq6vf3av1y/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 21:35:22','2023-09-25 21:35:22'),(9476,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  796\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-25T15:36:31-06:00\",\"transaction\":{\"id\":\"trckllltshvq6vf3av1y\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"180252481\",\"creation_date\":\"2023-09-25T16:34:15-06:00\",\"operation_date\":\"2023-09-25T15:36:19-06:00\",\"description\":\"Pago Mensual academia: Thiago Rodriguez Yepes (1036461453)\",\"error_message\":null,\"order_id\":\"9F60AB2B55468F104055B16DF8F69E81_R58D1LXKWY_1695677643.4393\",\"due_date\":\"2023-09-26T04:34:15-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Yepes\",\"email\":\"dcyepestoro@gmail.com\",\"phone_number\":\"3002899212\",\"address\":null,\"creation_date\":\"2023-09-25T16:34:15-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-25 21:36:32','2023-09-25 21:36:32'),(9477,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-25T20:03:14-05:00\",\"transaction\":{\"id\":\"trlstfg0vvnqgzf66spw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-25T20:02:31-05:00\",\"operation_date\":\"2023-09-25T20:02:31-05:00\",\"description\":\"Pago Mensual academia: Martín Valencia Duque (1155717395)\",\"error_message\":null,\"order_id\":\"BD22C2EF9E6F0FA97825C6BE879F8FA4_EQRJL0CI3K_1695690149.3702\",\"due_date\":\"2023-09-26T08:02:31-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martín\",\"last_name\":\"Valencia Duque\",\"email\":\"jaime.valencia@tigo.com.co\",\"phone_number\":\"3004380006\",\"address\":null,\"creation_date\":\"2023-09-25T20:02:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlstfg0vvnqgzf66spw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 01:03:14','2023-09-26 01:03:14'),(9478,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-25T20:04:33-05:00\",\"transaction\":{\"id\":\"trlstfg0vvnqgzf66spw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"180715581\",\"creation_date\":\"2023-09-25T20:02:31-05:00\",\"operation_date\":\"2023-09-25T20:04:04-05:00\",\"description\":\"Pago Mensual academia: Martín Valencia Duque (1155717395)\",\"error_message\":null,\"order_id\":\"BD22C2EF9E6F0FA97825C6BE879F8FA4_EQRJL0CI3K_1695690149.3702\",\"due_date\":\"2023-09-26T08:02:31-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martín\",\"last_name\":\"Valencia Duque\",\"email\":\"jaime.valencia@tigo.com.co\",\"phone_number\":\"3004380006\",\"address\":null,\"creation_date\":\"2023-09-25T20:02:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 01:04:34','2023-09-26 01:04:34'),(9479,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  952\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-25T21:24:25-05:00\",\"transaction\":{\"id\":\"trsedzpntvyfg9rjwnqh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-25T21:22:24-05:00\",\"operation_date\":\"2023-09-25T21:22:24-05:00\",\"description\":\"Pago Inscripción academia: Diego Alejandro Hernández Giraldo (1105381416)\",\"error_message\":null,\"order_id\":\"18A9042B3FC5B02FE3D57FEA87D6992F_ESDFQL534T_1695694939.8675\",\"due_date\":\"2023-09-26T09:22:24-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"DIEGO ALEJANDRO\",\"last_name\":\"HERNANDEZ GIRALDO\",\"email\":\"albaluzgm1@gmail.com\",\"phone_number\":\"3104194641\",\"address\":null,\"creation_date\":\"2023-09-25T21:22:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsedzpntvyfg9rjwnqh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 02:24:25','2023-09-26 02:24:25'),(9480,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  835\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-25T21:26:43-05:00\",\"transaction\":{\"id\":\"trsedzpntvyfg9rjwnqh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"180874277\",\"creation_date\":\"2023-09-25T21:22:24-05:00\",\"operation_date\":\"2023-09-25T21:26:10-05:00\",\"description\":\"Pago Inscripción academia: Diego Alejandro Hernández Giraldo (1105381416)\",\"error_message\":null,\"order_id\":\"18A9042B3FC5B02FE3D57FEA87D6992F_ESDFQL534T_1695694939.8675\",\"due_date\":\"2023-09-26T09:22:24-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"DIEGO ALEJANDRO\",\"last_name\":\"HERNANDEZ GIRALDO\",\"email\":\"albaluzgm1@gmail.com\",\"phone_number\":\"3104194641\",\"address\":null,\"creation_date\":\"2023-09-25T21:22:24-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 02:26:44','2023-09-26 02:26:44'),(9481,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-26T02:20:43-06:00\",\"transaction\":{\"id\":\"trfhdl4qgrgfhcwzcxhs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-23T10:01:40-06:00\",\"operation_date\":\"2023-09-23T10:01:40-06:00\",\"description\":\"Pago Mensual academia: santiago velez palacio (1020235193)\",\"error_message\":null,\"order_id\":\"B2330FC4531DE135266DE49078C270DD_X42DBVST1J_1695481292.2408\",\"due_date\":\"2023-09-23T22:01:40-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yenny\",\"last_name\":\"palacio\",\"email\":\"yeapal_7@hotmail.com\",\"phone_number\":\"3104035722\",\"address\":null,\"creation_date\":\"2023-09-23T10:01:40-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfhdl4qgrgfhcwzcxhs/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 08:20:43','2023-09-26 08:20:43'),(9482,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-26T02:20:43-06:00\",\"transaction\":{\"id\":\"trzwsdlkt3ktzrvdhwqe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-23T08:04:55-06:00\",\"operation_date\":\"2023-09-23T08:04:55-06:00\",\"description\":\"Pago Mensual academia: Tomas Trujillo Gonzalez (1038267103)\",\"error_message\":null,\"order_id\":\"770C0E7E2AF0DB73409AA2431AA8F33E_DIS3O9AJYZ_1695474287.5614\",\"due_date\":\"2023-09-23T20:04:55-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Roberto\",\"last_name\":\"Trujillo\",\"email\":\"robert8116@hotmail.com\",\"phone_number\":\"3113707900\",\"address\":null,\"creation_date\":\"2023-09-23T08:04:55-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzwsdlkt3ktzrvdhwqe/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 08:20:43','2023-09-26 08:20:43'),(9483,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T08:00:23-05:00\",\"transaction\":{\"id\":\"tr0ueekic4y45ankyzua\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-26T08:00:23-05:00\",\"operation_date\":\"2023-09-26T08:00:23-05:00\",\"description\":\"Pago Mensual academia: Gabriela Bustamante estrada (1040751290)\",\"error_message\":null,\"order_id\":\"BBA6BCA05FECDE04C682328E44B974B7_DNYQZC3XUP_1695733216.1828\",\"amount\":105000.00,\"customer\":{\"name\":\"Yesica Johana\",\"last_name\":\"Estrada mendoza\",\"email\":\"ye.k22@hotmail.com\",\"phone_number\":\"3104707344\",\"address\":null,\"creation_date\":\"2023-09-26T08:00:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0ueekic4y45ankyzua/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-26 13:00:23','2023-09-26 13:00:23'),(9484,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1146\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T08:01:47-05:00\",\"transaction\":{\"id\":\"tr0ueekic4y45ankyzua\",\"authorization\":\"167328\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-26T08:00:23-05:00\",\"operation_date\":\"2023-09-26T08:01:45-05:00\",\"description\":\"Pago Mensual academia: Gabriela Bustamante estrada (1040751290)\",\"error_message\":null,\"order_id\":\"BBA6BCA05FECDE04C682328E44B974B7_DNYQZC3XUP_1695733216.1828\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"411759XXXXXX9451\",\"holder_name\":\"Yesica estrada\",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":105000.00,\"customer\":{\"name\":\"Yesica Johana\",\"last_name\":\"Estrada mendoza\",\"email\":\"ye.k22@hotmail.com\",\"phone_number\":\"3104707344\",\"address\":null,\"creation_date\":\"2023-09-26T08:00:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0ueekic4y45ankyzua/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-26 13:01:48','2023-09-26 13:01:48'),(9485,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T09:02:44-05:00\",\"transaction\":{\"id\":\"trfy17t31lheq41s6ea4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-26T09:01:54-05:00\",\"operation_date\":\"2023-09-26T09:01:54-05:00\",\"description\":\"Pago Mensual academia: Antonio Orozco Arcila (1036460970)\",\"error_message\":null,\"order_id\":\"B837305E43F7E535A1506FC263EEE3ED_DQHNCEUAVJ_1695736899.525\",\"due_date\":\"2023-09-26T21:01:54-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Arcila Meluk\",\"email\":\"lauraarcilameluk@hotmail.com\",\"phone_number\":\"3206184717\",\"address\":null,\"creation_date\":\"2023-09-26T09:01:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfy17t31lheq41s6ea4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 14:02:44','2023-09-26 14:02:44'),(9486,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T09:05:38-05:00\",\"transaction\":{\"id\":\"trfy17t31lheq41s6ea4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"181316113\",\"creation_date\":\"2023-09-26T09:01:54-05:00\",\"operation_date\":\"2023-09-26T09:03:51-05:00\",\"description\":\"Pago Mensual academia: Antonio Orozco Arcila (1036460970)\",\"error_message\":null,\"order_id\":\"B837305E43F7E535A1506FC263EEE3ED_DQHNCEUAVJ_1695736899.525\",\"due_date\":\"2023-09-26T21:01:54-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Arcila Meluk\",\"email\":\"lauraarcilameluk@hotmail.com\",\"phone_number\":\"3206184717\",\"address\":null,\"creation_date\":\"2023-09-26T09:01:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 14:05:39','2023-09-26 14:05:39'),(9487,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T10:50:31-05:00\",\"transaction\":{\"id\":\"trfsdolhecnho45ombyz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-26T10:49:50-05:00\",\"operation_date\":\"2023-09-26T10:49:50-05:00\",\"description\":\"Pago Mensual academia: matias calderon orozco (1020318922)\",\"error_message\":null,\"order_id\":\"3E3AA687770F55C704CA997C3BE81634_BLPXVTR7ZQ_1695743387.6277\",\"due_date\":\"2023-09-26T22:49:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"orozco agudelo\",\"email\":\"andreaabogada@icloud.com\",\"phone_number\":\"3128633485\",\"address\":null,\"creation_date\":\"2023-09-26T10:49:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfsdolhecnho45ombyz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 15:50:32','2023-09-26 15:50:32'),(9488,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T09:51:45-06:00\",\"transaction\":{\"id\":\"trfsdolhecnho45ombyz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"181568061\",\"creation_date\":\"2023-09-26T10:49:50-06:00\",\"operation_date\":\"2023-09-26T09:51:40-06:00\",\"description\":\"Pago Mensual academia: matias calderon orozco (1020318922)\",\"error_message\":null,\"order_id\":\"3E3AA687770F55C704CA997C3BE81634_BLPXVTR7ZQ_1695743387.6277\",\"due_date\":\"2023-09-26T22:49:50-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"orozco agudelo\",\"email\":\"andreaabogada@icloud.com\",\"phone_number\":\"3128633485\",\"address\":null,\"creation_date\":\"2023-09-26T10:49:50-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 15:51:46','2023-09-26 15:51:46'),(9489,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T12:38:21-05:00\",\"transaction\":{\"id\":\"trrp9ooxzfgpjmnytqve\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-26T12:37:38-05:00\",\"operation_date\":\"2023-09-26T12:37:38-05:00\",\"description\":\"Pago Mensual academia: Simón Vélez Richter (1034999447)\",\"error_message\":null,\"order_id\":\"ECF5631507A8AEDCAE34CEF231AA7348_O1IZ2DTKPX_1695749855.232\",\"due_date\":\"2023-09-27T00:37:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Richter\",\"email\":\"tatyrichter27@gmail.com\",\"phone_number\":\"3008671943\",\"address\":null,\"creation_date\":\"2023-09-26T12:37:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrp9ooxzfgpjmnytqve/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 17:38:21','2023-09-26 17:38:21'),(9490,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T11:40:51-06:00\",\"transaction\":{\"id\":\"trrp9ooxzfgpjmnytqve\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"181829184\",\"creation_date\":\"2023-09-26T12:37:38-06:00\",\"operation_date\":\"2023-09-26T11:39:38-06:00\",\"description\":\"Pago Mensual academia: Simón Vélez Richter (1034999447)\",\"error_message\":null,\"order_id\":\"ECF5631507A8AEDCAE34CEF231AA7348_O1IZ2DTKPX_1695749855.232\",\"due_date\":\"2023-09-27T00:37:38-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Richter\",\"email\":\"tatyrichter27@gmail.com\",\"phone_number\":\"3008671943\",\"address\":null,\"creation_date\":\"2023-09-26T12:37:38-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 17:40:52','2023-09-26 17:40:52'),(9491,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T11:42:48-06:00\",\"transaction\":{\"id\":\"trrp9ooxzfgpjmnytqve\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"181829184\",\"creation_date\":\"2023-09-26T12:37:38-06:00\",\"operation_date\":\"2023-09-26T11:39:38-06:00\",\"description\":\"Pago Mensual academia: Simón Vélez Richter (1034999447)\",\"error_message\":null,\"order_id\":\"ECF5631507A8AEDCAE34CEF231AA7348_O1IZ2DTKPX_1695749855.232\",\"due_date\":\"2023-09-27T00:37:38-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Richter\",\"email\":\"tatyrichter27@gmail.com\",\"phone_number\":\"3008671943\",\"address\":null,\"creation_date\":\"2023-09-26T12:37:38-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 17:42:49','2023-09-26 17:42:49'),(9492,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T13:00:12-05:00\",\"transaction\":{\"id\":\"try7pdicyzvatbdoeptr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-26T12:59:32-05:00\",\"operation_date\":\"2023-09-26T12:59:32-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Mojocoa Marin (1014742443)\",\"error_message\":null,\"order_id\":\"F816DC0ACFACE7498E10496222E9DB10_718GDFVA6M_1695751166.6629\",\"due_date\":\"2023-09-27T00:59:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-09-26T12:59:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/try7pdicyzvatbdoeptr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 18:00:13','2023-09-26 18:00:13'),(9493,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T13:01:06-05:00\",\"transaction\":{\"id\":\"try7pdicyzvatbdoeptr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"181874921\",\"creation_date\":\"2023-09-26T12:59:32-05:00\",\"operation_date\":\"2023-09-26T13:00:57-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Mojocoa Marin (1014742443)\",\"error_message\":null,\"order_id\":\"F816DC0ACFACE7498E10496222E9DB10_718GDFVA6M_1695751166.6629\",\"due_date\":\"2023-09-27T00:59:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-09-26T12:59:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 18:01:07','2023-09-26 18:01:07'),(9494,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T13:03:04-05:00\",\"transaction\":{\"id\":\"trwywq4f5ferrqfhwrqd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-26T13:01:32-05:00\",\"operation_date\":\"2023-09-26T13:01:32-05:00\",\"description\":\"Pago Mensual academia: Joaquin Mojocoa Marin (1035015032)\",\"error_message\":null,\"order_id\":\"174F8F613332B27E9E8A5138ADB7E920_M3EQ7WZVAX_1695751287.4049\",\"due_date\":\"2023-09-27T01:01:32-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-09-26T13:01:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwywq4f5ferrqfhwrqd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 18:03:04','2023-09-26 18:03:04'),(9495,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T13:03:49-05:00\",\"transaction\":{\"id\":\"trwywq4f5ferrqfhwrqd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"181880846\",\"creation_date\":\"2023-09-26T13:01:32-05:00\",\"operation_date\":\"2023-09-26T13:03:41-05:00\",\"description\":\"Pago Mensual academia: Joaquin Mojocoa Marin (1035015032)\",\"error_message\":null,\"order_id\":\"174F8F613332B27E9E8A5138ADB7E920_M3EQ7WZVAX_1695751287.4049\",\"due_date\":\"2023-09-27T01:01:32-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jose Nicolas\",\"last_name\":\"Mojocoa Monsalve\",\"email\":\"nicomojocoa@msn.com\",\"phone_number\":\"3008920655\",\"address\":null,\"creation_date\":\"2023-09-26T13:01:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 18:03:49','2023-09-26 18:03:49'),(9496,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T14:47:00-05:00\",\"transaction\":{\"id\":\"trzssacr9frf6knkn5gj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-26T14:46:28-05:00\",\"operation_date\":\"2023-09-26T14:46:28-05:00\",\"description\":\"Pago Mensual academia: Agustín Garcia Hurtado (1035014918)\",\"error_message\":null,\"order_id\":\"56C51A39A7C77D8084838CC920585BD0_VIRNT3SJM8_1695757584.578\",\"due_date\":\"2023-09-27T02:46:29-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Garcia\",\"email\":\"camuelo@hotmail.com\",\"phone_number\":\"3128883453\",\"address\":null,\"creation_date\":\"2023-09-26T14:46:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzssacr9frf6knkn5gj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 19:47:01','2023-09-26 19:47:01'),(9497,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T14:48:11-05:00\",\"transaction\":{\"id\":\"trzssacr9frf6knkn5gj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"182104686\",\"creation_date\":\"2023-09-26T14:46:28-05:00\",\"operation_date\":\"2023-09-26T14:47:56-05:00\",\"description\":\"Pago Mensual academia: Agustín Garcia Hurtado (1035014918)\",\"error_message\":null,\"order_id\":\"56C51A39A7C77D8084838CC920585BD0_VIRNT3SJM8_1695757584.578\",\"due_date\":\"2023-09-27T02:46:29-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Garcia\",\"email\":\"camuelo@hotmail.com\",\"phone_number\":\"3128883453\",\"address\":null,\"creation_date\":\"2023-09-26T14:46:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 19:48:11','2023-09-26 19:48:11'),(9498,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T16:26:38-05:00\",\"transaction\":{\"id\":\"trn29mdpjoojys70lygr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-26T16:25:59-05:00\",\"operation_date\":\"2023-09-26T16:25:59-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Londoño Avilez (1020316215)\",\"error_message\":null,\"order_id\":\"60495B4E033E9F60B32A6607B587AADD_MEAPGDW742_1695763556.6865\",\"due_date\":\"2023-09-27T04:25:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Aura\",\"last_name\":\"Avilez Causil\",\"email\":\"auravilez@hotmail.com\",\"phone_number\":\"3014371886\",\"address\":null,\"creation_date\":\"2023-09-26T16:25:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trn29mdpjoojys70lygr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 21:26:39','2023-09-26 21:26:39'),(9499,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T15:27:54-06:00\",\"transaction\":{\"id\":\"trn29mdpjoojys70lygr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"182334221\",\"creation_date\":\"2023-09-26T16:25:59-06:00\",\"operation_date\":\"2023-09-26T15:27:51-06:00\",\"description\":\"Pago Mensual academia: Emmanuel Londoño Avilez (1020316215)\",\"error_message\":null,\"order_id\":\"60495B4E033E9F60B32A6607B587AADD_MEAPGDW742_1695763556.6865\",\"due_date\":\"2023-09-27T04:25:59-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Aura\",\"last_name\":\"Avilez Causil\",\"email\":\"auravilez@hotmail.com\",\"phone_number\":\"3014371886\",\"address\":null,\"creation_date\":\"2023-09-26T16:25:59-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 21:27:54','2023-09-26 21:27:54'),(9500,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T17:05:34-05:00\",\"transaction\":{\"id\":\"trlkdqu2wxgx57qeociv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-26T16:58:29-05:00\",\"operation_date\":\"2023-09-26T16:58:29-05:00\",\"description\":\"Pago Mensual academia: Emiliano Restrepo Cardona (1023555371)\",\"error_message\":null,\"order_id\":\"861578D797AEB0634F77AFF3F488CCA2_AEWJG2I081_1695765490.1386\",\"due_date\":\"2023-09-27T04:58:29-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"veronica\",\"last_name\":\"cardona\",\"email\":\"Veronicacardona949@gmail.com\",\"phone_number\":\"3013320074\",\"address\":null,\"creation_date\":\"2023-09-26T16:58:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlkdqu2wxgx57qeociv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 22:05:35','2023-09-26 22:05:35'),(9501,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T17:07:12-05:00\",\"transaction\":{\"id\":\"trlkdqu2wxgx57qeociv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"182416974\",\"creation_date\":\"2023-09-26T16:58:29-05:00\",\"operation_date\":\"2023-09-26T17:06:56-05:00\",\"description\":\"Pago Mensual academia: Emiliano Restrepo Cardona (1023555371)\",\"error_message\":null,\"order_id\":\"861578D797AEB0634F77AFF3F488CCA2_AEWJG2I081_1695765490.1386\",\"due_date\":\"2023-09-27T04:58:29-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"veronica\",\"last_name\":\"cardona\",\"email\":\"Veronicacardona949@gmail.com\",\"phone_number\":\"3013320074\",\"address\":null,\"creation_date\":\"2023-09-26T16:58:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 22:07:12','2023-09-26 22:07:12'),(9502,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T18:20:55-05:00\",\"transaction\":{\"id\":\"trkcr481bxecdpko0nm0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-26T18:18:51-05:00\",\"operation_date\":\"2023-09-26T18:18:51-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"6DA9003B743B65F4C0CCD295CC484E57_E-651366D0-65_1695770324.6436\",\"due_date\":\"2023-09-27T06:18:51-05:00\",\"amount\":14000.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"López \",\"email\":\"isaacpl2008@gmail.com\",\"phone_number\":\"3052208814\",\"address\":null,\"creation_date\":\"2023-09-26T18:18:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/trkcr481bxecdpko0nm0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 23:20:56','2023-09-26 23:20:56'),(9503,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  772\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T18:22:07-05:00\",\"transaction\":{\"id\":\"trkcr481bxecdpko0nm0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"182561454\",\"creation_date\":\"2023-09-26T18:18:51-05:00\",\"operation_date\":\"2023-09-26T18:21:57-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"6DA9003B743B65F4C0CCD295CC484E57_E-651366D0-65_1695770324.6436\",\"due_date\":\"2023-09-27T06:18:51-05:00\",\"amount\":14000.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"López \",\"email\":\"isaacpl2008@gmail.com\",\"phone_number\":\"3052208814\",\"address\":null,\"creation_date\":\"2023-09-26T18:18:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-26 23:22:08','2023-09-26 23:22:08'),(9504,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T20:35:16-05:00\",\"transaction\":{\"id\":\"trc0uie3ck1yrauavuku\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-26T20:35:16-05:00\",\"operation_date\":\"2023-09-26T20:35:16-05:00\",\"description\":\"Pago Mensual academia: tomas yepes suarez (1035014062)\",\"error_message\":null,\"order_id\":\"A7F0D2B95C60161B3F3C82F764B1D1C9_4XSZTHUC3K_1695778512.5742\",\"amount\":105000.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"yepes arias\",\"email\":\"alejoyepes0425@gmail.com\",\"phone_number\":\"3117512353\",\"address\":null,\"creation_date\":\"2023-09-26T20:35:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc0uie3ck1yrauavuku/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-27 01:35:17','2023-09-27 01:35:17'),(9505,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1142\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T20:36:11-05:00\",\"transaction\":{\"id\":\"trc0uie3ck1yrauavuku\",\"authorization\":\"R04737\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-26T20:35:16-05:00\",\"operation_date\":\"2023-09-26T20:36:10-05:00\",\"description\":\"Pago Mensual academia: tomas yepes suarez (1035014062)\",\"error_message\":null,\"order_id\":\"A7F0D2B95C60161B3F3C82F764B1D1C9_4XSZTHUC3K_1695778512.5742\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX6947\",\"holder_name\":\"Natalia suarez\",\"expiration_year\":\"24\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":105000.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"yepes arias\",\"email\":\"alejoyepes0425@gmail.com\",\"phone_number\":\"3117512353\",\"address\":null,\"creation_date\":\"2023-09-26T20:35:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc0uie3ck1yrauavuku/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-27 01:36:12','2023-09-27 01:36:12'),(9506,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-26T20:36:31-05:00\",\"transaction\":{\"id\":\"tr18rrdtuijr6gdhvkwv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-26T20:36:31-05:00\",\"operation_date\":\"2023-09-26T20:36:31-05:00\",\"description\":\"Pago Mensual academia: tomas yepes suarez (1035014062)\",\"error_message\":null,\"order_id\":\"65AE450C5536606C266F49F1C08321F2_QU306H45AI_1695778585.7293\",\"amount\":105000.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"yepes arias\",\"email\":\"alejoyepes0425@gmail.com\",\"phone_number\":\"3117512353\",\"address\":null,\"creation_date\":\"2023-09-26T20:36:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr18rrdtuijr6gdhvkwv/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-27 01:36:31','2023-09-27 01:36:31'),(9507,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1143\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-26T20:37:39-05:00\",\"transaction\":{\"id\":\"tr18rrdtuijr6gdhvkwv\",\"authorization\":\"R05181\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-26T20:36:31-05:00\",\"operation_date\":\"2023-09-26T20:37:37-05:00\",\"description\":\"Pago Mensual academia: tomas yepes suarez (1035014062)\",\"error_message\":null,\"order_id\":\"65AE450C5536606C266F49F1C08321F2_QU306H45AI_1695778585.7293\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX6947\",\"holder_name\":\"Natalia suarez \",\"expiration_year\":\"24\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":105000.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"yepes arias\",\"email\":\"alejoyepes0425@gmail.com\",\"phone_number\":\"3117512353\",\"address\":null,\"creation_date\":\"2023-09-26T20:36:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr18rrdtuijr6gdhvkwv/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-27 01:37:40','2023-09-27 01:37:40'),(9508,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-27T02:08:02-06:00\",\"transaction\":{\"id\":\"trqzizyek8qmrmbirtjw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-25T16:44:50-06:00\",\"operation_date\":\"2023-09-25T16:44:50-06:00\",\"description\":\"Pago Mensual academia: Nicolas Ruiz Urbano (1089641876)\",\"error_message\":null,\"order_id\":\"37588C655CA22F7CA1664A2B211188FF_71862VLSJP_1695678287.236\",\"due_date\":\"2023-09-26T04:44:50-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Ruiz Urbano\",\"email\":\"nathalia_urbano@hotmail.com\",\"phone_number\":\"3004400511\",\"address\":null,\"creation_date\":\"2023-09-25T16:44:50-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqzizyek8qmrmbirtjw/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 08:08:03','2023-09-27 08:08:03'),(9509,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-27T10:03:59-05:00\",\"transaction\":{\"id\":\"trbprrr9rzphe3psrltb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-27T10:02:04-05:00\",\"operation_date\":\"2023-09-27T10:02:04-05:00\",\"description\":\"Pago Inscripción academia: cristopher jesus kelly charris (1036691836)\",\"error_message\":null,\"order_id\":\"77143919D1234297079F075357988F3B_3V560MEGTX_1695826920.7973\",\"due_date\":\"2023-09-27T22:02:04-05:00\",\"amount\":286000.00,\"customer\":{\"name\":\"Darwin \",\"last_name\":\"Kelly\",\"email\":\"drasjcharris@hotmail.com\",\"phone_number\":\"3017504001\",\"address\":null,\"creation_date\":\"2023-09-27T10:02:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbprrr9rzphe3psrltb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 15:04:00','2023-09-27 15:04:00'),(9510,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-27T09:24:12-06:00\",\"transaction\":{\"id\":\"trbprrr9rzphe3psrltb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-27T10:02:04-06:00\",\"operation_date\":\"2023-09-27T09:04:06-06:00\",\"description\":\"Pago Inscripción academia: cristopher jesus kelly charris (1036691836)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"77143919D1234297079F075357988F3B_3V560MEGTX_1695826920.7973\",\"due_date\":\"2023-09-27T22:02:04-06:00\",\"error_code\":1007,\"amount\":286000.00,\"customer\":{\"name\":\"Darwin \",\"last_name\":\"Kelly\",\"email\":\"drasjcharris@hotmail.com\",\"phone_number\":\"3017504001\",\"address\":null,\"creation_date\":\"2023-09-27T10:02:04-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 15:24:13','2023-09-27 15:24:13'),(9511,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  901\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-27T11:18:49-05:00\",\"transaction\":{\"id\":\"tr5d1ago9qurtlbyvikp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-27T11:18:49-05:00\",\"operation_date\":\"2023-09-27T11:18:49-05:00\",\"description\":\"Pago Mensual academia: Christopher Castaño Blandón (1023639803)\",\"error_message\":null,\"order_id\":\"E46BC064F8E92AC2C404B9871B2A4EF2_5MQPRJ8GBD_1695831526.8636\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Blandón Acosta\",\"email\":\"tati.blandona@gmail.com\",\"phone_number\":\"3216570192\",\"address\":null,\"creation_date\":\"2023-09-27T11:18:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5d1ago9qurtlbyvikp/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-27 16:18:50','2023-09-27 16:18:50'),(9512,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  583\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-27T11:21:26-05:00\",\"transaction\":{\"id\":\"trkzxlhh9hu8cqrlfqjn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-09-27T11:21:26-05:00\",\"operation_date\":\"2023-09-27T11:21:26-05:00\",\"description\":\"Pago Mensual academia: Christopher Castaño Blandón (1023639803)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"E46BC064F8E92AC2C404B9871B2A4EF2_5MQPRJ8GBD_1695831526.8636\",\"error_code\":3001,\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-27 16:21:26','2023-09-27 16:21:26'),(9513,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-27T11:28:42-05:00\",\"transaction\":{\"id\":\"tr5d1ago9qurtlbyvikp\",\"authorization\":\"112841\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-27T11:18:49-05:00\",\"operation_date\":\"2023-09-27T11:28:40-05:00\",\"description\":\"Pago Mensual academia: Christopher Castaño Blandón (1023639803)\",\"error_message\":null,\"order_id\":\"E46BC064F8E92AC2C404B9871B2A4EF2_5MQPRJ8GBD_1695831526.8636\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX9761\",\"holder_name\":\"Tatiana Blandon\",\"expiration_year\":\"25\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Blandón Acosta\",\"email\":\"tati.blandona@gmail.com\",\"phone_number\":\"3216570192\",\"address\":null,\"creation_date\":\"2023-09-27T11:18:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5d1ago9qurtlbyvikp/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-27 16:28:43','2023-09-27 16:28:43'),(9514,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-27T13:37:45-05:00\",\"transaction\":{\"id\":\"trbzu32nvzycdpcujxva\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-27T13:37:00-05:00\",\"operation_date\":\"2023-09-27T13:37:00-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":null,\"order_id\":\"2192890582189FF58DDBB2B79900F246_Q57Z06NRXM_1695839817.9783\",\"due_date\":\"2023-09-28T01:37:00-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-09-27T13:37:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbzu32nvzycdpcujxva/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 18:37:46','2023-09-27 18:37:46'),(9515,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-27T13:39:01-05:00\",\"transaction\":{\"id\":\"trbzu32nvzycdpcujxva\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-27T13:37:00-05:00\",\"operation_date\":\"2023-09-27T13:38:54-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"2192890582189FF58DDBB2B79900F246_Q57Z06NRXM_1695839817.9783\",\"due_date\":\"2023-09-28T01:37:00-05:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-09-27T13:37:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 18:39:02','2023-09-27 18:39:02'),(9516,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-27T13:40:56-05:00\",\"transaction\":{\"id\":\"trpfr3xzosighwzg6wa6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-27T13:40:18-05:00\",\"operation_date\":\"2023-09-27T13:40:18-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":null,\"order_id\":\"2192890582189FF58DDBB2B79900F246_Q57Z06NRXM_1695839955.8945\",\"due_date\":\"2023-09-28T01:40:18-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-09-27T13:40:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpfr3xzosighwzg6wa6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 18:40:57','2023-09-27 18:40:57'),(9517,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-27T13:47:54-05:00\",\"transaction\":{\"id\":\"trpfr3xzosighwzg6wa6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-27T13:40:18-05:00\",\"operation_date\":\"2023-09-27T13:47:45-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"2192890582189FF58DDBB2B79900F246_Q57Z06NRXM_1695839955.8945\",\"due_date\":\"2023-09-28T01:40:18-05:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-09-27T13:40:18-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 18:47:54','2023-09-27 18:47:54'),(9518,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-27T13:53:06-05:00\",\"transaction\":{\"id\":\"trq8anfjgqlhpjebelzr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-27T13:52:34-05:00\",\"operation_date\":\"2023-09-27T13:52:34-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":null,\"order_id\":\"2192890582189FF58DDBB2B79900F246_Q57Z06NRXM_1695840748.5897\",\"due_date\":\"2023-09-28T01:52:34-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-09-27T13:52:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq8anfjgqlhpjebelzr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 18:53:07','2023-09-27 18:53:07'),(9519,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-27T13:54:51-05:00\",\"transaction\":{\"id\":\"trq8anfjgqlhpjebelzr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"183957492\",\"creation_date\":\"2023-09-27T13:52:34-05:00\",\"operation_date\":\"2023-09-27T13:54:41-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Matías Mejía Vélez (1026163532)\",\"error_message\":null,\"order_id\":\"2192890582189FF58DDBB2B79900F246_Q57Z06NRXM_1695840748.5897\",\"due_date\":\"2023-09-28T01:52:34-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Mejía Vélez\",\"email\":\"jmejivelez7@gmail.com\",\"phone_number\":\"3218269812\",\"address\":null,\"creation_date\":\"2023-09-27T13:52:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 18:54:51','2023-09-27 18:54:51'),(9520,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-27T15:39:01-05:00\",\"transaction\":{\"id\":\"trfeystgzzwazilbo0ik\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-27T15:37:56-05:00\",\"operation_date\":\"2023-09-27T15:37:56-05:00\",\"description\":\"Pago Mensual academia: santiago agudelo rengifo (1029885184)\",\"error_message\":null,\"order_id\":\"ADC8CA1B15E20915C3EA6008FC2F52ED_EQRLPNDTA0_1695847072.7932\",\"due_date\":\"2023-09-28T03:37:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Agudelo Rengifo\",\"email\":\"shirley.rengifo@yahoo.com\",\"phone_number\":\"3138046959\",\"address\":null,\"creation_date\":\"2023-09-27T15:37:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfeystgzzwazilbo0ik/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 20:39:01','2023-09-27 20:39:01'),(9521,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-27T14:42:31-06:00\",\"transaction\":{\"id\":\"trfeystgzzwazilbo0ik\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"184209518\",\"creation_date\":\"2023-09-27T15:37:56-06:00\",\"operation_date\":\"2023-09-27T14:40:32-06:00\",\"description\":\"Pago Mensual academia: santiago agudelo rengifo (1029885184)\",\"error_message\":null,\"order_id\":\"ADC8CA1B15E20915C3EA6008FC2F52ED_EQRLPNDTA0_1695847072.7932\",\"due_date\":\"2023-09-28T03:37:56-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Agudelo Rengifo\",\"email\":\"shirley.rengifo@yahoo.com\",\"phone_number\":\"3138046959\",\"address\":null,\"creation_date\":\"2023-09-27T15:37:56-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 20:42:31','2023-09-27 20:42:31'),(9522,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-27T17:01:57-05:00\",\"transaction\":{\"id\":\"tr8vewodytetoewhew10\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-27T17:01:06-05:00\",\"operation_date\":\"2023-09-27T17:01:06-05:00\",\"description\":\"Pago Mensual academia: Yilmer Sneider Piratoba Vergara (1092542886)\",\"error_message\":null,\"order_id\":\"1BD36C9AE813F304363AE6AC7F48068E_7LOMZA0XV2_1695852063.0884\",\"due_date\":\"2023-09-28T05:01:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"William\",\"last_name\":\"Piratoba\",\"email\":\"yilmerly123@gmail.com\",\"phone_number\":\"3217863160\",\"address\":null,\"creation_date\":\"2023-09-27T17:01:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8vewodytetoewhew10/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 22:01:58','2023-09-27 22:01:58'),(9523,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-27T17:03:51-05:00\",\"transaction\":{\"id\":\"tr8vewodytetoewhew10\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"184406334\",\"creation_date\":\"2023-09-27T17:01:06-05:00\",\"operation_date\":\"2023-09-27T17:03:14-05:00\",\"description\":\"Pago Mensual academia: Yilmer Sneider Piratoba Vergara (1092542886)\",\"error_message\":null,\"order_id\":\"1BD36C9AE813F304363AE6AC7F48068E_7LOMZA0XV2_1695852063.0884\",\"due_date\":\"2023-09-28T05:01:06-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"William\",\"last_name\":\"Piratoba\",\"email\":\"yilmerly123@gmail.com\",\"phone_number\":\"3217863160\",\"address\":null,\"creation_date\":\"2023-09-27T17:01:06-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 22:03:52','2023-09-27 22:03:52'),(9524,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-27T17:39:03-05:00\",\"transaction\":{\"id\":\"truggjqmw9irivhexjvh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-27T17:37:09-05:00\",\"operation_date\":\"2023-09-27T17:37:09-05:00\",\"description\":\"Pago Mensual academia: Mathias Ignacio Rodriguez Pozo (1017940330)\",\"error_message\":null,\"order_id\":\"8CE1A43FB75E779C6B794BA4D255CF6D_HO2BCLG4KA_1695854217.181\",\"due_date\":\"2023-09-28T05:37:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Claudia\",\"last_name\":\"Pozo\",\"email\":\"claudypozo@hotmail.com\",\"phone_number\":\"3104638412\",\"address\":null,\"creation_date\":\"2023-09-27T17:37:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truggjqmw9irivhexjvh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 22:39:04','2023-09-27 22:39:04'),(9525,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-27T17:41:01-05:00\",\"transaction\":{\"id\":\"truggjqmw9irivhexjvh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"184483716\",\"creation_date\":\"2023-09-27T17:37:09-05:00\",\"operation_date\":\"2023-09-27T17:40:49-05:00\",\"description\":\"Pago Mensual academia: Mathias Ignacio Rodriguez Pozo (1017940330)\",\"error_message\":null,\"order_id\":\"8CE1A43FB75E779C6B794BA4D255CF6D_HO2BCLG4KA_1695854217.181\",\"due_date\":\"2023-09-28T05:37:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Claudia\",\"last_name\":\"Pozo\",\"email\":\"claudypozo@hotmail.com\",\"phone_number\":\"3104638412\",\"address\":null,\"creation_date\":\"2023-09-27T17:37:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 22:41:02','2023-09-27 22:41:02'),(9526,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-27T17:55:15-05:00\",\"transaction\":{\"id\":\"trhuo2lcsjknuliv9y0u\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-27T17:54:20-05:00\",\"operation_date\":\"2023-09-27T17:54:20-05:00\",\"description\":\"Pago Mensual academia: Daniel Alejandro Gonzalez Castañeda (1016602115)\",\"error_message\":null,\"order_id\":\"2130EB640E0A272898A51DA41363542D_EUG2X4WI0P_1695855257.3704\",\"due_date\":\"2023-09-28T05:54:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Gonzalez Morales\",\"email\":\"dfernandogm@gmail.com\",\"phone_number\":\"3115380577\",\"address\":null,\"creation_date\":\"2023-09-27T17:54:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhuo2lcsjknuliv9y0u/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 22:55:16','2023-09-27 22:55:16'),(9527,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-27T17:56:49-05:00\",\"transaction\":{\"id\":\"trhuo2lcsjknuliv9y0u\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"184516733\",\"creation_date\":\"2023-09-27T17:54:20-05:00\",\"operation_date\":\"2023-09-27T17:56:22-05:00\",\"description\":\"Pago Mensual academia: Daniel Alejandro Gonzalez Castañeda (1016602115)\",\"error_message\":null,\"order_id\":\"2130EB640E0A272898A51DA41363542D_EUG2X4WI0P_1695855257.3704\",\"due_date\":\"2023-09-28T05:54:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Gonzalez Morales\",\"email\":\"dfernandogm@gmail.com\",\"phone_number\":\"3115380577\",\"address\":null,\"creation_date\":\"2023-09-27T17:54:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-27 22:56:49','2023-09-27 22:56:49'),(9528,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-28T02:05:04-06:00\",\"transaction\":{\"id\":\"trsyggq0cvu8f9a4hekz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-27T06:49:20-06:00\",\"operation_date\":\"2023-09-27T06:49:20-06:00\",\"description\":\"Pago Mensual academia: Pedro Botero Montoya (1035003729)\",\"error_message\":null,\"order_id\":\"E038453073D221A4F32D0BAB94CA7CEE_A69K4ELG5C_1695815357.4227\",\"due_date\":\"2023-09-27T18:49:20-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Botero Montoya\",\"email\":\"linamonty@hotmail.com\",\"phone_number\":\"3176567400\",\"address\":null,\"creation_date\":\"2023-09-27T06:49:20-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsyggq0cvu8f9a4hekz/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 08:05:05','2023-09-28 08:05:05'),(9529,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-28T02:05:19-06:00\",\"transaction\":{\"id\":\"troiireyimuxurcf3f4l\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-26T18:50:41-06:00\",\"operation_date\":\"2023-09-26T18:50:41-06:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"9B04D152845EC0A378394003C96DA594_E-65136E48-61_1695772237.8003\",\"due_date\":\"2023-09-27T06:50:41-06:00\",\"amount\":146900.00,\"customer\":{\"name\":\"hamilton\",\"last_name\":\"villa\",\"email\":\"hamiltonvilla08@gmail.com\",\"phone_number\":\"3145847918\",\"address\":null,\"creation_date\":\"2023-09-26T18:50:41-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/troiireyimuxurcf3f4l/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 08:05:20','2023-09-28 08:05:20'),(9530,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T09:54:43-05:00\",\"transaction\":{\"id\":\"trpiq8xi8gvlto4hzaou\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-28T09:53:34-05:00\",\"operation_date\":\"2023-09-28T09:53:34-05:00\",\"description\":\"Pago Mensual academia: Geronimo Uribe Giraldo (1035000283)\",\"error_message\":null,\"order_id\":\"16D11E9595188DBAD0418A85F0351ABA_RJFP7K90NX_1695912809.9671\",\"due_date\":\"2023-09-28T21:53:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Rafael Antonio\",\"last_name\":\"Uribe Botero\",\"email\":\"ruribe96@gmail.com\",\"phone_number\":\"3127729249\",\"address\":null,\"creation_date\":\"2023-09-28T09:53:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpiq8xi8gvlto4hzaou/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 14:54:44','2023-09-28 14:54:44'),(9531,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T08:58:49-06:00\",\"transaction\":{\"id\":\"trpiq8xi8gvlto4hzaou\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"185425652\",\"creation_date\":\"2023-09-28T09:53:34-06:00\",\"operation_date\":\"2023-09-28T08:55:57-06:00\",\"description\":\"Pago Mensual academia: Geronimo Uribe Giraldo (1035000283)\",\"error_message\":null,\"order_id\":\"16D11E9595188DBAD0418A85F0351ABA_RJFP7K90NX_1695912809.9671\",\"due_date\":\"2023-09-28T21:53:34-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Rafael Antonio\",\"last_name\":\"Uribe Botero\",\"email\":\"ruribe96@gmail.com\",\"phone_number\":\"3127729249\",\"address\":null,\"creation_date\":\"2023-09-28T09:53:34-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 14:58:50','2023-09-28 14:58:50'),(9532,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T11:10:12-05:00\",\"transaction\":{\"id\":\"tr0kqknslpopf2uqodes\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-28T11:09:19-05:00\",\"operation_date\":\"2023-09-28T11:09:19-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Larios Soto (1020325771)\",\"error_message\":null,\"order_id\":\"13B919438259814CD5BE8CB45877D577_AMWDCZ5G1J_1695917355.9568\",\"due_date\":\"2023-09-28T23:09:19-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"juan jose\",\"last_name\":\"larios soto\",\"email\":\"lariospimienta@icloud.com\",\"phone_number\":\"3126622766\",\"address\":null,\"creation_date\":\"2023-09-28T11:09:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0kqknslpopf2uqodes/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 16:10:12','2023-09-28 16:10:12'),(9533,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T11:11:06-05:00\",\"transaction\":{\"id\":\"tr0kqknslpopf2uqodes\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"185611564\",\"creation_date\":\"2023-09-28T11:09:19-05:00\",\"operation_date\":\"2023-09-28T11:10:59-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Larios Soto (1020325771)\",\"error_message\":null,\"order_id\":\"13B919438259814CD5BE8CB45877D577_AMWDCZ5G1J_1695917355.9568\",\"due_date\":\"2023-09-28T23:09:19-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"juan jose\",\"last_name\":\"larios soto\",\"email\":\"lariospimienta@icloud.com\",\"phone_number\":\"3126622766\",\"address\":null,\"creation_date\":\"2023-09-28T11:09:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 16:11:07','2023-09-28 16:11:07'),(9534,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T11:12:08-05:00\",\"transaction\":{\"id\":\"trfhozzjmjzp0hdrbabe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-28T11:11:22-05:00\",\"operation_date\":\"2023-09-28T11:11:22-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Larios Soto (1020325771)\",\"error_message\":null,\"order_id\":\"1558417B096B5D8E7CBE0183EA9CBF26_D4CKN9I1GE_1695917480.4621\",\"due_date\":\"2023-09-28T23:11:22-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"juan jose\",\"last_name\":\"larios soto\",\"email\":\"lariospimienta@icloud.com\",\"phone_number\":\"3126622766\",\"address\":null,\"creation_date\":\"2023-09-28T11:11:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfhozzjmjzp0hdrbabe/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 16:12:08','2023-09-28 16:12:08'),(9535,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T11:13:44-05:00\",\"transaction\":{\"id\":\"trfhozzjmjzp0hdrbabe\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"185616531\",\"creation_date\":\"2023-09-28T11:11:22-05:00\",\"operation_date\":\"2023-09-28T11:13:38-05:00\",\"description\":\"Pago Mensual academia: Juan Jose Larios Soto (1020325771)\",\"error_message\":null,\"order_id\":\"1558417B096B5D8E7CBE0183EA9CBF26_D4CKN9I1GE_1695917480.4621\",\"due_date\":\"2023-09-28T23:11:22-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"juan jose\",\"last_name\":\"larios soto\",\"email\":\"lariospimienta@icloud.com\",\"phone_number\":\"3126622766\",\"address\":null,\"creation_date\":\"2023-09-28T11:11:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 16:13:45','2023-09-28 16:13:45'),(9536,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T12:22:20-05:00\",\"transaction\":{\"id\":\"trrxfewqsehxhjq7hqf1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-28T12:21:20-05:00\",\"operation_date\":\"2023-09-28T12:21:20-05:00\",\"description\":\"Pago Mensual academia: Martín Munevar Botero (1035981767)\",\"error_message\":null,\"order_id\":\"91F5738A827405B0F0BD80AF1B7E386C_L93VTHR60P_1695921678.2325\",\"due_date\":\"2023-09-29T00:21:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MARTIN\",\"last_name\":\"MUNEVAR BOTERO\",\"email\":\"e-botero1@hotmail.com\",\"phone_number\":\"3104545932\",\"address\":null,\"creation_date\":\"2023-09-28T12:21:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrxfewqsehxhjq7hqf1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 17:22:20','2023-09-28 17:22:20'),(9537,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T12:24:15-05:00\",\"transaction\":{\"id\":\"trrxfewqsehxhjq7hqf1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"185794156\",\"creation_date\":\"2023-09-28T12:21:20-05:00\",\"operation_date\":\"2023-09-28T12:23:47-05:00\",\"description\":\"Pago Mensual academia: Martín Munevar Botero (1035981767)\",\"error_message\":null,\"order_id\":\"91F5738A827405B0F0BD80AF1B7E386C_L93VTHR60P_1695921678.2325\",\"due_date\":\"2023-09-29T00:21:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MARTIN\",\"last_name\":\"MUNEVAR BOTERO\",\"email\":\"e-botero1@hotmail.com\",\"phone_number\":\"3104545932\",\"address\":null,\"creation_date\":\"2023-09-28T12:21:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 17:24:15','2023-09-28 17:24:15'),(9538,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  881\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T12:26:21-05:00\",\"transaction\":{\"id\":\"trxnyvdsadpxpec4hvct\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-28T12:26:21-05:00\",\"operation_date\":\"2023-09-28T12:26:21-05:00\",\"description\":\"Pago Mensual academia: Joaquin Palacios Calle (1033265847)\",\"error_message\":null,\"order_id\":\"96B250A90D3CF0868C83F8C965142D2A_DOGXTZVFBM_1695921976.3286\",\"amount\":132720.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Calle\",\"email\":\"marcal1384@hotmail.com\",\"phone_number\":\"3012635012\",\"address\":null,\"creation_date\":\"2023-09-28T12:26:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxnyvdsadpxpec4hvct/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-28 17:26:22','2023-09-28 17:26:22'),(9539,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1199\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T12:26:53-05:00\",\"transaction\":{\"id\":\"trxnyvdsadpxpec4hvct\",\"authorization\":\"523249\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":3,\"conciliated\":true,\"creation_date\":\"2023-09-28T12:26:21-05:00\",\"operation_date\":\"2023-09-28T12:26:52-05:00\",\"description\":\"Pago Mensual academia: Joaquin Palacios Calle (1033265847)\",\"error_message\":null,\"order_id\":\"96B250A90D3CF0868C83F8C965142D2A_DOGXTZVFBM_1695921976.3286\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555825XXXXXX8146\",\"holder_name\":\"Diana Calle\",\"expiration_year\":\"30\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NUBANK\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":3,\"payments_type\":\"without_interest\"},\"amount\":132720.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Calle\",\"email\":\"marcal1384@hotmail.com\",\"phone_number\":\"3012635012\",\"address\":null,\"creation_date\":\"2023-09-28T12:26:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxnyvdsadpxpec4hvct/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-28 17:26:54','2023-09-28 17:26:54'),(9540,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T15:04:01-05:00\",\"transaction\":{\"id\":\"trealhku5n7spghqjpdn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-28T15:03:10-05:00\",\"operation_date\":\"2023-09-28T15:03:10-05:00\",\"description\":\"Pago Mensual academia: Tomas Gutierrez Merz (1034307436)\",\"error_message\":null,\"order_id\":\"22CF8D98DCA2B9DE5052AE9253BDDEF3_JSBKPM20O3_1695931374.8244\",\"due_date\":\"2023-09-29T03:03:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sabine stefka\",\"last_name\":\"merz  lenis\",\"email\":\"sabi_merz_93@hotmail.com\",\"phone_number\":\"3058057019\",\"address\":null,\"creation_date\":\"2023-09-28T15:03:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trealhku5n7spghqjpdn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 20:04:01','2023-09-28 20:04:01'),(9541,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T14:06:30-06:00\",\"transaction\":{\"id\":\"trealhku5n7spghqjpdn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"186152590\",\"creation_date\":\"2023-09-28T15:03:10-06:00\",\"operation_date\":\"2023-09-27T23:00:00-06:00\",\"description\":\"Pago Mensual academia: Tomas Gutierrez Merz (1034307436)\",\"error_message\":null,\"order_id\":\"22CF8D98DCA2B9DE5052AE9253BDDEF3_JSBKPM20O3_1695931374.8244\",\"due_date\":\"2023-09-29T03:03:10-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sabine stefka\",\"last_name\":\"merz  lenis\",\"email\":\"sabi_merz_93@hotmail.com\",\"phone_number\":\"3058057019\",\"address\":null,\"creation_date\":\"2023-09-28T15:03:10-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 20:06:31','2023-09-28 20:06:31'),(9542,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T16:07:12-05:00\",\"transaction\":{\"id\":\"trqme1zm5z5kxqwreqsa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-28T16:06:35-05:00\",\"operation_date\":\"2023-09-28T16:06:35-05:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Valencia (1023554895)\",\"error_message\":null,\"order_id\":\"C76DB12C821B79A91D361A4C705CE6B4_6UN4I5HD7X_1695935192.2966\",\"due_date\":\"2023-09-29T04:06:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jaime\",\"last_name\":\"Giraldo\",\"email\":\"jaime2406@hotmail.com\",\"phone_number\":\"3002037003\",\"address\":null,\"creation_date\":\"2023-09-28T16:06:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqme1zm5z5kxqwreqsa/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 21:07:13','2023-09-28 21:07:13'),(9543,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T16:08:28-05:00\",\"transaction\":{\"id\":\"trqme1zm5z5kxqwreqsa\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"186305906\",\"creation_date\":\"2023-09-28T16:06:35-05:00\",\"operation_date\":\"2023-09-28T16:08:20-05:00\",\"description\":\"Pago Mensual academia: Matias Giraldo Valencia (1023554895)\",\"error_message\":null,\"order_id\":\"C76DB12C821B79A91D361A4C705CE6B4_6UN4I5HD7X_1695935192.2966\",\"due_date\":\"2023-09-29T04:06:35-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jaime\",\"last_name\":\"Giraldo\",\"email\":\"jaime2406@hotmail.com\",\"phone_number\":\"3002037003\",\"address\":null,\"creation_date\":\"2023-09-28T16:06:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 21:08:29','2023-09-28 21:08:29'),(9544,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T16:18:22-05:00\",\"transaction\":{\"id\":\"tremzs5pnrifyrc7tlby\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-28T16:17:21-05:00\",\"operation_date\":\"2023-09-28T16:17:21-05:00\",\"description\":\"Pago Mensual academia: martin sierra mesa (1123972382)\",\"error_message\":null,\"order_id\":\"0AB922BA3E948387B4B2A85FCB83D194_CWETDP0BMS_1695935836.2107\",\"due_date\":\"2023-09-29T04:17:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"sierra mesa\",\"email\":\"haroldsipe@hotmail.com\",\"phone_number\":\"3147218029\",\"address\":null,\"creation_date\":\"2023-09-28T16:17:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tremzs5pnrifyrc7tlby/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 21:18:22','2023-09-28 21:18:22'),(9545,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T16:18:25-05:00\",\"transaction\":{\"id\":\"trot7jukto0qfz4jgo9m\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-28T16:17:30-05:00\",\"operation_date\":\"2023-09-28T16:17:30-05:00\",\"description\":\"Pago Mensual academia: Juan Angel Saiz Muñoz (1033192660)\",\"error_message\":null,\"order_id\":\"09E7655FC1DC8FA7C9D6C4478313D5E6_K59H12Z6LN_1695935847.5865\",\"due_date\":\"2023-09-29T04:17:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Angel\",\"last_name\":\"Saiz Muñoz\",\"email\":\"danielamu.lopez@gmail.com\",\"phone_number\":\"3105971508\",\"address\":null,\"creation_date\":\"2023-09-28T16:17:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trot7jukto0qfz4jgo9m/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 21:18:26','2023-09-28 21:18:26'),(9546,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T16:19:51-05:00\",\"transaction\":{\"id\":\"trot7jukto0qfz4jgo9m\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"186332940\",\"creation_date\":\"2023-09-28T16:17:30-05:00\",\"operation_date\":\"2023-09-28T16:19:45-05:00\",\"description\":\"Pago Mensual academia: Juan Angel Saiz Muñoz (1033192660)\",\"error_message\":null,\"order_id\":\"09E7655FC1DC8FA7C9D6C4478313D5E6_K59H12Z6LN_1695935847.5865\",\"due_date\":\"2023-09-29T04:17:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Angel\",\"last_name\":\"Saiz Muñoz\",\"email\":\"danielamu.lopez@gmail.com\",\"phone_number\":\"3105971508\",\"address\":null,\"creation_date\":\"2023-09-28T16:17:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 21:19:51','2023-09-28 21:19:51'),(9547,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T16:20:01-05:00\",\"transaction\":{\"id\":\"tremzs5pnrifyrc7tlby\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"186332825\",\"creation_date\":\"2023-09-28T16:17:21-05:00\",\"operation_date\":\"2023-09-28T16:19:53-05:00\",\"description\":\"Pago Mensual academia: martin sierra mesa (1123972382)\",\"error_message\":null,\"order_id\":\"0AB922BA3E948387B4B2A85FCB83D194_CWETDP0BMS_1695935836.2107\",\"due_date\":\"2023-09-29T04:17:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"sierra mesa\",\"email\":\"haroldsipe@hotmail.com\",\"phone_number\":\"3147218029\",\"address\":null,\"creation_date\":\"2023-09-28T16:17:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-28 21:20:02','2023-09-28 21:20:02'),(9548,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  902\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T17:36:39-05:00\",\"transaction\":{\"id\":\"trl8kgkdwndu1niiyghr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-28T17:36:39-05:00\",\"operation_date\":\"2023-09-28T17:36:39-05:00\",\"description\":\"Pago Mensual academia: JUAN STEBAN CORREDOR MUETE (1027286961)\",\"error_message\":null,\"order_id\":\"77CDFC1E11E36A23BB030892EE00B8CF_4RYWCAOS2I_1695940581.0018\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan\",\"last_name\":\"Corredor Ramirez\",\"email\":\"juaningindustrial98@gmail.com\",\"phone_number\":\"3142313779\",\"address\":null,\"creation_date\":\"2023-09-28T17:36:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl8kgkdwndu1niiyghr/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-28 22:36:40','2023-09-28 22:36:40'),(9549,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1147\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T17:38:04-05:00\",\"transaction\":{\"id\":\"trl8kgkdwndu1niiyghr\",\"authorization\":\"603804\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-28T17:36:39-05:00\",\"operation_date\":\"2023-09-28T17:38:04-05:00\",\"description\":\"Pago Mensual academia: JUAN STEBAN CORREDOR MUETE (1027286961)\",\"error_message\":null,\"order_id\":\"77CDFC1E11E36A23BB030892EE00B8CF_4RYWCAOS2I_1695940581.0018\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"526557XXXXXX2347\",\"holder_name\":\"Juan Corredor\",\"expiration_year\":\"30\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"DAVIVIENDA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Juan\",\"last_name\":\"Corredor Ramirez\",\"email\":\"juaningindustrial98@gmail.com\",\"phone_number\":\"3142313779\",\"address\":null,\"creation_date\":\"2023-09-28T17:36:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl8kgkdwndu1niiyghr/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-28 22:38:06','2023-09-28 22:38:06'),(9550,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T19:19:18-05:00\",\"transaction\":{\"id\":\"trsa8vs8lo7amjxfrnon\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-28T19:18:37-05:00\",\"operation_date\":\"2023-09-28T19:18:37-05:00\",\"description\":\"Pago Mensual academia: Nicolás Jaimes Londoño (1019993636)\",\"error_message\":null,\"order_id\":\"331CC28F8747A032890D0429B5A5F0E5_X4RZOG8VKY_1695946709.6621\",\"due_date\":\"2023-09-29T07:18:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Jaimes Londoño\",\"email\":\"dianam0927@hotmail.com\",\"phone_number\":\"3158136416\",\"address\":null,\"creation_date\":\"2023-09-28T19:18:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsa8vs8lo7amjxfrnon/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 00:19:19','2023-09-29 00:19:19'),(9551,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T19:19:55-05:00\",\"transaction\":{\"id\":\"trsa8vs8lo7amjxfrnon\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"186707019\",\"creation_date\":\"2023-09-28T19:18:37-05:00\",\"operation_date\":\"2023-09-28T19:19:47-05:00\",\"description\":\"Pago Mensual academia: Nicolás Jaimes Londoño (1019993636)\",\"error_message\":null,\"order_id\":\"331CC28F8747A032890D0429B5A5F0E5_X4RZOG8VKY_1695946709.6621\",\"due_date\":\"2023-09-29T07:18:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Jaimes Londoño\",\"email\":\"dianam0927@hotmail.com\",\"phone_number\":\"3158136416\",\"address\":null,\"creation_date\":\"2023-09-28T19:18:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 00:19:55','2023-09-29 00:19:55'),(9552,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T19:26:31-05:00\",\"transaction\":{\"id\":\"trhf8buwkz2wjst4ebph\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-28T19:25:19-05:00\",\"operation_date\":\"2023-09-28T19:25:19-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":null,\"order_id\":\"CD474F6341AEFFD65F93084D0DAE3453_UYL7IRW9X0_1695947112.5326\",\"due_date\":\"2023-09-29T07:25:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-09-28T19:25:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhf8buwkz2wjst4ebph/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 00:26:32','2023-09-29 00:26:32'),(9553,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  845\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-28T18:30:23-06:00\",\"transaction\":{\"id\":\"trhf8buwkz2wjst4ebph\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-28T19:25:19-06:00\",\"operation_date\":\"2023-09-28T18:26:38-06:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"CD474F6341AEFFD65F93084D0DAE3453_UYL7IRW9X0_1695947112.5326\",\"due_date\":\"2023-09-29T07:25:19-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-09-28T19:25:19-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 00:30:24','2023-09-29 00:30:24'),(9554,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  885\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T20:09:19-05:00\",\"transaction\":{\"id\":\"trz8y5r3ffqmbzpznvml\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-28T20:09:19-05:00\",\"operation_date\":\"2023-09-28T20:09:19-05:00\",\"description\":\"Pago Mensual academia: Mathias Aguirre Rojas (1243088137)\",\"error_message\":null,\"order_id\":\"3770282AE7C0E576D1017A97A9260A3F_0H87XSAMPO_1695949753.4492\",\"amount\":105000.00,\"customer\":{\"name\":\"jose\",\"last_name\":\"aguirre cardona\",\"email\":\"jac.18@hotmail.com\",\"phone_number\":\"3004112843\",\"address\":null,\"creation_date\":\"2023-09-28T20:09:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz8y5r3ffqmbzpznvml/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-29 01:09:20','2023-09-29 01:09:20'),(9555,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1134\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T20:13:02-05:00\",\"transaction\":{\"id\":\"trz8y5r3ffqmbzpznvml\",\"authorization\":\"201302\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-28T20:09:19-05:00\",\"operation_date\":\"2023-09-28T20:13:02-05:00\",\"description\":\"Pago Mensual academia: Mathias Aguirre Rojas (1243088137)\",\"error_message\":null,\"order_id\":\"3770282AE7C0E576D1017A97A9260A3F_0H87XSAMPO_1695949753.4492\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX4375\",\"holder_name\":\"Jose Aguirre\",\"expiration_year\":\"26\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":105000.00,\"customer\":{\"name\":\"jose\",\"last_name\":\"aguirre cardona\",\"email\":\"jac.18@hotmail.com\",\"phone_number\":\"3004112843\",\"address\":null,\"creation_date\":\"2023-09-28T20:09:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz8y5r3ffqmbzpznvml/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-29 01:13:03','2023-09-29 01:13:03'),(9556,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-28T20:14:13-05:00\",\"transaction\":{\"id\":\"tr22ebinazegdkfltxtl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-28T20:13:11-05:00\",\"operation_date\":\"2023-09-28T20:13:11-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":null,\"order_id\":\"CD474F6341AEFFD65F93084D0DAE3453_UYL7IRW9X0_1695949988.9319\",\"due_date\":\"2023-09-29T08:13:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-09-28T20:13:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr22ebinazegdkfltxtl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 01:14:14','2023-09-29 01:14:14'),(9557,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-28T20:15:33-05:00\",\"transaction\":{\"id\":\"tr22ebinazegdkfltxtl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"186807514\",\"creation_date\":\"2023-09-28T20:13:11-05:00\",\"operation_date\":\"2023-09-28T20:15:20-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez garcia (1034993587)\",\"error_message\":null,\"order_id\":\"CD474F6341AEFFD65F93084D0DAE3453_UYL7IRW9X0_1695949988.9319\",\"due_date\":\"2023-09-29T08:13:11-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula\",\"last_name\":\"garcia garcia\",\"email\":\"andregg79@hotmail.com\",\"phone_number\":\"3163675223\",\"address\":null,\"creation_date\":\"2023-09-28T20:13:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 01:15:33','2023-09-29 01:15:33'),(9558,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-09-29T02:14:11-06:00\",\"transaction\":{\"id\":\"trzetqgnd7mirqmqhyrj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-27T13:44:47-06:00\",\"operation_date\":\"2023-09-27T13:44:47-06:00\",\"description\":\"Pago Mensual academia: Samuel Sepulveda Taborda (1140418367)\",\"error_message\":null,\"order_id\":\"73C14008D55C730E10BB9412A5BE1A16_7YBESLGOFM_1695840283.3504\",\"due_date\":\"2023-09-28T01:44:47-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Guillermo\",\"last_name\":\"Sepulveda\",\"email\":\"memosep45@gmail.com\",\"phone_number\":\"3022239656\",\"address\":null,\"creation_date\":\"2023-09-27T13:44:47-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzetqgnd7mirqmqhyrj/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 08:14:12','2023-09-29 08:14:12'),(9559,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T09:00:55-05:00\",\"transaction\":{\"id\":\"trrzrywnwha3zzyiphml\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T09:00:15-05:00\",\"operation_date\":\"2023-09-29T09:00:15-05:00\",\"description\":\"Pago Mensual academia: Emilio Cano Quintero (1034927865)\",\"error_message\":null,\"order_id\":\"99296AD1EB8CD89661D163DDEA3F16F1_VXHE3SJRK6_1695995985.4859\",\"due_date\":\"2023-09-29T21:00:15-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Cano Quintero\",\"email\":\"stewart.cano@global.komatsu\",\"phone_number\":\"3183819449\",\"address\":null,\"creation_date\":\"2023-09-29T09:00:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrzrywnwha3zzyiphml/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 14:00:55','2023-09-29 14:00:55'),(9560,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T09:02:04-05:00\",\"transaction\":{\"id\":\"trrzrywnwha3zzyiphml\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"187376470\",\"creation_date\":\"2023-09-29T09:00:15-05:00\",\"operation_date\":\"2023-09-29T09:02:00-05:00\",\"description\":\"Pago Mensual academia: Emilio Cano Quintero (1034927865)\",\"error_message\":null,\"order_id\":\"99296AD1EB8CD89661D163DDEA3F16F1_VXHE3SJRK6_1695995985.4859\",\"due_date\":\"2023-09-29T21:00:15-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emilio\",\"last_name\":\"Cano Quintero\",\"email\":\"stewart.cano@global.komatsu\",\"phone_number\":\"3183819449\",\"address\":null,\"creation_date\":\"2023-09-29T09:00:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 14:02:05','2023-09-29 14:02:05'),(9561,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T09:13:30-05:00\",\"transaction\":{\"id\":\"trmjaurslj1xjx7lkpt2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T09:12:42-05:00\",\"operation_date\":\"2023-09-29T09:12:42-05:00\",\"description\":\"Pago Mensual academia: Benjamín Gutiérrez Restrepo (1040578871)\",\"error_message\":null,\"order_id\":\"A5E308070BD6DD3CC56283F2313522DE_710VCA6IP9_1695996747.0886\",\"due_date\":\"2023-09-29T21:12:42-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristian\",\"last_name\":\"Gutierrez Gaviria\",\"email\":\"cristiangutierrezg22@hotmail.com\",\"phone_number\":\"3104093721\",\"address\":null,\"creation_date\":\"2023-09-29T09:12:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmjaurslj1xjx7lkpt2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 14:13:30','2023-09-29 14:13:30'),(9562,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  829\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T09:14:30-05:00\",\"transaction\":{\"id\":\"trmjaurslj1xjx7lkpt2\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"187407247\",\"creation_date\":\"2023-09-29T09:12:42-05:00\",\"operation_date\":\"2023-09-29T09:14:18-05:00\",\"description\":\"Pago Mensual academia: Benjamín Gutiérrez Restrepo (1040578871)\",\"error_message\":null,\"order_id\":\"A5E308070BD6DD3CC56283F2313522DE_710VCA6IP9_1695996747.0886\",\"due_date\":\"2023-09-29T21:12:42-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristian\",\"last_name\":\"Gutierrez Gaviria\",\"email\":\"cristiangutierrezg22@hotmail.com\",\"phone_number\":\"3104093721\",\"address\":null,\"creation_date\":\"2023-09-29T09:12:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 14:14:30','2023-09-29 14:14:30'),(9563,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T09:45:01-05:00\",\"transaction\":{\"id\":\"trjiammqnzsosjafdsu3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T09:44:21-05:00\",\"operation_date\":\"2023-09-29T09:44:21-05:00\",\"description\":\"Pago Mensual academia: juan jose gomez mejia (1036454478)\",\"error_message\":null,\"order_id\":\"2BCE32ED409F5EBCEE2A7B417AD9BEED_KJC8PZ42AO_1695998649.6257\",\"due_date\":\"2023-09-29T21:44:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana carolina\",\"last_name\":\"mejia guzman\",\"email\":\"dianacaro5075@gmail.com\",\"phone_number\":\"3015921180\",\"address\":null,\"creation_date\":\"2023-09-29T09:44:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjiammqnzsosjafdsu3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 14:45:02','2023-09-29 14:45:02'),(9564,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T09:45:55-05:00\",\"transaction\":{\"id\":\"trjiammqnzsosjafdsu3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"187489791\",\"creation_date\":\"2023-09-29T09:44:21-05:00\",\"operation_date\":\"2023-09-29T09:45:46-05:00\",\"description\":\"Pago Mensual academia: juan jose gomez mejia (1036454478)\",\"error_message\":null,\"order_id\":\"2BCE32ED409F5EBCEE2A7B417AD9BEED_KJC8PZ42AO_1695998649.6257\",\"due_date\":\"2023-09-29T21:44:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"diana carolina\",\"last_name\":\"mejia guzman\",\"email\":\"dianacaro5075@gmail.com\",\"phone_number\":\"3015921180\",\"address\":null,\"creation_date\":\"2023-09-29T09:44:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 14:45:56','2023-09-29 14:45:56'),(9565,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T10:02:36-05:00\",\"transaction\":{\"id\":\"trtfa1qq3hhkwaqf09fa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T10:01:33-05:00\",\"operation_date\":\"2023-09-29T10:01:33-05:00\",\"description\":\"Pago Mensual academia: jeronimo zuluaga cardona (1023530744)\",\"error_message\":null,\"order_id\":\"0B0B0994D12AD343511ADFBFC364256E_QUKICS3HPW_1695999687.4668\",\"due_date\":\"2023-09-29T22:01:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"cardona londoño\",\"email\":\"fevi19@hotmail.com\",\"phone_number\":\"3157461215\",\"address\":null,\"creation_date\":\"2023-09-29T10:01:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtfa1qq3hhkwaqf09fa/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 15:02:37','2023-09-29 15:02:37'),(9566,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  848\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-29T09:06:20-06:00\",\"transaction\":{\"id\":\"trtfa1qq3hhkwaqf09fa\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-29T10:01:33-06:00\",\"operation_date\":\"2023-09-29T09:02:48-06:00\",\"description\":\"Pago Mensual academia: jeronimo zuluaga cardona (1023530744)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"0B0B0994D12AD343511ADFBFC364256E_QUKICS3HPW_1695999687.4668\",\"due_date\":\"2023-09-29T22:01:33-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"cardona londoño\",\"email\":\"fevi19@hotmail.com\",\"phone_number\":\"3157461215\",\"address\":null,\"creation_date\":\"2023-09-29T10:01:33-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 15:06:20','2023-09-29 15:06:20'),(9567,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T10:13:21-05:00\",\"transaction\":{\"id\":\"trkmsgxk45lghb58r1mw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T10:11:40-05:00\",\"operation_date\":\"2023-09-29T10:11:40-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Barrientos Giraldo (1013361257)\",\"error_message\":null,\"order_id\":\"E0C7CCC47B2613C82D1073A4214DEECC_PHO2DNVC6A_1696000295.6248\",\"due_date\":\"2023-09-29T22:11:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana\",\"last_name\":\"Giraldo\",\"email\":\"yuel66@hotmail.com\",\"phone_number\":\"3107142276\",\"address\":null,\"creation_date\":\"2023-09-29T10:11:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkmsgxk45lghb58r1mw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 15:13:22','2023-09-29 15:13:22'),(9568,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T09:15:27-06:00\",\"transaction\":{\"id\":\"trkmsgxk45lghb58r1mw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"187568478\",\"creation_date\":\"2023-09-29T10:11:40-06:00\",\"operation_date\":\"2023-09-29T09:14:30-06:00\",\"description\":\"Pago Mensual academia: Miguel Angel Barrientos Giraldo (1013361257)\",\"error_message\":null,\"order_id\":\"E0C7CCC47B2613C82D1073A4214DEECC_PHO2DNVC6A_1696000295.6248\",\"due_date\":\"2023-09-29T22:11:40-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eliana\",\"last_name\":\"Giraldo\",\"email\":\"yuel66@hotmail.com\",\"phone_number\":\"3107142276\",\"address\":null,\"creation_date\":\"2023-09-29T10:11:40-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 15:15:27','2023-09-29 15:15:27'),(9569,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T11:48:10-05:00\",\"transaction\":{\"id\":\"tr4bbmvyzfmztzhnfgkh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T11:47:33-05:00\",\"operation_date\":\"2023-09-29T11:47:33-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Garcia Gonzalez (1038876109)\",\"error_message\":null,\"order_id\":\"7D265AA7147BD3913FB84C7963A209D1_G9XUP30MWJ_1696004957.2609\",\"due_date\":\"2023-09-29T23:47:33-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Garcia Gonzalez\",\"email\":\"nata.1201@hotmail.com\",\"phone_number\":\"3145195711\",\"address\":null,\"creation_date\":\"2023-09-29T11:47:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4bbmvyzfmztzhnfgkh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 16:48:10','2023-09-29 16:48:10'),(9570,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T11:49:38-05:00\",\"transaction\":{\"id\":\"tr4bbmvyzfmztzhnfgkh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"187855086\",\"creation_date\":\"2023-09-29T11:47:33-05:00\",\"operation_date\":\"2023-09-29T11:49:20-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Garcia Gonzalez (1038876109)\",\"error_message\":null,\"order_id\":\"7D265AA7147BD3913FB84C7963A209D1_G9XUP30MWJ_1696004957.2609\",\"due_date\":\"2023-09-29T23:47:33-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Emmanuel\",\"last_name\":\"Garcia Gonzalez\",\"email\":\"nata.1201@hotmail.com\",\"phone_number\":\"3145195711\",\"address\":null,\"creation_date\":\"2023-09-29T11:47:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 16:49:39','2023-09-29 16:49:39'),(9571,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T12:13:59-05:00\",\"transaction\":{\"id\":\"truwt7nzsc5zifobhjie\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T12:12:10-05:00\",\"operation_date\":\"2023-09-29T12:12:10-05:00\",\"description\":\"Pago Mensual academia: Nicolas Moreno Mafla (1034998168)\",\"error_message\":null,\"order_id\":\"7E05295A468401EC66E8C337855022ED_GFHURWDIZJ_1696007527.719\",\"due_date\":\"2023-09-30T00:12:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ANDREA\",\"last_name\":\"MAFLA DE LA PAVA\",\"email\":\"mafladelapava@gmail.com\",\"phone_number\":\"3114703992\",\"address\":null,\"creation_date\":\"2023-09-29T12:12:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truwt7nzsc5zifobhjie/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 17:14:00','2023-09-29 17:14:00'),(9572,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T12:17:25-05:00\",\"transaction\":{\"id\":\"truwt7nzsc5zifobhjie\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"187934804\",\"creation_date\":\"2023-09-29T12:12:10-05:00\",\"operation_date\":\"2023-09-29T12:16:27-05:00\",\"description\":\"Pago Mensual academia: Nicolas Moreno Mafla (1034998168)\",\"error_message\":null,\"order_id\":\"7E05295A468401EC66E8C337855022ED_GFHURWDIZJ_1696007527.719\",\"due_date\":\"2023-09-30T00:12:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ANDREA\",\"last_name\":\"MAFLA DE LA PAVA\",\"email\":\"mafladelapava@gmail.com\",\"phone_number\":\"3114703992\",\"address\":null,\"creation_date\":\"2023-09-29T12:12:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 17:17:26','2023-09-29 17:17:26'),(9573,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T12:44:55-05:00\",\"transaction\":{\"id\":\"trd845cdnykulkyllg41\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T12:44:09-05:00\",\"operation_date\":\"2023-09-29T12:44:09-05:00\",\"description\":\"Pago Mensual academia: Elian Matias Pino Pareja (1033202694)\",\"error_message\":null,\"order_id\":\"3335881E06D4D23091389226225E17C7_LEK7W9S31O_1696009444.6346\",\"due_date\":\"2023-09-30T00:44:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yurliana faysury\",\"last_name\":\"pareja montoya\",\"email\":\"faysurypareja@gmail.com\",\"phone_number\":\"3043293449\",\"address\":null,\"creation_date\":\"2023-09-29T12:44:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trd845cdnykulkyllg41/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 17:44:55','2023-09-29 17:44:55'),(9574,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T11:45:55-06:00\",\"transaction\":{\"id\":\"trd845cdnykulkyllg41\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"188025242\",\"creation_date\":\"2023-09-29T12:44:09-06:00\",\"operation_date\":\"2023-09-29T11:45:52-06:00\",\"description\":\"Pago Mensual academia: Elian Matias Pino Pareja (1033202694)\",\"error_message\":null,\"order_id\":\"3335881E06D4D23091389226225E17C7_LEK7W9S31O_1696009444.6346\",\"due_date\":\"2023-09-30T00:44:09-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yurliana faysury\",\"last_name\":\"pareja montoya\",\"email\":\"faysurypareja@gmail.com\",\"phone_number\":\"3043293449\",\"address\":null,\"creation_date\":\"2023-09-29T12:44:09-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 17:45:56','2023-09-29 17:45:56'),(9575,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  897\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T14:48:36-05:00\",\"transaction\":{\"id\":\"tratq3osljardgqtozf0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-29T14:48:36-05:00\",\"operation_date\":\"2023-09-29T14:48:36-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez pacheco (1019906046)\",\"error_message\":null,\"order_id\":\"0530E22DEA41E24A039563139CDC215E_7TGXEAPB6O_1696016906.5324\",\"amount\":165900.00,\"customer\":{\"name\":\"Hugo andres\",\"last_name\":\"alvarez\",\"email\":\"hugoandres.alvarez@gmail.com\",\"phone_number\":\"3005865449\",\"address\":null,\"creation_date\":\"2023-09-29T14:48:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tratq3osljardgqtozf0/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-29 19:48:37','2023-09-29 19:48:37'),(9576,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1144\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T14:49:41-05:00\",\"transaction\":{\"id\":\"tratq3osljardgqtozf0\",\"authorization\":\"144939\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-29T14:48:36-05:00\",\"operation_date\":\"2023-09-29T14:49:39-05:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez pacheco (1019906046)\",\"error_message\":null,\"order_id\":\"0530E22DEA41E24A039563139CDC215E_7TGXEAPB6O_1696016906.5324\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459321XXXXXX2259\",\"holder_name\":\"Hugo Álvarez \",\"expiration_year\":\"26\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Hugo andres\",\"last_name\":\"alvarez\",\"email\":\"hugoandres.alvarez@gmail.com\",\"phone_number\":\"3005865449\",\"address\":null,\"creation_date\":\"2023-09-29T14:48:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tratq3osljardgqtozf0/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-29 19:49:41','2023-09-29 19:49:41'),(9577,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T15:43:05-05:00\",\"transaction\":{\"id\":\"tr7ctflmurheo7od2xpc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T15:42:35-05:00\",\"operation_date\":\"2023-09-29T15:42:35-05:00\",\"description\":\"Pago Mensual academia: Miguel Ospina Gómez (1021810313)\",\"error_message\":null,\"order_id\":\"22785DD2577BE2CE28EF79FEBE80DB10_HYFCBT1AK9_1696020148.4872\",\"due_date\":\"2023-09-30T03:42:35-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Ospina Marín\",\"email\":\"Danielospinam@gmail.com\",\"phone_number\":\"3223493589\",\"address\":null,\"creation_date\":\"2023-09-29T15:42:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7ctflmurheo7od2xpc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 20:43:05','2023-09-29 20:43:05'),(9578,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T15:44:18-05:00\",\"transaction\":{\"id\":\"trz0rgiddtoruyyiz2qg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-29T15:44:18-05:00\",\"operation_date\":\"2023-09-29T15:44:18-05:00\",\"description\":\"Pago Mensual academia: Matias Trujillo Peñaranda (1141526531)\",\"error_message\":null,\"order_id\":\"769AC34A4012AB69C069DE0BAB7D9E81_8QHKT6RX5U_1696020252.2055\",\"amount\":165900.00,\"customer\":{\"name\":\"Sorell M\",\"last_name\":\"Peñaranda\",\"email\":\"sorellmayely@gmail.com\",\"phone_number\":\"3123610316\",\"address\":null,\"creation_date\":\"2023-09-29T15:44:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz0rgiddtoruyyiz2qg/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-29 20:44:19','2023-09-29 20:44:19'),(9579,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1150\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T15:45:11-05:00\",\"transaction\":{\"id\":\"trz0rgiddtoruyyiz2qg\",\"authorization\":\"154511\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-29T15:44:18-05:00\",\"operation_date\":\"2023-09-29T15:45:10-05:00\",\"description\":\"Pago Mensual academia: Matias Trujillo Peñaranda (1141526531)\",\"error_message\":null,\"order_id\":\"769AC34A4012AB69C069DE0BAB7D9E81_8QHKT6RX5U_1696020252.2055\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX0922\",\"holder_name\":\"Juan Pablo Trujillo \",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Sorell M\",\"last_name\":\"Peñaranda\",\"email\":\"sorellmayely@gmail.com\",\"phone_number\":\"3123610316\",\"address\":null,\"creation_date\":\"2023-09-29T15:44:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz0rgiddtoruyyiz2qg/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-29 20:45:12','2023-09-29 20:45:12'),(9580,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  844\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-29T14:45:49-06:00\",\"transaction\":{\"id\":\"tr7ctflmurheo7od2xpc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-29T15:42:35-06:00\",\"operation_date\":\"2023-09-29T14:43:16-06:00\",\"description\":\"Pago Mensual academia: Miguel Ospina Gómez (1021810313)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"22785DD2577BE2CE28EF79FEBE80DB10_HYFCBT1AK9_1696020148.4872\",\"due_date\":\"2023-09-30T03:42:35-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Ospina Marín\",\"email\":\"Danielospinam@gmail.com\",\"phone_number\":\"3223493589\",\"address\":null,\"creation_date\":\"2023-09-29T15:42:35-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 20:45:50','2023-09-29 20:45:50'),(9581,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T15:47:10-05:00\",\"transaction\":{\"id\":\"trt62585zcsqfxkkxw3a\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-29T15:47:10-05:00\",\"operation_date\":\"2023-09-29T15:47:10-05:00\",\"description\":\"Pago Mensual academia: Matias Trujillo Peñaranda (1141526531)\",\"error_message\":null,\"order_id\":\"D7B76EDF790923BF7177F7EBBA5978DF_1L0NW3PCTE_1696020423.5059\",\"amount\":165900.00,\"customer\":{\"name\":\"Sorell M\",\"last_name\":\"Peñaranda\",\"email\":\"sorellmayely@gmail.com\",\"phone_number\":\"3123610316\",\"address\":null,\"creation_date\":\"2023-09-29T15:47:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trt62585zcsqfxkkxw3a/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-29 20:47:11','2023-09-29 20:47:11'),(9582,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1150\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T15:47:45-05:00\",\"transaction\":{\"id\":\"trt62585zcsqfxkkxw3a\",\"authorization\":\"154744\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-29T15:47:10-05:00\",\"operation_date\":\"2023-09-29T15:47:44-05:00\",\"description\":\"Pago Mensual academia: Matias Trujillo Peñaranda (1141526531)\",\"error_message\":null,\"order_id\":\"D7B76EDF790923BF7177F7EBBA5978DF_1L0NW3PCTE_1696020423.5059\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX0922\",\"holder_name\":\"Juan Pablo Trujillo \",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Sorell M\",\"last_name\":\"Peñaranda\",\"email\":\"sorellmayely@gmail.com\",\"phone_number\":\"3123610316\",\"address\":null,\"creation_date\":\"2023-09-29T15:47:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trt62585zcsqfxkkxw3a/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-29 20:47:45','2023-09-29 20:47:45'),(9583,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T16:40:46-05:00\",\"transaction\":{\"id\":\"trxrvnjjpxgkntifoiqb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T16:38:38-05:00\",\"operation_date\":\"2023-09-29T16:38:38-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":null,\"order_id\":\"4A71E49F6BDA0C9B7642F39F1AA1F567_ZLO5DABTJR_1696023509.1731\",\"due_date\":\"2023-09-30T04:38:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-09-29T16:38:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxrvnjjpxgkntifoiqb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 21:40:46','2023-09-29 21:40:46'),(9584,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-29T15:45:30-06:00\",\"transaction\":{\"id\":\"trxrvnjjpxgkntifoiqb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-29T16:38:38-06:00\",\"operation_date\":\"2023-09-28T23:00:00-06:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"4A71E49F6BDA0C9B7642F39F1AA1F567_ZLO5DABTJR_1696023509.1731\",\"due_date\":\"2023-09-30T04:38:38-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-09-29T16:38:38-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 21:45:30','2023-09-29 21:45:30'),(9585,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T17:04:39-05:00\",\"transaction\":{\"id\":\"trnsyg78h65dzoe3v0m4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T17:03:27-05:00\",\"operation_date\":\"2023-09-29T17:03:27-05:00\",\"description\":\"Pago Mensual academia: martin bermudez rivera (1035438074)\",\"error_message\":null,\"order_id\":\"590494D54EBE8EDA5858C48F34E12B51_9JQI8LW4UY_1696024999.0403\",\"due_date\":\"2023-09-30T05:03:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"john fredy\",\"last_name\":\"bermudez alvarez\",\"email\":\"jhonfredyb@gmail.com\",\"phone_number\":\"3147633184\",\"address\":null,\"creation_date\":\"2023-09-29T17:03:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnsyg78h65dzoe3v0m4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 22:04:40','2023-09-29 22:04:40'),(9586,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T17:05:38-05:00\",\"transaction\":{\"id\":\"trnsyg78h65dzoe3v0m4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"188839411\",\"creation_date\":\"2023-09-29T17:03:27-05:00\",\"operation_date\":\"2023-09-29T17:05:28-05:00\",\"description\":\"Pago Mensual academia: martin bermudez rivera (1035438074)\",\"error_message\":null,\"order_id\":\"590494D54EBE8EDA5858C48F34E12B51_9JQI8LW4UY_1696024999.0403\",\"due_date\":\"2023-09-30T05:03:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"john fredy\",\"last_name\":\"bermudez alvarez\",\"email\":\"jhonfredyb@gmail.com\",\"phone_number\":\"3147633184\",\"address\":null,\"creation_date\":\"2023-09-29T17:03:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 22:05:39','2023-09-29 22:05:39'),(9587,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T17:42:26-05:00\",\"transaction\":{\"id\":\"trlklmfjujj2erwrfuja\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T17:41:18-05:00\",\"operation_date\":\"2023-09-29T17:41:18-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":null,\"order_id\":\"4A71E49F6BDA0C9B7642F39F1AA1F567_ZLO5DABTJR_1696027147.5763\",\"due_date\":\"2023-09-30T05:41:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-09-29T17:41:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlklmfjujj2erwrfuja/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 22:42:26','2023-09-29 22:42:26'),(9588,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T17:45:30-05:00\",\"transaction\":{\"id\":\"trlklmfjujj2erwrfuja\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"188957188\",\"creation_date\":\"2023-09-29T17:41:18-05:00\",\"operation_date\":\"2023-09-29T00:00:00-05:00\",\"description\":\"Pago Mensual academia: isaac Salazar alvarez (1013359317)\",\"error_message\":null,\"order_id\":\"4A71E49F6BDA0C9B7642F39F1AA1F567_ZLO5DABTJR_1696027147.5763\",\"due_date\":\"2023-09-30T05:41:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isaac\",\"last_name\":\"salazar alvarez\",\"email\":\"alvarezmariana0206@gmail.com\",\"phone_number\":\"3215608626\",\"address\":null,\"creation_date\":\"2023-09-29T17:41:18-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-29 22:45:31','2023-09-29 22:45:31'),(9589,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T19:16:21-05:00\",\"transaction\":{\"id\":\"tr8zz95dvaqj1iipupbx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T19:15:31-05:00\",\"operation_date\":\"2023-09-29T19:15:31-05:00\",\"description\":\"Pago Mensual academia: isaac david Alvarez Callejas (1023659076)\",\"error_message\":null,\"order_id\":\"EF35613FC5FA4C4C512D552533F5E6F2_VKIO1CE5B4_1696032927.3668\",\"due_date\":\"2023-09-30T07:15:31-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"lisandro\",\"last_name\":\"Alvarez\",\"email\":\"lisoalvarez1035@gmail.com\",\"phone_number\":\"3116065670\",\"address\":null,\"creation_date\":\"2023-09-29T19:15:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8zz95dvaqj1iipupbx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 00:16:22','2023-09-30 00:16:22'),(9590,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T18:18:23-06:00\",\"transaction\":{\"id\":\"tr8zz95dvaqj1iipupbx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"189236272\",\"creation_date\":\"2023-09-29T19:15:31-06:00\",\"operation_date\":\"2023-09-29T18:17:33-06:00\",\"description\":\"Pago Mensual academia: isaac david Alvarez Callejas (1023659076)\",\"error_message\":null,\"order_id\":\"EF35613FC5FA4C4C512D552533F5E6F2_VKIO1CE5B4_1696032927.3668\",\"due_date\":\"2023-09-30T07:15:31-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"lisandro\",\"last_name\":\"Alvarez\",\"email\":\"lisoalvarez1035@gmail.com\",\"phone_number\":\"3116065670\",\"address\":null,\"creation_date\":\"2023-09-29T19:15:31-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 00:18:24','2023-09-30 00:18:24'),(9591,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T19:19:27-05:00\",\"transaction\":{\"id\":\"trretcldxk1bzpp2lvxn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T19:17:44-05:00\",\"operation_date\":\"2023-09-29T19:17:44-05:00\",\"description\":\"Pago Mensual academia: andres felipe jimenez balbin (1017938453)\",\"error_message\":null,\"order_id\":\"E3B0AB92511CE1F46960BED57F65F532_GBTRDNA732_1696033058.9283\",\"due_date\":\"2023-09-30T07:17:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"olga yaned\",\"last_name\":\"balbin cossio\",\"email\":\"olgandy.2019@hotmail.com\",\"phone_number\":\"3167851655\",\"address\":null,\"creation_date\":\"2023-09-29T19:17:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trretcldxk1bzpp2lvxn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 00:19:28','2023-09-30 00:19:28'),(9592,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T19:23:01-05:00\",\"transaction\":{\"id\":\"trretcldxk1bzpp2lvxn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"189244768\",\"creation_date\":\"2023-09-29T19:17:44-05:00\",\"operation_date\":\"2023-09-29T19:22:10-05:00\",\"description\":\"Pago Mensual academia: andres felipe jimenez balbin (1017938453)\",\"error_message\":null,\"order_id\":\"E3B0AB92511CE1F46960BED57F65F532_GBTRDNA732_1696033058.9283\",\"due_date\":\"2023-09-30T07:17:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"olga yaned\",\"last_name\":\"balbin cossio\",\"email\":\"olgandy.2019@hotmail.com\",\"phone_number\":\"3167851655\",\"address\":null,\"creation_date\":\"2023-09-29T19:17:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 00:23:02','2023-09-30 00:23:02'),(9593,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T20:52:36-05:00\",\"transaction\":{\"id\":\"trsryrhrutslxvhbpmkd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T20:51:38-05:00\",\"operation_date\":\"2023-09-29T20:51:38-05:00\",\"description\":\"Pago Mensual academia: martin parra acevedo (1021939537)\",\"error_message\":null,\"order_id\":\"44B422A6D1DF1D47DB5D50A8D0AACA5D_V51LHEF3PX_1696038695.5408\",\"due_date\":\"2023-09-30T08:51:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"acevedo giraldo\",\"email\":\"julyace05@hotmail.com\",\"phone_number\":\"3022542705\",\"address\":null,\"creation_date\":\"2023-09-29T20:51:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsryrhrutslxvhbpmkd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 01:52:37','2023-09-30 01:52:37'),(9594,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T19:54:19-06:00\",\"transaction\":{\"id\":\"trsryrhrutslxvhbpmkd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"189476704\",\"creation_date\":\"2023-09-29T20:51:38-06:00\",\"operation_date\":\"2023-09-29T19:53:25-06:00\",\"description\":\"Pago Mensual academia: martin parra acevedo (1021939537)\",\"error_message\":null,\"order_id\":\"44B422A6D1DF1D47DB5D50A8D0AACA5D_V51LHEF3PX_1696038695.5408\",\"due_date\":\"2023-09-30T08:51:38-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"acevedo giraldo\",\"email\":\"julyace05@hotmail.com\",\"phone_number\":\"3022542705\",\"address\":null,\"creation_date\":\"2023-09-29T20:51:38-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 01:54:20','2023-09-30 01:54:20'),(9595,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T20:58:13-05:00\",\"transaction\":{\"id\":\"trnvu5foq431pugg6wjm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T20:57:35-05:00\",\"operation_date\":\"2023-09-29T20:57:35-05:00\",\"description\":\"Pago Mensual academia: Rafael Jaime Iguarán Vargas (1035007709)\",\"error_message\":null,\"order_id\":\"872DD316EB8A432CBC63F141E2D68DED_XE21K0JYI8_1696039050.2795\",\"due_date\":\"2023-09-30T08:57:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Antonella\",\"last_name\":\"Vargas Sofán\",\"email\":\"anchovar@gmail.com\",\"phone_number\":\"3145964879\",\"address\":null,\"creation_date\":\"2023-09-29T20:57:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnvu5foq431pugg6wjm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 01:58:13','2023-09-30 01:58:13'),(9596,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-29T20:21:11-06:00\",\"transaction\":{\"id\":\"trnvu5foq431pugg6wjm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-29T20:57:35-06:00\",\"operation_date\":\"2023-09-29T20:00:20-06:00\",\"description\":\"Pago Mensual academia: Rafael Jaime Iguarán Vargas (1035007709)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"872DD316EB8A432CBC63F141E2D68DED_XE21K0JYI8_1696039050.2795\",\"due_date\":\"2023-09-30T08:57:35-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Antonella\",\"last_name\":\"Vargas Sofán\",\"email\":\"anchovar@gmail.com\",\"phone_number\":\"3145964879\",\"address\":null,\"creation_date\":\"2023-09-29T20:57:35-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 02:21:13','2023-09-30 02:21:13'),(9597,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T21:58:26-05:00\",\"transaction\":{\"id\":\"trcvxkyvdb0yircajbvy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T21:57:31-05:00\",\"operation_date\":\"2023-09-29T21:57:31-05:00\",\"description\":\"Pago Mensual academia: Martin Hernandez Gomez (1033267201)\",\"error_message\":null,\"order_id\":\"76C538125FC5C9EC6AD1D05650A57DE5_8TFRDABIEO_1696042648.7821\",\"due_date\":\"2023-09-30T09:57:31-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Francisco\",\"last_name\":\"Hernandez\",\"email\":\"pacho8612@gmail.com\",\"phone_number\":\"3117897533\",\"address\":null,\"creation_date\":\"2023-09-29T21:57:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcvxkyvdb0yircajbvy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 02:58:26','2023-09-30 02:58:26'),(9598,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  842\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-29T21:09:17-06:00\",\"transaction\":{\"id\":\"trcvxkyvdb0yircajbvy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-29T21:57:31-06:00\",\"operation_date\":\"2023-09-29T21:57:31-06:00\",\"description\":\"Pago Mensual academia: Martin Hernandez Gomez (1033267201)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"76C538125FC5C9EC6AD1D05650A57DE5_8TFRDABIEO_1696042648.7821\",\"due_date\":\"2023-09-30T09:57:31-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Francisco\",\"last_name\":\"Hernandez\",\"email\":\"pacho8612@gmail.com\",\"phone_number\":\"3117897533\",\"address\":null,\"creation_date\":\"2023-09-29T21:57:31-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 03:09:17','2023-09-30 03:09:17'),(9599,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T22:23:18-05:00\",\"transaction\":{\"id\":\"trtv3epvsxjy8hk1m9a9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T22:22:41-05:00\",\"operation_date\":\"2023-09-29T22:22:41-05:00\",\"description\":\"Pago Mensual academia: Martin Hernandez Gomez (1033267201)\",\"error_message\":null,\"order_id\":\"76C538125FC5C9EC6AD1D05650A57DE5_8TFRDABIEO_1696044158.7018\",\"due_date\":\"2023-09-30T10:22:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Francisco\",\"last_name\":\"Hernandez\",\"email\":\"pacho8612@gmail.com\",\"phone_number\":\"3117897533\",\"address\":null,\"creation_date\":\"2023-09-29T22:22:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtv3epvsxjy8hk1m9a9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 03:23:19','2023-09-30 03:23:19'),(9600,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T22:24:06-05:00\",\"transaction\":{\"id\":\"trtv3epvsxjy8hk1m9a9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"189647922\",\"creation_date\":\"2023-09-29T22:22:41-05:00\",\"operation_date\":\"2023-09-29T22:23:59-05:00\",\"description\":\"Pago Mensual academia: Martin Hernandez Gomez (1033267201)\",\"error_message\":null,\"order_id\":\"76C538125FC5C9EC6AD1D05650A57DE5_8TFRDABIEO_1696044158.7018\",\"due_date\":\"2023-09-30T10:22:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Francisco\",\"last_name\":\"Hernandez\",\"email\":\"pacho8612@gmail.com\",\"phone_number\":\"3117897533\",\"address\":null,\"creation_date\":\"2023-09-29T22:22:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 03:24:07','2023-09-30 03:24:07'),(9601,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T22:40:03-05:00\",\"transaction\":{\"id\":\"trwkwuddxqxupwexeof4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T22:38:28-05:00\",\"operation_date\":\"2023-09-29T22:38:28-05:00\",\"description\":\"Pago Mensual academia: JOAQUIN BARRIENTOS GOMEZ (1035011275)\",\"error_message\":null,\"order_id\":\"1D54C76F48F146C3B2D66DAF9D7F845E_V3APNZ4EMI_1696045103.2327\",\"due_date\":\"2023-09-30T10:38:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"HERNAN ANDRES\",\"last_name\":\"BARRIENTOS BETANCUR\",\"email\":\"hernan.barrientos@gmail.com\",\"phone_number\":\"3044809966\",\"address\":null,\"creation_date\":\"2023-09-29T22:38:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwkwuddxqxupwexeof4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 03:40:03','2023-09-30 03:40:03'),(9602,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T22:41:23-05:00\",\"transaction\":{\"id\":\"trwkwuddxqxupwexeof4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"189671768\",\"creation_date\":\"2023-09-29T22:38:28-05:00\",\"operation_date\":\"2023-09-29T22:41:04-05:00\",\"description\":\"Pago Mensual academia: JOAQUIN BARRIENTOS GOMEZ (1035011275)\",\"error_message\":null,\"order_id\":\"1D54C76F48F146C3B2D66DAF9D7F845E_V3APNZ4EMI_1696045103.2327\",\"due_date\":\"2023-09-30T10:38:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"HERNAN ANDRES\",\"last_name\":\"BARRIENTOS BETANCUR\",\"email\":\"hernan.barrientos@gmail.com\",\"phone_number\":\"3044809966\",\"address\":null,\"creation_date\":\"2023-09-29T22:38:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 03:41:23','2023-09-30 03:41:23'),(9603,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T22:44:27-05:00\",\"transaction\":{\"id\":\"trcnmv6ekn4spmcxnxxn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T22:43:09-05:00\",\"operation_date\":\"2023-09-29T22:43:09-05:00\",\"description\":\"Pago Mensual academia: JOAQUIN BARRIENTOS GOMEZ (1035011275)\",\"error_message\":null,\"order_id\":\"BD853B475D59821E100D3D24303D7747_PWYINZ914B_1696045385.9043\",\"due_date\":\"2023-09-30T10:43:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"HERNAN ANDRES\",\"last_name\":\"BARRIENTOS BETANCUR\",\"email\":\"hernan.barrientos@gmail.com\",\"phone_number\":\"3044809966\",\"address\":null,\"creation_date\":\"2023-09-29T22:43:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcnmv6ekn4spmcxnxxn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 03:44:27','2023-09-30 03:44:27'),(9604,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T22:45:58-05:00\",\"transaction\":{\"id\":\"trcnmv6ekn4spmcxnxxn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"189677473\",\"creation_date\":\"2023-09-29T22:43:09-05:00\",\"operation_date\":\"2023-09-29T22:45:40-05:00\",\"description\":\"Pago Mensual academia: JOAQUIN BARRIENTOS GOMEZ (1035011275)\",\"error_message\":null,\"order_id\":\"BD853B475D59821E100D3D24303D7747_PWYINZ914B_1696045385.9043\",\"due_date\":\"2023-09-30T10:43:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"HERNAN ANDRES\",\"last_name\":\"BARRIENTOS BETANCUR\",\"email\":\"hernan.barrientos@gmail.com\",\"phone_number\":\"3044809966\",\"address\":null,\"creation_date\":\"2023-09-29T22:43:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 03:45:59','2023-09-30 03:45:59'),(9605,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-29T22:59:31-05:00\",\"transaction\":{\"id\":\"tr9uau1mmb5whtaeqaz1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-29T22:58:05-05:00\",\"operation_date\":\"2023-09-29T22:58:05-05:00\",\"description\":\"Pago Mensual academia: SAMUEL GOMEZ RODAS (1021936511)\",\"error_message\":null,\"order_id\":\"8196E8D0F9EE7DFDFC7E11DBBFA30D77_6D0SJQUL29_1696046279.1575\",\"due_date\":\"2023-09-30T10:58:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"VICTOR HUGO\",\"last_name\":\"GOMEZ DAVID\",\"email\":\"victor.gomez82@hotmail.com\",\"phone_number\":\"3006949134\",\"address\":null,\"creation_date\":\"2023-09-29T22:58:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9uau1mmb5whtaeqaz1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 03:59:32','2023-09-30 03:59:32'),(9606,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T22:00:46-06:00\",\"transaction\":{\"id\":\"tr9uau1mmb5whtaeqaz1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"189695658\",\"creation_date\":\"2023-09-29T22:58:05-06:00\",\"operation_date\":\"2023-09-29T22:00:33-06:00\",\"description\":\"Pago Mensual academia: SAMUEL GOMEZ RODAS (1021936511)\",\"error_message\":null,\"order_id\":\"8196E8D0F9EE7DFDFC7E11DBBFA30D77_6D0SJQUL29_1696046279.1575\",\"due_date\":\"2023-09-30T10:58:05-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"VICTOR HUGO\",\"last_name\":\"GOMEZ DAVID\",\"email\":\"victor.gomez82@hotmail.com\",\"phone_number\":\"3006949134\",\"address\":null,\"creation_date\":\"2023-09-29T22:58:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 04:00:47','2023-09-30 04:00:47'),(9607,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-29T23:02:32-05:00\",\"transaction\":{\"id\":\"tr9uau1mmb5whtaeqaz1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"189695658\",\"creation_date\":\"2023-09-29T22:58:05-05:00\",\"operation_date\":\"2023-09-29T23:00:33-05:00\",\"description\":\"Pago Mensual academia: SAMUEL GOMEZ RODAS (1021936511)\",\"error_message\":null,\"order_id\":\"8196E8D0F9EE7DFDFC7E11DBBFA30D77_6D0SJQUL29_1696046279.1575\",\"due_date\":\"2023-09-30T10:58:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"VICTOR HUGO\",\"last_name\":\"GOMEZ DAVID\",\"email\":\"victor.gomez82@hotmail.com\",\"phone_number\":\"3006949134\",\"address\":null,\"creation_date\":\"2023-09-29T22:58:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 04:02:32','2023-09-30 04:02:32'),(9608,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  884\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T05:41:59-05:00\",\"transaction\":{\"id\":\"trim1wawaiozyixija6l\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-30T05:41:58-05:00\",\"operation_date\":\"2023-09-30T05:41:58-05:00\",\"description\":\"Pago Mensual academia: Isaac Vergara Perez (560661056)\",\"error_message\":null,\"order_id\":\"D278DF4919453195D221030324127A0E_E3OFCI1XJH_1696070516.4047\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Perez Mesa\",\"email\":\"santi900325@gmail.com\",\"phone_number\":\"3234598000\",\"address\":null,\"creation_date\":\"2023-09-30T05:41:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trim1wawaiozyixija6l/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-30 10:41:59','2023-09-30 10:41:59'),(9609,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1139\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T05:43:32-05:00\",\"transaction\":{\"id\":\"trim1wawaiozyixija6l\",\"authorization\":\"R00395\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-09-30T05:41:58-05:00\",\"operation_date\":\"2023-09-30T05:43:31-05:00\",\"description\":\"Pago Mensual academia: Isaac Vergara Perez (560661056)\",\"error_message\":null,\"order_id\":\"D278DF4919453195D221030324127A0E_E3OFCI1XJH_1696070516.4047\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549157XXXXXX5264\",\"holder_name\":\"Santiago Perez M\",\"expiration_year\":\"27\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Perez Mesa\",\"email\":\"santi900325@gmail.com\",\"phone_number\":\"3234598000\",\"address\":null,\"creation_date\":\"2023-09-30T05:41:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trim1wawaiozyixija6l/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-09-30 10:43:33','2023-09-30 10:43:33'),(9610,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T06:57:44-05:00\",\"transaction\":{\"id\":\"trq36kz7lcklgjvx3agq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T06:56:46-05:00\",\"operation_date\":\"2023-09-30T06:56:46-05:00\",\"description\":\"Pago Mensual academia: Martín Hurtatiz Zuluaga (1108260262)\",\"error_message\":null,\"order_id\":\"D4B40E6113D6268363E7A93D4CBE6875_SW9ZYR06EC_1696075000.4892\",\"due_date\":\"2023-09-30T18:56:46-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gentil\",\"last_name\":\"Hurtatiz Tovar\",\"email\":\"gehuto@gmail.com\",\"phone_number\":\"3168708060\",\"address\":null,\"creation_date\":\"2023-09-30T06:56:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq36kz7lcklgjvx3agq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 11:57:45','2023-09-30 11:57:45'),(9611,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T06:59:15-05:00\",\"transaction\":{\"id\":\"trq36kz7lcklgjvx3agq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"189879973\",\"creation_date\":\"2023-09-30T06:56:46-05:00\",\"operation_date\":\"2023-09-30T06:59:09-05:00\",\"description\":\"Pago Mensual academia: Martín Hurtatiz Zuluaga (1108260262)\",\"error_message\":null,\"order_id\":\"D4B40E6113D6268363E7A93D4CBE6875_SW9ZYR06EC_1696075000.4892\",\"due_date\":\"2023-09-30T18:56:46-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gentil\",\"last_name\":\"Hurtatiz Tovar\",\"email\":\"gehuto@gmail.com\",\"phone_number\":\"3168708060\",\"address\":null,\"creation_date\":\"2023-09-30T06:56:46-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 11:59:16','2023-09-30 11:59:16'),(9612,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T07:22:45-05:00\",\"transaction\":{\"id\":\"tr3rhnx47cphofl6npzz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T07:22:04-05:00\",\"operation_date\":\"2023-09-30T07:22:04-05:00\",\"description\":\"Pago Mensual academia: JERONIMO VALENCIA RUIZ (1020321138)\",\"error_message\":null,\"order_id\":\"35D02FEF7D9A24E237057162ABAB82B7_6RTO59DZY1_1696076516.0167\",\"due_date\":\"2023-09-30T19:22:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"VALENCIA\",\"email\":\"alejovalencia25@hotmail.com\",\"phone_number\":\"3147004765\",\"address\":null,\"creation_date\":\"2023-09-30T07:22:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3rhnx47cphofl6npzz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 12:22:46','2023-09-30 12:22:46'),(9613,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  849\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-30T07:23:26-05:00\",\"transaction\":{\"id\":\"tr3rhnx47cphofl6npzz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-30T07:22:04-05:00\",\"operation_date\":\"2023-09-30T07:23:18-05:00\",\"description\":\"Pago Mensual academia: JERONIMO VALENCIA RUIZ (1020321138)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"35D02FEF7D9A24E237057162ABAB82B7_6RTO59DZY1_1696076516.0167\",\"due_date\":\"2023-09-30T19:22:04-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"VALENCIA\",\"email\":\"alejovalencia25@hotmail.com\",\"phone_number\":\"3147004765\",\"address\":null,\"creation_date\":\"2023-09-30T07:22:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 12:23:27','2023-09-30 12:23:27'),(9614,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T09:35:01-05:00\",\"transaction\":{\"id\":\"trglqhgustp0twqiiuw6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T09:33:21-05:00\",\"operation_date\":\"2023-09-30T09:33:21-05:00\",\"description\":\"Pago Mensual academia: Mario Jose Arango Cedeño (1035013666)\",\"error_message\":null,\"order_id\":\"74D90AAFDA34E6060F9E8433962D14FD_QFETLJVYHK_1696084394.7105\",\"due_date\":\"2023-09-30T21:33:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Arango Rueda\",\"email\":\"arangorueda77@gmail.com\",\"phone_number\":\"3217465380\",\"address\":null,\"creation_date\":\"2023-09-30T09:33:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trglqhgustp0twqiiuw6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 14:35:02','2023-09-30 14:35:02'),(9615,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T08:36:36-06:00\",\"transaction\":{\"id\":\"trglqhgustp0twqiiuw6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"190189935\",\"creation_date\":\"2023-09-30T09:33:21-06:00\",\"operation_date\":\"2023-09-30T08:36:16-06:00\",\"description\":\"Pago Mensual academia: Mario Jose Arango Cedeño (1035013666)\",\"error_message\":null,\"order_id\":\"74D90AAFDA34E6060F9E8433962D14FD_QFETLJVYHK_1696084394.7105\",\"due_date\":\"2023-09-30T21:33:21-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Arango Rueda\",\"email\":\"arangorueda77@gmail.com\",\"phone_number\":\"3217465380\",\"address\":null,\"creation_date\":\"2023-09-30T09:33:21-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 14:36:36','2023-09-30 14:36:36'),(9616,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T09:38:41-05:00\",\"transaction\":{\"id\":\"trglqhgustp0twqiiuw6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"190189935\",\"creation_date\":\"2023-09-30T09:33:21-05:00\",\"operation_date\":\"2023-09-30T09:36:16-05:00\",\"description\":\"Pago Mensual academia: Mario Jose Arango Cedeño (1035013666)\",\"error_message\":null,\"order_id\":\"74D90AAFDA34E6060F9E8433962D14FD_QFETLJVYHK_1696084394.7105\",\"due_date\":\"2023-09-30T21:33:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Arango Rueda\",\"email\":\"arangorueda77@gmail.com\",\"phone_number\":\"3217465380\",\"address\":null,\"creation_date\":\"2023-09-30T09:33:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 14:38:42','2023-09-30 14:38:42'),(9617,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T09:55:34-05:00\",\"transaction\":{\"id\":\"trr0obhqgumrjvqrp7wn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T09:54:50-05:00\",\"operation_date\":\"2023-09-30T09:54:50-05:00\",\"description\":\"Pago Mensual academia: agustin alvarez Aguirre (1040578518)\",\"error_message\":null,\"order_id\":\"04115EC378E476C56D19D827BCF8DB56_CU8SQI9HEA_1696085670.5182\",\"due_date\":\"2023-09-30T21:54:50-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"rodrigo\",\"last_name\":\"alvarez\",\"email\":\"rodrigo0524@hotmail.com\",\"phone_number\":\"3014063246\",\"address\":null,\"creation_date\":\"2023-09-30T09:54:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr0obhqgumrjvqrp7wn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 14:55:34','2023-09-30 14:55:34'),(9618,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  842\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-09-30T09:18:12-06:00\",\"transaction\":{\"id\":\"trr0obhqgumrjvqrp7wn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-09-30T09:54:50-06:00\",\"operation_date\":\"2023-09-30T08:55:51-06:00\",\"description\":\"Pago Mensual academia: agustin alvarez Aguirre (1040578518)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"04115EC378E476C56D19D827BCF8DB56_CU8SQI9HEA_1696085670.5182\",\"due_date\":\"2023-09-30T21:54:50-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"rodrigo\",\"last_name\":\"alvarez\",\"email\":\"rodrigo0524@hotmail.com\",\"phone_number\":\"3014063246\",\"address\":null,\"creation_date\":\"2023-09-30T09:54:50-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 15:18:13','2023-09-30 15:18:13'),(9619,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T10:41:32-05:00\",\"transaction\":{\"id\":\"trx4ujpe5agpuos92wob\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T10:40:32-05:00\",\"operation_date\":\"2023-09-30T10:40:32-05:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":null,\"order_id\":\"F42A37D114A480B6B57B60EA9A14A9D2_98YW2NFK1G_1696088427.7917\",\"due_date\":\"2023-09-30T22:40:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-30T10:40:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trx4ujpe5agpuos92wob/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 15:41:32','2023-09-30 15:41:32'),(9620,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T10:43:20-05:00\",\"transaction\":{\"id\":\"trx4ujpe5agpuos92wob\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"190379935\",\"creation_date\":\"2023-09-30T10:40:32-05:00\",\"operation_date\":\"2023-09-30T10:43:05-05:00\",\"description\":\"Pago Mensual academia: jacobo cardona ortiz (1198464807)\",\"error_message\":null,\"order_id\":\"F42A37D114A480B6B57B60EA9A14A9D2_98YW2NFK1G_1696088427.7917\",\"due_date\":\"2023-09-30T22:40:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ana maria\",\"last_name\":\"ortiz restrepo\",\"email\":\"anaortizrestrepo@gmail.com\",\"phone_number\":\"3016642998\",\"address\":null,\"creation_date\":\"2023-09-30T10:40:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 15:43:21','2023-09-30 15:43:21'),(9621,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T11:08:36-05:00\",\"transaction\":{\"id\":\"trftnculdk74yajgadtc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T11:07:12-05:00\",\"operation_date\":\"2023-09-30T11:07:12-05:00\",\"description\":\"Pago Mensual academia: Emmanuel perez Restrepo (1034999806)\",\"error_message\":null,\"order_id\":\"690D83983A63AA1818423FD6EDD3BFDB_MA1D83WT5Q_1696090027.5048\",\"due_date\":\"2023-09-30T23:07:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ferney Alfonso\",\"last_name\":\"perez Arango\",\"email\":\"hue.so@hotmail.com\",\"phone_number\":\"3122510356\",\"address\":null,\"creation_date\":\"2023-09-30T11:07:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trftnculdk74yajgadtc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 16:08:37','2023-09-30 16:08:37'),(9622,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T11:12:38-05:00\",\"transaction\":{\"id\":\"trftnculdk74yajgadtc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"190475426\",\"creation_date\":\"2023-09-30T11:07:12-05:00\",\"operation_date\":\"2023-09-30T11:11:11-05:00\",\"description\":\"Pago Mensual academia: Emmanuel perez Restrepo (1034999806)\",\"error_message\":null,\"order_id\":\"690D83983A63AA1818423FD6EDD3BFDB_MA1D83WT5Q_1696090027.5048\",\"due_date\":\"2023-09-30T23:07:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ferney Alfonso\",\"last_name\":\"perez Arango\",\"email\":\"hue.so@hotmail.com\",\"phone_number\":\"3122510356\",\"address\":null,\"creation_date\":\"2023-09-30T11:07:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 16:12:39','2023-09-30 16:12:39'),(9623,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T11:49:15-05:00\",\"transaction\":{\"id\":\"trfti5bcbc9gsh7btpzv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T11:48:40-05:00\",\"operation_date\":\"2023-09-30T11:48:40-05:00\",\"description\":\"Pago Mensual academia: agustin alvarez Aguirre (1040578518)\",\"error_message\":null,\"order_id\":\"04115EC378E476C56D19D827BCF8DB56_CU8SQI9HEA_1696092515.278\",\"due_date\":\"2023-09-30T23:48:40-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"rodrigo\",\"last_name\":\"alvarez\",\"email\":\"rodrigo0524@hotmail.com\",\"phone_number\":\"3014063246\",\"address\":null,\"creation_date\":\"2023-09-30T11:48:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfti5bcbc9gsh7btpzv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 16:49:16','2023-09-30 16:49:16'),(9624,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T11:50:41-05:00\",\"transaction\":{\"id\":\"trfti5bcbc9gsh7btpzv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"190596071\",\"creation_date\":\"2023-09-30T11:48:40-05:00\",\"operation_date\":\"2023-09-30T11:50:18-05:00\",\"description\":\"Pago Mensual academia: agustin alvarez Aguirre (1040578518)\",\"error_message\":null,\"order_id\":\"04115EC378E476C56D19D827BCF8DB56_CU8SQI9HEA_1696092515.278\",\"due_date\":\"2023-09-30T23:48:40-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"rodrigo\",\"last_name\":\"alvarez\",\"email\":\"rodrigo0524@hotmail.com\",\"phone_number\":\"3014063246\",\"address\":null,\"creation_date\":\"2023-09-30T11:48:40-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 16:50:41','2023-09-30 16:50:41'),(9625,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T16:40:43-05:00\",\"transaction\":{\"id\":\"truartdihvifdzhq2sfh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T16:40:03-05:00\",\"operation_date\":\"2023-09-30T16:40:03-05:00\",\"description\":\"Pago Mensual academia: valentin jr carreazo serna (1055762232)\",\"error_message\":null,\"order_id\":\"D0AC1ED0C5CB9ECBCA3D2496EC1AD984_ZR8C2703PN_1696109997.1348\",\"due_date\":\"2023-10-01T04:40:03-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"laura vanessa\",\"last_name\":\"serna vasquez\",\"email\":\"lauris-vasquez@hotmail.com\",\"phone_number\":\"3022862926\",\"address\":null,\"creation_date\":\"2023-09-30T16:40:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truartdihvifdzhq2sfh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 21:40:44','2023-09-30 21:40:44'),(9626,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T16:41:32-05:00\",\"transaction\":{\"id\":\"truartdihvifdzhq2sfh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"191267094\",\"creation_date\":\"2023-09-30T16:40:03-05:00\",\"operation_date\":\"2023-09-30T16:41:22-05:00\",\"description\":\"Pago Mensual academia: valentin jr carreazo serna (1055762232)\",\"error_message\":null,\"order_id\":\"D0AC1ED0C5CB9ECBCA3D2496EC1AD984_ZR8C2703PN_1696109997.1348\",\"due_date\":\"2023-10-01T04:40:03-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"laura vanessa\",\"last_name\":\"serna vasquez\",\"email\":\"lauris-vasquez@hotmail.com\",\"phone_number\":\"3022862926\",\"address\":null,\"creation_date\":\"2023-09-30T16:40:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 21:41:33','2023-09-30 21:41:33'),(9627,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T17:17:24-05:00\",\"transaction\":{\"id\":\"trlqdokil19xlerhf7ai\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T17:16:13-05:00\",\"operation_date\":\"2023-09-30T17:16:13-05:00\",\"description\":\"Pago Mensual academia: jaider stiven posso oquendo (1018249021)\",\"error_message\":null,\"order_id\":\"82EDC5C9E21035674D481640448049F3_8FEHDUPQI7_1696112169.5452\",\"due_date\":\"2023-10-01T05:16:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jaider stiven\",\"last_name\":\"posso oquendo\",\"email\":\"zabalamariacamila961@gmail.com\",\"phone_number\":\"3043980850\",\"address\":null,\"creation_date\":\"2023-09-30T17:16:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlqdokil19xlerhf7ai/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 22:17:25','2023-09-30 22:17:25'),(9628,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T17:19:34-05:00\",\"transaction\":{\"id\":\"trlqdokil19xlerhf7ai\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"191338555\",\"creation_date\":\"2023-09-30T17:16:13-05:00\",\"operation_date\":\"2023-09-30T17:19:27-05:00\",\"description\":\"Pago Mensual academia: jaider stiven posso oquendo (1018249021)\",\"error_message\":null,\"order_id\":\"82EDC5C9E21035674D481640448049F3_8FEHDUPQI7_1696112169.5452\",\"due_date\":\"2023-10-01T05:16:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jaider stiven\",\"last_name\":\"posso oquendo\",\"email\":\"zabalamariacamila961@gmail.com\",\"phone_number\":\"3043980850\",\"address\":null,\"creation_date\":\"2023-09-30T17:16:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-09-30 22:19:35','2023-09-30 22:19:35'),(9629,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T19:03:08-05:00\",\"transaction\":{\"id\":\"trt83f2b1w8utkzvrjhk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-30T19:03:08-05:00\",\"operation_date\":\"2023-09-30T19:03:08-05:00\",\"description\":\"Pago Mensual academia: Juan pablo ceballos londoño (1032022715)\",\"error_message\":null,\"order_id\":\"AAFD8346A677AF9DB717AFEADF6B62EC_1WFHMBK96I_1696118582.6061\",\"amount\":165900.00,\"customer\":{\"name\":\"Pablo\",\"last_name\":\"C Londoño\",\"email\":\"yennylondono75@gmail.com\",\"phone_number\":\"314 7055068\",\"address\":null,\"creation_date\":\"2023-09-30T19:03:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trt83f2b1w8utkzvrjhk/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-01 00:03:09','2023-10-01 00:03:09'),(9630,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  947\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T19:55:38-05:00\",\"transaction\":{\"id\":\"trexj3f9eaiyxjsvcpir\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T19:54:14-05:00\",\"operation_date\":\"2023-09-30T19:54:14-05:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Hernández Giraldo (1105381416)\",\"error_message\":null,\"order_id\":\"E464F78F1B3FA6BFE6D887029BF66F0C_IM1C8OJQT5_1696121650.1568\",\"due_date\":\"2023-10-01T07:54:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"DIEGO ALEJANDRO\",\"last_name\":\"HERNANDEZ GIRALDO\",\"email\":\"albaluzgm1@gmail.com\",\"phone_number\":\"3104194641\",\"address\":null,\"creation_date\":\"2023-09-30T19:54:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trexj3f9eaiyxjsvcpir/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 00:55:39','2023-10-01 00:55:39'),(9631,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  830\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T18:57:11-06:00\",\"transaction\":{\"id\":\"trexj3f9eaiyxjsvcpir\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"191633732\",\"creation_date\":\"2023-09-30T19:54:14-06:00\",\"operation_date\":\"2023-09-30T18:57:04-06:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Hernández Giraldo (1105381416)\",\"error_message\":null,\"order_id\":\"E464F78F1B3FA6BFE6D887029BF66F0C_IM1C8OJQT5_1696121650.1568\",\"due_date\":\"2023-10-01T07:54:14-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"DIEGO ALEJANDRO\",\"last_name\":\"HERNANDEZ GIRALDO\",\"email\":\"albaluzgm1@gmail.com\",\"phone_number\":\"3104194641\",\"address\":null,\"creation_date\":\"2023-09-30T19:54:14-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 00:57:12','2023-10-01 00:57:12'),(9632,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T20:05:08-05:00\",\"transaction\":{\"id\":\"trzhdx9hyazsohkgp6r9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T20:02:42-05:00\",\"operation_date\":\"2023-09-30T20:02:42-05:00\",\"description\":\"Pago Mensual academia: Nicolas Peñuela Gomez (1011513305)\",\"error_message\":null,\"order_id\":\"5DCD0DDD3D918C70D380D32BCE4E733A_UNH14Y0K8V_1696122154.9077\",\"due_date\":\"2023-10-01T08:02:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Gomez Mora\",\"email\":\"cgmora2442@gmail.com\",\"phone_number\":\"3008110459\",\"address\":null,\"creation_date\":\"2023-09-30T20:02:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzhdx9hyazsohkgp6r9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 01:05:09','2023-10-01 01:05:09'),(9633,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T20:09:33-05:00\",\"transaction\":{\"id\":\"trzhdx9hyazsohkgp6r9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"191649504\",\"creation_date\":\"2023-09-30T20:02:42-05:00\",\"operation_date\":\"2023-09-30T20:09:32-05:00\",\"description\":\"Pago Mensual academia: Nicolas Peñuela Gomez (1011513305)\",\"error_message\":null,\"order_id\":\"5DCD0DDD3D918C70D380D32BCE4E733A_UNH14Y0K8V_1696122154.9077\",\"due_date\":\"2023-10-01T08:02:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Gomez Mora\",\"email\":\"cgmora2442@gmail.com\",\"phone_number\":\"3008110459\",\"address\":null,\"creation_date\":\"2023-09-30T20:02:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 01:09:33','2023-10-01 01:09:33'),(9634,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T21:30:59-05:00\",\"transaction\":{\"id\":\"trvu9t3njokgomvofjl0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T21:30:11-05:00\",\"operation_date\":\"2023-09-30T21:30:11-05:00\",\"description\":\"Pago Mensual academia: simon gutierrez osorio (1192470044)\",\"error_message\":null,\"order_id\":\"C0E19CE0DBABBC0D17A4F8D4324CC8E3_1RFN2GU5AP_1696127408.2283\",\"due_date\":\"2023-10-01T09:30:11-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"gutierrez osorio\",\"email\":\"tatianaosoriobernal@gmail.com\",\"phone_number\":\"3005556978\",\"address\":null,\"creation_date\":\"2023-09-30T21:30:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvu9t3njokgomvofjl0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 02:31:00','2023-10-01 02:31:00'),(9635,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T21:32:17-05:00\",\"transaction\":{\"id\":\"trvu9t3njokgomvofjl0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"191777176\",\"creation_date\":\"2023-09-30T21:30:11-05:00\",\"operation_date\":\"2023-09-30T00:00:00-05:00\",\"description\":\"Pago Mensual academia: simon gutierrez osorio (1192470044)\",\"error_message\":null,\"order_id\":\"C0E19CE0DBABBC0D17A4F8D4324CC8E3_1RFN2GU5AP_1696127408.2283\",\"due_date\":\"2023-10-01T09:30:11-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"gutierrez osorio\",\"email\":\"tatianaosoriobernal@gmail.com\",\"phone_number\":\"3005556978\",\"address\":null,\"creation_date\":\"2023-09-30T21:30:11-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 02:32:18','2023-10-01 02:32:18'),(9636,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T21:37:23-05:00\",\"transaction\":{\"id\":\"trq6hnv5wug2ibfuvwrf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-09-30T21:34:32-05:00\",\"operation_date\":\"2023-09-30T21:34:32-05:00\",\"description\":\"Pago Mensual academia: simon gutierrez osorio (1192470044)\",\"error_message\":null,\"order_id\":\"DD1016D687D5960A8F279198A94D0CC5_XUVP5FKDGQ_1696127666.9968\",\"due_date\":\"2023-10-01T09:34:32-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"gutierrez osorio\",\"email\":\"tatianaosoriobernal@gmail.com\",\"phone_number\":\"3005556978\",\"address\":null,\"creation_date\":\"2023-09-30T21:34:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trq6hnv5wug2ibfuvwrf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 02:37:24','2023-10-01 02:37:24'),(9637,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-09-30T21:39:21-05:00\",\"transaction\":{\"id\":\"trq6hnv5wug2ibfuvwrf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"191785265\",\"creation_date\":\"2023-09-30T21:34:32-05:00\",\"operation_date\":\"2023-09-30T00:00:00-05:00\",\"description\":\"Pago Mensual academia: simon gutierrez osorio (1192470044)\",\"error_message\":null,\"order_id\":\"DD1016D687D5960A8F279198A94D0CC5_XUVP5FKDGQ_1696127666.9968\",\"due_date\":\"2023-10-01T09:34:32-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"gutierrez osorio\",\"email\":\"tatianaosoriobernal@gmail.com\",\"phone_number\":\"3005556978\",\"address\":null,\"creation_date\":\"2023-09-30T21:34:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 02:39:21','2023-10-01 02:39:21'),(9638,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-09-30T23:02:43-05:00\",\"transaction\":{\"id\":\"trt2ekzff03vai564zg6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-09-30T23:02:43-05:00\",\"operation_date\":\"2023-09-30T23:02:43-05:00\",\"description\":\"Pago Mensual academia: Samuel Zapata Betancur (1195213353)\",\"error_message\":null,\"order_id\":\"3B24156AD560A696116454056BC88AB4_0UYFTJ64QW_1696132949.9684\",\"amount\":165900.00,\"customer\":{\"name\":\"Samuel\",\"last_name\":\"Zapata betancur\",\"email\":\"szapatabtn@gmail.com\",\"phone_number\":\"3024012897\",\"address\":null,\"creation_date\":\"2023-09-30T23:02:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trt2ekzff03vai564zg6/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-01 04:02:44','2023-10-01 04:02:44'),(9639,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  906\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T09:10:43-05:00\",\"transaction\":{\"id\":\"tr8tkt4sgcdwa9jgvdeo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-01T09:10:43-05:00\",\"operation_date\":\"2023-10-01T09:10:43-05:00\",\"description\":\"Pago Mensual academia: Juan Esteban Rios Vargas (1041534228)\",\"error_message\":null,\"order_id\":\"65B1E92C585FD4C2159D5F33B5030FF2_8VQYBMSO47_1696169439.7505\",\"amount\":165900.00,\"customer\":{\"name\":\"Orfidia Maria\",\"last_name\":\"Vargas Vargas\",\"email\":\"orfidiavargasvargas@gmail.com\",\"phone_number\":\"3114169625\",\"address\":null,\"creation_date\":\"2023-10-01T09:10:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8tkt4sgcdwa9jgvdeo/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-01 14:10:43','2023-10-01 14:10:43'),(9640,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1164\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T09:14:31-05:00\",\"transaction\":{\"id\":\"tr8tkt4sgcdwa9jgvdeo\",\"authorization\":\"091431\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-01T09:10:43-05:00\",\"operation_date\":\"2023-10-01T09:14:30-05:00\",\"description\":\"Pago Mensual academia: Juan Esteban Rios Vargas (1041534228)\",\"error_message\":null,\"order_id\":\"65B1E92C585FD4C2159D5F33B5030FF2_8VQYBMSO47_1696169439.7505\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5782\",\"holder_name\":\"Orfidia Vargas Vargas\",\"expiration_year\":\"26\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Orfidia Maria\",\"last_name\":\"Vargas Vargas\",\"email\":\"orfidiavargasvargas@gmail.com\",\"phone_number\":\"3114169625\",\"address\":null,\"creation_date\":\"2023-10-01T09:10:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8tkt4sgcdwa9jgvdeo/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-01 14:14:32','2023-10-01 14:14:32'),(9641,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T09:45:37-05:00\",\"transaction\":{\"id\":\"trfusc01zstdkpax6phq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T09:44:59-05:00\",\"operation_date\":\"2023-10-01T09:44:59-05:00\",\"description\":\"Pago Mensual academia: Nicolas Ortiz Cadavid (1035013795)\",\"error_message\":null,\"order_id\":\"FD45EBC1E1D76BC1FE0BA933E60E9957_MGA0XCDLSQ_1696171490.7789\",\"due_date\":\"2023-10-01T21:44:59-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Cadavid Cardenas\",\"email\":\"ana.cadavidc@gmail.com\",\"phone_number\":\"3104623991\",\"address\":null,\"creation_date\":\"2023-10-01T09:44:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfusc01zstdkpax6phq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 14:45:38','2023-10-01 14:45:38'),(9642,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-01T09:47:21-05:00\",\"transaction\":{\"id\":\"trfusc01zstdkpax6phq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-01T09:44:59-05:00\",\"operation_date\":\"2023-10-01T09:45:51-05:00\",\"description\":\"Pago Mensual academia: Nicolas Ortiz Cadavid (1035013795)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"FD45EBC1E1D76BC1FE0BA933E60E9957_MGA0XCDLSQ_1696171490.7789\",\"due_date\":\"2023-10-01T21:44:59-05:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Cadavid Cardenas\",\"email\":\"ana.cadavidc@gmail.com\",\"phone_number\":\"3104623991\",\"address\":null,\"creation_date\":\"2023-10-01T09:44:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 14:47:21','2023-10-01 14:47:21'),(9643,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T09:48:19-05:00\",\"transaction\":{\"id\":\"trebxdhqkfofy1kpjgs5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T09:47:40-05:00\",\"operation_date\":\"2023-10-01T09:47:40-05:00\",\"description\":\"Pago Mensual academia: Nicolas Ortiz Cadavid (1035013795)\",\"error_message\":null,\"order_id\":\"FD45EBC1E1D76BC1FE0BA933E60E9957_MGA0XCDLSQ_1696171656.3943\",\"due_date\":\"2023-10-01T21:47:40-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Cadavid Cardenas\",\"email\":\"ana.cadavidc@gmail.com\",\"phone_number\":\"3104623991\",\"address\":null,\"creation_date\":\"2023-10-01T09:47:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trebxdhqkfofy1kpjgs5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 14:48:19','2023-10-01 14:48:19'),(9644,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T08:51:20-06:00\",\"transaction\":{\"id\":\"trebxdhqkfofy1kpjgs5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192173087\",\"creation_date\":\"2023-10-01T09:47:40-06:00\",\"operation_date\":\"2023-10-01T08:49:06-06:00\",\"description\":\"Pago Mensual academia: Nicolas Ortiz Cadavid (1035013795)\",\"error_message\":null,\"order_id\":\"FD45EBC1E1D76BC1FE0BA933E60E9957_MGA0XCDLSQ_1696171656.3943\",\"due_date\":\"2023-10-01T21:47:40-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Cadavid Cardenas\",\"email\":\"ana.cadavidc@gmail.com\",\"phone_number\":\"3104623991\",\"address\":null,\"creation_date\":\"2023-10-01T09:47:40-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 14:51:21','2023-10-01 14:51:21'),(9645,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  954\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T10:23:33-05:00\",\"transaction\":{\"id\":\"trt8sysvpnefblwfxhzu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T10:22:48-05:00\",\"operation_date\":\"2023-10-01T10:22:48-05:00\",\"description\":\"Pago Mensual academia: jose Fernando heredia vergara (10320173600)\",\"error_message\":null,\"order_id\":\"8CCFB1140664A5FA63177FB6E07352F0_9SRFJXCZTG_1696173761.884\",\"due_date\":\"2023-10-01T22:22:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose fernando\",\"last_name\":\"heredia vergara\",\"email\":\"josefernandoherediavergara@gmail.com\",\"phone_number\":\"3147654236\",\"address\":null,\"creation_date\":\"2023-10-01T10:22:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trt8sysvpnefblwfxhzu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 15:23:33','2023-10-01 15:23:33'),(9646,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  837\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T09:24:42-06:00\",\"transaction\":{\"id\":\"trt8sysvpnefblwfxhzu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192235734\",\"creation_date\":\"2023-10-01T10:22:48-06:00\",\"operation_date\":\"2023-10-01T09:24:26-06:00\",\"description\":\"Pago Mensual academia: jose Fernando heredia vergara (10320173600)\",\"error_message\":null,\"order_id\":\"8CCFB1140664A5FA63177FB6E07352F0_9SRFJXCZTG_1696173761.884\",\"due_date\":\"2023-10-01T22:22:48-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jose fernando\",\"last_name\":\"heredia vergara\",\"email\":\"josefernandoherediavergara@gmail.com\",\"phone_number\":\"3147654236\",\"address\":null,\"creation_date\":\"2023-10-01T10:22:48-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 15:24:43','2023-10-01 15:24:43'),(9647,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T10:37:17-05:00\",\"transaction\":{\"id\":\"trgadlwffnizl1olhfd5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T10:35:42-05:00\",\"operation_date\":\"2023-10-01T10:35:42-05:00\",\"description\":\"Pago Mensual academia: martin suarez gutierrez (1075876356)\",\"error_message\":null,\"order_id\":\"70D5212DD052B2EF06E5E562F6F9AB9C_5BJ4VYPSTO_1696174538.0408\",\"due_date\":\"2023-10-01T22:35:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"angela maria\",\"last_name\":\"gutierrez tabares\",\"email\":\"angelus.99@hotmail.com\",\"phone_number\":\"3023307171\",\"address\":null,\"creation_date\":\"2023-10-01T10:35:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgadlwffnizl1olhfd5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 15:37:18','2023-10-01 15:37:18'),(9648,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T10:39:14-05:00\",\"transaction\":{\"id\":\"trgadlwffnizl1olhfd5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192260191\",\"creation_date\":\"2023-10-01T10:35:42-05:00\",\"operation_date\":\"2023-10-01T10:39:01-05:00\",\"description\":\"Pago Mensual academia: martin suarez gutierrez (1075876356)\",\"error_message\":null,\"order_id\":\"70D5212DD052B2EF06E5E562F6F9AB9C_5BJ4VYPSTO_1696174538.0408\",\"due_date\":\"2023-10-01T22:35:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"angela maria\",\"last_name\":\"gutierrez tabares\",\"email\":\"angelus.99@hotmail.com\",\"phone_number\":\"3023307171\",\"address\":null,\"creation_date\":\"2023-10-01T10:35:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 15:39:15','2023-10-01 15:39:15'),(9649,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T10:40:22-05:00\",\"transaction\":{\"id\":\"tr3oslyh8omonhbx3bzk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T10:39:41-05:00\",\"operation_date\":\"2023-10-01T10:39:41-05:00\",\"description\":\"Pago Mensual academia: martin suarez gutierrez (1075876356)\",\"error_message\":null,\"order_id\":\"5D151D1059A6281335A10732FC49620E_C3I7ZH4529_1696174770.9601\",\"due_date\":\"2023-10-01T22:39:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"angela maria\",\"last_name\":\"gutierrez tabares\",\"email\":\"angelus.99@hotmail.com\",\"phone_number\":\"3023307171\",\"address\":null,\"creation_date\":\"2023-10-01T10:39:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3oslyh8omonhbx3bzk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 15:40:23','2023-10-01 15:40:23'),(9650,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  857\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-01T10:03:12-06:00\",\"transaction\":{\"id\":\"tr3oslyh8omonhbx3bzk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-01T10:39:41-06:00\",\"operation_date\":\"2023-10-01T09:40:28-06:00\",\"description\":\"Pago Mensual academia: martin suarez gutierrez (1075876356)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"5D151D1059A6281335A10732FC49620E_C3I7ZH4529_1696174770.9601\",\"due_date\":\"2023-10-01T22:39:41-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"angela maria\",\"last_name\":\"gutierrez tabares\",\"email\":\"angelus.99@hotmail.com\",\"phone_number\":\"3023307171\",\"address\":null,\"creation_date\":\"2023-10-01T10:39:41-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 16:03:13','2023-10-01 16:03:13'),(9651,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T11:03:38-05:00\",\"transaction\":{\"id\":\"tryou79veczi68ari9ic\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T11:02:42-05:00\",\"operation_date\":\"2023-10-01T11:02:42-05:00\",\"description\":\"Pago Mensual academia: Emiliano Dávila Moná (1020316845)\",\"error_message\":null,\"order_id\":\"D40E0A2A2F466A90EE2630FC925E7AF9_SXRLEKPTQJ_1696176156.4095\",\"due_date\":\"2023-10-01T23:02:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-10-01T11:02:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryou79veczi68ari9ic/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 16:03:39','2023-10-01 16:03:39'),(9652,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T11:05:09-05:00\",\"transaction\":{\"id\":\"tryou79veczi68ari9ic\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192307555\",\"creation_date\":\"2023-10-01T11:02:42-05:00\",\"operation_date\":\"2023-10-01T11:04:42-05:00\",\"description\":\"Pago Mensual academia: Emiliano Dávila Moná (1020316845)\",\"error_message\":null,\"order_id\":\"D40E0A2A2F466A90EE2630FC925E7AF9_SXRLEKPTQJ_1696176156.4095\",\"due_date\":\"2023-10-01T23:02:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-10-01T11:02:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 16:05:09','2023-10-01 16:05:09'),(9653,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  857\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-01T10:06:09-06:00\",\"transaction\":{\"id\":\"tr3oslyh8omonhbx3bzk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-01T10:39:41-06:00\",\"operation_date\":\"2023-10-01T09:40:28-06:00\",\"description\":\"Pago Mensual academia: martin suarez gutierrez (1075876356)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"5D151D1059A6281335A10732FC49620E_C3I7ZH4529_1696174770.9601\",\"due_date\":\"2023-10-01T22:39:41-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"angela maria\",\"last_name\":\"gutierrez tabares\",\"email\":\"angelus.99@hotmail.com\",\"phone_number\":\"3023307171\",\"address\":null,\"creation_date\":\"2023-10-01T10:39:41-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 16:06:10','2023-10-01 16:06:10'),(9654,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T11:06:29-05:00\",\"transaction\":{\"id\":\"tr8evcptbjxcy9erulyy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T11:05:45-05:00\",\"operation_date\":\"2023-10-01T11:05:45-05:00\",\"description\":\"Pago Mensual academia: Cristóbal Dávila Moná (1035007965)\",\"error_message\":null,\"order_id\":\"887A185B1A4080193D5CF63873AC6D70_CJMI078PVG_1696176341.4643\",\"due_date\":\"2023-10-01T23:05:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-10-01T11:05:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8evcptbjxcy9erulyy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 16:06:30','2023-10-01 16:06:30'),(9655,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T10:09:28-06:00\",\"transaction\":{\"id\":\"tr8evcptbjxcy9erulyy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192312708\",\"creation_date\":\"2023-10-01T11:05:45-06:00\",\"operation_date\":\"2023-10-01T10:07:25-06:00\",\"description\":\"Pago Mensual academia: Cristóbal Dávila Moná (1035007965)\",\"error_message\":null,\"order_id\":\"887A185B1A4080193D5CF63873AC6D70_CJMI078PVG_1696176341.4643\",\"due_date\":\"2023-10-01T23:05:45-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-10-01T11:05:45-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 16:09:29','2023-10-01 16:09:29'),(9656,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T12:14:42-05:00\",\"transaction\":{\"id\":\"tr9c8zai8p5u1fotod2a\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T12:13:43-05:00\",\"operation_date\":\"2023-10-01T12:13:43-05:00\",\"description\":\"Pago Mensual academia: juan jose ortiz agudelo (1020312977)\",\"error_message\":null,\"order_id\":\"FD272FE04B7D4E68EFFD01BDDCC6BB34_9YXQSLMDHU_1696180421.2255\",\"due_date\":\"2023-10-02T00:13:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ruben\",\"last_name\":\"ortiz\",\"email\":\"ruben1121ortiz@gmail.com\",\"phone_number\":\"3225271511\",\"address\":null,\"creation_date\":\"2023-10-01T12:13:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9c8zai8p5u1fotod2a/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 17:14:43','2023-10-01 17:14:43'),(9657,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T12:15:38-05:00\",\"transaction\":{\"id\":\"tr9c8zai8p5u1fotod2a\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192435778\",\"creation_date\":\"2023-10-01T12:13:43-05:00\",\"operation_date\":\"2023-10-01T12:15:29-05:00\",\"description\":\"Pago Mensual academia: juan jose ortiz agudelo (1020312977)\",\"error_message\":null,\"order_id\":\"FD272FE04B7D4E68EFFD01BDDCC6BB34_9YXQSLMDHU_1696180421.2255\",\"due_date\":\"2023-10-02T00:13:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ruben\",\"last_name\":\"ortiz\",\"email\":\"ruben1121ortiz@gmail.com\",\"phone_number\":\"3225271511\",\"address\":null,\"creation_date\":\"2023-10-01T12:13:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 17:15:38','2023-10-01 17:15:38'),(9658,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T13:09:29-05:00\",\"transaction\":{\"id\":\"tr7dhla4dwnukjltxpze\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T13:08:12-05:00\",\"operation_date\":\"2023-10-01T13:08:12-05:00\",\"description\":\"Pago Mensual academia: Agustin Garcia Chain (1035008392)\",\"error_message\":null,\"order_id\":\"28F7241796510E838DB4A1384AE1279D_S6GJB95OH7_1696183688.4757\",\"due_date\":\"2023-10-02T01:08:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edgar Alberto\",\"last_name\":\"Garcia Rodriguez\",\"email\":\"ealbertogarcia@gmail.com\",\"phone_number\":\"3183967339\",\"address\":null,\"creation_date\":\"2023-10-01T13:08:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7dhla4dwnukjltxpze/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 18:09:29','2023-10-01 18:09:29'),(9659,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T13:10:31-05:00\",\"transaction\":{\"id\":\"tr7dhla4dwnukjltxpze\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192526980\",\"creation_date\":\"2023-10-01T13:08:12-05:00\",\"operation_date\":\"2023-10-01T13:10:25-05:00\",\"description\":\"Pago Mensual academia: Agustin Garcia Chain (1035008392)\",\"error_message\":null,\"order_id\":\"28F7241796510E838DB4A1384AE1279D_S6GJB95OH7_1696183688.4757\",\"due_date\":\"2023-10-02T01:08:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Edgar Alberto\",\"last_name\":\"Garcia Rodriguez\",\"email\":\"ealbertogarcia@gmail.com\",\"phone_number\":\"3183967339\",\"address\":null,\"creation_date\":\"2023-10-01T13:08:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 18:10:31','2023-10-01 18:10:31'),(9660,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T13:52:11-05:00\",\"transaction\":{\"id\":\"tryekqiqgwiizhh4yz3w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T13:50:35-05:00\",\"operation_date\":\"2023-10-01T13:50:35-05:00\",\"description\":\"Pago Mensual academia: Matías Arango Gutiérrez (1031942381)\",\"error_message\":null,\"order_id\":\"FE7ECC4DE28B2C83C016B5C6C2ACD826_H9B7GESPK4_1696186232.9184\",\"due_date\":\"2023-10-02T01:50:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Arango Castrillón\",\"email\":\"arajulian@gmail.com\",\"phone_number\":\"3206207280\",\"address\":null,\"creation_date\":\"2023-10-01T13:50:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryekqiqgwiizhh4yz3w/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 18:52:12','2023-10-01 18:52:12'),(9661,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T13:53:39-05:00\",\"transaction\":{\"id\":\"tryekqiqgwiizhh4yz3w\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192594184\",\"creation_date\":\"2023-10-01T13:50:35-05:00\",\"operation_date\":\"2023-10-01T13:53:22-05:00\",\"description\":\"Pago Mensual academia: Matías Arango Gutiérrez (1031942381)\",\"error_message\":null,\"order_id\":\"FE7ECC4DE28B2C83C016B5C6C2ACD826_H9B7GESPK4_1696186232.9184\",\"due_date\":\"2023-10-02T01:50:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julián\",\"last_name\":\"Arango Castrillón\",\"email\":\"arajulian@gmail.com\",\"phone_number\":\"3206207280\",\"address\":null,\"creation_date\":\"2023-10-01T13:50:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 18:53:40','2023-10-01 18:53:40'),(9662,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T14:00:30-05:00\",\"transaction\":{\"id\":\"trf6iel88zlc9lgesky7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T13:58:24-05:00\",\"operation_date\":\"2023-10-01T13:58:24-05:00\",\"description\":\"Pago Mensual academia: EMMANUEL LOMBANA  DELGADO (1027742111)\",\"error_message\":null,\"order_id\":\"5EDC4F7DCE28C711AFC6265B4F99BF57_VDHKJ3OEGQ_1696186695.7781\",\"due_date\":\"2023-10-02T01:58:24-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"EMMANUEL\",\"last_name\":\"LOMBANA DELGADO\",\"email\":\"Mlombana@une.net.co\",\"phone_number\":\"3117643357\",\"address\":null,\"creation_date\":\"2023-10-01T13:58:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trf6iel88zlc9lgesky7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 19:00:31','2023-10-01 19:00:31'),(9663,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T13:03:18-06:00\",\"transaction\":{\"id\":\"trf6iel88zlc9lgesky7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192606838\",\"creation_date\":\"2023-10-01T13:58:24-06:00\",\"operation_date\":\"2023-10-01T13:02:34-06:00\",\"description\":\"Pago Mensual academia: EMMANUEL LOMBANA  DELGADO (1027742111)\",\"error_message\":null,\"order_id\":\"5EDC4F7DCE28C711AFC6265B4F99BF57_VDHKJ3OEGQ_1696186695.7781\",\"due_date\":\"2023-10-02T01:58:24-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"EMMANUEL\",\"last_name\":\"LOMBANA DELGADO\",\"email\":\"Mlombana@une.net.co\",\"phone_number\":\"3117643357\",\"address\":null,\"creation_date\":\"2023-10-01T13:58:24-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 19:03:18','2023-10-01 19:03:18'),(9664,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  953\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T14:17:08-05:00\",\"transaction\":{\"id\":\"trwwbkvbem4iv0uocyrq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T14:15:45-05:00\",\"operation_date\":\"2023-10-01T14:15:45-05:00\",\"description\":\"Pago Mensual academia: Dylan Alexander Grajales Castañeda (1032015427)\",\"error_message\":null,\"order_id\":\"7369F3C86BF3C0A354615432832D9E8F_DE2Q35O896_1696187742.4922\",\"due_date\":\"2023-10-02T02:15:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dylan Alexander\",\"last_name\":\"Grajales Castañeda\",\"email\":\"yesseniacas06@gmail.com\",\"phone_number\":\"3023306452\",\"address\":null,\"creation_date\":\"2023-10-01T14:15:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwwbkvbem4iv0uocyrq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 19:17:09','2023-10-01 19:17:09'),(9665,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T14:21:58-05:00\",\"transaction\":{\"id\":\"trgfj5vu2ebnmrvyshzx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T14:20:19-05:00\",\"operation_date\":\"2023-10-01T14:20:19-05:00\",\"description\":\"Pago Mensual academia: Juan pablo ceballos londoño (1032022715)\",\"error_message\":null,\"order_id\":\"AAFD8346A677AF9DB717AFEADF6B62EC_1WFHMBK96I_1696188015.4776\",\"due_date\":\"2023-10-02T02:20:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuela\",\"last_name\":\"Londoño \",\"email\":\"manuelalondono530@gmail.com\",\"phone_number\":\"3007349689\",\"address\":null,\"creation_date\":\"2023-10-01T14:20:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgfj5vu2ebnmrvyshzx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 19:21:59','2023-10-01 19:21:59'),(9666,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T13:24:17-06:00\",\"transaction\":{\"id\":\"trgfj5vu2ebnmrvyshzx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192638616\",\"creation_date\":\"2023-10-01T14:20:19-06:00\",\"operation_date\":\"2023-10-01T13:22:56-06:00\",\"description\":\"Pago Mensual academia: Juan pablo ceballos londoño (1032022715)\",\"error_message\":null,\"order_id\":\"AAFD8346A677AF9DB717AFEADF6B62EC_1WFHMBK96I_1696188015.4776\",\"due_date\":\"2023-10-02T02:20:19-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuela\",\"last_name\":\"Londoño \",\"email\":\"manuelalondono530@gmail.com\",\"phone_number\":\"3007349689\",\"address\":null,\"creation_date\":\"2023-10-01T14:20:19-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 19:24:17','2023-10-01 19:24:17'),(9667,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  836\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T13:27:14-06:00\",\"transaction\":{\"id\":\"trwwbkvbem4iv0uocyrq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192631431\",\"creation_date\":\"2023-10-01T14:15:45-06:00\",\"operation_date\":\"2023-10-01T13:26:33-06:00\",\"description\":\"Pago Mensual academia: Dylan Alexander Grajales Castañeda (1032015427)\",\"error_message\":null,\"order_id\":\"7369F3C86BF3C0A354615432832D9E8F_DE2Q35O896_1696187742.4922\",\"due_date\":\"2023-10-02T02:15:45-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dylan Alexander\",\"last_name\":\"Grajales Castañeda\",\"email\":\"yesseniacas06@gmail.com\",\"phone_number\":\"3023306452\",\"address\":null,\"creation_date\":\"2023-10-01T14:15:45-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 19:27:15','2023-10-01 19:27:15'),(9668,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  947\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T14:37:45-05:00\",\"transaction\":{\"id\":\"trhi803cnzv0yz3gk1xo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T14:36:14-05:00\",\"operation_date\":\"2023-10-01T14:36:14-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Acevedo Atehortua (1025652843)\",\"error_message\":null,\"order_id\":\"E546594AD40B116388B50D48C6955F2B_DH2A5YMFIK_1696188968.0538\",\"due_date\":\"2023-10-02T02:36:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Amdrea\",\"last_name\":\"Atehortua Higuita\",\"email\":\"naty1017147045@gmail.com\",\"phone_number\":\"3007211948\",\"address\":null,\"creation_date\":\"2023-10-01T14:36:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhi803cnzv0yz3gk1xo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 19:37:46','2023-10-01 19:37:46'),(9669,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  830\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T14:41:49-05:00\",\"transaction\":{\"id\":\"trhi803cnzv0yz3gk1xo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192661661\",\"creation_date\":\"2023-10-01T14:36:14-05:00\",\"operation_date\":\"2023-10-01T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Acevedo Atehortua (1025652843)\",\"error_message\":null,\"order_id\":\"E546594AD40B116388B50D48C6955F2B_DH2A5YMFIK_1696188968.0538\",\"due_date\":\"2023-10-02T02:36:14-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Amdrea\",\"last_name\":\"Atehortua Higuita\",\"email\":\"naty1017147045@gmail.com\",\"phone_number\":\"3007211948\",\"address\":null,\"creation_date\":\"2023-10-01T14:36:14-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 19:41:50','2023-10-01 19:41:50'),(9670,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T15:01:58-05:00\",\"transaction\":{\"id\":\"trioaoounlfzl89jmdyx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T15:00:32-05:00\",\"operation_date\":\"2023-10-01T15:00:32-05:00\",\"description\":\"Pago Mensual academia: emiliano sinisterra arias (1117034837)\",\"error_message\":null,\"order_id\":\"69295F5F6BD7D1A08DA4919B5BB95BFF_TG3CP6YX1K_1696190427.9478\",\"due_date\":\"2023-10-02T03:00:32-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"eddi\",\"last_name\":\"sinisterra\",\"email\":\"andres.villa14@icloud.com\",\"phone_number\":\"3246836774\",\"address\":null,\"creation_date\":\"2023-10-01T15:00:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trioaoounlfzl89jmdyx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 20:01:59','2023-10-01 20:01:59'),(9671,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T15:03:10-05:00\",\"transaction\":{\"id\":\"trioaoounlfzl89jmdyx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192696244\",\"creation_date\":\"2023-10-01T15:00:32-05:00\",\"operation_date\":\"2023-10-01T15:03:01-05:00\",\"description\":\"Pago Mensual academia: emiliano sinisterra arias (1117034837)\",\"error_message\":null,\"order_id\":\"69295F5F6BD7D1A08DA4919B5BB95BFF_TG3CP6YX1K_1696190427.9478\",\"due_date\":\"2023-10-02T03:00:32-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"eddi\",\"last_name\":\"sinisterra\",\"email\":\"andres.villa14@icloud.com\",\"phone_number\":\"3246836774\",\"address\":null,\"creation_date\":\"2023-10-01T15:00:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 20:03:10','2023-10-01 20:03:10'),(9672,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T15:29:41-05:00\",\"transaction\":{\"id\":\"trwzamiaswleujpkqxar\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T15:29:00-05:00\",\"operation_date\":\"2023-10-01T15:29:00-05:00\",\"description\":\"Pago Mensual academia: MIGUEL ANGEL BERMUDEZ ARANGO (1155716302)\",\"error_message\":null,\"order_id\":\"F40EE694989B3E2161BE989E7B9907FC_7AUWTFBENV_1696192135.7517\",\"due_date\":\"2023-10-02T03:29:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Bermúdez\",\"email\":\"bermudezarango27@gmail.com\",\"phone_number\":\"3113882209\",\"address\":null,\"creation_date\":\"2023-10-01T15:29:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwzamiaswleujpkqxar/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 20:29:41','2023-10-01 20:29:41'),(9673,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T15:32:18-05:00\",\"transaction\":{\"id\":\"trwzamiaswleujpkqxar\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192735104\",\"creation_date\":\"2023-10-01T15:29:00-05:00\",\"operation_date\":\"2023-10-01T00:00:00-05:00\",\"description\":\"Pago Mensual academia: MIGUEL ANGEL BERMUDEZ ARANGO (1155716302)\",\"error_message\":null,\"order_id\":\"F40EE694989B3E2161BE989E7B9907FC_7AUWTFBENV_1696192135.7517\",\"due_date\":\"2023-10-02T03:29:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Manuel\",\"last_name\":\"Bermúdez\",\"email\":\"bermudezarango27@gmail.com\",\"phone_number\":\"3113882209\",\"address\":null,\"creation_date\":\"2023-10-01T15:29:00-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 20:32:18','2023-10-01 20:32:18'),(9674,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T15:59:26-05:00\",\"transaction\":{\"id\":\"trsk18qlvpu1svu1pd7v\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T15:57:04-05:00\",\"operation_date\":\"2023-10-01T15:57:04-05:00\",\"description\":\"Pago Mensual academia: Nicolas Quinchia Patiño (1034927231)\",\"error_message\":null,\"order_id\":\"5F245EBEBCE62DDCFACD1B6292C69392_EIMDUHL6PW_1696193821.7403\",\"due_date\":\"2023-10-02T03:57:04-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Quinchia Patiño\",\"email\":\"npatinon.2002@gmail.com\",\"phone_number\":\"3042901987\",\"address\":null,\"creation_date\":\"2023-10-01T15:57:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsk18qlvpu1svu1pd7v/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 20:59:27','2023-10-01 20:59:27'),(9675,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T16:02:07-05:00\",\"transaction\":{\"id\":\"trsk18qlvpu1svu1pd7v\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"192777695\",\"creation_date\":\"2023-10-01T15:57:04-05:00\",\"operation_date\":\"2023-10-01T16:00:40-05:00\",\"description\":\"Pago Mensual academia: Nicolas Quinchia Patiño (1034927231)\",\"error_message\":null,\"order_id\":\"5F245EBEBCE62DDCFACD1B6292C69392_EIMDUHL6PW_1696193821.7403\",\"due_date\":\"2023-10-02T03:57:04-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Quinchia Patiño\",\"email\":\"npatinon.2002@gmail.com\",\"phone_number\":\"3042901987\",\"address\":null,\"creation_date\":\"2023-10-01T15:57:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 21:02:08','2023-10-01 21:02:08'),(9676,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T18:56:50-05:00\",\"transaction\":{\"id\":\"trnmir9ibxhlluuzwbzo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T18:55:42-05:00\",\"operation_date\":\"2023-10-01T18:55:42-05:00\",\"description\":\"Pago Mensual academia: Santiago urrego Zapata (1020321239)\",\"error_message\":null,\"order_id\":\"8C26D2FAD09DC76F3FF36B6EA752B0E1_EQT7FNM8UR_1696204533.8914\",\"due_date\":\"2023-10-02T06:55:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yhony\",\"last_name\":\"urrego\",\"email\":\"yhonyurrego@gmail.com\",\"phone_number\":\"3175122540\",\"address\":null,\"creation_date\":\"2023-10-01T18:55:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnmir9ibxhlluuzwbzo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 23:56:51','2023-10-01 23:56:51'),(9677,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T18:59:03-05:00\",\"transaction\":{\"id\":\"trnmir9ibxhlluuzwbzo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"193040045\",\"creation_date\":\"2023-10-01T18:55:42-05:00\",\"operation_date\":\"2023-10-01T18:58:04-05:00\",\"description\":\"Pago Mensual academia: Santiago urrego Zapata (1020321239)\",\"error_message\":null,\"order_id\":\"8C26D2FAD09DC76F3FF36B6EA752B0E1_EQT7FNM8UR_1696204533.8914\",\"due_date\":\"2023-10-02T06:55:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yhony\",\"last_name\":\"urrego\",\"email\":\"yhonyurrego@gmail.com\",\"phone_number\":\"3175122540\",\"address\":null,\"creation_date\":\"2023-10-01T18:55:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-01 23:59:04','2023-10-01 23:59:04'),(9678,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T20:25:25-05:00\",\"transaction\":{\"id\":\"trbey8s9shfr1j09wt5f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T20:24:04-05:00\",\"operation_date\":\"2023-10-01T20:24:04-05:00\",\"description\":\"Pago Mensual academia: Isaac Giraldo Giraldo (1020315563)\",\"error_message\":null,\"order_id\":\"608B30E45F4B60ADB254A8127A6DA8EF_8N392OTYIQ_1696209840.8958\",\"due_date\":\"2023-10-02T08:24:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Alejandro \",\"last_name\":\"Giraldo Giraldo\",\"email\":\"lenyliz_giraldo7@hotmail.com\",\"phone_number\":\"3042228036\",\"address\":null,\"creation_date\":\"2023-10-01T20:24:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbey8s9shfr1j09wt5f/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 01:25:25','2023-10-02 01:25:25'),(9679,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T20:27:03-05:00\",\"transaction\":{\"id\":\"trbey8s9shfr1j09wt5f\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"193191473\",\"creation_date\":\"2023-10-01T20:24:04-05:00\",\"operation_date\":\"2023-10-01T20:26:38-05:00\",\"description\":\"Pago Mensual academia: Isaac Giraldo Giraldo (1020315563)\",\"error_message\":null,\"order_id\":\"608B30E45F4B60ADB254A8127A6DA8EF_8N392OTYIQ_1696209840.8958\",\"due_date\":\"2023-10-02T08:24:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniel Alejandro \",\"last_name\":\"Giraldo Giraldo\",\"email\":\"lenyliz_giraldo7@hotmail.com\",\"phone_number\":\"3042228036\",\"address\":null,\"creation_date\":\"2023-10-01T20:24:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 01:27:04','2023-10-02 01:27:04'),(9680,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T21:01:07-05:00\",\"transaction\":{\"id\":\"trgx74ogkzz29rcxe04s\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T20:59:58-05:00\",\"operation_date\":\"2023-10-01T20:59:58-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Sierra Rua (1018263693)\",\"error_message\":null,\"order_id\":\"7BFA32686D200C64CB46DE03AC2EAC0D_7DO2QPXN6Z_1696211981.8198\",\"due_date\":\"2023-10-02T08:59:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maximiliano\",\"last_name\":\"Sierra Rua\",\"email\":\"andrearua14@hotmail.com\",\"phone_number\":\"3014464474\",\"address\":null,\"creation_date\":\"2023-10-01T20:59:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgx74ogkzz29rcxe04s/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 02:01:08','2023-10-02 02:01:08'),(9681,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T21:03:59-05:00\",\"transaction\":{\"id\":\"trgx74ogkzz29rcxe04s\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"193251463\",\"creation_date\":\"2023-10-01T20:59:58-05:00\",\"operation_date\":\"2023-10-01T21:03:52-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Sierra Rua (1018263693)\",\"error_message\":null,\"order_id\":\"7BFA32686D200C64CB46DE03AC2EAC0D_7DO2QPXN6Z_1696211981.8198\",\"due_date\":\"2023-10-02T08:59:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maximiliano\",\"last_name\":\"Sierra Rua\",\"email\":\"andrearua14@hotmail.com\",\"phone_number\":\"3014464474\",\"address\":null,\"creation_date\":\"2023-10-01T20:59:58-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 02:04:00','2023-10-02 02:04:00'),(9682,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T21:26:27-05:00\",\"transaction\":{\"id\":\"trgqcjxwomo0p6i3ltt4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T21:25:45-05:00\",\"operation_date\":\"2023-10-01T21:25:45-05:00\",\"description\":\"Pago Mensual academia: Santiago Bilbao Lopez (1036456780)\",\"error_message\":null,\"order_id\":\"29C0C0EE223856F336D7EA8052057753_5QTRB419EM_1696213539.1926\",\"due_date\":\"2023-10-02T09:25:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gustavo\",\"last_name\":\"Bilbao Cortes\",\"email\":\"gbilbao.gb@gmail.com\",\"phone_number\":\"3002033557\",\"address\":null,\"creation_date\":\"2023-10-01T21:25:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgqcjxwomo0p6i3ltt4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 02:26:28','2023-10-02 02:26:28'),(9683,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  844\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-01T21:27:34-05:00\",\"transaction\":{\"id\":\"trgqcjxwomo0p6i3ltt4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-01T21:25:45-05:00\",\"operation_date\":\"2023-10-01T21:26:46-05:00\",\"description\":\"Pago Mensual academia: Santiago Bilbao Lopez (1036456780)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"29C0C0EE223856F336D7EA8052057753_5QTRB419EM_1696213539.1926\",\"due_date\":\"2023-10-02T09:25:45-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Gustavo\",\"last_name\":\"Bilbao Cortes\",\"email\":\"gbilbao.gb@gmail.com\",\"phone_number\":\"3002033557\",\"address\":null,\"creation_date\":\"2023-10-01T21:25:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 02:27:34','2023-10-02 02:27:34'),(9684,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-01T21:29:20-05:00\",\"transaction\":{\"id\":\"trmlpjsffk8icihfjrwn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-01T21:28:37-05:00\",\"operation_date\":\"2023-10-01T21:28:37-05:00\",\"description\":\"Pago Mensual academia: Santiago Bilbao Lopez (1036456780)\",\"error_message\":null,\"order_id\":\"29C0C0EE223856F336D7EA8052057753_5QTRB419EM_1696213681.897\",\"due_date\":\"2023-10-02T09:28:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gustavo\",\"last_name\":\"Bilbao Cortes\",\"email\":\"gbilbao.gb@gmail.com\",\"phone_number\":\"3002033557\",\"address\":null,\"creation_date\":\"2023-10-01T21:28:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmlpjsffk8icihfjrwn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 02:29:21','2023-10-02 02:29:21'),(9685,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-01T21:30:16-05:00\",\"transaction\":{\"id\":\"trmlpjsffk8icihfjrwn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"193294137\",\"creation_date\":\"2023-10-01T21:28:37-05:00\",\"operation_date\":\"2023-10-01T21:30:09-05:00\",\"description\":\"Pago Mensual academia: Santiago Bilbao Lopez (1036456780)\",\"error_message\":null,\"order_id\":\"29C0C0EE223856F336D7EA8052057753_5QTRB419EM_1696213681.897\",\"due_date\":\"2023-10-02T09:28:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Gustavo\",\"last_name\":\"Bilbao Cortes\",\"email\":\"gbilbao.gb@gmail.com\",\"phone_number\":\"3002033557\",\"address\":null,\"creation_date\":\"2023-10-01T21:28:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 02:30:17','2023-10-02 02:30:17'),(9686,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-02T02:09:19-06:00\",\"transaction\":{\"id\":\"trtffedyalv53ylznssx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-28T17:43:53-06:00\",\"operation_date\":\"2023-09-28T17:43:53-06:00\",\"description\":\"Pago Mensual academia: Emiliano Fiallo García (1027813536)\",\"error_message\":null,\"order_id\":\"97008EA27052082BE055447BE9E85612_NMHTZ8PLSI_1695940312.1518\",\"due_date\":\"2023-09-29T05:43:53-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"García Sánchez\",\"email\":\"tatigs0303@hotmail.com\",\"phone_number\":\"3137669661\",\"address\":null,\"creation_date\":\"2023-09-28T17:43:53-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtffedyalv53ylznssx/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 08:09:20','2023-10-02 08:09:20'),(9687,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-02T02:09:19-06:00\",\"transaction\":{\"id\":\"trsyddinfi6gxjzlhmkz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-28T14:55:50-06:00\",\"operation_date\":\"2023-09-28T14:55:50-06:00\",\"description\":\"Pago Mensual academia: martin sierra mesa (1123972382)\",\"error_message\":null,\"order_id\":\"0AB922BA3E948387B4B2A85FCB83D194_CWETDP0BMS_1695930934.9185\",\"due_date\":\"2023-09-29T02:55:50-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"sierra mesa\",\"email\":\"haroldsipe@hotmail.com\",\"phone_number\":\"3147218029\",\"address\":null,\"creation_date\":\"2023-09-28T14:55:50-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsyddinfi6gxjzlhmkz/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 08:09:20','2023-10-02 08:09:20'),(9688,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-02T02:09:19-06:00\",\"transaction\":{\"id\":\"tr49tm9rebezlucayvbn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-28T17:25:33-06:00\",\"operation_date\":\"2023-09-28T17:25:33-06:00\",\"description\":\"Pago Mensual academia: Emiliano Fiallo García (1027813536)\",\"error_message\":null,\"order_id\":\"97008EA27052082BE055447BE9E85612_NMHTZ8PLSI_1695939928.5914\",\"due_date\":\"2023-09-29T05:25:33-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"García Sánchez\",\"email\":\"tatigs0303@hotmail.com\",\"phone_number\":\"3137669661\",\"address\":null,\"creation_date\":\"2023-09-28T17:25:32-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr49tm9rebezlucayvbn/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 08:09:20','2023-10-02 08:09:20'),(9689,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-02T02:09:19-06:00\",\"transaction\":{\"id\":\"trdzrmx8asapy6598tkm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-29T11:00:35-06:00\",\"operation_date\":\"2023-09-29T11:00:35-06:00\",\"description\":\"Pago Mensual academia: jeronimo alvarez pacheco (1019906046)\",\"error_message\":null,\"order_id\":\"0530E22DEA41E24A039563139CDC215E_7TGXEAPB6O_1696003225.1819\",\"due_date\":\"2023-09-29T23:00:35-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hugo andres\",\"last_name\":\"alvarez\",\"email\":\"hugoandres.alvarez@gmail.com\",\"phone_number\":\"3005865449\",\"address\":null,\"creation_date\":\"2023-09-29T11:00:35-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdzrmx8asapy6598tkm/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 08:09:20','2023-10-02 08:09:20'),(9690,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-02T02:09:19-06:00\",\"transaction\":{\"id\":\"trch6ckm9psmfjjttgi1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-28T17:57:27-06:00\",\"operation_date\":\"2023-09-28T17:57:27-06:00\",\"description\":\"Pago Mensual academia: Emiliano Fiallo García (1027813536)\",\"error_message\":null,\"order_id\":\"97008EA27052082BE055447BE9E85612_NMHTZ8PLSI_1695941180.927\",\"due_date\":\"2023-09-29T05:57:27-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"García Sánchez\",\"email\":\"tatigs0303@hotmail.com\",\"phone_number\":\"3137669661\",\"address\":null,\"creation_date\":\"2023-09-28T17:57:27-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trch6ckm9psmfjjttgi1/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 08:09:20','2023-10-02 08:09:20'),(9691,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-02T02:09:19-06:00\",\"transaction\":{\"id\":\"troctbfeps9deaknwxhb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-09-28T17:30:20-06:00\",\"operation_date\":\"2023-09-28T17:30:20-06:00\",\"description\":\"Pago Mensual academia: Emiliano Fiallo García (1027813536)\",\"error_message\":null,\"order_id\":\"97008EA27052082BE055447BE9E85612_NMHTZ8PLSI_1695940215.8444\",\"due_date\":\"2023-09-29T05:30:20-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"García Sánchez\",\"email\":\"tatigs0303@hotmail.com\",\"phone_number\":\"3137669661\",\"address\":null,\"creation_date\":\"2023-09-28T17:30:20-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/troctbfeps9deaknwxhb/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 08:09:20','2023-10-02 08:09:20'),(9692,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T05:37:38-05:00\",\"transaction\":{\"id\":\"trgfmfo8rtxhbyvo9vxi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T05:36:51-05:00\",\"operation_date\":\"2023-10-02T05:36:51-05:00\",\"description\":\"Pago Mensual academia: Lucas Eusse Hernandez (1034993922)\",\"error_message\":null,\"order_id\":\"87DB7E7138EDB20AEC02BB8CA2281DD0_8URBJ6CDLE_1696242983.444\",\"due_date\":\"2023-10-02T17:36:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catleya\",\"last_name\":\"hernandez\",\"email\":\"catleyah@hotmail.com\",\"phone_number\":\"3218521920\",\"address\":null,\"creation_date\":\"2023-10-02T05:36:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgfmfo8rtxhbyvo9vxi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 10:37:39','2023-10-02 10:37:39'),(9693,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T05:38:48-05:00\",\"transaction\":{\"id\":\"trgfmfo8rtxhbyvo9vxi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"193472174\",\"creation_date\":\"2023-10-02T05:36:51-05:00\",\"operation_date\":\"2023-10-02T05:38:33-05:00\",\"description\":\"Pago Mensual academia: Lucas Eusse Hernandez (1034993922)\",\"error_message\":null,\"order_id\":\"87DB7E7138EDB20AEC02BB8CA2281DD0_8URBJ6CDLE_1696242983.444\",\"due_date\":\"2023-10-02T17:36:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catleya\",\"last_name\":\"hernandez\",\"email\":\"catleyah@hotmail.com\",\"phone_number\":\"3218521920\",\"address\":null,\"creation_date\":\"2023-10-02T05:36:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 10:38:49','2023-10-02 10:38:49'),(9694,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T05:46:48-05:00\",\"transaction\":{\"id\":\"trkbo3pin1gworgnsjrf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T05:46:05-05:00\",\"operation_date\":\"2023-10-02T05:46:05-05:00\",\"description\":\"Pago Mensual academia: samuel acevedo rojas (1035014174)\",\"error_message\":null,\"order_id\":\"EC99DD0BBD9458BC47D4B550B55AA1B2_79DSF65JA2_1696243562.4064\",\"due_date\":\"2023-10-02T17:46:05-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"melissa\",\"last_name\":\"rojas rios\",\"email\":\"melii0526@hotmail.com\",\"phone_number\":\"3113652570\",\"address\":null,\"creation_date\":\"2023-10-02T05:46:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkbo3pin1gworgnsjrf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 10:46:48','2023-10-02 10:46:48'),(9695,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T05:47:43-05:00\",\"transaction\":{\"id\":\"trkbo3pin1gworgnsjrf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"193476335\",\"creation_date\":\"2023-10-02T05:46:05-05:00\",\"operation_date\":\"2023-10-02T05:47:38-05:00\",\"description\":\"Pago Mensual academia: samuel acevedo rojas (1035014174)\",\"error_message\":null,\"order_id\":\"EC99DD0BBD9458BC47D4B550B55AA1B2_79DSF65JA2_1696243562.4064\",\"due_date\":\"2023-10-02T17:46:05-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"melissa\",\"last_name\":\"rojas rios\",\"email\":\"melii0526@hotmail.com\",\"phone_number\":\"3113652570\",\"address\":null,\"creation_date\":\"2023-10-02T05:46:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 10:47:43','2023-10-02 10:47:43'),(9696,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T07:03:27-05:00\",\"transaction\":{\"id\":\"trzzqvxukaq0ah0difxq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T07:02:08-05:00\",\"operation_date\":\"2023-10-02T07:02:08-05:00\",\"description\":\"Pago Mensual academia: isaac maya valencia (1155717119)\",\"error_message\":null,\"order_id\":\"C5E1AB9C931DF8F5E4C5A8AA53837D52_8QLWJV73FP_1696248123.1551\",\"due_date\":\"2023-10-02T19:02:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"maya barrera\",\"email\":\"felipemaya318@gmail.com\",\"phone_number\":\"3155880709\",\"address\":null,\"creation_date\":\"2023-10-02T07:02:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzzqvxukaq0ah0difxq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 12:03:28','2023-10-02 12:03:28'),(9697,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T06:06:15-06:00\",\"transaction\":{\"id\":\"trzzqvxukaq0ah0difxq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"193540975\",\"creation_date\":\"2023-10-02T07:02:08-06:00\",\"operation_date\":\"2023-10-02T06:04:26-06:00\",\"description\":\"Pago Mensual academia: isaac maya valencia (1155717119)\",\"error_message\":null,\"order_id\":\"C5E1AB9C931DF8F5E4C5A8AA53837D52_8QLWJV73FP_1696248123.1551\",\"due_date\":\"2023-10-02T19:02:08-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan felipe\",\"last_name\":\"maya barrera\",\"email\":\"felipemaya318@gmail.com\",\"phone_number\":\"3155880709\",\"address\":null,\"creation_date\":\"2023-10-02T07:02:08-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 12:06:15','2023-10-02 12:06:15'),(9698,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  903\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T07:21:22-05:00\",\"transaction\":{\"id\":\"trfvwb0h265pgecqwmgu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-02T07:21:22-05:00\",\"operation_date\":\"2023-10-02T07:21:22-05:00\",\"description\":\"Pago Mensual academia: Martin Monsalve Guzman (1033202456)\",\"error_message\":null,\"order_id\":\"BE3AC64E67E84198F03F45B661F2124A_SGFV0TU28M_1696249278.521\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Monsalve Arbelaez\",\"email\":\"alejandromonsalve91@gmail.com\",\"phone_number\":\"3002140944\",\"address\":null,\"creation_date\":\"2023-10-02T07:21:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfvwb0h265pgecqwmgu/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-02 12:21:22','2023-10-02 12:21:22'),(9699,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1157\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T07:22:20-05:00\",\"transaction\":{\"id\":\"trfvwb0h265pgecqwmgu\",\"authorization\":\"855069\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-02T07:21:22-05:00\",\"operation_date\":\"2023-10-02T07:22:19-05:00\",\"description\":\"Pago Mensual academia: Martin Monsalve Guzman (1033202456)\",\"error_message\":null,\"order_id\":\"BE3AC64E67E84198F03F45B661F2124A_SGFV0TU28M_1696249278.521\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"400491XXXXXX0552\",\"holder_name\":\"Alejandro Monsalve \",\"expiration_year\":\"28\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE OCCIDENTE\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Alejandro\",\"last_name\":\"Monsalve Arbelaez\",\"email\":\"alejandromonsalve91@gmail.com\",\"phone_number\":\"3002140944\",\"address\":null,\"creation_date\":\"2023-10-02T07:21:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfvwb0h265pgecqwmgu/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-02 12:22:21','2023-10-02 12:22:21'),(9700,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T07:41:07-05:00\",\"transaction\":{\"id\":\"tr1f5v4lfdr3xnwxzh62\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T07:39:39-05:00\",\"operation_date\":\"2023-10-02T07:39:39-05:00\",\"description\":\"Pago Mensual academia: Josias Rave Rodríguez (1036453412)\",\"error_message\":null,\"order_id\":\"094BB65EF46D3EB4BE0A87877EC333EB_4PEDWAXJK9_1696250371.669\",\"due_date\":\"2023-10-02T19:39:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Rave\",\"email\":\"carlosmariorave71@gmail.com\",\"phone_number\":\"3216136223\",\"address\":null,\"creation_date\":\"2023-10-02T07:39:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1f5v4lfdr3xnwxzh62/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 12:41:07','2023-10-02 12:41:07'),(9701,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T07:42:53-05:00\",\"transaction\":{\"id\":\"tr1f5v4lfdr3xnwxzh62\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"193600764\",\"creation_date\":\"2023-10-02T07:39:39-05:00\",\"operation_date\":\"2023-10-02T07:42:39-05:00\",\"description\":\"Pago Mensual academia: Josias Rave Rodríguez (1036453412)\",\"error_message\":null,\"order_id\":\"094BB65EF46D3EB4BE0A87877EC333EB_4PEDWAXJK9_1696250371.669\",\"due_date\":\"2023-10-02T19:39:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carlos Mario\",\"last_name\":\"Rave\",\"email\":\"carlosmariorave71@gmail.com\",\"phone_number\":\"3216136223\",\"address\":null,\"creation_date\":\"2023-10-02T07:39:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 12:42:53','2023-10-02 12:42:53'),(9702,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T08:32:32-05:00\",\"transaction\":{\"id\":\"tr05hsstninalemgnapt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T08:31:54-05:00\",\"operation_date\":\"2023-10-02T08:31:54-05:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":null,\"order_id\":\"5101A4796C5127131B2112E2BC6FE02B_OPKG9UE1IX_1696253505.5619\",\"due_date\":\"2023-10-02T20:31:54-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-10-02T08:31:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr05hsstninalemgnapt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 13:32:33','2023-10-02 13:32:33'),(9703,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T08:34:40-05:00\",\"transaction\":{\"id\":\"tr05hsstninalemgnapt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"193725868\",\"creation_date\":\"2023-10-02T08:31:54-05:00\",\"operation_date\":\"2023-10-02T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Isaac Carmona Jaramillo (1239489984)\",\"error_message\":null,\"order_id\":\"5101A4796C5127131B2112E2BC6FE02B_OPKG9UE1IX_1696253505.5619\",\"due_date\":\"2023-10-02T20:31:54-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Isaac\",\"last_name\":\"Carmona Jaramillo\",\"email\":\"saramjaramillo@hotmail.com\",\"phone_number\":\"3122254492\",\"address\":null,\"creation_date\":\"2023-10-02T08:31:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 13:34:41','2023-10-02 13:34:41'),(9704,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T09:35:35-05:00\",\"transaction\":{\"id\":\"trsbzpuddmzgysogfrvn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T09:34:35-05:00\",\"operation_date\":\"2023-10-02T09:34:35-05:00\",\"description\":\"Pago Mensual academia: Emmanuel alvarez ramirez (32209206)\",\"error_message\":null,\"order_id\":\"13384FFC9D8BDB21C53C6F72D46F7866_QSA4LKG3W7_1696257261.6494\",\"due_date\":\"2023-10-02T21:34:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isabel\",\"last_name\":\"ramirez arbelaez\",\"email\":\"Isabel.ramirez.arbelaez@hotmail.com\",\"phone_number\":\"3015830669\",\"address\":null,\"creation_date\":\"2023-10-02T09:34:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsbzpuddmzgysogfrvn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 14:35:36','2023-10-02 14:35:36'),(9705,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T09:37:07-05:00\",\"transaction\":{\"id\":\"trsbzpuddmzgysogfrvn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"193931613\",\"creation_date\":\"2023-10-02T09:34:35-05:00\",\"operation_date\":\"2023-10-02T09:36:59-05:00\",\"description\":\"Pago Mensual academia: Emmanuel alvarez ramirez (32209206)\",\"error_message\":null,\"order_id\":\"13384FFC9D8BDB21C53C6F72D46F7866_QSA4LKG3W7_1696257261.6494\",\"due_date\":\"2023-10-02T21:34:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"isabel\",\"last_name\":\"ramirez arbelaez\",\"email\":\"Isabel.ramirez.arbelaez@hotmail.com\",\"phone_number\":\"3015830669\",\"address\":null,\"creation_date\":\"2023-10-02T09:34:35-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 14:37:08','2023-10-02 14:37:08'),(9706,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T09:50:29-05:00\",\"transaction\":{\"id\":\"truerqcpmadthf0x2czc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T09:49:26-05:00\",\"operation_date\":\"2023-10-02T09:49:26-05:00\",\"description\":\"Pago Mensual academia: JUAN DAVID RIVERA BOHORQUEZ (1020308065)\",\"error_message\":null,\"order_id\":\"5D0CB12F8C9AD6845110317AFC6E2183_GF1BHWMDEQ_1696258163.4024\",\"due_date\":\"2023-10-02T21:49:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN DAVID\",\"last_name\":\"RIVERA BOHORQUEZ\",\"email\":\"durley374@yahoo.es\",\"phone_number\":\"3012429864\",\"address\":null,\"creation_date\":\"2023-10-02T09:49:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truerqcpmadthf0x2czc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 14:50:30','2023-10-02 14:50:30'),(9707,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T09:51:46-05:00\",\"transaction\":{\"id\":\"truerqcpmadthf0x2czc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"193984104\",\"creation_date\":\"2023-10-02T09:49:26-05:00\",\"operation_date\":\"2023-10-02T09:51:26-05:00\",\"description\":\"Pago Mensual academia: JUAN DAVID RIVERA BOHORQUEZ (1020308065)\",\"error_message\":null,\"order_id\":\"5D0CB12F8C9AD6845110317AFC6E2183_GF1BHWMDEQ_1696258163.4024\",\"due_date\":\"2023-10-02T21:49:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN DAVID\",\"last_name\":\"RIVERA BOHORQUEZ\",\"email\":\"durley374@yahoo.es\",\"phone_number\":\"3012429864\",\"address\":null,\"creation_date\":\"2023-10-02T09:49:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 14:51:46','2023-10-02 14:51:46'),(9708,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  916\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T10:36:58-05:00\",\"transaction\":{\"id\":\"tr57pbqpoiryqsnblldv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T10:35:54-05:00\",\"operation_date\":\"2023-10-02T10:35:54-05:00\",\"description\":\"Pago Mensual academia: Jacobo Palacios Morales (1023595586)\",\"error_message\":null,\"order_id\":\"33DD6DBA1D56E826AAC1CBF23CDCCA87_OGINV6CSMR_1696260930.5818\",\"due_date\":\"2023-10-02T22:35:54-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Sandra\",\"last_name\":\"Morales\",\"email\":\"crismo0304@gmail.com\",\"phone_number\":\"3147456601\",\"address\":null,\"creation_date\":\"2023-10-02T10:35:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr57pbqpoiryqsnblldv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 15:36:59','2023-10-02 15:36:59'),(9709,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  799\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T10:38:47-05:00\",\"transaction\":{\"id\":\"tr57pbqpoiryqsnblldv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"194152657\",\"creation_date\":\"2023-10-02T10:35:54-05:00\",\"operation_date\":\"2023-10-02T10:38:28-05:00\",\"description\":\"Pago Mensual academia: Jacobo Palacios Morales (1023595586)\",\"error_message\":null,\"order_id\":\"33DD6DBA1D56E826AAC1CBF23CDCCA87_OGINV6CSMR_1696260930.5818\",\"due_date\":\"2023-10-02T22:35:54-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Sandra\",\"last_name\":\"Morales\",\"email\":\"crismo0304@gmail.com\",\"phone_number\":\"3147456601\",\"address\":null,\"creation_date\":\"2023-10-02T10:35:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 15:38:48','2023-10-02 15:38:48'),(9710,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T10:39:34-05:00\",\"transaction\":{\"id\":\"trctu7we8uognh9sa91a\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-02T10:39:34-05:00\",\"operation_date\":\"2023-10-02T10:39:34-05:00\",\"description\":\"Pago Mensual academia: Nicolas Buitrago Gaviria (1034995250)\",\"error_message\":null,\"order_id\":\"DC49DFEBB0B00FD44AEFF5C60CC1F825_WMZ9G3LT84_1696261168.7481\",\"amount\":165900.00,\"customer\":{\"name\":\"Estella\",\"last_name\":\"Gaviria Restrepo\",\"email\":\"estellagaviriar@une.net.co\",\"phone_number\":\"3104639177\",\"address\":null,\"creation_date\":\"2023-10-02T10:39:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trctu7we8uognh9sa91a/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-02 15:39:34','2023-10-02 15:39:34'),(9711,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1143\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T10:40:30-05:00\",\"transaction\":{\"id\":\"trctu7we8uognh9sa91a\",\"authorization\":\"029522\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-02T10:39:34-05:00\",\"operation_date\":\"2023-10-02T10:40:29-05:00\",\"description\":\"Pago Mensual academia: Nicolas Buitrago Gaviria (1034995250)\",\"error_message\":null,\"order_id\":\"DC49DFEBB0B00FD44AEFF5C60CC1F825_WMZ9G3LT84_1696261168.7481\",\"card\":{\"type\":\"debit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491268XXXXXX7497\",\"holder_name\":\"Ramiro Buitrago Issa\",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"BANCOMER\",\"bank_code\":\"012\"},\"amount\":165900.00,\"customer\":{\"name\":\"Estella\",\"last_name\":\"Gaviria Restrepo\",\"email\":\"estellagaviriar@une.net.co\",\"phone_number\":\"3104639177\",\"address\":null,\"creation_date\":\"2023-10-02T10:39:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trctu7we8uognh9sa91a/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-02 15:40:30','2023-10-02 15:40:30'),(9712,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  913\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T10:56:19-05:00\",\"transaction\":{\"id\":\"trx9peycdxds5xylpqgo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T10:55:23-05:00\",\"operation_date\":\"2023-10-02T10:55:23-05:00\",\"description\":\"Pago Mensual academia: Isabella Jones Sanin (1035001858)\",\"error_message\":null,\"order_id\":\"53C5B2AFFA12EED84DFEC9BFD83550B1_ECRU980SXB_1696262116.6122\",\"due_date\":\"2023-10-02T22:55:23-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Camilo\",\"last_name\":\"Jones\",\"email\":\"camilojones@gmail.com\",\"phone_number\":\"3116094343\",\"address\":null,\"creation_date\":\"2023-10-02T10:55:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trx9peycdxds5xylpqgo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 15:56:20','2023-10-02 15:56:20'),(9713,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T10:56:25-05:00\",\"transaction\":{\"id\":\"trxpiazsqpzlyohsbdgj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T10:55:48-05:00\",\"operation_date\":\"2023-10-02T10:55:48-05:00\",\"description\":\"Pago Mensual academia: Santiago Marquez Millán (1239489330)\",\"error_message\":null,\"order_id\":\"0E139B17A92B2DF7D6C3C840E51465FE_6FYB0CMQX8_1696262143.5134\",\"due_date\":\"2023-10-02T22:55:48-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Alicia\",\"last_name\":\"Millán Villanueva\",\"email\":\"amillanv@gmail.com\",\"phone_number\":\"3016685074\",\"address\":null,\"creation_date\":\"2023-10-02T10:55:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxpiazsqpzlyohsbdgj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 15:56:26','2023-10-02 15:56:26'),(9714,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T10:57:22-05:00\",\"transaction\":{\"id\":\"trxpiazsqpzlyohsbdgj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"194223955\",\"creation_date\":\"2023-10-02T10:55:48-05:00\",\"operation_date\":\"2023-10-02T10:57:17-05:00\",\"description\":\"Pago Mensual academia: Santiago Marquez Millán (1239489330)\",\"error_message\":null,\"order_id\":\"0E139B17A92B2DF7D6C3C840E51465FE_6FYB0CMQX8_1696262143.5134\",\"due_date\":\"2023-10-02T22:55:48-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Alicia\",\"last_name\":\"Millán Villanueva\",\"email\":\"amillanv@gmail.com\",\"phone_number\":\"3016685074\",\"address\":null,\"creation_date\":\"2023-10-02T10:55:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 15:57:23','2023-10-02 15:57:23'),(9715,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  796\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T09:58:14-06:00\",\"transaction\":{\"id\":\"trx9peycdxds5xylpqgo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"194223320\",\"creation_date\":\"2023-10-02T10:55:23-06:00\",\"operation_date\":\"2023-10-02T09:57:50-06:00\",\"description\":\"Pago Mensual academia: Isabella Jones Sanin (1035001858)\",\"error_message\":null,\"order_id\":\"53C5B2AFFA12EED84DFEC9BFD83550B1_ECRU980SXB_1696262116.6122\",\"due_date\":\"2023-10-02T22:55:23-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Camilo\",\"last_name\":\"Jones\",\"email\":\"camilojones@gmail.com\",\"phone_number\":\"3116094343\",\"address\":null,\"creation_date\":\"2023-10-02T10:55:23-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 15:58:15','2023-10-02 15:58:15'),(9716,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T11:52:35-05:00\",\"transaction\":{\"id\":\"trpnxfema7lhhk7bifvm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T11:51:26-05:00\",\"operation_date\":\"2023-10-02T11:51:26-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Garcia Vargas (1027664631)\",\"error_message\":null,\"order_id\":\"FB8E51C5C713F2AAF71F62E03C5298DB_H705IAEOQ1_1696265483.3428\",\"due_date\":\"2023-10-02T23:51:26-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Vargas Rivillas\",\"email\":\"vargas.ana@gmail.com\",\"phone_number\":\"3108741568\",\"address\":null,\"creation_date\":\"2023-10-02T11:51:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpnxfema7lhhk7bifvm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 16:52:36','2023-10-02 16:52:36'),(9717,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T11:54:15-05:00\",\"transaction\":{\"id\":\"trpnxfema7lhhk7bifvm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"194432082\",\"creation_date\":\"2023-10-02T11:51:26-05:00\",\"operation_date\":\"2023-10-02T11:54:07-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Garcia Vargas (1027664631)\",\"error_message\":null,\"order_id\":\"FB8E51C5C713F2AAF71F62E03C5298DB_H705IAEOQ1_1696265483.3428\",\"due_date\":\"2023-10-02T23:51:26-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Ana Maria\",\"last_name\":\"Vargas Rivillas\",\"email\":\"vargas.ana@gmail.com\",\"phone_number\":\"3108741568\",\"address\":null,\"creation_date\":\"2023-10-02T11:51:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 16:54:15','2023-10-02 16:54:15'),(9718,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T12:07:45-05:00\",\"transaction\":{\"id\":\"trky9tro7e9yfkhbi8q8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T12:07:04-05:00\",\"operation_date\":\"2023-10-02T12:07:04-05:00\",\"description\":\"Pago Mensual academia: Isaac Iral Hoyos (1038875814)\",\"error_message\":null,\"order_id\":\"F0F6CC51DACEBE556699CCB45E2D43A8_RT5UQ67HNK_1696266421.588\",\"due_date\":\"2023-10-03T00:07:04-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maria Cristina\",\"last_name\":\"Hoyos Gomez\",\"email\":\"cristi1128@hotmail.com\",\"phone_number\":\"3008235802\",\"address\":null,\"creation_date\":\"2023-10-02T12:07:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trky9tro7e9yfkhbi8q8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 17:07:46','2023-10-02 17:07:46'),(9719,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T12:08:37-05:00\",\"transaction\":{\"id\":\"trky9tro7e9yfkhbi8q8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"194483360\",\"creation_date\":\"2023-10-02T12:07:04-05:00\",\"operation_date\":\"2023-10-02T12:08:32-05:00\",\"description\":\"Pago Mensual academia: Isaac Iral Hoyos (1038875814)\",\"error_message\":null,\"order_id\":\"F0F6CC51DACEBE556699CCB45E2D43A8_RT5UQ67HNK_1696266421.588\",\"due_date\":\"2023-10-03T00:07:04-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maria Cristina\",\"last_name\":\"Hoyos Gomez\",\"email\":\"cristi1128@hotmail.com\",\"phone_number\":\"3008235802\",\"address\":null,\"creation_date\":\"2023-10-02T12:07:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 17:08:37','2023-10-02 17:08:37'),(9720,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T13:00:13-05:00\",\"transaction\":{\"id\":\"trulhbfzckyhcsc0num9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T12:58:46-05:00\",\"operation_date\":\"2023-10-02T12:58:46-05:00\",\"description\":\"Pago Mensual academia: VICENTE GIRALDO ARANGO (1036457876)\",\"error_message\":null,\"order_id\":\"BEDC7106FFA9616DDC27E360B9AC02A6_X9ZB613O57_1696269498.5305\",\"due_date\":\"2023-10-03T00:58:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BEATRIZ\",\"last_name\":\"ARANGO AGUDELO\",\"email\":\"bearango609@gmail.com\",\"phone_number\":\"3044722226\",\"address\":null,\"creation_date\":\"2023-10-02T12:58:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trulhbfzckyhcsc0num9/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 18:00:13','2023-10-02 18:00:13'),(9721,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T13:01:47-05:00\",\"transaction\":{\"id\":\"trulhbfzckyhcsc0num9\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"194649204\",\"creation_date\":\"2023-10-02T12:58:46-05:00\",\"operation_date\":\"2023-10-02T13:01:37-05:00\",\"description\":\"Pago Mensual academia: VICENTE GIRALDO ARANGO (1036457876)\",\"error_message\":null,\"order_id\":\"BEDC7106FFA9616DDC27E360B9AC02A6_X9ZB613O57_1696269498.5305\",\"due_date\":\"2023-10-03T00:58:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BEATRIZ\",\"last_name\":\"ARANGO AGUDELO\",\"email\":\"bearango609@gmail.com\",\"phone_number\":\"3044722226\",\"address\":null,\"creation_date\":\"2023-10-02T12:58:46-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 18:01:47','2023-10-02 18:01:47'),(9722,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T13:08:32-05:00\",\"transaction\":{\"id\":\"trotbndqvgpngkrho7uy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T13:07:42-05:00\",\"operation_date\":\"2023-10-02T13:07:42-05:00\",\"description\":\"Pago Mensual academia: Martin Botero Montoya (1034998616)\",\"error_message\":null,\"order_id\":\"39B8F721582654655A6999AABE905204_956NEXBVDK_1696270059.9104\",\"due_date\":\"2023-10-03T01:07:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Botero Montoya\",\"email\":\"linamonty@hotmail.com\",\"phone_number\":\"3176567400\",\"address\":null,\"creation_date\":\"2023-10-02T13:07:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trotbndqvgpngkrho7uy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 18:08:32','2023-10-02 18:08:32'),(9723,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T12:12:33-06:00\",\"transaction\":{\"id\":\"trotbndqvgpngkrho7uy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"194673812\",\"creation_date\":\"2023-10-02T13:07:42-06:00\",\"operation_date\":\"2023-10-02T12:09:58-06:00\",\"description\":\"Pago Mensual academia: Martin Botero Montoya (1034998616)\",\"error_message\":null,\"order_id\":\"39B8F721582654655A6999AABE905204_956NEXBVDK_1696270059.9104\",\"due_date\":\"2023-10-03T01:07:42-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Botero Montoya\",\"email\":\"linamonty@hotmail.com\",\"phone_number\":\"3176567400\",\"address\":null,\"creation_date\":\"2023-10-02T13:07:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 18:12:34','2023-10-02 18:12:34'),(9724,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T14:03:07-05:00\",\"transaction\":{\"id\":\"tryinrce5pntkf00874e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T13:52:34-05:00\",\"operation_date\":\"2023-10-02T13:52:34-05:00\",\"description\":\"Pago Inscripción academia: Emiliano velez sanchez (1013465165)\",\"error_message\":null,\"order_id\":\"B1B0EF5BA6B569680ECE2FAE998C4D0A_5LPGH16OA4_1696272751.1584\",\"due_date\":\"2023-10-03T01:52:34-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"velez\",\"email\":\"mauroftalmo@hotmail.com\",\"phone_number\":\"3148966854\",\"address\":null,\"creation_date\":\"2023-10-02T13:52:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryinrce5pntkf00874e/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 19:03:08','2023-10-02 19:03:08'),(9725,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T14:04:17-05:00\",\"transaction\":{\"id\":\"tryinrce5pntkf00874e\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"194840029\",\"creation_date\":\"2023-10-02T13:52:34-05:00\",\"operation_date\":\"2023-10-02T14:04:06-05:00\",\"description\":\"Pago Inscripción academia: Emiliano velez sanchez (1013465165)\",\"error_message\":null,\"order_id\":\"B1B0EF5BA6B569680ECE2FAE998C4D0A_5LPGH16OA4_1696272751.1584\",\"due_date\":\"2023-10-03T01:52:34-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"velez\",\"email\":\"mauroftalmo@hotmail.com\",\"phone_number\":\"3148966854\",\"address\":null,\"creation_date\":\"2023-10-02T13:52:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 19:04:18','2023-10-02 19:04:18'),(9726,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T14:06:09-05:00\",\"transaction\":{\"id\":\"trc46tiebatrunlnf7n3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T14:05:19-05:00\",\"operation_date\":\"2023-10-02T14:05:19-05:00\",\"description\":\"Pago Mensual academia: Emiliano velez sanchez (1013465165)\",\"error_message\":null,\"order_id\":\"EAA1DA31F7991743D18DADCF5FD1336F_6107ERBOZI_1696273516.5405\",\"due_date\":\"2023-10-03T02:05:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"velez\",\"email\":\"mauroftalmo@hotmail.com\",\"phone_number\":\"3148966854\",\"address\":null,\"creation_date\":\"2023-10-02T14:05:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc46tiebatrunlnf7n3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 19:06:10','2023-10-02 19:06:10'),(9727,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T14:07:03-05:00\",\"transaction\":{\"id\":\"trc46tiebatrunlnf7n3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"194849455\",\"creation_date\":\"2023-10-02T14:05:19-05:00\",\"operation_date\":\"2023-10-02T14:06:55-05:00\",\"description\":\"Pago Mensual academia: Emiliano velez sanchez (1013465165)\",\"error_message\":null,\"order_id\":\"EAA1DA31F7991743D18DADCF5FD1336F_6107ERBOZI_1696273516.5405\",\"due_date\":\"2023-10-03T02:05:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mauricio\",\"last_name\":\"velez\",\"email\":\"mauroftalmo@hotmail.com\",\"phone_number\":\"3148966854\",\"address\":null,\"creation_date\":\"2023-10-02T14:05:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 19:07:03','2023-10-02 19:07:03'),(9728,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T14:20:09-05:00\",\"transaction\":{\"id\":\"trl37mrmeuv59wqirs8l\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T14:18:58-05:00\",\"operation_date\":\"2023-10-02T14:18:58-05:00\",\"description\":\"Pago Mensual academia: Samuel Sepulveda Taborda (1140418367)\",\"error_message\":null,\"order_id\":\"73C14008D55C730E10BB9412A5BE1A16_7YBESLGOFM_1696274326.8859\",\"due_date\":\"2023-10-03T02:18:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Guillermo\",\"last_name\":\"Sepulveda\",\"email\":\"memosep45@gmail.com\",\"phone_number\":\"3022239656\",\"address\":null,\"creation_date\":\"2023-10-02T14:18:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl37mrmeuv59wqirs8l/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 19:20:10','2023-10-02 19:20:10'),(9729,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T13:21:30-06:00\",\"transaction\":{\"id\":\"trl37mrmeuv59wqirs8l\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"194895091\",\"creation_date\":\"2023-10-02T14:18:58-06:00\",\"operation_date\":\"2023-10-02T13:21:29-06:00\",\"description\":\"Pago Mensual academia: Samuel Sepulveda Taborda (1140418367)\",\"error_message\":null,\"order_id\":\"73C14008D55C730E10BB9412A5BE1A16_7YBESLGOFM_1696274326.8859\",\"due_date\":\"2023-10-03T02:18:58-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Guillermo\",\"last_name\":\"Sepulveda\",\"email\":\"memosep45@gmail.com\",\"phone_number\":\"3022239656\",\"address\":null,\"creation_date\":\"2023-10-02T14:18:58-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 19:21:31','2023-10-02 19:21:31'),(9730,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T15:04:52-05:00\",\"transaction\":{\"id\":\"tr9vfiltzkxbzvihdygw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T15:03:11-05:00\",\"operation_date\":\"2023-10-02T15:03:11-05:00\",\"description\":\"Pago Mensual academia: Thiago Cespedes Perez (1023559490)\",\"error_message\":null,\"order_id\":\"9FE4E15B3924B1A78221734D0C063AE7_O9I0FWRPG7_1696276987.2331\",\"due_date\":\"2023-10-03T03:03:11-05:00\",\"amount\":47500.00,\"customer\":{\"name\":\"Yenifer\",\"last_name\":\"Perez Acero\",\"email\":\"jennifer_perez_a@hotmail.com\",\"phone_number\":\"3216136820\",\"address\":null,\"creation_date\":\"2023-10-02T15:03:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9vfiltzkxbzvihdygw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 20:04:53','2023-10-02 20:04:53'),(9731,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T15:06:12-05:00\",\"transaction\":{\"id\":\"trqj0fks4tksatripnlc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-02T15:06:12-05:00\",\"operation_date\":\"2023-10-02T15:06:12-05:00\",\"description\":\"Pago Mensual academia: MARTIN SIERRA ARCOS (1034670360)\",\"error_message\":null,\"order_id\":\"18A010D2A9813E91907CE88CD9143FDF_3IHMEKQ180_1696277164.673\",\"amount\":165900.00,\"customer\":{\"name\":\"DIANA CAROLINA\",\"last_name\":\"ARCOS OSORIO\",\"email\":\"dianitaarcos04@gmail.com\",\"phone_number\":\"3207900805\",\"address\":null,\"creation_date\":\"2023-10-02T15:06:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqj0fks4tksatripnlc/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-02 20:06:12','2023-10-02 20:06:12'),(9732,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T14:06:34-06:00\",\"transaction\":{\"id\":\"tr9vfiltzkxbzvihdygw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"195044505\",\"creation_date\":\"2023-10-02T15:03:11-06:00\",\"operation_date\":\"2023-10-02T14:06:05-06:00\",\"description\":\"Pago Mensual academia: Thiago Cespedes Perez (1023559490)\",\"error_message\":null,\"order_id\":\"9FE4E15B3924B1A78221734D0C063AE7_O9I0FWRPG7_1696276987.2331\",\"due_date\":\"2023-10-03T03:03:11-06:00\",\"amount\":47500.00,\"customer\":{\"name\":\"Yenifer\",\"last_name\":\"Perez Acero\",\"email\":\"jennifer_perez_a@hotmail.com\",\"phone_number\":\"3216136820\",\"address\":null,\"creation_date\":\"2023-10-02T15:03:11-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 20:06:35','2023-10-02 20:06:35'),(9733,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1143\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T15:07:29-05:00\",\"transaction\":{\"id\":\"trqj0fks4tksatripnlc\",\"authorization\":\"465972\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-02T15:06:12-05:00\",\"operation_date\":\"2023-10-02T15:07:28-05:00\",\"description\":\"Pago Mensual academia: MARTIN SIERRA ARCOS (1034670360)\",\"error_message\":null,\"order_id\":\"18A010D2A9813E91907CE88CD9143FDF_3IHMEKQ180_1696277164.673\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555825XXXXXX7049\",\"holder_name\":\"Juan Antonio Sierra\",\"expiration_year\":\"31\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NUBANK\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"DIANA CAROLINA\",\"last_name\":\"ARCOS OSORIO\",\"email\":\"dianitaarcos04@gmail.com\",\"phone_number\":\"3207900805\",\"address\":null,\"creation_date\":\"2023-10-02T15:06:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqj0fks4tksatripnlc/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-02 20:07:30','2023-10-02 20:07:30'),(9734,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T15:15:39-05:00\",\"transaction\":{\"id\":\"tr9ejwhvc1fism0wby8c\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-02T15:15:39-05:00\",\"operation_date\":\"2023-10-02T15:15:39-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Zapata agudelo (1035003635)\",\"error_message\":null,\"order_id\":\"97E48472142CFDD1CD5D5B5CA6831CF4_EDCY10PW4K_1696277731.3168\",\"amount\":82950.00,\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Zapata castañeda\",\"email\":\"servievent@hotmail.com\",\"phone_number\":\"3182721230\",\"address\":null,\"creation_date\":\"2023-10-02T15:15:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9ejwhvc1fism0wby8c/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-02 20:15:39','2023-10-02 20:15:39'),(9735,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1164\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T15:17:23-05:00\",\"transaction\":{\"id\":\"tr9ejwhvc1fism0wby8c\",\"authorization\":\"151723\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-02T15:15:39-05:00\",\"operation_date\":\"2023-10-02T15:17:23-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Zapata agudelo (1035003635)\",\"error_message\":null,\"order_id\":\"97E48472142CFDD1CD5D5B5CA6831CF4_EDCY10PW4K_1696277731.3168\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1252\",\"holder_name\":\"Beatriz agudelo escobar\",\"expiration_year\":\"26\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":82950.00,\"customer\":{\"name\":\"Carlos Andres\",\"last_name\":\"Zapata castañeda\",\"email\":\"servievent@hotmail.com\",\"phone_number\":\"3182721230\",\"address\":null,\"creation_date\":\"2023-10-02T15:15:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9ejwhvc1fism0wby8c/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-02 20:17:24','2023-10-02 20:17:24'),(9736,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T15:22:26-05:00\",\"transaction\":{\"id\":\"tr1rns9iih9ey40ejeia\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T15:21:51-05:00\",\"operation_date\":\"2023-10-02T15:21:51-05:00\",\"description\":\"Pago Mensual academia: JERONIMO VALENCIA RUIZ (1020321138)\",\"error_message\":null,\"order_id\":\"35D02FEF7D9A24E237057162ABAB82B7_6RTO59DZY1_1696278100.7501\",\"due_date\":\"2023-10-03T03:21:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"VALENCIA\",\"email\":\"alejovalencia25@hotmail.com\",\"phone_number\":\"3147004765\",\"address\":null,\"creation_date\":\"2023-10-02T15:21:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1rns9iih9ey40ejeia/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 20:22:27','2023-10-02 20:22:27'),(9737,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T15:23:17-05:00\",\"transaction\":{\"id\":\"tr1rns9iih9ey40ejeia\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"195102232\",\"creation_date\":\"2023-10-02T15:21:51-05:00\",\"operation_date\":\"2023-10-02T15:23:07-05:00\",\"description\":\"Pago Mensual academia: JERONIMO VALENCIA RUIZ (1020321138)\",\"error_message\":null,\"order_id\":\"35D02FEF7D9A24E237057162ABAB82B7_6RTO59DZY1_1696278100.7501\",\"due_date\":\"2023-10-03T03:21:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"VALENCIA\",\"email\":\"alejovalencia25@hotmail.com\",\"phone_number\":\"3147004765\",\"address\":null,\"creation_date\":\"2023-10-02T15:21:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 20:23:18','2023-10-02 20:23:18'),(9738,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T15:24:15-05:00\",\"transaction\":{\"id\":\"tr4ek87d3cpd6tbjyqwe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T15:23:20-05:00\",\"operation_date\":\"2023-10-02T15:23:20-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Londoño Carvajal (1035979642)\",\"error_message\":null,\"order_id\":\"120CA817EBE8CAA71E92AC53049B2C6A_N3M27F9C41_1696278196.3054\",\"due_date\":\"2023-10-03T03:23:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Elizabeth\",\"last_name\":\"Carvajal Zapata\",\"email\":\"eliza-0712@hotmail.com\",\"phone_number\":\"3193051274\",\"address\":null,\"creation_date\":\"2023-10-02T15:23:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4ek87d3cpd6tbjyqwe/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 20:24:16','2023-10-02 20:24:16'),(9739,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T15:25:52-05:00\",\"transaction\":{\"id\":\"tr4ek87d3cpd6tbjyqwe\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"195108216\",\"creation_date\":\"2023-10-02T15:23:20-05:00\",\"operation_date\":\"2023-10-02T15:25:27-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Londoño Carvajal (1035979642)\",\"error_message\":null,\"order_id\":\"120CA817EBE8CAA71E92AC53049B2C6A_N3M27F9C41_1696278196.3054\",\"due_date\":\"2023-10-03T03:23:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Elizabeth\",\"last_name\":\"Carvajal Zapata\",\"email\":\"eliza-0712@hotmail.com\",\"phone_number\":\"3193051274\",\"address\":null,\"creation_date\":\"2023-10-02T15:23:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 20:25:52','2023-10-02 20:25:52'),(9740,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T16:16:11-05:00\",\"transaction\":{\"id\":\"trhzutxhqljxfsi6ptj5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T16:15:12-05:00\",\"operation_date\":\"2023-10-02T16:15:12-05:00\",\"description\":\"Pago Mensual academia: Thiago Hinestroza Rengifo (1017939994)\",\"error_message\":null,\"order_id\":\"55603A5F239E435C642244BE3E891B85_R84E60TL9G_1696281308.8804\",\"due_date\":\"2023-10-03T04:15:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dorian\",\"last_name\":\"Hinestroza Mosquera\",\"email\":\"afrito@gmail.com\",\"phone_number\":\"3147917163\",\"address\":null,\"creation_date\":\"2023-10-02T16:15:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhzutxhqljxfsi6ptj5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 21:16:12','2023-10-02 21:16:12'),(9741,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T16:17:30-05:00\",\"transaction\":{\"id\":\"trhzutxhqljxfsi6ptj5\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"195281647\",\"creation_date\":\"2023-10-02T16:15:12-05:00\",\"operation_date\":\"2023-10-02T16:17:22-05:00\",\"description\":\"Pago Mensual academia: Thiago Hinestroza Rengifo (1017939994)\",\"error_message\":null,\"order_id\":\"55603A5F239E435C642244BE3E891B85_R84E60TL9G_1696281308.8804\",\"due_date\":\"2023-10-03T04:15:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dorian\",\"last_name\":\"Hinestroza Mosquera\",\"email\":\"afrito@gmail.com\",\"phone_number\":\"3147917163\",\"address\":null,\"creation_date\":\"2023-10-02T16:15:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 21:17:31','2023-10-02 21:17:31'),(9742,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T16:55:57-05:00\",\"transaction\":{\"id\":\"trtwff2m59hkxlxsf5aq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-02T16:55:56-05:00\",\"operation_date\":\"2023-10-02T16:55:56-05:00\",\"description\":\"Pago Mensual academia: mateo alfonso habeych duque (1097504214)\",\"error_message\":null,\"order_id\":\"A732804C8566FC8F498947EA59A841F8_FNTWQHE860_1696283753.9618\",\"amount\":165900.00,\"customer\":{\"name\":\"Mateo Alfonso\",\"last_name\":\"habeych duque\",\"email\":\"kini1892@hotmail.com\",\"phone_number\":\"3053635163\",\"address\":null,\"creation_date\":\"2023-10-02T16:55:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtwff2m59hkxlxsf5aq/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-02 21:55:57','2023-10-02 21:55:57'),(9743,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1158\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T16:56:38-05:00\",\"transaction\":{\"id\":\"trtwff2m59hkxlxsf5aq\",\"authorization\":\"160485\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-02T16:55:56-05:00\",\"operation_date\":\"2023-10-02T16:56:36-05:00\",\"description\":\"Pago Mensual academia: mateo alfonso habeych duque (1097504214)\",\"error_message\":null,\"order_id\":\"A732804C8566FC8F498947EA59A841F8_FNTWQHE860_1696283753.9618\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"451307XXXXXX1234\",\"holder_name\":\"Paula Andrea Carmona Diaz\",\"expiration_year\":\"26\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Mateo Alfonso\",\"last_name\":\"habeych duque\",\"email\":\"kini1892@hotmail.com\",\"phone_number\":\"3053635163\",\"address\":null,\"creation_date\":\"2023-10-02T16:55:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtwff2m59hkxlxsf5aq/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-02 21:56:38','2023-10-02 21:56:38'),(9744,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T18:44:30-05:00\",\"transaction\":{\"id\":\"traaltmzwbiq9iumnc7k\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T18:43:31-05:00\",\"operation_date\":\"2023-10-02T18:43:31-05:00\",\"description\":\"Pago Mensual academia: Thomás Diosa Sierra (1023560772)\",\"error_message\":null,\"order_id\":\"F60CE002E5182E7B99A8A59B6D865A12_739CQJOGK8_1696290208.0452\",\"due_date\":\"2023-10-03T06:43:31-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Diosa Arrubla\",\"email\":\"juan.hz@hotmail.com\",\"phone_number\":\"3226196131\",\"address\":null,\"creation_date\":\"2023-10-02T18:43:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traaltmzwbiq9iumnc7k/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 23:44:30','2023-10-02 23:44:30'),(9745,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T18:46:18-05:00\",\"transaction\":{\"id\":\"traaltmzwbiq9iumnc7k\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"195699331\",\"creation_date\":\"2023-10-02T18:43:31-05:00\",\"operation_date\":\"2023-10-02T18:45:56-05:00\",\"description\":\"Pago Mensual academia: Thomás Diosa Sierra (1023560772)\",\"error_message\":null,\"order_id\":\"F60CE002E5182E7B99A8A59B6D865A12_739CQJOGK8_1696290208.0452\",\"due_date\":\"2023-10-03T06:43:31-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Diosa Arrubla\",\"email\":\"juan.hz@hotmail.com\",\"phone_number\":\"3226196131\",\"address\":null,\"creation_date\":\"2023-10-02T18:43:31-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-02 23:46:18','2023-10-02 23:46:18'),(9746,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T19:14:52-05:00\",\"transaction\":{\"id\":\"tr4rtn2nepnaswiq4odj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T19:13:43-05:00\",\"operation_date\":\"2023-10-02T19:13:43-05:00\",\"description\":\"Pago Mensual academia: Martin Gonzalez Gallego (1035011968)\",\"error_message\":null,\"order_id\":\"3E1953B572576CC82887D4100A29A02C_289EODGHJY_1696292021.1265\",\"due_date\":\"2023-10-03T07:13:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Marcela\",\"last_name\":\"Gallego Salazar\",\"email\":\"marcela440@hotmail.com\",\"phone_number\":\"3218310501\",\"address\":null,\"creation_date\":\"2023-10-02T19:13:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4rtn2nepnaswiq4odj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 00:14:53','2023-10-03 00:14:53'),(9747,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T19:15:55-05:00\",\"transaction\":{\"id\":\"tr4rtn2nepnaswiq4odj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"195785820\",\"creation_date\":\"2023-10-02T19:13:43-05:00\",\"operation_date\":\"2023-10-02T19:15:37-05:00\",\"description\":\"Pago Mensual academia: Martin Gonzalez Gallego (1035011968)\",\"error_message\":null,\"order_id\":\"3E1953B572576CC82887D4100A29A02C_289EODGHJY_1696292021.1265\",\"due_date\":\"2023-10-03T07:13:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Marcela\",\"last_name\":\"Gallego Salazar\",\"email\":\"marcela440@hotmail.com\",\"phone_number\":\"3218310501\",\"address\":null,\"creation_date\":\"2023-10-02T19:13:43-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 00:15:56','2023-10-03 00:15:56'),(9748,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T19:57:20-05:00\",\"transaction\":{\"id\":\"trrvedzfo8yergsugcv7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T19:56:35-05:00\",\"operation_date\":\"2023-10-02T19:56:35-05:00\",\"description\":\"Pago Mensual academia: Pedro Garcia Gutierrez (1035002525)\",\"error_message\":null,\"order_id\":\"41B0DB49FD10D95920281DEAD0710F58_RVJKT6M2C5_1696294590.4366\",\"due_date\":\"2023-10-03T07:56:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Garcia Gutierrez\",\"email\":\"cmarcelapedro@gmail.com\",\"phone_number\":\"3006093720\",\"address\":null,\"creation_date\":\"2023-10-02T19:56:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrvedzfo8yergsugcv7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 00:57:21','2023-10-03 00:57:21'),(9749,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T19:59:09-05:00\",\"transaction\":{\"id\":\"trrvedzfo8yergsugcv7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"195904355\",\"creation_date\":\"2023-10-02T19:56:35-05:00\",\"operation_date\":\"2023-10-02T19:58:46-05:00\",\"description\":\"Pago Mensual academia: Pedro Garcia Gutierrez (1035002525)\",\"error_message\":null,\"order_id\":\"41B0DB49FD10D95920281DEAD0710F58_RVJKT6M2C5_1696294590.4366\",\"due_date\":\"2023-10-03T07:56:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Pedro\",\"last_name\":\"Garcia Gutierrez\",\"email\":\"cmarcelapedro@gmail.com\",\"phone_number\":\"3006093720\",\"address\":null,\"creation_date\":\"2023-10-02T19:56:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 00:59:09','2023-10-03 00:59:09'),(9750,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T20:58:33-05:00\",\"transaction\":{\"id\":\"trhhzt6uciwvrfg0yt8q\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T20:57:25-05:00\",\"operation_date\":\"2023-10-02T20:57:25-05:00\",\"description\":\"Pago Inscripción academia: michael steven bran sepulveda (1001589055)\",\"error_message\":null,\"order_id\":\"63CB524A9F51B7858733E1108BF556FA_2SW5HIY7QT_1696298240.8096\",\"due_date\":\"2023-10-03T08:57:25-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"anggie paola\",\"last_name\":\"usuga arrieta\",\"email\":\"anggie.usuga96@gmail.com\",\"phone_number\":\"3144794985\",\"address\":null,\"creation_date\":\"2023-10-02T20:57:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhhzt6uciwvrfg0yt8q/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 01:58:33','2023-10-03 01:58:33'),(9751,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T21:00:10-05:00\",\"transaction\":{\"id\":\"trhhzt6uciwvrfg0yt8q\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196070658\",\"creation_date\":\"2023-10-02T20:57:25-05:00\",\"operation_date\":\"2023-10-02T20:59:58-05:00\",\"description\":\"Pago Inscripción academia: michael steven bran sepulveda (1001589055)\",\"error_message\":null,\"order_id\":\"63CB524A9F51B7858733E1108BF556FA_2SW5HIY7QT_1696298240.8096\",\"due_date\":\"2023-10-03T08:57:25-05:00\",\"amount\":391000.00,\"customer\":{\"name\":\"anggie paola\",\"last_name\":\"usuga arrieta\",\"email\":\"anggie.usuga96@gmail.com\",\"phone_number\":\"3144794985\",\"address\":null,\"creation_date\":\"2023-10-02T20:57:25-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 02:00:10','2023-10-03 02:00:10'),(9752,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T21:01:28-05:00\",\"transaction\":{\"id\":\"trvoreh0ycgjqpm4ekaf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T21:00:46-05:00\",\"operation_date\":\"2023-10-02T21:00:46-05:00\",\"description\":\"Pago Mensual academia: michael steven bran sepulveda (1001589055)\",\"error_message\":null,\"order_id\":\"FA612BE4940BAE15B019B36F9282C5AB_KDVGOTJI1A_1696298442.904\",\"due_date\":\"2023-10-03T09:00:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"anggie paola\",\"last_name\":\"usuga arrieta\",\"email\":\"anggie.usuga96@gmail.com\",\"phone_number\":\"3144794985\",\"address\":null,\"creation_date\":\"2023-10-02T21:00:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvoreh0ycgjqpm4ekaf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 02:01:29','2023-10-03 02:01:29'),(9753,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T21:22:59-05:00\",\"transaction\":{\"id\":\"trqwzhofwaohkuoiinzs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T21:22:21-05:00\",\"operation_date\":\"2023-10-02T21:22:21-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"CCB421D5F36C5A412816D494B15CA9F6_2N48MWQOZV_1696299739.1792\",\"due_date\":\"2023-10-03T09:22:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-10-02T21:22:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqwzhofwaohkuoiinzs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 02:23:00','2023-10-03 02:23:00'),(9754,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T21:24:07-05:00\",\"transaction\":{\"id\":\"trqwzhofwaohkuoiinzs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196130675\",\"creation_date\":\"2023-10-02T21:22:21-05:00\",\"operation_date\":\"2023-10-02T21:24:01-05:00\",\"description\":\"Pago Mensual academia: Mathias Alejandro Betancur Correa (1025901458)\",\"error_message\":null,\"order_id\":\"CCB421D5F36C5A412816D494B15CA9F6_2N48MWQOZV_1696299739.1792\",\"due_date\":\"2023-10-03T09:22:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy Maritza\",\"last_name\":\"Correa Zapata\",\"email\":\"leidyc_@hotmail.com\",\"phone_number\":\"3014816622\",\"address\":null,\"creation_date\":\"2023-10-02T21:22:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 02:24:08','2023-10-03 02:24:08'),(9755,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  860\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-02T20:24:58-06:00\",\"transaction\":{\"id\":\"trvoreh0ycgjqpm4ekaf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-02T21:00:46-06:00\",\"operation_date\":\"2023-10-02T20:01:41-06:00\",\"description\":\"Pago Mensual academia: michael steven bran sepulveda (1001589055)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"FA612BE4940BAE15B019B36F9282C5AB_KDVGOTJI1A_1696298442.904\",\"due_date\":\"2023-10-03T09:00:46-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"anggie paola\",\"last_name\":\"usuga arrieta\",\"email\":\"anggie.usuga96@gmail.com\",\"phone_number\":\"3144794985\",\"address\":null,\"creation_date\":\"2023-10-02T21:00:46-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 02:24:58','2023-10-03 02:24:58'),(9756,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T21:45:16-05:00\",\"transaction\":{\"id\":\"trf7gniq9dodtjjrf9hw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T21:43:20-05:00\",\"operation_date\":\"2023-10-02T21:43:20-05:00\",\"description\":\"Pago Mensual academia: ISAAC QUINCHIA MEJIA (1036457456)\",\"error_message\":null,\"order_id\":\"7EC12AA91918C9B6E577C1AE18A0A34B_U4CKJB1DF2_1696300996.8958\",\"due_date\":\"2023-10-03T09:43:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ISABEL CRISTINA\",\"last_name\":\"MEJIA\",\"email\":\"cristinemejia@hotmail.com\",\"phone_number\":\"3053765353\",\"address\":null,\"creation_date\":\"2023-10-02T21:43:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trf7gniq9dodtjjrf9hw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 02:45:17','2023-10-03 02:45:17'),(9757,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T21:48:43-05:00\",\"transaction\":{\"id\":\"trf7gniq9dodtjjrf9hw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196182014\",\"creation_date\":\"2023-10-02T21:43:20-05:00\",\"operation_date\":\"2023-10-02T21:48:21-05:00\",\"description\":\"Pago Mensual academia: ISAAC QUINCHIA MEJIA (1036457456)\",\"error_message\":null,\"order_id\":\"7EC12AA91918C9B6E577C1AE18A0A34B_U4CKJB1DF2_1696300996.8958\",\"due_date\":\"2023-10-03T09:43:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ISABEL CRISTINA\",\"last_name\":\"MEJIA\",\"email\":\"cristinemejia@hotmail.com\",\"phone_number\":\"3053765353\",\"address\":null,\"creation_date\":\"2023-10-02T21:43:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 02:48:44','2023-10-03 02:48:44'),(9758,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T21:52:14-05:00\",\"transaction\":{\"id\":\"trtdpphmi9suc1ouebrn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T21:49:26-05:00\",\"operation_date\":\"2023-10-02T21:49:26-05:00\",\"description\":\"Pago Mensual academia: ISAAC QUINCHIA MEJIA (1036457456)\",\"error_message\":null,\"order_id\":\"2B8F621E9244CEA5007BAC8F5D50E476_K8DBGMSI9A_1696301363.896\",\"due_date\":\"2023-10-03T09:49:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ISABEL CRISTINA\",\"last_name\":\"MEJIA\",\"email\":\"cristinemejia@hotmail.com\",\"phone_number\":\"3053765353\",\"address\":null,\"creation_date\":\"2023-10-02T21:49:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtdpphmi9suc1ouebrn/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 02:52:15','2023-10-03 02:52:15'),(9759,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T21:56:11-05:00\",\"transaction\":{\"id\":\"trtdpphmi9suc1ouebrn\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196197213\",\"creation_date\":\"2023-10-02T21:49:26-05:00\",\"operation_date\":\"2023-10-02T21:55:33-05:00\",\"description\":\"Pago Mensual academia: ISAAC QUINCHIA MEJIA (1036457456)\",\"error_message\":null,\"order_id\":\"2B8F621E9244CEA5007BAC8F5D50E476_K8DBGMSI9A_1696301363.896\",\"due_date\":\"2023-10-03T09:49:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ISABEL CRISTINA\",\"last_name\":\"MEJIA\",\"email\":\"cristinemejia@hotmail.com\",\"phone_number\":\"3053765353\",\"address\":null,\"creation_date\":\"2023-10-02T21:49:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 02:56:12','2023-10-03 02:56:12'),(9760,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T22:13:34-05:00\",\"transaction\":{\"id\":\"travvpfer9qudr7nyrom\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T22:12:42-05:00\",\"operation_date\":\"2023-10-02T22:12:42-05:00\",\"description\":\"Pago Mensual academia: martin ignacio pimiento puerta (1019907038)\",\"error_message\":null,\"order_id\":\"27584E8CEFBA0A67A8D1684D55A2A16A_W2K8H3JCPS_1696302760.0977\",\"due_date\":\"2023-10-03T10:12:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MARTIN\",\"last_name\":\"PIMIENTO\",\"email\":\"jmpimiento2@gmail.com\",\"phone_number\":\"3157246615\",\"address\":null,\"creation_date\":\"2023-10-02T22:12:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/travvpfer9qudr7nyrom/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 03:13:34','2023-10-03 03:13:34'),(9761,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T22:14:27-05:00\",\"transaction\":{\"id\":\"travvpfer9qudr7nyrom\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196238804\",\"creation_date\":\"2023-10-02T22:12:42-05:00\",\"operation_date\":\"2023-10-02T22:14:17-05:00\",\"description\":\"Pago Mensual academia: martin ignacio pimiento puerta (1019907038)\",\"error_message\":null,\"order_id\":\"27584E8CEFBA0A67A8D1684D55A2A16A_W2K8H3JCPS_1696302760.0977\",\"due_date\":\"2023-10-03T10:12:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MARTIN\",\"last_name\":\"PIMIENTO\",\"email\":\"jmpimiento2@gmail.com\",\"phone_number\":\"3157246615\",\"address\":null,\"creation_date\":\"2023-10-02T22:12:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 03:14:28','2023-10-03 03:14:28'),(9762,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T23:05:40-05:00\",\"transaction\":{\"id\":\"trcmlx1t3lstzpq6ibu2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T23:04:57-05:00\",\"operation_date\":\"2023-10-02T23:04:57-05:00\",\"description\":\"Pago Mensual academia: Anthony Ramirez Rendon (1038874697)\",\"error_message\":null,\"order_id\":\"148D411AEFFED8A6F6AD4ECD77D1F904_ZN5AJK7E0D_1696305894.7529\",\"due_date\":\"2023-10-03T11:04:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Rendon\",\"email\":\"tatirendonc@gmail.com\",\"phone_number\":\"3008949106\",\"address\":null,\"creation_date\":\"2023-10-02T23:04:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcmlx1t3lstzpq6ibu2/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 04:05:40','2023-10-03 04:05:40'),(9763,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  953\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-02T23:07:39-05:00\",\"transaction\":{\"id\":\"trpjyk6d9oxkxv2rylkq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-02T23:06:59-05:00\",\"operation_date\":\"2023-10-02T23:06:59-05:00\",\"description\":\"Pago Mensual academia: Juan Alejandro Valencia Aguirre (1011244362)\",\"error_message\":null,\"order_id\":\"8D8F733A7C2A2EA60DF6439A28A2B9A3_4GNVY17CB9_1696306012.5774\",\"due_date\":\"2023-10-03T11:06:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paola Alejandra\",\"last_name\":\"Aguirre Gutiérrez\",\"email\":\"paoalejandra0209@hotmail.com\",\"phone_number\":\"3146726928\",\"address\":null,\"creation_date\":\"2023-10-02T23:06:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpjyk6d9oxkxv2rylkq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 04:07:39','2023-10-03 04:07:39'),(9764,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  836\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-02T23:08:42-05:00\",\"transaction\":{\"id\":\"trpjyk6d9oxkxv2rylkq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196311141\",\"creation_date\":\"2023-10-02T23:06:59-05:00\",\"operation_date\":\"2023-10-02T23:08:28-05:00\",\"description\":\"Pago Mensual academia: Juan Alejandro Valencia Aguirre (1011244362)\",\"error_message\":null,\"order_id\":\"8D8F733A7C2A2EA60DF6439A28A2B9A3_4GNVY17CB9_1696306012.5774\",\"due_date\":\"2023-10-03T11:06:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paola Alejandra\",\"last_name\":\"Aguirre Gutiérrez\",\"email\":\"paoalejandra0209@hotmail.com\",\"phone_number\":\"3146726928\",\"address\":null,\"creation_date\":\"2023-10-02T23:06:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 04:08:42','2023-10-03 04:08:42'),(9765,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  839\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-02T22:09:13-06:00\",\"transaction\":{\"id\":\"trcmlx1t3lstzpq6ibu2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-02T23:04:57-06:00\",\"operation_date\":\"2023-10-02T22:05:47-06:00\",\"description\":\"Pago Mensual academia: Anthony Ramirez Rendon (1038874697)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"148D411AEFFED8A6F6AD4ECD77D1F904_ZN5AJK7E0D_1696305894.7529\",\"due_date\":\"2023-10-03T11:04:57-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Rendon\",\"email\":\"tatirendonc@gmail.com\",\"phone_number\":\"3008949106\",\"address\":null,\"creation_date\":\"2023-10-02T23:04:57-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 04:09:14','2023-10-03 04:09:14'),(9766,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-03T02:24:58-06:00\",\"transaction\":{\"id\":\"trvahkzynyu0paoq8wuu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-10-01T07:53:11-06:00\",\"operation_date\":\"2023-10-01T07:53:11-06:00\",\"description\":\"Pago Mensual academia: Leonardo Jaimes Alzate (1023557295)\",\"error_message\":null,\"order_id\":\"47257279D0B4F033E373B16E65F8F089_OF5ML9DAT4_1696164784.8062\",\"due_date\":\"2023-10-01T19:53:11-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Leonardo\",\"last_name\":\"Jaimes Alzate\",\"email\":\"saraalzateforonda@hotmail.com\",\"phone_number\":\"3023764719\",\"address\":null,\"creation_date\":\"2023-10-01T07:53:11-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvahkzynyu0paoq8wuu/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 08:24:59','2023-10-03 08:24:59'),(9767,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-03T02:24:58-06:00\",\"transaction\":{\"id\":\"tr7jumy3eubzyygd73dj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-10-01T11:08:12-06:00\",\"operation_date\":\"2023-10-01T11:08:12-06:00\",\"description\":\"Pago Mensual academia: Cristóbal Dávila Moná (1035007965)\",\"error_message\":null,\"order_id\":\"887A185B1A4080193D5CF63873AC6D70_CJMI078PVG_1696176487.2616\",\"due_date\":\"2023-10-01T23:08:12-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"lissette carolina\",\"last_name\":\"Mona Garcia\",\"email\":\"carolina8703@hotmail.com\",\"phone_number\":\"3148603995\",\"address\":null,\"creation_date\":\"2023-10-01T11:08:12-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7jumy3eubzyygd73dj/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 08:24:59','2023-10-03 08:24:59'),(9768,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T06:49:51-05:00\",\"transaction\":{\"id\":\"trhxzzxq5rzagcdjg90m\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T06:48:26-05:00\",\"operation_date\":\"2023-10-03T06:48:26-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rueda Cardozo (1016913762)\",\"error_message\":null,\"order_id\":\"7D62A275027741D98073D42B8F735C68_EJCTOZ8S5D_1696333702.6124\",\"due_date\":\"2023-10-03T18:48:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hernando\",\"last_name\":\"Rueda ojeda\",\"email\":\"hernandoruedaojeda@gmail.com\",\"phone_number\":\"4013558482\",\"address\":null,\"creation_date\":\"2023-10-03T06:48:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhxzzxq5rzagcdjg90m/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 11:49:51','2023-10-03 11:49:51'),(9769,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T06:50:53-05:00\",\"transaction\":{\"id\":\"trhxzzxq5rzagcdjg90m\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196460826\",\"creation_date\":\"2023-10-03T06:48:26-05:00\",\"operation_date\":\"2023-10-03T06:50:31-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Rueda Cardozo (1016913762)\",\"error_message\":null,\"order_id\":\"7D62A275027741D98073D42B8F735C68_EJCTOZ8S5D_1696333702.6124\",\"due_date\":\"2023-10-03T18:48:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Hernando\",\"last_name\":\"Rueda ojeda\",\"email\":\"hernandoruedaojeda@gmail.com\",\"phone_number\":\"4013558482\",\"address\":null,\"creation_date\":\"2023-10-03T06:48:26-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 11:50:53','2023-10-03 11:50:53'),(9770,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T07:04:37-05:00\",\"transaction\":{\"id\":\"trvpz2o7mvw6ckcsphoh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T07:03:59-05:00\",\"operation_date\":\"2023-10-03T07:03:59-05:00\",\"description\":\"Pago Mensual academia: michael steven bran sepulveda (1001589055)\",\"error_message\":null,\"order_id\":\"FA612BE4940BAE15B019B36F9282C5AB_KDVGOTJI1A_1696334634.674\",\"due_date\":\"2023-10-03T19:03:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"anggie paola\",\"last_name\":\"usuga arrieta\",\"email\":\"anggie.usuga96@gmail.com\",\"phone_number\":\"3144794985\",\"address\":null,\"creation_date\":\"2023-10-03T07:03:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvpz2o7mvw6ckcsphoh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 12:04:38','2023-10-03 12:04:38'),(9771,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T07:06:08-05:00\",\"transaction\":{\"id\":\"trvpz2o7mvw6ckcsphoh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196478855\",\"creation_date\":\"2023-10-03T07:03:59-05:00\",\"operation_date\":\"2023-10-03T07:06:03-05:00\",\"description\":\"Pago Mensual academia: michael steven bran sepulveda (1001589055)\",\"error_message\":null,\"order_id\":\"FA612BE4940BAE15B019B36F9282C5AB_KDVGOTJI1A_1696334634.674\",\"due_date\":\"2023-10-03T19:03:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"anggie paola\",\"last_name\":\"usuga arrieta\",\"email\":\"anggie.usuga96@gmail.com\",\"phone_number\":\"3144794985\",\"address\":null,\"creation_date\":\"2023-10-03T07:03:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 12:06:09','2023-10-03 12:06:09'),(9772,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T07:49:42-05:00\",\"transaction\":{\"id\":\"trs1xcny8exmozefmtx7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T07:48:50-05:00\",\"operation_date\":\"2023-10-03T07:48:50-05:00\",\"description\":\"Pago Mensual academia: Miguel Ospina Gómez (1021810313)\",\"error_message\":null,\"order_id\":\"22785DD2577BE2CE28EF79FEBE80DB10_HYFCBT1AK9_1696337322.5662\",\"due_date\":\"2023-10-03T19:48:50-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Ospina Marín\",\"email\":\"Danielospinam@gmail.com\",\"phone_number\":\"3223493589\",\"address\":null,\"creation_date\":\"2023-10-03T07:48:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trs1xcny8exmozefmtx7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 12:49:42','2023-10-03 12:49:42'),(9773,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T07:51:07-05:00\",\"transaction\":{\"id\":\"trs1xcny8exmozefmtx7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196551374\",\"creation_date\":\"2023-10-03T07:48:50-05:00\",\"operation_date\":\"2023-10-03T07:50:49-05:00\",\"description\":\"Pago Mensual academia: Miguel Ospina Gómez (1021810313)\",\"error_message\":null,\"order_id\":\"22785DD2577BE2CE28EF79FEBE80DB10_HYFCBT1AK9_1696337322.5662\",\"due_date\":\"2023-10-03T19:48:50-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Daniel\",\"last_name\":\"Ospina Marín\",\"email\":\"Danielospinam@gmail.com\",\"phone_number\":\"3223493589\",\"address\":null,\"creation_date\":\"2023-10-03T07:48:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 12:51:08','2023-10-03 12:51:08'),(9774,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  951\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T08:43:57-05:00\",\"transaction\":{\"id\":\"trymjxos5yx3gffb71nd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T08:42:49-05:00\",\"operation_date\":\"2023-10-03T08:42:49-05:00\",\"description\":\"Pago Mensual academia: José Angel Londoño Barrientos (1018244113)\",\"error_message\":null,\"order_id\":\"11D867796D85DB8CAD5280AC44CEC7C1_THYDQOVJ28_1696340565.8522\",\"due_date\":\"2023-10-03T20:42:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"OMAIRA MARGARITA\",\"last_name\":\"BARRIENTOS MORA\",\"email\":\"omairabarrientos@hotmail.com\",\"phone_number\":\"3128832937\",\"address\":null,\"creation_date\":\"2023-10-03T08:42:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trymjxos5yx3gffb71nd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 13:43:58','2023-10-03 13:43:58'),(9775,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T08:45:35-05:00\",\"transaction\":{\"id\":\"trubxrfs0z2vmfxt5plr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T08:44:15-05:00\",\"operation_date\":\"2023-10-03T08:44:15-05:00\",\"description\":\"Pago Mensual academia: Pedro Escobar Acosta (1035003260)\",\"error_message\":null,\"order_id\":\"A57D48399922B03419153A9760C5CE53_MC9Y6ERSVB_1696340652.2741\",\"due_date\":\"2023-10-03T20:44:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jairo\",\"last_name\":\"Escobar Jaramillo\",\"email\":\"jaironcha@yahoo.com\",\"phone_number\":\"3155949427\",\"address\":null,\"creation_date\":\"2023-10-03T08:44:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trubxrfs0z2vmfxt5plr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 13:45:35','2023-10-03 13:45:35'),(9776,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  834\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T08:46:34-05:00\",\"transaction\":{\"id\":\"trymjxos5yx3gffb71nd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196678228\",\"creation_date\":\"2023-10-03T08:42:49-05:00\",\"operation_date\":\"2023-10-03T08:45:42-05:00\",\"description\":\"Pago Mensual academia: José Angel Londoño Barrientos (1018244113)\",\"error_message\":null,\"order_id\":\"11D867796D85DB8CAD5280AC44CEC7C1_THYDQOVJ28_1696340565.8522\",\"due_date\":\"2023-10-03T20:42:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"OMAIRA MARGARITA\",\"last_name\":\"BARRIENTOS MORA\",\"email\":\"omairabarrientos@hotmail.com\",\"phone_number\":\"3128832937\",\"address\":null,\"creation_date\":\"2023-10-03T08:42:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 13:46:35','2023-10-03 13:46:35'),(9777,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T07:48:22-06:00\",\"transaction\":{\"id\":\"trubxrfs0z2vmfxt5plr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196682547\",\"creation_date\":\"2023-10-03T08:44:15-06:00\",\"operation_date\":\"2023-10-03T07:46:23-06:00\",\"description\":\"Pago Mensual academia: Pedro Escobar Acosta (1035003260)\",\"error_message\":null,\"order_id\":\"A57D48399922B03419153A9760C5CE53_MC9Y6ERSVB_1696340652.2741\",\"due_date\":\"2023-10-03T20:44:15-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jairo\",\"last_name\":\"Escobar Jaramillo\",\"email\":\"jaironcha@yahoo.com\",\"phone_number\":\"3155949427\",\"address\":null,\"creation_date\":\"2023-10-03T08:44:15-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 13:48:22','2023-10-03 13:48:22'),(9778,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T08:55:27-05:00\",\"transaction\":{\"id\":\"tr4zticyrjjx6vft0xn3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T08:54:44-05:00\",\"operation_date\":\"2023-10-03T08:54:44-05:00\",\"description\":\"Pago Mensual academia: martin suarez gutierrez (1075876356)\",\"error_message\":null,\"order_id\":\"5D151D1059A6281335A10732FC49620E_C3I7ZH4529_1696341279.0769\",\"due_date\":\"2023-10-03T20:54:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"angela maria\",\"last_name\":\"gutierrez tabares\",\"email\":\"angelus.99@hotmail.com\",\"phone_number\":\"3023307171\",\"address\":null,\"creation_date\":\"2023-10-03T08:54:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4zticyrjjx6vft0xn3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 13:55:28','2023-10-03 13:55:28'),(9779,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T07:57:40-06:00\",\"transaction\":{\"id\":\"tr4zticyrjjx6vft0xn3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196710065\",\"creation_date\":\"2023-10-03T08:54:44-06:00\",\"operation_date\":\"2023-10-03T07:56:17-06:00\",\"description\":\"Pago Mensual academia: martin suarez gutierrez (1075876356)\",\"error_message\":null,\"order_id\":\"5D151D1059A6281335A10732FC49620E_C3I7ZH4529_1696341279.0769\",\"due_date\":\"2023-10-03T20:54:44-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"angela maria\",\"last_name\":\"gutierrez tabares\",\"email\":\"angelus.99@hotmail.com\",\"phone_number\":\"3023307171\",\"address\":null,\"creation_date\":\"2023-10-03T08:54:44-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 13:57:40','2023-10-03 13:57:40'),(9780,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T08:58:13-05:00\",\"transaction\":{\"id\":\"trrlrrpcvuuvml4sp3lc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T08:57:04-05:00\",\"operation_date\":\"2023-10-03T08:57:04-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Roldan Garcia (1020315369)\",\"error_message\":null,\"order_id\":\"BEDA24C1E1B46055DFF2C39C98FD6FC1_F0XVKNADM5_1696341420.4534\",\"due_date\":\"2023-10-03T20:57:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Flavio\",\"last_name\":\"Roldan Ospina\",\"email\":\"flavioroldan@gmail.com\",\"phone_number\":\"3104444641\",\"address\":null,\"creation_date\":\"2023-10-03T08:57:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrlrrpcvuuvml4sp3lc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 13:58:13','2023-10-03 13:58:13'),(9781,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T08:00:44-06:00\",\"transaction\":{\"id\":\"trrlrrpcvuuvml4sp3lc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196717890\",\"creation_date\":\"2023-10-03T08:57:04-06:00\",\"operation_date\":\"2023-10-03T07:59:01-06:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Roldan Garcia (1020315369)\",\"error_message\":null,\"order_id\":\"BEDA24C1E1B46055DFF2C39C98FD6FC1_F0XVKNADM5_1696341420.4534\",\"due_date\":\"2023-10-03T20:57:04-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Flavio\",\"last_name\":\"Roldan Ospina\",\"email\":\"flavioroldan@gmail.com\",\"phone_number\":\"3104444641\",\"address\":null,\"creation_date\":\"2023-10-03T08:57:04-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 14:00:45','2023-10-03 14:00:45'),(9782,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  886\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T09:01:20-05:00\",\"transaction\":{\"id\":\"trgxgibo7jr4dwqt8jrs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-03T09:01:20-05:00\",\"operation_date\":\"2023-10-03T09:01:20-05:00\",\"description\":\"Pago Mensual academia: Santiago Giraldo Zapata (1036456930)\",\"error_message\":null,\"order_id\":\"30CDE89544CAA549A813D660C4B27967_6K4JI9CDXY_1696341677.8621\",\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Zapata\",\"email\":\"erijoke_v0923@hotmail.com\",\"phone_number\":\"3212604509\",\"address\":null,\"creation_date\":\"2023-10-03T09:01:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgxgibo7jr4dwqt8jrs/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 14:01:21','2023-10-03 14:01:21'),(9783,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1135\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T09:02:16-05:00\",\"transaction\":{\"id\":\"trgxgibo7jr4dwqt8jrs\",\"authorization\":\"090215\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-03T09:01:20-05:00\",\"operation_date\":\"2023-10-03T09:02:15-05:00\",\"description\":\"Pago Mensual academia: Santiago Giraldo Zapata (1036456930)\",\"error_message\":null,\"order_id\":\"30CDE89544CAA549A813D660C4B27967_6K4JI9CDXY_1696341677.8621\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX5791\",\"holder_name\":\"Bancolombia \",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Zapata\",\"email\":\"erijoke_v0923@hotmail.com\",\"phone_number\":\"3212604509\",\"address\":null,\"creation_date\":\"2023-10-03T09:01:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgxgibo7jr4dwqt8jrs/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 14:02:17','2023-10-03 14:02:17'),(9784,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T09:46:33-05:00\",\"transaction\":{\"id\":\"tryccjlirql2b2rt0jae\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T09:45:42-05:00\",\"operation_date\":\"2023-10-03T09:45:42-05:00\",\"description\":\"Pago Mensual academia: Isaac Calle Giraldo (1038267000)\",\"error_message\":null,\"order_id\":\"CABAD3B9BC0AFE08CD9EC861638ED1D9_KVOUL2Q5ZC_1696344338.3043\",\"due_date\":\"2023-10-03T21:45:42-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Catherine\",\"last_name\":\"Giraldo\",\"email\":\"cathe.giraldo@hotmail.com\",\"phone_number\":\"3104745144\",\"address\":null,\"creation_date\":\"2023-10-03T09:45:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryccjlirql2b2rt0jae/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 14:46:34','2023-10-03 14:46:34'),(9785,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T09:47:44-05:00\",\"transaction\":{\"id\":\"tryccjlirql2b2rt0jae\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196866198\",\"creation_date\":\"2023-10-03T09:45:42-05:00\",\"operation_date\":\"2023-10-03T09:47:28-05:00\",\"description\":\"Pago Mensual academia: Isaac Calle Giraldo (1038267000)\",\"error_message\":null,\"order_id\":\"CABAD3B9BC0AFE08CD9EC861638ED1D9_KVOUL2Q5ZC_1696344338.3043\",\"due_date\":\"2023-10-03T21:45:42-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Catherine\",\"last_name\":\"Giraldo\",\"email\":\"cathe.giraldo@hotmail.com\",\"phone_number\":\"3104745144\",\"address\":null,\"creation_date\":\"2023-10-03T09:45:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 14:47:45','2023-10-03 14:47:45'),(9786,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T10:04:49-05:00\",\"transaction\":{\"id\":\"trtsg0ob1x9tahlswqby\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T10:01:51-05:00\",\"operation_date\":\"2023-10-03T10:01:51-05:00\",\"description\":\"Pago Mensual academia: jeronimo zuluaga cardona (1023530744)\",\"error_message\":null,\"order_id\":\"0B0B0994D12AD343511ADFBFC364256E_QUKICS3HPW_1696345308.8873\",\"due_date\":\"2023-10-03T22:01:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"cardona londoño\",\"email\":\"fevi19@hotmail.com\",\"phone_number\":\"3157461215\",\"address\":null,\"creation_date\":\"2023-10-03T10:01:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtsg0ob1x9tahlswqby/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 15:04:50','2023-10-03 15:04:50'),(9787,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T10:06:06-05:00\",\"transaction\":{\"id\":\"trtsg0ob1x9tahlswqby\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"196924540\",\"creation_date\":\"2023-10-03T10:01:51-05:00\",\"operation_date\":\"2023-10-03T10:05:51-05:00\",\"description\":\"Pago Mensual academia: jeronimo zuluaga cardona (1023530744)\",\"error_message\":null,\"order_id\":\"0B0B0994D12AD343511ADFBFC364256E_QUKICS3HPW_1696345308.8873\",\"due_date\":\"2023-10-03T22:01:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"viviana\",\"last_name\":\"cardona londoño\",\"email\":\"fevi19@hotmail.com\",\"phone_number\":\"3157461215\",\"address\":null,\"creation_date\":\"2023-10-03T10:01:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 15:06:07','2023-10-03 15:06:07'),(9788,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T10:54:57-05:00\",\"transaction\":{\"id\":\"trbo60e1suqaxlfiywf3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-03T10:54:57-05:00\",\"operation_date\":\"2023-10-03T10:54:57-05:00\",\"description\":\"Pago Mensual academia: Ismael Monsalve Montoya (1020322996)\",\"error_message\":null,\"order_id\":\"ACF666483BC8723FAE7FEDA6F6A9CB7A_1BCAKXDE29_1696348492.8783\",\"amount\":165900.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Monsalve Escudero\",\"email\":\"joh.monsalve@gmail.com\",\"phone_number\":\"3164944043\",\"address\":null,\"creation_date\":\"2023-10-03T10:54:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbo60e1suqaxlfiywf3/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 15:54:58','2023-10-03 15:54:58'),(9789,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T10:55:56-05:00\",\"transaction\":{\"id\":\"trhahxqb6yeemfvjrfm2\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-03T10:55:56-05:00\",\"operation_date\":\"2023-10-03T10:55:56-05:00\",\"description\":\"Pago Mensual academia: maximiliano villa uribe (1034996599)\",\"error_message\":null,\"order_id\":\"5DD3E474F6E08E3316CE5E3BC36C666E_FT7WM0P6K3_1696348552.3962\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"uribe restrepo\",\"email\":\"julyurpo@hotmail.com\",\"phone_number\":\"3147988709\",\"address\":null,\"creation_date\":\"2023-10-03T10:55:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhahxqb6yeemfvjrfm2/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 15:55:57','2023-10-03 15:55:57'),(9790,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T10:56:15-05:00\",\"transaction\":{\"id\":\"triyqb1wmvdfk2lha2an\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T10:55:26-05:00\",\"operation_date\":\"2023-10-03T10:55:26-05:00\",\"description\":\"Pago Mensual academia: Pedro Osorio Moreno (1027811391)\",\"error_message\":null,\"order_id\":\"147540E129E096FA91700E9DB6588354_ZQSKDT5XF7_1696348517.6679\",\"due_date\":\"2023-10-03T22:55:26-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Moreno\",\"email\":\"mdaleja@hotmail.com\",\"phone_number\":\"3218002631\",\"address\":null,\"creation_date\":\"2023-10-03T10:55:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triyqb1wmvdfk2lha2an/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 15:56:16','2023-10-03 15:56:16'),(9791,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1145\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T10:56:38-05:00\",\"transaction\":{\"id\":\"trhahxqb6yeemfvjrfm2\",\"authorization\":\"355599\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-03T10:55:56-05:00\",\"operation_date\":\"2023-10-03T10:56:38-05:00\",\"description\":\"Pago Mensual academia: maximiliano villa uribe (1034996599)\",\"error_message\":null,\"order_id\":\"5DD3E474F6E08E3316CE5E3BC36C666E_FT7WM0P6K3_1696348552.3962\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"543448XXXXXX2655\",\"holder_name\":\"Sebastián villa\",\"expiration_year\":\"26\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"uribe restrepo\",\"email\":\"julyurpo@hotmail.com\",\"phone_number\":\"3147988709\",\"address\":null,\"creation_date\":\"2023-10-03T10:55:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhahxqb6yeemfvjrfm2/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 15:56:39','2023-10-03 15:56:39'),(9792,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T09:57:58-06:00\",\"transaction\":{\"id\":\"triyqb1wmvdfk2lha2an\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197093363\",\"creation_date\":\"2023-10-03T10:55:26-06:00\",\"operation_date\":\"2023-10-03T09:57:30-06:00\",\"description\":\"Pago Mensual academia: Pedro Osorio Moreno (1027811391)\",\"error_message\":null,\"order_id\":\"147540E129E096FA91700E9DB6588354_ZQSKDT5XF7_1696348517.6679\",\"due_date\":\"2023-10-03T22:55:26-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Moreno\",\"email\":\"mdaleja@hotmail.com\",\"phone_number\":\"3218002631\",\"address\":null,\"creation_date\":\"2023-10-03T10:55:26-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 15:57:58','2023-10-03 15:57:58'),(9793,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T10:00:46-06:00\",\"transaction\":{\"id\":\"triyqb1wmvdfk2lha2an\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197093363\",\"creation_date\":\"2023-10-03T10:55:26-06:00\",\"operation_date\":\"2023-10-03T09:57:30-06:00\",\"description\":\"Pago Mensual academia: Pedro Osorio Moreno (1027811391)\",\"error_message\":null,\"order_id\":\"147540E129E096FA91700E9DB6588354_ZQSKDT5XF7_1696348517.6679\",\"due_date\":\"2023-10-03T22:55:26-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Alejandra\",\"last_name\":\"Moreno\",\"email\":\"mdaleja@hotmail.com\",\"phone_number\":\"3218002631\",\"address\":null,\"creation_date\":\"2023-10-03T10:55:26-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 16:00:47','2023-10-03 16:00:47'),(9794,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T11:43:34-05:00\",\"transaction\":{\"id\":\"trxbdspvjswbx8jfw4dn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-03T11:43:34-05:00\",\"operation_date\":\"2023-10-03T11:43:34-05:00\",\"description\":\"Pago Mensual academia: Samuel David Toro Pérez (1013362067)\",\"error_message\":null,\"order_id\":\"7E889FB76E0E07C11733550F2A6C7A5A_KXU9GIHT2M_1696351410.5054\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Pérez Ortega\",\"email\":\"leidyssd09@gmail.com\",\"phone_number\":\"304 1315479\",\"address\":null,\"creation_date\":\"2023-10-03T11:43:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxbdspvjswbx8jfw4dn/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 16:43:35','2023-10-03 16:43:35'),(9795,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T11:46:14-05:00\",\"transaction\":{\"id\":\"trk6gmz7hrifo5l7vw6e\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T11:45:39-05:00\",\"operation_date\":\"2023-10-03T11:45:39-05:00\",\"description\":\"Pago Mensual academia: Vicente Giraldo Duque (1035010797)\",\"error_message\":null,\"order_id\":\"D6CF4DA5CED8580C991E16FB54FAA1B6_X9MVDSOC2F_1696351530.5842\",\"due_date\":\"2023-10-03T23:45:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Ricardo\",\"last_name\":\"Giraldo Posada\",\"email\":\"jugiraldo@gmail.com\",\"phone_number\":\"3017837972\",\"address\":null,\"creation_date\":\"2023-10-03T11:45:39-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trk6gmz7hrifo5l7vw6e/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 16:46:14','2023-10-03 16:46:14'),(9796,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T11:47:49-05:00\",\"transaction\":{\"id\":\"trk6gmz7hrifo5l7vw6e\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197261071\",\"creation_date\":\"2023-10-03T11:45:39-05:00\",\"operation_date\":\"2023-10-03T11:47:41-05:00\",\"description\":\"Pago Mensual academia: Vicente Giraldo Duque (1035010797)\",\"error_message\":null,\"order_id\":\"D6CF4DA5CED8580C991E16FB54FAA1B6_X9MVDSOC2F_1696351530.5842\",\"due_date\":\"2023-10-03T23:45:39-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Ricardo\",\"last_name\":\"Giraldo Posada\",\"email\":\"jugiraldo@gmail.com\",\"phone_number\":\"3017837972\",\"address\":null,\"creation_date\":\"2023-10-03T11:45:39-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 16:47:50','2023-10-03 16:47:50'),(9797,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T11:48:51-05:00\",\"transaction\":{\"id\":\"trghvplxssvrm2ivxidi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T11:48:12-05:00\",\"operation_date\":\"2023-10-03T11:48:12-05:00\",\"description\":\"Pago Mensual academia: Vicente Giraldo Duque (1035010797)\",\"error_message\":null,\"order_id\":\"B035D6563A2ADAC9F822940C145263CE_AQ87VDS953_1696351684.3426\",\"due_date\":\"2023-10-03T23:48:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Ricardo\",\"last_name\":\"Giraldo Posada\",\"email\":\"jugiraldo@gmail.com\",\"phone_number\":\"3017837972\",\"address\":null,\"creation_date\":\"2023-10-03T11:48:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trghvplxssvrm2ivxidi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 16:48:52','2023-10-03 16:48:52'),(9798,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T11:49:48-05:00\",\"transaction\":{\"id\":\"trghvplxssvrm2ivxidi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197269359\",\"creation_date\":\"2023-10-03T11:48:12-05:00\",\"operation_date\":\"2023-10-03T11:49:42-05:00\",\"description\":\"Pago Mensual academia: Vicente Giraldo Duque (1035010797)\",\"error_message\":null,\"order_id\":\"B035D6563A2ADAC9F822940C145263CE_AQ87VDS953_1696351684.3426\",\"due_date\":\"2023-10-03T23:48:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Ricardo\",\"last_name\":\"Giraldo Posada\",\"email\":\"jugiraldo@gmail.com\",\"phone_number\":\"3017837972\",\"address\":null,\"creation_date\":\"2023-10-03T11:48:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 16:49:49','2023-10-03 16:49:49'),(9799,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T11:51:44-05:00\",\"transaction\":{\"id\":\"trlckqnsel4wlzpbhanc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T11:50:12-05:00\",\"operation_date\":\"2023-10-03T11:50:12-05:00\",\"description\":\"Pago Mensual academia: Rafael Jaime Iguarán Vargas (1035007709)\",\"error_message\":null,\"order_id\":\"872DD316EB8A432CBC63F141E2D68DED_XE21K0JYI8_1696351810.0719\",\"due_date\":\"2023-10-03T23:50:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Rafael\",\"last_name\":\"Iguarán Osorio\",\"email\":\"rafael.iguaran@gmail.com\",\"phone_number\":\"3213207337\",\"address\":null,\"creation_date\":\"2023-10-03T11:50:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlckqnsel4wlzpbhanc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 16:51:45','2023-10-03 16:51:45'),(9800,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  890\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T11:52:17-05:00\",\"transaction\":{\"id\":\"tretbmhchydysp9vk68v\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-03T11:52:17-05:00\",\"operation_date\":\"2023-10-03T11:52:17-05:00\",\"description\":\"Pago Mensual academia: Samuel David Toro Pérez (1013362067)\",\"error_message\":null,\"order_id\":\"38087D90FE0083A5D17FEF54ED2B3220_XS4L31Q7VE_1696351934.3932\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Pérez Ortega\",\"email\":\"leidyssd09@gmail.com\",\"phone_number\":\"304 1315479\",\"address\":null,\"creation_date\":\"2023-10-03T11:52:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tretbmhchydysp9vk68v/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 16:52:18','2023-10-03 16:52:18'),(9801,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T11:52:32-05:00\",\"transaction\":{\"id\":\"trlckqnsel4wlzpbhanc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197278541\",\"creation_date\":\"2023-10-03T11:50:12-05:00\",\"operation_date\":\"2023-10-03T11:52:18-05:00\",\"description\":\"Pago Mensual academia: Rafael Jaime Iguarán Vargas (1035007709)\",\"error_message\":null,\"order_id\":\"872DD316EB8A432CBC63F141E2D68DED_XE21K0JYI8_1696351810.0719\",\"due_date\":\"2023-10-03T23:50:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Rafael\",\"last_name\":\"Iguarán Osorio\",\"email\":\"rafael.iguaran@gmail.com\",\"phone_number\":\"3213207337\",\"address\":null,\"creation_date\":\"2023-10-03T11:50:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 16:52:33','2023-10-03 16:52:33'),(9802,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1132\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T11:53:17-05:00\",\"transaction\":{\"id\":\"tretbmhchydysp9vk68v\",\"authorization\":\"09507D\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-03T11:52:17-05:00\",\"operation_date\":\"2023-10-03T11:53:16-05:00\",\"description\":\"Pago Mensual academia: Samuel David Toro Pérez (1013362067)\",\"error_message\":null,\"order_id\":\"38087D90FE0083A5D17FEF54ED2B3220_XS4L31Q7VE_1696351934.3932\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"426684XXXXXX7979\",\"holder_name\":\"Visa \",\"expiration_year\":\"27\",\"expiration_month\":\"02\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CHASE BANK USA, N.A.\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Pérez Ortega\",\"email\":\"leidyssd09@gmail.com\",\"phone_number\":\"304 1315479\",\"address\":null,\"creation_date\":\"2023-10-03T11:52:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tretbmhchydysp9vk68v/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 16:53:18','2023-10-03 16:53:18'),(9803,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T11:58:48-05:00\",\"transaction\":{\"id\":\"trdie4or8odw8kpwvlbc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T11:57:59-05:00\",\"operation_date\":\"2023-10-03T11:57:59-05:00\",\"description\":\"Pago Mensual academia: Emiliano Velasquez Garcia (1027814924)\",\"error_message\":null,\"order_id\":\"8CB94E7A9661EA20B1293C589216D396_CQDTH906WB_1696352273.9457\",\"due_date\":\"2023-10-03T23:57:59-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Gabriel\",\"last_name\":\"Velasquez Leon\",\"email\":\"juan20092@gmail.com\",\"phone_number\":\"3127835658\",\"address\":null,\"creation_date\":\"2023-10-03T11:57:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdie4or8odw8kpwvlbc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 16:58:48','2023-10-03 16:58:48'),(9804,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T11:59:57-05:00\",\"transaction\":{\"id\":\"trdie4or8odw8kpwvlbc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197300526\",\"creation_date\":\"2023-10-03T11:57:59-05:00\",\"operation_date\":\"2023-10-03T11:59:43-05:00\",\"description\":\"Pago Mensual academia: Emiliano Velasquez Garcia (1027814924)\",\"error_message\":null,\"order_id\":\"8CB94E7A9661EA20B1293C589216D396_CQDTH906WB_1696352273.9457\",\"due_date\":\"2023-10-03T23:57:59-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Juan Gabriel\",\"last_name\":\"Velasquez Leon\",\"email\":\"juan20092@gmail.com\",\"phone_number\":\"3127835658\",\"address\":null,\"creation_date\":\"2023-10-03T11:57:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 16:59:58','2023-10-03 16:59:58'),(9805,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T12:43:54-05:00\",\"transaction\":{\"id\":\"tr9yqruyvfweaj1s8hr7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T12:43:20-05:00\",\"operation_date\":\"2023-10-03T12:43:20-05:00\",\"description\":\"Pago Mensual academia: Gerrard Alvarez Restrepo (1028142667)\",\"error_message\":null,\"order_id\":\"F2B5E92F61B6DE923B063588EE6E7C48_QR7LVYPN1F_1696354998.221\",\"due_date\":\"2023-10-04T00:43:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gerrard\",\"last_name\":\"Alvarez Restrepo\",\"email\":\"jeny_rere@hotmail.com\",\"phone_number\":\"3113864202\",\"address\":null,\"creation_date\":\"2023-10-03T12:43:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9yqruyvfweaj1s8hr7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 17:43:55','2023-10-03 17:43:55'),(9806,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T12:44:42-05:00\",\"transaction\":{\"id\":\"tr9yqruyvfweaj1s8hr7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197431799\",\"creation_date\":\"2023-10-03T12:43:20-05:00\",\"operation_date\":\"2023-10-03T12:44:36-05:00\",\"description\":\"Pago Mensual academia: Gerrard Alvarez Restrepo (1028142667)\",\"error_message\":null,\"order_id\":\"F2B5E92F61B6DE923B063588EE6E7C48_QR7LVYPN1F_1696354998.221\",\"due_date\":\"2023-10-04T00:43:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Gerrard\",\"last_name\":\"Alvarez Restrepo\",\"email\":\"jeny_rere@hotmail.com\",\"phone_number\":\"3113864202\",\"address\":null,\"creation_date\":\"2023-10-03T12:43:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 17:44:42','2023-10-03 17:44:42'),(9807,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T12:51:45-05:00\",\"transaction\":{\"id\":\"trqikfzfdnfebo9bjsuh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T12:50:50-05:00\",\"operation_date\":\"2023-10-03T12:50:50-05:00\",\"description\":\"Pago Mensual academia: Pedro Yepes Ruiz (1022007398)\",\"error_message\":null,\"order_id\":\"C96C08F8BB7960E11A1239352A479053_GN9IE62CY0_1696355446.4968\",\"due_date\":\"2023-10-04T00:50:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres\",\"last_name\":\"Yepes Arcila\",\"email\":\"ayepesa@hotmail.com\",\"phone_number\":\"3117462193\",\"address\":null,\"creation_date\":\"2023-10-03T12:50:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqikfzfdnfebo9bjsuh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 17:51:45','2023-10-03 17:51:45'),(9808,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  797\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T12:54:06-05:00\",\"transaction\":{\"id\":\"trqikfzfdnfebo9bjsuh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197453839\",\"creation_date\":\"2023-10-03T12:50:50-05:00\",\"operation_date\":\"2023-10-03T12:53:52-05:00\",\"description\":\"Pago Mensual academia: Pedro Yepes Ruiz (1022007398)\",\"error_message\":null,\"order_id\":\"C96C08F8BB7960E11A1239352A479053_GN9IE62CY0_1696355446.4968\",\"due_date\":\"2023-10-04T00:50:50-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres\",\"last_name\":\"Yepes Arcila\",\"email\":\"ayepesa@hotmail.com\",\"phone_number\":\"3117462193\",\"address\":null,\"creation_date\":\"2023-10-03T12:50:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 17:54:06','2023-10-03 17:54:06'),(9809,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  888\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T13:26:25-05:00\",\"transaction\":{\"id\":\"trm4ypqzl2outioympil\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-03T13:26:25-05:00\",\"operation_date\":\"2023-10-03T13:26:25-05:00\",\"description\":\"Pago Mensual academia: JACOBO ACERO ECHEVERRI (1021809700)\",\"error_message\":null,\"order_id\":\"A787F02ED34FD886EB6D49E60D9C9120_R8MIJX29HO_1696357582.2242\",\"amount\":165900.00,\"customer\":{\"name\":\"ANDRÉS\",\"last_name\":\"ACERO GIRALDO\",\"email\":\"maroacero@gmail.com\",\"phone_number\":\"3164741346\",\"address\":null,\"creation_date\":\"2023-10-03T13:26:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm4ypqzl2outioympil/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 18:26:26','2023-10-03 18:26:26'),(9810,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1136\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T13:27:21-05:00\",\"transaction\":{\"id\":\"trm4ypqzl2outioympil\",\"authorization\":\"211193\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-03T13:26:25-05:00\",\"operation_date\":\"2023-10-03T13:27:20-05:00\",\"description\":\"Pago Mensual academia: JACOBO ACERO ECHEVERRI (1021809700)\",\"error_message\":null,\"order_id\":\"A787F02ED34FD886EB6D49E60D9C9120_R8MIJX29HO_1696357582.2242\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"409983XXXXXX2553\",\"holder_name\":\"DIANA ECHEVERRI\",\"expiration_year\":\"26\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"ANDRÉS\",\"last_name\":\"ACERO GIRALDO\",\"email\":\"maroacero@gmail.com\",\"phone_number\":\"3164741346\",\"address\":null,\"creation_date\":\"2023-10-03T13:26:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm4ypqzl2outioympil/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 18:27:21','2023-10-03 18:27:21'),(9811,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  899\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T13:54:12-05:00\",\"transaction\":{\"id\":\"trojpisn9mmytgotpj53\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-03T13:54:12-05:00\",\"operation_date\":\"2023-10-03T13:54:12-05:00\",\"description\":\"Pago Mensual academia: Emiliano Jaramillo Moreno (1020324694)\",\"error_message\":null,\"order_id\":\"27D8D40B22F812A1BA6C26F8EF7DF480_YU8XZCSQ45_1696359249.3268\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"moreno velez\",\"email\":\"danielamorenovelez@gmail.com\",\"phone_number\":\"3003530386\",\"address\":null,\"creation_date\":\"2023-10-03T13:54:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trojpisn9mmytgotpj53/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 18:54:13','2023-10-03 18:54:13'),(9812,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1143\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T13:54:53-05:00\",\"transaction\":{\"id\":\"trojpisn9mmytgotpj53\",\"authorization\":\"R00591\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-03T13:54:12-05:00\",\"operation_date\":\"2023-10-03T13:54:52-05:00\",\"description\":\"Pago Mensual academia: Emiliano Jaramillo Moreno (1020324694)\",\"error_message\":null,\"order_id\":\"27D8D40B22F812A1BA6C26F8EF7DF480_YU8XZCSQ45_1696359249.3268\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"521897XXXXXX2174\",\"holder_name\":\"Diego Jaramillo \",\"expiration_year\":\"26\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"EXITO\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"moreno velez\",\"email\":\"danielamorenovelez@gmail.com\",\"phone_number\":\"3003530386\",\"address\":null,\"creation_date\":\"2023-10-03T13:54:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trojpisn9mmytgotpj53/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 18:54:54','2023-10-03 18:54:54'),(9813,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T14:00:52-05:00\",\"transaction\":{\"id\":\"trsx1bhfldh9trlaong6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T13:59:09-05:00\",\"operation_date\":\"2023-10-03T13:59:09-05:00\",\"description\":\"Pago Mensual academia: martin orozco (1035011724)\",\"error_message\":null,\"order_id\":\"2BF7E9E8F3F3BCE1AC5212F22414AA57_Y6SD9C5IV7_1696359526.1522\",\"due_date\":\"2023-10-04T01:59:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catherine\",\"last_name\":\"jimenez\",\"email\":\"cathe84@gmail.com\",\"phone_number\":\"3216483416\",\"address\":null,\"creation_date\":\"2023-10-03T13:59:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsx1bhfldh9trlaong6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 19:00:52','2023-10-03 19:00:52'),(9814,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  829\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-03T13:12:18-06:00\",\"transaction\":{\"id\":\"trsx1bhfldh9trlaong6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-03T13:59:09-06:00\",\"operation_date\":\"2023-10-03T13:59:09-06:00\",\"description\":\"Pago Mensual academia: martin orozco (1035011724)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"2BF7E9E8F3F3BCE1AC5212F22414AA57_Y6SD9C5IV7_1696359526.1522\",\"due_date\":\"2023-10-04T01:59:09-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"catherine\",\"last_name\":\"jimenez\",\"email\":\"cathe84@gmail.com\",\"phone_number\":\"3216483416\",\"address\":null,\"creation_date\":\"2023-10-03T13:59:09-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 19:12:19','2023-10-03 19:12:19'),(9815,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T14:13:35-05:00\",\"transaction\":{\"id\":\"trcv0zla8kx8gfmaetxg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T14:12:49-05:00\",\"operation_date\":\"2023-10-03T14:12:49-05:00\",\"description\":\"Pago Mensual academia: Anthony Ramirez Rendon (1038874697)\",\"error_message\":null,\"order_id\":\"148D411AEFFED8A6F6AD4ECD77D1F904_ZN5AJK7E0D_1696360367.4534\",\"due_date\":\"2023-10-04T02:12:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Rendon\",\"email\":\"tatirendonc@gmail.com\",\"phone_number\":\"3008949106\",\"address\":null,\"creation_date\":\"2023-10-03T14:12:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcv0zla8kx8gfmaetxg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 19:13:36','2023-10-03 19:13:36'),(9816,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  829\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-03T13:15:17-06:00\",\"transaction\":{\"id\":\"trsx1bhfldh9trlaong6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-03T13:59:09-06:00\",\"operation_date\":\"2023-10-03T13:59:09-06:00\",\"description\":\"Pago Mensual academia: martin orozco (1035011724)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"2BF7E9E8F3F3BCE1AC5212F22414AA57_Y6SD9C5IV7_1696359526.1522\",\"due_date\":\"2023-10-04T01:59:09-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"catherine\",\"last_name\":\"jimenez\",\"email\":\"cathe84@gmail.com\",\"phone_number\":\"3216483416\",\"address\":null,\"creation_date\":\"2023-10-03T13:59:09-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 19:15:18','2023-10-03 19:15:18'),(9817,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T13:15:53-06:00\",\"transaction\":{\"id\":\"trcv0zla8kx8gfmaetxg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197697264\",\"creation_date\":\"2023-10-03T14:12:49-06:00\",\"operation_date\":\"2023-10-03T13:14:53-06:00\",\"description\":\"Pago Mensual academia: Anthony Ramirez Rendon (1038874697)\",\"error_message\":null,\"order_id\":\"148D411AEFFED8A6F6AD4ECD77D1F904_ZN5AJK7E0D_1696360367.4534\",\"due_date\":\"2023-10-04T02:12:49-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Rendon\",\"email\":\"tatirendonc@gmail.com\",\"phone_number\":\"3008949106\",\"address\":null,\"creation_date\":\"2023-10-03T14:12:49-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 19:15:54','2023-10-03 19:15:54'),(9818,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  829\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-03T13:18:15-06:00\",\"transaction\":{\"id\":\"trsx1bhfldh9trlaong6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-03T13:59:09-06:00\",\"operation_date\":\"2023-10-03T13:59:09-06:00\",\"description\":\"Pago Mensual academia: martin orozco (1035011724)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"2BF7E9E8F3F3BCE1AC5212F22414AA57_Y6SD9C5IV7_1696359526.1522\",\"due_date\":\"2023-10-04T01:59:09-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"catherine\",\"last_name\":\"jimenez\",\"email\":\"cathe84@gmail.com\",\"phone_number\":\"3216483416\",\"address\":null,\"creation_date\":\"2023-10-03T13:59:09-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 19:18:16','2023-10-03 19:18:16'),(9819,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  865\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T14:18:44-05:00\",\"transaction\":{\"id\":\"tr4hbmdaz2weqvla0vmp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-03T14:18:44-05:00\",\"operation_date\":\"2023-10-03T14:18:44-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"E165421110BA03099A1C0393373C5B43_E-651C68FE-14_1696360711.0528\",\"amount\":146900.00,\"customer\":{\"name\":\"Milena\",\"last_name\":\"Santamaria\",\"email\":\"ana.santamaria.90@hotmail.com\",\"phone_number\":\"3217551477\",\"address\":null,\"creation_date\":\"2023-10-03T14:18:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr4hbmdaz2weqvla0vmp/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 19:18:45','2023-10-03 19:18:45'),(9820,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T13:18:45-06:00\",\"transaction\":{\"id\":\"trcv0zla8kx8gfmaetxg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197697264\",\"creation_date\":\"2023-10-03T14:12:49-06:00\",\"operation_date\":\"2023-10-03T13:14:53-06:00\",\"description\":\"Pago Mensual academia: Anthony Ramirez Rendon (1038874697)\",\"error_message\":null,\"order_id\":\"148D411AEFFED8A6F6AD4ECD77D1F904_ZN5AJK7E0D_1696360367.4534\",\"due_date\":\"2023-10-04T02:12:49-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Rendon\",\"email\":\"tatirendonc@gmail.com\",\"phone_number\":\"3008949106\",\"address\":null,\"creation_date\":\"2023-10-03T14:12:49-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 19:18:45','2023-10-03 19:18:45'),(9821,'POST /api/store/webhooksListener?paymentGatewayId=17 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1117\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T14:20:48-05:00\",\"transaction\":{\"id\":\"tr4hbmdaz2weqvla0vmp\",\"authorization\":\"239592\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-03T14:18:44-05:00\",\"operation_date\":\"2023-10-03T14:20:48-05:00\",\"description\":\"Pago de producto de tienda\",\"error_message\":null,\"order_id\":\"E165421110BA03099A1C0393373C5B43_E-651C68FE-14_1696360711.0528\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"451307XXXXXX9885\",\"holder_name\":\"Ana M Santamaría N\",\"expiration_year\":\"25\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":146900.00,\"customer\":{\"name\":\"Milena\",\"last_name\":\"Santamaria\",\"email\":\"ana.santamaria.90@hotmail.com\",\"phone_number\":\"3217551477\",\"address\":null,\"creation_date\":\"2023-10-03T14:18:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mtndfclemlqlzqoycyam/charges/tr4hbmdaz2weqvla0vmp/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 19:20:49','2023-10-03 19:20:49'),(9822,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T14:26:33-05:00\",\"transaction\":{\"id\":\"tr7nicfya2jjjqke7tjy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T14:25:56-05:00\",\"operation_date\":\"2023-10-03T14:25:56-05:00\",\"description\":\"Pago Mensual academia: ANTONIO JIMENEZ AGUDELO (1020235872)\",\"error_message\":null,\"order_id\":\"8526E0962A844E4A2F158D831D5FDDF7_KMAY8I0FNU_1696361149.9048\",\"due_date\":\"2023-10-04T02:25:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Agudelo\",\"email\":\"lauraagudelo01@gmail.com\",\"phone_number\":\"3197690545\",\"address\":null,\"creation_date\":\"2023-10-03T14:25:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7nicfya2jjjqke7tjy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 19:26:34','2023-10-03 19:26:34'),(9823,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T13:28:01-06:00\",\"transaction\":{\"id\":\"tr7nicfya2jjjqke7tjy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197735975\",\"creation_date\":\"2023-10-03T14:25:56-06:00\",\"operation_date\":\"2023-10-03T13:27:55-06:00\",\"description\":\"Pago Mensual academia: ANTONIO JIMENEZ AGUDELO (1020235872)\",\"error_message\":null,\"order_id\":\"8526E0962A844E4A2F158D831D5FDDF7_KMAY8I0FNU_1696361149.9048\",\"due_date\":\"2023-10-04T02:25:56-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Laura\",\"last_name\":\"Agudelo\",\"email\":\"lauraagudelo01@gmail.com\",\"phone_number\":\"3197690545\",\"address\":null,\"creation_date\":\"2023-10-03T14:25:56-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 19:28:02','2023-10-03 19:28:02'),(9824,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T14:42:51-05:00\",\"transaction\":{\"id\":\"tr5hsfzuplfz21qdhhcu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T14:41:15-05:00\",\"operation_date\":\"2023-10-03T14:41:15-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Aguirre Velasquez (1034993490)\",\"error_message\":null,\"order_id\":\"9A86D531E19EC6F5937AD1373BB118BD_WQDUYFB28A_1696362069.8371\",\"due_date\":\"2023-10-04T02:41:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jimmy Leandro\",\"last_name\":\"Aguirre Navales\",\"email\":\"aguirrejimmy@hotmail.com\",\"phone_number\":\"3128514979\",\"address\":null,\"creation_date\":\"2023-10-03T14:41:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5hsfzuplfz21qdhhcu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 19:42:52','2023-10-03 19:42:52'),(9825,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T14:44:53-05:00\",\"transaction\":{\"id\":\"tr5hsfzuplfz21qdhhcu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"197785592\",\"creation_date\":\"2023-10-03T14:41:15-05:00\",\"operation_date\":\"2023-10-03T14:44:33-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Aguirre Velasquez (1034993490)\",\"error_message\":null,\"order_id\":\"9A86D531E19EC6F5937AD1373BB118BD_WQDUYFB28A_1696362069.8371\",\"due_date\":\"2023-10-04T02:41:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jimmy Leandro\",\"last_name\":\"Aguirre Navales\",\"email\":\"aguirrejimmy@hotmail.com\",\"phone_number\":\"3128514979\",\"address\":null,\"creation_date\":\"2023-10-03T14:41:15-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 19:44:54','2023-10-03 19:44:54'),(9826,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  898\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T15:42:57-05:00\",\"transaction\":{\"id\":\"trnodiqffrcnpo8kqlub\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-03T15:42:57-05:00\",\"operation_date\":\"2023-10-03T15:42:57-05:00\",\"description\":\"Pago Mensual academia: Martin Correa Corredor (1142115157)\",\"error_message\":null,\"order_id\":\"D290DC6CABAFFA37F5473EB33611607E_RDGVPNW3C4_1696365773.8185\",\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Correa Corredor\",\"email\":\"davidricardocorrea@gmail.com\",\"phone_number\":\"3014477440\",\"address\":null,\"creation_date\":\"2023-10-03T15:42:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnodiqffrcnpo8kqlub/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 20:42:58','2023-10-03 20:42:58'),(9827,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1141\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T15:43:42-05:00\",\"transaction\":{\"id\":\"trnodiqffrcnpo8kqlub\",\"authorization\":\"973470\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-03T15:42:57-05:00\",\"operation_date\":\"2023-10-03T15:43:41-05:00\",\"description\":\"Pago Mensual academia: Martin Correa Corredor (1142115157)\",\"error_message\":null,\"order_id\":\"D290DC6CABAFFA37F5473EB33611607E_RDGVPNW3C4_1696365773.8185\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"485991XXXXXX4132\",\"holder_name\":\"DAVID R CORREA F\",\"expiration_year\":\"28\",\"expiration_month\":\"07\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO ITAU\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Martin\",\"last_name\":\"Correa Corredor\",\"email\":\"davidricardocorrea@gmail.com\",\"phone_number\":\"3014477440\",\"address\":null,\"creation_date\":\"2023-10-03T15:42:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnodiqffrcnpo8kqlub/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-03 20:43:43','2023-10-03 20:43:43'),(9828,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T16:00:48-05:00\",\"transaction\":{\"id\":\"traexzymbmvbcqlzzhyj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T15:58:27-05:00\",\"operation_date\":\"2023-10-03T15:58:27-05:00\",\"description\":\"Pago Mensual academia: martin orozco (1035011724)\",\"error_message\":null,\"order_id\":\"2BF7E9E8F3F3BCE1AC5212F22414AA57_Y6SD9C5IV7_1696366693.6216\",\"due_date\":\"2023-10-04T03:58:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catherine\",\"last_name\":\"jimenez\",\"email\":\"cathe84@gmail.com\",\"phone_number\":\"3216483416\",\"address\":null,\"creation_date\":\"2023-10-03T15:58:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traexzymbmvbcqlzzhyj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 21:00:49','2023-10-03 21:00:49'),(9829,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  910\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T16:01:44-05:00\",\"transaction\":{\"id\":\"trjwdoeyrqtwzvuwlgam\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T16:00:49-05:00\",\"operation_date\":\"2023-10-03T16:00:49-05:00\",\"description\":\"Pago Mensual academia: Lorenzo Turizo Vasco (1027665082)\",\"error_message\":null,\"order_id\":\"3E6AD89FE36086FB79126E36C659F5DF_275UF3LD6I_1696366844.5322\",\"due_date\":\"2023-10-04T04:00:49-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Turizo\",\"email\":\"jeturizog@gmail.com\",\"phone_number\":\"3156320944\",\"address\":null,\"creation_date\":\"2023-10-03T16:00:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjwdoeyrqtwzvuwlgam/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 21:01:45','2023-10-03 21:01:45'),(9830,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  793\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T16:03:17-05:00\",\"transaction\":{\"id\":\"trjwdoeyrqtwzvuwlgam\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"198025170\",\"creation_date\":\"2023-10-03T16:00:49-05:00\",\"operation_date\":\"2023-10-03T16:02:57-05:00\",\"description\":\"Pago Mensual academia: Lorenzo Turizo Vasco (1027665082)\",\"error_message\":null,\"order_id\":\"3E6AD89FE36086FB79126E36C659F5DF_275UF3LD6I_1696366844.5322\",\"due_date\":\"2023-10-04T04:00:49-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Turizo\",\"email\":\"jeturizog@gmail.com\",\"phone_number\":\"3156320944\",\"address\":null,\"creation_date\":\"2023-10-03T16:00:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 21:03:17','2023-10-03 21:03:17'),(9831,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  790\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T15:03:19-06:00\",\"transaction\":{\"id\":\"traexzymbmvbcqlzzhyj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"198022453\",\"creation_date\":\"2023-10-03T15:58:27-06:00\",\"operation_date\":\"2023-10-03T15:03:13-06:00\",\"description\":\"Pago Mensual academia: martin orozco (1035011724)\",\"error_message\":null,\"order_id\":\"2BF7E9E8F3F3BCE1AC5212F22414AA57_Y6SD9C5IV7_1696366693.6216\",\"due_date\":\"2023-10-04T03:58:27-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"catherine\",\"last_name\":\"jimenez\",\"email\":\"cathe84@gmail.com\",\"phone_number\":\"3216483416\",\"address\":null,\"creation_date\":\"2023-10-03T15:58:27-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 21:03:20','2023-10-03 21:03:20'),(9832,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T16:36:13-05:00\",\"transaction\":{\"id\":\"trgjp4pdzqkublmtgdbv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T16:34:54-05:00\",\"operation_date\":\"2023-10-03T16:34:54-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Salazar Garces (1017938650)\",\"error_message\":null,\"order_id\":\"8E1AD7941398486F8CEDE7799B886B58_B1A367D4HM_1696368883.5702\",\"due_date\":\"2023-10-04T04:34:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ana maria\",\"last_name\":\"Garces Ramirez\",\"email\":\"anita-g-r@hotmail.com\",\"phone_number\":\"3103861294\",\"address\":null,\"creation_date\":\"2023-10-03T16:34:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgjp4pdzqkublmtgdbv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 21:36:14','2023-10-03 21:36:14'),(9833,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T16:38:25-05:00\",\"transaction\":{\"id\":\"trmcxur4qp0jieyklptb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T16:37:46-05:00\",\"operation_date\":\"2023-10-03T16:37:46-05:00\",\"description\":\"Pago Mensual academia: Martin Sierra Carmona (1056132253)\",\"error_message\":null,\"order_id\":\"E0640C93B05097A9380870AA06AA0DF4_CYFMSI60B5_1696369053.0492\",\"due_date\":\"2023-10-04T04:37:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Sierra Marín\",\"email\":\"sierramjc@gmail.com\",\"phone_number\":\"3007544651\",\"address\":null,\"creation_date\":\"2023-10-03T16:37:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmcxur4qp0jieyklptb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 21:38:26','2023-10-03 21:38:26'),(9834,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T16:39:03-05:00\",\"transaction\":{\"id\":\"trgjp4pdzqkublmtgdbv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"198125811\",\"creation_date\":\"2023-10-03T16:34:54-05:00\",\"operation_date\":\"2023-10-03T16:38:50-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Salazar Garces (1017938650)\",\"error_message\":null,\"order_id\":\"8E1AD7941398486F8CEDE7799B886B58_B1A367D4HM_1696368883.5702\",\"due_date\":\"2023-10-04T04:34:54-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ana maria\",\"last_name\":\"Garces Ramirez\",\"email\":\"anita-g-r@hotmail.com\",\"phone_number\":\"3103861294\",\"address\":null,\"creation_date\":\"2023-10-03T16:34:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 21:39:04','2023-10-03 21:39:04'),(9835,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  847\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-03T15:51:14-06:00\",\"transaction\":{\"id\":\"trmcxur4qp0jieyklptb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-03T16:37:46-06:00\",\"operation_date\":\"2023-10-03T16:37:46-06:00\",\"description\":\"Pago Mensual academia: Martin Sierra Carmona (1056132253)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"E0640C93B05097A9380870AA06AA0DF4_CYFMSI60B5_1696369053.0492\",\"due_date\":\"2023-10-04T04:37:46-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Sierra Marín\",\"email\":\"sierramjc@gmail.com\",\"phone_number\":\"3007544651\",\"address\":null,\"creation_date\":\"2023-10-03T16:37:46-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 21:51:15','2023-10-03 21:51:15'),(9836,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T18:07:42-05:00\",\"transaction\":{\"id\":\"trkgrwlzwnz0mbwv7bmb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T18:06:45-05:00\",\"operation_date\":\"2023-10-03T18:06:45-05:00\",\"description\":\"Pago Mensual academia: Thiago Alvarez Robayo (1025077316)\",\"error_message\":null,\"order_id\":\"D93591BDF7860E1E4EE2FCA799911215_AFMCOP13NI_1696374402.7566\",\"due_date\":\"2023-10-04T06:06:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ángela\",\"last_name\":\"Robayo Herrera\",\"email\":\"angelapao.robayo@gmail.com\",\"phone_number\":\"3043765119\",\"address\":null,\"creation_date\":\"2023-10-03T18:06:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkgrwlzwnz0mbwv7bmb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 23:07:43','2023-10-03 23:07:43'),(9837,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T18:09:22-05:00\",\"transaction\":{\"id\":\"trkgrwlzwnz0mbwv7bmb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"198347741\",\"creation_date\":\"2023-10-03T18:06:45-05:00\",\"operation_date\":\"2023-10-03T18:08:59-05:00\",\"description\":\"Pago Mensual academia: Thiago Alvarez Robayo (1025077316)\",\"error_message\":null,\"order_id\":\"D93591BDF7860E1E4EE2FCA799911215_AFMCOP13NI_1696374402.7566\",\"due_date\":\"2023-10-04T06:06:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Ángela\",\"last_name\":\"Robayo Herrera\",\"email\":\"angelapao.robayo@gmail.com\",\"phone_number\":\"3043765119\",\"address\":null,\"creation_date\":\"2023-10-03T18:06:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 23:09:23','2023-10-03 23:09:23'),(9838,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T18:23:13-05:00\",\"transaction\":{\"id\":\"triyzkqwuhmbtdl4fuz7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T18:22:34-05:00\",\"operation_date\":\"2023-10-03T18:22:34-05:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":null,\"order_id\":\"31A262D6247F3513B19D1149102E116D_DO7A5N302R_1696375351.7614\",\"due_date\":\"2023-10-04T06:22:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-10-03T18:22:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/triyzkqwuhmbtdl4fuz7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 23:23:14','2023-10-03 23:23:14'),(9839,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T17:24:44-06:00\",\"transaction\":{\"id\":\"triyzkqwuhmbtdl4fuz7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"198383228\",\"creation_date\":\"2023-10-03T18:22:34-06:00\",\"operation_date\":\"2023-10-03T17:24:38-06:00\",\"description\":\"Pago Mensual academia: emanuel marulanda restrepo (1092855314)\",\"error_message\":null,\"order_id\":\"31A262D6247F3513B19D1149102E116D_DO7A5N302R_1696375351.7614\",\"due_date\":\"2023-10-04T06:22:34-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Emanuel\",\"last_name\":\"Marulanda Restrepo\",\"email\":\"carolina-888@hotmail.es\",\"phone_number\":\"3113586925\",\"address\":null,\"creation_date\":\"2023-10-03T18:22:34-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 23:24:45','2023-10-03 23:24:45'),(9840,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T18:52:55-05:00\",\"transaction\":{\"id\":\"trxm25n8fkpzkdezoaeu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T18:51:35-05:00\",\"operation_date\":\"2023-10-03T18:51:35-05:00\",\"description\":\"Pago Mensual academia: Lucas Velásquez Trujillo (1038873303)\",\"error_message\":null,\"order_id\":\"B5B1D9ADA94BB80609D21EECF7A2CE7A_LRZQIYWMJ5_1696377090.6296\",\"due_date\":\"2023-10-04T06:51:35-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Martha Gloria\",\"last_name\":\"Trujillo Gómez\",\"email\":\"mg_trujillo@hotmail.com\",\"phone_number\":\"3006140244\",\"address\":null,\"creation_date\":\"2023-10-03T18:51:35-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxm25n8fkpzkdezoaeu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 23:52:55','2023-10-03 23:52:55'),(9841,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T17:54:37-06:00\",\"transaction\":{\"id\":\"trxm25n8fkpzkdezoaeu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"198455254\",\"creation_date\":\"2023-10-03T18:51:35-06:00\",\"operation_date\":\"2023-10-03T17:54:10-06:00\",\"description\":\"Pago Mensual academia: Lucas Velásquez Trujillo (1038873303)\",\"error_message\":null,\"order_id\":\"B5B1D9ADA94BB80609D21EECF7A2CE7A_LRZQIYWMJ5_1696377090.6296\",\"due_date\":\"2023-10-04T06:51:35-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Martha Gloria\",\"last_name\":\"Trujillo Gómez\",\"email\":\"mg_trujillo@hotmail.com\",\"phone_number\":\"3006140244\",\"address\":null,\"creation_date\":\"2023-10-03T18:51:35-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-03 23:54:38','2023-10-03 23:54:38'),(9842,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T22:09:42-05:00\",\"transaction\":{\"id\":\"trsyuajyko7vnmb8rurc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T22:07:51-05:00\",\"operation_date\":\"2023-10-03T22:07:51-05:00\",\"description\":\"Pago Mensual academia: Emiliano Soto Cardona (1027663640)\",\"error_message\":null,\"order_id\":\"F569C3D708A7558B3049D2896D2B6CE1_1BA9MZEHPI_1696388865.4909\",\"due_date\":\"2023-10-04T10:07:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Milena\",\"last_name\":\"Cardona Rios\",\"email\":\"milenacardona614@gmail.com\",\"phone_number\":\"3046204578\",\"address\":null,\"creation_date\":\"2023-10-03T22:07:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsyuajyko7vnmb8rurc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 03:09:43','2023-10-04 03:09:43'),(9843,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T22:13:41-05:00\",\"transaction\":{\"id\":\"trsyuajyko7vnmb8rurc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"198897047\",\"creation_date\":\"2023-10-03T22:07:51-05:00\",\"operation_date\":\"2023-10-03T22:13:05-05:00\",\"description\":\"Pago Mensual academia: Emiliano Soto Cardona (1027663640)\",\"error_message\":null,\"order_id\":\"F569C3D708A7558B3049D2896D2B6CE1_1BA9MZEHPI_1696388865.4909\",\"due_date\":\"2023-10-04T10:07:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana Milena\",\"last_name\":\"Cardona Rios\",\"email\":\"milenacardona614@gmail.com\",\"phone_number\":\"3046204578\",\"address\":null,\"creation_date\":\"2023-10-03T22:07:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 03:13:42','2023-10-04 03:13:42'),(9844,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T22:34:25-05:00\",\"transaction\":{\"id\":\"tr4hwho30gvmwvddq3mo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T22:33:34-05:00\",\"operation_date\":\"2023-10-03T22:33:34-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gomez Arango (1035014961)\",\"error_message\":null,\"order_id\":\"D3E8FC83B3E886A0DC2AA9845A5215BF_BFECXQY076_1696390399.4718\",\"due_date\":\"2023-10-04T10:33:34-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martha\",\"last_name\":\"Arango Valencia\",\"email\":\"martha.arango.finca@gmail.com\",\"phone_number\":\"3117873823\",\"address\":null,\"creation_date\":\"2023-10-03T22:33:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4hwho30gvmwvddq3mo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 03:34:26','2023-10-04 03:34:26'),(9845,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T22:34:34-05:00\",\"transaction\":{\"id\":\"tr4lijvnvfvkhqqk0g71\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T22:33:47-05:00\",\"operation_date\":\"2023-10-03T22:33:47-05:00\",\"description\":\"Pago Mensual academia: matias calderon orozco (1020318922)\",\"error_message\":null,\"order_id\":\"903356AE8FF820105D57F744C8A24396_APFW2JOX7V_1696390424.3272\",\"due_date\":\"2023-10-04T10:33:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"orozco agudelo\",\"email\":\"andreaabogada@icloud.com\",\"phone_number\":\"3128633485\",\"address\":null,\"creation_date\":\"2023-10-03T22:33:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4lijvnvfvkhqqk0g71/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 03:34:35','2023-10-04 03:34:35'),(9846,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T22:36:05-05:00\",\"transaction\":{\"id\":\"tr4lijvnvfvkhqqk0g71\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"198932370\",\"creation_date\":\"2023-10-03T22:33:47-05:00\",\"operation_date\":\"2023-10-03T22:35:59-05:00\",\"description\":\"Pago Mensual academia: matias calderon orozco (1020318922)\",\"error_message\":null,\"order_id\":\"903356AE8FF820105D57F744C8A24396_APFW2JOX7V_1696390424.3272\",\"due_date\":\"2023-10-04T10:33:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"orozco agudelo\",\"email\":\"andreaabogada@icloud.com\",\"phone_number\":\"3128633485\",\"address\":null,\"creation_date\":\"2023-10-03T22:33:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 03:36:05','2023-10-04 03:36:05'),(9847,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T22:36:47-05:00\",\"transaction\":{\"id\":\"tr4hwho30gvmwvddq3mo\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"198932198\",\"creation_date\":\"2023-10-03T22:33:34-05:00\",\"operation_date\":\"2023-10-03T22:36:32-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Gomez Arango (1035014961)\",\"error_message\":null,\"order_id\":\"D3E8FC83B3E886A0DC2AA9845A5215BF_BFECXQY076_1696390399.4718\",\"due_date\":\"2023-10-04T10:33:34-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Martha\",\"last_name\":\"Arango Valencia\",\"email\":\"martha.arango.finca@gmail.com\",\"phone_number\":\"3117873823\",\"address\":null,\"creation_date\":\"2023-10-03T22:33:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 03:36:48','2023-10-04 03:36:48'),(9848,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-03T22:47:42-05:00\",\"transaction\":{\"id\":\"trhojhvhgxnhwfclrjfk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-03T22:42:48-05:00\",\"operation_date\":\"2023-10-03T22:42:48-05:00\",\"description\":\"Pago Mensual academia: Samuel Cardona Gallego (1035008672)\",\"error_message\":null,\"order_id\":\"CE016F59ECC2366A43E1C96A4774D167_DQSRXC9WUL_1696390918.0235\",\"due_date\":\"2023-10-04T10:42:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Gallego  Fernández\",\"email\":\"diana-gallego@hotmail.com\",\"phone_number\":\"3116368634\",\"address\":null,\"creation_date\":\"2023-10-03T22:42:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhojhvhgxnhwfclrjfk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 03:47:43','2023-10-04 03:47:43'),(9849,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-03T22:49:37-05:00\",\"transaction\":{\"id\":\"trhojhvhgxnhwfclrjfk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"198948075\",\"creation_date\":\"2023-10-03T22:42:48-05:00\",\"operation_date\":\"2023-10-03T22:49:04-05:00\",\"description\":\"Pago Mensual academia: Samuel Cardona Gallego (1035008672)\",\"error_message\":null,\"order_id\":\"CE016F59ECC2366A43E1C96A4774D167_DQSRXC9WUL_1696390918.0235\",\"due_date\":\"2023-10-04T10:42:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Gallego  Fernández\",\"email\":\"diana-gallego@hotmail.com\",\"phone_number\":\"3116368634\",\"address\":null,\"creation_date\":\"2023-10-03T22:42:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 03:49:38','2023-10-04 03:49:38'),(9850,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-04T02:15:25-06:00\",\"transaction\":{\"id\":\"trjeedzn8nmpdvxkqpvn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-10-03T09:10:50-06:00\",\"operation_date\":\"2023-10-03T09:10:50-06:00\",\"description\":\"Pago Mensual academia: maximiliano villa uribe (1034996599)\",\"error_message\":null,\"order_id\":\"5DD3E474F6E08E3316CE5E3BC36C666E_FT7WM0P6K3_1696342246.9097\",\"due_date\":\"2023-10-03T21:10:50-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"uribe restrepo\",\"email\":\"julyurpo@hotmail.com\",\"phone_number\":\"3147988709\",\"address\":null,\"creation_date\":\"2023-10-03T09:10:50-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjeedzn8nmpdvxkqpvn/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 08:15:26','2023-10-04 08:15:26'),(9851,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T07:16:07-05:00\",\"transaction\":{\"id\":\"trinj91car9emx8qlk8i\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T07:11:33-05:00\",\"operation_date\":\"2023-10-04T07:11:33-05:00\",\"description\":\"Pago Mensual academia: ivan del rio zuluaga (1035002157)\",\"error_message\":null,\"order_id\":\"1343777B8EAD1CEF5A79B78A1A48D805_9MEG4RBLA6_1696421458.0521\",\"due_date\":\"2023-10-04T19:11:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"oscar ivan\",\"last_name\":\"del rio del rio\",\"email\":\"gerencia@abarrotesdelrio.com\",\"phone_number\":\"3163283923\",\"address\":null,\"creation_date\":\"2023-10-04T07:11:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trinj91car9emx8qlk8i/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 12:16:07','2023-10-04 12:16:07'),(9852,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T07:18:12-05:00\",\"transaction\":{\"id\":\"trinj91car9emx8qlk8i\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199136289\",\"creation_date\":\"2023-10-04T07:11:33-05:00\",\"operation_date\":\"2023-10-04T07:17:22-05:00\",\"description\":\"Pago Mensual academia: ivan del rio zuluaga (1035002157)\",\"error_message\":null,\"order_id\":\"1343777B8EAD1CEF5A79B78A1A48D805_9MEG4RBLA6_1696421458.0521\",\"due_date\":\"2023-10-04T19:11:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"oscar ivan\",\"last_name\":\"del rio del rio\",\"email\":\"gerencia@abarrotesdelrio.com\",\"phone_number\":\"3163283923\",\"address\":null,\"creation_date\":\"2023-10-04T07:11:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 12:18:13','2023-10-04 12:18:13'),(9853,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T07:38:05-05:00\",\"transaction\":{\"id\":\"tr0zxzeam5ly9nkfmcm0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T07:36:57-05:00\",\"operation_date\":\"2023-10-04T07:36:57-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Ospina Zapata (1020312861)\",\"error_message\":null,\"order_id\":\"2C7F9CCB5A39073E24BABC3A4CB45E60_GH2MIJO147_1696423013.7766\",\"due_date\":\"2023-10-04T19:36:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Zapata Sierra\",\"email\":\"paulazapata78@hotmail.com\",\"phone_number\":\"3013400537\",\"address\":null,\"creation_date\":\"2023-10-04T07:36:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0zxzeam5ly9nkfmcm0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 12:38:06','2023-10-04 12:38:06'),(9854,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T07:38:57-05:00\",\"transaction\":{\"id\":\"tr0zxzeam5ly9nkfmcm0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199167438\",\"creation_date\":\"2023-10-04T07:36:57-05:00\",\"operation_date\":\"2023-10-04T07:38:48-05:00\",\"description\":\"Pago Mensual academia: Juan Pablo Ospina Zapata (1020312861)\",\"error_message\":null,\"order_id\":\"2C7F9CCB5A39073E24BABC3A4CB45E60_GH2MIJO147_1696423013.7766\",\"due_date\":\"2023-10-04T19:36:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Zapata Sierra\",\"email\":\"paulazapata78@hotmail.com\",\"phone_number\":\"3013400537\",\"address\":null,\"creation_date\":\"2023-10-04T07:36:57-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 12:38:58','2023-10-04 12:38:58'),(9855,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T08:25:58-05:00\",\"transaction\":{\"id\":\"trlh2zelsynbhsfgehtz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T08:24:56-05:00\",\"operation_date\":\"2023-10-04T08:24:56-05:00\",\"description\":\"Pago Mensual academia: Mateo Esteban Arroyave Robles (1125279657)\",\"error_message\":null,\"order_id\":\"0D5BD023A3EE11C7ABCA5B42A93C4866_B7ROVN15KC_1696425892.6583\",\"due_date\":\"2023-10-04T20:24:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"Robles Lomas\",\"email\":\"srobleslomas@hotmail.com\",\"phone_number\":\"3125036629\",\"address\":null,\"creation_date\":\"2023-10-04T08:24:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlh2zelsynbhsfgehtz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 13:25:58','2023-10-04 13:25:58'),(9856,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T07:30:14-06:00\",\"transaction\":{\"id\":\"trlh2zelsynbhsfgehtz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199257138\",\"creation_date\":\"2023-10-04T08:24:56-06:00\",\"operation_date\":\"2023-10-04T07:27:40-06:00\",\"description\":\"Pago Mensual academia: Mateo Esteban Arroyave Robles (1125279657)\",\"error_message\":null,\"order_id\":\"0D5BD023A3EE11C7ABCA5B42A93C4866_B7ROVN15KC_1696425892.6583\",\"due_date\":\"2023-10-04T20:24:56-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"Robles Lomas\",\"email\":\"srobleslomas@hotmail.com\",\"phone_number\":\"3125036629\",\"address\":null,\"creation_date\":\"2023-10-04T08:24:56-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 13:30:15','2023-10-04 13:30:15'),(9857,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T08:59:54-05:00\",\"transaction\":{\"id\":\"tr8y8qj7wpj31t0zv8ae\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T08:59:09-05:00\",\"operation_date\":\"2023-10-04T08:59:09-05:00\",\"description\":\"Pago Mensual academia: santiago blandon gomez (1021927796)\",\"error_message\":null,\"order_id\":\"F2C3B258E9CD8BA16E18F319B3C88C66_MKX4R1WNPT_1696427946.0175\",\"due_date\":\"2023-10-04T20:59:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"santiago\",\"last_name\":\"blandon gomez\",\"email\":\"marcegchava29@gmail.com\",\"phone_number\":\"3043515784\",\"address\":null,\"creation_date\":\"2023-10-04T08:59:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8y8qj7wpj31t0zv8ae/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 13:59:54','2023-10-04 13:59:54'),(9858,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T09:01:40-05:00\",\"transaction\":{\"id\":\"tr8y8qj7wpj31t0zv8ae\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199339441\",\"creation_date\":\"2023-10-04T08:59:09-05:00\",\"operation_date\":\"2023-10-04T09:00:58-05:00\",\"description\":\"Pago Mensual academia: santiago blandon gomez (1021927796)\",\"error_message\":null,\"order_id\":\"F2C3B258E9CD8BA16E18F319B3C88C66_MKX4R1WNPT_1696427946.0175\",\"due_date\":\"2023-10-04T20:59:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"santiago\",\"last_name\":\"blandon gomez\",\"email\":\"marcegchava29@gmail.com\",\"phone_number\":\"3043515784\",\"address\":null,\"creation_date\":\"2023-10-04T08:59:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 14:01:41','2023-10-04 14:01:41'),(9859,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T09:05:16-05:00\",\"transaction\":{\"id\":\"trwelqawmlktf32ag2if\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T09:04:09-05:00\",\"operation_date\":\"2023-10-04T09:04:09-05:00\",\"description\":\"Pago Mensual academia: alejandro velez mejia (1039470692)\",\"error_message\":null,\"order_id\":\"40CCCAD2AC57C29035A432356F3C978D_FPG7D0M1R5_1696428222.2459\",\"due_date\":\"2023-10-04T21:04:09-05:00\",\"amount\":116130.00,\"customer\":{\"name\":\"carolina\",\"last_name\":\"mejia carvajal\",\"email\":\"carolinamejia899@gmail.com\",\"phone_number\":\"3147512837\",\"address\":null,\"creation_date\":\"2023-10-04T09:04:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwelqawmlktf32ag2if/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 14:05:16','2023-10-04 14:05:16'),(9860,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T09:16:37-05:00\",\"transaction\":{\"id\":\"trxxmeqtwhmrr8wcis9o\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T09:15:08-05:00\",\"operation_date\":\"2023-10-04T09:15:08-05:00\",\"description\":\"Pago Mensual academia: Emmanuel David Rincon Flores (1091374399)\",\"error_message\":null,\"order_id\":\"DA6CB383F8F9E58F2C8AF88A8C0EB65E_J0QYZGR6PS_1696428902.5887\",\"due_date\":\"2023-10-04T21:15:08-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Eddy\",\"last_name\":\"Flores\",\"email\":\"kari.fores.rivera@gmail.com\",\"phone_number\":\"3505776171\",\"address\":null,\"creation_date\":\"2023-10-04T09:15:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxxmeqtwhmrr8wcis9o/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 14:16:37','2023-10-04 14:16:37'),(9861,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T09:17:22-05:00\",\"transaction\":{\"id\":\"trxxmeqtwhmrr8wcis9o\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199384845\",\"creation_date\":\"2023-10-04T09:15:08-05:00\",\"operation_date\":\"2023-10-04T09:17:17-05:00\",\"description\":\"Pago Mensual academia: Emmanuel David Rincon Flores (1091374399)\",\"error_message\":null,\"order_id\":\"DA6CB383F8F9E58F2C8AF88A8C0EB65E_J0QYZGR6PS_1696428902.5887\",\"due_date\":\"2023-10-04T21:15:08-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Eddy\",\"last_name\":\"Flores\",\"email\":\"kari.fores.rivera@gmail.com\",\"phone_number\":\"3505776171\",\"address\":null,\"creation_date\":\"2023-10-04T09:15:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 14:17:23','2023-10-04 14:17:23'),(9862,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  852\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-04T08:27:13-06:00\",\"transaction\":{\"id\":\"trwelqawmlktf32ag2if\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-04T09:04:09-06:00\",\"operation_date\":\"2023-10-04T08:05:24-06:00\",\"description\":\"Pago Mensual academia: alejandro velez mejia (1039470692)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"40CCCAD2AC57C29035A432356F3C978D_FPG7D0M1R5_1696428222.2459\",\"due_date\":\"2023-10-04T21:04:09-06:00\",\"error_code\":1007,\"amount\":116130.00,\"customer\":{\"name\":\"carolina\",\"last_name\":\"mejia carvajal\",\"email\":\"carolinamejia899@gmail.com\",\"phone_number\":\"3147512837\",\"address\":null,\"creation_date\":\"2023-10-04T09:04:09-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 14:27:13','2023-10-04 14:27:13'),(9863,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T10:23:14-05:00\",\"transaction\":{\"id\":\"tr4u1feitkaivnitpdmy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T10:21:49-05:00\",\"operation_date\":\"2023-10-04T10:21:49-05:00\",\"description\":\"Pago Mensual academia: Mateo Andres Montoya Quinchia (1021808921)\",\"error_message\":null,\"order_id\":\"583CF6A4542809A64AD14586EC00EBE0_NY2F4DPWJK_1696432899.9905\",\"due_date\":\"2023-10-04T22:21:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Arisbey\",\"last_name\":\"Montoya Llanos\",\"email\":\"aris.80llanos@gmail.com\",\"phone_number\":\"3158109825\",\"address\":null,\"creation_date\":\"2023-10-04T10:21:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr4u1feitkaivnitpdmy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 15:23:14','2023-10-04 15:23:14'),(9864,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T10:23:15-05:00\",\"transaction\":{\"id\":\"trzver5cgqeylnlsika9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-04T10:23:15-05:00\",\"operation_date\":\"2023-10-04T10:23:15-05:00\",\"description\":\"Pago Mensual academia: Mattias David Henao Vasquez (1155713038)\",\"error_message\":null,\"order_id\":\"A546203962B88771BB06FAF8D6EC065E_LECZU8G231_1696432989.5149\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"vasquez bustos\",\"email\":\"sarawac@hotmail.com\",\"phone_number\":\"3004331580\",\"address\":null,\"creation_date\":\"2023-10-04T10:23:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzver5cgqeylnlsika9/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-04 15:23:15','2023-10-04 15:23:15'),(9865,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T09:24:42-06:00\",\"transaction\":{\"id\":\"tr4u1feitkaivnitpdmy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199571354\",\"creation_date\":\"2023-10-04T10:21:49-06:00\",\"operation_date\":\"2023-10-04T09:24:36-06:00\",\"description\":\"Pago Mensual academia: Mateo Andres Montoya Quinchia (1021808921)\",\"error_message\":null,\"order_id\":\"583CF6A4542809A64AD14586EC00EBE0_NY2F4DPWJK_1696432899.9905\",\"due_date\":\"2023-10-04T22:21:49-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Arisbey\",\"last_name\":\"Montoya Llanos\",\"email\":\"aris.80llanos@gmail.com\",\"phone_number\":\"3158109825\",\"address\":null,\"creation_date\":\"2023-10-04T10:21:49-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 15:24:43','2023-10-04 15:24:43'),(9866,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T10:26:53-05:00\",\"transaction\":{\"id\":\"trzlxdqnlz4mqpfxvt3t\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T09:54:08-05:00\",\"operation_date\":\"2023-10-04T09:54:08-05:00\",\"description\":\"Pago Mensual academia: samuel henao valencia (1017938015)\",\"error_message\":null,\"order_id\":\"672D30AB508237AC28B92C3472C56688_XBLOFG7DYJ_1696431241.9694\",\"due_date\":\"2023-10-04T21:54:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maria\",\"last_name\":\"valencia\",\"email\":\"tatica2784@hotmail.com\",\"phone_number\":\"3147413566\",\"address\":null,\"creation_date\":\"2023-10-04T09:54:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzlxdqnlz4mqpfxvt3t/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 15:26:53','2023-10-04 15:26:53'),(9867,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T10:28:29-05:00\",\"transaction\":{\"id\":\"trzlxdqnlz4mqpfxvt3t\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199582194\",\"creation_date\":\"2023-10-04T09:54:08-05:00\",\"operation_date\":\"2023-10-04T10:28:01-05:00\",\"description\":\"Pago Mensual academia: samuel henao valencia (1017938015)\",\"error_message\":null,\"order_id\":\"672D30AB508237AC28B92C3472C56688_XBLOFG7DYJ_1696431241.9694\",\"due_date\":\"2023-10-04T21:54:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"maria\",\"last_name\":\"valencia\",\"email\":\"tatica2784@hotmail.com\",\"phone_number\":\"3147413566\",\"address\":null,\"creation_date\":\"2023-10-04T09:54:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 15:28:29','2023-10-04 15:28:29'),(9868,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  901\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T11:18:30-05:00\",\"transaction\":{\"id\":\"trzfsoqv4jdzoaygbub9\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-04T11:18:30-05:00\",\"operation_date\":\"2023-10-04T11:18:30-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Rojas Madrid (1011401910)\",\"error_message\":null,\"order_id\":\"61F3A6DBC9120EA78EF75544826C814E_RTW3NAVL1Y_1696436307.5812\",\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"Rojas Madrid\",\"email\":\"meridafergus201@gmail.com\",\"phone_number\":\"3203306007\",\"address\":null,\"creation_date\":\"2023-10-04T11:18:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzfsoqv4jdzoaygbub9/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-04 16:18:31','2023-10-04 16:18:31'),(9869,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T11:18:35-05:00\",\"transaction\":{\"id\":\"trv0tqb6gznnkxc6vy73\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T11:17:09-05:00\",\"operation_date\":\"2023-10-04T11:17:09-05:00\",\"description\":\"Pago Mensual academia: Nicolas Fernandez Valencia (1033194060)\",\"error_message\":null,\"order_id\":\"FEADE1D2047977CD0CEFDAFC40175A99_BZS5K3WOGL_1696436223.6023\",\"due_date\":\"2023-10-04T23:17:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Fernandez\",\"email\":\"jugrefe69@yahoo.es\",\"phone_number\":\"3117629791\",\"address\":null,\"creation_date\":\"2023-10-04T11:17:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trv0tqb6gznnkxc6vy73/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 16:18:36','2023-10-04 16:18:36'),(9870,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T11:20:45-05:00\",\"transaction\":{\"id\":\"trvy69k9vrdkrxyjbta1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-04T11:20:45-05:00\",\"operation_date\":\"2023-10-04T11:20:45-05:00\",\"description\":\"Pago Mensual academia: Cristobal Giraldo Ospina (1034993085)\",\"error_message\":null,\"order_id\":\"F291E10EC3263BD7724556D62E70E25D_PXNE9RQTML_1696436442.8922\",\"amount\":165900.00,\"customer\":{\"name\":\"Cristobal\",\"last_name\":\"Giraldo Ospina\",\"email\":\"carospina@hotmail.com\",\"phone_number\":\"3173659297\",\"address\":null,\"creation_date\":\"2023-10-04T11:20:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvy69k9vrdkrxyjbta1/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-04 16:20:46','2023-10-04 16:20:46'),(9871,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T10:21:16-06:00\",\"transaction\":{\"id\":\"trv0tqb6gznnkxc6vy73\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199741368\",\"creation_date\":\"2023-10-04T11:17:09-06:00\",\"operation_date\":\"2023-10-04T10:19:48-06:00\",\"description\":\"Pago Mensual academia: Nicolas Fernandez Valencia (1033194060)\",\"error_message\":null,\"order_id\":\"FEADE1D2047977CD0CEFDAFC40175A99_BZS5K3WOGL_1696436223.6023\",\"due_date\":\"2023-10-04T23:17:09-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Fernandez\",\"email\":\"jugrefe69@yahoo.es\",\"phone_number\":\"3117629791\",\"address\":null,\"creation_date\":\"2023-10-04T11:17:09-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 16:21:17','2023-10-04 16:21:17'),(9872,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1159\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T11:21:56-05:00\",\"transaction\":{\"id\":\"trvy69k9vrdkrxyjbta1\",\"authorization\":\"R04500\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-04T11:20:45-05:00\",\"operation_date\":\"2023-10-04T11:21:55-05:00\",\"description\":\"Pago Mensual academia: Cristobal Giraldo Ospina (1034993085)\",\"error_message\":null,\"order_id\":\"F291E10EC3263BD7724556D62E70E25D_PXNE9RQTML_1696436442.8922\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX5122\",\"holder_name\":\"LIZ CAROLINA OSPINA GOMEZ\",\"expiration_year\":\"26\",\"expiration_month\":\"05\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Cristobal\",\"last_name\":\"Giraldo Ospina\",\"email\":\"carospina@hotmail.com\",\"phone_number\":\"3173659297\",\"address\":null,\"creation_date\":\"2023-10-04T11:20:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvy69k9vrdkrxyjbta1/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-04 16:21:57','2023-10-04 16:21:57'),(9873,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1152\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T11:24:02-05:00\",\"transaction\":{\"id\":\"trzfsoqv4jdzoaygbub9\",\"authorization\":\"112402\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-04T11:18:30-05:00\",\"operation_date\":\"2023-10-04T11:24:01-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Rojas Madrid (1011401910)\",\"error_message\":null,\"order_id\":\"61F3A6DBC9120EA78EF75544826C814E_RTW3NAVL1Y_1696436307.5812\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX2264\",\"holder_name\":\"Carolina Rojas\",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"Rojas Madrid\",\"email\":\"meridafergus201@gmail.com\",\"phone_number\":\"3203306007\",\"address\":null,\"creation_date\":\"2023-10-04T11:18:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzfsoqv4jdzoaygbub9/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-04 16:24:03','2023-10-04 16:24:03'),(9874,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T10:24:17-06:00\",\"transaction\":{\"id\":\"trv0tqb6gznnkxc6vy73\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199741368\",\"creation_date\":\"2023-10-04T11:17:09-06:00\",\"operation_date\":\"2023-10-04T10:19:48-06:00\",\"description\":\"Pago Mensual academia: Nicolas Fernandez Valencia (1033194060)\",\"error_message\":null,\"order_id\":\"FEADE1D2047977CD0CEFDAFC40175A99_BZS5K3WOGL_1696436223.6023\",\"due_date\":\"2023-10-04T23:17:09-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Nicolas\",\"last_name\":\"Fernandez\",\"email\":\"jugrefe69@yahoo.es\",\"phone_number\":\"3117629791\",\"address\":null,\"creation_date\":\"2023-10-04T11:17:09-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 16:24:18','2023-10-04 16:24:18'),(9875,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  901\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T11:25:43-05:00\",\"transaction\":{\"id\":\"trxsrd4jxv3x0qgfuhjh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-04T11:25:43-05:00\",\"operation_date\":\"2023-10-04T11:25:43-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Rojas Madrid (1011401910)\",\"error_message\":null,\"order_id\":\"1F5E7F2748ADABF08629A6312AC3BFDD_YC8XHV4MQB_1696436738.6844\",\"amount\":165900.00,\"customer\":{\"name\":\"Miguel Angel\",\"last_name\":\"Rojas Madrid\",\"email\":\"meridafergus201@gmail.com\",\"phone_number\":\"3203306007\",\"address\":null,\"creation_date\":\"2023-10-04T11:25:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxsrd4jxv3x0qgfuhjh/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-04 16:25:44','2023-10-04 16:25:44'),(9876,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T11:27:54-05:00\",\"transaction\":{\"id\":\"trkzivn8zcqebvxqg99p\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T11:26:59-05:00\",\"operation_date\":\"2023-10-04T11:26:59-05:00\",\"description\":\"Pago Mensual academia: Matias Guzman Montoya (1034995159)\",\"error_message\":null,\"order_id\":\"2000F6325DFC4FC3201FC45ED01C7A5D_M06DQ94NBL_1696436816.9088\",\"due_date\":\"2023-10-04T23:26:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Doris\",\"last_name\":\"Montoya\",\"email\":\"dorismontoya36@gmail.com\",\"phone_number\":\"3163210575\",\"address\":null,\"creation_date\":\"2023-10-04T11:26:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkzivn8zcqebvxqg99p/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 16:27:55','2023-10-04 16:27:55'),(9877,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T11:29:18-05:00\",\"transaction\":{\"id\":\"trkzivn8zcqebvxqg99p\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199772086\",\"creation_date\":\"2023-10-04T11:26:59-05:00\",\"operation_date\":\"2023-10-04T11:29:04-05:00\",\"description\":\"Pago Mensual academia: Matias Guzman Montoya (1034995159)\",\"error_message\":null,\"order_id\":\"2000F6325DFC4FC3201FC45ED01C7A5D_M06DQ94NBL_1696436816.9088\",\"due_date\":\"2023-10-04T23:26:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Doris\",\"last_name\":\"Montoya\",\"email\":\"dorismontoya36@gmail.com\",\"phone_number\":\"3163210575\",\"address\":null,\"creation_date\":\"2023-10-04T11:26:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 16:29:18','2023-10-04 16:29:18'),(9878,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T11:36:19-05:00\",\"transaction\":{\"id\":\"trmkdlqd2ud4dy7rmpym\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T11:35:47-05:00\",\"operation_date\":\"2023-10-04T11:35:47-05:00\",\"description\":\"Pago Mensual academia: DESMOND ARTEAGA PIEDRAHITA (1023561363)\",\"error_message\":null,\"order_id\":\"3C7417B8DF0DAF23F39F445E740C7A43_OBX12NS57J_1696437343.6233\",\"due_date\":\"2023-10-04T23:35:47-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maicol\",\"last_name\":\"Arreaga\",\"email\":\"londonmay777@hotmail.com\",\"phone_number\":\"3173181519\",\"address\":null,\"creation_date\":\"2023-10-04T11:35:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmkdlqd2ud4dy7rmpym/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 16:36:20','2023-10-04 16:36:20'),(9879,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T11:37:03-05:00\",\"transaction\":{\"id\":\"trmkdlqd2ud4dy7rmpym\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199799816\",\"creation_date\":\"2023-10-04T11:35:47-05:00\",\"operation_date\":\"2023-10-04T11:36:58-05:00\",\"description\":\"Pago Mensual academia: DESMOND ARTEAGA PIEDRAHITA (1023561363)\",\"error_message\":null,\"order_id\":\"3C7417B8DF0DAF23F39F445E740C7A43_OBX12NS57J_1696437343.6233\",\"due_date\":\"2023-10-04T23:35:47-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maicol\",\"last_name\":\"Arreaga\",\"email\":\"londonmay777@hotmail.com\",\"phone_number\":\"3173181519\",\"address\":null,\"creation_date\":\"2023-10-04T11:35:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 16:37:03','2023-10-04 16:37:03'),(9880,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T11:38:46-05:00\",\"transaction\":{\"id\":\"tremj05xg8idyj5mpbp0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T11:38:10-05:00\",\"operation_date\":\"2023-10-04T11:38:10-05:00\",\"description\":\"Pago Mensual academia: DESMOND ARTEAGA PIEDRAHITA (1023561363)\",\"error_message\":null,\"order_id\":\"E8AAC01231200E7EF318B9DB75C72695_83WARMEN24_1696437488.6438\",\"due_date\":\"2023-10-04T23:38:10-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maicol\",\"last_name\":\"Arreaga\",\"email\":\"londonmay777@hotmail.com\",\"phone_number\":\"3173181519\",\"address\":null,\"creation_date\":\"2023-10-04T11:38:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tremj05xg8idyj5mpbp0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 16:38:46','2023-10-04 16:38:46'),(9881,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T11:39:25-05:00\",\"transaction\":{\"id\":\"tremj05xg8idyj5mpbp0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199807916\",\"creation_date\":\"2023-10-04T11:38:10-05:00\",\"operation_date\":\"2023-10-04T11:39:19-05:00\",\"description\":\"Pago Mensual academia: DESMOND ARTEAGA PIEDRAHITA (1023561363)\",\"error_message\":null,\"order_id\":\"E8AAC01231200E7EF318B9DB75C72695_83WARMEN24_1696437488.6438\",\"due_date\":\"2023-10-04T23:38:10-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Maicol\",\"last_name\":\"Arreaga\",\"email\":\"londonmay777@hotmail.com\",\"phone_number\":\"3173181519\",\"address\":null,\"creation_date\":\"2023-10-04T11:38:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 16:39:26','2023-10-04 16:39:26'),(9882,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  907\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T11:45:51-05:00\",\"transaction\":{\"id\":\"trqyvokwkeeg3hxfzd86\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-04T11:45:51-05:00\",\"operation_date\":\"2023-10-04T11:45:51-05:00\",\"description\":\"Pago Mensual academia: martin leandro carreño yepes (1038265937)\",\"error_message\":null,\"order_id\":\"E02A35B1563D0DB53486EC068EBAB80F_3MN52VOCL6_1696437946.5171\",\"amount\":165900.00,\"customer\":{\"name\":\"luisa fernanda\",\"last_name\":\"yepes martinez\",\"email\":\"luisita_859@hotmail.com\",\"phone_number\":\"3502908182\",\"address\":null,\"creation_date\":\"2023-10-04T11:45:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqyvokwkeeg3hxfzd86/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-04 16:45:51','2023-10-04 16:45:51'),(9883,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1230\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T11:47:49-05:00\",\"transaction\":{\"id\":\"trqyvokwkeeg3hxfzd86\",\"authorization\":\"114748\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":5,\"conciliated\":true,\"creation_date\":\"2023-10-04T11:45:51-05:00\",\"operation_date\":\"2023-10-04T11:47:48-05:00\",\"description\":\"Pago Mensual academia: martin leandro carreño yepes (1038265937)\",\"error_message\":null,\"order_id\":\"E02A35B1563D0DB53486EC068EBAB80F_3MN52VOCL6_1696437946.5171\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"491646XXXXXX4363\",\"holder_name\":\"Luisa yepes \",\"expiration_year\":\"26\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":5,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"luisa fernanda\",\"last_name\":\"yepes martinez\",\"email\":\"luisita_859@hotmail.com\",\"phone_number\":\"3502908182\",\"address\":null,\"creation_date\":\"2023-10-04T11:45:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqyvokwkeeg3hxfzd86/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-04 16:47:49','2023-10-04 16:47:49'),(9884,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T12:38:23-05:00\",\"transaction\":{\"id\":\"tr49cnlr7q0ugfbzeywt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T12:36:52-05:00\",\"operation_date\":\"2023-10-04T12:36:52-05:00\",\"description\":\"Pago Mensual academia: Juan Luis Mesa Ocampo (1038264356)\",\"error_message\":null,\"order_id\":\"64B3EC1FDFACEAD70C3A9BD77D824306_G4E092VAXI_1696441008.449\",\"due_date\":\"2023-10-05T00:36:52-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dora\",\"last_name\":\"Ocampo Castaño\",\"email\":\"docampoc@yahoo.com\",\"phone_number\":\"3223520331\",\"address\":null,\"creation_date\":\"2023-10-04T12:36:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr49cnlr7q0ugfbzeywt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 17:38:23','2023-10-04 17:38:23'),(9885,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T11:39:36-06:00\",\"transaction\":{\"id\":\"tr49cnlr7q0ugfbzeywt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"199982730\",\"creation_date\":\"2023-10-04T12:36:52-06:00\",\"operation_date\":\"2023-10-04T11:39:11-06:00\",\"description\":\"Pago Mensual academia: Juan Luis Mesa Ocampo (1038264356)\",\"error_message\":null,\"order_id\":\"64B3EC1FDFACEAD70C3A9BD77D824306_G4E092VAXI_1696441008.449\",\"due_date\":\"2023-10-05T00:36:52-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Dora\",\"last_name\":\"Ocampo Castaño\",\"email\":\"docampoc@yahoo.com\",\"phone_number\":\"3223520331\",\"address\":null,\"creation_date\":\"2023-10-04T12:36:52-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 17:39:37','2023-10-04 17:39:37'),(9886,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T13:14:31-05:00\",\"transaction\":{\"id\":\"tr3rvzbpn8yfko6acbje\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T13:13:44-05:00\",\"operation_date\":\"2023-10-04T13:13:44-05:00\",\"description\":\"Pago Mensual academia: isaac marin chica (1033270352)\",\"error_message\":null,\"order_id\":\"475D66314DC56A0DF8FB8F7C5DBBAF78_HKG472YND6_1696443221.7065\",\"due_date\":\"2023-10-05T01:13:44-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"oscar\",\"last_name\":\"marin carvajal\",\"email\":\"marinozkar20@gmail.com\",\"phone_number\":\"3015171110\",\"address\":null,\"creation_date\":\"2023-10-04T13:13:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3rvzbpn8yfko6acbje/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:14:32','2023-10-04 18:14:32'),(9887,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T12:18:30-06:00\",\"transaction\":{\"id\":\"tr3rvzbpn8yfko6acbje\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200078590\",\"creation_date\":\"2023-10-04T13:13:44-06:00\",\"operation_date\":\"2023-10-04T12:16:23-06:00\",\"description\":\"Pago Mensual academia: isaac marin chica (1033270352)\",\"error_message\":null,\"order_id\":\"475D66314DC56A0DF8FB8F7C5DBBAF78_HKG472YND6_1696443221.7065\",\"due_date\":\"2023-10-05T01:13:44-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"oscar\",\"last_name\":\"marin carvajal\",\"email\":\"marinozkar20@gmail.com\",\"phone_number\":\"3015171110\",\"address\":null,\"creation_date\":\"2023-10-04T13:13:44-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:18:30','2023-10-04 18:18:30'),(9888,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T13:37:54-05:00\",\"transaction\":{\"id\":\"tr7xajwe57qhydhqyhkw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T13:36:08-05:00\",\"operation_date\":\"2023-10-04T13:36:08-05:00\",\"description\":\"Pago Mensual academia: Arturo Perez Quiroz (1035001151)\",\"error_message\":null,\"order_id\":\"A6D5AB67798F3A675DC50C1D5B6C03D4_SG1OYT5BC2_1696444561.4937\",\"due_date\":\"2023-10-05T01:36:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-10-04T13:36:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7xajwe57qhydhqyhkw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:37:55','2023-10-04 18:37:55'),(9889,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T13:41:36-05:00\",\"transaction\":{\"id\":\"tr7xajwe57qhydhqyhkw\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200140956\",\"creation_date\":\"2023-10-04T13:36:08-05:00\",\"operation_date\":\"2023-10-04T13:39:57-05:00\",\"description\":\"Pago Mensual academia: Arturo Perez Quiroz (1035001151)\",\"error_message\":null,\"order_id\":\"A6D5AB67798F3A675DC50C1D5B6C03D4_SG1OYT5BC2_1696444561.4937\",\"due_date\":\"2023-10-05T01:36:08-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-10-04T13:36:08-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:41:37','2023-10-04 18:41:37'),(9890,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T13:46:50-05:00\",\"transaction\":{\"id\":\"tr5kuyzam3gb55dogpi6\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T13:46:02-05:00\",\"operation_date\":\"2023-10-04T13:46:02-05:00\",\"description\":\"Pago Mensual academia: Gonzalo Perez Quiroz (1023533427)\",\"error_message\":null,\"order_id\":\"244EDD7E85DC81602B7615CD705545F5_E72QRV8DMA_1696445151.0851\",\"due_date\":\"2023-10-05T01:46:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-10-04T13:46:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5kuyzam3gb55dogpi6/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:46:50','2023-10-04 18:46:50'),(9891,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T13:48:00-05:00\",\"transaction\":{\"id\":\"trs9uuuvszswvgeidwit\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T13:47:27-05:00\",\"operation_date\":\"2023-10-04T13:47:27-05:00\",\"description\":\"Pago Mensual academia: Juan Angel Gallego Pardo (1020412248)\",\"error_message\":null,\"order_id\":\"D8A4E572D866AA45DA78418D9D2FF9F9_HWDIXB4SJN_1696445244.0342\",\"due_date\":\"2023-10-05T01:47:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sindy\",\"last_name\":\"pardo\",\"email\":\"sindypardozapata@gmail.com\",\"phone_number\":\"3015734373\",\"address\":null,\"creation_date\":\"2023-10-04T13:47:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trs9uuuvszswvgeidwit/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:48:00','2023-10-04 18:48:00'),(9892,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T12:48:42-06:00\",\"transaction\":{\"id\":\"tr5kuyzam3gb55dogpi6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200165374\",\"creation_date\":\"2023-10-04T13:46:02-06:00\",\"operation_date\":\"2023-10-04T12:48:22-06:00\",\"description\":\"Pago Mensual academia: Gonzalo Perez Quiroz (1023533427)\",\"error_message\":null,\"order_id\":\"244EDD7E85DC81602B7615CD705545F5_E72QRV8DMA_1696445151.0851\",\"due_date\":\"2023-10-05T01:46:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-10-04T13:46:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:48:43','2023-10-04 18:48:43'),(9893,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T13:51:31-05:00\",\"transaction\":{\"id\":\"tru0jf5g1a6qtvvehypf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T13:50:19-05:00\",\"operation_date\":\"2023-10-04T13:50:19-05:00\",\"description\":\"Pago Mensual academia: sara López betancur (1020315986)\",\"error_message\":null,\"order_id\":\"B8599B9343F82E3BC30984CA4F3FEA3F_IROWAJ4XZC_1696445410.6456\",\"due_date\":\"2023-10-05T01:50:19-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Angela María\",\"last_name\":\"betancur ospina\",\"email\":\"angelabetancur.7@hotmail.com\",\"phone_number\":\"3053911750\",\"address\":null,\"creation_date\":\"2023-10-04T13:50:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tru0jf5g1a6qtvvehypf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:51:32','2023-10-04 18:51:32'),(9894,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T12:51:32-06:00\",\"transaction\":{\"id\":\"tr5kuyzam3gb55dogpi6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200165374\",\"creation_date\":\"2023-10-04T13:46:02-06:00\",\"operation_date\":\"2023-10-04T12:48:22-06:00\",\"description\":\"Pago Mensual academia: Gonzalo Perez Quiroz (1023533427)\",\"error_message\":null,\"order_id\":\"244EDD7E85DC81602B7615CD705545F5_E72QRV8DMA_1696445151.0851\",\"due_date\":\"2023-10-05T01:46:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-10-04T13:46:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:51:32','2023-10-04 18:51:32'),(9895,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T12:51:38-06:00\",\"transaction\":{\"id\":\"trs9uuuvszswvgeidwit\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200168542\",\"creation_date\":\"2023-10-04T13:47:27-06:00\",\"operation_date\":\"2023-10-04T12:48:46-06:00\",\"description\":\"Pago Mensual academia: Juan Angel Gallego Pardo (1020412248)\",\"error_message\":null,\"order_id\":\"D8A4E572D866AA45DA78418D9D2FF9F9_HWDIXB4SJN_1696445244.0342\",\"due_date\":\"2023-10-05T01:47:27-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sindy\",\"last_name\":\"pardo\",\"email\":\"sindypardozapata@gmail.com\",\"phone_number\":\"3015734373\",\"address\":null,\"creation_date\":\"2023-10-04T13:47:27-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:51:39','2023-10-04 18:51:39'),(9896,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T13:53:47-05:00\",\"transaction\":{\"id\":\"tru0jf5g1a6qtvvehypf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200178817\",\"creation_date\":\"2023-10-04T13:50:19-05:00\",\"operation_date\":\"2023-10-04T13:53:29-05:00\",\"description\":\"Pago Mensual academia: sara López betancur (1020315986)\",\"error_message\":null,\"order_id\":\"B8599B9343F82E3BC30984CA4F3FEA3F_IROWAJ4XZC_1696445410.6456\",\"due_date\":\"2023-10-05T01:50:19-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Angela María\",\"last_name\":\"betancur ospina\",\"email\":\"angelabetancur.7@hotmail.com\",\"phone_number\":\"3053911750\",\"address\":null,\"creation_date\":\"2023-10-04T13:50:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:53:48','2023-10-04 18:53:48'),(9897,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T12:54:26-06:00\",\"transaction\":{\"id\":\"tr5kuyzam3gb55dogpi6\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200165374\",\"creation_date\":\"2023-10-04T13:46:02-06:00\",\"operation_date\":\"2023-10-04T12:48:22-06:00\",\"description\":\"Pago Mensual academia: Gonzalo Perez Quiroz (1023533427)\",\"error_message\":null,\"order_id\":\"244EDD7E85DC81602B7615CD705545F5_E72QRV8DMA_1696445151.0851\",\"due_date\":\"2023-10-05T01:46:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Sandra Milena\",\"last_name\":\"Quiroz Villa\",\"email\":\"samilqui@gmail.com\",\"phone_number\":\"3184277851\",\"address\":null,\"creation_date\":\"2023-10-04T13:46:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:54:26','2023-10-04 18:54:26'),(9898,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T12:54:31-06:00\",\"transaction\":{\"id\":\"trs9uuuvszswvgeidwit\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200168542\",\"creation_date\":\"2023-10-04T13:47:27-06:00\",\"operation_date\":\"2023-10-04T12:48:46-06:00\",\"description\":\"Pago Mensual academia: Juan Angel Gallego Pardo (1020412248)\",\"error_message\":null,\"order_id\":\"D8A4E572D866AA45DA78418D9D2FF9F9_HWDIXB4SJN_1696445244.0342\",\"due_date\":\"2023-10-05T01:47:27-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sindy\",\"last_name\":\"pardo\",\"email\":\"sindypardozapata@gmail.com\",\"phone_number\":\"3015734373\",\"address\":null,\"creation_date\":\"2023-10-04T13:47:27-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 18:54:31','2023-10-04 18:54:31'),(9899,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T14:23:35-05:00\",\"transaction\":{\"id\":\"trlcbekszuyswnquom6c\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T14:21:42-05:00\",\"operation_date\":\"2023-10-04T14:21:42-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Duque Alvarez (1033189257)\",\"error_message\":null,\"order_id\":\"48A79BCF6049AD894EF98CBC17AFEC96_8SVZU0IC5O_1696447261.1456\",\"due_date\":\"2023-10-05T02:21:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eduardo\",\"last_name\":\"Duque Higuita\",\"email\":\"duqueedward@gmail.com\",\"phone_number\":\"3122383147\",\"address\":null,\"creation_date\":\"2023-10-04T14:21:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlcbekszuyswnquom6c/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 19:23:35','2023-10-04 19:23:35'),(9900,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  849\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-04T13:45:13-06:00\",\"transaction\":{\"id\":\"trlcbekszuyswnquom6c\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-04T14:21:42-06:00\",\"operation_date\":\"2023-10-04T13:23:50-06:00\",\"description\":\"Pago Mensual academia: Jose Miguel Duque Alvarez (1033189257)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"48A79BCF6049AD894EF98CBC17AFEC96_8SVZU0IC5O_1696447261.1456\",\"due_date\":\"2023-10-05T02:21:42-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Eduardo\",\"last_name\":\"Duque Higuita\",\"email\":\"duqueedward@gmail.com\",\"phone_number\":\"3122383147\",\"address\":null,\"creation_date\":\"2023-10-04T14:21:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 19:45:13','2023-10-04 19:45:13'),(9901,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  849\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-04T13:48:10-06:00\",\"transaction\":{\"id\":\"trlcbekszuyswnquom6c\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-04T14:21:42-06:00\",\"operation_date\":\"2023-10-04T13:23:50-06:00\",\"description\":\"Pago Mensual academia: Jose Miguel Duque Alvarez (1033189257)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"48A79BCF6049AD894EF98CBC17AFEC96_8SVZU0IC5O_1696447261.1456\",\"due_date\":\"2023-10-05T02:21:42-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Eduardo\",\"last_name\":\"Duque Higuita\",\"email\":\"duqueedward@gmail.com\",\"phone_number\":\"3122383147\",\"address\":null,\"creation_date\":\"2023-10-04T14:21:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 19:48:11','2023-10-04 19:48:11'),(9902,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T15:10:25-05:00\",\"transaction\":{\"id\":\"trf8mnrdyll0kaj1v9kq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T15:08:48-05:00\",\"operation_date\":\"2023-10-04T15:08:48-05:00\",\"description\":\"Pago Mensual academia: Pablo Angulo Suárez (1035013017)\",\"error_message\":null,\"order_id\":\"46D0671DD4117EA366031F87F3AA0093_QOIF6J51TY_1696450123.2204\",\"due_date\":\"2023-10-05T03:08:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"María Angélica\",\"last_name\":\"Suárez Rodas\",\"email\":\"mangelicasr2@gmail.com\",\"phone_number\":\"3104569577\",\"address\":null,\"creation_date\":\"2023-10-04T15:08:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trf8mnrdyll0kaj1v9kq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 20:10:25','2023-10-04 20:10:25'),(9903,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T14:12:39-06:00\",\"transaction\":{\"id\":\"trf8mnrdyll0kaj1v9kq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200398995\",\"creation_date\":\"2023-10-04T15:08:48-06:00\",\"operation_date\":\"2023-10-04T14:12:05-06:00\",\"description\":\"Pago Mensual academia: Pablo Angulo Suárez (1035013017)\",\"error_message\":null,\"order_id\":\"46D0671DD4117EA366031F87F3AA0093_QOIF6J51TY_1696450123.2204\",\"due_date\":\"2023-10-05T03:08:48-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"María Angélica\",\"last_name\":\"Suárez Rodas\",\"email\":\"mangelicasr2@gmail.com\",\"phone_number\":\"3104569577\",\"address\":null,\"creation_date\":\"2023-10-04T15:08:48-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 20:12:39','2023-10-04 20:12:39'),(9904,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T16:05:31-05:00\",\"transaction\":{\"id\":\"trl5ab7kqmqezgvhaczb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T16:04:54-05:00\",\"operation_date\":\"2023-10-04T16:04:54-05:00\",\"description\":\"Pago Mensual academia: Gabriel Serna Congote (1239489821)\",\"error_message\":null,\"order_id\":\"8710EF761BBB29A6F9D12E4EF8E4379C_U6HY3QSVW4_1696453487.6255\",\"due_date\":\"2023-10-05T04:04:54-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Gabriel\",\"last_name\":\"Serna congote\",\"email\":\"odserna32@hotmail.com\",\"phone_number\":\"3104933364\",\"address\":null,\"creation_date\":\"2023-10-04T16:04:54-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trl5ab7kqmqezgvhaczb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 21:05:31','2023-10-04 21:05:31'),(9905,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T16:06:27-05:00\",\"transaction\":{\"id\":\"trl5ab7kqmqezgvhaczb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200557320\",\"creation_date\":\"2023-10-04T16:04:54-05:00\",\"operation_date\":\"2023-10-04T16:06:21-05:00\",\"description\":\"Pago Mensual academia: Gabriel Serna Congote (1239489821)\",\"error_message\":null,\"order_id\":\"8710EF761BBB29A6F9D12E4EF8E4379C_U6HY3QSVW4_1696453487.6255\",\"due_date\":\"2023-10-05T04:04:54-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Gabriel\",\"last_name\":\"Serna congote\",\"email\":\"odserna32@hotmail.com\",\"phone_number\":\"3104933364\",\"address\":null,\"creation_date\":\"2023-10-04T16:04:54-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 21:06:28','2023-10-04 21:06:28'),(9906,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T16:15:29-05:00\",\"transaction\":{\"id\":\"tr6ftevthqukildmhefu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-04T16:15:28-05:00\",\"operation_date\":\"2023-10-04T16:15:28-05:00\",\"description\":\"Pago Mensual academia: Tomás Ramírez Correa (1034993625)\",\"error_message\":null,\"order_id\":\"A8EF1979AEEC2737AE3830EC543ED0DF_V71DJKLNS4_1696454123.4606\",\"amount\":165900.00,\"customer\":{\"name\":\"Gloria Patricia\",\"last_name\":\"Correa Perez\",\"email\":\"patryco@hotmail.com\",\"phone_number\":\"3108252208\",\"address\":null,\"creation_date\":\"2023-10-04T16:15:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6ftevthqukildmhefu/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-04 21:15:29','2023-10-04 21:15:29'),(9907,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1149\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T16:16:51-05:00\",\"transaction\":{\"id\":\"tr6ftevthqukildmhefu\",\"authorization\":\"R05855\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-04T16:15:28-05:00\",\"operation_date\":\"2023-10-04T16:16:50-05:00\",\"description\":\"Pago Mensual academia: Tomás Ramírez Correa (1034993625)\",\"error_message\":null,\"order_id\":\"A8EF1979AEEC2737AE3830EC543ED0DF_V71DJKLNS4_1696454123.4606\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549157XXXXXX9945\",\"holder_name\":\"GLORIA CORREA P\",\"expiration_year\":\"26\",\"expiration_month\":\"10\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Gloria Patricia\",\"last_name\":\"Correa Perez\",\"email\":\"patryco@hotmail.com\",\"phone_number\":\"3108252208\",\"address\":null,\"creation_date\":\"2023-10-04T16:15:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6ftevthqukildmhefu/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-04 21:16:52','2023-10-04 21:16:52'),(9908,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  910\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T16:27:01-05:00\",\"transaction\":{\"id\":\"trc1bop9a802ii6wyejq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T16:26:09-05:00\",\"operation_date\":\"2023-10-04T16:26:09-05:00\",\"description\":\"Pago Mensual academia: Agustín Valencia Lobo (1035012790)\",\"error_message\":null,\"order_id\":\"167434FA6219316417CD4160C0C5E7D2_6U0EHWRYJO_1696454766.6538\",\"due_date\":\"2023-10-05T04:26:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Lobo\",\"email\":\"leidy240@gmail.com\",\"phone_number\":\"3012414912\",\"address\":null,\"creation_date\":\"2023-10-04T16:26:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trc1bop9a802ii6wyejq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 21:27:02','2023-10-04 21:27:02'),(9909,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  793\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T16:28:04-05:00\",\"transaction\":{\"id\":\"trc1bop9a802ii6wyejq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200619516\",\"creation_date\":\"2023-10-04T16:26:09-05:00\",\"operation_date\":\"2023-10-04T16:27:57-05:00\",\"description\":\"Pago Mensual academia: Agustín Valencia Lobo (1035012790)\",\"error_message\":null,\"order_id\":\"167434FA6219316417CD4160C0C5E7D2_6U0EHWRYJO_1696454766.6538\",\"due_date\":\"2023-10-05T04:26:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Leidy\",\"last_name\":\"Lobo\",\"email\":\"leidy240@gmail.com\",\"phone_number\":\"3012414912\",\"address\":null,\"creation_date\":\"2023-10-04T16:26:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 21:28:05','2023-10-04 21:28:05'),(9910,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T16:52:16-05:00\",\"transaction\":{\"id\":\"trrjcrrinfvhezulvidc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T16:51:45-05:00\",\"operation_date\":\"2023-10-04T16:51:45-05:00\",\"description\":\"Pago Mensual academia: Martin Sierra Carmona (1056132253)\",\"error_message\":null,\"order_id\":\"E0640C93B05097A9380870AA06AA0DF4_CYFMSI60B5_1696456302.7077\",\"due_date\":\"2023-10-05T04:51:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Sierra Marín\",\"email\":\"sierramjc@gmail.com\",\"phone_number\":\"3007544651\",\"address\":null,\"creation_date\":\"2023-10-04T16:51:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrjcrrinfvhezulvidc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 21:52:17','2023-10-04 21:52:17'),(9911,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T16:53:28-05:00\",\"transaction\":{\"id\":\"trrjcrrinfvhezulvidc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200685019\",\"creation_date\":\"2023-10-04T16:51:45-05:00\",\"operation_date\":\"2023-10-04T16:53:23-05:00\",\"description\":\"Pago Mensual academia: Martin Sierra Carmona (1056132253)\",\"error_message\":null,\"order_id\":\"E0640C93B05097A9380870AA06AA0DF4_CYFMSI60B5_1696456302.7077\",\"due_date\":\"2023-10-05T04:51:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Camilo\",\"last_name\":\"Sierra Marín\",\"email\":\"sierramjc@gmail.com\",\"phone_number\":\"3007544651\",\"address\":null,\"creation_date\":\"2023-10-04T16:51:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 21:53:29','2023-10-04 21:53:29'),(9912,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T17:10:11-05:00\",\"transaction\":{\"id\":\"tr0ddqogcvx5wcvwlp3o\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T17:06:30-05:00\",\"operation_date\":\"2023-10-04T17:06:30-05:00\",\"description\":\"Pago Mensual academia: Thomas Cañaveral Mora (1023536002)\",\"error_message\":null,\"order_id\":\"961B27CFF1F9EF4EE308BB33FE18A91A_Q7IPJTHZYV_1696457181.8289\",\"due_date\":\"2023-10-05T05:06:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"julian\",\"last_name\":\"cañaveral\",\"email\":\"julian_canaveral@hotmail.com\",\"phone_number\":\"3147101466\",\"address\":null,\"creation_date\":\"2023-10-04T17:06:30-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0ddqogcvx5wcvwlp3o/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 22:10:12','2023-10-04 22:10:12'),(9913,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T17:11:48-05:00\",\"transaction\":{\"id\":\"tr0ddqogcvx5wcvwlp3o\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200729428\",\"creation_date\":\"2023-10-04T17:06:30-05:00\",\"operation_date\":\"2023-10-04T17:11:39-05:00\",\"description\":\"Pago Mensual academia: Thomas Cañaveral Mora (1023536002)\",\"error_message\":null,\"order_id\":\"961B27CFF1F9EF4EE308BB33FE18A91A_Q7IPJTHZYV_1696457181.8289\",\"due_date\":\"2023-10-05T05:06:30-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"julian\",\"last_name\":\"cañaveral\",\"email\":\"julian_canaveral@hotmail.com\",\"phone_number\":\"3147101466\",\"address\":null,\"creation_date\":\"2023-10-04T17:06:30-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 22:11:49','2023-10-04 22:11:49'),(9914,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T18:01:08-05:00\",\"transaction\":{\"id\":\"tr2j0tgamnmdljdg9xus\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T18:00:19-05:00\",\"operation_date\":\"2023-10-04T18:00:19-05:00\",\"description\":\"Pago Mensual academia: John Sebastián Gómez castaño (1015191978)\",\"error_message\":null,\"order_id\":\"B74084F67608D5D35079175712568095_5POWDF6IBG_1696460416.4036\",\"due_date\":\"2023-10-05T06:00:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-10-04T18:00:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2j0tgamnmdljdg9xus/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 23:01:09','2023-10-04 23:01:09'),(9915,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T18:02:54-05:00\",\"transaction\":{\"id\":\"tr2j0tgamnmdljdg9xus\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200847849\",\"creation_date\":\"2023-10-04T18:00:19-05:00\",\"operation_date\":\"2023-10-04T18:02:19-05:00\",\"description\":\"Pago Mensual academia: John Sebastián Gómez castaño (1015191978)\",\"error_message\":null,\"order_id\":\"B74084F67608D5D35079175712568095_5POWDF6IBG_1696460416.4036\",\"due_date\":\"2023-10-05T06:00:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-10-04T18:00:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 23:02:55','2023-10-04 23:02:55'),(9916,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T18:05:41-05:00\",\"transaction\":{\"id\":\"tr1l7kexas5vbd2ygqvx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T18:04:49-05:00\",\"operation_date\":\"2023-10-04T18:04:49-05:00\",\"description\":\"Pago Mensual academia: Matías Gómez castaño (1015194560)\",\"error_message\":null,\"order_id\":\"9C72E0C8882794B79D65F14776A0A974_XQOED2MNH8_1696460683.8699\",\"due_date\":\"2023-10-05T06:04:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-10-04T18:04:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1l7kexas5vbd2ygqvx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 23:05:41','2023-10-04 23:05:41'),(9917,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T17:06:39-06:00\",\"transaction\":{\"id\":\"tr1l7kexas5vbd2ygqvx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200858143\",\"creation_date\":\"2023-10-04T18:04:49-06:00\",\"operation_date\":\"2023-10-04T17:06:31-06:00\",\"description\":\"Pago Mensual academia: Matías Gómez castaño (1015194560)\",\"error_message\":null,\"order_id\":\"9C72E0C8882794B79D65F14776A0A974_XQOED2MNH8_1696460683.8699\",\"due_date\":\"2023-10-05T06:04:49-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"MAURICIO\",\"last_name\":\"Gómez Suárez\",\"email\":\"mauriciofantasia85@gmail.com\",\"phone_number\":\"3185358592\",\"address\":null,\"creation_date\":\"2023-10-04T18:04:49-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 23:06:39','2023-10-04 23:06:39'),(9918,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T18:51:03-05:00\",\"transaction\":{\"id\":\"trqtlohtuhcpl4lz1323\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T18:49:41-05:00\",\"operation_date\":\"2023-10-04T18:49:41-05:00\",\"description\":\"Pago Mensual academia: justin cardona alvarez (1038873443)\",\"error_message\":null,\"order_id\":\"52C670999CDEF4B09EB656850DA777C4_WAH3J64LDQ_1696463376.5207\",\"due_date\":\"2023-10-05T06:49:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"edwin\",\"last_name\":\"cardona\",\"email\":\"edwincf121@hotmail.com\",\"phone_number\":\"3104757763\",\"address\":null,\"creation_date\":\"2023-10-04T18:49:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqtlohtuhcpl4lz1323/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 23:51:03','2023-10-04 23:51:03'),(9919,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T18:53:13-05:00\",\"transaction\":{\"id\":\"trqtlohtuhcpl4lz1323\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200961799\",\"creation_date\":\"2023-10-04T18:49:41-05:00\",\"operation_date\":\"2023-10-04T18:53:06-05:00\",\"description\":\"Pago Mensual academia: justin cardona alvarez (1038873443)\",\"error_message\":null,\"order_id\":\"52C670999CDEF4B09EB656850DA777C4_WAH3J64LDQ_1696463376.5207\",\"due_date\":\"2023-10-05T06:49:41-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"edwin\",\"last_name\":\"cardona\",\"email\":\"edwincf121@hotmail.com\",\"phone_number\":\"3104757763\",\"address\":null,\"creation_date\":\"2023-10-04T18:49:41-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 23:53:13','2023-10-04 23:53:13'),(9920,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T18:54:26-05:00\",\"transaction\":{\"id\":\"tryp6uacrfnnojtxau5p\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T18:53:28-05:00\",\"operation_date\":\"2023-10-04T18:53:28-05:00\",\"description\":\"Pago Mensual academia: justin cardona alvarez (1038873443)\",\"error_message\":null,\"order_id\":\"C0A62E133894CDCE435BCB4A5DF1DB2D_A5HQRYIOVT_1696463606.1767\",\"due_date\":\"2023-10-05T06:53:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"edwin\",\"last_name\":\"cardona\",\"email\":\"edwincf121@hotmail.com\",\"phone_number\":\"3104757763\",\"address\":null,\"creation_date\":\"2023-10-04T18:53:28-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryp6uacrfnnojtxau5p/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 23:54:26','2023-10-04 23:54:26'),(9921,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T18:55:59-05:00\",\"transaction\":{\"id\":\"tryp6uacrfnnojtxau5p\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200969608\",\"creation_date\":\"2023-10-04T18:53:28-05:00\",\"operation_date\":\"2023-10-04T18:55:54-05:00\",\"description\":\"Pago Mensual academia: justin cardona alvarez (1038873443)\",\"error_message\":null,\"order_id\":\"C0A62E133894CDCE435BCB4A5DF1DB2D_A5HQRYIOVT_1696463606.1767\",\"due_date\":\"2023-10-05T06:53:28-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"edwin\",\"last_name\":\"cardona\",\"email\":\"edwincf121@hotmail.com\",\"phone_number\":\"3104757763\",\"address\":null,\"creation_date\":\"2023-10-04T18:53:28-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 23:55:59','2023-10-04 23:55:59'),(9922,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T18:57:29-05:00\",\"transaction\":{\"id\":\"tr9b8221by44jw3chdei\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T18:56:17-05:00\",\"operation_date\":\"2023-10-04T18:56:17-05:00\",\"description\":\"Pago Mensual academia: justin cardona alvarez (1038873443)\",\"error_message\":null,\"order_id\":\"977B33ACE8251DD9BEE913E7BA56EEBC_E235C0FDAU_1696463773.6332\",\"due_date\":\"2023-10-05T06:56:17-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"edwin\",\"last_name\":\"cardona\",\"email\":\"edwincf121@hotmail.com\",\"phone_number\":\"3104757763\",\"address\":null,\"creation_date\":\"2023-10-04T18:56:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr9b8221by44jw3chdei/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 23:57:29','2023-10-04 23:57:29'),(9923,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T18:59:05-05:00\",\"transaction\":{\"id\":\"tr9b8221by44jw3chdei\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"200976820\",\"creation_date\":\"2023-10-04T18:56:17-05:00\",\"operation_date\":\"2023-10-04T18:58:58-05:00\",\"description\":\"Pago Mensual academia: justin cardona alvarez (1038873443)\",\"error_message\":null,\"order_id\":\"977B33ACE8251DD9BEE913E7BA56EEBC_E235C0FDAU_1696463773.6332\",\"due_date\":\"2023-10-05T06:56:17-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"edwin\",\"last_name\":\"cardona\",\"email\":\"edwincf121@hotmail.com\",\"phone_number\":\"3104757763\",\"address\":null,\"creation_date\":\"2023-10-04T18:56:17-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-04 23:59:06','2023-10-04 23:59:06'),(9924,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T19:56:33-05:00\",\"transaction\":{\"id\":\"trtseo63zafzbms4othc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T19:55:37-05:00\",\"operation_date\":\"2023-10-04T19:55:37-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Duque Alvarez (1033189257)\",\"error_message\":null,\"order_id\":\"48A79BCF6049AD894EF98CBC17AFEC96_8SVZU0IC5O_1696467332.4556\",\"due_date\":\"2023-10-05T07:55:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eduardo\",\"last_name\":\"Duque Higuita\",\"email\":\"duqueedward@gmail.com\",\"phone_number\":\"3122383147\",\"address\":null,\"creation_date\":\"2023-10-04T19:55:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtseo63zafzbms4othc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 00:56:33','2023-10-05 00:56:33'),(9925,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T19:58:02-05:00\",\"transaction\":{\"id\":\"trtseo63zafzbms4othc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201113094\",\"creation_date\":\"2023-10-04T19:55:37-05:00\",\"operation_date\":\"2023-10-04T19:57:42-05:00\",\"description\":\"Pago Mensual academia: Jose Miguel Duque Alvarez (1033189257)\",\"error_message\":null,\"order_id\":\"48A79BCF6049AD894EF98CBC17AFEC96_8SVZU0IC5O_1696467332.4556\",\"due_date\":\"2023-10-05T07:55:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Eduardo\",\"last_name\":\"Duque Higuita\",\"email\":\"duqueedward@gmail.com\",\"phone_number\":\"3122383147\",\"address\":null,\"creation_date\":\"2023-10-04T19:55:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 00:58:03','2023-10-05 00:58:03'),(9926,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T20:39:14-05:00\",\"transaction\":{\"id\":\"trnb5wer68rroyn0jfbz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-04T20:39:14-05:00\",\"operation_date\":\"2023-10-04T20:39:14-05:00\",\"description\":\"Pago Mensual academia: lucio gaviria uribe (1035010951)\",\"error_message\":null,\"order_id\":\"C6447300D99FDBF4F3F7966295B8B5BE_EMROSKI4FJ_1696469946.5123\",\"amount\":165900.00,\"customer\":{\"name\":\"sebastian\",\"last_name\":\"gaviria\",\"email\":\"sebastiangaviria@centrosur.co\",\"phone_number\":\"3168763936\",\"address\":null,\"creation_date\":\"2023-10-04T20:39:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnb5wer68rroyn0jfbz/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 01:39:14','2023-10-05 01:39:14'),(9927,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1147\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T20:40:06-05:00\",\"transaction\":{\"id\":\"trnb5wer68rroyn0jfbz\",\"authorization\":\"R04235\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-04T20:39:14-05:00\",\"operation_date\":\"2023-10-04T20:40:05-05:00\",\"description\":\"Pago Mensual academia: lucio gaviria uribe (1035010951)\",\"error_message\":null,\"order_id\":\"C6447300D99FDBF4F3F7966295B8B5BE_EMROSKI4FJ_1696469946.5123\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549158XXXXXX0348\",\"holder_name\":\"Sebastian Gaviria\",\"expiration_year\":\"27\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"sebastian\",\"last_name\":\"gaviria\",\"email\":\"sebastiangaviria@centrosur.co\",\"phone_number\":\"3168763936\",\"address\":null,\"creation_date\":\"2023-10-04T20:39:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnb5wer68rroyn0jfbz/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 01:40:07','2023-10-05 01:40:07'),(9928,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  922\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T21:04:51-05:00\",\"transaction\":{\"id\":\"truwqptamllavwulf6tg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T21:04:05-05:00\",\"operation_date\":\"2023-10-04T21:04:05-05:00\",\"description\":\"Pago Mensual academia: Simón Jiménez Cano (1130704440)\",\"error_message\":null,\"order_id\":\"D3E0F226DF6865B28FB677548370F467_H0SOEF1IV7_1696471442.8712\",\"due_date\":\"2023-10-05T09:04:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Jiménez Cano\",\"email\":\"mariacano3011@gmail.com\",\"phone_number\":\"3133424011\",\"address\":null,\"creation_date\":\"2023-10-04T21:04:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truwqptamllavwulf6tg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 02:04:52','2023-10-05 02:04:52'),(9929,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  805\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T21:06:09-05:00\",\"transaction\":{\"id\":\"truwqptamllavwulf6tg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201261983\",\"creation_date\":\"2023-10-04T21:04:05-05:00\",\"operation_date\":\"2023-10-04T21:06:00-05:00\",\"description\":\"Pago Mensual academia: Simón Jiménez Cano (1130704440)\",\"error_message\":null,\"order_id\":\"D3E0F226DF6865B28FB677548370F467_H0SOEF1IV7_1696471442.8712\",\"due_date\":\"2023-10-05T09:04:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Jiménez Cano\",\"email\":\"mariacano3011@gmail.com\",\"phone_number\":\"3133424011\",\"address\":null,\"creation_date\":\"2023-10-04T21:04:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 02:06:09','2023-10-05 02:06:09'),(9930,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T21:31:10-05:00\",\"transaction\":{\"id\":\"trpee1u6lidy3jxg5mfg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T21:30:21-05:00\",\"operation_date\":\"2023-10-04T21:30:21-05:00\",\"description\":\"Pago Mensual academia: Juan José Grisales Jiménez (1036455688)\",\"error_message\":null,\"order_id\":\"DB209D71DF52E8A3595972EF488B636A_PF2SQGK1E0_1696473016.0559\",\"due_date\":\"2023-10-05T09:30:21-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"Diana Alejandra\",\"last_name\":\"Jiménez Vásquez\",\"email\":\"diyiva@hotmail.com\",\"phone_number\":\"3117707969\",\"address\":null,\"creation_date\":\"2023-10-04T21:30:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpee1u6lidy3jxg5mfg/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 02:31:10','2023-10-05 02:31:10'),(9931,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T21:32:37-05:00\",\"transaction\":{\"id\":\"trpee1u6lidy3jxg5mfg\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201311530\",\"creation_date\":\"2023-10-04T21:30:21-05:00\",\"operation_date\":\"2023-10-04T21:32:30-05:00\",\"description\":\"Pago Mensual academia: Juan José Grisales Jiménez (1036455688)\",\"error_message\":null,\"order_id\":\"DB209D71DF52E8A3595972EF488B636A_PF2SQGK1E0_1696473016.0559\",\"due_date\":\"2023-10-05T09:30:21-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"Diana Alejandra\",\"last_name\":\"Jiménez Vásquez\",\"email\":\"diyiva@hotmail.com\",\"phone_number\":\"3117707969\",\"address\":null,\"creation_date\":\"2023-10-04T21:30:21-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 02:32:37','2023-10-05 02:32:37'),(9932,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T22:19:39-05:00\",\"transaction\":{\"id\":\"truazuadoo8jjhjiumcd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T22:18:42-05:00\",\"operation_date\":\"2023-10-04T22:18:42-05:00\",\"description\":\"Pago Mensual academia: lorenzo rengifo restrepo (1033193056)\",\"error_message\":null,\"order_id\":\"AE0909A324FB2530E205E52D40266418_6OLR2CA0NV_1696475912.3087\",\"due_date\":\"2023-10-05T10:18:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Restrepo Ortiz\",\"email\":\"erikarestre@gmail.com\",\"phone_number\":\"3216487929\",\"address\":null,\"creation_date\":\"2023-10-04T22:18:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/truazuadoo8jjhjiumcd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 03:19:40','2023-10-05 03:19:40'),(9933,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T22:20:56-05:00\",\"transaction\":{\"id\":\"truazuadoo8jjhjiumcd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201391223\",\"creation_date\":\"2023-10-04T22:18:42-05:00\",\"operation_date\":\"2023-10-04T22:20:51-05:00\",\"description\":\"Pago Mensual academia: lorenzo rengifo restrepo (1033193056)\",\"error_message\":null,\"order_id\":\"AE0909A324FB2530E205E52D40266418_6OLR2CA0NV_1696475912.3087\",\"due_date\":\"2023-10-05T10:18:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Erika\",\"last_name\":\"Restrepo Ortiz\",\"email\":\"erikarestre@gmail.com\",\"phone_number\":\"3216487929\",\"address\":null,\"creation_date\":\"2023-10-04T22:18:42-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 03:20:57','2023-10-05 03:20:57'),(9934,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-04T23:37:50-05:00\",\"transaction\":{\"id\":\"trtdrlryh1oeqhg6ertf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-04T23:37:13-05:00\",\"operation_date\":\"2023-10-04T23:37:13-05:00\",\"description\":\"Pago Mensual academia: Samuel Osorio Ospina (1013349520)\",\"error_message\":null,\"order_id\":\"665D5CBB82B5785D9F344C46417C6C36_Y9PU2CLAJ5_1696480627.5013\",\"due_date\":\"2023-10-05T11:37:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Osorio Ospina\",\"email\":\"daniosorio3004@gmail.com\",\"phone_number\":\"3146288545\",\"address\":null,\"creation_date\":\"2023-10-04T23:37:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtdrlryh1oeqhg6ertf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 04:37:51','2023-10-05 04:37:51'),(9935,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-04T23:39:05-05:00\",\"transaction\":{\"id\":\"trtdrlryh1oeqhg6ertf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201462247\",\"creation_date\":\"2023-10-04T23:37:13-05:00\",\"operation_date\":\"2023-10-04T23:38:54-05:00\",\"description\":\"Pago Mensual academia: Samuel Osorio Ospina (1013349520)\",\"error_message\":null,\"order_id\":\"665D5CBB82B5785D9F344C46417C6C36_Y9PU2CLAJ5_1696480627.5013\",\"due_date\":\"2023-10-05T11:37:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Daniela\",\"last_name\":\"Osorio Ospina\",\"email\":\"daniosorio3004@gmail.com\",\"phone_number\":\"3146288545\",\"address\":null,\"creation_date\":\"2023-10-04T23:37:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 04:39:06','2023-10-05 04:39:06'),(9936,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-05T02:16:13-06:00\",\"transaction\":{\"id\":\"trps8ilqkzmudnvqjybb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-10-04T08:44:59-06:00\",\"operation_date\":\"2023-10-04T08:44:59-06:00\",\"description\":\"Pago Mensual academia: lucio gaviria uribe (1035010951)\",\"error_message\":null,\"order_id\":\"C6447300D99FDBF4F3F7966295B8B5BE_EMROSKI4FJ_1696427094.3439\",\"due_date\":\"2023-10-04T20:44:59-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sebastian\",\"last_name\":\"gaviria\",\"email\":\"sebastiangaviria@centrosur.co\",\"phone_number\":\"3168763936\",\"address\":null,\"creation_date\":\"2023-10-04T08:44:59-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trps8ilqkzmudnvqjybb/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 08:16:14','2023-10-05 08:16:14'),(9937,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-05T02:16:13-06:00\",\"transaction\":{\"id\":\"trm8n2qm9kdbqeex6tgq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-10-03T13:23:35-06:00\",\"operation_date\":\"2023-10-03T13:23:35-06:00\",\"description\":\"Pago Mensual academia: Anthony Ramirez Rendon (1038874697)\",\"error_message\":null,\"order_id\":\"148D411AEFFED8A6F6AD4ECD77D1F904_ZN5AJK7E0D_1696357412.9762\",\"due_date\":\"2023-10-04T01:23:35-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"Rendon\",\"email\":\"tatirendonc@gmail.com\",\"phone_number\":\"3008949106\",\"address\":null,\"creation_date\":\"2023-10-03T13:23:35-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm8n2qm9kdbqeex6tgq/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 08:16:14','2023-10-05 08:16:14'),(9938,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T07:01:32-05:00\",\"transaction\":{\"id\":\"trp0cuxp5n4y9bc3kovt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T07:00:01-05:00\",\"operation_date\":\"2023-10-05T07:00:01-05:00\",\"description\":\"Pago Mensual academia: Jacobo Betancur Rivera (1020122857)\",\"error_message\":null,\"order_id\":\"9EE70B7987A735C046AC30A1556272C8_QF3ML09BTV_1696507193.6043\",\"due_date\":\"2023-10-05T19:00:01-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"rivera loaiza\",\"email\":\"johanariveraodontologa@hotmail.com\",\"phone_number\":\"3106368849\",\"address\":null,\"creation_date\":\"2023-10-05T07:00:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trp0cuxp5n4y9bc3kovt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 12:01:33','2023-10-05 12:01:33'),(9939,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T06:03:13-06:00\",\"transaction\":{\"id\":\"trp0cuxp5n4y9bc3kovt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201586266\",\"creation_date\":\"2023-10-05T07:00:01-06:00\",\"operation_date\":\"2023-10-05T07:02:40-06:00\",\"description\":\"Pago Mensual academia: Jacobo Betancur Rivera (1020122857)\",\"error_message\":null,\"order_id\":\"9EE70B7987A735C046AC30A1556272C8_QF3ML09BTV_1696507193.6043\",\"due_date\":\"2023-10-05T19:00:01-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"rivera loaiza\",\"email\":\"johanariveraodontologa@hotmail.com\",\"phone_number\":\"3106368849\",\"address\":null,\"creation_date\":\"2023-10-05T07:00:01-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 12:03:14','2023-10-05 12:03:14'),(9940,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  945\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T07:34:57-05:00\",\"transaction\":{\"id\":\"trk2buxhpju5omidwfpi\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T07:34:14-05:00\",\"operation_date\":\"2023-10-05T07:34:14-05:00\",\"description\":\"Pago Mensual academia: Tomás Enrique Contreras Gómez (1037672749)\",\"error_message\":null,\"order_id\":\"1377E22FD81057B3E65AEFD5FC634B64_B0U2ORYHFE_1696509250.3745\",\"due_date\":\"2023-10-05T19:34:14-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Enrique Antonio\",\"last_name\":\"Contreras Pereira\",\"email\":\"enriqueac54@gmail.com\",\"phone_number\":\"3177817335\",\"address\":null,\"creation_date\":\"2023-10-05T07:34:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trk2buxhpju5omidwfpi/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 12:34:58','2023-10-05 12:34:58'),(9941,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  828\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T06:36:23-06:00\",\"transaction\":{\"id\":\"trk2buxhpju5omidwfpi\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201629298\",\"creation_date\":\"2023-10-05T07:34:14-06:00\",\"operation_date\":\"2023-10-05T07:35:48-06:00\",\"description\":\"Pago Mensual academia: Tomás Enrique Contreras Gómez (1037672749)\",\"error_message\":null,\"order_id\":\"1377E22FD81057B3E65AEFD5FC634B64_B0U2ORYHFE_1696509250.3745\",\"due_date\":\"2023-10-05T19:34:14-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Enrique Antonio\",\"last_name\":\"Contreras Pereira\",\"email\":\"enriqueac54@gmail.com\",\"phone_number\":\"3177817335\",\"address\":null,\"creation_date\":\"2023-10-05T07:34:14-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 12:36:23','2023-10-05 12:36:23');
INSERT INTO `system_logs` VALUES (9942,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  944\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T08:44:07-05:00\",\"transaction\":{\"id\":\"trwrgq111ysph7x9yfdh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T08:43:20-05:00\",\"operation_date\":\"2023-10-05T08:43:20-05:00\",\"description\":\"Pago Mensual academia: jose Gabriel Quintero hoyos (1013365886)\",\"error_message\":null,\"order_id\":\"1E51E0F3B6B60070219CCB91BB619A6B_BF5KTLDERI_1696513397.7295\",\"due_date\":\"2023-10-05T20:43:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jose Gabriel\",\"last_name\":\"quintero hoyos\",\"email\":\"matiasygabriel0409@hotmail.com\",\"phone_number\":\"3022012454\",\"address\":null,\"creation_date\":\"2023-10-05T08:43:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwrgq111ysph7x9yfdh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 13:44:08','2023-10-05 13:44:08'),(9943,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T08:46:18-05:00\",\"transaction\":{\"id\":\"trwrgq111ysph7x9yfdh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201761724\",\"creation_date\":\"2023-10-05T08:43:20-05:00\",\"operation_date\":\"2023-10-05T08:46:00-05:00\",\"description\":\"Pago Mensual academia: jose Gabriel Quintero hoyos (1013365886)\",\"error_message\":null,\"order_id\":\"1E51E0F3B6B60070219CCB91BB619A6B_BF5KTLDERI_1696513397.7295\",\"due_date\":\"2023-10-05T20:43:20-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"jose Gabriel\",\"last_name\":\"quintero hoyos\",\"email\":\"matiasygabriel0409@hotmail.com\",\"phone_number\":\"3022012454\",\"address\":null,\"creation_date\":\"2023-10-05T08:43:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 13:46:19','2023-10-05 13:46:19'),(9944,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T09:02:22-05:00\",\"transaction\":{\"id\":\"trdqfcwfkidpodd7n8tm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T09:00:48-05:00\",\"operation_date\":\"2023-10-05T09:00:48-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Mejía Arias (1036454391)\",\"error_message\":null,\"order_id\":\"526C321538D951FE8D2B9ABF54DBDB91_79RD03146V_1696514444.7061\",\"due_date\":\"2023-10-05T21:00:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cesar Augusto\",\"last_name\":\"Mejía Mejia\",\"email\":\"cesarm.cm417@gmail.com\",\"phone_number\":\"3052671413\",\"address\":null,\"creation_date\":\"2023-10-05T09:00:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdqfcwfkidpodd7n8tm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 14:02:23','2023-10-05 14:02:23'),(9945,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T09:04:51-05:00\",\"transaction\":{\"id\":\"trdqfcwfkidpodd7n8tm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201806054\",\"creation_date\":\"2023-10-05T09:00:48-05:00\",\"operation_date\":\"2023-10-05T09:04:04-05:00\",\"description\":\"Pago Mensual academia: Miguel Angel Mejía Arias (1036454391)\",\"error_message\":null,\"order_id\":\"526C321538D951FE8D2B9ABF54DBDB91_79RD03146V_1696514444.7061\",\"due_date\":\"2023-10-05T21:00:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Cesar Augusto\",\"last_name\":\"Mejía Mejia\",\"email\":\"cesarm.cm417@gmail.com\",\"phone_number\":\"3052671413\",\"address\":null,\"creation_date\":\"2023-10-05T09:00:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 14:04:52','2023-10-05 14:04:52'),(9946,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T09:36:44-05:00\",\"transaction\":{\"id\":\"trtkrxslyh9io4k46hoe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T09:35:53-05:00\",\"operation_date\":\"2023-10-05T09:35:53-05:00\",\"description\":\"Pago Mensual academia: juan Diego grizales torrejano (1032024576)\",\"error_message\":null,\"order_id\":\"F06AE085FE74CD78AD5E89496B197FE1_S2DGJ7X5F8_1696516545.2963\",\"due_date\":\"2023-10-05T21:35:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yarlenys\",\"last_name\":\"torrejano rios\",\"email\":\"laboratorioyada@gmail.com\",\"phone_number\":\"3103905122\",\"address\":null,\"creation_date\":\"2023-10-05T09:35:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtkrxslyh9io4k46hoe/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 14:36:44','2023-10-05 14:36:44'),(9947,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  820\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T09:38:35-05:00\",\"transaction\":{\"id\":\"trtkrxslyh9io4k46hoe\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201898829\",\"creation_date\":\"2023-10-05T09:35:53-05:00\",\"operation_date\":\"2023-10-05T00:00:00-05:00\",\"description\":\"Pago Mensual academia: juan Diego grizales torrejano (1032024576)\",\"error_message\":null,\"order_id\":\"F06AE085FE74CD78AD5E89496B197FE1_S2DGJ7X5F8_1696516545.2963\",\"due_date\":\"2023-10-05T21:35:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yarlenys\",\"last_name\":\"torrejano rios\",\"email\":\"laboratorioyada@gmail.com\",\"phone_number\":\"3103905122\",\"address\":null,\"creation_date\":\"2023-10-05T09:35:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 14:38:35','2023-10-05 14:38:35'),(9948,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T09:51:47-05:00\",\"transaction\":{\"id\":\"trxwct7se6uxnt9cskgw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T09:51:15-05:00\",\"operation_date\":\"2023-10-05T09:51:15-05:00\",\"description\":\"Pago Mensual academia: Sebastián Restrepo Londoño (1017938601)\",\"error_message\":null,\"order_id\":\"8F04AC8EADB8A829A4C2117ADE0F23DA_G5RJLE2SYC_1696517466.7811\",\"due_date\":\"2023-10-05T21:51:15-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Astrid\",\"last_name\":\"Londoño Zapata\",\"email\":\"astro_1218@hotmail.com\",\"phone_number\":\"3113377769\",\"address\":null,\"creation_date\":\"2023-10-05T09:51:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxwct7se6uxnt9cskgw/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 14:51:48','2023-10-05 14:51:48'),(9949,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T09:59:38-05:00\",\"transaction\":{\"id\":\"trgqdgelkxlmlhayyfko\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T09:58:42-05:00\",\"operation_date\":\"2023-10-05T09:58:42-05:00\",\"description\":\"Pago Mensual academia: alejandro lopez rios (1021933632)\",\"error_message\":null,\"order_id\":\"50A074E6A8DA4662AE0A29EDDE722179_2FC1R0EJVG_1696517914.8218\",\"due_date\":\"2023-10-05T21:58:42-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johanna\",\"last_name\":\"rios rios\",\"email\":\"joha.8606@hotmail.com\",\"phone_number\":\"3147496936\",\"address\":null,\"creation_date\":\"2023-10-05T09:58:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgqdgelkxlmlhayyfko/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 14:59:38','2023-10-05 14:59:38'),(9950,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T09:00:49-06:00\",\"transaction\":{\"id\":\"trgqdgelkxlmlhayyfko\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201964689\",\"creation_date\":\"2023-10-05T09:58:42-06:00\",\"operation_date\":\"2023-10-05T10:00:42-06:00\",\"description\":\"Pago Mensual academia: alejandro lopez rios (1021933632)\",\"error_message\":null,\"order_id\":\"50A074E6A8DA4662AE0A29EDDE722179_2FC1R0EJVG_1696517914.8218\",\"due_date\":\"2023-10-05T21:58:42-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johanna\",\"last_name\":\"rios rios\",\"email\":\"joha.8606@hotmail.com\",\"phone_number\":\"3147496936\",\"address\":null,\"creation_date\":\"2023-10-05T09:58:42-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 15:00:50','2023-10-05 15:00:50'),(9951,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  854\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-05T09:03:14-06:00\",\"transaction\":{\"id\":\"trxwct7se6uxnt9cskgw\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-05T09:51:15-06:00\",\"operation_date\":\"2023-10-05T00:00:00-06:00\",\"description\":\"Pago Mensual academia: Sebastián Restrepo Londoño (1017938601)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"8F04AC8EADB8A829A4C2117ADE0F23DA_G5RJLE2SYC_1696517466.7811\",\"due_date\":\"2023-10-05T21:51:15-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Astrid\",\"last_name\":\"Londoño Zapata\",\"email\":\"astro_1218@hotmail.com\",\"phone_number\":\"3113377769\",\"address\":null,\"creation_date\":\"2023-10-05T09:51:15-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 15:03:14','2023-10-05 15:03:14'),(9952,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T10:03:21-05:00\",\"transaction\":{\"id\":\"trnryr844ix16qip0jpr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T10:02:33-05:00\",\"operation_date\":\"2023-10-05T10:02:33-05:00\",\"description\":\"Pago Mensual academia: santiago velez palacio (1020235193)\",\"error_message\":null,\"order_id\":\"1F187C8BC462403C4646AB271007EDF4_JOH3ECZY0P_1696518151.6314\",\"due_date\":\"2023-10-05T22:02:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yenny\",\"last_name\":\"palacio\",\"email\":\"yeapal_7@hotmail.com\",\"phone_number\":\"3104035722\",\"address\":null,\"creation_date\":\"2023-10-05T10:02:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnryr844ix16qip0jpr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 15:03:21','2023-10-05 15:03:21'),(9953,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T10:04:30-05:00\",\"transaction\":{\"id\":\"trnryr844ix16qip0jpr\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"201975330\",\"creation_date\":\"2023-10-05T10:02:33-05:00\",\"operation_date\":\"2023-10-05T10:04:24-05:00\",\"description\":\"Pago Mensual academia: santiago velez palacio (1020235193)\",\"error_message\":null,\"order_id\":\"1F187C8BC462403C4646AB271007EDF4_JOH3ECZY0P_1696518151.6314\",\"due_date\":\"2023-10-05T22:02:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"yenny\",\"last_name\":\"palacio\",\"email\":\"yeapal_7@hotmail.com\",\"phone_number\":\"3104035722\",\"address\":null,\"creation_date\":\"2023-10-05T10:02:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 15:04:31','2023-10-05 15:04:31'),(9954,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  931\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T10:29:16-05:00\",\"transaction\":{\"id\":\"trs1ezhhwvmx0lkklrwz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T10:28:02-05:00\",\"operation_date\":\"2023-10-05T10:28:02-05:00\",\"description\":\"Pago Mensual academia: mathias betancur arango (1036456981)\",\"error_message\":null,\"order_id\":\"D2E9DD9DCD97FD12A2CB62E2BF7CBE35_KDG15BZC63_1696519677.4704\",\"due_date\":\"2023-10-05T22:28:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"arango rodriguez\",\"email\":\"juliarango20@hotmail.com\",\"phone_number\":\"3004419025\",\"address\":null,\"creation_date\":\"2023-10-05T10:28:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trs1ezhhwvmx0lkklrwz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 15:29:17','2023-10-05 15:29:17'),(9955,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  814\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T09:30:31-06:00\",\"transaction\":{\"id\":\"trs1ezhhwvmx0lkklrwz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"202051636\",\"creation_date\":\"2023-10-05T10:28:02-06:00\",\"operation_date\":\"2023-10-05T10:30:25-06:00\",\"description\":\"Pago Mensual academia: mathias betancur arango (1036456981)\",\"error_message\":null,\"order_id\":\"D2E9DD9DCD97FD12A2CB62E2BF7CBE35_KDG15BZC63_1696519677.4704\",\"due_date\":\"2023-10-05T22:28:02-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juliana\",\"last_name\":\"arango rodriguez\",\"email\":\"juliarango20@hotmail.com\",\"phone_number\":\"3004419025\",\"address\":null,\"creation_date\":\"2023-10-05T10:28:02-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 15:30:32','2023-10-05 15:30:32'),(9956,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T10:58:58-05:00\",\"transaction\":{\"id\":\"trkncngrsvzyoyarczfj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T10:58:13-05:00\",\"operation_date\":\"2023-10-05T10:58:13-05:00\",\"description\":\"Pago Mensual academia: Emiliano Fiallo García (1027813536)\",\"error_message\":null,\"order_id\":\"97008EA27052082BE055447BE9E85612_NMHTZ8PLSI_1696521490.7729\",\"due_date\":\"2023-10-05T22:58:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"García Sánchez\",\"email\":\"tatigs0303@hotmail.com\",\"phone_number\":\"3137669661\",\"address\":null,\"creation_date\":\"2023-10-05T10:58:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkncngrsvzyoyarczfj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 15:58:59','2023-10-05 15:58:59'),(9957,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T10:59:53-05:00\",\"transaction\":{\"id\":\"trkncngrsvzyoyarczfj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"202140096\",\"creation_date\":\"2023-10-05T10:58:13-05:00\",\"operation_date\":\"2023-10-05T10:59:44-05:00\",\"description\":\"Pago Mensual academia: Emiliano Fiallo García (1027813536)\",\"error_message\":null,\"order_id\":\"97008EA27052082BE055447BE9E85612_NMHTZ8PLSI_1696521490.7729\",\"due_date\":\"2023-10-05T22:58:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Tatiana\",\"last_name\":\"García Sánchez\",\"email\":\"tatigs0303@hotmail.com\",\"phone_number\":\"3137669661\",\"address\":null,\"creation_date\":\"2023-10-05T10:58:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 15:59:53','2023-10-05 15:59:53'),(9958,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T11:49:34-05:00\",\"transaction\":{\"id\":\"tr85z3f4fwaddtxb5lob\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-05T11:49:34-05:00\",\"operation_date\":\"2023-10-05T11:49:34-05:00\",\"description\":\"Pago Mensual academia: Ismael Monsalve Montoya (1020322996)\",\"error_message\":null,\"order_id\":\"ACF666483BC8723FAE7FEDA6F6A9CB7A_1BCAKXDE29_1696524572.0294\",\"amount\":165900.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Monsalve Escudero\",\"email\":\"joh.monsalve@gmail.com\",\"phone_number\":\"3164944043\",\"address\":null,\"creation_date\":\"2023-10-05T11:49:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr85z3f4fwaddtxb5lob/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 16:49:35','2023-10-05 16:49:35'),(9959,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1146\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T11:51:19-05:00\",\"transaction\":{\"id\":\"tr85z3f4fwaddtxb5lob\",\"authorization\":\"R07624\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-05T11:49:34-05:00\",\"operation_date\":\"2023-10-05T11:51:18-05:00\",\"description\":\"Pago Mensual academia: Ismael Monsalve Montoya (1020322996)\",\"error_message\":null,\"order_id\":\"ACF666483BC8723FAE7FEDA6F6A9CB7A_1BCAKXDE29_1696524572.0294\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"529198XXXXXX8764\",\"holder_name\":\"Johan Monsalve\",\"expiration_year\":\"27\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Monsalve Escudero\",\"email\":\"joh.monsalve@gmail.com\",\"phone_number\":\"3164944043\",\"address\":null,\"creation_date\":\"2023-10-05T11:49:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr85z3f4fwaddtxb5lob/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 16:51:20','2023-10-05 16:51:20'),(9960,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  894\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T11:52:21-05:00\",\"transaction\":{\"id\":\"try0myjsdju9h535mk0f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-05T11:52:21-05:00\",\"operation_date\":\"2023-10-05T11:52:21-05:00\",\"description\":\"Pago Mensual academia: Ismael Monsalve Montoya (1020322996)\",\"error_message\":null,\"order_id\":\"9BAB7341F4429F78ADE492DA0318AA42_3A7B4WL1XN_1696524739.5131\",\"amount\":165900.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Monsalve Escudero\",\"email\":\"joh.monsalve@gmail.com\",\"phone_number\":\"3164944043\",\"address\":null,\"creation_date\":\"2023-10-05T11:52:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/try0myjsdju9h535mk0f/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 16:52:22','2023-10-05 16:52:22'),(9961,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1146\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T11:54:12-05:00\",\"transaction\":{\"id\":\"try0myjsdju9h535mk0f\",\"authorization\":\"R09069\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-05T11:52:21-05:00\",\"operation_date\":\"2023-10-05T11:54:11-05:00\",\"description\":\"Pago Mensual academia: Ismael Monsalve Montoya (1020322996)\",\"error_message\":null,\"order_id\":\"9BAB7341F4429F78ADE492DA0318AA42_3A7B4WL1XN_1696524739.5131\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"529198XXXXXX8764\",\"holder_name\":\"Johan Monsalve\",\"expiration_year\":\"27\",\"expiration_month\":\"06\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Johan\",\"last_name\":\"Monsalve Escudero\",\"email\":\"joh.monsalve@gmail.com\",\"phone_number\":\"3164944043\",\"address\":null,\"creation_date\":\"2023-10-05T11:52:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/try0myjsdju9h535mk0f/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 16:54:12','2023-10-05 16:54:12'),(9962,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T13:17:04-05:00\",\"transaction\":{\"id\":\"trdj5tqiqvyz2i94xqqm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T13:15:48-05:00\",\"operation_date\":\"2023-10-05T13:15:48-05:00\",\"description\":\"Pago Mensual academia: jeronimo pineda montoya (1032019947)\",\"error_message\":null,\"order_id\":\"6DE4BFE9504589A457D6E92FAE4F9613_24FSYBN5ZD_1696529743.262\",\"due_date\":\"2023-10-06T01:15:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"pineda montoya\",\"email\":\"yeisonpinedasaenz85@gmail.com\",\"phone_number\":\"3113244126\",\"address\":null,\"creation_date\":\"2023-10-05T13:15:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdj5tqiqvyz2i94xqqm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 18:17:05','2023-10-05 18:17:05'),(9963,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T13:18:36-05:00\",\"transaction\":{\"id\":\"trdj5tqiqvyz2i94xqqm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"202525309\",\"creation_date\":\"2023-10-05T13:15:48-05:00\",\"operation_date\":\"2023-10-05T13:18:21-05:00\",\"description\":\"Pago Mensual academia: jeronimo pineda montoya (1032019947)\",\"error_message\":null,\"order_id\":\"6DE4BFE9504589A457D6E92FAE4F9613_24FSYBN5ZD_1696529743.262\",\"due_date\":\"2023-10-06T01:15:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"pineda montoya\",\"email\":\"yeisonpinedasaenz85@gmail.com\",\"phone_number\":\"3113244126\",\"address\":null,\"creation_date\":\"2023-10-05T13:15:48-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 18:18:37','2023-10-05 18:18:37'),(9964,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T13:19:21-05:00\",\"transaction\":{\"id\":\"tr04ebyzaaaeta5t7apx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T13:18:37-05:00\",\"operation_date\":\"2023-10-05T13:18:37-05:00\",\"description\":\"Pago Mensual academia: Juan Manuel Lopez Garcia (1027663083)\",\"error_message\":null,\"order_id\":\"12E59A33DEA1BF0630F46EDFE13D6EA2_T4FLDS65M2_1696529907.5241\",\"due_date\":\"2023-10-06T01:18:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Andrea\",\"last_name\":\"Garcia\",\"email\":\"valentina.garcia1605@gmail.com\",\"phone_number\":\"3113982541\",\"address\":null,\"creation_date\":\"2023-10-05T13:18:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr04ebyzaaaeta5t7apx/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 18:19:22','2023-10-05 18:19:22'),(9965,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  935\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T13:19:28-05:00\",\"transaction\":{\"id\":\"trhb2ja0qxeqno6oveyt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T13:19:00-05:00\",\"operation_date\":\"2023-10-05T13:19:00-05:00\",\"description\":\"Pago Mensual academia: jeronimo pineda montoya (1032019947)\",\"error_message\":null,\"order_id\":\"65F148C815A4EBFAF8EB150460BA94FC_OYA5UF19QD_1696529938.2643\",\"due_date\":\"2023-10-06T01:19:00-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"pineda montoya\",\"email\":\"yeisonpinedasaenz85@gmail.com\",\"phone_number\":\"3113244126\",\"address\":null,\"creation_date\":\"2023-10-05T13:19:00-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhb2ja0qxeqno6oveyt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 18:19:29','2023-10-05 18:19:29'),(9966,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T13:20:29-05:00\",\"transaction\":{\"id\":\"tr04ebyzaaaeta5t7apx\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"202530886\",\"creation_date\":\"2023-10-05T13:18:37-05:00\",\"operation_date\":\"2023-10-05T13:20:15-05:00\",\"description\":\"Pago Mensual academia: Juan Manuel Lopez Garcia (1027663083)\",\"error_message\":null,\"order_id\":\"12E59A33DEA1BF0630F46EDFE13D6EA2_T4FLDS65M2_1696529907.5241\",\"due_date\":\"2023-10-06T01:18:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Natalia Andrea\",\"last_name\":\"Garcia\",\"email\":\"valentina.garcia1605@gmail.com\",\"phone_number\":\"3113982541\",\"address\":null,\"creation_date\":\"2023-10-05T13:18:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 18:20:29','2023-10-05 18:20:29'),(9967,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T12:21:47-06:00\",\"transaction\":{\"id\":\"trhb2ja0qxeqno6oveyt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"202531198\",\"creation_date\":\"2023-10-05T13:19:00-06:00\",\"operation_date\":\"2023-10-05T13:20:19-06:00\",\"description\":\"Pago Mensual academia: jeronimo pineda montoya (1032019947)\",\"error_message\":null,\"order_id\":\"65F148C815A4EBFAF8EB150460BA94FC_OYA5UF19QD_1696529938.2643\",\"due_date\":\"2023-10-06T01:19:00-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"pineda montoya\",\"email\":\"yeisonpinedasaenz85@gmail.com\",\"phone_number\":\"3113244126\",\"address\":null,\"creation_date\":\"2023-10-05T13:19:00-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 18:21:48','2023-10-05 18:21:48'),(9968,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  818\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T12:24:43-06:00\",\"transaction\":{\"id\":\"trhb2ja0qxeqno6oveyt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"202531198\",\"creation_date\":\"2023-10-05T13:19:00-06:00\",\"operation_date\":\"2023-10-05T13:20:19-06:00\",\"description\":\"Pago Mensual academia: jeronimo pineda montoya (1032019947)\",\"error_message\":null,\"order_id\":\"65F148C815A4EBFAF8EB150460BA94FC_OYA5UF19QD_1696529938.2643\",\"due_date\":\"2023-10-06T01:19:00-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"jeronimo\",\"last_name\":\"pineda montoya\",\"email\":\"yeisonpinedasaenz85@gmail.com\",\"phone_number\":\"3113244126\",\"address\":null,\"creation_date\":\"2023-10-05T13:19:00-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 18:24:44','2023-10-05 18:24:44'),(9969,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T13:38:22-05:00\",\"transaction\":{\"id\":\"trh8tygcmtslszao2srd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T13:36:12-05:00\",\"operation_date\":\"2023-10-05T13:36:12-05:00\",\"description\":\"Pago Mensual academia: Emanuel Pacheco Granada (1013466320)\",\"error_message\":null,\"order_id\":\"4BB948D5B21472509627F7F4C2A44784_WCXKPFZ108_1696530932.4945\",\"due_date\":\"2023-10-06T01:36:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Camila \",\"last_name\":\"Arango Granada \",\"email\":\"Camilaarango2809@gmail.com\",\"phone_number\":\"3242761738\",\"address\":null,\"creation_date\":\"2023-10-05T13:36:12-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trh8tygcmtslszao2srd/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 18:38:22','2023-10-05 18:38:22'),(9970,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T13:39:50-05:00\",\"transaction\":{\"id\":\"trmzdaazuuxvf2hcpu4g\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T13:38:56-05:00\",\"operation_date\":\"2023-10-05T13:38:56-05:00\",\"description\":\"Pago Mensual academia: Samuel Zapata ochoa (1036454926)\",\"error_message\":null,\"order_id\":\"6B4E2B9376139FA09A68B94EC04DBE94_6CHRS0GX9E_1696531095.1282\",\"due_date\":\"2023-10-06T01:38:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marcela\",\"last_name\":\"Zapata ochoa\",\"email\":\"marcela.zapata@hotmail.com\",\"phone_number\":\"3128351811\",\"address\":null,\"creation_date\":\"2023-10-05T13:38:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmzdaazuuxvf2hcpu4g/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 18:39:51','2023-10-05 18:39:51'),(9971,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T13:40:39-05:00\",\"transaction\":{\"id\":\"trh8tygcmtslszao2srd\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"202578971\",\"creation_date\":\"2023-10-05T13:36:12-05:00\",\"operation_date\":\"2023-10-05T13:40:14-05:00\",\"description\":\"Pago Mensual academia: Emanuel Pacheco Granada (1013466320)\",\"error_message\":null,\"order_id\":\"4BB948D5B21472509627F7F4C2A44784_WCXKPFZ108_1696530932.4945\",\"due_date\":\"2023-10-06T01:36:12-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria Camila \",\"last_name\":\"Arango Granada \",\"email\":\"Camilaarango2809@gmail.com\",\"phone_number\":\"3242761738\",\"address\":null,\"creation_date\":\"2023-10-05T13:36:12-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 18:40:40','2023-10-05 18:40:40'),(9972,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T13:42:06-05:00\",\"transaction\":{\"id\":\"trmzdaazuuxvf2hcpu4g\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"202582970\",\"creation_date\":\"2023-10-05T13:38:56-05:00\",\"operation_date\":\"2023-10-05T13:41:25-05:00\",\"description\":\"Pago Mensual academia: Samuel Zapata ochoa (1036454926)\",\"error_message\":null,\"order_id\":\"6B4E2B9376139FA09A68B94EC04DBE94_6CHRS0GX9E_1696531095.1282\",\"due_date\":\"2023-10-06T01:38:56-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Marcela\",\"last_name\":\"Zapata ochoa\",\"email\":\"marcela.zapata@hotmail.com\",\"phone_number\":\"3128351811\",\"address\":null,\"creation_date\":\"2023-10-05T13:38:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 18:42:07','2023-10-05 18:42:07'),(9973,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  877\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T13:54:31-05:00\",\"transaction\":{\"id\":\"trusd30gcwvtg4m5zfa0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-05T13:54:31-05:00\",\"operation_date\":\"2023-10-05T13:54:31-05:00\",\"description\":\"Pago Mensual academia: Isaac Bastidas (1040751513)\",\"error_message\":null,\"order_id\":\"C1AEB6517A1C7F33514F7FF69047E74E_LFDEI0CS1W_1696532065.6228\",\"amount\":165900.00,\"customer\":{\"name\":\"milena\",\"last_name\":\"Gonzalez\",\"email\":\"milego2122@hotmail.com\",\"phone_number\":\"3137509314\",\"address\":null,\"creation_date\":\"2023-10-05T13:54:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trusd30gcwvtg4m5zfa0/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 18:54:31','2023-10-05 18:54:31'),(9974,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1131\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T13:56:46-05:00\",\"transaction\":{\"id\":\"trusd30gcwvtg4m5zfa0\",\"authorization\":\"135645\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-05T13:54:31-05:00\",\"operation_date\":\"2023-10-05T13:56:45-05:00\",\"description\":\"Pago Mensual academia: Isaac Bastidas (1040751513)\",\"error_message\":null,\"order_id\":\"C1AEB6517A1C7F33514F7FF69047E74E_LFDEI0CS1W_1696532065.6228\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX6316\",\"holder_name\":\"Robeiro Bastidas \",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"milena\",\"last_name\":\"Gonzalez\",\"email\":\"milego2122@hotmail.com\",\"phone_number\":\"3137509314\",\"address\":null,\"creation_date\":\"2023-10-05T13:54:31-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trusd30gcwvtg4m5zfa0/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 18:56:47','2023-10-05 18:56:47'),(9975,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  877\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T13:57:23-05:00\",\"transaction\":{\"id\":\"trxlm9eftso85yfsvilm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-05T13:57:23-05:00\",\"operation_date\":\"2023-10-05T13:57:23-05:00\",\"description\":\"Pago Mensual academia: Isaac Bastidas (1040751513)\",\"error_message\":null,\"order_id\":\"473803F0F2EBD77D83EE60DAAA61F381_5ZMTKB24LU_1696532239.3041\",\"amount\":165900.00,\"customer\":{\"name\":\"milena\",\"last_name\":\"Gonzalez\",\"email\":\"milego2122@hotmail.com\",\"phone_number\":\"3137509314\",\"address\":null,\"creation_date\":\"2023-10-05T13:57:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxlm9eftso85yfsvilm/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 18:57:23','2023-10-05 18:57:23'),(9976,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1131\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T13:58:54-05:00\",\"transaction\":{\"id\":\"trxlm9eftso85yfsvilm\",\"authorization\":\"135854\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-05T13:57:23-05:00\",\"operation_date\":\"2023-10-05T13:58:53-05:00\",\"description\":\"Pago Mensual academia: Isaac Bastidas (1040751513)\",\"error_message\":null,\"order_id\":\"473803F0F2EBD77D83EE60DAAA61F381_5ZMTKB24LU_1696532239.3041\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX6316\",\"holder_name\":\"Robeiro Bastidas \",\"expiration_year\":\"26\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"milena\",\"last_name\":\"Gonzalez\",\"email\":\"milego2122@hotmail.com\",\"phone_number\":\"3137509314\",\"address\":null,\"creation_date\":\"2023-10-05T13:57:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxlm9eftso85yfsvilm/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 18:58:55','2023-10-05 18:58:55'),(9977,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T15:01:27-05:00\",\"transaction\":{\"id\":\"trtds0t5v03nswplsjp8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T15:00:09-05:00\",\"operation_date\":\"2023-10-05T15:00:09-05:00\",\"description\":\"Pago Mensual academia: Mattias David Henao Vasquez (1155713038)\",\"error_message\":null,\"order_id\":\"A546203962B88771BB06FAF8D6EC065E_LECZU8G231_1696536006.7125\",\"due_date\":\"2023-10-06T03:00:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"vasquez bustos\",\"email\":\"sarawac@hotmail.com\",\"phone_number\":\"3004331580\",\"address\":null,\"creation_date\":\"2023-10-05T15:00:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtds0t5v03nswplsjp8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 20:01:28','2023-10-05 20:01:28'),(9978,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  808\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T15:02:47-05:00\",\"transaction\":{\"id\":\"trtds0t5v03nswplsjp8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"202809876\",\"creation_date\":\"2023-10-05T15:00:09-05:00\",\"operation_date\":\"2023-10-05T15:02:31-05:00\",\"description\":\"Pago Mensual academia: Mattias David Henao Vasquez (1155713038)\",\"error_message\":null,\"order_id\":\"A546203962B88771BB06FAF8D6EC065E_LECZU8G231_1696536006.7125\",\"due_date\":\"2023-10-06T03:00:09-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"sara\",\"last_name\":\"vasquez bustos\",\"email\":\"sarawac@hotmail.com\",\"phone_number\":\"3004331580\",\"address\":null,\"creation_date\":\"2023-10-05T15:00:09-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 20:02:48','2023-10-05 20:02:48'),(9979,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T15:31:18-05:00\",\"transaction\":{\"id\":\"tr1glofb2ahhh5fww2ix\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-05T15:31:18-05:00\",\"operation_date\":\"2023-10-05T15:31:18-05:00\",\"description\":\"Pago Inscripción academia: JORGE ALEJANDRO VALENCIA (8432135)\",\"error_message\":null,\"order_id\":\"8FC983A91396319D8C394084E2D749D7_PY3295BCR4_1696537873.817\",\"amount\":191000.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"VALENCIA\",\"email\":\"alejovalencia25@hotmail.com\",\"phone_number\":\"3147004765\",\"address\":null,\"creation_date\":\"2023-10-05T15:31:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1glofb2ahhh5fww2ix/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 20:31:19','2023-10-05 20:31:19'),(9980,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T15:31:48-05:00\",\"transaction\":{\"id\":\"tr6ft3pg9pnxbscwlggp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T15:30:29-05:00\",\"operation_date\":\"2023-10-05T15:30:29-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Cordoba Lemos (1020322520)\",\"error_message\":null,\"order_id\":\"0D27688C61C5A172E8E45956CD70CBA2_L0Y6O53IFD_1696537823.1881\",\"due_date\":\"2023-10-06T03:30:29-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Cordoba Lemos\",\"email\":\"wesulebe@hotmail.com\",\"phone_number\":\"3207629538\",\"address\":null,\"creation_date\":\"2023-10-05T15:30:29-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6ft3pg9pnxbscwlggp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 20:31:49','2023-10-05 20:31:49'),(9981,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-05T15:32:06-05:00\",\"transaction\":{\"id\":\"tr6ft3pg9pnxbscwlggp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-05T15:30:29-05:00\",\"operation_date\":\"2023-10-05T15:31:57-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Cordoba Lemos (1020322520)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"0D27688C61C5A172E8E45956CD70CBA2_L0Y6O53IFD_1696537823.1881\",\"due_date\":\"2023-10-06T03:30:29-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Cordoba Lemos\",\"email\":\"wesulebe@hotmail.com\",\"phone_number\":\"3207629538\",\"address\":null,\"creation_date\":\"2023-10-05T15:30:29-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 20:32:06','2023-10-05 20:32:06'),(9982,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1230\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T15:32:18-05:00\",\"transaction\":{\"id\":\"tr1glofb2ahhh5fww2ix\",\"authorization\":\"153218\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":2,\"conciliated\":true,\"creation_date\":\"2023-10-05T15:31:18-05:00\",\"operation_date\":\"2023-10-05T15:32:18-05:00\",\"description\":\"Pago Inscripción academia: JORGE ALEJANDRO VALENCIA (8432135)\",\"error_message\":null,\"order_id\":\"8FC983A91396319D8C394084E2D749D7_PY3295BCR4_1696537873.817\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"549156XXXXXX9877\",\"holder_name\":\"JORGE A VALENCIA \",\"expiration_year\":\"24\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DAVIVIENDA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":2,\"payments_type\":\"without_interest\"},\"amount\":191000.00,\"customer\":{\"name\":\"ALEJANDRO\",\"last_name\":\"VALENCIA\",\"email\":\"alejovalencia25@hotmail.com\",\"phone_number\":\"3147004765\",\"address\":null,\"creation_date\":\"2023-10-05T15:31:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1glofb2ahhh5fww2ix/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 20:32:19','2023-10-05 20:32:19'),(9983,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T15:33:46-05:00\",\"transaction\":{\"id\":\"tr6j1hk7gd4oduxi1urs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T15:32:40-05:00\",\"operation_date\":\"2023-10-05T15:32:40-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Cordoba Lemos (1020322520)\",\"error_message\":null,\"order_id\":\"0D27688C61C5A172E8E45956CD70CBA2_L0Y6O53IFD_1696537955.8983\",\"due_date\":\"2023-10-06T03:32:40-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Cordoba Lemos\",\"email\":\"wesulebe@hotmail.com\",\"phone_number\":\"3207629538\",\"address\":null,\"creation_date\":\"2023-10-05T15:32:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr6j1hk7gd4oduxi1urs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 20:33:46','2023-10-05 20:33:46'),(9984,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T15:33:55-05:00\",\"transaction\":{\"id\":\"tryzl3hbxaye545usbtm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T15:33:22-05:00\",\"operation_date\":\"2023-10-05T15:33:22-05:00\",\"description\":\"Pago Mensual academia: Jerónimo molina muñetón (1013464337)\",\"error_message\":null,\"order_id\":\"41BCFD9AB658EBAAC1661F58080AAD6B_Z5IX4R07WM_1696537994.8129\",\"due_date\":\"2023-10-06T03:33:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"muñeton agudelo\",\"email\":\"johana032690@hotmail.com\",\"phone_number\":\"3108325627\",\"address\":null,\"creation_date\":\"2023-10-05T15:33:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tryzl3hbxaye545usbtm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 20:33:56','2023-10-05 20:33:56'),(9985,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  855\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-05T14:42:26-06:00\",\"transaction\":{\"id\":\"tryzl3hbxaye545usbtm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-05T15:33:22-06:00\",\"operation_date\":\"2023-10-05T15:43:33-06:00\",\"description\":\"Pago Mensual academia: Jerónimo molina muñetón (1013464337)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"41BCFD9AB658EBAAC1661F58080AAD6B_Z5IX4R07WM_1696537994.8129\",\"due_date\":\"2023-10-06T03:33:22-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"muñeton agudelo\",\"email\":\"johana032690@hotmail.com\",\"phone_number\":\"3108325627\",\"address\":null,\"creation_date\":\"2023-10-05T15:33:22-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 20:42:27','2023-10-05 20:42:27'),(9986,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-05T14:48:12-06:00\",\"transaction\":{\"id\":\"tr6j1hk7gd4oduxi1urs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-05T15:32:40-06:00\",\"operation_date\":\"2023-10-05T15:49:36-06:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Cordoba Lemos (1020322520)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"0D27688C61C5A172E8E45956CD70CBA2_L0Y6O53IFD_1696537955.8983\",\"due_date\":\"2023-10-06T03:32:40-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Cordoba Lemos\",\"email\":\"wesulebe@hotmail.com\",\"phone_number\":\"3207629538\",\"address\":null,\"creation_date\":\"2023-10-05T15:32:40-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 20:48:13','2023-10-05 20:48:13'),(9987,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T16:06:14-05:00\",\"transaction\":{\"id\":\"trn6ggamajefque7ikca\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T16:02:55-05:00\",\"operation_date\":\"2023-10-05T16:02:55-05:00\",\"description\":\"Pago Mensual academia: Jerónimo molina muñetón (1013464337)\",\"error_message\":null,\"order_id\":\"41BCFD9AB658EBAAC1661F58080AAD6B_Z5IX4R07WM_1696538941.2871\",\"due_date\":\"2023-10-06T04:02:55-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"muñeton agudelo\",\"email\":\"johana032690@hotmail.com\",\"phone_number\":\"3108325627\",\"address\":null,\"creation_date\":\"2023-10-05T16:02:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trn6ggamajefque7ikca/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 21:06:14','2023-10-05 21:06:14'),(9988,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T15:09:28-06:00\",\"transaction\":{\"id\":\"trn6ggamajefque7ikca\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"202999128\",\"creation_date\":\"2023-10-05T16:02:55-06:00\",\"operation_date\":\"2023-10-05T00:00:00-06:00\",\"description\":\"Pago Mensual academia: Jerónimo molina muñetón (1013464337)\",\"error_message\":null,\"order_id\":\"41BCFD9AB658EBAAC1661F58080AAD6B_Z5IX4R07WM_1696538941.2871\",\"due_date\":\"2023-10-06T04:02:55-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"johana\",\"last_name\":\"muñeton agudelo\",\"email\":\"johana032690@hotmail.com\",\"phone_number\":\"3108325627\",\"address\":null,\"creation_date\":\"2023-10-05T16:02:55-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 21:09:28','2023-10-05 21:09:28'),(9989,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  909\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T16:22:15-05:00\",\"transaction\":{\"id\":\"trgfqi3f26rwwfsvvmni\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-05T16:22:15-05:00\",\"operation_date\":\"2023-10-05T16:22:15-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Hidalgo Londoño (1023639863)\",\"error_message\":null,\"order_id\":\"03593CE517FEAC573FDAAFA6DCEDEF61_4J9MUW7Y3I_1696540925.4447\",\"amount\":165900.00,\"customer\":{\"name\":\"Andres Felipe\",\"last_name\":\"Hidalgo Londoño\",\"email\":\"luisachica.12@gmail.com\",\"phone_number\":\"3194402621\",\"address\":null,\"creation_date\":\"2023-10-05T16:22:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgfqi3f26rwwfsvvmni/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 21:22:15','2023-10-05 21:22:15'),(9990,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1160\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T16:23:28-05:00\",\"transaction\":{\"id\":\"trgfqi3f26rwwfsvvmni\",\"authorization\":\"162327\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-05T16:22:15-05:00\",\"operation_date\":\"2023-10-05T16:23:27-05:00\",\"description\":\"Pago Mensual academia: Andres Felipe Hidalgo Londoño (1023639863)\",\"error_message\":null,\"order_id\":\"03593CE517FEAC573FDAAFA6DCEDEF61_4J9MUW7Y3I_1696540925.4447\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1748\",\"holder_name\":\"Byron Bastidas\",\"expiration_year\":\"26\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Andres Felipe\",\"last_name\":\"Hidalgo Londoño\",\"email\":\"luisachica.12@gmail.com\",\"phone_number\":\"3194402621\",\"address\":null,\"creation_date\":\"2023-10-05T16:22:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgfqi3f26rwwfsvvmni/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-05 21:23:28','2023-10-05 21:23:28'),(9991,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T16:27:12-05:00\",\"transaction\":{\"id\":\"trraen4a5l80l94nvi4s\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T16:24:18-05:00\",\"operation_date\":\"2023-10-05T16:24:18-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Cordoba Lemos (1020322520)\",\"error_message\":null,\"order_id\":\"0D27688C61C5A172E8E45956CD70CBA2_L0Y6O53IFD_1696541054.4562\",\"due_date\":\"2023-10-06T04:24:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Cordoba Lemos\",\"email\":\"wesulebe@hotmail.com\",\"phone_number\":\"3207629538\",\"address\":null,\"creation_date\":\"2023-10-05T16:24:18-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trraen4a5l80l94nvi4s/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 21:27:12','2023-10-05 21:27:12'),(9992,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T16:28:42-05:00\",\"transaction\":{\"id\":\"trraen4a5l80l94nvi4s\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203062427\",\"creation_date\":\"2023-10-05T16:24:18-05:00\",\"operation_date\":\"2023-10-05T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Cordoba Lemos (1020322520)\",\"error_message\":null,\"order_id\":\"0D27688C61C5A172E8E45956CD70CBA2_L0Y6O53IFD_1696541054.4562\",\"due_date\":\"2023-10-06T04:24:18-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Cordoba Lemos\",\"email\":\"wesulebe@hotmail.com\",\"phone_number\":\"3207629538\",\"address\":null,\"creation_date\":\"2023-10-05T16:24:18-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 21:28:42','2023-10-05 21:28:42'),(9993,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T16:40:08-05:00\",\"transaction\":{\"id\":\"trqd1g5uwfhbxxjfikaj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T16:39:22-05:00\",\"operation_date\":\"2023-10-05T16:39:22-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Dávila Morales (1017942344)\",\"error_message\":null,\"order_id\":\"096D3A817A272647F4ADA2D6D733A8FB_7OSMLE823D_1696541958.6799\",\"due_date\":\"2023-10-06T04:39:22-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Dávila Osorio\",\"email\":\"juancdavilao@gmail.com\",\"phone_number\":\"3104384569\",\"address\":null,\"creation_date\":\"2023-10-05T16:39:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqd1g5uwfhbxxjfikaj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 21:40:09','2023-10-05 21:40:09'),(9994,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T16:41:06-05:00\",\"transaction\":{\"id\":\"trqd1g5uwfhbxxjfikaj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203097563\",\"creation_date\":\"2023-10-05T16:39:22-05:00\",\"operation_date\":\"2023-10-05T16:40:57-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Dávila Morales (1017942344)\",\"error_message\":null,\"order_id\":\"096D3A817A272647F4ADA2D6D733A8FB_7OSMLE823D_1696541958.6799\",\"due_date\":\"2023-10-06T04:39:22-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Carlos\",\"last_name\":\"Dávila Osorio\",\"email\":\"juancdavilao@gmail.com\",\"phone_number\":\"3104384569\",\"address\":null,\"creation_date\":\"2023-10-05T16:39:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 21:41:07','2023-10-05 21:41:07'),(9995,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T16:45:38-05:00\",\"transaction\":{\"id\":\"traygrg8c8c92stwzbrt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T16:44:36-05:00\",\"operation_date\":\"2023-10-05T16:44:36-05:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Ruiz Linares (1239490468)\",\"error_message\":null,\"order_id\":\"F016F25DF05B5B1BC2B8EC0F72D5120C_BJ32YW8S1E_1696542272.9127\",\"due_date\":\"2023-10-06T04:44:36-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mavis\",\"last_name\":\"linares\",\"email\":\"mavis.linares@gmail.com\",\"phone_number\":\"3042543407\",\"address\":null,\"creation_date\":\"2023-10-05T16:44:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traygrg8c8c92stwzbrt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 21:45:39','2023-10-05 21:45:39'),(9996,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T16:46:52-05:00\",\"transaction\":{\"id\":\"traygrg8c8c92stwzbrt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203112026\",\"creation_date\":\"2023-10-05T16:44:36-05:00\",\"operation_date\":\"2023-10-05T16:46:37-05:00\",\"description\":\"Pago Mensual academia: Diego Alejandro Ruiz Linares (1239490468)\",\"error_message\":null,\"order_id\":\"F016F25DF05B5B1BC2B8EC0F72D5120C_BJ32YW8S1E_1696542272.9127\",\"due_date\":\"2023-10-06T04:44:36-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"mavis\",\"last_name\":\"linares\",\"email\":\"mavis.linares@gmail.com\",\"phone_number\":\"3042543407\",\"address\":null,\"creation_date\":\"2023-10-05T16:44:36-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 21:46:52','2023-10-05 21:46:52'),(9997,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  923\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T17:06:46-05:00\",\"transaction\":{\"id\":\"trm2rv6qvefpatfarmj7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T17:05:46-05:00\",\"operation_date\":\"2023-10-05T17:05:46-05:00\",\"description\":\"Pago Mensual academia: David Giraldo Cuervo (1035005563)\",\"error_message\":null,\"order_id\":\"402B0702500CD47FF36E689465AFD783_SG82QKRN4C_1696543540.1363\",\"due_date\":\"2023-10-06T05:05:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"david\",\"last_name\":\"giraldo  cuervo\",\"email\":\"lilitacuervo@gmail.com\",\"phone_number\":\"3193782685\",\"address\":null,\"creation_date\":\"2023-10-05T17:05:46-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trm2rv6qvefpatfarmj7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 22:06:46','2023-10-05 22:06:46'),(9998,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  806\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T17:08:49-05:00\",\"transaction\":{\"id\":\"trm2rv6qvefpatfarmj7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203165591\",\"creation_date\":\"2023-10-05T17:05:46-05:00\",\"operation_date\":\"2023-10-05T17:08:07-05:00\",\"description\":\"Pago Mensual academia: David Giraldo Cuervo (1035005563)\",\"error_message\":null,\"order_id\":\"402B0702500CD47FF36E689465AFD783_SG82QKRN4C_1696543540.1363\",\"due_date\":\"2023-10-06T05:05:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"david\",\"last_name\":\"giraldo  cuervo\",\"email\":\"lilitacuervo@gmail.com\",\"phone_number\":\"3193782685\",\"address\":null,\"creation_date\":\"2023-10-05T17:05:46-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 22:08:50','2023-10-05 22:08:50'),(9999,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  914\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T17:37:31-05:00\",\"transaction\":{\"id\":\"trudq1sy2vywvqrhba7i\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T17:36:49-05:00\",\"operation_date\":\"2023-10-05T17:36:49-05:00\",\"description\":\"Pago Mensual academia: Agustin Mora Sossa (1035015434)\",\"error_message\":null,\"order_id\":\"9DEE60D3205C5EDA2A74F342F26BC6E0_SYB42N0QMR_1696545405.1651\",\"due_date\":\"2023-10-06T05:36:49-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"David\",\"last_name\":\"Mora Quintero\",\"email\":\"dmoraqu@gmail.com\",\"phone_number\":\"3104013189\",\"address\":null,\"creation_date\":\"2023-10-05T17:36:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trudq1sy2vywvqrhba7i/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 22:37:32','2023-10-05 22:37:32'),(10000,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  797\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T17:39:19-05:00\",\"transaction\":{\"id\":\"trudq1sy2vywvqrhba7i\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203240140\",\"creation_date\":\"2023-10-05T17:36:49-05:00\",\"operation_date\":\"2023-10-05T17:39:10-05:00\",\"description\":\"Pago Mensual academia: Agustin Mora Sossa (1035015434)\",\"error_message\":null,\"order_id\":\"9DEE60D3205C5EDA2A74F342F26BC6E0_SYB42N0QMR_1696545405.1651\",\"due_date\":\"2023-10-06T05:36:49-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"David\",\"last_name\":\"Mora Quintero\",\"email\":\"dmoraqu@gmail.com\",\"phone_number\":\"3104013189\",\"address\":null,\"creation_date\":\"2023-10-05T17:36:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-05 22:39:20','2023-10-05 22:39:20'),(10001,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T19:05:35-05:00\",\"transaction\":{\"id\":\"trx1pf7ksl2xeouw9xrq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T19:05:05-05:00\",\"operation_date\":\"2023-10-05T19:05:05-05:00\",\"description\":\"Pago Mensual academia: Sebastián Restrepo Londoño (1017938601)\",\"error_message\":null,\"order_id\":\"8F04AC8EADB8A829A4C2117ADE0F23DA_G5RJLE2SYC_1696550698.5614\",\"due_date\":\"2023-10-06T07:05:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Astrid\",\"last_name\":\"Londoño Zapata\",\"email\":\"astro_1218@hotmail.com\",\"phone_number\":\"3113377769\",\"address\":null,\"creation_date\":\"2023-10-05T19:05:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trx1pf7ksl2xeouw9xrq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 00:05:35','2023-10-06 00:05:35'),(10002,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T19:07:16-05:00\",\"transaction\":{\"id\":\"trx1pf7ksl2xeouw9xrq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203449126\",\"creation_date\":\"2023-10-05T19:05:05-05:00\",\"operation_date\":\"2023-10-05T00:00:00-05:00\",\"description\":\"Pago Mensual academia: Sebastián Restrepo Londoño (1017938601)\",\"error_message\":null,\"order_id\":\"8F04AC8EADB8A829A4C2117ADE0F23DA_G5RJLE2SYC_1696550698.5614\",\"due_date\":\"2023-10-06T07:05:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Astrid\",\"last_name\":\"Londoño Zapata\",\"email\":\"astro_1218@hotmail.com\",\"phone_number\":\"3113377769\",\"address\":null,\"creation_date\":\"2023-10-05T19:05:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 00:07:16','2023-10-06 00:07:16'),(10003,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T19:50:40-05:00\",\"transaction\":{\"id\":\"trolws46jzf8tgxqxand\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T19:49:49-05:00\",\"operation_date\":\"2023-10-05T19:49:49-05:00\",\"description\":\"Pago Mensual academia: emiliano saldarriaga perez (1021946106)\",\"error_message\":null,\"order_id\":\"BDBCA288FEE7F92F2BFA9F7012727740_9PEQLU5GMN_1696553378.1279\",\"due_date\":\"2023-10-06T07:49:49-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Maria Patricia\",\"last_name\":\"Perez Alzate\",\"email\":\"patrialzate94@gmail.com\",\"phone_number\":\"3006114131\",\"address\":null,\"creation_date\":\"2023-10-05T19:49:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trolws46jzf8tgxqxand/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 00:50:41','2023-10-06 00:50:41'),(10004,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T19:51:58-05:00\",\"transaction\":{\"id\":\"trolws46jzf8tgxqxand\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203555908\",\"creation_date\":\"2023-10-05T19:49:49-05:00\",\"operation_date\":\"2023-10-05T19:51:38-05:00\",\"description\":\"Pago Mensual academia: emiliano saldarriaga perez (1021946106)\",\"error_message\":null,\"order_id\":\"BDBCA288FEE7F92F2BFA9F7012727740_9PEQLU5GMN_1696553378.1279\",\"due_date\":\"2023-10-06T07:49:49-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Maria Patricia\",\"last_name\":\"Perez Alzate\",\"email\":\"patrialzate94@gmail.com\",\"phone_number\":\"3006114131\",\"address\":null,\"creation_date\":\"2023-10-05T19:49:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 00:51:59','2023-10-06 00:51:59'),(10005,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T19:55:24-05:00\",\"transaction\":{\"id\":\"trpebltzr9lmxnyaypc1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T19:54:19-05:00\",\"operation_date\":\"2023-10-05T19:54:19-05:00\",\"description\":\"Pago Mensual academia: Samuel Loaiza Toro (1038267129)\",\"error_message\":null,\"order_id\":\"3CE3BD7D63A2C9C81983CC8E9BD02AE5_BQYEOF71D3_1696553656.8173\",\"due_date\":\"2023-10-06T07:54:19-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"sandra\",\"last_name\":\"toro acevedo\",\"email\":\"sandristoro@gmail.com\",\"phone_number\":\"3185222868\",\"address\":null,\"creation_date\":\"2023-10-05T19:54:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpebltzr9lmxnyaypc1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 00:55:25','2023-10-06 00:55:25'),(10006,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T19:56:55-05:00\",\"transaction\":{\"id\":\"trpebltzr9lmxnyaypc1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203566652\",\"creation_date\":\"2023-10-05T19:54:19-05:00\",\"operation_date\":\"2023-10-05T19:56:22-05:00\",\"description\":\"Pago Mensual academia: Samuel Loaiza Toro (1038267129)\",\"error_message\":null,\"order_id\":\"3CE3BD7D63A2C9C81983CC8E9BD02AE5_BQYEOF71D3_1696553656.8173\",\"due_date\":\"2023-10-06T07:54:19-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"sandra\",\"last_name\":\"toro acevedo\",\"email\":\"sandristoro@gmail.com\",\"phone_number\":\"3185222868\",\"address\":null,\"creation_date\":\"2023-10-05T19:54:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 00:56:56','2023-10-06 00:56:56'),(10007,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T20:13:21-05:00\",\"transaction\":{\"id\":\"trbmavstm2wkam59vyvq\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T20:12:05-05:00\",\"operation_date\":\"2023-10-05T20:12:05-05:00\",\"description\":\"Pago Mensual academia: Alejandro Higuera Arboleda (1035006557)\",\"error_message\":null,\"order_id\":\"2120606D6A751A93E392B46D945BBA9D_OF83HQBCJL_1696554722.5875\",\"due_date\":\"2023-10-06T08:12:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Isabel Cristina\",\"last_name\":\"Arboleda Álvarez\",\"email\":\"isarboleda@hotmail.com\",\"phone_number\":\"3183386756\",\"address\":null,\"creation_date\":\"2023-10-05T20:12:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trbmavstm2wkam59vyvq/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 01:13:21','2023-10-06 01:13:21'),(10008,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T20:15:07-05:00\",\"transaction\":{\"id\":\"trbmavstm2wkam59vyvq\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203606791\",\"creation_date\":\"2023-10-05T20:12:05-05:00\",\"operation_date\":\"2023-10-05T20:14:48-05:00\",\"description\":\"Pago Mensual academia: Alejandro Higuera Arboleda (1035006557)\",\"error_message\":null,\"order_id\":\"2120606D6A751A93E392B46D945BBA9D_OF83HQBCJL_1696554722.5875\",\"due_date\":\"2023-10-06T08:12:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Isabel Cristina\",\"last_name\":\"Arboleda Álvarez\",\"email\":\"isarboleda@hotmail.com\",\"phone_number\":\"3183386756\",\"address\":null,\"creation_date\":\"2023-10-05T20:12:05-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 01:15:07','2023-10-06 01:15:07'),(10009,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T20:30:14-05:00\",\"transaction\":{\"id\":\"trhlunvxggu55jt6tx35\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T20:27:47-05:00\",\"operation_date\":\"2023-10-05T20:27:47-05:00\",\"description\":\"Pago Mensual academia: Simón Alzate Sanz (1035008452)\",\"error_message\":null,\"order_id\":\"19485224D128528DA1602CA47383F078_NJCTP6FESG_1696555649.721\",\"due_date\":\"2023-10-06T08:27:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Simón\",\"last_name\":\"Alzate Sanz\",\"email\":\"milenasanz7@hotmail.com\",\"phone_number\":\"3128816645\",\"address\":null,\"creation_date\":\"2023-10-05T20:27:47-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhlunvxggu55jt6tx35/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 01:30:15','2023-10-06 01:30:15'),(10010,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T20:31:51-05:00\",\"transaction\":{\"id\":\"trhlunvxggu55jt6tx35\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203644908\",\"creation_date\":\"2023-10-05T20:27:47-05:00\",\"operation_date\":\"2023-10-05T20:31:31-05:00\",\"description\":\"Pago Mensual academia: Simón Alzate Sanz (1035008452)\",\"error_message\":null,\"order_id\":\"19485224D128528DA1602CA47383F078_NJCTP6FESG_1696555649.721\",\"due_date\":\"2023-10-06T08:27:47-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Simón\",\"last_name\":\"Alzate Sanz\",\"email\":\"milenasanz7@hotmail.com\",\"phone_number\":\"3128816645\",\"address\":null,\"creation_date\":\"2023-10-05T20:27:47-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 01:31:52','2023-10-06 01:31:52'),(10011,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T20:32:29-05:00\",\"transaction\":{\"id\":\"tripzw6zkyinj2elkkhy\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T20:30:13-05:00\",\"operation_date\":\"2023-10-05T20:30:13-05:00\",\"description\":\"Pago Mensual academia: santiago lotero castro (1034923449)\",\"error_message\":null,\"order_id\":\"37DB6BB5F1DB992DF92A919D20757EEC_87CNUIT0PO_1696555802.6501\",\"due_date\":\"2023-10-06T08:30:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alex\",\"last_name\":\"Castro\",\"email\":\"milenacastro492@gmail.com\",\"phone_number\":\"3052615745\",\"address\":null,\"creation_date\":\"2023-10-05T20:30:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tripzw6zkyinj2elkkhy/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 01:32:30','2023-10-06 01:32:30'),(10012,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T20:34:34-05:00\",\"transaction\":{\"id\":\"tripzw6zkyinj2elkkhy\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203650010\",\"creation_date\":\"2023-10-05T20:30:13-05:00\",\"operation_date\":\"2023-10-05T00:00:00-05:00\",\"description\":\"Pago Mensual academia: santiago lotero castro (1034923449)\",\"error_message\":null,\"order_id\":\"37DB6BB5F1DB992DF92A919D20757EEC_87CNUIT0PO_1696555802.6501\",\"due_date\":\"2023-10-06T08:30:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Alex\",\"last_name\":\"Castro\",\"email\":\"milenacastro492@gmail.com\",\"phone_number\":\"3052615745\",\"address\":null,\"creation_date\":\"2023-10-05T20:30:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 01:34:34','2023-10-06 01:34:34'),(10013,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T20:51:49-05:00\",\"transaction\":{\"id\":\"trhagtcblt5i95u7s00f\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T20:50:46-05:00\",\"operation_date\":\"2023-10-05T20:50:46-05:00\",\"description\":\"Pago Mensual academia: Mateo Suarez Salazar (1040574340)\",\"error_message\":null,\"order_id\":\"702CAFA3BB4C9C86E4A3B6834B45AEDD_A84F9OD2GB_1696557042.1282\",\"due_date\":\"2023-10-06T08:50:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Salazar Cardona\",\"email\":\"carito-900@hotmail.com\",\"phone_number\":\"3006393961\",\"address\":null,\"creation_date\":\"2023-10-05T20:50:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trhagtcblt5i95u7s00f/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 01:51:50','2023-10-06 01:51:50'),(10014,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  809\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T20:53:02-05:00\",\"transaction\":{\"id\":\"trhagtcblt5i95u7s00f\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203693339\",\"creation_date\":\"2023-10-05T20:50:46-05:00\",\"operation_date\":\"2023-10-05T20:52:46-05:00\",\"description\":\"Pago Mensual academia: Mateo Suarez Salazar (1040574340)\",\"error_message\":null,\"order_id\":\"702CAFA3BB4C9C86E4A3B6834B45AEDD_A84F9OD2GB_1696557042.1282\",\"due_date\":\"2023-10-06T08:50:46-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Carolina\",\"last_name\":\"Salazar Cardona\",\"email\":\"carito-900@hotmail.com\",\"phone_number\":\"3006393961\",\"address\":null,\"creation_date\":\"2023-10-05T20:50:45-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 01:53:03','2023-10-06 01:53:03'),(10015,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T21:00:09-05:00\",\"transaction\":{\"id\":\"trmhrq3xhxjwi8l8fvrf\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T20:55:13-05:00\",\"operation_date\":\"2023-10-05T20:55:13-05:00\",\"description\":\"Pago Mensual academia: emanuel zuluaga henao (1027806389)\",\"error_message\":null,\"order_id\":\"3D8E03E8B133B16F13A586F0C01B6866_YVPAFC8GX6_1696557304.5951\",\"due_date\":\"2023-10-06T08:55:13-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"emanuel\",\"last_name\":\"zuluaga henao\",\"email\":\"jackehc03@gmail.com\",\"phone_number\":\"3215387431\",\"address\":null,\"creation_date\":\"2023-10-05T20:55:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trmhrq3xhxjwi8l8fvrf/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 02:00:09','2023-10-06 02:00:09'),(10016,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T20:03:21-06:00\",\"transaction\":{\"id\":\"trmhrq3xhxjwi8l8fvrf\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203711562\",\"creation_date\":\"2023-10-05T20:55:13-06:00\",\"operation_date\":\"2023-10-05T21:01:20-06:00\",\"description\":\"Pago Mensual academia: emanuel zuluaga henao (1027806389)\",\"error_message\":null,\"order_id\":\"3D8E03E8B133B16F13A586F0C01B6866_YVPAFC8GX6_1696557304.5951\",\"due_date\":\"2023-10-06T08:55:13-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"emanuel\",\"last_name\":\"zuluaga henao\",\"email\":\"jackehc03@gmail.com\",\"phone_number\":\"3215387431\",\"address\":null,\"creation_date\":\"2023-10-05T20:55:13-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 02:03:21','2023-10-06 02:03:21'),(10017,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  933\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T21:21:44-05:00\",\"transaction\":{\"id\":\"traxcsmgaezxuu7lxsj3\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T21:20:49-05:00\",\"operation_date\":\"2023-10-05T21:20:49-05:00\",\"description\":\"Pago Mensual academia: Agustin rodriguez velasquez (1027815244)\",\"error_message\":null,\"order_id\":\"BD470CA955D9497BBCB808E59952FFFC_8Z2N4MPXEV_1696558845.7913\",\"due_date\":\"2023-10-06T09:20:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"darly\",\"last_name\":\"velasquez atehortua\",\"email\":\"darly8714@hotmail.com\",\"phone_number\":\"3217822394\",\"address\":null,\"creation_date\":\"2023-10-05T21:20:49-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traxcsmgaezxuu7lxsj3/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 02:21:44','2023-10-06 02:21:44'),(10018,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  816\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T21:23:12-05:00\",\"transaction\":{\"id\":\"traxcsmgaezxuu7lxsj3\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203755225\",\"creation_date\":\"2023-10-05T21:20:49-05:00\",\"operation_date\":\"2023-10-05T21:22:51-05:00\",\"description\":\"Pago Mensual academia: Agustin rodriguez velasquez (1027815244)\",\"error_message\":null,\"order_id\":\"BD470CA955D9497BBCB808E59952FFFC_8Z2N4MPXEV_1696558845.7913\",\"due_date\":\"2023-10-06T09:20:49-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"darly\",\"last_name\":\"velasquez atehortua\",\"email\":\"darly8714@hotmail.com\",\"phone_number\":\"3217822394\",\"address\":null,\"creation_date\":\"2023-10-05T21:20:49-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 02:23:13','2023-10-06 02:23:13'),(10019,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T21:39:28-05:00\",\"transaction\":{\"id\":\"trgqhznf38bp0kgj7bea\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T21:37:57-05:00\",\"operation_date\":\"2023-10-05T21:37:57-05:00\",\"description\":\"Pago Mensual academia: Luis Fernando Guerrero Palacios (1025766751)\",\"error_message\":null,\"order_id\":\"AE87A54E183C075C494C4D397D126A66_SCQ9BH26LZ_1696559865.8237\",\"due_date\":\"2023-10-06T09:37:57-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luis Hernando\",\"last_name\":\"Guerrero Renteria\",\"email\":\"luishg3535@gmail.com\",\"phone_number\":\"3137669507\",\"address\":null,\"creation_date\":\"2023-10-05T21:37:57-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgqhznf38bp0kgj7bea/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 02:39:29','2023-10-06 02:39:29'),(10020,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T20:45:22-06:00\",\"transaction\":{\"id\":\"trgqhznf38bp0kgj7bea\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203786744\",\"creation_date\":\"2023-10-05T21:37:57-06:00\",\"operation_date\":\"2023-10-05T21:43:10-06:00\",\"description\":\"Pago Mensual academia: Luis Fernando Guerrero Palacios (1025766751)\",\"error_message\":null,\"order_id\":\"AE87A54E183C075C494C4D397D126A66_SCQ9BH26LZ_1696559865.8237\",\"due_date\":\"2023-10-06T09:37:57-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luis Hernando\",\"last_name\":\"Guerrero Renteria\",\"email\":\"luishg3535@gmail.com\",\"phone_number\":\"3137669507\",\"address\":null,\"creation_date\":\"2023-10-05T21:37:57-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 02:45:23','2023-10-06 02:45:23'),(10021,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T22:10:48-05:00\",\"transaction\":{\"id\":\"trsiegokbnsx3wkuqehu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T22:10:05-05:00\",\"operation_date\":\"2023-10-05T22:10:05-05:00\",\"description\":\"Pago Mensual academia: thomas jeronimo galeano tobon (1032014996)\",\"error_message\":null,\"order_id\":\"C793B3BE8F18731F2A4C627FB3C6C63D_3VMZGXNWOC_1696561802.3048\",\"due_date\":\"2023-10-06T10:10:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"michael\",\"last_name\":\"galeano\",\"email\":\"migalca2017@hotmail.com\",\"phone_number\":\"3012230146\",\"address\":null,\"creation_date\":\"2023-10-05T22:10:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsiegokbnsx3wkuqehu/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 03:10:49','2023-10-06 03:10:49'),(10022,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T22:12:12-05:00\",\"transaction\":{\"id\":\"tr7liidiap2tyrayxsum\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T22:07:21-05:00\",\"operation_date\":\"2023-10-05T22:07:21-05:00\",\"description\":\"Pago Mensual academia: Geronimo Paba Moreno (1023167804)\",\"error_message\":null,\"order_id\":\"0307FEC2CEF6AEC340B8426490977EF0_PQW5CX87NV_1696561637.8687\",\"due_date\":\"2023-10-06T10:07:21-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Geronimo\",\"last_name\":\"Paba Moreno\",\"email\":\"magalymoreno10@hotmail.com\",\"phone_number\":\"3128358647\",\"address\":null,\"creation_date\":\"2023-10-05T22:07:21-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr7liidiap2tyrayxsum/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 03:12:13','2023-10-06 03:12:13'),(10023,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T21:12:19-06:00\",\"transaction\":{\"id\":\"trsiegokbnsx3wkuqehu\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203837171\",\"creation_date\":\"2023-10-05T22:10:05-06:00\",\"operation_date\":\"2023-10-05T22:11:49-06:00\",\"description\":\"Pago Mensual academia: thomas jeronimo galeano tobon (1032014996)\",\"error_message\":null,\"order_id\":\"C793B3BE8F18731F2A4C627FB3C6C63D_3VMZGXNWOC_1696561802.3048\",\"due_date\":\"2023-10-06T10:10:05-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"michael\",\"last_name\":\"galeano\",\"email\":\"migalca2017@hotmail.com\",\"phone_number\":\"3012230146\",\"address\":null,\"creation_date\":\"2023-10-05T22:10:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 03:12:19','2023-10-06 03:12:19'),(10024,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  938\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-05T22:24:31-05:00\",\"transaction\":{\"id\":\"trgyosxccwolynrh0fmh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-05T22:23:38-05:00\",\"operation_date\":\"2023-10-05T22:23:38-05:00\",\"description\":\"Pago Mensual academia: juan elias mosquera tobon (1018247755)\",\"error_message\":null,\"order_id\":\"EA96EFC03B9A050D895110DB8C4AF057_OKL9X01P7Q_1696562609.1275\",\"due_date\":\"2023-10-06T10:23:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Audier Jaime\",\"last_name\":\"Mosquera Medina\",\"email\":\"jaime25mosquera@gmail.com\",\"phone_number\":\"3138433267\",\"address\":null,\"creation_date\":\"2023-10-05T22:23:38-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trgyosxccwolynrh0fmh/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 03:24:32','2023-10-06 03:24:32'),(10025,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  821\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-05T22:26:17-05:00\",\"transaction\":{\"id\":\"trgyosxccwolynrh0fmh\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"203856811\",\"creation_date\":\"2023-10-05T22:23:38-05:00\",\"operation_date\":\"2023-10-05T22:25:53-05:00\",\"description\":\"Pago Mensual academia: juan elias mosquera tobon (1018247755)\",\"error_message\":null,\"order_id\":\"EA96EFC03B9A050D895110DB8C4AF057_OKL9X01P7Q_1696562609.1275\",\"due_date\":\"2023-10-06T10:23:38-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Audier Jaime\",\"last_name\":\"Mosquera Medina\",\"email\":\"jaime25mosquera@gmail.com\",\"phone_number\":\"3138433267\",\"address\":null,\"creation_date\":\"2023-10-05T22:23:38-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 03:26:17','2023-10-06 03:26:17'),(10026,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  848\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-05T21:33:09-06:00\",\"transaction\":{\"id\":\"tr7liidiap2tyrayxsum\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-05T22:07:21-06:00\",\"operation_date\":\"2023-10-05T22:12:23-06:00\",\"description\":\"Pago Mensual academia: Geronimo Paba Moreno (1023167804)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"0307FEC2CEF6AEC340B8426490977EF0_PQW5CX87NV_1696561637.8687\",\"due_date\":\"2023-10-06T10:07:21-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Geronimo\",\"last_name\":\"Paba Moreno\",\"email\":\"magalymoreno10@hotmail.com\",\"phone_number\":\"3128358647\",\"address\":null,\"creation_date\":\"2023-10-05T22:07:21-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 03:33:10','2023-10-06 03:33:10'),(10027,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  937\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-06T02:16:31-06:00\",\"transaction\":{\"id\":\"trruxyvahtxls8ty7oxn\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-10-04T21:57:50-06:00\",\"operation_date\":\"2023-10-04T21:57:50-06:00\",\"description\":\"Pago Mensual academia: Jacobo Velasquez Muñoz (1020323171)\",\"error_message\":null,\"order_id\":\"1138D90EF0A0848A542E57D1595F58EA_L9PE3JNUQH_1696474666.0146\",\"due_date\":\"2023-10-05T09:57:50-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jhon Arley\",\"last_name\":\"Velasquez Gonzalez\",\"email\":\"honderdog@hotmail.com\",\"phone_number\":\"3104759413\",\"address\":null,\"creation_date\":\"2023-10-04T21:57:50-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trruxyvahtxls8ty7oxn/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 08:16:32','2023-10-06 08:16:32'),(10028,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  926\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-06T02:16:31-06:00\",\"transaction\":{\"id\":\"trjk2sakafqx2uclmdpd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-10-04T19:18:18-06:00\",\"operation_date\":\"2023-10-04T19:18:18-06:00\",\"description\":\"Pago Mensual academia: Simón Jiménez Cano (1130704440)\",\"error_message\":null,\"order_id\":\"D3E0F226DF6865B28FB677548370F467_H0SOEF1IV7_1696465093.9382\",\"due_date\":\"2023-10-05T07:18:18-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Jiménez Cano\",\"email\":\"mariacano3011@gmail.com\",\"phone_number\":\"3133424011\",\"address\":null,\"creation_date\":\"2023-10-04T19:18:18-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjk2sakafqx2uclmdpd/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 08:16:32','2023-10-06 08:16:32'),(10029,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T07:43:19-05:00\",\"transaction\":{\"id\":\"trlnc5vivx9jfxllkiei\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T07:34:43-05:00\",\"operation_date\":\"2023-10-06T07:34:43-05:00\",\"description\":\"Pago Mensual academia: Geronimo Paba Moreno (1023167804)\",\"error_message\":null,\"order_id\":\"0307FEC2CEF6AEC340B8426490977EF0_PQW5CX87NV_1696595676.2456\",\"due_date\":\"2023-10-06T19:34:43-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"RAMON \",\"last_name\":\"PABA \",\"email\":\"magalymoreno10@hotmail.com\",\"phone_number\":\"3005576931\",\"address\":null,\"creation_date\":\"2023-10-06T07:34:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlnc5vivx9jfxllkiei/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 12:43:20','2023-10-06 12:43:20'),(10030,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T06:48:11-06:00\",\"transaction\":{\"id\":\"trlnc5vivx9jfxllkiei\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"204092323\",\"creation_date\":\"2023-10-06T07:34:43-06:00\",\"operation_date\":\"2023-10-06T07:45:51-06:00\",\"description\":\"Pago Mensual academia: Geronimo Paba Moreno (1023167804)\",\"error_message\":null,\"order_id\":\"0307FEC2CEF6AEC340B8426490977EF0_PQW5CX87NV_1696595676.2456\",\"due_date\":\"2023-10-06T19:34:43-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"RAMON \",\"last_name\":\"PABA \",\"email\":\"magalymoreno10@hotmail.com\",\"phone_number\":\"3005576931\",\"address\":null,\"creation_date\":\"2023-10-06T07:34:43-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 12:48:12','2023-10-06 12:48:12'),(10031,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T06:51:11-06:00\",\"transaction\":{\"id\":\"trlnc5vivx9jfxllkiei\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"204092323\",\"creation_date\":\"2023-10-06T07:34:43-06:00\",\"operation_date\":\"2023-10-06T07:45:51-06:00\",\"description\":\"Pago Mensual academia: Geronimo Paba Moreno (1023167804)\",\"error_message\":null,\"order_id\":\"0307FEC2CEF6AEC340B8426490977EF0_PQW5CX87NV_1696595676.2456\",\"due_date\":\"2023-10-06T19:34:43-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"RAMON \",\"last_name\":\"PABA \",\"email\":\"magalymoreno10@hotmail.com\",\"phone_number\":\"3005576931\",\"address\":null,\"creation_date\":\"2023-10-06T07:34:43-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 12:51:11','2023-10-06 12:51:11'),(10032,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T08:59:53-05:00\",\"transaction\":{\"id\":\"trkkpiivv0ygykyhb68r\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T08:59:14-05:00\",\"operation_date\":\"2023-10-06T08:59:14-05:00\",\"description\":\"Pago Mensual academia: matias Echeverry Hurtado (1155717169)\",\"error_message\":null,\"order_id\":\"E243AA93E6B6E031797F86D0858F5E40_G9YC3ISH0B_1696600750.7911\",\"due_date\":\"2023-10-06T20:59:14-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Sebastián\",\"last_name\":\"Echeverry\",\"email\":\"sebastian.echeverry.londono@gmail.com\",\"phone_number\":\"3102223363\",\"address\":null,\"creation_date\":\"2023-10-06T08:59:14-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkkpiivv0ygykyhb68r/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 13:59:54','2023-10-06 13:59:54'),(10033,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T09:02:09-05:00\",\"transaction\":{\"id\":\"trkkpiivv0ygykyhb68r\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"204234346\",\"creation_date\":\"2023-10-06T08:59:14-05:00\",\"operation_date\":\"2023-10-06T09:01:27-05:00\",\"description\":\"Pago Mensual academia: matias Echeverry Hurtado (1155717169)\",\"error_message\":null,\"order_id\":\"E243AA93E6B6E031797F86D0858F5E40_G9YC3ISH0B_1696600750.7911\",\"due_date\":\"2023-10-06T20:59:14-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Sebastián\",\"last_name\":\"Echeverry\",\"email\":\"sebastian.echeverry.londono@gmail.com\",\"phone_number\":\"3102223363\",\"address\":null,\"creation_date\":\"2023-10-06T08:59:14-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 14:02:10','2023-10-06 14:02:10'),(10034,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  891\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T09:02:27-05:00\",\"transaction\":{\"id\":\"trqh2mbm2ytiibdryldj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-06T09:02:27-05:00\",\"operation_date\":\"2023-10-06T09:02:27-05:00\",\"description\":\"Pago Mensual academia: Simón Gonzalez Murillo (1022148437)\",\"error_message\":null,\"order_id\":\"6CF821BC98B2D343170185BB3DE84CC4_EMAV54YQZC_1696600939.3489\",\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Gonzalez Murillo\",\"email\":\"negris1075@gmail.com\",\"phone_number\":\"3206407049\",\"address\":null,\"creation_date\":\"2023-10-06T09:02:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqh2mbm2ytiibdryldj/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-06 14:02:28','2023-10-06 14:02:28'),(10035,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1153\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T09:03:45-05:00\",\"transaction\":{\"id\":\"trqh2mbm2ytiibdryldj\",\"authorization\":\"090345\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-06T09:02:27-05:00\",\"operation_date\":\"2023-10-06T09:03:44-05:00\",\"description\":\"Pago Mensual academia: Simón Gonzalez Murillo (1022148437)\",\"error_message\":null,\"order_id\":\"6CF821BC98B2D343170185BB3DE84CC4_EMAV54YQZC_1696600939.3489\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX7134\",\"holder_name\":\"alba lucia murillo tapias\",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Simon\",\"last_name\":\"Gonzalez Murillo\",\"email\":\"negris1075@gmail.com\",\"phone_number\":\"3206407049\",\"address\":null,\"creation_date\":\"2023-10-06T09:02:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqh2mbm2ytiibdryldj/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-06 14:03:46','2023-10-06 14:03:46'),(10036,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T10:38:14-05:00\",\"transaction\":{\"id\":\"trro2xdifymvrjrrqzwv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T10:37:37-05:00\",\"operation_date\":\"2023-10-06T10:37:37-05:00\",\"description\":\"Pago Mensual academia: Mateo Ceballos Rodelo (1033191370)\",\"error_message\":null,\"order_id\":\"9D740BD0F36AAA312C8D504E28C42163_1QU35VPI92_1696606653.8056\",\"due_date\":\"2023-10-06T22:37:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria\",\"last_name\":\"Rodelo\",\"email\":\"angymaria1234@hotmail.com\",\"phone_number\":\"3217106275\",\"address\":null,\"creation_date\":\"2023-10-06T10:37:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trro2xdifymvrjrrqzwv/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 15:38:15','2023-10-06 15:38:15'),(10037,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T10:39:13-05:00\",\"transaction\":{\"id\":\"trro2xdifymvrjrrqzwv\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"204485723\",\"creation_date\":\"2023-10-06T10:37:37-05:00\",\"operation_date\":\"2023-10-06T10:39:04-05:00\",\"description\":\"Pago Mensual academia: Mateo Ceballos Rodelo (1033191370)\",\"error_message\":null,\"order_id\":\"9D740BD0F36AAA312C8D504E28C42163_1QU35VPI92_1696606653.8056\",\"due_date\":\"2023-10-06T22:37:37-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Maria\",\"last_name\":\"Rodelo\",\"email\":\"angymaria1234@hotmail.com\",\"phone_number\":\"3217106275\",\"address\":null,\"creation_date\":\"2023-10-06T10:37:37-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 15:39:13','2023-10-06 15:39:13'),(10038,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  889\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T10:44:26-05:00\",\"transaction\":{\"id\":\"treh1sgrazu1s2ei0n17\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-06T10:44:26-05:00\",\"operation_date\":\"2023-10-06T10:44:26-05:00\",\"description\":\"Pago Mensual academia: simón vasquez  Velez (1034998011)\",\"error_message\":null,\"order_id\":\"2BF5E202FC973A02F417DC9AF000177B_QS1K08E2NZ_1696606957.9712\",\"amount\":165900.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"vasquez velez\",\"email\":\"vcarobenjamin@gmail.com\",\"phone_number\":\"3104160264\",\"address\":null,\"creation_date\":\"2023-10-06T10:44:25-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treh1sgrazu1s2ei0n17/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-06 15:44:26','2023-10-06 15:44:26'),(10039,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1140\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T10:45:55-05:00\",\"transaction\":{\"id\":\"treh1sgrazu1s2ei0n17\",\"authorization\":\"123893\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-06T10:44:26-05:00\",\"operation_date\":\"2023-10-06T10:45:54-05:00\",\"description\":\"Pago Mensual academia: simón vasquez  Velez (1034998011)\",\"error_message\":null,\"order_id\":\"2BF5E202FC973A02F417DC9AF000177B_QS1K08E2NZ_1696606957.9712\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"466090XXXXXX8341\",\"holder_name\":\"Hector M vasquez d \",\"expiration_year\":\"27\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO DE BOGOTA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"simon\",\"last_name\":\"vasquez velez\",\"email\":\"vcarobenjamin@gmail.com\",\"phone_number\":\"3104160264\",\"address\":null,\"creation_date\":\"2023-10-06T10:44:26-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/treh1sgrazu1s2ei0n17/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-06 15:45:56','2023-10-06 15:45:56'),(10040,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T11:40:39-05:00\",\"transaction\":{\"id\":\"trzk7xxcidzlvuop2ly1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T11:39:23-05:00\",\"operation_date\":\"2023-10-06T11:39:23-05:00\",\"description\":\"Pago Mensual academia: Cristobal Choperena González (1020122976)\",\"error_message\":null,\"order_id\":\"1DA546F25222C1EE710CF7E2F7A3FF0C_CGARV1XWST_1696610353.9633\",\"due_date\":\"2023-10-06T23:39:23-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristobal\",\"last_name\":\"Choperena González\",\"email\":\"sandra0918@hotmail.com\",\"phone_number\":\"3218512057\",\"address\":null,\"creation_date\":\"2023-10-06T11:39:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzk7xxcidzlvuop2ly1/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 16:40:40','2023-10-06 16:40:40'),(10041,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T11:42:13-05:00\",\"transaction\":{\"id\":\"trzk7xxcidzlvuop2ly1\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"204656610\",\"creation_date\":\"2023-10-06T11:39:23-05:00\",\"operation_date\":\"2023-10-06T11:42:08-05:00\",\"description\":\"Pago Mensual academia: Cristobal Choperena González (1020122976)\",\"error_message\":null,\"order_id\":\"1DA546F25222C1EE710CF7E2F7A3FF0C_CGARV1XWST_1696610353.9633\",\"due_date\":\"2023-10-06T23:39:23-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cristobal\",\"last_name\":\"Choperena González\",\"email\":\"sandra0918@hotmail.com\",\"phone_number\":\"3218512057\",\"address\":null,\"creation_date\":\"2023-10-06T11:39:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 16:42:14','2023-10-06 16:42:14'),(10042,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T11:52:41-05:00\",\"transaction\":{\"id\":\"trtt8rufq5greipmf2ns\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T11:51:56-05:00\",\"operation_date\":\"2023-10-06T11:51:56-05:00\",\"description\":\"Pago Mensual academia: David Garcés Monsalve (1023561352)\",\"error_message\":null,\"order_id\":\"DC2208F9BBD11486D5DBBB9218E03017_2OPNFASR54_1696611108.5091\",\"due_date\":\"2023-10-06T23:51:56-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"Monsalve\",\"email\":\"cata.m2014@gmail.com\",\"phone_number\":\"3014253009\",\"address\":null,\"creation_date\":\"2023-10-06T11:51:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtt8rufq5greipmf2ns/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 16:52:42','2023-10-06 16:52:42'),(10043,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  801\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T11:53:32-05:00\",\"transaction\":{\"id\":\"trtt8rufq5greipmf2ns\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"204689705\",\"creation_date\":\"2023-10-06T11:51:56-05:00\",\"operation_date\":\"2023-10-06T11:53:26-05:00\",\"description\":\"Pago Mensual academia: David Garcés Monsalve (1023561352)\",\"error_message\":null,\"order_id\":\"DC2208F9BBD11486D5DBBB9218E03017_2OPNFASR54_1696611108.5091\",\"due_date\":\"2023-10-06T23:51:56-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"Monsalve\",\"email\":\"cata.m2014@gmail.com\",\"phone_number\":\"3014253009\",\"address\":null,\"creation_date\":\"2023-10-06T11:51:56-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 16:53:32','2023-10-06 16:53:32'),(10044,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  952\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T13:10:04-05:00\",\"transaction\":{\"id\":\"trfvkeremhzavxojsnrl\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T13:09:34-05:00\",\"operation_date\":\"2023-10-06T13:09:34-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Aristizábal Colorado (1015074954)\",\"error_message\":null,\"order_id\":\"65A99BB7A3115FDEDE20DA98B08A370F_ADZ20CK3PI_1696615766.8372\",\"due_date\":\"2023-10-07T01:09:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jenny Alexandra\",\"last_name\":\"Aristizábal Colorado\",\"email\":\"jenny24pablo@yahoo.com\",\"phone_number\":\"3004303882\",\"address\":null,\"creation_date\":\"2023-10-06T13:09:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trfvkeremhzavxojsnrl/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 18:10:05','2023-10-06 18:10:05'),(10045,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  835\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T13:11:28-05:00\",\"transaction\":{\"id\":\"trfvkeremhzavxojsnrl\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"204875316\",\"creation_date\":\"2023-10-06T13:09:34-05:00\",\"operation_date\":\"2023-10-06T13:11:21-05:00\",\"description\":\"Pago Mensual academia: Juan  Pablo Aristizábal Colorado (1015074954)\",\"error_message\":null,\"order_id\":\"65A99BB7A3115FDEDE20DA98B08A370F_ADZ20CK3PI_1696615766.8372\",\"due_date\":\"2023-10-07T01:09:34-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jenny Alexandra\",\"last_name\":\"Aristizábal Colorado\",\"email\":\"jenny24pablo@yahoo.com\",\"phone_number\":\"3004303882\",\"address\":null,\"creation_date\":\"2023-10-06T13:09:34-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 18:11:28','2023-10-06 18:11:28'),(10046,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  942\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T13:56:45-05:00\",\"transaction\":{\"id\":\"tr8ki1bcs9tusdy4qfrz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T13:55:53-05:00\",\"operation_date\":\"2023-10-06T13:55:53-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Velasco Mejia (1036459050)\",\"error_message\":null,\"order_id\":\"086AF6E4641ABB18CAAFC151B9AA95C8_9FCS0NUW82_1696618547.7307\",\"due_date\":\"2023-10-07T01:55:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan david\",\"last_name\":\"velasco idarraga\",\"email\":\"juan.velascoidarraga@gmail.com\",\"phone_number\":\"3173315273\",\"address\":null,\"creation_date\":\"2023-10-06T13:55:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8ki1bcs9tusdy4qfrz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 18:56:46','2023-10-06 18:56:46'),(10047,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  825\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T13:58:02-05:00\",\"transaction\":{\"id\":\"tr8ki1bcs9tusdy4qfrz\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"204979391\",\"creation_date\":\"2023-10-06T13:55:53-05:00\",\"operation_date\":\"2023-10-06T13:57:39-05:00\",\"description\":\"Pago Mensual academia: Maximiliano Velasco Mejia (1036459050)\",\"error_message\":null,\"order_id\":\"086AF6E4641ABB18CAAFC151B9AA95C8_9FCS0NUW82_1696618547.7307\",\"due_date\":\"2023-10-07T01:55:53-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan david\",\"last_name\":\"velasco idarraga\",\"email\":\"juan.velascoidarraga@gmail.com\",\"phone_number\":\"3173315273\",\"address\":null,\"creation_date\":\"2023-10-06T13:55:53-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 18:58:02','2023-10-06 18:58:02'),(10048,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T17:28:26-05:00\",\"transaction\":{\"id\":\"trtouw4khnd2qmblkudt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T17:27:20-05:00\",\"operation_date\":\"2023-10-06T17:27:20-05:00\",\"description\":\"Pago Mensual academia: julian Solórzano Munera (1017934722)\",\"error_message\":null,\"order_id\":\"FC8FDB29501A6289B7BC8B0BDD8155DF_RXACENMP2B_1696631236.9946\",\"due_date\":\"2023-10-07T05:27:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julian\",\"last_name\":\"Solorzano\",\"email\":\"solojulio@yahoo.com\",\"phone_number\":\"3132965088\",\"address\":null,\"creation_date\":\"2023-10-06T17:27:20-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trtouw4khnd2qmblkudt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 22:28:27','2023-10-06 22:28:27'),(10049,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T17:30:03-05:00\",\"transaction\":{\"id\":\"trtouw4khnd2qmblkudt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"205501071\",\"creation_date\":\"2023-10-06T17:27:20-05:00\",\"operation_date\":\"2023-10-06T17:29:57-05:00\",\"description\":\"Pago Mensual academia: julian Solórzano Munera (1017934722)\",\"error_message\":null,\"order_id\":\"FC8FDB29501A6289B7BC8B0BDD8155DF_RXACENMP2B_1696631236.9946\",\"due_date\":\"2023-10-07T05:27:20-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julian\",\"last_name\":\"Solorzano\",\"email\":\"solojulio@yahoo.com\",\"phone_number\":\"3132965088\",\"address\":null,\"creation_date\":\"2023-10-06T17:27:20-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 22:30:04','2023-10-06 22:30:04'),(10050,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T17:51:29-05:00\",\"transaction\":{\"id\":\"tr2irfoutywwzxfxp7z7\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T17:50:51-05:00\",\"operation_date\":\"2023-10-06T17:50:51-05:00\",\"description\":\"Pago Mensual academia: Alan David Córdoba Orozco (1032029565)\",\"error_message\":null,\"order_id\":\"12CED2DB6F0193DDA91BA86224EA1CD8_SCBXO8JF9Q_1696632649.0685\",\"due_date\":\"2023-10-07T05:50:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Henao\",\"email\":\"jorgehecor@gmail.com\",\"phone_number\":\"3246489931\",\"address\":null,\"creation_date\":\"2023-10-06T17:50:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr2irfoutywwzxfxp7z7/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 22:51:30','2023-10-06 22:51:30'),(10051,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  800\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T17:53:21-05:00\",\"transaction\":{\"id\":\"tr2irfoutywwzxfxp7z7\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"205557981\",\"creation_date\":\"2023-10-06T17:50:51-05:00\",\"operation_date\":\"2023-10-06T17:52:47-05:00\",\"description\":\"Pago Mensual academia: Alan David Córdoba Orozco (1032029565)\",\"error_message\":null,\"order_id\":\"12CED2DB6F0193DDA91BA86224EA1CD8_SCBXO8JF9Q_1696632649.0685\",\"due_date\":\"2023-10-07T05:50:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Jorge\",\"last_name\":\"Henao\",\"email\":\"jorgehecor@gmail.com\",\"phone_number\":\"3246489931\",\"address\":null,\"creation_date\":\"2023-10-06T17:50:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 22:53:22','2023-10-06 22:53:22'),(10052,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T18:36:47-05:00\",\"transaction\":{\"id\":\"trdiqp61nuvpdajccxlo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T18:36:09-05:00\",\"operation_date\":\"2023-10-06T18:36:09-05:00\",\"description\":\"Pago Mensual academia: samir restrepo jimenez (1031946292)\",\"error_message\":null,\"order_id\":\"D71F5142463EFCF6DC7BE216CF4644B5_B6WKLN0IHG_1696635361.2631\",\"due_date\":\"2023-10-07T06:36:09-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"samir\",\"last_name\":\"restrepo jimenez\",\"email\":\"elizabethjimenezzuluaga@gmail.com\",\"phone_number\":\"3045928569\",\"address\":null,\"creation_date\":\"2023-10-06T18:36:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdiqp61nuvpdajccxlo/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 23:36:47','2023-10-06 23:36:47'),(10053,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  858\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-06T17:39:34-06:00\",\"transaction\":{\"id\":\"trdiqp61nuvpdajccxlo\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-06T18:36:09-06:00\",\"operation_date\":\"2023-10-06T18:36:54-06:00\",\"description\":\"Pago Mensual academia: samir restrepo jimenez (1031946292)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"D71F5142463EFCF6DC7BE216CF4644B5_B6WKLN0IHG_1696635361.2631\",\"due_date\":\"2023-10-07T06:36:09-06:00\",\"error_code\":1007,\"amount\":95000.00,\"customer\":{\"name\":\"samir\",\"last_name\":\"restrepo jimenez\",\"email\":\"elizabethjimenezzuluaga@gmail.com\",\"phone_number\":\"3045928569\",\"address\":null,\"creation_date\":\"2023-10-06T18:36:09-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-06 23:39:35','2023-10-06 23:39:35'),(10054,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T19:10:36-05:00\",\"transaction\":{\"id\":\"trko9m7ahuuikx0cftmm\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T19:09:51-05:00\",\"operation_date\":\"2023-10-06T19:09:51-05:00\",\"description\":\"Pago Mensual academia: juan andres muñoz roldan (1035000037)\",\"error_message\":null,\"order_id\":\"B4DF9F494056D51F86C7F1A89850C467_IF150BZKVC_1696637389.4087\",\"due_date\":\"2023-10-07T07:09:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula andrea\",\"last_name\":\"Roldan Rios\",\"email\":\"paularoldan1680@gmail.com\",\"phone_number\":\"3185346104\",\"address\":null,\"creation_date\":\"2023-10-06T19:09:51-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trko9m7ahuuikx0cftmm/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 00:10:37','2023-10-07 00:10:37'),(10055,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T19:11:45-05:00\",\"transaction\":{\"id\":\"trko9m7ahuuikx0cftmm\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"205740541\",\"creation_date\":\"2023-10-06T19:09:51-05:00\",\"operation_date\":\"2023-10-06T19:11:27-05:00\",\"description\":\"Pago Mensual academia: juan andres muñoz roldan (1035000037)\",\"error_message\":null,\"order_id\":\"B4DF9F494056D51F86C7F1A89850C467_IF150BZKVC_1696637389.4087\",\"due_date\":\"2023-10-07T07:09:51-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula andrea\",\"last_name\":\"Roldan Rios\",\"email\":\"paularoldan1680@gmail.com\",\"phone_number\":\"3185346104\",\"address\":null,\"creation_date\":\"2023-10-06T19:09:51-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 00:11:45','2023-10-07 00:11:45'),(10056,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  934\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T19:12:47-05:00\",\"transaction\":{\"id\":\"trskx1rntx12qwfnqfpj\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T19:12:10-05:00\",\"operation_date\":\"2023-10-06T19:12:10-05:00\",\"description\":\"Pago Mensual academia: juan andres muñoz roldan (1035000037)\",\"error_message\":null,\"order_id\":\"83451E7EF8755C2A8F464093C808F529_1I38BA67S9_1696637525.8363\",\"due_date\":\"2023-10-07T07:12:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula andrea\",\"last_name\":\"Roldan Rios\",\"email\":\"paularoldan1680@gmail.com\",\"phone_number\":\"3185346104\",\"address\":null,\"creation_date\":\"2023-10-06T19:12:10-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trskx1rntx12qwfnqfpj/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 00:12:47','2023-10-07 00:12:47'),(10057,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  817\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T19:14:16-05:00\",\"transaction\":{\"id\":\"trskx1rntx12qwfnqfpj\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"205744967\",\"creation_date\":\"2023-10-06T19:12:10-05:00\",\"operation_date\":\"2023-10-06T19:13:55-05:00\",\"description\":\"Pago Mensual academia: juan andres muñoz roldan (1035000037)\",\"error_message\":null,\"order_id\":\"83451E7EF8755C2A8F464093C808F529_1I38BA67S9_1696637525.8363\",\"due_date\":\"2023-10-07T07:12:10-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"paula andrea\",\"last_name\":\"Roldan Rios\",\"email\":\"paularoldan1680@gmail.com\",\"phone_number\":\"3185346104\",\"address\":null,\"creation_date\":\"2023-10-06T19:12:10-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 00:14:17','2023-10-07 00:14:17'),(10058,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-06T22:06:57-05:00\",\"transaction\":{\"id\":\"trqich498pd6zdfb3qwt\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-06T22:05:59-05:00\",\"operation_date\":\"2023-10-06T22:05:59-05:00\",\"description\":\"Pago Mensual academia: Juan Esteban Torres Vélez (1032018626)\",\"error_message\":null,\"order_id\":\"A4D41B834EA903526373A9A1AE2AC66E_RZ87FKB516_1696647956.7899\",\"due_date\":\"2023-10-07T10:05:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Ferney\",\"last_name\":\"Torres\",\"email\":\"ferneytorres21@gmail.com\",\"phone_number\":\"3176637812\",\"address\":null,\"creation_date\":\"2023-10-06T22:05:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqich498pd6zdfb3qwt/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 03:06:58','2023-10-07 03:06:58'),(10059,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-06T22:08:40-05:00\",\"transaction\":{\"id\":\"trqich498pd6zdfb3qwt\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"206032985\",\"creation_date\":\"2023-10-06T22:05:59-05:00\",\"operation_date\":\"2023-10-06T22:07:59-05:00\",\"description\":\"Pago Mensual academia: Juan Esteban Torres Vélez (1032018626)\",\"error_message\":null,\"order_id\":\"A4D41B834EA903526373A9A1AE2AC66E_RZ87FKB516_1696647956.7899\",\"due_date\":\"2023-10-07T10:05:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"John Ferney\",\"last_name\":\"Torres\",\"email\":\"ferneytorres21@gmail.com\",\"phone_number\":\"3176637812\",\"address\":null,\"creation_date\":\"2023-10-06T22:05:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 03:08:41','2023-10-07 03:08:41'),(10060,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  893\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T09:01:55-05:00\",\"transaction\":{\"id\":\"tr0kycub1kdhiletcdph\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-07T09:01:55-05:00\",\"operation_date\":\"2023-10-07T09:01:55-05:00\",\"description\":\"Pago Mensual academia: Jeronimo castaño piñeros (1155718680)\",\"error_message\":null,\"order_id\":\"125C0E943C73BB8A0840AB524FDCBD08_901A7PNUTV_1696687292.6939\",\"amount\":95000.00,\"customer\":{\"name\":\"melisa\",\"last_name\":\"piñeros osorio\",\"email\":\"melysa1037@gmail.com\",\"phone_number\":\"3015859977\",\"address\":null,\"creation_date\":\"2023-10-07T09:01:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0kycub1kdhiletcdph/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-07 14:01:56','2023-10-07 14:01:56'),(10061,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1218\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T09:04:02-05:00\",\"transaction\":{\"id\":\"tr0kycub1kdhiletcdph\",\"authorization\":\"830736\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":4,\"conciliated\":true,\"creation_date\":\"2023-10-07T09:01:55-05:00\",\"operation_date\":\"2023-10-07T09:04:00-05:00\",\"description\":\"Pago Mensual academia: Jeronimo castaño piñeros (1155718680)\",\"error_message\":null,\"order_id\":\"125C0E943C73BB8A0840AB524FDCBD08_901A7PNUTV_1696687292.6939\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"483101XXXXXX5455\",\"holder_name\":\"Melisa pineros \",\"expiration_year\":\"24\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":4,\"payments_type\":\"without_interest\"},\"amount\":95000.00,\"customer\":{\"name\":\"melisa\",\"last_name\":\"piñeros osorio\",\"email\":\"melysa1037@gmail.com\",\"phone_number\":\"3015859977\",\"address\":null,\"creation_date\":\"2023-10-07T09:01:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0kycub1kdhiletcdph/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-07 14:04:03','2023-10-07 14:04:03'),(10062,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T09:44:59-05:00\",\"transaction\":{\"id\":\"trzrefftnpr4bl11pn5a\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T09:44:13-05:00\",\"operation_date\":\"2023-10-07T09:44:13-05:00\",\"description\":\"Pago Inscripción academia: JOHN ALEXANDER GUEVARA JARAMILLO (98713726)\",\"error_message\":null,\"order_id\":\"1D8D70DDDF147D2D92A634817F01B239_M9075F8KYC_1696689850.4093\",\"due_date\":\"2023-10-07T21:44:13-05:00\",\"amount\":191000.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Guevara\",\"email\":\"jaguevara726@hotmail.com\",\"phone_number\":\"3146829322\",\"address\":null,\"creation_date\":\"2023-10-07T09:44:13-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzrefftnpr4bl11pn5a/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 14:45:00','2023-10-07 14:45:00'),(10063,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T09:45:59-05:00\",\"transaction\":{\"id\":\"trzrefftnpr4bl11pn5a\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"206444785\",\"creation_date\":\"2023-10-07T09:44:13-05:00\",\"operation_date\":\"2023-10-07T09:45:54-05:00\",\"description\":\"Pago Inscripción academia: JOHN ALEXANDER GUEVARA JARAMILLO (98713726)\",\"error_message\":null,\"order_id\":\"1D8D70DDDF147D2D92A634817F01B239_M9075F8KYC_1696689850.4093\",\"due_date\":\"2023-10-07T21:44:13-05:00\",\"amount\":191000.00,\"customer\":{\"name\":\"Alexander\",\"last_name\":\"Guevara\",\"email\":\"jaguevara726@hotmail.com\",\"phone_number\":\"3146829322\",\"address\":null,\"creation_date\":\"2023-10-07T09:44:13-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 14:46:00','2023-10-07 14:46:00'),(10064,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  905\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T10:37:23-05:00\",\"transaction\":{\"id\":\"trrtucxcfwzqmxw7kcbe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T10:35:34-05:00\",\"operation_date\":\"2023-10-07T10:35:34-05:00\",\"description\":\"Pago Mensual academia: TOMAS SOTO OCHOA (1035013032)\",\"error_message\":null,\"order_id\":\"0BD65E799153554726820CA639514029_5OTQ8NGLKD_1696692912.1379\",\"due_date\":\"2023-10-07T22:35:34-05:00\",\"amount\":82950.00,\"customer\":{\"name\":\"TOMAS\",\"last_name\":\"SOTO\",\"email\":\"alejamoh@hotmail.com\",\"phone_number\":\"3164423091\",\"address\":null,\"creation_date\":\"2023-10-07T10:35:34-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trrtucxcfwzqmxw7kcbe/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 15:37:24','2023-10-07 15:37:24'),(10065,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  930\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T10:43:58-05:00\",\"transaction\":{\"id\":\"trride8gxw6overvxndb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T10:43:22-05:00\",\"operation_date\":\"2023-10-07T10:43:22-05:00\",\"description\":\"Pago Mensual academia: Pedro Piedrahita (1021943243)\",\"error_message\":null,\"order_id\":\"CE052EA95DFE35291C6FA7FCF8819492_360H5FPXSC_1696693398.2766\",\"due_date\":\"2023-10-07T22:43:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Piedrahita Ruiz\",\"email\":\"jspiedrahita@hotmail.com\",\"phone_number\":\"3137637975\",\"address\":null,\"creation_date\":\"2023-10-07T10:43:22-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trride8gxw6overvxndb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 15:43:58','2023-10-07 15:43:58'),(10066,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  813\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T10:45:02-05:00\",\"transaction\":{\"id\":\"trride8gxw6overvxndb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"206566388\",\"creation_date\":\"2023-10-07T10:43:22-05:00\",\"operation_date\":\"2023-10-07T10:44:57-05:00\",\"description\":\"Pago Mensual academia: Pedro Piedrahita (1021943243)\",\"error_message\":null,\"order_id\":\"CE052EA95DFE35291C6FA7FCF8819492_360H5FPXSC_1696693398.2766\",\"due_date\":\"2023-10-07T22:43:22-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Juan Sebastian\",\"last_name\":\"Piedrahita Ruiz\",\"email\":\"jspiedrahita@hotmail.com\",\"phone_number\":\"3137637975\",\"address\":null,\"creation_date\":\"2023-10-07T10:43:22-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 15:45:03','2023-10-07 15:45:03'),(10067,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  827\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-07T09:48:23-06:00\",\"transaction\":{\"id\":\"trrtucxcfwzqmxw7kcbe\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-07T10:35:34-06:00\",\"operation_date\":\"2023-10-07T10:35:34-06:00\",\"description\":\"Pago Mensual academia: TOMAS SOTO OCHOA (1035013032)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"0BD65E799153554726820CA639514029_5OTQ8NGLKD_1696692912.1379\",\"due_date\":\"2023-10-07T22:35:34-06:00\",\"error_code\":1007,\"amount\":82950.00,\"customer\":{\"name\":\"TOMAS\",\"last_name\":\"SOTO\",\"email\":\"alejamoh@hotmail.com\",\"phone_number\":\"3164423091\",\"address\":null,\"creation_date\":\"2023-10-07T10:35:34-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 15:48:24','2023-10-07 15:48:24'),(10068,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  939\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T10:51:33-05:00\",\"transaction\":{\"id\":\"trkmgsxezeavjzeojckp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T10:50:32-05:00\",\"operation_date\":\"2023-10-07T10:50:32-05:00\",\"description\":\"Pago Mensual academia: mathias restrepo villegas (1034992992)\",\"error_message\":null,\"order_id\":\"1713A23C14B5033ADB074B5464FB6C66_AFIBGT4W1V_1696693825.1384\",\"due_date\":\"2023-10-07T22:50:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN GUILLERMO\",\"last_name\":\"RESTREPO OBANDO\",\"email\":\"juanguigui79@hotmail.com\",\"phone_number\":\"3162236926\",\"address\":null,\"creation_date\":\"2023-10-07T10:50:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trkmgsxezeavjzeojckp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 15:51:34','2023-10-07 15:51:34'),(10069,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  822\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T10:52:38-05:00\",\"transaction\":{\"id\":\"trkmgsxezeavjzeojckp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"206582106\",\"creation_date\":\"2023-10-07T10:50:32-05:00\",\"operation_date\":\"2023-10-07T10:52:22-05:00\",\"description\":\"Pago Mensual academia: mathias restrepo villegas (1034992992)\",\"error_message\":null,\"order_id\":\"1713A23C14B5033ADB074B5464FB6C66_AFIBGT4W1V_1696693825.1384\",\"due_date\":\"2023-10-07T22:50:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"JUAN GUILLERMO\",\"last_name\":\"RESTREPO OBANDO\",\"email\":\"juanguigui79@hotmail.com\",\"phone_number\":\"3162236926\",\"address\":null,\"creation_date\":\"2023-10-07T10:50:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 15:52:39','2023-10-07 15:52:39'),(10070,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  909\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T11:06:06-05:00\",\"transaction\":{\"id\":\"tr3mh8yrptqlfcwhkhcu\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-07T11:06:06-05:00\",\"operation_date\":\"2023-10-07T11:06:06-05:00\",\"description\":\"Pago Mensual academia: Michael Stiward Salcedo Hernandez (1038872790)\",\"error_message\":null,\"order_id\":\"DA94CBEFF56CFDA50785DF477941308B_MRJL5E8AW2_1696694758.873\",\"amount\":165900.00,\"customer\":{\"name\":\"victor Alfonso\",\"last_name\":\"Salcedo Arias\",\"email\":\"victor88asa@hotmail.com\",\"phone_number\":\"3108331051\",\"address\":null,\"creation_date\":\"2023-10-07T11:06:06-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3mh8yrptqlfcwhkhcu/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-07 16:06:07','2023-10-07 16:06:07'),(10071,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1159\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T11:07:51-05:00\",\"transaction\":{\"id\":\"tr3mh8yrptqlfcwhkhcu\",\"authorization\":\"110750\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-07T11:06:06-05:00\",\"operation_date\":\"2023-10-07T11:07:49-05:00\",\"description\":\"Pago Mensual academia: Michael Stiward Salcedo Hernandez (1038872790)\",\"error_message\":null,\"order_id\":\"DA94CBEFF56CFDA50785DF477941308B_MRJL5E8AW2_1696694758.873\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX8958\",\"holder_name\":\"Victor arias \",\"expiration_year\":\"27\",\"expiration_month\":\"01\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"victor Alfonso\",\"last_name\":\"Salcedo Arias\",\"email\":\"victor88asa@hotmail.com\",\"phone_number\":\"3108331051\",\"address\":null,\"creation_date\":\"2023-10-07T11:06:07-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr3mh8yrptqlfcwhkhcu/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-07 16:07:51','2023-10-07 16:07:51'),(10072,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  896\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T13:13:17-05:00\",\"transaction\":{\"id\":\"trg8a5zshr5tdx2drs0b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-07T13:13:17-05:00\",\"operation_date\":\"2023-10-07T13:13:17-05:00\",\"description\":\"Pago Mensual academia: emmanuel granda sanchez (1027811176)\",\"error_message\":null,\"order_id\":\"60E1DEB043AF37DB5EA4CE9AE8D2C9EA_ZF4VODRUC2_1696702393.8945\",\"amount\":165900.00,\"customer\":{\"name\":\"emmanuel\",\"last_name\":\"granda sanchez\",\"email\":\"francisabogada@gmail.com\",\"phone_number\":\"3108397353\",\"address\":null,\"creation_date\":\"2023-10-07T13:13:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg8a5zshr5tdx2drs0b/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-07 18:13:17','2023-10-07 18:13:17'),(10073,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1147\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T13:14:44-05:00\",\"transaction\":{\"id\":\"trg8a5zshr5tdx2drs0b\",\"authorization\":\"131444\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-07T13:13:17-05:00\",\"operation_date\":\"2023-10-07T13:14:43-05:00\",\"description\":\"Pago Mensual academia: emmanuel granda sanchez (1027811176)\",\"error_message\":null,\"order_id\":\"60E1DEB043AF37DB5EA4CE9AE8D2C9EA_ZF4VODRUC2_1696702393.8945\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX2319\",\"holder_name\":\"Diana sanchez \",\"expiration_year\":\"27\",\"expiration_month\":\"04\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"emmanuel\",\"last_name\":\"granda sanchez\",\"email\":\"francisabogada@gmail.com\",\"phone_number\":\"3108397353\",\"address\":null,\"creation_date\":\"2023-10-07T13:13:17-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trg8a5zshr5tdx2drs0b/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-07 18:14:45','2023-10-07 18:14:45'),(10074,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  955\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T14:11:47-05:00\",\"transaction\":{\"id\":\"trqcm6klmty5flrpq9vk\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T14:10:58-05:00\",\"operation_date\":\"2023-10-07T14:10:58-05:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Quintero londoño (1038872847)\",\"error_message\":null,\"order_id\":\"3C8A49145944FED2BBCAADE178A426C4_CU8OPD1KJT_1696705854.9815\",\"due_date\":\"2023-10-08T02:10:58-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julieth Natalia\",\"last_name\":\"londoño Bustamante\",\"email\":\"construccioneslaq@hotmail.com\",\"phone_number\":\"3213614548\",\"address\":null,\"creation_date\":\"2023-10-07T14:10:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqcm6klmty5flrpq9vk/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 19:11:47','2023-10-07 19:11:47'),(10075,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  838\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T13:15:20-06:00\",\"transaction\":{\"id\":\"trqcm6klmty5flrpq9vk\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"206939500\",\"creation_date\":\"2023-10-07T14:10:58-06:00\",\"operation_date\":\"2023-10-07T14:13:21-06:00\",\"description\":\"Pago Mensual academia: Miguel Ángel Quintero londoño (1038872847)\",\"error_message\":null,\"order_id\":\"3C8A49145944FED2BBCAADE178A426C4_CU8OPD1KJT_1696705854.9815\",\"due_date\":\"2023-10-08T02:10:58-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Julieth Natalia\",\"last_name\":\"londoño Bustamante\",\"email\":\"construccioneslaq@hotmail.com\",\"phone_number\":\"3213614548\",\"address\":null,\"creation_date\":\"2023-10-07T14:10:58-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 19:15:21','2023-10-07 19:15:21'),(10076,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T14:51:02-05:00\",\"transaction\":{\"id\":\"tr1vcpl9ifx5yhymn8bp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T14:50:05-05:00\",\"operation_date\":\"2023-10-07T14:50:05-05:00\",\"description\":\"Pago Mensual academia: anthony gomez pulgarin (1033260344)\",\"error_message\":null,\"order_id\":\"3BC3E78C17D35E74ECFAE5E475D960D7_R4VSXFHDYK_1696708202.6058\",\"due_date\":\"2023-10-08T02:50:05-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"anthony\",\"last_name\":\"gomez pulgarin\",\"email\":\"anthonygp260208@gmail.com\",\"phone_number\":\"3105247712\",\"address\":null,\"creation_date\":\"2023-10-07T14:50:05-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr1vcpl9ifx5yhymn8bp/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 19:51:03','2023-10-07 19:51:03'),(10077,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  812\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T13:54:16-06:00\",\"transaction\":{\"id\":\"tr1vcpl9ifx5yhymn8bp\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"206996208\",\"creation_date\":\"2023-10-07T14:50:05-06:00\",\"operation_date\":\"2023-10-07T14:52:49-06:00\",\"description\":\"Pago Mensual academia: anthony gomez pulgarin (1033260344)\",\"error_message\":null,\"order_id\":\"3BC3E78C17D35E74ECFAE5E475D960D7_R4VSXFHDYK_1696708202.6058\",\"due_date\":\"2023-10-08T02:50:05-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"anthony\",\"last_name\":\"gomez pulgarin\",\"email\":\"anthonygp260208@gmail.com\",\"phone_number\":\"3105247712\",\"address\":null,\"creation_date\":\"2023-10-07T14:50:05-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 19:54:17','2023-10-07 19:54:17'),(10078,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  936\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T17:53:07-05:00\",\"transaction\":{\"id\":\"trvnxe4lfddqyy7xmn0w\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T17:52:23-05:00\",\"operation_date\":\"2023-10-07T17:52:23-05:00\",\"description\":\"Pago Mensual academia: Juan Martin Gutierrez Correa (1017942179)\",\"error_message\":null,\"order_id\":\"4BBBE6CB5982B9110413C40F3CCE680B_NJ7XW5KAU9_1696719133.7527\",\"due_date\":\"2023-10-08T05:52:23-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cinthia Maria\",\"last_name\":\"Correa Muñoz\",\"email\":\"cinthi1123@hotmail.com\",\"phone_number\":\"3105353577\",\"address\":null,\"creation_date\":\"2023-10-07T17:52:23-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvnxe4lfddqyy7xmn0w/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 22:53:08','2023-10-07 22:53:08'),(10079,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  819\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T17:54:19-05:00\",\"transaction\":{\"id\":\"trvnxe4lfddqyy7xmn0w\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"207239122\",\"creation_date\":\"2023-10-07T17:52:23-05:00\",\"operation_date\":\"2023-10-07T17:54:10-05:00\",\"description\":\"Pago Mensual academia: Juan Martin Gutierrez Correa (1017942179)\",\"error_message\":null,\"order_id\":\"4BBBE6CB5982B9110413C40F3CCE680B_NJ7XW5KAU9_1696719133.7527\",\"due_date\":\"2023-10-08T05:52:23-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Cinthia Maria\",\"last_name\":\"Correa Muñoz\",\"email\":\"cinthi1123@hotmail.com\",\"phone_number\":\"3105353577\",\"address\":null,\"creation_date\":\"2023-10-07T17:52:23-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 22:54:19','2023-10-07 22:54:19'),(10080,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  920\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T18:18:43-05:00\",\"transaction\":{\"id\":\"trvpggcxtf2axzcqilvb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T18:17:48-05:00\",\"operation_date\":\"2023-10-07T18:17:48-05:00\",\"description\":\"Pago Mensual academia: martin perez castaño (1033200095)\",\"error_message\":null,\"order_id\":\"A1F0CF94512F963E5ED4EDD9AF70E2CC_Q8JEPFXCWN_1696720664.4758\",\"due_date\":\"2023-10-08T06:17:48-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"perez\",\"email\":\"lizethagudelo19@hotmail.com\",\"phone_number\":\"3017485555\",\"address\":null,\"creation_date\":\"2023-10-07T18:17:48-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trvpggcxtf2axzcqilvb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 23:18:44','2023-10-07 23:18:44'),(10081,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  803\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T17:21:29-06:00\",\"transaction\":{\"id\":\"trvpggcxtf2axzcqilvb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"207272819\",\"creation_date\":\"2023-10-07T18:17:48-06:00\",\"operation_date\":\"2023-10-07T18:19:38-06:00\",\"description\":\"Pago Mensual academia: martin perez castaño (1033200095)\",\"error_message\":null,\"order_id\":\"A1F0CF94512F963E5ED4EDD9AF70E2CC_Q8JEPFXCWN_1696720664.4758\",\"due_date\":\"2023-10-08T06:17:48-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"martin\",\"last_name\":\"perez\",\"email\":\"lizethagudelo19@hotmail.com\",\"phone_number\":\"3017485555\",\"address\":null,\"creation_date\":\"2023-10-07T18:17:48-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-07 23:21:29','2023-10-07 23:21:29'),(10082,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T21:52:40-05:00\",\"transaction\":{\"id\":\"trwluz6hqyz6qxwqgsor\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T21:50:59-05:00\",\"operation_date\":\"2023-10-07T21:50:59-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":null,\"order_id\":\"B0A665A28EFD91535ABB111D656ECD04_JP8SA97O36_1696733452.9215\",\"due_date\":\"2023-10-08T09:50:59-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Rozo Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-10-07T21:50:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trwluz6hqyz6qxwqgsor/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 02:52:40','2023-10-08 02:52:40'),(10083,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-07T21:52:52-05:00\",\"transaction\":{\"id\":\"trwluz6hqyz6qxwqgsor\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-07T21:50:59-05:00\",\"operation_date\":\"2023-10-07T21:50:59-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"B0A665A28EFD91535ABB111D656ECD04_JP8SA97O36_1696733452.9215\",\"due_date\":\"2023-10-08T09:50:59-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Rozo Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-10-07T21:50:59-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 02:52:52','2023-10-08 02:52:52'),(10084,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T21:54:44-05:00\",\"transaction\":{\"id\":\"trb3yyfxj2a0ofbxzr5h\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T21:53:27-05:00\",\"operation_date\":\"2023-10-07T21:53:27-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":null,\"order_id\":\"B0A665A28EFD91535ABB111D656ECD04_JP8SA97O36_1696733600.6865\",\"due_date\":\"2023-10-08T09:53:27-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Catalina \",\"last_name\":\"Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-10-07T21:53:27-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trb3yyfxj2a0ofbxzr5h/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 02:54:44','2023-10-08 02:54:44'),(10085,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  847\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-07T21:54:51-05:00\",\"transaction\":{\"id\":\"trb3yyfxj2a0ofbxzr5h\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-07T21:53:27-05:00\",\"operation_date\":\"2023-10-07T21:53:27-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"B0A665A28EFD91535ABB111D656ECD04_JP8SA97O36_1696733600.6865\",\"due_date\":\"2023-10-08T09:53:27-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Catalina \",\"last_name\":\"Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-10-07T21:53:27-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 02:54:51','2023-10-08 02:54:51'),(10086,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T21:56:59-05:00\",\"transaction\":{\"id\":\"trdappiqu5kjs0r0d1k5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T21:55:33-05:00\",\"operation_date\":\"2023-10-07T21:55:33-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":null,\"order_id\":\"B0A665A28EFD91535ABB111D656ECD04_JP8SA97O36_1696733720.9444\",\"due_date\":\"2023-10-08T09:55:33-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-10-07T21:55:33-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trdappiqu5kjs0r0d1k5/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 02:57:00','2023-10-08 02:57:00'),(10087,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  846\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-07T21:57:07-05:00\",\"transaction\":{\"id\":\"trdappiqu5kjs0r0d1k5\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-07T21:55:33-05:00\",\"operation_date\":\"2023-10-07T21:55:33-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"B0A665A28EFD91535ABB111D656ECD04_JP8SA97O36_1696733720.9444\",\"due_date\":\"2023-10-08T09:55:33-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Catalina\",\"last_name\":\"Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-10-07T21:55:33-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 02:57:07','2023-10-08 02:57:07'),(10088,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  929\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T21:59:32-05:00\",\"transaction\":{\"id\":\"tribkvkcbj6bxe2lzzkz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T21:58:44-05:00\",\"operation_date\":\"2023-10-07T21:58:44-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":null,\"order_id\":\"B0A665A28EFD91535ABB111D656ECD04_JP8SA97O36_1696733915.8794\",\"due_date\":\"2023-10-08T09:58:44-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Rozo Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-10-07T21:58:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tribkvkcbj6bxe2lzzkz/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 02:59:32','2023-10-08 02:59:32'),(10089,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  851\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-07T21:59:38-05:00\",\"transaction\":{\"id\":\"tribkvkcbj6bxe2lzzkz\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-07T21:58:44-05:00\",\"operation_date\":\"2023-10-07T21:58:44-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"B0A665A28EFD91535ABB111D656ECD04_JP8SA97O36_1696733915.8794\",\"due_date\":\"2023-10-08T09:58:44-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Santiago\",\"last_name\":\"Rozo Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3004264133\",\"address\":null,\"creation_date\":\"2023-10-07T21:58:44-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 02:59:39','2023-10-08 02:59:39'),(10090,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  903\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T22:06:11-05:00\",\"transaction\":{\"id\":\"trz0jkyxhuxqmx3mqsna\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-07T22:06:11-05:00\",\"operation_date\":\"2023-10-07T22:06:11-05:00\",\"description\":\"Pago Mensual academia: thiago Ramirez barbosa (1010848956)\",\"error_message\":null,\"order_id\":\"7C5845CEA683556D813EBD657E8CCA01_42RM95SV0X_1696734368.325\",\"amount\":95000.00,\"customer\":{\"name\":\"julian esteban\",\"last_name\":\"Ramírez moreno\",\"email\":\"ramirezjulian9258@gmail.com\",\"phone_number\":\"3028491192\",\"address\":null,\"creation_date\":\"2023-10-07T22:06:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz0jkyxhuxqmx3mqsna/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-08 03:06:12','2023-10-08 03:06:12'),(10091,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1155\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T22:07:07-05:00\",\"transaction\":{\"id\":\"trz0jkyxhuxqmx3mqsna\",\"authorization\":\"220706\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-07T22:06:11-05:00\",\"operation_date\":\"2023-10-07T22:07:06-05:00\",\"description\":\"Pago Mensual academia: thiago Ramirez barbosa (1010848956)\",\"error_message\":null,\"order_id\":\"7C5845CEA683556D813EBD657E8CCA01_42RM95SV0X_1696734368.325\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1890\",\"holder_name\":\"Julian Ramirez \",\"expiration_year\":\"26\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":95000.00,\"customer\":{\"name\":\"julian esteban\",\"last_name\":\"Ramírez moreno\",\"email\":\"ramirezjulian9258@gmail.com\",\"phone_number\":\"3028491192\",\"address\":null,\"creation_date\":\"2023-10-07T22:06:11-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trz0jkyxhuxqmx3mqsna/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-08 03:07:07','2023-10-08 03:07:07'),(10092,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T22:07:43-05:00\",\"transaction\":{\"id\":\"traqpu4t7yyyirycwwnp\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-07T22:07:43-05:00\",\"operation_date\":\"2023-10-07T22:07:43-05:00\",\"description\":\"Pago Mensual academia: thiago Ramirez barbosa (1010848956)\",\"error_message\":null,\"order_id\":\"7F2BE1B45D278AC18804B79207A24C53_216WUNYJBI_1696734459.9727\",\"amount\":95000.00,\"customer\":{\"name\":\"julian esteban\",\"last_name\":\"Ramírez moreno\",\"email\":\"ramirezjulian9258@gmail.com\",\"phone_number\":\"3028491192\",\"address\":null,\"creation_date\":\"2023-10-07T22:07:43-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traqpu4t7yyyirycwwnp/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-08 03:07:44','2023-10-08 03:07:44'),(10093,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1156\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T22:08:53-05:00\",\"transaction\":{\"id\":\"traqpu4t7yyyirycwwnp\",\"authorization\":\"220853\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-07T22:07:43-05:00\",\"operation_date\":\"2023-10-07T22:08:52-05:00\",\"description\":\"Pago Mensual academia: thiago Ramirez barbosa (1010848956)\",\"error_message\":null,\"order_id\":\"7F2BE1B45D278AC18804B79207A24C53_216WUNYJBI_1696734459.9727\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX1890\",\"holder_name\":\"Julian Ramirez \",\"expiration_year\":\"26\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":95000.00,\"customer\":{\"name\":\"julian esteban\",\"last_name\":\"Ramírez moreno\",\"email\":\"ramirezjulian9258@gmail.com\",\"phone_number\":\"3028491192\",\"address\":null,\"creation_date\":\"2023-10-07T22:07:44-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traqpu4t7yyyirycwwnp/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-08 03:08:54','2023-10-08 03:08:54'),(10094,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  943\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-07T22:15:01-05:00\",\"transaction\":{\"id\":\"trupulgrmrhwwmp2t0eb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-07T22:14:01-05:00\",\"operation_date\":\"2023-10-07T22:14:01-05:00\",\"description\":\"Pago Mensual academia: Thomas Colorado Patiño (1038875386)\",\"error_message\":null,\"order_id\":\"51A472C08E21AEF54ED749806E3E6490_ANKCFJZSOH_1696734839.2648\",\"due_date\":\"2023-10-08T10:14:01-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jhonny Alexander\",\"last_name\":\"Colorado Londoño\",\"email\":\"jalexander1227@hotmail.com\",\"phone_number\":\"3102318133\",\"address\":null,\"creation_date\":\"2023-10-07T22:14:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trupulgrmrhwwmp2t0eb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 03:15:01','2023-10-08 03:15:01'),(10095,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  826\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-07T22:16:09-05:00\",\"transaction\":{\"id\":\"trupulgrmrhwwmp2t0eb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"207518202\",\"creation_date\":\"2023-10-07T22:14:01-05:00\",\"operation_date\":\"2023-10-07T22:15:59-05:00\",\"description\":\"Pago Mensual academia: Thomas Colorado Patiño (1038875386)\",\"error_message\":null,\"order_id\":\"51A472C08E21AEF54ED749806E3E6490_ANKCFJZSOH_1696734839.2648\",\"due_date\":\"2023-10-08T10:14:01-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Jhonny Alexander\",\"last_name\":\"Colorado Londoño\",\"email\":\"jalexander1227@hotmail.com\",\"phone_number\":\"3102318133\",\"address\":null,\"creation_date\":\"2023-10-07T22:14:01-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 03:16:09','2023-10-08 03:16:09'),(10096,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  918\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T07:17:55-05:00\",\"transaction\":{\"id\":\"tr5lhyn84ng5uqzkd9ip\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-08T07:17:55-05:00\",\"operation_date\":\"2023-10-08T07:17:55-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Bermudez Preciado (1027743105)\",\"error_message\":null,\"order_id\":\"77305C2F862AD1D353F55BF38E5A5183_SVEFH47I5Q_1696767471.3982\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Bermudez Restrepo\",\"email\":\"Jbermudez@construhigienica.com\",\"phone_number\":\"3203719015\",\"address\":null,\"creation_date\":\"2023-10-08T07:17:55-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5lhyn84ng5uqzkd9ip/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-08 12:17:56','2023-10-08 12:17:56'),(10097,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1170\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T07:20:29-05:00\",\"transaction\":{\"id\":\"tr5lhyn84ng5uqzkd9ip\",\"authorization\":\"630143\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-08T07:17:55-05:00\",\"operation_date\":\"2023-10-08T07:20:27-05:00\",\"description\":\"Pago Mensual academia: Juan Sebastian Bermudez Preciado (1027743105)\",\"error_message\":null,\"order_id\":\"77305C2F862AD1D353F55BF38E5A5183_SVEFH47I5Q_1696767471.3982\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"555825XXXXXX7602\",\"holder_name\":\"Juan Fernando Bermudez \",\"expiration_year\":\"30\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"NUBANK\",\"bank_code\":\"000\"},\"amount\":95000.00,\"customer\":{\"name\":\"Juan Fernando\",\"last_name\":\"Bermudez Restrepo\",\"email\":\"Jbermudez@construhigienica.com\",\"phone_number\":\"3203719015\",\"address\":null,\"creation_date\":\"2023-10-08T07:17:56-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5lhyn84ng5uqzkd9ip/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-08 12:20:29','2023-10-08 12:20:29'),(10098,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T07:26:29-05:00\",\"transaction\":{\"id\":\"trjnkdjl0fjagyp7okp4\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-08T07:25:32-05:00\",\"operation_date\":\"2023-10-08T07:25:32-05:00\",\"description\":\"Pago Mensual academia: Pablo Mesa Mesa (1035014887)\",\"error_message\":null,\"order_id\":\"3BCF6EECB2611212E088D0D91F2ADE9C_SRXC74I190_1696767928.1495\",\"due_date\":\"2023-10-08T19:25:32-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Mesa Castaño\",\"email\":\"diana3232@hotmail.com\",\"phone_number\":\"3148324184\",\"address\":null,\"creation_date\":\"2023-10-08T07:25:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjnkdjl0fjagyp7okp4/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 12:26:29','2023-10-08 12:26:29'),(10099,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T07:27:29-05:00\",\"transaction\":{\"id\":\"trjnkdjl0fjagyp7okp4\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"207647227\",\"creation_date\":\"2023-10-08T07:25:32-05:00\",\"operation_date\":\"2023-10-08T07:27:23-05:00\",\"description\":\"Pago Mensual academia: Pablo Mesa Mesa (1035014887)\",\"error_message\":null,\"order_id\":\"3BCF6EECB2611212E088D0D91F2ADE9C_SRXC74I190_1696767928.1495\",\"due_date\":\"2023-10-08T19:25:32-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Mesa Castaño\",\"email\":\"diana3232@hotmail.com\",\"phone_number\":\"3148324184\",\"address\":null,\"creation_date\":\"2023-10-08T07:25:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 12:27:29','2023-10-08 12:27:29'),(10100,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  915\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T07:28:28-05:00\",\"transaction\":{\"id\":\"tr8xe9gofbhswhl47qxs\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-08T07:27:50-05:00\",\"operation_date\":\"2023-10-08T07:27:50-05:00\",\"description\":\"Pago Mensual academia: Pablo Mesa Mesa (1035014887)\",\"error_message\":null,\"order_id\":\"3C3C139BD8467C1587A41081AD78045E_C0YARQ7KB3_1696768061.3193\",\"due_date\":\"2023-10-08T19:27:50-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Mesa Castaño\",\"email\":\"diana3232@hotmail.com\",\"phone_number\":\"3148324184\",\"address\":null,\"creation_date\":\"2023-10-08T07:27:50-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr8xe9gofbhswhl47qxs/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 12:28:28','2023-10-08 12:28:28'),(10101,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  798\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T07:29:33-05:00\",\"transaction\":{\"id\":\"tr8xe9gofbhswhl47qxs\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"207648312\",\"creation_date\":\"2023-10-08T07:27:50-05:00\",\"operation_date\":\"2023-10-08T07:29:28-05:00\",\"description\":\"Pago Mensual academia: Pablo Mesa Mesa (1035014887)\",\"error_message\":null,\"order_id\":\"3C3C139BD8467C1587A41081AD78045E_C0YARQ7KB3_1696768061.3193\",\"due_date\":\"2023-10-08T19:27:50-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Mesa Castaño\",\"email\":\"diana3232@hotmail.com\",\"phone_number\":\"3148324184\",\"address\":null,\"creation_date\":\"2023-10-08T07:27:50-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 12:29:33','2023-10-08 12:29:33'),(10102,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T08:21:15-05:00\",\"transaction\":{\"id\":\"traf5ccahqkboclpgiho\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-08T08:21:15-05:00\",\"operation_date\":\"2023-10-08T08:21:15-05:00\",\"description\":\"Pago Mensual academia: Lucca Rubio Fuentes (1035016053)\",\"error_message\":null,\"order_id\":\"FCAC695DB02687FFB7955B66A43FE6E6_47U3GWI2JE_1696771273.6009\",\"amount\":95000.00,\"customer\":{\"name\":\"Lucca\",\"last_name\":\"Rubio Fuentes\",\"email\":\"paofuentesc829@gmail.com\",\"phone_number\":\"3043863979\",\"address\":null,\"creation_date\":\"2023-10-08T08:21:15-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traf5ccahqkboclpgiho/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-08 13:21:16','2023-10-08 13:21:16'),(10103,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1130\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T08:21:59-05:00\",\"transaction\":{\"id\":\"traf5ccahqkboclpgiho\",\"authorization\":\"299706\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-08T08:21:15-05:00\",\"operation_date\":\"2023-10-08T08:21:58-05:00\",\"description\":\"Pago Mensual academia: Lucca Rubio Fuentes (1035016053)\",\"error_message\":null,\"order_id\":\"FCAC695DB02687FFB7955B66A43FE6E6_47U3GWI2JE_1696771273.6009\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"422274XXXXXX5386\",\"holder_name\":\"JULIO RUBIO\",\"expiration_year\":\"27\",\"expiration_month\":\"12\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":95000.00,\"customer\":{\"name\":\"Lucca\",\"last_name\":\"Rubio Fuentes\",\"email\":\"paofuentesc829@gmail.com\",\"phone_number\":\"3043863979\",\"address\":null,\"creation_date\":\"2023-10-08T08:21:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/traf5ccahqkboclpgiho/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-08 13:22:00','2023-10-08 13:22:00'),(10104,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  917\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T08:39:58-05:00\",\"transaction\":{\"id\":\"tr5opmvomexoer91cgtr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-08T08:38:40-05:00\",\"operation_date\":\"2023-10-08T08:38:40-05:00\",\"description\":\"Pago Mensual academia: Jhoseph Giraldo Diosa (1023547927)\",\"error_message\":null,\"order_id\":\"DBC4D84BFCFE2284BA11BEFFB853A8C4_IJ52CYS0G4_1696772317.2329\",\"due_date\":\"2023-10-08T20:38:40-05:00\",\"amount\":105000.00,\"customer\":{\"name\":\"hillary\",\"last_name\":\"Diosa\",\"email\":\"hillary.diosa@gmail.com\",\"phone_number\":\"3013299833\",\"address\":null,\"creation_date\":\"2023-10-08T08:38:40-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr5opmvomexoer91cgtr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 13:39:59','2023-10-08 13:39:59'),(10105,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  839\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-08T07:45:23-06:00\",\"transaction\":{\"id\":\"tr5opmvomexoer91cgtr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-08T08:38:40-06:00\",\"operation_date\":\"2023-10-08T08:40:08-06:00\",\"description\":\"Pago Mensual academia: Jhoseph Giraldo Diosa (1023547927)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"DBC4D84BFCFE2284BA11BEFFB853A8C4_IJ52CYS0G4_1696772317.2329\",\"due_date\":\"2023-10-08T20:38:40-06:00\",\"error_code\":1007,\"amount\":105000.00,\"customer\":{\"name\":\"hillary\",\"last_name\":\"Diosa\",\"email\":\"hillary.diosa@gmail.com\",\"phone_number\":\"3013299833\",\"address\":null,\"creation_date\":\"2023-10-08T08:38:40-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 13:45:24','2023-10-08 13:45:24'),(10106,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  900\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T08:54:01-05:00\",\"transaction\":{\"id\":\"trxwfq7vzaxzrlg6mlfv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-08T08:54:01-05:00\",\"operation_date\":\"2023-10-08T08:54:01-05:00\",\"description\":\"Pago Mensual academia: Jeronimo Diaz Cespedes (1011404754)\",\"error_message\":null,\"order_id\":\"580796A888DF897B38097BD6C1FDAA96_73RATY25D1_1696773238.1126\",\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Cespedes Guiral\",\"email\":\"paulandrea2830@gmail.com\",\"phone_number\":\"3206675821\",\"address\":null,\"creation_date\":\"2023-10-08T08:54:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxwfq7vzaxzrlg6mlfv/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-08 13:54:01','2023-10-08 13:54:01'),(10107,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1229\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T08:55:12-05:00\",\"transaction\":{\"id\":\"trxwfq7vzaxzrlg6mlfv\",\"authorization\":\"543532\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"payments\":10,\"conciliated\":true,\"creation_date\":\"2023-10-08T08:54:01-05:00\",\"operation_date\":\"2023-10-08T08:55:09-05:00\",\"description\":\"Pago Mensual academia: Jeronimo Diaz Cespedes (1011404754)\",\"error_message\":null,\"order_id\":\"580796A888DF897B38097BD6C1FDAA96_73RATY25D1_1696773238.1126\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"528209XXXXXX7017\",\"holder_name\":\"Paula Céspedes g\",\"expiration_year\":\"27\",\"expiration_month\":\"11\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"FALABELLA\",\"bank_code\":\"000\"},\"payment_plan\":{\"payments\":10,\"payments_type\":\"without_interest\"},\"amount\":165900.00,\"customer\":{\"name\":\"Paula Andrea\",\"last_name\":\"Cespedes Guiral\",\"email\":\"paulandrea2830@gmail.com\",\"phone_number\":\"3206675821\",\"address\":null,\"creation_date\":\"2023-10-08T08:54:01-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trxwfq7vzaxzrlg6mlfv/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-08 13:55:12','2023-10-08 13:55:12'),(10108,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  932\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T09:58:10-05:00\",\"transaction\":{\"id\":\"trjoebwf3a2yydisul1b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-08T09:56:52-05:00\",\"operation_date\":\"2023-10-08T09:56:52-05:00\",\"description\":\"Pago Mensual academia: Leonardo Jaimes Alzate (1023557295)\",\"error_message\":null,\"order_id\":\"47257279D0B4F033E373B16E65F8F089_OF5ML9DAT4_1696777009.8975\",\"due_date\":\"2023-10-08T21:56:52-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Leonardo\",\"last_name\":\"Jaimes Alzate\",\"email\":\"saraalzateforonda@hotmail.com\",\"phone_number\":\"3023764719\",\"address\":null,\"creation_date\":\"2023-10-08T09:56:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjoebwf3a2yydisul1b/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 14:58:11','2023-10-08 14:58:11'),(10109,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  815\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T09:59:08-05:00\",\"transaction\":{\"id\":\"trjoebwf3a2yydisul1b\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"207780230\",\"creation_date\":\"2023-10-08T09:56:52-05:00\",\"operation_date\":\"2023-10-08T09:59:01-05:00\",\"description\":\"Pago Mensual academia: Leonardo Jaimes Alzate (1023557295)\",\"error_message\":null,\"order_id\":\"47257279D0B4F033E373B16E65F8F089_OF5ML9DAT4_1696777009.8975\",\"due_date\":\"2023-10-08T21:56:52-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Leonardo\",\"last_name\":\"Jaimes Alzate\",\"email\":\"saraalzateforonda@hotmail.com\",\"phone_number\":\"3023764719\",\"address\":null,\"creation_date\":\"2023-10-08T09:56:52-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 14:59:08','2023-10-08 14:59:08'),(10110,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T11:42:09-05:00\",\"transaction\":{\"id\":\"trjevhduz2ehl2abakmr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-08T11:40:45-05:00\",\"operation_date\":\"2023-10-08T11:40:45-05:00\",\"description\":\"Pago Mensual academia: Ezequiel Zapata Zuleta (1035980574)\",\"error_message\":null,\"order_id\":\"6FD6B030C6AFEC018415662D0DB43F9D_U5WFHGO81A_1696783240.7011\",\"due_date\":\"2023-10-08T23:40:45-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"ezequiel\",\"last_name\":\"zapata zuleta\",\"email\":\"zuletayesica2@gmail.com\",\"phone_number\":\"3016289693\",\"address\":null,\"creation_date\":\"2023-10-08T11:40:45-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjevhduz2ehl2abakmr/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 16:42:10','2023-10-08 16:42:10'),(10111,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  849\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-08T11:03:10-06:00\",\"transaction\":{\"id\":\"trjevhduz2ehl2abakmr\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-08T11:40:45-06:00\",\"operation_date\":\"2023-10-08T11:42:16-06:00\",\"description\":\"Pago Mensual academia: Ezequiel Zapata Zuleta (1035980574)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"6FD6B030C6AFEC018415662D0DB43F9D_U5WFHGO81A_1696783240.7011\",\"due_date\":\"2023-10-08T23:40:45-06:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"ezequiel\",\"last_name\":\"zapata zuleta\",\"email\":\"zuletayesica2@gmail.com\",\"phone_number\":\"3016289693\",\"address\":null,\"creation_date\":\"2023-10-08T11:40:45-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 17:03:11','2023-10-08 17:03:11'),(10112,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  924\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T14:21:35-05:00\",\"transaction\":{\"id\":\"trshgy1ybwp8vgjp0ttc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-08T14:20:32-05:00\",\"operation_date\":\"2023-10-08T14:20:32-05:00\",\"description\":\"Pago Mensual academia: Santiago arroyave segura (1034993465)\",\"error_message\":null,\"order_id\":\"53E19F3DBB211F20B20B45668303C1B6_B2FW638OGA_1696792813.7589\",\"due_date\":\"2023-10-09T02:20:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Héctor\",\"last_name\":\"arroyave\",\"email\":\"hectorarroyave@gmail.com\",\"phone_number\":\"3006001213\",\"address\":null,\"creation_date\":\"2023-10-08T14:20:32-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trshgy1ybwp8vgjp0ttc/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 19:21:36','2023-10-08 19:21:36'),(10113,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  807\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T14:22:56-05:00\",\"transaction\":{\"id\":\"trshgy1ybwp8vgjp0ttc\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"208100264\",\"creation_date\":\"2023-10-08T14:20:32-05:00\",\"operation_date\":\"2023-10-08T14:22:48-05:00\",\"description\":\"Pago Mensual academia: Santiago arroyave segura (1034993465)\",\"error_message\":null,\"order_id\":\"53E19F3DBB211F20B20B45668303C1B6_B2FW638OGA_1696792813.7589\",\"due_date\":\"2023-10-09T02:20:32-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Héctor\",\"last_name\":\"arroyave\",\"email\":\"hectorarroyave@gmail.com\",\"phone_number\":\"3006001213\",\"address\":null,\"creation_date\":\"2023-10-08T14:20:32-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 19:22:56','2023-10-08 19:22:56'),(10114,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T16:41:05-05:00\",\"transaction\":{\"id\":\"trqkqt35joahuihcece8\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-08T16:40:03-05:00\",\"operation_date\":\"2023-10-08T16:40:03-05:00\",\"description\":\"Pago Mensual academia: Emilio Carvajal Velasquez (1038266576)\",\"error_message\":null,\"order_id\":\"5ADAACD4531B78FF8B5CEDFE3F4D5212_J9H58CGI6N_1696801197.563\",\"due_date\":\"2023-10-09T04:40:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"steven\",\"last_name\":\"carvajal\",\"email\":\"teven1508@icloud.com\",\"phone_number\":\"3007549588\",\"address\":null,\"creation_date\":\"2023-10-08T16:40:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trqkqt35joahuihcece8/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 21:41:06','2023-10-08 21:41:06'),(10115,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  802\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T16:42:09-05:00\",\"transaction\":{\"id\":\"trqkqt35joahuihcece8\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"208245795\",\"creation_date\":\"2023-10-08T16:40:03-05:00\",\"operation_date\":\"2023-10-08T16:41:56-05:00\",\"description\":\"Pago Mensual academia: Emilio Carvajal Velasquez (1038266576)\",\"error_message\":null,\"order_id\":\"5ADAACD4531B78FF8B5CEDFE3F4D5212_J9H58CGI6N_1696801197.563\",\"due_date\":\"2023-10-09T04:40:03-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"steven\",\"last_name\":\"carvajal\",\"email\":\"teven1508@icloud.com\",\"phone_number\":\"3007549588\",\"address\":null,\"creation_date\":\"2023-10-08T16:40:03-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 21:42:10','2023-10-08 21:42:10'),(10116,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T16:56:39-05:00\",\"transaction\":{\"id\":\"tri1nxbec7kivwlare70\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-08T16:55:16-05:00\",\"operation_date\":\"2023-10-08T16:55:16-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":null,\"order_id\":\"B0A665A28EFD91535ABB111D656ECD04_JP8SA97O36_1696802110.9778\",\"due_date\":\"2023-10-09T04:55:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Catalina \",\"last_name\":\"Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3146228502\",\"address\":null,\"creation_date\":\"2023-10-08T16:55:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tri1nxbec7kivwlare70/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 21:56:40','2023-10-08 21:56:40'),(10117,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  847\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-08T16:56:47-05:00\",\"transaction\":{\"id\":\"tri1nxbec7kivwlare70\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":false,\"creation_date\":\"2023-10-08T16:55:16-05:00\",\"operation_date\":\"2023-10-08T16:55:16-05:00\",\"description\":\"Pago Mensual academia: Santiago Rozo Restrepo (1017938765)\",\"error_message\":\"Gateway rejected the operation: NOT_AUTHORIZED\",\"order_id\":\"B0A665A28EFD91535ABB111D656ECD04_JP8SA97O36_1696802110.9778\",\"due_date\":\"2023-10-09T04:55:16-05:00\",\"error_code\":1007,\"amount\":165900.00,\"customer\":{\"name\":\"Catalina \",\"last_name\":\"Restrepo\",\"email\":\"catarestrepov13@gmail.com\",\"phone_number\":\"3146228502\",\"address\":null,\"creation_date\":\"2023-10-08T16:55:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-08 21:56:47','2023-10-08 21:56:47'),(10118,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  928\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T20:51:43-05:00\",\"transaction\":{\"id\":\"trr88sf6k5vhslmguvd0\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-08T20:50:16-05:00\",\"operation_date\":\"2023-10-08T20:50:16-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Coronel Urrego (1198213007)\",\"error_message\":null,\"order_id\":\"7230B2B03E2DA37352ABF1A659545B44_SG8Z3O2XT0_1696816211.709\",\"due_date\":\"2023-10-09T08:50:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luz marina\",\"last_name\":\"urrego ibarra\",\"email\":\"mariurrego05@gmail.com\",\"phone_number\":\"3148346797\",\"address\":null,\"creation_date\":\"2023-10-08T20:50:16-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trr88sf6k5vhslmguvd0/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 01:51:44','2023-10-09 01:51:44'),(10119,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  811\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T20:55:00-05:00\",\"transaction\":{\"id\":\"trr88sf6k5vhslmguvd0\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"208522664\",\"creation_date\":\"2023-10-08T20:50:16-05:00\",\"operation_date\":\"2023-10-08T20:54:27-05:00\",\"description\":\"Pago Mensual academia: Emmanuel Coronel Urrego (1198213007)\",\"error_message\":null,\"order_id\":\"7230B2B03E2DA37352ABF1A659545B44_SG8Z3O2XT0_1696816211.709\",\"due_date\":\"2023-10-09T08:50:16-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Luz marina\",\"last_name\":\"urrego ibarra\",\"email\":\"mariurrego05@gmail.com\",\"phone_number\":\"3148346797\",\"address\":null,\"creation_date\":\"2023-10-08T20:50:16-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 01:55:00','2023-10-09 01:55:00'),(10120,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  921\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T20:57:21-05:00\",\"transaction\":{\"id\":\"trsdek5p9r4tewjbetkb\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-08T20:56:19-05:00\",\"operation_date\":\"2023-10-08T20:56:19-05:00\",\"description\":\"Pago Mensual academia: Emiliano Guzman Acosta (1035010754)\",\"error_message\":null,\"order_id\":\"6D4F95BF53BBA28F148641C8561DBF98_8S6JLCU3D2_1696816576.3459\",\"due_date\":\"2023-10-09T08:56:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"javier\",\"last_name\":\"Guzman\",\"email\":\"javierguzman0713@gmail.com\",\"phone_number\":\"3123788166\",\"address\":null,\"creation_date\":\"2023-10-08T20:56:19-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trsdek5p9r4tewjbetkb/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 01:57:22','2023-10-09 01:57:22'),(10121,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  804\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T20:58:22-05:00\",\"transaction\":{\"id\":\"trsdek5p9r4tewjbetkb\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"208528823\",\"creation_date\":\"2023-10-08T20:56:19-05:00\",\"operation_date\":\"2023-10-08T20:58:14-05:00\",\"description\":\"Pago Mensual academia: Emiliano Guzman Acosta (1035010754)\",\"error_message\":null,\"order_id\":\"6D4F95BF53BBA28F148641C8561DBF98_8S6JLCU3D2_1696816576.3459\",\"due_date\":\"2023-10-09T08:56:19-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"javier\",\"last_name\":\"Guzman\",\"email\":\"javierguzman0713@gmail.com\",\"phone_number\":\"3123788166\",\"address\":null,\"creation_date\":\"2023-10-08T20:56:19-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 01:58:23','2023-10-09 01:58:23'),(10122,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  882\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T21:16:58-05:00\",\"transaction\":{\"id\":\"trcq80o8w8dfpjxlepzd\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-08T21:16:58-05:00\",\"operation_date\":\"2023-10-08T21:16:58-05:00\",\"description\":\"Pago Mensual academia: jeronimo vasquez vargas (1035012182)\",\"error_message\":null,\"order_id\":\"1F88C7C5D7D94AE08BD752AA3D82108B_DRYU4LT6M7_1696817816.121\",\"amount\":165900.00,\"customer\":{\"name\":\"david\",\"last_name\":\"vasquez\",\"email\":\"davidvg88@hotmail.com\",\"phone_number\":\"3146486117\",\"address\":null,\"creation_date\":\"2023-10-08T21:16:58-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcq80o8w8dfpjxlepzd/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 02:16:59','2023-10-09 02:16:59'),(10123,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  576\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-08T21:17:44-05:00\",\"transaction\":{\"id\":\"trvk0ayq7zpmvo84hrmv\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-10-08T21:17:44-05:00\",\"operation_date\":\"2023-10-08T21:17:44-05:00\",\"description\":\"Pago Mensual academia: jeronimo vasquez vargas (1035012182)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"1F88C7C5D7D94AE08BD752AA3D82108B_DRYU4LT6M7_1696817816.121\",\"error_code\":3001,\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 02:17:45','2023-10-09 02:17:45'),(10124,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1130\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T21:18:27-05:00\",\"transaction\":{\"id\":\"trcq80o8w8dfpjxlepzd\",\"authorization\":\"711683\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-08T21:16:58-05:00\",\"operation_date\":\"2023-10-08T21:18:26-05:00\",\"description\":\"Pago Mensual academia: jeronimo vasquez vargas (1035012182)\",\"error_message\":null,\"order_id\":\"1F88C7C5D7D94AE08BD752AA3D82108B_DRYU4LT6M7_1696817816.121\",\"card\":{\"type\":\"credit\",\"brand\":\"visa\",\"address\":null,\"card_number\":\"459425XXXXXX0523\",\"holder_name\":\"David vasquez g\",\"expiration_year\":\"27\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"david\",\"last_name\":\"vasquez\",\"email\":\"davidvg88@hotmail.com\",\"phone_number\":\"3146486117\",\"address\":null,\"creation_date\":\"2023-10-08T21:16:59-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trcq80o8w8dfpjxlepzd/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 02:18:27','2023-10-09 02:18:27'),(10125,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  940\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-08T22:40:58-05:00\",\"transaction\":{\"id\":\"trreo9qjcechg3pye9la\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-08T22:40:02-05:00\",\"operation_date\":\"2023-10-08T22:40:02-05:00\",\"description\":\"Pago Mensual academia: jeronimo agudelo aguilar (1020230403)\",\"error_message\":null,\"order_id\":\"FD95EC8DF5DBEEA25AA8E6C808BAD583_GSUW3LCA0Q_1696822798.2139\",\"due_date\":\"2023-10-09T10:40:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"brayan antonio\",\"last_name\":\"agudelo sanchez\",\"email\":\"brayan.agudelo26@gmail.com\",\"phone_number\":\"3113643596\",\"address\":null,\"creation_date\":\"2023-10-08T22:40:02-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trreo9qjcechg3pye9la/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 03:40:59','2023-10-09 03:40:59'),(10126,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  823\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-08T22:42:01-05:00\",\"transaction\":{\"id\":\"trreo9qjcechg3pye9la\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"208616020\",\"creation_date\":\"2023-10-08T22:40:02-05:00\",\"operation_date\":\"2023-10-08T22:41:53-05:00\",\"description\":\"Pago Mensual academia: jeronimo agudelo aguilar (1020230403)\",\"error_message\":null,\"order_id\":\"FD95EC8DF5DBEEA25AA8E6C808BAD583_GSUW3LCA0Q_1696822798.2139\",\"due_date\":\"2023-10-09T10:40:02-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"brayan antonio\",\"last_name\":\"agudelo sanchez\",\"email\":\"brayan.agudelo26@gmail.com\",\"phone_number\":\"3113643596\",\"address\":null,\"creation_date\":\"2023-10-08T22:40:02-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 03:42:02','2023-10-09 03:42:02'),(10127,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  946\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-09T02:15:08-06:00\",\"transaction\":{\"id\":\"trk5kgb6xv2yrsgoszhc\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-10-05T16:04:39-06:00\",\"operation_date\":\"2023-10-05T16:04:39-06:00\",\"description\":\"Pago Mensual academia: Maximiliano Velasco Mejia (1036459050)\",\"error_message\":null,\"order_id\":\"086AF6E4641ABB18CAAFC151B9AA95C8_9FCS0NUW82_1696539874.5056\",\"due_date\":\"2023-10-06T04:04:39-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"juan david\",\"last_name\":\"velasco idarraga\",\"email\":\"juan.velascoidarraga@gmail.com\",\"phone_number\":\"3173315273\",\"address\":null,\"creation_date\":\"2023-10-05T16:04:39-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trk5kgb6xv2yrsgoszhc/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 08:15:08','2023-10-09 08:15:08'),(10128,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  919\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-09T02:15:08-06:00\",\"transaction\":{\"id\":\"tratlu0wbwcc65hdodli\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-10-06T11:57:41-06:00\",\"operation_date\":\"2023-10-06T11:57:41-06:00\",\"description\":\"Pago Mensual academia: Pablo Mesa Mesa (1035014887)\",\"error_message\":null,\"order_id\":\"3BCF6EECB2611212E088D0D91F2ADE9C_SRXC74I190_1696611453.1327\",\"due_date\":\"2023-10-06T23:57:41-06:00\",\"amount\":105000.00,\"customer\":{\"name\":\"Diana\",\"last_name\":\"Mesa Castaño\",\"email\":\"diana3232@hotmail.com\",\"phone_number\":\"3148324184\",\"address\":null,\"creation_date\":\"2023-10-06T11:57:41-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tratlu0wbwcc65hdodli/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 08:15:08','2023-10-09 08:15:08'),(10129,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  925\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"transaction.expired\",\"event_date\":\"2023-10-09T02:15:08-06:00\",\"transaction\":{\"id\":\"trjtntpl1dk5vs2vezqh\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"in_progress\",\"conciliated\":false,\"creation_date\":\"2023-10-06T10:31:28-06:00\",\"operation_date\":\"2023-10-06T10:31:28-06:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":null,\"order_id\":\"AA36C88C27650AF3B9868B723AE15DFC_CSOJATFPBG_1696606282.0414\",\"due_date\":\"2023-10-06T22:31:28-06:00\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Valdez Osorio\",\"email\":\"leidyosorio@yahoo.com\",\"phone_number\":\"3166287821\",\"address\":null,\"creation_date\":\"2023-10-06T10:31:28-06:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trjtntpl1dk5vs2vezqh/pse_capture\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 08:15:08','2023-10-09 08:15:08'),(10130,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  927\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-09T06:29:26-05:00\",\"transaction\":{\"id\":\"trek24vynazwlexsag0b\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-09T06:28:03-05:00\",\"operation_date\":\"2023-10-09T06:28:03-05:00\",\"description\":\"Pago Mensual academia: Isaias Pineda Perez (1038876223)\",\"error_message\":null,\"order_id\":\"80C94C09453DFE07681FDE78E769353F_YQ3UCEV41M_1696850877.0225\",\"due_date\":\"2023-10-09T18:28:03-05:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Pineda Adarve\",\"email\":\"juandavid_023@hotmail.com\",\"phone_number\":\"3187676787\",\"address\":null,\"creation_date\":\"2023-10-09T06:28:03-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trek24vynazwlexsag0b/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 11:29:27','2023-10-09 11:29:27'),(10131,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  810\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-09T05:33:11-06:00\",\"transaction\":{\"id\":\"trek24vynazwlexsag0b\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"208703209\",\"creation_date\":\"2023-10-09T06:28:03-06:00\",\"operation_date\":\"2023-10-09T06:30:40-06:00\",\"description\":\"Pago Mensual academia: Isaias Pineda Perez (1038876223)\",\"error_message\":null,\"order_id\":\"80C94C09453DFE07681FDE78E769353F_YQ3UCEV41M_1696850877.0225\",\"due_date\":\"2023-10-09T18:28:03-06:00\",\"amount\":95000.00,\"customer\":{\"name\":\"Juan David\",\"last_name\":\"Pineda Adarve\",\"email\":\"juandavid_023@hotmail.com\",\"phone_number\":\"3187676787\",\"address\":null,\"creation_date\":\"2023-10-09T06:28:03-06:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 11:33:11','2023-10-09 11:33:11'),(10132,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-09T07:21:24-05:00\",\"transaction\":{\"id\":\"tr0lg2mvjkxzyyfdcc2s\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-09T07:21:24-05:00\",\"operation_date\":\"2023-10-09T07:21:24-05:00\",\"description\":\"Pago Mensual academia: Samuel Montoya Serna (1034998338)\",\"error_message\":null,\"order_id\":\"D2B15C75C0C389B49C2EFBEA79CDC946_I38PXDRVKT_1696854063.4909\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Serna Mejia\",\"email\":\"alejandraserna2008@gmail.com\",\"phone_number\":\"3165210425\",\"address\":null,\"creation_date\":\"2023-10-09T07:21:24-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tr0lg2mvjkxzyyfdcc2s/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 12:21:25','2023-10-09 12:21:25'),(10133,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  574\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.failed\",\"event_date\":\"2023-10-09T07:23:29-05:00\",\"transaction\":{\"id\":\"trdmvscp8ebmfd2hpdmx\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"failed\",\"conciliated\":true,\"creation_date\":\"2023-10-09T07:23:29-05:00\",\"operation_date\":\"2023-10-09T07:23:29-05:00\",\"description\":\"Pago Mensual academia: Samuel Montoya Serna (1034998338)\",\"error_message\":\"The card was declined by the bank\",\"order_id\":\"D2B15C75C0C389B49C2EFBEA79CDC946_I38PXDRVKT_1696854063.4909\",\"error_code\":3001,\"amount\":165900.00,\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 12:23:30','2023-10-09 12:23:30'),(10134,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  895\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-09T07:24:52-05:00\",\"transaction\":{\"id\":\"trzcwntnsthxrditxw9a\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-09T07:24:52-05:00\",\"operation_date\":\"2023-10-09T07:24:52-05:00\",\"description\":\"Pago Mensual academia: Samuel Montoya Serna (1034998338)\",\"error_message\":null,\"order_id\":\"D2B15C75C0C389B49C2EFBEA79CDC946_I38PXDRVKT_1696854288.7306\",\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Serna Mejia\",\"email\":\"alejandraserna2008@gmail.com\",\"phone_number\":\"3165210425\",\"address\":null,\"creation_date\":\"2023-10-09T07:24:52-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzcwntnsthxrditxw9a/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 12:24:53','2023-10-09 12:24:53'),(10135,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1148\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-09T07:25:38-05:00\",\"transaction\":{\"id\":\"trzcwntnsthxrditxw9a\",\"authorization\":\"171952\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-09T07:24:52-05:00\",\"operation_date\":\"2023-10-09T07:25:37-05:00\",\"description\":\"Pago Mensual academia: Samuel Montoya Serna (1034998338)\",\"error_message\":null,\"order_id\":\"D2B15C75C0C389B49C2EFBEA79CDC946_I38PXDRVKT_1696854288.7306\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"540690XXXXXX0215\",\"holder_name\":\"Alejandra Serna\",\"expiration_year\":\"26\",\"expiration_month\":\"09\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"BANCO COLPATRIA\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Alejandra\",\"last_name\":\"Serna Mejia\",\"email\":\"alejandraserna2008@gmail.com\",\"phone_number\":\"3165210425\",\"address\":null,\"creation_date\":\"2023-10-09T07:24:53-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trzcwntnsthxrditxw9a/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 12:25:38','2023-10-09 12:25:38'),(10136,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  941\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-09T07:51:42-05:00\",\"transaction\":{\"id\":\"trpcots7mn4o4ya3kq09\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"creation_date\":\"2023-10-09T07:51:04-05:00\",\"operation_date\":\"2023-10-09T07:51:04-05:00\",\"description\":\"Pago Mensual academia: JUAN JOSÉ LONDOÑO GRACIANO (1036457036)\",\"error_message\":null,\"order_id\":\"8AB8DFF7441EDA91AA7BB26BECB3AFD3_F3XSBA41LR_1696855856.9859\",\"due_date\":\"2023-10-09T19:51:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BIBIANA\",\"last_name\":\"GRACIANO VALENCIA\",\"email\":\"vivianagraciano.82@gmail.com\",\"phone_number\":\"3122193283\",\"address\":null,\"creation_date\":\"2023-10-09T07:51:04-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trpcots7mn4o4ya3kq09/redirect/\"},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 12:51:43','2023-10-09 12:51:43'),(10137,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  824\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-09T07:52:33-05:00\",\"transaction\":{\"id\":\"trpcots7mn4o4ya3kq09\",\"authorization\":\"0\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":false,\"cus\":\"208777489\",\"creation_date\":\"2023-10-09T07:51:04-05:00\",\"operation_date\":\"2023-10-09T07:52:16-05:00\",\"description\":\"Pago Mensual academia: JUAN JOSÉ LONDOÑO GRACIANO (1036457036)\",\"error_message\":null,\"order_id\":\"8AB8DFF7441EDA91AA7BB26BECB3AFD3_F3XSBA41LR_1696855856.9859\",\"due_date\":\"2023-10-09T19:51:04-05:00\",\"amount\":165900.00,\"customer\":{\"name\":\"BIBIANA\",\"last_name\":\"GRACIANO VALENCIA\",\"email\":\"vivianagraciano.82@gmail.com\",\"phone_number\":\"3122193283\",\"address\":null,\"creation_date\":\"2023-10-09T07:51:04-05:00\",\"external_id\":null,\"clabe\":null},\"currency\":\"COP\",\"method\":\"bank_account\"}}',NULL,NULL,'2023-10-09 12:52:34','2023-10-09 12:52:34'),(10138,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  904\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-09T09:59:08-05:00\",\"transaction\":{\"id\":\"trlsyjna5azmzhp3sfx1\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-09T09:59:08-05:00\",\"operation_date\":\"2023-10-09T09:59:08-05:00\",\"description\":\"Pago Mensual academia: Jerónimo Quiñonez Raigoza (1023547001)\",\"error_message\":null,\"order_id\":\"70AFBF2259B4449D8AE1429E054DF1B1_HSN1ZL3I8G_1696863541.433\",\"amount\":165900.00,\"customer\":{\"name\":\"Evelin Yuliana\",\"last_name\":\"Raigoza Montoya\",\"email\":\"evelin0118@hotmail.com\",\"phone_number\":\"3007454999\",\"address\":null,\"creation_date\":\"2023-10-09T09:59:08-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlsyjna5azmzhp3sfx1/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 14:59:09','2023-10-09 14:59:09'),(10139,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1157\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-09T10:00:07-05:00\",\"transaction\":{\"id\":\"trlsyjna5azmzhp3sfx1\",\"authorization\":\"100007\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-09T09:59:08-05:00\",\"operation_date\":\"2023-10-09T10:00:06-05:00\",\"description\":\"Pago Mensual academia: Jerónimo Quiñonez Raigoza (1023547001)\",\"error_message\":null,\"order_id\":\"70AFBF2259B4449D8AE1429E054DF1B1_HSN1ZL3I8G_1696863541.433\",\"card\":{\"type\":\"debit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"530691XXXXXX8031\",\"holder_name\":\"Evelin Raigoza M\",\"expiration_year\":\"25\",\"expiration_month\":\"03\",\"allows_charges\":true,\"allows_payouts\":true,\"bank_name\":\"AMERICAN EXPRESS\",\"bank_code\":\"103\"},\"amount\":165900.00,\"customer\":{\"name\":\"Evelin Yuliana\",\"last_name\":\"Raigoza Montoya\",\"email\":\"evelin0118@hotmail.com\",\"phone_number\":\"3007454999\",\"address\":null,\"creation_date\":\"2023-10-09T09:59:09-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trlsyjna5azmzhp3sfx1/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 15:00:08','2023-10-09 15:00:08'),(10140,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-09T11:48:42-05:00\",\"transaction\":{\"id\":\"trnwwsfnyusclaguzons\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-09T11:48:41-05:00\",\"operation_date\":\"2023-10-09T11:48:41-05:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":null,\"order_id\":\"AA36C88C27650AF3B9868B723AE15DFC_CSOJATFPBG_1696870082.4436\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Valdez Osorio\",\"email\":\"leidyosorio@yahoo.com\",\"phone_number\":\"3166287821\",\"address\":null,\"creation_date\":\"2023-10-09T11:48:41-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnwwsfnyusclaguzons/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 16:48:42','2023-10-09 16:48:42'),(10141,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1139\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-09T11:50:23-05:00\",\"transaction\":{\"id\":\"trnwwsfnyusclaguzons\",\"authorization\":\"82885Z\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-09T11:48:41-05:00\",\"operation_date\":\"2023-10-09T11:50:22-05:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":null,\"order_id\":\"AA36C88C27650AF3B9868B723AE15DFC_CSOJATFPBG_1696870082.4436\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"518941XXXXXX0196\",\"holder_name\":\"Stephen W Valdez\",\"expiration_year\":\"27\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CITIBANK N.A.\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Valdez Osorio\",\"email\":\"leidyosorio@yahoo.com\",\"phone_number\":\"3166287821\",\"address\":null,\"creation_date\":\"2023-10-09T11:48:42-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/trnwwsfnyusclaguzons/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 16:50:23','2023-10-09 16:50:23'),(10142,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  887\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.created\",\"event_date\":\"2023-10-09T11:52:36-05:00\",\"transaction\":{\"id\":\"tro73pzyss8ff4m4vcmg\",\"authorization\":null,\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"charge_pending\",\"conciliated\":false,\"iva\":\"0\",\"creation_date\":\"2023-10-09T11:52:36-05:00\",\"operation_date\":\"2023-10-09T11:52:36-05:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":null,\"order_id\":\"4E2ECEBBFAFE27A7C00E0462FAD0873A_NLDCFJ14QO_1696870316.8545\",\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Valdez Osorio\",\"email\":\"leidyosorio@yahoo.com\",\"phone_number\":\"3166287821\",\"address\":null,\"creation_date\":\"2023-10-09T11:52:36-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro73pzyss8ff4m4vcmg/card_capture\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 16:52:37','2023-10-09 16:52:37'),(10143,'POST /api/store/webhooksListener?paymentGatewayId=16 HTTP/1.1\r\nAccept-Encoding: gzip,deflate\r\nConnection:      Keep-Alive\r\nContent-Length:  1139\r\nContent-Type:    application/json; charset=UTF-8\r\nHost:            envigadofc.sports-crowd.com\r\nUser-Agent:      Apache-HttpClient/4.5.3 (Java/1.8.0_382)\r\n\r\n{\"type\":\"charge.succeeded\",\"event_date\":\"2023-10-09T11:53:46-05:00\",\"transaction\":{\"id\":\"tro73pzyss8ff4m4vcmg\",\"authorization\":\"90603Z\",\"operation_type\":\"in\",\"transaction_type\":\"charge\",\"status\":\"completed\",\"conciliated\":true,\"creation_date\":\"2023-10-09T11:52:36-05:00\",\"operation_date\":\"2023-10-09T11:53:45-05:00\",\"description\":\"Pago Mensual academia: Matias Valdez Osorio (1013351129)\",\"error_message\":null,\"order_id\":\"4E2ECEBBFAFE27A7C00E0462FAD0873A_NLDCFJ14QO_1696870316.8545\",\"card\":{\"type\":\"credit\",\"brand\":\"mastercard\",\"address\":null,\"card_number\":\"518941XXXXXX0196\",\"holder_name\":\"Stephen W Valdez\",\"expiration_year\":\"27\",\"expiration_month\":\"08\",\"allows_charges\":true,\"allows_payouts\":false,\"bank_name\":\"CITIBANK N.A.\",\"bank_code\":\"000\"},\"amount\":165900.00,\"customer\":{\"name\":\"Matias\",\"last_name\":\"Valdez Osorio\",\"email\":\"leidyosorio@yahoo.com\",\"phone_number\":\"3166287821\",\"address\":null,\"creation_date\":\"2023-10-09T11:52:37-05:00\",\"external_id\":null,\"clabe\":null},\"payment_method\":{\"type\":\"redirect\",\"url\":\"https://api.openpay.co/v1/mwttwfjphsmuukkzyrx3/charges/tro73pzyss8ff4m4vcmg/redirect/\"},\"currency\":\"COP\",\"method\":\"card\"}}',NULL,NULL,'2023-10-09 16:53:46','2023-10-09 16:53:46');
/*!40000 ALTER TABLE `system_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tags`
--

DROP TABLE IF EXISTS `tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `description` varchar(255) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tags`
--

LOCK TABLES `tags` WRITE;
/*!40000 ALTER TABLE `tags` DISABLE KEYS */;
INSERT INTO `tags` VALUES (1,'Test',NULL,'Etiqueta de prueba',1,'2022-12-08 23:59:51','2022-12-08 23:59:51'),(2,'Actualización datos',NULL,'Actualización datos',1,'2022-12-15 13:59:09','2022-12-15 13:59:09'),(3,'Academia 2023','3.xlsx','Academia 2023',1,'2023-02-09 17:10:19','2023-03-07 13:09:12'),(4,'Deudores','4.xlsx','Academia 2023',1,'2023-03-17 17:51:03','2023-07-08 15:41:52'),(5,'Comunicaciones',NULL,'Comunicacion',1,'2023-05-25 21:29:58','2023-05-25 21:29:58'),(6,'Abonados','6.jpg','Abonados',1,'2023-05-30 20:35:02','2023-06-17 02:29:00');
/*!40000 ALTER TABLE `tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `target_notifications`
--

DROP TABLE IF EXISTS `target_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `target_notifications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `rols` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `target_notifications`
--

LOCK TABLES `target_notifications` WRITE;
/*!40000 ALTER TABLE `target_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `target_notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `team_statistics`
--

DROP TABLE IF EXISTS `team_statistics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `team_statistics` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `team_name` varchar(100) NOT NULL,
  `team_league` int(11) NOT NULL,
  `team_season` varchar(191) NOT NULL,
  `api_key` varchar(100) NOT NULL,
  `api_key_standings` varchar(100) NOT NULL,
  `query_matches` text DEFAULT NULL,
  `result_matches` longtext DEFAULT NULL,
  `query_standings` text DEFAULT NULL,
  `result_standings` longtext DEFAULT NULL,
  `synchronization_frequency` int(11) NOT NULL DEFAULT 1440 COMMENT 'Frecuencia de sincronización de datos con el API (valor en minutos, por defecto 1 día)',
  `last_load_date` timestamp NULL DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `team_statistics`
--

LOCK TABLES `team_statistics` WRITE;
/*!40000 ALTER TABLE `team_statistics` DISABLE KEYS */;
INSERT INTO `team_statistics` VALUES (1,'envigado futbol club',239,'2023','56350c702d04665b1ccbef42ffedbed8838737edeeb1b4588347324ff42d570f','36f24ef32415bf6288a4f92f19f3a5ec','{\"q\":\"envigado futbol club partidos\",\"location\":\"Colombia\",\"hl\":\"es\",\"gl\":\"co\"}','{\"search_metadata\":{\"id\":\"6520a48110d7449d808401d2\",\"status\":\"Success\",\"json_endpoint\":\"https:\\/\\/serpapi.com\\/searches\\/6a40cb8c681397c0\\/6520a48110d7449d808401d2.json\",\"created_at\":\"2023-10-07 00:21:21 UTC\",\"processed_at\":\"2023-10-07 00:21:21 UTC\",\"google_url\":\"https:\\/\\/www.google.com\\/search?q=envigado+futbol+club+partidos&oq=envigado+futbol+club+partidos&uule=w+CAIQICIIQ29sb21iaWE&hl=es&gl=co&sourceid=chrome&ie=UTF-8\",\"raw_html_file\":\"https:\\/\\/serpapi.com\\/searches\\/6a40cb8c681397c0\\/6520a48110d7449d808401d2.html\",\"total_time_taken\":6.47},\"search_parameters\":{\"engine\":\"google\",\"q\":\"envigado futbol club partidos\",\"location_requested\":\"Colombia\",\"location_used\":\"Colombia\",\"google_domain\":\"google.com\",\"hl\":\"es\",\"gl\":\"co\",\"device\":\"desktop\"},\"search_information\":{\"query_displayed\":\"envigado futbol club partidos\",\"total_results\":1610000,\"time_taken_displayed\":0.36,\"menu_items\":[{\"position\":1,\"title\":\"Todo\"},{\"position\":2,\"title\":\"Noticias\",\"link\":\"https:\\/\\/www.google.com\\/search?q=envigado+futbol+club+partidos&sca_esv=571399955&gl=co&hl=es&tbm=nws&source=lnms&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ_AUoAXoECAIQAw\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&q=envigado+futbol+club+partidos&tbm=nws\"},{\"position\":3,\"title\":\"Im\\u00e1genes\",\"link\":\"https:\\/\\/www.google.com\\/search?q=envigado+futbol+club+partidos&sca_esv=571399955&gl=co&hl=es&tbm=isch&source=lnms&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ_AUoAnoECAIQBA\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google_images&gl=co&google_domain=google.com&hl=es&q=envigado+futbol+club+partidos\"},{\"position\":4,\"title\":\"Maps\",\"link\":\"https:\\/\\/maps.google.com\\/maps?gl=co&hl=es&q=envigado+futbol+club+partidos&uule=w+CAIQICIIQ29sb21iaWE&um=1&ie=UTF-8&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ_AUoA3oECAIQBQ\"},{\"position\":5,\"title\":\"V\\u00eddeos\",\"link\":\"https:\\/\\/www.google.com\\/search?q=envigado+futbol+club+partidos&sca_esv=571399955&gl=co&hl=es&tbm=vid&source=lnms&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ_AUoBHoECAIQBg\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google_videos&gl=co&google_domain=google.com&hl=es&q=envigado+futbol+club+partidos\"},{\"position\":6,\"title\":\"Shopping\",\"link\":\"https:\\/\\/www.google.com\\/search?q=envigado+futbol+club+partidos&sca_esv=571399955&gl=co&hl=es&tbm=shop&source=lnms&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ_AUoAHoECAIQCg\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google_shopping&gl=co&google_domain=google.com&hl=es&q=envigado+futbol+club+partidos\"},{\"position\":7,\"title\":\"Libros\",\"link\":\"https:\\/\\/www.google.com\\/search?q=envigado+futbol+club+partidos&sca_esv=571399955&gl=co&hl=es&tbm=bks&source=lnms&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ_AUoAXoECAIQCw\"},{\"position\":8,\"title\":\"Vuelos\",\"link\":\"https:\\/\\/www.google.com\\/travel\\/flights?q=envigado+futbol+club+partidos&sca_esv=571399955&gl=co&hl=es&tbm=flm&source=lnms&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ_AUoAnoECAIQDA\"},{\"position\":9,\"title\":\"Finance\",\"link\":\"https:\\/\\/www.google.com\\/finance?sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ_AUoA3oECAIQDQ\"}],\"organic_results_state\":\"Results for exact spelling\"},\"sports_results\":{\"title\":\"Envigado F\\u00fatbol Club\",\"game_spotlight\":{\"league\":\"Categor\\u00eda Primera A\",\"estadio\":\"Estadio Polideportivo Sur\",\"date\":\"ma\\u00f1ana, 4:00 p. m.\",\"stage\":\"Clausura \\u00b7 Jornada 16 de 20\",\"teams\":[{\"name\":\"Envigado\",\"thumbnail\":\"https:\\/\\/dimg-pa.googleapis.com\\/lg\\/CgZFRjdGMDI.png?sig=ADM9xjdpHKMtWQQ_pb59VDnDAMp6&key=AIzaSyCUqbG5Kw_8jb3cy2ZBKvV2kAi8z0qmQO0&sk=nEQKyulktwU&w=96&h=96\"},{\"name\":\"Deportivo Pereira\",\"thumbnail\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/b492201b6c2d25448770efbc4c328dc6db769fed7c270d1fca46cb9cac4ee7d94a8e80fb062f7d46947c996b98f63320.png\"}]},\"games\":[{\"tournament\":\"Categor\\u00eda Primera A\",\"stage\":\"Clausura \\u00b7 Jornada 17 de 20\",\"estadio\":\"Estadio Guillermo Plazas Alcid\",\"date\":\"Lun, 16\\/10\",\"time\":\"6:05 p. m.\",\"teams\":[{\"name\":\"Atl\\u00e9tico Huila\",\"thumbnail\":\"https:\\/\\/dimg-pa.googleapis.com\\/lg\\/CgYyQjg3NDQ.png?sig=ADM9xjcTW-iwFVNaeaK0imHsxeQC&key=AIzaSyCUqbG5Kw_8jb3cy2ZBKvV2kAi8z0qmQO0&sk=S4Ij86y7w-g&w=48&h=48\"},{\"name\":\"Envigado\",\"thumbnail\":\"https:\\/\\/dimg-pa.googleapis.com\\/lg\\/CgZFRjdGMDI.png?sig=ADM9xjdpHKMtWQQ_pb59VDnDAMp6&key=AIzaSyCUqbG5Kw_8jb3cy2ZBKvV2kAi8z0qmQO0&sk=nEQKyulktwU&w=48&h=48\"}]},{\"tournament\":\"Categor\\u00eda Primera A\",\"stage\":\"Clausura \\u00b7 Jornada 18 de 20\",\"estadio\":\"Estadio Polideportivo Sur\",\"date\":\"22\\/10\",\"time\":\"Por definirse\",\"teams\":[{\"name\":\"Envigado\",\"thumbnail\":\"https:\\/\\/dimg-pa.googleapis.com\\/lg\\/CgZFRjdGMDI.png?sig=ADM9xjdpHKMtWQQ_pb59VDnDAMp6&key=AIzaSyCUqbG5Kw_8jb3cy2ZBKvV2kAi8z0qmQO0&sk=nEQKyulktwU&w=48&h=48\"},{\"name\":\"Deportivo Cali\",\"thumbnail\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/b492201b6c2d25448770efbc4c328dc62ecb3c8d466c52ec021966f017ee5f5697ecd37b9681f1c9e5bcf8ae7338defa.png\"}]}]},\"related_questions\":[{\"question\":\"\\u00bfCu\\u00e1ndo son las convocatorias de Envigado 2023?\",\"snippet\":\"Nuestras Fuerzas B\\u00e1sicas est\\u00e1n la b\\u00fasqueda de jugadores para integrar este 2023 las categor\\u00edas Sub 10 y Sub 11. Las pruebas ser\\u00e1n del 16 al 20 de enero en la Cancha Auxiliar #3 del Polideportivo Sur.\",\"title\":\"CONVOCATORIAS 2023 I SUB 10 Y SUB 11 - Envigado FC\",\"link\":\"https:\\/\\/www.envigadofc.co\\/convocatorias-2023-i-sub-10-y-sub-11\\/#:~:text=Nuestras%20Fuerzas%20B%C3%A1sicas%20est%C3%A1n%20la,Auxiliar%20%233%20del%20Polideportivo%20Sur.\",\"displayed_link\":\"https:\\/\\/www.envigadofc.co \\u203a convocatorias-2023-i-sub-1...\",\"thumbnail\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/b1aafbce0405e1a58b4f4518eaa672c0fa8a3a8d2aeedc967b6f0dd0ba6a0f66.png\",\"next_page_token\":\"eyJvbnMiOiIxMDA0MSIsImZjIjoiRW9zQkNreEJURTl1Y0ZsVmMzTllVbkZsYlRsQlRuVlRWaTFDVkVnNFRscFdVbTFoUmxwWWNXaFVkR3hrUlc1dWQycEVUSFppTW5odmFsaE5OSG8xYm10NVprMHhaRTFGY0dwVFZDMXdXWHBGRWhkbllWRm5XbVJ1U2s1dk4xVnJVRWxRYzNWbE9YbEJheG9pUVVwM2F5MDRabXR4TVRKVGJFaFlYek5vVmt0dWJXd3hVRkJEUjJZeFUyZFpVUSIsImZjdiI6IjMiLCJlaSI6ImdhUWdaZG5KTm83VWtQSVBzdWU5eUFrIiwicWMiOiJDaDFsYm5acFoyRmtieUJtZFhSaWIyd2dZMngxWWlCd1lYSjBhV1J2Y3hBT2ZXR3NIVDgiLCJxdWVzdGlvbiI6IsK\\/Q3XDoW5kbyBzb24gbGFzIGNvbnZvY2F0b3JpYXMgZGUgRW52aWdhZG8gMjAyMz8iLCJsayI6ImM1UFNUUzVOekV2SlZ5ak96MVBJU1N4V1NNN1BLOHRQVGl6Skw4b0U4bEpTRlZMenlqTFRFNEVxakF5TWpBRSIsImJzIjoiYy1NeTR6STh0Ti01OVBEQ3ZKUjhoZUw4UElXY3hHS0Y1UHk4c3Z6a3hKTDhva3dnTHlWVndUV3ZMRE05RWFqQ3lNREkyRjVpV1JLWENwYzhVTl9oemJuNUNqbXBDaW1aeWFsNUNva0lkVzdPOWhLM0U3aE11UFFQN1E4c3pUeThNazhodFZnaE5VY2hwVFQxOE1aOEZEUGREdThxU2NyUFVYRE9LVTJ5bHpoYXhxWE9wUVF6RzZJcHRiZ2tNU1VUUlplOXhFbEhBVVlBIiwiaWQiOiJmY18yIn0=\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google_related_questions&google_domain=google.com&next_page_token=eyJvbnMiOiIxMDA0MSIsImZjIjoiRW9zQkNreEJURTl1Y0ZsVmMzTllVbkZsYlRsQlRuVlRWaTFDVkVnNFRscFdVbTFoUmxwWWNXaFVkR3hrUlc1dWQycEVUSFppTW5odmFsaE5OSG8xYm10NVprMHhaRTFGY0dwVFZDMXdXWHBGRWhkbllWRm5XbVJ1U2s1dk4xVnJVRWxRYzNWbE9YbEJheG9pUVVwM2F5MDRabXR4TVRKVGJFaFlYek5vVmt0dWJXd3hVRkJEUjJZeFUyZFpVUSIsImZjdiI6IjMiLCJlaSI6ImdhUWdaZG5KTm83VWtQSVBzdWU5eUFrIiwicWMiOiJDaDFsYm5acFoyRmtieUJtZFhSaWIyd2dZMngxWWlCd1lYSjBhV1J2Y3hBT2ZXR3NIVDgiLCJxdWVzdGlvbiI6IsK%2FQ3XDoW5kbyBzb24gbGFzIGNvbnZvY2F0b3JpYXMgZGUgRW52aWdhZG8gMjAyMz8iLCJsayI6ImM1UFNUUzVOekV2SlZ5ak96MVBJU1N4V1NNN1BLOHRQVGl6Skw4b0U4bEpTRlZMenlqTFRFNEVxakF5TWpBRSIsImJzIjoiYy1NeTR6STh0Ti01OVBEQ3ZKUjhoZUw4UElXY3hHS0Y1UHk4c3Z6a3hKTDhva3dnTHlWVndUV3ZMRE05RWFqQ3lNREkyRjVpV1JLWENwYzhVTl9oemJuNUNqbXBDaW1aeWFsNUNva0lkVzdPOWhLM0U3aE11UFFQN1E4c3pUeThNazhodFZnaE5VY2hwVFQxOE1aOEZEUGREdThxU2NyUFVYRE9LVTJ5bHpoYXhxWE9wUVF6RzZJcHRiZ2tNU1VUUlplOXhFbEhBVVlBIiwiaWQiOiJmY18yIn0%3D\"},{\"question\":\"\\u00bfC\\u00f3mo le dicen a Envigado FC?\",\"title\":\"Envigado F\\u00fatbol Club\",\"link\":\"https:\\/\\/es.wikipedia.org\\/wiki\\/Envigado_F%C3%BAtbol_Club\",\"displayed_link\":\"https:\\/\\/es.wikipedia.org \\u203a wiki \\u203a Envigado_F\\u00fatbol_Club\",\"thumbnail\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/b1aafbce0405e1a58b4f4518eaa672c0789ed1f85840398d18a9b4e2dfe2fc58.png\",\"next_page_token\":\"eyJvbnMiOiIxMDA0MSIsImZjIjoiRW9zQkNreEJURTl1Y0ZsVmMzTllVbkZsYlRsQlRuVlRWaTFDVkVnNFRscFdVbTFoUmxwWWNXaFVkR3hrUlc1dWQycEVUSFppTW5odmFsaE5OSG8xYm10NVprMHhaRTFGY0dwVFZDMXdXWHBGRWhkbllWRm5XbVJ1U2s1dk4xVnJVRWxRYzNWbE9YbEJheG9pUVVwM2F5MDRabXR4TVRKVGJFaFlYek5vVmt0dWJXd3hVRkJEUjJZeFUyZFpVUSIsImZjdiI6IjMiLCJlaSI6ImdhUWdaZG5KTm83VWtQSVBzdWU5eUFrIiwicWMiOiJDaDFsYm5acFoyRmtieUJtZFhSaWIyd2dZMngxWWlCd1lYSjBhV1J2Y3hBT2ZXR3NIVDgiLCJxdWVzdGlvbiI6IsK\\/Q8OzbW8gbGUgZGljZW4gYSBFbnZpZ2FkbyBGQz8iLCJsayI6IkdodGpiMjF2SUd4bElHUnBZMlZ1SUdFZ1pXNTJhV2RoWkc4Z1ptTSIsImJzIjoiYy1NeTR6STh0Ti01OVBEQ3ZKUjhoZUw4UElXY3hHS0Y1UHk4c3Z6a3hKTDhva3dnTHlWVndUV3ZMRE05RWFqQ3lNREkyRjVpV1JLWENwYzhVTl9oemJuNUNqbXBDaW1aeWFsNUNva0lkVzdPOWhLM0U3aE11UFFQN1E4c3pUeThNazhodFZnaE5VY2hwVFQxOE1aOEZEUGREdThxU2NyUFVYRE9LVTJ5bHpoYXhxWE9wUVF6RzZJcHRiZ2tNU1VUUlplOXhFbEhBVVlBIiwiaWQiOiJmY18yIn0=\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google_related_questions&google_domain=google.com&next_page_token=eyJvbnMiOiIxMDA0MSIsImZjIjoiRW9zQkNreEJURTl1Y0ZsVmMzTllVbkZsYlRsQlRuVlRWaTFDVkVnNFRscFdVbTFoUmxwWWNXaFVkR3hrUlc1dWQycEVUSFppTW5odmFsaE5OSG8xYm10NVprMHhaRTFGY0dwVFZDMXdXWHBGRWhkbllWRm5XbVJ1U2s1dk4xVnJVRWxRYzNWbE9YbEJheG9pUVVwM2F5MDRabXR4TVRKVGJFaFlYek5vVmt0dWJXd3hVRkJEUjJZeFUyZFpVUSIsImZjdiI6IjMiLCJlaSI6ImdhUWdaZG5KTm83VWtQSVBzdWU5eUFrIiwicWMiOiJDaDFsYm5acFoyRmtieUJtZFhSaWIyd2dZMngxWWlCd1lYSjBhV1J2Y3hBT2ZXR3NIVDgiLCJxdWVzdGlvbiI6IsK%2FQ8OzbW8gbGUgZGljZW4gYSBFbnZpZ2FkbyBGQz8iLCJsayI6IkdodGpiMjF2SUd4bElHUnBZMlZ1SUdFZ1pXNTJhV2RoWkc4Z1ptTSIsImJzIjoiYy1NeTR6STh0Ti01OVBEQ3ZKUjhoZUw4UElXY3hHS0Y1UHk4c3Z6a3hKTDhva3dnTHlWVndUV3ZMRE05RWFqQ3lNREkyRjVpV1JLWENwYzhVTl9oemJuNUNqbXBDaW1aeWFsNUNva0lkVzdPOWhLM0U3aE11UFFQN1E4c3pUeThNazhodFZnaE5VY2hwVFQxOE1aOEZEUGREdThxU2NyUFVYRE9LVTJ5bHpoYXhxWE9wUVF6RzZJcHRiZ2tNU1VUUlplOXhFbEhBVVlBIiwiaWQiOiJmY18yIn0%3D\"},{\"question\":\"\\u00bfQui\\u00e9n es el due\\u00f1o de Envigado F\\u00fatbol Club?\",\"snippet\":\"Hoy, ProF\\u00fatbol, fondo de capital privado administrado por Progresi\\u00f3n, confirm\\u00f3 la adquisici\\u00f3n de 55% del equipo de primera divisi\\u00f3n del F\\u00fatbol Profesional Colombiano, Envigado FC.\",\"title\":\"ProF\\u00fatbol hace oficial la compra de 55% del Envigado F\\u00fatbol Club\",\"date\":\"26\\/04\\/2018\",\"link\":\"https:\\/\\/www.larepublica.co\\/empresas\\/nuevo-dueno-del-envigado-2719163#:~:text=Hoy%2C%20ProF%C3%BAtbol%2C%20fondo%20de%20capital,F%C3%BAtbol%20Profesional%20Colombiano%2C%20Envigado%20FC.\",\"displayed_link\":\"https:\\/\\/www.larepublica.co \\u203a empresas \\u203a nuevo-dueno-de...\",\"next_page_token\":\"eyJvbnMiOiIxMDA0MSIsImZjIjoiRW9zQkNreEJURTl1Y0ZsVmMzTllVbkZsYlRsQlRuVlRWaTFDVkVnNFRscFdVbTFoUmxwWWNXaFVkR3hrUlc1dWQycEVUSFppTW5odmFsaE5OSG8xYm10NVprMHhaRTFGY0dwVFZDMXdXWHBGRWhkbllWRm5XbVJ1U2s1dk4xVnJVRWxRYzNWbE9YbEJheG9pUVVwM2F5MDRabXR4TVRKVGJFaFlYek5vVmt0dWJXd3hVRkJEUjJZeFUyZFpVUSIsImZjdiI6IjMiLCJlaSI6ImdhUWdaZG5KTm83VWtQSVBzdWU5eUFrIiwicWMiOiJDaDFsYm5acFoyRmtieUJtZFhSaWIyd2dZMngxWWlCd1lYSjBhV1J2Y3hBT2ZXR3NIVDgiLCJxdWVzdGlvbiI6IsK\\/UXVpw6luIGVzIGVsIGR1ZcOxbyBkZSBFbnZpZ2FkbyBGw7p0Ym9sIENsdWI\\/IiwibGsiOiJHaXh4ZFduRHFXNGdaWE1nWld3Z1pIVmx3N0Z2SUdSbElHVnVkbWxuWVdSdklHYkR1blJpYjJ3Z1kyeDFZZyIsImJzIjoiYy1NeTR6STh0Ti01OVBEQ3ZKUjhoZUw4UElXY3hHS0Y1UHk4c3Z6a3hKTDhva3dnTHlWVndUV3ZMRE05RWFqQ3lNREkyRjVpV1JLWENwYzhVTl9oemJuNUNqbXBDaW1aeWFsNUNva0lkVzdPOWhLM0U3aE11UFFQN1E4c3pUeThNazhodFZnaE5VY2hwVFQxOE1aOEZEUGREdThxU2NyUFVYRE9LVTJ5bHpoYXhxWE9wUVF6RzZJcHRiZ2tNU1VUUlplOXhFbEhBVVlBIiwiaWQiOiJmY18yIn0=\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google_related_questions&google_domain=google.com&next_page_token=eyJvbnMiOiIxMDA0MSIsImZjIjoiRW9zQkNreEJURTl1Y0ZsVmMzTllVbkZsYlRsQlRuVlRWaTFDVkVnNFRscFdVbTFoUmxwWWNXaFVkR3hrUlc1dWQycEVUSFppTW5odmFsaE5OSG8xYm10NVprMHhaRTFGY0dwVFZDMXdXWHBGRWhkbllWRm5XbVJ1U2s1dk4xVnJVRWxRYzNWbE9YbEJheG9pUVVwM2F5MDRabXR4TVRKVGJFaFlYek5vVmt0dWJXd3hVRkJEUjJZeFUyZFpVUSIsImZjdiI6IjMiLCJlaSI6ImdhUWdaZG5KTm83VWtQSVBzdWU5eUFrIiwicWMiOiJDaDFsYm5acFoyRmtieUJtZFhSaWIyd2dZMngxWWlCd1lYSjBhV1J2Y3hBT2ZXR3NIVDgiLCJxdWVzdGlvbiI6IsK%2FUXVpw6luIGVzIGVsIGR1ZcOxbyBkZSBFbnZpZ2FkbyBGw7p0Ym9sIENsdWI%2FIiwibGsiOiJHaXh4ZFduRHFXNGdaWE1nWld3Z1pIVmx3N0Z2SUdSbElHVnVkbWxuWVdSdklHYkR1blJpYjJ3Z1kyeDFZZyIsImJzIjoiYy1NeTR6STh0Ti01OVBEQ3ZKUjhoZUw4UElXY3hHS0Y1UHk4c3Z6a3hKTDhva3dnTHlWVndUV3ZMRE05RWFqQ3lNREkyRjVpV1JLWENwYzhVTl9oemJuNUNqbXBDaW1aeWFsNUNva0lkVzdPOWhLM0U3aE11UFFQN1E4c3pUeThNazhodFZnaE5VY2hwVFQxOE1aOEZEUGREdThxU2NyUFVYRE9LVTJ5bHpoYXhxWE9wUVF6RzZJcHRiZ2tNU1VUUlplOXhFbEhBVVlBIiwiaWQiOiJmY18yIn0%3D\"},{\"question\":\"\\u00bfC\\u00f3mo es el estadio de Envigado?\",\"snippet\":\"El Estadio Polideportivo Sur es un estadio de f\\u00fatbol, donde el equipo municipal Envigado F. C. hace las veces de local en la Categor\\u00eda Primera A del f\\u00fatbol colombiano. El estadio fue inaugurado en 1992 y tiene capacidad para 14 000\\u200b espectadores.\",\"title\":\"Estadio Polideportivo Sur\",\"info\":\"Envigado F\\u00fatbol Club \\/ Cancha\\/estadio\",\"link\":\"https:\\/\\/www.google.com\\/search?sca_esv=571399955&gl=co&hl=es&q=%C2%BFC%C3%B3mo+es+el+estadio+de+Envigado%3F&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQzmd6BAgyEAY\",\"thumbnail\":\"https:\\/\\/encrypted-tbn0.gstatic.com\\/images?q=tbn:ANd9GcQY9k1QM1UWkeEMwpJd55AhQFTj98QvJvxuMKDrweygOP4K7ZTxPQ&s=0\",\"next_page_token\":\"eyJvbnMiOiIxMDA0MSIsImZjIjoiRW9zQkNreEJURTl1Y0ZsVmMzTllVbkZsYlRsQlRuVlRWaTFDVkVnNFRscFdVbTFoUmxwWWNXaFVkR3hrUlc1dWQycEVUSFppTW5odmFsaE5OSG8xYm10NVprMHhaRTFGY0dwVFZDMXdXWHBGRWhkbllWRm5XbVJ1U2s1dk4xVnJVRWxRYzNWbE9YbEJheG9pUVVwM2F5MDRabXR4TVRKVGJFaFlYek5vVmt0dWJXd3hVRkJEUjJZeFUyZFpVUSIsImZjdiI6IjMiLCJlaSI6ImdhUWdaZG5KTm83VWtQSVBzdWU5eUFrIiwicWMiOiJDaDFsYm5acFoyRmtieUJtZFhSaWIyd2dZMngxWWlCd1lYSjBhV1J2Y3hBT2ZXR3NIVDgiLCJxdWVzdGlvbiI6IsK\\/Q8OzbW8gZXMgZWwgZXN0YWRpbyBkZSBFbnZpZ2Fkbz8iLCJsayI6IkdoNWpiMjF2SUdWeklHVnNJR1Z6ZEdGa2FXOGdaR1VnWlc1MmFXZGhaRzgiLCJicyI6ImMtTXk0ekk4dE4tNTlQREN2SlI4aGVMOFBJV2N4R0tGNVB5OHN2emt4Skw4b2t3Z0x5VlZ3VFd2TERNOUVhakN5TURJMkY1aVdSS1hDcGM4VU5faHpibjVDam1wQ2ltWnlhbDVDb2tJZFc3TzloSzNFN2hNdVBRUDdROHN6VHk4TWs4aHRWZ2hOVWNocFRUMThNWjhGRFBkRHU4cVNjclBVWERPS1UyeWx6aGF4cVhPcFFRekc2SXB0YmdrTVNVVFJaZTl4RWxIQVVZQSIsImlkIjoiZmNfMiJ9\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google_related_questions&google_domain=google.com&next_page_token=eyJvbnMiOiIxMDA0MSIsImZjIjoiRW9zQkNreEJURTl1Y0ZsVmMzTllVbkZsYlRsQlRuVlRWaTFDVkVnNFRscFdVbTFoUmxwWWNXaFVkR3hrUlc1dWQycEVUSFppTW5odmFsaE5OSG8xYm10NVprMHhaRTFGY0dwVFZDMXdXWHBGRWhkbllWRm5XbVJ1U2s1dk4xVnJVRWxRYzNWbE9YbEJheG9pUVVwM2F5MDRabXR4TVRKVGJFaFlYek5vVmt0dWJXd3hVRkJEUjJZeFUyZFpVUSIsImZjdiI6IjMiLCJlaSI6ImdhUWdaZG5KTm83VWtQSVBzdWU5eUFrIiwicWMiOiJDaDFsYm5acFoyRmtieUJtZFhSaWIyd2dZMngxWWlCd1lYSjBhV1J2Y3hBT2ZXR3NIVDgiLCJxdWVzdGlvbiI6IsK%2FQ8OzbW8gZXMgZWwgZXN0YWRpbyBkZSBFbnZpZ2Fkbz8iLCJsayI6IkdoNWpiMjF2SUdWeklHVnNJR1Z6ZEdGa2FXOGdaR1VnWlc1MmFXZGhaRzgiLCJicyI6ImMtTXk0ekk4dE4tNTlQREN2SlI4aGVMOFBJV2N4R0tGNVB5OHN2emt4Skw4b2t3Z0x5VlZ3VFd2TERNOUVhakN5TURJMkY1aVdSS1hDcGM4VU5faHpibjVDam1wQ2ltWnlhbDVDb2tJZFc3TzloSzNFN2hNdVBRUDdROHN6VHk4TWs4aHRWZ2hOVWNocFRUMThNWjhGRFBkRHU4cVNjclBVWERPS1UyeWx6aGF4cVhPcFFRekc2SXB0YmdrTVNVVFJaZTl4RWxIQVVZQSIsImlkIjoiZmNfMiJ9\"}],\"organic_results\":[{\"position\":1,\"title\":\"Calendario Envigado | Resultados de los partidos casa\\/fuera\",\"link\":\"https:\\/\\/www.fichajes.com\\/equipo\\/envigado-fc\\/calendario\",\"displayed_link\":\"https:\\/\\/www.fichajes.com \\u203a Equipos \\u203a Envigado\",\"favicon\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/6229200caa90c0b566c4744cd936e1f6cc1ab1d55fa13bf2cdf93eb30a73d461.png\",\"snippet\":\"Conoce el calendario con todos los partidos del equipo Envigado en campeonato y el resto de competiciones : resultados en directo.\",\"snippet_highlighted_words\":[\"calendario\",\"partidos\",\"Envigado\"],\"about_page_link\":\"https:\\/\\/www.google.com\\/search?q=About+https:\\/\\/www.fichajes.com\\/equipo\\/envigado-fc\\/calendario&tbm=ilp\",\"about_page_serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?engine=google_about_this_result&google_domain=google.com&q=About+https%3A%2F%2Fwww.fichajes.com%2Fequipo%2Fenvigado-fc%2Fcalendario\",\"cached_page_link\":\"https:\\/\\/webcache.googleusercontent.com\\/search?q=cache:dnMXb5FMSQEJ:https:\\/\\/www.fichajes.com\\/equipo\\/envigado-fc\\/calendario&cd=2&hl=es&ct=clnk&gl=co\",\"source\":\"Fichajes.com\"},{\"position\":2,\"title\":\"Calendario de partidos Envigado 2022 - AS.com\",\"link\":\"https:\\/\\/colombia.as.com\\/resultados\\/ficha\\/equipo\\/envigado_futbol_club\\/3841\\/calendario\\/\",\"displayed_link\":\"https:\\/\\/colombia.as.com \\u203a ficha \\u203a envigado_futbol_club\",\"favicon\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/6229200caa90c0b566c4744cd936e1f651fb0adec2e5db129d4c8a306f25c2fd.png\",\"snippet\":\"Calendario de partidos del Envigado en la temporada 2022 con resultados y horarios de los pr\\u00f3ximos partidos en AS.com.\",\"snippet_highlighted_words\":[\"Calendario\",\"partidos\",\"Envigado\",\"partidos\"],\"about_page_link\":\"https:\\/\\/www.google.com\\/search?q=About+https:\\/\\/colombia.as.com\\/resultados\\/ficha\\/equipo\\/envigado_futbol_club\\/3841\\/calendario\\/&tbm=ilp\",\"about_page_serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?engine=google_about_this_result&google_domain=google.com&q=About+https%3A%2F%2Fcolombia.as.com%2Fresultados%2Fficha%2Fequipo%2Fenvigado_futbol_club%2F3841%2Fcalendario%2F\",\"cached_page_link\":\"https:\\/\\/webcache.googleusercontent.com\\/search?q=cache:o30SGfLlti8J:https:\\/\\/colombia.as.com\\/resultados\\/ficha\\/equipo\\/envigado_futbol_club\\/3841\\/calendario\\/&cd=3&hl=es&ct=clnk&gl=co\",\"source\":\"Diario AS\"},{\"position\":3,\"title\":\"Calendario de Envigado\",\"link\":\"https:\\/\\/www.espn.com.co\\/futbol\\/equipo\\/calendario\\/_\\/id\\/5481\\/envigado\",\"displayed_link\":\"https:\\/\\/www.espn.com.co \\u203a futbol \\u203a equipo \\u203a envigado\",\"favicon\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/6229200caa90c0b566c4744cd936e1f6b37cb764ab76fea6463badf5cdebad1b.png\",\"snippet\":\"Conoce todo el calendario del Envigado para la temporada 2023 en ESPN (CO). Incluye todos los partidos del Envigado en todas las competiciones nacionales e ...\",\"snippet_highlighted_words\":[\"calendario\",\"Envigado\",\"partidos\",\"Envigado\"],\"about_page_link\":\"https:\\/\\/www.google.com\\/search?q=About+https:\\/\\/www.espn.com.co\\/futbol\\/equipo\\/calendario\\/_\\/id\\/5481\\/envigado&tbm=ilp\",\"about_page_serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?engine=google_about_this_result&google_domain=google.com&q=About+https%3A%2F%2Fwww.espn.com.co%2Ffutbol%2Fequipo%2Fcalendario%2F_%2Fid%2F5481%2Fenvigado\",\"cached_page_link\":\"https:\\/\\/webcache.googleusercontent.com\\/search?q=cache:kt9GcWU1vJEJ:https:\\/\\/www.espn.com.co\\/futbol\\/equipo\\/calendario\\/_\\/id\\/5481\\/envigado&cd=4&hl=es&ct=clnk&gl=co\",\"source\":\"ESPN Colombia\"},{\"position\":4,\"title\":\"Envigado FC - Colombia\",\"link\":\"https:\\/\\/int.soccerway.com\\/teams\\/colombia\\/envigado-futbol-club\\/470\\/\",\"displayed_link\":\"https:\\/\\/int.soccerway.com \\u203a envigado-futbol-club\",\"favicon\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/6229200caa90c0b566c4744cd936e1f616ef14fcff664fb1d46f32f3ee8537cc.png\",\"snippet\":\"Colombia - Envigado FC - Results, fixtures, squad, statistics, photos, videos and news - Soccerway.\",\"snippet_highlighted_words\":[\"Envigado FC\"],\"about_page_link\":\"https:\\/\\/www.google.com\\/search?q=About+https:\\/\\/int.soccerway.com\\/teams\\/colombia\\/envigado-futbol-club\\/470\\/&tbm=ilp\",\"about_page_serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?engine=google_about_this_result&google_domain=google.com&q=About+https%3A%2F%2Fint.soccerway.com%2Fteams%2Fcolombia%2Fenvigado-futbol-club%2F470%2F\",\"cached_page_link\":\"https:\\/\\/webcache.googleusercontent.com\\/search?q=cache:b7GCQ93j0WcJ:https:\\/\\/int.soccerway.com\\/teams\\/colombia\\/envigado-futbol-club\\/470\\/&cd=5&hl=es&ct=clnk&gl=co\",\"source\":\"Soccerway\"},{\"position\":5,\"title\":\"Envigado FC: INICIO\",\"link\":\"https:\\/\\/www.envigadofc.co\\/\",\"displayed_link\":\"https:\\/\\/www.envigadofc.co\",\"favicon\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/6229200caa90c0b566c4744cd936e1f654462d705222bc5a6de7d9578144eba9.png\",\"snippet\":\"Inicio sitio web Envigado Futbol Club, equipo profesional de futbol colombiano \\u00a1Con\\u00f3cenos ... PARTIDOS EN EL CLUB. 08\\/08\\/2022. 07 Ago. SE JUG\\u00d3 LA FECHA 06 DEL ...\",\"snippet_highlighted_words\":[\"Envigado Futbol Club\",\"PARTIDOS\"],\"about_page_link\":\"https:\\/\\/www.google.com\\/search?q=About+https:\\/\\/www.envigadofc.co\\/&tbm=ilp\",\"about_page_serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?engine=google_about_this_result&google_domain=google.com&q=About+https%3A%2F%2Fwww.envigadofc.co%2F\",\"source\":\"Envigado FC\"},{\"position\":6,\"title\":\"PROGRAMACIONES\",\"link\":\"https:\\/\\/www.envigadofc.co\\/programaciones\\/\",\"displayed_link\":\"https:\\/\\/www.envigadofc.co \\u203a programaciones\",\"favicon\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/6229200caa90c0b566c4744cd936e1f677b69cee64f5e9b4c174479265decf6b.png\",\"snippet\":\"ENVIGADO FC VS. LEONES FC. 13:00 Hrs \\/ Estadio El Dorado. TORNEO NACIONAL SUB 15. S\\u00e1bado, 27 de mayo de 2023. SUB 15 CANTERA VS. ATL\\u00c9TICO NACIONAL. 15:00 Hrs ...\",\"snippet_highlighted_words\":[\"ENVIGADO FC\"],\"about_page_link\":\"https:\\/\\/www.google.com\\/search?q=About+https:\\/\\/www.envigadofc.co\\/programaciones\\/&tbm=ilp\",\"about_page_serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?engine=google_about_this_result&google_domain=google.com&q=About+https%3A%2F%2Fwww.envigadofc.co%2Fprogramaciones%2F\",\"cached_page_link\":\"https:\\/\\/webcache.googleusercontent.com\\/search?q=cache:rS6-ZtGyFqoJ:https:\\/\\/www.envigadofc.co\\/programaciones\\/&cd=14&hl=es&ct=clnk&gl=co\",\"source\":\"Envigado FC\"},{\"position\":7,\"title\":\"EL PR\\u00d3XIMO PARTIDO DEL NARANJA\",\"link\":\"https:\\/\\/www.envigadofc.co\\/el-proximo-partido-del-naranja\\/\",\"displayed_link\":\"https:\\/\\/www.envigadofc.co \\u203a el-proximo-partido-del-n...\",\"favicon\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/6229200caa90c0b566c4744cd936e1f65be25a1e8e9ec10997997f96c0675c02.png\",\"snippet\":\"El pr\\u00f3ximo encuentro del Envigado F\\u00fatbol Club en el Campeonato de Primera Divisi\\u00f3n, ser\\u00e1 en Bogot\\u00e1. El Naranja ir\\u00e1 a la capital del pa\\u00eds para medirse al ...\",\"snippet_highlighted_words\":[\"Envigado F\\u00fatbol Club\"],\"about_page_link\":\"https:\\/\\/www.google.com\\/search?q=About+https:\\/\\/www.envigadofc.co\\/el-proximo-partido-del-naranja\\/&tbm=ilp\",\"about_page_serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?engine=google_about_this_result&google_domain=google.com&q=About+https%3A%2F%2Fwww.envigadofc.co%2Fel-proximo-partido-del-naranja%2F\",\"cached_page_link\":\"https:\\/\\/webcache.googleusercontent.com\\/search?q=cache:xnUjQ6rACZkJ:https:\\/\\/www.envigadofc.co\\/el-proximo-partido-del-naranja\\/&cd=15&hl=es&ct=clnk&gl=co\",\"source\":\"Envigado FC\"},{\"position\":8,\"title\":\"Envigado: Resultados, calendario, plantilla y estad\\u00edsticas\",\"link\":\"https:\\/\\/www.marcadores.com\\/futbol\\/colombia\\/equipos\\/envigado\\/\",\"displayed_link\":\"https:\\/\\/www.marcadores.com \\u203a colombia \\u203a equipos \\u203a e...\",\"favicon\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/6229200caa90c0b566c4744cd936e1f63aeb9a4f4c8ae86930a242ca68db34e0.png\",\"snippet\":\"Marcador minuto a minuto Envigado. Clasificaci\\u00f3n, estad\\u00edsticas y resultados del Envigado. Calendario de partidos del Envigado en la temporada.\",\"snippet_highlighted_words\":[\"Envigado\",\"Envigado\",\"Calendario\",\"partidos\",\"Envigado\"],\"about_page_link\":\"https:\\/\\/www.google.com\\/search?q=About+https:\\/\\/www.marcadores.com\\/futbol\\/colombia\\/equipos\\/envigado\\/&tbm=ilp\",\"about_page_serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?engine=google_about_this_result&google_domain=google.com&q=About+https%3A%2F%2Fwww.marcadores.com%2Ffutbol%2Fcolombia%2Fequipos%2Fenvigado%2F\",\"cached_page_link\":\"https:\\/\\/webcache.googleusercontent.com\\/search?q=cache:-YAslzxOg2AJ:https:\\/\\/www.marcadores.com\\/futbol\\/colombia\\/equipos\\/envigado\\/&cd=16&hl=es&ct=clnk&gl=co\",\"source\":\"Marcadores.com\"},{\"position\":9,\"title\":\"Envigado F\\u00fatbol Club S.A.\",\"link\":\"https:\\/\\/www.winsports.co\\/equipos\\/envigado-futbol-club-sa-2837\",\"displayed_link\":\"https:\\/\\/www.winsports.co \\u203a equipos \\u203a envigado-futbol...\",\"favicon\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/6229200caa90c0b566c4744cd936e1f6a85388bb7581f8e223514bacaeb3fffc.png\",\"snippet\":\"Partidos jugados, -. 8, Goles, -. 46, Remates a puerta, -. 39,3%, Precisi\\u00f3n de remates, -. 6,8%, Porcentaje de conversi\\u00f3n, -. 5, Asistencias, -. Defensa. 15 ...\",\"snippet_highlighted_words\":[\"Partidos\"],\"about_page_link\":\"https:\\/\\/www.google.com\\/search?q=About+https:\\/\\/www.winsports.co\\/equipos\\/envigado-futbol-club-sa-2837&tbm=ilp\",\"about_page_serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?engine=google_about_this_result&google_domain=google.com&q=About+https%3A%2F%2Fwww.winsports.co%2Fequipos%2Fenvigado-futbol-club-sa-2837\",\"cached_page_link\":\"https:\\/\\/webcache.googleusercontent.com\\/search?q=cache:LchaW6YKt54J:https:\\/\\/www.winsports.co\\/equipos\\/envigado-futbol-club-sa-2837&cd=17&hl=es&ct=clnk&gl=co\",\"source\":\"Win Sports\"},{\"position\":10,\"title\":\"\\u00bfCu\\u00e1ndo juega Envigado FC?\",\"link\":\"https:\\/\\/www.colombia.com\\/futbol\\/equipos\\/envigado-fc\\/\",\"displayed_link\":\"https:\\/\\/www.colombia.com \\u203a F\\u00fatbol \\u203a Equipos\",\"favicon\":\"https:\\/\\/serpapi.com\\/searches\\/6520a48110d7449d808401d2\\/images\\/6229200caa90c0b566c4744cd936e1f6ba090d36d4f74849a8d979f8c7f5302b.png\",\"snippet\":\"Calendario de partidos de Envigado F\\u00fatbol Club S.A.: \\u00faltimas noticias, fixture, resultados, torneos y tablas de posiciones.\",\"snippet_highlighted_words\":[\"Calendario\",\"partidos\",\"Envigado F\\u00fatbol Club\"],\"about_page_link\":\"https:\\/\\/www.google.com\\/search?q=About+https:\\/\\/www.colombia.com\\/futbol\\/equipos\\/envigado-fc\\/&tbm=ilp\",\"about_page_serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?engine=google_about_this_result&google_domain=google.com&q=About+https%3A%2F%2Fwww.colombia.com%2Ffutbol%2Fequipos%2Fenvigado-fc%2F\",\"cached_page_link\":\"https:\\/\\/webcache.googleusercontent.com\\/search?q=cache:HiX6kq4ruRQJ:https:\\/\\/www.colombia.com\\/futbol\\/equipos\\/envigado-fc\\/&cd=18&hl=es&ct=clnk&gl=co\",\"source\":\"Colombia.com\"}],\"related_searches\":[{\"block_position\":1,\"query\":\"partido envigado hoy en vivo\",\"link\":\"https:\\/\\/www.google.com\\/search?sca_esv=571399955&gl=co&hl=es&q=Partido+Envigado+hoy+en+vivo&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ1QJ6BAgnEAE\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=Partido+Envigado+hoy+en+vivo\"},{\"block_position\":1,\"query\":\"envigado f\\u00fatbol club jugadores\",\"link\":\"https:\\/\\/www.google.com\\/search?sca_esv=571399955&gl=co&hl=es&q=Envigado+F%C3%BAtbol+Club+jugadores&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ1QJ6BAglEAE\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=Envigado+F%C3%BAtbol+Club+jugadores\"},{\"block_position\":1,\"query\":\"con qui\\u00e9n juega envigado hoy\",\"link\":\"https:\\/\\/www.google.com\\/search?sca_esv=571399955&gl=co&hl=es&q=Con+qui%C3%A9n+juega+Envigado+hoy&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ1QJ6BAghEAE\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=Con+qui%C3%A9n+juega+Envigado+hoy\"},{\"block_position\":1,\"query\":\"envigado fc hoy\",\"link\":\"https:\\/\\/www.google.com\\/search?sca_esv=571399955&gl=co&hl=es&q=Envigado+FC+hoy&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ1QJ6BAgdEAE\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=Envigado+FC+hoy\"},{\"block_position\":1,\"query\":\"d\\u00f3nde juega envigado hoy\",\"link\":\"https:\\/\\/www.google.com\\/search?sca_esv=571399955&gl=co&hl=es&q=D%C3%B3nde+juega+Envigado+hoy&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ1QJ6BAgcEAE\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=D%C3%B3nde+juega+Envigado+hoy\"},{\"block_position\":1,\"query\":\"partidos envigado 2023\",\"link\":\"https:\\/\\/www.google.com\\/search?sca_esv=571399955&gl=co&hl=es&q=Partidos+envigado+2023&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ1QJ6BAgZEAE\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=Partidos+envigado+2023\"},{\"block_position\":1,\"query\":\"escuela de f\\u00fatbol envigado precios\",\"link\":\"https:\\/\\/www.google.com\\/search?sca_esv=571399955&gl=co&hl=es&q=Escuela+de+F%C3%BAtbol+Envigado+precios&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ1QJ6BAgYEAE\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=Escuela+de+F%C3%BAtbol+Envigado+precios\"},{\"block_position\":1,\"query\":\"convocatorias envigado fc 2023\",\"link\":\"https:\\/\\/www.google.com\\/search?sca_esv=571399955&gl=co&hl=es&q=Convocatorias+Envigado+FC+2023&sa=X&ved=2ahUKEwiZjryx1eKBAxUOKkQIHbJzD5kQ1QJ6BAgXEAE\",\"serpapi_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=Convocatorias+Envigado+FC+2023\"}],\"pagination\":{\"current\":1,\"next\":\"https:\\/\\/www.google.com\\/search?q=envigado+futbol+club+partidos&oq=envigado+futbol+club+partidos&hl=es&gl=co&start=10&sourceid=chrome&ie=UTF-8\",\"other_pages\":{\"2\":\"https:\\/\\/www.google.com\\/search?q=envigado+futbol+club+partidos&oq=envigado+futbol+club+partidos&hl=es&gl=co&start=10&sourceid=chrome&ie=UTF-8\",\"3\":\"https:\\/\\/www.google.com\\/search?q=envigado+futbol+club+partidos&oq=envigado+futbol+club+partidos&hl=es&gl=co&start=20&sourceid=chrome&ie=UTF-8\",\"4\":\"https:\\/\\/www.google.com\\/search?q=envigado+futbol+club+partidos&oq=envigado+futbol+club+partidos&hl=es&gl=co&start=30&sourceid=chrome&ie=UTF-8\",\"5\":\"https:\\/\\/www.google.com\\/search?q=envigado+futbol+club+partidos&oq=envigado+futbol+club+partidos&hl=es&gl=co&start=40&sourceid=chrome&ie=UTF-8\"}},\"serpapi_pagination\":{\"current\":1,\"next_link\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=envigado+futbol+club+partidos&start=10\",\"next\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=envigado+futbol+club+partidos&start=10\",\"other_pages\":{\"2\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=envigado+futbol+club+partidos&start=10\",\"3\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=envigado+futbol+club+partidos&start=20\",\"4\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=envigado+futbol+club+partidos&start=30\",\"5\":\"https:\\/\\/serpapi.com\\/search.json?device=desktop&engine=google&gl=co&google_domain=google.com&hl=es&location=Colombia&q=envigado+futbol+club+partidos&start=40\"}}}',NULL,'<div id=\"wg-api-football-standings\" data-host=\"v3.football.api-sports.io\" data-key=\"36f24ef32415bf6288a4f92f19f3a5ec\" data-league=\"239\" data-team=\"\" data-season=\"2023\" data-theme=\"\" data-show-errors=\"false\" data-show-logos=\"true\" class=\"\">\n            <table class=\"wg-table\" id=\"wg-football-standings\">\n                <thead>\n                </thead>\n        \n                <tbody><tr>\n                    <td class=\"wg_header\" colspan=\"11\"><img class=\"wg_flag\" src=\"https://media-4.api-sports.io/flags/co.svg\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Colombia: Primera A</td>\n                </tr>\n            \n                                <tr>\n                                    <td class=\"wg_header\" colspan=\"2\">Primera A: Clausura</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Matches Played\">MP</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Win\">W</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Draw\">D</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Lose\">L</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left wg_hide_xxs\" data-text=\"Goals For : Goals Against\">G</td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\">+/-</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Points\">P</td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\"></td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\"></td>\n                                </tr>\n                            \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">1</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1144.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Rionegro Aguilas</td>\n                                <td class=\"wg_text_center wg_width_20\">14</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">0</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">22:10</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">12</td>\n                                <td class=\"wg_text_center wg_width_20\">30</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">2</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1138.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> America de Cali</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">31:16</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">29</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">3</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1137.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Atletico Nacional</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">24:13</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">11</td>\n                                <td class=\"wg_text_center wg_width_20\">27</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">4</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1128.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Independiente Medellin</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">1</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">21:14</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">7</td>\n                                <td class=\"wg_text_center wg_width_20\">26</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">5</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1139.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Santa Fe</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">17:17</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">0</td>\n                                <td class=\"wg_text_center wg_width_20\">23</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">6</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1142.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Deportes Tolima</td>\n                                <td class=\"wg_text_center wg_width_20\">14</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">15:12</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">22</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">7</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1125.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Millonarios</td>\n                                <td class=\"wg_text_center wg_width_20\">14</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">14:13</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">1</td>\n                                <td class=\"wg_text_center wg_width_20\">22</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">8</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1141.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Alianza Petrolera</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">15:17</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-2</td>\n                                <td class=\"wg_text_center wg_width_20\">22</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">9</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1127.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Deportivo Cali</td>\n                                <td class=\"wg_text_center wg_width_20\">14</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">18:18</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">0</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">10</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1126.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Deportivo Pasto</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">12:16</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-4</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">11</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1135.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Junior</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">21:14</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">7</td>\n                                <td class=\"wg_text_center wg_width_20\">18</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">12</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1465.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Union Magdalena</td>\n                                <td class=\"wg_text_center wg_width_20\">14</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">15:19</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-4</td>\n                                <td class=\"wg_text_center wg_width_20\">18</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">13</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1130.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Huila</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">13:12</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">1</td>\n                                <td class=\"wg_text_center wg_width_20\">17</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">14</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1136.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Once Caldas</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">18:18</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">0</td>\n                                <td class=\"wg_text_center wg_width_20\">17</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">15</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1131.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Bucaramanga</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">13:16</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-3</td>\n                                <td class=\"wg_text_center wg_width_20\">17</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">16</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1134.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> La Equidad</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20\">10</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">12:15</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-3</td>\n                                <td class=\"wg_text_center wg_width_20\">16</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">17</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1132.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Chico</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">10:19</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-9</td>\n                                <td class=\"wg_text_center wg_width_20\">14</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">18</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1462.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Deportivo Pereira</td>\n                                <td class=\"wg_text_center wg_width_20\">14</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">14:21</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-7</td>\n                                <td class=\"wg_text_center wg_width_20\">12</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">19</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1133.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Jaguares</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">9</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">6:17</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-11</td>\n                                <td class=\"wg_text_center wg_width_20\">10</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">20</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1129.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Envigado</td>\n                                <td class=\"wg_text_center wg_width_20\">15</td>\n                                <td class=\"wg_text_center wg_width_20\">1</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">9</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">8:22</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-14</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                                <tr>\n                                    <td class=\"wg_header\" colspan=\"2\">Group A</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Matches Played\">MP</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Win\">W</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Draw\">D</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Lose\">L</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left wg_hide_xxs\" data-text=\"Goals For : Goals Against\">G</td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\">+/-</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Points\">P</td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\"></td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\"></td>\n                                </tr>\n                            \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">1</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1137.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Atletico Nacional</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">0</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">7:4</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">12</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Final\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">2</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1141.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Alianza Petrolera</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">0</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">8:5</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">10</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">3</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1126.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Deportivo Pasto</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">1</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">6:5</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">1</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">4</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1144.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Rionegro Aguilas</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">0</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">4:11</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-7</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                                <tr>\n                                    <td class=\"wg_header\" colspan=\"2\">Group B</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Matches Played\">MP</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Win\">W</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Draw\">D</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Lose\">L</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left wg_hide_xxs\" data-text=\"Goals For : Goals Against\">G</td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\">+/-</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Points\">P</td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\"></td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\"></td>\n                                </tr>\n                            \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">1</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1125.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Millonarios</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">1</td>\n                                <td class=\"wg_text_center wg_width_20\">1</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">9:6</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">13</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Final\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">2</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1138.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> America de Cali</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">1</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">8:6</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">2</td>\n                                <td class=\"wg_text_center wg_width_20\">10</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">3</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1132.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Chico</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">6:6</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">0</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">4</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1128.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Independiente Medellin</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">0</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">3:8</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-5</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                                <tr>\n                                    <td class=\"wg_header\" colspan=\"2\">Primera A: Apertura</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Matches Played\">MP</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Win\">W</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Draw\">D</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Lose\">L</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left wg_hide_xxs\" data-text=\"Goals For : Goals Against\">G</td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\">+/-</td>\n                                    <td class=\"wg_header wg_text_center wg_tooltip wg_tooltip_left\" data-text=\"Points\">P</td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\"></td>\n                                    <td class=\"wg_header wg_text_center wg_hide_xs\"></td>\n                                </tr>\n                            \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">1</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1144.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Rionegro Aguilas</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">11</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">32:21</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">11</td>\n                                <td class=\"wg_text_center wg_width_20\">39</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">2</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1125.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Millonarios</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">10</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">2</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">30:18</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">12</td>\n                                <td class=\"wg_text_center wg_width_20\">38</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">3</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1137.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Atletico Nacional</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">9</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">26:14</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">12</td>\n                                <td class=\"wg_text_center wg_width_20\">35</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">4</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1138.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> America de Cali</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">9</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">32:23</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">9</td>\n                                <td class=\"wg_text_center wg_width_20\">32</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">5</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1132.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Chico</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">7</td>\n                                <td class=\"wg_text_center wg_width_20\">9</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">24:18</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">30</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">6</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1141.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Alianza Petrolera</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">9</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">27:22</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">30</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">7</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1128.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Independiente Medellin</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">7</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">29:24</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">29</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">8</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1126.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Deportivo Pasto</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">7</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">22:21</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">1</td>\n                                <td class=\"wg_text_center wg_width_20\">29</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"><span class=\"wg_info wg_tooltip wg_tooltip_left\" data-text=\"Next Round\">?</span></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">9</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1135.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Junior</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">7</td>\n                                <td class=\"wg_text_center wg_width_20\">7</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">17:17</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">0</td>\n                                <td class=\"wg_text_center wg_width_20\">28</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">10</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1139.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Santa Fe</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">7</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">29:25</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">26</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">11</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1134.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> La Equidad</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">11</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">20:17</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">26</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">12</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1462.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Deportivo Pereira</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20\">7</td>\n                                <td class=\"wg_text_center wg_width_20\">7</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">24:25</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-1</td>\n                                <td class=\"wg_text_center wg_width_20\">25</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">13</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1142.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Deportes Tolima</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">9</td>\n                                <td class=\"wg_text_center wg_width_20\">6</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">23:26</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-3</td>\n                                <td class=\"wg_text_center wg_width_20\">24</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">14</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1127.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Deportivo Cali</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">7</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">20:26</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-6</td>\n                                <td class=\"wg_text_center wg_width_20\">23</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">15</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1131.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Bucaramanga</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">15:21</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-6</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">16</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1129.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Envigado</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">14:20</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-6</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">17</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1136.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Once Caldas</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20\">8</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">17:24</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-7</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">18</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1133.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Jaguares</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">4</td>\n                                <td class=\"wg_text_center wg_width_20\">7</td>\n                                <td class=\"wg_text_center wg_width_20\">9</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">16:26</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-10</td>\n                                <td class=\"wg_text_center wg_width_20\">19</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_draw\">D</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">19</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1465.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Union Magdalena</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">10</td>\n                                <td class=\"wg_text_center wg_width_20\">7</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">16:30</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-14</td>\n                                <td class=\"wg_text_center wg_width_20\">19</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_draw\">D</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n                            <tr>\n                                <td class=\"wg_text_center wg_bolder wg_width_20\">20</td>\n                                <td class=\"wg_nowrap\"><img class=\"wg_logo\" src=\"https://media-4.api-sports.io/football/teams/1130.png\" loading=\"lazy\" onerror=\"this.style.display=&quot;none&quot;\"> Huila</td>\n                                <td class=\"wg_text_center wg_width_20\">20</td>\n                                <td class=\"wg_text_center wg_width_20\">5</td>\n                                <td class=\"wg_text_center wg_width_20\">3</td>\n                                <td class=\"wg_text_center wg_width_20\">12</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xxs\">20:35</td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\">-15</td>\n                                <td class=\"wg_text_center wg_width_20\">18</td>\n                                <td class=\"wg_text_center wg_width_90 wg_hide_xs\"><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_lose\">L</span><span class=\"wg_form wg_form_win\">W</span><span class=\"wg_form wg_form_lose\">L</span></td>\n                                <td class=\"wg_text_center wg_width_20 wg_hide_xs\"></td>\n                            </tr>\n                        \n            </tbody></table>\n        </div>',10080,'2023-10-07 00:21:35',1,'2022-11-29 14:43:45','2023-10-07 00:21:35');
/*!40000 ALTER TABLE `team_statistics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `teams`
--

DROP TABLE IF EXISTS `teams`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `teams` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `display_name` varchar(191) DEFAULT NULL,
  `abbreviation` varchar(3) DEFAULT NULL,
  `logo` varchar(255) DEFAULT NULL,
  `is_main` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Es el equipo del cliente',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `teams`
--

LOCK TABLES `teams` WRITE;
/*!40000 ALTER TABLE `teams` DISABLE KEYS */;
INSERT INTO `teams` VALUES (1,'Envigado Fútbol Club','Envigado','EFC','1.png',1,1,'2021-05-01 21:58:25','2023-01-18 17:56:22'),(2,'Deportes Quindío','Deportes Quindío','QUI',NULL,0,1,'2022-08-31 13:57:28','2022-08-31 13:57:28'),(3,'Boyacá Chicó Fútbol Club','Boyacá Chicó','BOY',NULL,0,1,'2022-08-31 13:58:29','2022-08-31 13:58:29'),(4,'Atlético Fútbol Club','Atlético','ATL',NULL,0,1,'2022-08-31 13:59:40','2022-08-31 13:59:40'),(5,'Club Deportivo Atlético Huila','Atlético Huila','HUI',NULL,0,1,'2022-08-31 14:00:25','2022-08-31 14:00:25'),(6,'Barranquilla Fútbol Club','Barranquilla','BAR',NULL,0,1,'2022-08-31 14:01:08','2022-08-31 14:01:08'),(7,'Fortaleza Fútbol Club','Fortaleza','FOR',NULL,0,1,'2022-08-31 14:01:49','2022-08-31 14:01:49'),(8,'Boca Juniors de Cali','Boca Juniors de Cali','BOC',NULL,0,1,'2022-08-31 14:03:09','2022-08-31 14:03:09'),(9,'Real Santander','Real Santander','SAN',NULL,0,1,'2022-08-31 14:03:45','2022-08-31 14:03:45'),(10,'Itagüí Leones','Leones','LEO',NULL,0,1,'2022-08-31 14:04:27','2022-08-31 14:04:27'),(11,'Tigres Fútbol Club','Tigres FC','TIG',NULL,0,1,'2022-08-31 14:05:01','2022-08-31 14:05:01'),(12,'Bogotá Fútbol Club','Bogotá FC','BOG',NULL,0,1,'2022-08-31 14:05:30','2022-08-31 14:05:30'),(13,'Club Llaneros','Llaneros','LNR',NULL,0,1,'2022-08-31 14:06:14','2022-08-31 14:06:14'),(14,'Cúcuta Deportivo','Cúcuta','CUC',NULL,0,1,'2022-08-31 14:07:02','2022-08-31 14:07:02'),(15,'Orsomarso Spotive Clube','Orsomarso','ORS',NULL,0,1,'2022-08-31 14:07:38','2022-08-31 14:07:38'),(16,'Valledupar Fútbol Club','Valledupar','VFC','16.png',0,1,'2022-08-31 14:08:02','2022-09-05 18:11:52'),(17,'Club Deportivo La Equidad','La Equidad','EQD','17.png',0,1,'2023-01-18 17:59:00','2023-01-18 18:14:00'),(18,'ABONO','Abonados','ABN',NULL,0,1,'2023-06-06 21:56:48','2023-06-06 21:56:48');
/*!40000 ALTER TABLE `teams` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `term_clients`
--

DROP TABLE IF EXISTS `term_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `term_clients` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `accepted` tinyint(1) NOT NULL,
  `term_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `term_clients_term_id_foreign` (`term_id`),
  KEY `term_clients_user_id_foreign` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `term_clients`
--

LOCK TABLES `term_clients` WRITE;
/*!40000 ALTER TABLE `term_clients` DISABLE KEYS */;
INSERT INTO `term_clients` VALUES (1,1,1,1,NULL,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(2,1,1,2,NULL,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(3,1,1,5,NULL,'2022-05-12 19:22:56','2022-05-12 19:22:56'),(4,1,1,6,NULL,'2022-05-27 22:07:33','2022-05-27 22:07:33'),(5,1,1,7,NULL,'2022-05-31 21:01:53','2022-05-31 21:01:53'),(6,1,1,8,NULL,'2022-07-14 21:36:06','2022-07-14 21:36:06'),(7,1,1,9,NULL,'2022-08-23 13:48:18','2022-08-23 13:48:18'),(8,1,1,10,NULL,'2022-08-25 15:09:26','2022-08-25 15:09:26'),(9,1,1,11,NULL,'2022-08-25 15:10:01','2022-08-25 15:10:01');
/*!40000 ALTER TABLE `term_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `terms`
--

DROP TABLE IF EXISTS `terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `terms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(191) NOT NULL,
  `version` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `terms`
--

LOCK TABLES `terms` WRITE;
/*!40000 ALTER TABLE `terms` DISABLE KEYS */;
INSERT INTO `terms` VALUES (1,'https://b001-si.s3.us-east-2.amazonaws.com/bikenow/envigado/public/terminos_y_condiciones_envigado.pdf','1',1,'2021-05-01 21:58:23','2021-05-01 21:58:23');
/*!40000 ALTER TABLE `terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_logs`
--

DROP TABLE IF EXISTS `ticket_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` bigint(20) unsigned NOT NULL,
  `ticket_status_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_logs_ticket_id_foreign` (`ticket_id`),
  KEY `ticket_logs_ticket_status_id_foreign` (`ticket_status_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_logs`
--

LOCK TABLES `ticket_logs` WRITE;
/*!40000 ALTER TABLE `ticket_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_mains`
--

DROP TABLE IF EXISTS `ticket_mains`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_mains` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_reference` varchar(191) DEFAULT NULL,
  `payment_state` varchar(191) DEFAULT NULL,
  `gateway_payments_id` int(10) unsigned DEFAULT NULL,
  `payment_transaction_id` varchar(255) DEFAULT NULL,
  `subtotal` double NOT NULL DEFAULT 0,
  `service_charge` double NOT NULL DEFAULT 0,
  `total` double NOT NULL,
  `pin` varchar(191) DEFAULT NULL COMMENT 'pin para pagos online',
  `payment_comment` varchar(191) DEFAULT NULL,
  `payment_attempts` int(11) NOT NULL DEFAULT 0,
  `pin_internal` varchar(191) DEFAULT NULL,
  `pin_tercero` varchar(191) DEFAULT NULL,
  `reference_tercero` varchar(191) DEFAULT NULL,
  `comment_purchase_log` text DEFAULT NULL COMMENT 'Log resumen de la compra',
  `user_id_log` varchar(191) DEFAULT NULL COMMENT 'Log del user_id a quien pertenece la transacción',
  `seller_user_id` int(10) unsigned DEFAULT NULL COMMENT 'Indica el id del usuario que vende del ticket',
  `payment_coins_id` int(10) unsigned DEFAULT NULL COMMENT 'Campo que nos permitirá almacenar los datos de detalle pago con monedas',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_mains_seller_user_id_foreign` (`seller_user_id`),
  KEY `ticket_mains_payment_coins_id_foreign` (`payment_coins_id`),
  KEY `ticket_mains_gateway_payments_id_foreign` (`gateway_payments_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_mains`
--

LOCK TABLES `ticket_mains` WRITE;
/*!40000 ALTER TABLE `ticket_mains` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_mains` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_parameters`
--

DROP TABLE IF EXISTS `ticket_parameters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_parameters` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `number_transfers` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_parameters`
--

LOCK TABLES `ticket_parameters` WRITE;
/*!40000 ALTER TABLE `ticket_parameters` DISABLE KEYS */;
INSERT INTO `ticket_parameters` VALUES (1,3,'2023-07-07 22:06:50','2023-07-07 22:06:50');
/*!40000 ALTER TABLE `ticket_parameters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_statuses`
--

DROP TABLE IF EXISTS `ticket_statuses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_statuses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_statuses`
--

LOCK TABLES `ticket_statuses` WRITE;
/*!40000 ALTER TABLE `ticket_statuses` DISABLE KEYS */;
INSERT INTO `ticket_statuses` VALUES (1,'Comprado',1,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(2,'Ingresado',1,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(3,'Anulado',1,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(4,'Reversado',1,'2021-05-01 21:58:25','2021-05-01 21:58:25');
/*!40000 ALTER TABLE `ticket_statuses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_tags`
--

DROP TABLE IF EXISTS `ticket_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_tags`
--

LOCK TABLES `ticket_tags` WRITE;
/*!40000 ALTER TABLE `ticket_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_types`
--

DROP TABLE IF EXISTS `ticket_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_types` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_types`
--

LOCK TABLES `ticket_types` WRITE;
/*!40000 ALTER TABLE `ticket_types` DISABLE KEYS */;
INSERT INTO `ticket_types` VALUES (1,'Venta libre',1,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(2,'Abonado',1,'2021-05-01 21:58:25','2021-05-01 21:58:25'),(3,'Cortesia',1,'2021-05-01 21:58:25','2021-05-01 21:58:25');
/*!40000 ALTER TABLE `ticket_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_user_block_backups`
--

DROP TABLE IF EXISTS `ticket_user_block_backups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_user_block_backups` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `seat_id` bigint(20) unsigned NOT NULL,
  `match_event_id` bigint(20) unsigned NOT NULL,
  `ticket_type_id` bigint(20) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `zone_id` bigint(20) unsigned NOT NULL,
  `start_block` datetime NOT NULL,
  `end_block` datetime DEFAULT NULL,
  `price` double DEFAULT 0,
  `is_social_distancing` tinyint(1) DEFAULT NULL COMMENT 'Indica si el bloqueo es por distanciamiento social',
  `ticket_main_id` bigint(20) unsigned NOT NULL,
  `active` varchar(191) DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_user_block_backups_seat_id_foreign` (`seat_id`),
  KEY `ticket_user_block_backups_match_event_id_foreign` (`match_event_id`),
  KEY `ticket_user_block_backups_ticket_type_id_foreign` (`ticket_type_id`),
  KEY `ticket_user_block_backups_user_id_foreign` (`user_id`),
  KEY `ticket_user_block_backups_zone_id_foreign` (`zone_id`),
  KEY `ticket_user_block_backups_ticket_main_id_foreign` (`ticket_main_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_user_block_backups`
--

LOCK TABLES `ticket_user_block_backups` WRITE;
/*!40000 ALTER TABLE `ticket_user_block_backups` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_user_block_backups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_user_blocks`
--

DROP TABLE IF EXISTS `ticket_user_blocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_user_blocks` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `seat_id` bigint(20) unsigned NOT NULL,
  `match_event_id` bigint(20) unsigned NOT NULL,
  `ticket_type_id` bigint(20) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `zone_id` bigint(20) unsigned NOT NULL,
  `start_block` datetime NOT NULL,
  `end_block` datetime DEFAULT NULL,
  `is_social_distancing` tinyint(1) DEFAULT NULL COMMENT 'Indica si el bloqueo es por distanciamiento social',
  `ticket_main_id` bigint(20) unsigned NOT NULL,
  `price` double DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_user_blocks_seat_id_foreign` (`seat_id`),
  KEY `ticket_user_blocks_match_event_id_foreign` (`match_event_id`),
  KEY `ticket_user_blocks_ticket_type_id_foreign` (`ticket_type_id`),
  KEY `ticket_user_blocks_user_id_foreign` (`user_id`),
  KEY `ticket_user_blocks_zone_id_foreign` (`zone_id`),
  KEY `ticket_user_blocks_ticket_main_id_foreign` (`ticket_main_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_user_blocks`
--

LOCK TABLES `ticket_user_blocks` WRITE;
/*!40000 ALTER TABLE `ticket_user_blocks` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_user_blocks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_user_logs`
--

DROP TABLE IF EXISTS `ticket_user_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_user_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` bigint(20) unsigned NOT NULL COMMENT 'Campo para asociar la boleta cedida',
  `previous_user_id` int(10) unsigned NOT NULL COMMENT 'Campo para asociar el usuario que cedio la boleta',
  `new_user_id` int(10) unsigned NOT NULL COMMENT 'Campo para asociar del usuario que recibio la boleta',
  `payment_reference` varchar(191) DEFAULT NULL,
  `number_transfers` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_user_logs_ticket_id_foreign` (`ticket_id`),
  KEY `ticket_user_logs_previous_user_id_foreign` (`previous_user_id`),
  KEY `ticket_user_logs_new_user_id_foreign` (`new_user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_user_logs`
--

LOCK TABLES `ticket_user_logs` WRITE;
/*!40000 ALTER TABLE `ticket_user_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_user_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_validation_histories`
--

DROP TABLE IF EXISTS `ticket_validation_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_validation_histories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `door` varchar(191) DEFAULT NULL,
  `validation_state` tinyint(1) NOT NULL COMMENT 'campo que nos permitirá saber si el ingreso fue exitoso o fallido',
  `ticket_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_validation_histories_ticket_id_foreign` (`ticket_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_validation_histories`
--

LOCK TABLES `ticket_validation_histories` WRITE;
/*!40000 ALTER TABLE `ticket_validation_histories` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_validation_histories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tickets`
--

DROP TABLE IF EXISTS `tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tickets` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `code_ticket` varchar(191) NOT NULL COMMENT 'Codigo generado para el tiquete',
  `seat_id` bigint(20) unsigned NOT NULL,
  `match_event_id` bigint(20) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `ticket_type_id` bigint(20) unsigned NOT NULL,
  `ticket_status_id` bigint(20) unsigned NOT NULL,
  `price` double DEFAULT NULL,
  `zone` varchar(191) DEFAULT NULL,
  `letter_seat` varchar(191) DEFAULT NULL COMMENT 'Letra de la silla',
  `code_seat` varchar(191) DEFAULT NULL COMMENT 'El codigo de la silla',
  `code_event` varchar(500) DEFAULT NULL COMMENT 'El codigo del evento',
  `door` varchar(191) DEFAULT NULL,
  `ticket_main_id` bigint(20) unsigned NOT NULL,
  `is_on_album` tinyint(1) DEFAULT NULL COMMENT 'Indica si la boleta se agregó al álbum',
  `is_an_email_sent` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Indicador de correo reenvido',
  `special_text` varchar(20) DEFAULT NULL COMMENT 'Indica si la boleta tiene un distinción o promoción especial y a su vez es el texto que aparecera el el impreso de la boleta para ingreso al estadio',
  `confirm_stadium_ticket` varchar(20) NOT NULL DEFAULT 'PENDIENTE' COMMENT 'Indica si la boleta ya registra el ingreso al estadio',
  `number_transfers` int(11) DEFAULT NULL COMMENT 'Campo para contar las veces que se ha transferido la boleta',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `code_ticket` (`code_ticket`),
  KEY `tickets_seat_id_foreign` (`seat_id`),
  KEY `tickets_match_event_id_foreign` (`match_event_id`),
  KEY `tickets_user_id_foreign` (`user_id`),
  KEY `tickets_ticket_type_id_foreign` (`ticket_type_id`),
  KEY `tickets_ticket_status_id_foreign` (`ticket_status_id`),
  KEY `tickets_ticket_main_id_foreign` (`ticket_main_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tickets`
--

LOCK TABLES `tickets` WRITE;
/*!40000 ALTER TABLE `tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `token_credit_cards`
--

DROP TABLE IF EXISTS `token_credit_cards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `token_credit_cards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `token` varchar(255) NOT NULL,
  `gateway` varchar(20) NOT NULL,
  `name_cc` varchar(191) NOT NULL,
  `obfuscated_number` varchar(20) NOT NULL,
  `card_type` varchar(20) NOT NULL,
  `verified` tinyint(1) NOT NULL DEFAULT 0,
  `mount_verification` int(11) NOT NULL DEFAULT 0,
  `order_code_verification` varchar(191) DEFAULT NULL,
  `transaction_code_verification` varchar(191) DEFAULT NULL,
  `current` tinyint(1) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `token_credit_cards_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `token_credit_cards`
--

LOCK TABLES `token_credit_cards` WRITE;
/*!40000 ALTER TABLE `token_credit_cards` DISABLE KEYS */;
/*!40000 ALTER TABLE `token_credit_cards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `token_user_tickets`
--

DROP TABLE IF EXISTS `token_user_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `token_user_tickets` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `token` varchar(191) NOT NULL,
  `code` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `token_user_tickets_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `token_user_tickets`
--

LOCK TABLES `token_user_tickets` WRITE;
/*!40000 ALTER TABLE `token_user_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `token_user_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tournament_organizers`
--

DROP TABLE IF EXISTS `tournament_organizers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tournament_organizers` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `display_name` varchar(191) DEFAULT NULL,
  `abbreviation` varchar(3) DEFAULT NULL,
  `logo` varchar(255) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tournament_organizers`
--

LOCK TABLES `tournament_organizers` WRITE;
/*!40000 ALTER TABLE `tournament_organizers` DISABLE KEYS */;
INSERT INTO `tournament_organizers` VALUES (1,'División Mayor del Fútbol Profesional Colombiano','DIMAYOR','DIR','1.png',1,'2022-08-31 13:47:10','2022-08-31 13:47:11');
/*!40000 ALTER TABLE `tournament_organizers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tournaments`
--

DROP TABLE IF EXISTS `tournaments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tournaments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `logo` varchar(255) DEFAULT NULL,
  `footer_sponsors` varchar(255) DEFAULT NULL,
  `ticket_background` varchar(255) DEFAULT NULL,
  `tournament_organizer_id` bigint(20) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `tournaments_tournament_organizer_id_foreign` (`tournament_organizer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tournaments`
--

LOCK TABLES `tournaments` WRITE;
/*!40000 ALTER TABLE `tournaments` DISABLE KEYS */;
INSERT INTO `tournaments` VALUES (1,'Liga BetPlay Dimayor','1.png','1_footer.png','1_background.png',1,1,'2021-05-01 21:58:25','2023-08-03 05:29:41');
/*!40000 ALTER TABLE `tournaments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `transfers`
--

DROP TABLE IF EXISTS `transfers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `transfers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `description` text NOT NULL,
  `order_id` int(10) unsigned NOT NULL,
  `delivery_man_id` int(10) unsigned DEFAULT NULL,
  `creation_date` datetime NOT NULL,
  `collected_date` datetime DEFAULT NULL,
  `sucursal_id` int(10) unsigned NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `transfers_order_id_foreign` (`order_id`),
  KEY `transfers_delivery_man_id_foreign` (`delivery_man_id`),
  KEY `transfers_sucursal_id_foreign` (`sucursal_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `transfers`
--

LOCK TABLES `transfers` WRITE;
/*!40000 ALTER TABLE `transfers` DISABLE KEYS */;
/*!40000 ALTER TABLE `transfers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tutorial_slides`
--

DROP TABLE IF EXISTS `tutorial_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tutorial_slides` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) NOT NULL,
  `description` text DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `order` int(11) NOT NULL DEFAULT 1,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tutorial_slides`
--

LOCK TABLES `tutorial_slides` WRITE;
/*!40000 ALTER TABLE `tutorial_slides` DISABLE KEYS */;
/*!40000 ALTER TABLE `tutorial_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `type_actions`
--

DROP TABLE IF EXISTS `type_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `type_actions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `type_actions`
--

LOCK TABLES `type_actions` WRITE;
/*!40000 ALTER TABLE `type_actions` DISABLE KEYS */;
INSERT INTO `type_actions` VALUES (1,'Categoría',1,'2021-05-01 21:58:26','2021-05-01 21:58:26'),(2,'Link',1,'2021-05-01 21:58:26','2021-05-01 21:58:26'),(3,'Sección App',1,'2021-05-01 21:58:26','2023-07-07 22:06:50');
/*!40000 ALTER TABLE `type_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_coins`
--

DROP TABLE IF EXISTS `user_coins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_coins` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `all_coins` double NOT NULL,
  `debt_coins` double NOT NULL DEFAULT 0,
  `credit_coins` double NOT NULL DEFAULT 0,
  `locked` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Campo que nos permitirá bloquear o desbloquear las transacciones del usuario',
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_coins_user_id_foreign` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_coins`
--

LOCK TABLES `user_coins` WRITE;
/*!40000 ALTER TABLE `user_coins` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_coins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_coins_transactions_details`
--

DROP TABLE IF EXISTS `user_coins_transactions_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_coins_transactions_details` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `reference` varchar(191) NOT NULL,
  `coins` double NOT NULL,
  `sign` int(11) NOT NULL,
  `cancelled` tinyint(1) NOT NULL,
  `detail` varchar(191) NOT NULL,
  `user_coins_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_coins_transactions_details_user_coins_id_foreign` (`user_coins_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_coins_transactions_details`
--

LOCK TABLES `user_coins_transactions_details` WRITE;
/*!40000 ALTER TABLE `user_coins_transactions_details` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_coins_transactions_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_informations`
--

DROP TABLE IF EXISTS `user_informations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_informations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `photo` varchar(191) DEFAULT NULL,
  `photo_social` varchar(191) DEFAULT NULL,
  `social_id` varchar(191) DEFAULT NULL,
  `social_provider` varchar(191) DEFAULT NULL,
  `social_token` varchar(191) DEFAULT NULL,
  `plate` varchar(191) DEFAULT NULL,
  `version` varchar(191) DEFAULT NULL,
  `model` varchar(191) DEFAULT NULL,
  `uid_phone` varchar(191) DEFAULT NULL,
  `current_db` varchar(191) DEFAULT NULL,
  `sex` enum('F','M','I','') DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `referred_code` varchar(191) DEFAULT NULL COMMENT 'es el codigo usuario',
  `referred_user_code` varchar(191) DEFAULT NULL COMMENT 'el codigo del otro usuario que me refiere',
  `referred_finish_date` datetime DEFAULT NULL COMMENT 'es la fecha maxima para redimir el codigo',
  `is_initial` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'indica si es la primera vez que el usuario hace login por defecto si esta en false se debe mostrar una ventana para cambiarla',
  `is_tutorial_viewed` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'indica si el usuario ya ha visto el tutorial',
  `is_habeas_data_viewed` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'indica si el usuario acepto terminos y condiciones',
  `courier_company_id` int(10) unsigned DEFAULT NULL,
  `sucursal_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `current_sucursal_id` int(10) unsigned DEFAULT NULL COMMENT 'se utiliza para la logica productos por sucursal y almacena la ultima sucursal seleccionada por el usuario',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_informations_courier_company_id_foreign` (`courier_company_id`),
  KEY `user_informations_sucursal_id_foreign` (`sucursal_id`),
  KEY `user_informations_user_id_foreign` (`user_id`),
  KEY `user_informations_current_sucursal_id_foreign` (`current_sucursal_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_informations`
--

LOCK TABLES `user_informations` WRITE;
/*!40000 ALTER TABLE `user_informations` DISABLE KEYS */;
INSERT INTO `user_informations` VALUES (1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'cali-db',NULL,NULL,NULL,NULL,NULL,0,0,0,NULL,1,1,NULL,NULL,'2021-05-01 21:58:24','2021-05-04 14:00:02'),(2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,NULL,1,2,NULL,NULL,'2021-05-01 21:58:24','2023-07-30 23:52:58'),(3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,NULL,1,3,NULL,NULL,'2021-05-01 21:58:24','2021-05-01 21:58:24'),(8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I','2000-08-26',NULL,NULL,NULL,0,1,1,NULL,NULL,8,NULL,NULL,'2022-07-14 21:36:06','2023-09-05 20:55:58'),(9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'cali-db',NULL,NULL,NULL,NULL,NULL,1,1,1,NULL,3,9,NULL,NULL,'2022-08-23 13:48:18','2022-08-23 13:48:31');
/*!40000 ALTER TABLE `user_informations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_tags`
--

DROP TABLE IF EXISTS `user_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `tag_id` bigint(20) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_tags_user_id_foreign` (`user_id`),
  KEY `user_tags_tag_id_foreign` (`tag_id`)
) ENGINE=InnoDB AUTO_INCREMENT=722 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_tags`
--

LOCK TABLES `user_tags` WRITE;
/*!40000 ALTER TABLE `user_tags` DISABLE KEYS */;
INSERT INTO `user_tags` VALUES (3,19,2,'2022-12-15 14:00:48','2022-12-15 14:00:48'),(4,335,2,'2022-12-15 14:26:57','2022-12-15 14:26:57'),(267,875,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(268,854,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(269,303,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(271,330,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(272,261,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(273,229,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(274,703,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(276,257,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(277,161,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(278,177,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(279,429,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(280,375,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(281,305,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(282,216,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(283,388,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(284,82,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(285,348,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(286,277,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(287,122,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(288,92,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(289,407,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(290,259,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(291,299,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(292,432,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(293,109,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(294,173,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(295,435,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(296,834,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(299,208,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(300,104,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(301,73,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(302,49,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(305,351,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(306,57,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(307,280,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(308,415,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(309,153,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(310,263,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(311,67,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(312,180,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(313,211,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(315,142,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(317,316,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(318,231,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(320,269,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(321,224,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(323,172,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(325,128,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(326,251,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(327,40,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(328,134,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(329,289,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(331,708,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(332,282,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(333,217,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(334,53,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(335,465,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(336,414,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(337,114,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(338,167,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(339,403,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(340,366,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(342,175,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(343,248,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(344,329,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(345,368,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(346,191,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(347,234,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(348,149,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(350,344,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(351,301,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(353,341,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(355,244,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(357,286,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(358,313,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(359,47,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(360,140,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(361,358,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(363,279,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(364,356,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(365,112,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(366,391,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(367,156,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(368,63,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(369,188,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(370,198,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(371,81,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(372,166,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(374,439,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(375,75,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(376,46,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(377,181,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(378,90,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(379,270,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(380,284,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(381,345,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(382,309,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(383,170,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(384,255,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(385,51,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(386,37,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(387,139,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(388,238,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(389,146,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(390,36,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(391,262,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(392,195,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(393,385,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(395,111,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(397,130,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(398,364,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(399,318,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(400,124,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(401,52,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(402,148,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(403,197,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(404,131,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(406,56,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(408,399,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(409,395,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(410,401,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(411,264,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(412,400,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(413,147,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(414,410,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(415,223,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(416,233,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(417,30,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(418,96,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(419,347,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(420,219,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(422,58,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(423,338,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(424,210,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(425,83,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(426,34,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(427,215,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(429,125,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(430,87,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(431,97,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(432,164,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(433,72,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(435,160,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(436,151,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(437,179,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(439,243,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(440,381,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(442,31,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(444,252,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(445,133,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(446,298,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(447,354,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(448,377,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(449,45,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(450,450,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(451,327,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(452,199,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(453,98,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(454,221,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(455,275,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(456,235,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(457,196,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(460,207,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(461,185,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(462,247,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(463,132,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(464,272,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(465,86,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(466,278,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(467,157,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(469,258,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(470,54,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(471,77,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(473,281,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(475,245,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(476,48,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(477,103,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(478,206,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(479,171,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(482,192,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(483,120,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(484,144,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(485,33,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(486,102,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(487,89,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(488,85,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(489,200,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(490,145,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(491,297,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(492,68,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(493,202,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(494,178,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(495,190,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(496,115,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(497,55,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(498,249,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(499,212,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(500,138,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(501,205,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(502,203,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(503,119,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(504,126,3,'2023-02-09 17:24:07','2023-02-09 17:24:07'),(506,360,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(507,65,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(508,100,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(509,35,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(511,76,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(513,423,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(514,66,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(515,137,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(516,168,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(517,150,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(518,288,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(519,457,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(521,5,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(522,19,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(523,101,3,'2023-02-09 17:24:08','2023-02-09 17:24:08'),(525,408,3,'2023-02-11 13:37:43','2023-02-11 13:37:43'),(526,321,3,'2023-02-11 13:37:43','2023-02-11 13:37:43'),(527,315,3,'2023-02-11 13:37:43','2023-02-11 13:37:43'),(528,62,3,'2023-02-11 13:37:43','2023-02-11 13:37:43'),(529,412,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(530,1090,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(531,1092,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(532,1073,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(533,929,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(534,1022,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(535,453,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(536,1125,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(537,1129,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(538,1137,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(539,944,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(540,1009,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(541,1014,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(542,325,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(543,397,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(544,274,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(545,913,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(546,1118,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(547,1120,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(548,1157,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(549,1158,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(550,1164,4,'2023-03-17 17:51:20','2023-03-17 17:51:20'),(554,418,3,'2023-05-23 20:07:28','2023-05-23 20:07:28'),(555,326,3,'2023-05-23 20:11:50','2023-05-23 20:11:50'),(557,162,3,'2023-05-23 20:30:38','2023-05-23 20:30:38'),(560,106,3,'2023-05-23 20:32:40','2023-05-23 20:32:40'),(561,495,5,'2023-05-25 21:30:18','2023-05-25 21:30:18'),(564,154,3,'2023-05-30 20:27:34','2023-05-30 20:27:34'),(565,416,3,'2023-05-30 20:28:57','2023-05-30 20:28:57'),(566,239,3,'2023-05-31 20:59:27','2023-05-31 20:59:27'),(568,268,3,'2023-06-06 22:58:35','2023-06-06 22:58:35'),(570,420,3,'2023-06-07 19:55:11','2023-06-07 19:55:11'),(575,342,3,'2023-06-07 20:09:03','2023-06-07 20:09:03'),(577,228,3,'2023-06-07 20:14:50','2023-06-07 20:14:50'),(579,91,3,'2023-06-07 20:26:02','2023-06-07 20:26:02'),(581,365,3,'2023-06-07 21:12:08','2023-06-07 21:12:08'),(583,237,3,'2023-06-15 22:18:51','2023-06-15 22:18:51'),(584,1578,6,'2023-06-17 03:27:52','2023-06-17 03:27:52'),(585,1579,6,'2023-06-17 15:12:18','2023-06-17 15:12:18'),(586,1581,6,'2023-06-17 16:43:32','2023-06-17 16:43:32'),(587,1333,6,'2023-06-17 21:31:39','2023-06-17 21:31:39'),(588,321,6,'2023-06-17 22:26:43','2023-06-17 22:26:43'),(589,1591,6,'2023-06-18 01:49:40','2023-06-18 01:49:40'),(590,588,6,'2023-06-18 22:10:18','2023-06-18 22:10:18'),(591,1597,6,'2023-06-19 17:00:45','2023-06-19 17:00:45'),(592,1599,6,'2023-06-19 19:46:41','2023-06-19 19:46:41'),(593,1583,6,'2023-06-19 22:38:40','2023-06-19 22:38:40'),(594,605,6,'2023-06-20 00:30:27','2023-06-20 00:30:27'),(595,1600,6,'2023-06-20 00:38:09','2023-06-20 00:38:09'),(596,1588,6,'2023-06-20 14:11:35','2023-06-20 14:11:35'),(597,1603,6,'2023-06-20 16:37:55','2023-06-20 16:37:55'),(598,734,6,'2023-06-20 16:40:10','2023-06-20 16:40:10'),(599,751,6,'2023-06-20 16:59:09','2023-06-20 16:59:09'),(601,38,3,'2023-06-20 21:07:21','2023-06-20 21:07:21'),(604,129,3,'2023-06-20 21:10:31','2023-06-20 21:10:31'),(606,1609,6,'2023-06-21 01:28:16','2023-06-21 01:28:16'),(607,583,6,'2023-06-21 16:25:00','2023-06-21 16:25:00'),(609,1616,6,'2023-06-22 16:18:22','2023-06-22 16:18:22'),(610,1592,6,'2023-06-22 17:09:18','2023-06-22 17:09:18'),(611,1622,6,'2023-06-22 19:42:23','2023-06-22 19:42:23'),(612,1628,6,'2023-06-23 16:55:35','2023-06-23 16:55:35'),(613,500,6,'2023-06-24 23:27:11','2023-06-24 23:27:11'),(614,1590,6,'2023-06-25 03:04:32','2023-06-25 03:04:32'),(615,1648,6,'2023-06-27 00:47:41','2023-06-27 00:47:41'),(616,1629,6,'2023-06-28 02:22:01','2023-06-28 02:22:01'),(617,1653,6,'2023-06-28 15:29:25','2023-06-28 15:29:25'),(618,1658,6,'2023-06-28 16:32:36','2023-06-28 16:32:36'),(619,107,3,'2023-06-28 18:36:38','2023-06-28 18:36:38'),(620,252,6,'2023-06-28 23:19:20','2023-06-28 23:19:20'),(621,501,6,'2023-06-29 14:20:15','2023-06-29 14:20:15'),(622,690,6,'2023-06-29 14:52:18','2023-06-29 14:52:18'),(623,1655,6,'2023-06-30 00:59:01','2023-06-30 00:59:01'),(624,566,6,'2023-06-30 01:35:47','2023-06-30 01:35:47'),(625,1624,6,'2023-06-30 12:59:29','2023-06-30 12:59:29'),(626,517,6,'2023-06-30 13:33:00','2023-06-30 13:33:00'),(627,602,6,'2023-06-30 14:57:28','2023-06-30 14:57:28'),(628,503,6,'2023-06-30 19:21:49','2023-06-30 19:21:49'),(630,1674,6,'2023-06-30 21:44:27','2023-06-30 21:44:27'),(631,1681,6,'2023-07-01 22:16:36','2023-07-01 22:16:36'),(632,150,6,'2023-07-02 08:16:32','2023-07-02 08:16:32'),(633,1673,6,'2023-07-02 13:21:55','2023-07-02 13:21:55'),(634,486,6,'2023-07-02 18:04:31','2023-07-02 18:04:31'),(635,892,6,'2023-07-02 18:20:35','2023-07-02 18:20:35'),(636,979,6,'2023-07-02 21:37:41','2023-07-02 21:37:41'),(637,1645,6,'2023-07-02 22:06:42','2023-07-02 22:06:42'),(638,1683,6,'2023-07-02 22:35:42','2023-07-02 22:35:42'),(639,157,6,'2023-07-03 00:18:51','2023-07-03 00:18:51'),(640,1685,6,'2023-07-03 03:00:40','2023-07-03 03:00:40'),(641,1604,6,'2023-07-03 06:07:37','2023-07-03 06:07:37'),(642,1692,6,'2023-07-03 20:34:10','2023-07-03 20:34:10'),(643,1696,6,'2023-07-04 13:44:52','2023-07-04 13:44:52'),(644,491,6,'2023-07-05 12:59:10','2023-07-05 12:59:10'),(645,1700,6,'2023-07-05 13:57:46','2023-07-05 13:57:46'),(646,618,6,'2023-07-05 15:15:16','2023-07-05 15:15:16'),(649,1704,6,'2023-07-07 14:59:05','2023-07-07 14:59:05'),(651,1722,6,'2023-07-08 17:00:46','2023-07-08 17:00:46'),(652,1724,6,'2023-07-08 17:39:39','2023-07-08 17:39:39'),(653,1710,6,'2023-07-08 23:46:56','2023-07-08 23:46:56'),(654,1719,6,'2023-07-09 16:23:02','2023-07-09 16:23:02'),(655,730,6,'2023-07-10 15:35:20','2023-07-10 15:35:20'),(656,1734,6,'2023-07-10 17:59:12','2023-07-10 17:59:12'),(657,71,3,'2023-07-10 21:56:16','2023-07-10 21:56:16'),(658,183,3,'2023-07-10 21:56:40','2023-07-10 21:56:40'),(659,201,3,'2023-07-10 21:57:07','2023-07-10 21:57:07'),(660,44,3,'2023-07-10 21:57:29','2023-07-10 21:57:29'),(661,1736,6,'2023-07-11 01:47:10','2023-07-11 01:47:10'),(662,1738,6,'2023-07-11 18:48:51','2023-07-11 18:48:51'),(663,324,3,'2023-07-11 22:15:18','2023-07-11 22:15:18'),(664,740,3,'2023-07-11 22:16:16','2023-07-11 22:16:16'),(665,691,6,'2023-07-12 01:41:28','2023-07-12 01:41:28'),(666,716,6,'2023-07-12 16:49:39','2023-07-12 16:49:39'),(667,586,6,'2023-07-12 17:05:33','2023-07-12 17:05:33'),(668,355,3,'2023-07-12 17:48:45','2023-07-12 17:48:45'),(669,1750,6,'2023-07-13 03:25:39','2023-07-13 03:25:39'),(670,1751,6,'2023-07-13 04:45:40','2023-07-13 04:45:40'),(671,1303,6,'2023-07-13 11:56:46','2023-07-13 11:56:46'),(672,1423,6,'2023-07-13 15:14:35','2023-07-13 15:14:35'),(673,1754,6,'2023-07-13 22:55:18','2023-07-13 22:55:18'),(674,1755,6,'2023-07-13 23:40:32','2023-07-13 23:40:32'),(675,1405,6,'2023-07-14 01:20:35','2023-07-14 01:20:35'),(676,1757,6,'2023-07-14 02:12:50','2023-07-14 02:12:50'),(677,1760,6,'2023-07-14 17:09:41','2023-07-14 17:09:41'),(678,1764,6,'2023-07-14 19:39:08','2023-07-14 19:39:08'),(679,538,6,'2023-07-14 21:19:28','2023-07-14 21:19:28'),(680,334,3,'2023-07-19 19:48:03','2023-07-19 19:48:03'),(681,123,3,'2023-07-19 19:50:30','2023-07-19 19:50:30'),(682,80,3,'2023-07-19 20:03:11','2023-07-19 20:03:11'),(683,182,3,'2023-07-19 20:04:49','2023-07-19 20:04:49'),(684,250,3,'2023-07-19 20:06:28','2023-07-19 20:06:28'),(685,110,3,'2023-07-19 20:12:48','2023-07-19 20:12:48'),(690,311,3,'2023-07-26 19:34:13','2023-07-26 19:34:13'),(691,306,3,'2023-07-27 18:29:11','2023-07-27 18:29:11'),(695,163,3,'2023-08-18 22:11:39','2023-08-18 22:11:39'),(697,267,3,'2023-09-05 21:20:37','2023-09-05 21:20:37'),(698,39,2,'2023-09-05 22:21:01','2023-09-05 22:21:01'),(706,7,1,'2023-09-06 22:01:39','2023-09-06 22:01:39'),(707,7,3,'2023-09-06 22:01:39','2023-09-06 22:01:39'),(709,363,3,'2023-09-09 15:08:27','2023-09-09 15:08:27'),(710,361,3,'2023-09-15 19:19:37','2023-09-15 19:19:37'),(711,371,3,'2023-09-15 21:24:05','2023-09-15 21:24:05'),(713,425,3,'2023-09-22 22:03:44','2023-09-22 22:03:44'),(714,143,3,'2023-09-24 13:10:18','2023-09-24 13:10:18'),(715,774,3,'2023-09-24 13:37:28','2023-09-24 13:37:28'),(716,291,3,'2023-09-24 13:49:02','2023-09-24 13:49:02'),(717,367,3,'2023-09-24 14:16:43','2023-09-24 14:16:43'),(721,8,1,'2023-10-05 14:48:03','2023-10-05 14:48:03');
/*!40000 ALTER TABLE `user_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `first_name` varchar(191) NOT NULL,
  `last_name` varchar(191) DEFAULT NULL,
  `document` varchar(191) DEFAULT NULL,
  `document_type_id` bigint(20) unsigned DEFAULT 0,
  `phone` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `online` tinyint(1) NOT NULL DEFAULT 0,
  `multiple_session` tinyint(1) NOT NULL DEFAULT 0,
  `email` varchar(191) DEFAULT NULL,
  `password` varchar(191) NOT NULL,
  `last_session` varchar(191) DEFAULT NULL,
  `pns_id` varchar(191) DEFAULT NULL COMMENT 'es el id que le asigna la plataforma de notificaciones push al usuario',
  `rol_id` int(10) unsigned NOT NULL,
  `is_subscriber` tinyint(1) DEFAULT 0 COMMENT 'Indica si el usuario es abonado',
  `coin_uid` varchar(191) DEFAULT NULL COMMENT 'Campo para almacenar el identificador del usuario ante API leal',
  `coin_token` longtext DEFAULT NULL COMMENT 'Campo para almacenar el token de validacion servicios API leal',
  `coin_refresh_token` varchar(191) DEFAULT NULL COMMENT 'Campo para almacenar el refresh token de validacion servicios API leal',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `users_rol_id_foreign` (`rol_id`),
  KEY `users_document_type_id_foreign` (`document_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'Aliansap',' Consulting','12345678',NULL,'3450142',1,0,0,'superadmin@aliansap.com.co','$2y$10$2I4bYMoCvJ6/LNEKRSXkkeaLcgGvCb/2ZdBtEyak5CN/Cga55cTQC',NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'2021-05-01 21:58:23','2023-10-09 17:47:15'),(2,'Invitado',' Invitado','123456',NULL,'123456',1,0,0,'invitado@invitado.com.co','$2y$10$2u4GsLUcSotoFrrNaSXGb.IChpXjjAnkFb5u9rPkehPhFGfFutr72','2023-10-09 12:09:21',NULL,4,0,NULL,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1aWRfY21zIjoiMDIxYjcwMDUyMWZkM2RjZDU1YWQ3MDBhZjI4YzE3MmUiLCJ1c2VybmFtZSI6ImNhamVyb19TcG9ydHNDcm93ZCIsIm5vbWJyZSI6IkNhamVybyBTcG9ydHMgQ3Jvd2QiLCJpZF9jb21lcmNpbyI6ODEwLCJub21icmVfY29tZXJjaW8iOiJDb21lcmNpYWwgTGVhbCIsImlkX3JvbCI6MiwiaWRfZnJhbnF1aWNpYSI6MCwiaWRfc3VjdXJzYWwiOiI4NDExIiwibWlsZXNfY29wMSI6MTAwMCwicHVudG9zX3Rlcm1vbWV0cm8iOjEwMDAsImltYWdlbl9jb21lcmNpbyI6Imh0dHBzOi8vaW1nLmxlYWwuY28vZml0LWluLzMwNngyMDUvaW1hZ2VzL2xvZ29zL2I2ZWRjMWNkMWYzNmU0NWRhZjZkNzgyNGQ3YmIyMjgzLmpwZyIsImlkX3BsYW4iOjYsIm5vbWJyZV9jb3J0byI6IkNvbWVyY2lhbCBMZWFsIiwiY29kX3BhaXMiOiJDTyIsInRpZW5lX3BpbiI6MCwidGllbmVfb3RwIjoxLCJjb25maWciOnsiY29tcGFydGlyX2ZiIjowLCJ2ZW5jaW1pZW50b19wdW50b3MiOjEyLCJ2YWxvcl9wb3JfcHVudG9fcmVkZW5jaW9uIjoxLCJsaW1pdGUiOi0xLCJmYWN0dXJhX29ibGlnYXRvcmlhIjowLCJyZWdpc3Ryb19yYXBpZG9fcHJpbWVybyI6MCwidGV4YWNvIjowLCJzb2xvX3ByZW1pb3NfcG9zaWJsZXMiOjAsImJsb3F1ZWFyX3BlcmZpbGVzX2luY29tcGxldG9zIjowLCJibG9xdWVhcl9hY2Nlc29fd2ViIjowLCJyZWNpYmlyX2RldGFsbGVzX2ZhY3R1cmEiOjAsImJsb3F1ZWFyX2hpc3RvcmlhbCI6MCwib2N1bHRhcl9sb2dvdXQiOjAsIm9jdWx0YXJfcmVkZW5jaW9uIjowLCJlbWFpbF9vcGNpb25hbCI6MCwiaW1wcmltZV9yZWNpYm8iOjAsImNlZHVsYV9lZGl0YWJsZSI6MSwicmVkZW5jaW9uX2FiaWVydGEiOjAsImJhbmRlcmF6b19wcm9tb2Npb24iOjAsImJsb3F1ZWFyX3BvcHVwX2ZhY3R1cmEiOjAsImFncmVnYXJfdXN1YXJpb19tYW51YWwiOjAsIm9jdWx0YXJfcmVnaXN0cm8iOjAsIm9jdWx0YXJfZ2VuZXJvX290cm8iOjAsIm9jdWx0YXJfYWN1bXVsYWNpb24iOjAsInVzdWFyaW9zX2VtcHJlc2EiOjAsImNhcmdhcl9wdHNfcGFnb19sYyI6MH0sImNvZF9tb25lZGEiOiJDT1AiLCJpYXQiOjE2NzQzMzg5NTUsImV4cCI6MTY3NDM2Nzc1NX0.WWlYVyxY4Yq7zaQGgeJJtSt2TfH0fPn4C56tfdwE4ug','167433895507666262e025c81ce25a4082e817f88c',NULL,NULL,'2021-05-01 21:58:23','2023-10-09 17:09:21'),(3,'Técnico',' Aliansap','1234567',NULL,'1234567',1,0,0,'tecnico@aliansap.com.co','$2y$10$kRN2wLERdD3FDlq5SqMjLOkzxwkq9PXeM6/Z14Pls8ZX6Ia.W6.r6',NULL,NULL,6,0,NULL,NULL,NULL,NULL,NULL,'2021-05-01 21:58:23','2021-05-01 21:58:23'),(8,'Test','SC','123456789',1,'3162844777',1,0,0,'test@test.com','$2y$10$MlozPf8tAQslztfoSpd9r.ax0.9FFuBSoZPbZ7l1n6NQ8bwQhevu6','2023-10-06 08:22:04','5598a889-c375-48d6-b3b4-87be9115e232',4,0,NULL,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1aWRfY21zIjoiMDIxYjcwMDUyMWZkM2RjZDU1YWQ3MDBhZjI4YzE3MmUiLCJ1c2VybmFtZSI6ImNhamVyb19TcG9ydHNDcm93ZCIsIm5vbWJyZSI6IkNhamVybyBTcG9ydHMgQ3Jvd2QiLCJpZF9jb21lcmNpbyI6ODEwLCJub21icmVfY29tZXJjaW8iOiJDb21lcmNpYWwgTGVhbCIsImlkX3JvbCI6MiwiaWRfZnJhbnF1aWNpYSI6MCwiaWRfc3VjdXJzYWwiOiI4NDExIiwibWlsZXNfY29wMSI6MTAwMCwicHVudG9zX3Rlcm1vbWV0cm8iOjEwMDAsImltYWdlbl9jb21lcmNpbyI6Imh0dHBzOi8vaW1nLmxlYWwuY28vZml0LWluLzMwNngyMDUvaW1hZ2VzL2xvZ29zL2I2ZWRjMWNkMWYzNmU0NWRhZjZkNzgyNGQ3YmIyMjgzLmpwZyIsImlkX3BsYW4iOjYsIm5vbWJyZV9jb3J0byI6IkNvbWVyY2lhbCBMZWFsIiwiY29kX3BhaXMiOiJDTyIsInRpZW5lX3BpbiI6MCwidGllbmVfb3RwIjoxLCJjb25maWciOnsiY29tcGFydGlyX2ZiIjowLCJ2ZW5jaW1pZW50b19wdW50b3MiOjEyLCJ2YWxvcl9wb3JfcHVudG9fcmVkZW5jaW9uIjoxLCJsaW1pdGUiOi0xLCJmYWN0dXJhX29ibGlnYXRvcmlhIjowLCJyZWdpc3Ryb19yYXBpZG9fcHJpbWVybyI6MCwidGV4YWNvIjowLCJzb2xvX3ByZW1pb3NfcG9zaWJsZXMiOjAsImJsb3F1ZWFyX3BlcmZpbGVzX2luY29tcGxldG9zIjowLCJibG9xdWVhcl9hY2Nlc29fd2ViIjowLCJyZWNpYmlyX2RldGFsbGVzX2ZhY3R1cmEiOjAsImJsb3F1ZWFyX2hpc3RvcmlhbCI6MCwib2N1bHRhcl9sb2dvdXQiOjAsIm9jdWx0YXJfcmVkZW5jaW9uIjowLCJlbWFpbF9vcGNpb25hbCI6MCwiaW1wcmltZV9yZWNpYm8iOjAsImNlZHVsYV9lZGl0YWJsZSI6MSwicmVkZW5jaW9uX2FiaWVydGEiOjAsImJhbmRlcmF6b19wcm9tb2Npb24iOjAsImJsb3F1ZWFyX3BvcHVwX2ZhY3R1cmEiOjAsImFncmVnYXJfdXN1YXJpb19tYW51YWwiOjAsIm9jdWx0YXJfcmVnaXN0cm8iOjAsIm9jdWx0YXJfZ2VuZXJvX290cm8iOjAsIm9jdWx0YXJfYWN1bXVsYWNpb24iOjAsInVzdWFyaW9zX2VtcHJlc2EiOjAsImNhcmdhcl9wdHNfcGFnb19sYyI6MH0sImNvZF9tb25lZGEiOiJDT1AiLCJpYXQiOjE2NzMzNjU5MDYsImV4cCI6MTY3MzM5NDcwNn0.TFlt9xdTC7pJZAsasMGUUuraVzpA5x_YA6lLXdPVGvE','1673365906c0b8037408e41fb11c25736c34f89cbf',NULL,NULL,'2022-07-14 21:36:06','2023-10-06 13:22:04'),(9,'LUZ','GARCIA','12345',NULL,'3024069368',1,0,0,'stella.garcia@teky.com.co','$2y$10$bwiNio8KEazgh1ix1b/QHeqHwKPObMW86Rnpdp13fgqqbpRBHL9tW',NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'2022-08-23 13:48:18','2023-11-16 17:05:34');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `video_tiktoks`
--

DROP TABLE IF EXISTS `video_tiktoks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `video_tiktoks` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link` varchar(191) NOT NULL,
  `code` varchar(191) NOT NULL,
  `social_network_account_id` bigint(20) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `video_tiktoks_social_network_account_id_foreign` (`social_network_account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `video_tiktoks`
--

LOCK TABLES `video_tiktoks` WRITE;
/*!40000 ALTER TABLE `video_tiktoks` DISABLE KEYS */;
/*!40000 ALTER TABLE `video_tiktoks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `video_youtubes`
--

DROP TABLE IF EXISTS `video_youtubes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `video_youtubes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) DEFAULT NULL,
  `link` varchar(191) NOT NULL,
  `social_network_account_id` bigint(20) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `video_youtubes_social_network_account_id_foreign` (`social_network_account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `video_youtubes`
--

LOCK TABLES `video_youtubes` WRITE;
/*!40000 ALTER TABLE `video_youtubes` DISABLE KEYS */;
/*!40000 ALTER TABLE `video_youtubes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wallet_points`
--

DROP TABLE IF EXISTS `wallet_points`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wallet_points` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wallet_points`
--

LOCK TABLES `wallet_points` WRITE;
/*!40000 ALTER TABLE `wallet_points` DISABLE KEYS */;
/*!40000 ALTER TABLE `wallet_points` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `welcome_logos`
--

DROP TABLE IF EXISTS `welcome_logos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `welcome_logos` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `welcome_logos`
--

LOCK TABLES `welcome_logos` WRITE;
/*!40000 ALTER TABLE `welcome_logos` DISABLE KEYS */;
INSERT INTO `welcome_logos` VALUES (1,'Splash Welcome','1.png',1,'2022-04-26 12:14:10','2022-11-22 17:42:31');
/*!40000 ALTER TABLE `welcome_logos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zones`
--

DROP TABLE IF EXISTS `zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zones` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `img` varchar(255) DEFAULT NULL,
  `door_id` bigint(20) unsigned DEFAULT NULL,
  `zone_id` bigint(20) unsigned DEFAULT NULL,
  `is_main` tinyint(1) NOT NULL DEFAULT 0,
  `is_saleable` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Diferencia una zona inferior si se puede vender',
  `total_capacity` double DEFAULT NULL,
  `salable_capacity` double DEFAULT NULL COMMENT 'Aforo vendible',
  `coors` text DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `zones_door_id_foreign` (`door_id`),
  KEY `zones_zone_id_foreign` (`zone_id`)
) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zones`
--

LOCK TABLES `zones` WRITE;
/*!40000 ALTER TABLE `zones` DISABLE KEYS */;
INSERT INTO `zones` VALUES (1,'Estadio Atanasio Girardot',NULL,NULL,NULL,1,0,45095,45095,NULL,1,'2021-01-21 17:47:20','2021-07-24 21:48:32'),(2,'NACIDOS PARA BRILLAR',NULL,NULL,1,0,0,9901,9354,NULL,1,'2021-01-21 17:47:20','2023-06-15 19:53:04'),(3,'CORAZÓN Y VALENTÍA',NULL,NULL,1,0,0,16229,16229,NULL,1,'2021-01-21 17:47:20','2023-06-15 19:53:27'),(4,'Norte',NULL,NULL,1,0,0,9490,9470,NULL,1,'2021-01-21 17:47:20','2022-06-13 21:02:16'),(5,'LA FAMILIA NARANJA',NULL,NULL,1,0,0,9475,9475,NULL,1,'2021-01-21 17:47:20','2023-06-15 19:53:45'),(6,'Alta_1',NULL,13,3,0,1,717,717,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:37:33'),(7,'Alta_2',NULL,13,3,0,1,702,717,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:37:43'),(8,'Alta_3',NULL,13,3,0,1,723,717,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:37:52'),(9,'Alta_4',NULL,14,3,0,1,717,717,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:38:01'),(10,'Alta_5',NULL,15,3,0,1,780,780,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:38:09'),(11,'Alta_6',NULL,16,3,0,1,800,800,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:38:19'),(12,'Alta_7',NULL,17,3,0,1,860,860,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:38:28'),(13,'Alta_8',NULL,18,3,0,1,793,793,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:38:38'),(14,'Alta_9',NULL,19,3,0,1,842,842,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:38:46'),(15,'Alta_10',NULL,19,3,0,1,824,824,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:38:54'),(16,'Alta_11',NULL,20,3,0,1,792,792,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:39:02'),(17,'Alta_12',NULL,21,3,0,1,717,717,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:39:11'),(18,'Alta_13',NULL,21,3,0,1,738,738,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:39:21'),(19,'Alta_14',NULL,22,3,0,1,697,697,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:39:29'),(20,'Alta_15',NULL,22,3,0,1,704,704,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:39:37'),(21,'Baja_1',NULL,13,3,0,1,336,336,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:39:45'),(22,'Baja_2',NULL,13,3,0,1,340,340,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:39:51'),(23,'Baja_3',NULL,13,3,0,1,338,338,NULL,1,'2021-01-21 17:47:20','2022-09-03 02:40:00'),(24,'Baja_4',NULL,14,3,0,1,304,304,NULL,1,'2021-01-21 17:47:20','2022-06-10 05:59:29'),(25,'Baja_5',NULL,15,3,0,1,342,342,NULL,1,'2021-01-21 17:47:20','2022-06-12 17:05:25'),(26,'Baja_6',NULL,16,3,0,1,330,330,NULL,1,'2021-01-21 17:47:20','2022-06-12 19:56:15'),(27,'Baja_7',NULL,17,3,0,1,261,261,NULL,1,'2021-01-21 17:47:20','2022-06-12 20:54:58'),(28,'Baja_8',NULL,18,3,0,1,303,303,NULL,1,'2021-01-21 17:47:20','2022-06-12 20:55:06'),(29,'Baja_9',NULL,19,3,0,1,263,263,NULL,1,'2021-01-21 17:47:20','2022-06-12 20:55:11'),(30,'Baja_10',NULL,19,3,0,1,336,336,NULL,1,'2021-01-21 17:47:20','2022-06-10 06:00:04'),(31,'Baja_11',NULL,20,3,0,1,344,344,NULL,1,'2021-01-21 17:47:20','2022-06-12 20:55:22'),(32,'Baja_12',NULL,21,3,0,1,302,302,NULL,1,'2021-01-21 17:47:20','2022-06-12 17:06:16'),(33,'Baja_13',NULL,21,3,0,1,339,339,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:18:36'),(34,'Baja_14',NULL,22,3,0,1,336,336,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:18:42'),(35,'Baja_15',NULL,22,3,0,1,349,349,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:18:47'),(36,'Baja_1',NULL,31,2,0,1,164,164,NULL,1,'2021-01-21 17:47:20','2022-07-26 18:42:27'),(37,'Baja_2',NULL,31,2,0,1,275,275,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:42:52'),(38,'Baja_3',NULL,32,2,0,1,296,296,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:42:57'),(39,'Baja_4',NULL,33,2,0,1,297,297,NULL,1,'2021-01-21 17:47:20','2022-07-14 07:40:11'),(40,'Baja_5',NULL,34,2,0,1,279,279,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:43:10'),(41,'Baja_6',NULL,35,2,0,1,294,294,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:43:17'),(42,'Baja_7',NULL,36,2,0,1,295,295,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:43:22'),(43,'Baja_8',NULL,1,2,0,1,318,318,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:43:30'),(44,'Baja_9',NULL,1,2,0,1,314,314,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:43:37'),(45,'Baja_10',NULL,2,2,0,1,294,294,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:43:42'),(46,'Baja_11',NULL,3,2,0,1,279,279,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:43:47'),(47,'Baja_12',NULL,3,2,0,1,297,297,NULL,1,'2021-01-21 17:47:20','2022-07-18 23:25:23'),(48,'Baja_13',NULL,4,2,0,1,296,296,NULL,1,'2021-01-21 17:47:20','2022-07-23 22:53:24'),(49,'Baja_14',NULL,4,2,0,1,275,275,NULL,1,'2021-01-21 17:47:20','2022-06-06 17:06:52'),(50,'Baja_15',NULL,4,2,0,1,155,155,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:44:12'),(51,'Alta_1',NULL,31,2,0,1,248,248,NULL,1,'2021-01-21 17:47:20','2022-07-25 19:12:06'),(52,'Alta_2',NULL,31,2,0,1,493,493,NULL,1,'2021-01-21 17:47:20','2022-07-25 19:12:11'),(53,'Alta_3',NULL,32,2,0,1,487,487,NULL,1,'2021-01-21 17:47:20','2022-07-25 19:12:17'),(54,'Alta_4',NULL,33,2,0,1,495,495,NULL,1,'2021-01-21 17:47:20','2022-06-11 00:33:27'),(55,'Alta_5',NULL,36,2,0,1,442,442,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:44:45'),(56,'Alta_6',NULL,35,2,0,1,123,123,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:44:55'),(57,'Alta_7',NULL,36,2,0,1,109,109,NULL,1,'2021-01-21 17:47:20','2022-05-09 23:54:49'),(58,'Alta_8',NULL,36,2,0,1,126,126,NULL,1,'2021-01-21 17:47:20','2022-07-26 23:43:31'),(59,'Alta_9',NULL,1,2,0,1,109,109,NULL,1,'2021-01-21 17:47:20','2022-05-09 23:55:01'),(60,'Alta_10',NULL,2,2,0,1,125,125,NULL,1,'2021-01-21 17:47:20','2022-05-09 23:55:06'),(61,'Alta_11',NULL,3,2,0,1,473,473,NULL,1,'2021-01-21 17:47:20','2022-07-18 23:47:13'),(62,'Alta_12',NULL,3,2,0,1,490,490,NULL,1,'2021-01-21 17:47:20','2022-05-09 23:55:18'),(63,'Alta_13',NULL,4,2,0,1,466,466,NULL,1,'2021-01-21 17:47:20','2022-07-24 20:11:38'),(64,'Alta_14',NULL,4,2,0,1,492,492,NULL,1,'2021-01-21 17:47:20','2022-07-18 23:27:57'),(65,'Alta_15',NULL,4,2,0,1,245,245,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:45:42'),(66,'vip_1',NULL,34,2,0,1,165,165,NULL,1,'2021-01-21 17:47:20','2022-07-18 21:25:08'),(67,'vip_2',NULL,35,2,0,1,68,68,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:45:53'),(68,'vip_3',NULL,36,2,0,1,72,72,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:45:58'),(69,'vip_4',NULL,1,2,0,1,72,72,NULL,1,'2021-01-21 17:47:20','2022-07-14 17:37:23'),(70,'vip_5',NULL,2,2,0,1,165,160,NULL,1,'2021-01-21 17:47:20','2022-07-08 01:14:25'),(71,'vvip_1',NULL,35,2,0,1,32,32,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:46:14'),(72,'vvip_2',NULL,1,2,0,1,16,16,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:46:21'),(73,'vvip_3',NULL,1,2,0,1,34,34,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:46:26'),(74,'Alta_1',NULL,5,4,0,1,294,294,NULL,1,'2021-01-21 17:47:20','2022-05-10 00:11:09'),(75,'Alta_2',NULL,5,4,0,1,466,466,NULL,1,'2021-01-21 17:47:20','2022-05-10 00:11:15'),(76,'Alta_3',NULL,6,4,0,1,465,465,NULL,1,'2021-01-21 17:47:20','2022-05-09 17:03:02'),(77,'Alta_4',NULL,7,4,0,1,403,403,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:41:22'),(78,'Alta_5',NULL,7,4,0,1,372,372,NULL,1,'2021-01-21 17:47:20','2022-05-16 18:25:41'),(79,'Alta_6',NULL,7,4,0,1,264,264,NULL,1,'2021-01-21 17:47:20','2022-05-09 16:56:14'),(80,'Alta_7',NULL,8,4,0,1,302,302,NULL,1,'2021-01-21 17:47:20','2022-05-09 16:56:21'),(81,'Alta_8',NULL,9,4,0,1,296,296,NULL,1,'2021-01-21 17:47:20','2022-05-09 16:56:38'),(82,'Alta_9',NULL,9,4,0,1,303,303,NULL,1,'2021-01-21 17:47:20','2022-05-09 16:56:47'),(83,'Alta_10',NULL,10,4,0,1,263,263,NULL,1,'2021-01-21 17:47:20','2022-07-12 20:15:59'),(84,'Alta_11',NULL,10,4,0,1,349,349,NULL,1,'2021-01-21 17:47:20','2022-07-10 05:31:54'),(85,'Alta_12',NULL,11,4,0,1,426,426,NULL,1,'2021-01-21 17:47:20','2022-07-10 05:31:40'),(86,'Alta_13',NULL,11,4,0,1,509,509,NULL,1,'2021-01-21 17:47:20','2022-07-10 05:31:23'),(87,'Alta_14',NULL,12,4,0,1,523,523,NULL,1,'2021-01-21 17:47:20','2022-07-10 05:31:10'),(88,'Baja_1',NULL,5,4,0,1,164,164,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:50:34'),(89,'Baja_2',NULL,5,4,0,1,380,380,NULL,1,'2021-01-21 17:47:20','2022-07-13 00:49:46'),(90,'Baja_3',NULL,6,4,0,1,386,386,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:50:48'),(91,'Baja_4',NULL,6,4,0,1,385,385,NULL,1,'2021-01-21 17:47:20','2022-07-14 02:37:13'),(92,'Baja_5',NULL,7,4,0,1,371,371,NULL,1,'2021-01-21 17:47:20','2022-07-15 19:34:58'),(93,'Baja_6',NULL,8,4,0,1,370,370,NULL,1,'2021-01-21 17:47:20','2022-06-12 03:19:35'),(94,'Baja_7',NULL,8,4,0,1,136,136,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:51:19'),(95,'Baja_8',NULL,8,4,0,1,66,66,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:51:25'),(96,'Baja_9',NULL,9,4,0,1,127,127,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:51:31'),(97,'Baja_10',NULL,10,4,0,1,370,370,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:13:15'),(98,'Baja_11',NULL,10,4,0,1,371,371,NULL,1,'2021-01-21 17:47:20','2022-07-12 01:22:45'),(99,'Baja_12',NULL,11,4,0,1,384,384,NULL,1,'2021-01-21 17:47:20','2022-07-11 18:05:29'),(100,'Baja_13',NULL,11,4,0,1,385,385,NULL,1,'2021-01-21 17:47:20','2022-06-13 02:02:03'),(101,'Baja_14',NULL,12,4,0,1,360,360,NULL,1,'2021-01-21 17:47:20','2022-07-10 05:32:15'),(102,'Baja_1',NULL,23,5,0,1,327,327,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:12:24'),(103,'Baja_2',NULL,23,5,0,1,386,386,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:12:41'),(104,'Baja_3',NULL,24,5,0,1,384,384,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:13:05'),(105,'Baja_4',NULL,25,5,0,1,369,369,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:13:15'),(106,'Baja_5',NULL,25,5,0,1,370,370,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:13:23'),(107,'Baja_6',NULL,26,5,0,1,127,127,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:13:32'),(108,'Baja_7',NULL,26,5,0,1,67,67,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:13:43'),(109,'Baja_8',NULL,27,5,0,1,123,123,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:13:52'),(110,'Baja_9',NULL,27,5,0,1,376,376,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:14:00'),(111,'Baja_10',NULL,28,5,0,1,380,380,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:14:08'),(112,'Baja_11',NULL,28,5,0,1,383,383,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:14:17'),(113,'Baja_12',NULL,29,5,0,1,385,385,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:14:27'),(114,'Baja_13',NULL,30,5,0,1,337,337,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:14:38'),(115,'Baja_14',NULL,30,5,0,1,154,154,NULL,1,'2021-01-21 17:47:20','2022-07-29 23:14:46'),(116,'Alta_1',NULL,23,5,0,1,535,535,NULL,1,'2021-01-21 17:47:20','2022-06-13 01:46:04'),(117,'Alta_2',NULL,24,5,0,1,510,510,NULL,1,'2021-01-21 17:47:20','2022-05-15 03:35:55'),(118,'Alta_3',NULL,24,5,0,1,426,426,NULL,1,'2021-01-21 17:47:20','2022-05-15 03:36:02'),(119,'Alta_4',NULL,25,5,0,1,370,370,NULL,1,'2021-01-21 17:47:20','2022-05-15 03:36:28'),(120,'Alta_5',NULL,25,5,0,1,265,265,NULL,1,'2021-01-21 17:47:20','2022-05-15 03:36:34'),(121,'Alta_6',NULL,26,5,0,1,304,304,NULL,1,'2021-01-21 17:47:20','2022-05-26 17:53:44'),(122,'Alta_7',NULL,26,5,0,1,294,294,NULL,1,'2021-01-21 17:47:20','2022-05-10 17:04:08'),(123,'Alta_8',NULL,27,5,0,1,304,304,NULL,1,'2021-01-21 17:47:20','2022-05-10 17:04:23'),(124,'Alta_9',NULL,27,5,0,1,256,256,NULL,1,'2021-01-21 17:47:20','2022-05-10 17:04:29'),(125,'Alta_10',NULL,28,5,0,1,372,372,NULL,1,'2021-01-21 17:47:20','2022-05-10 17:04:49'),(126,'Alta_11',NULL,28,5,0,1,426,426,NULL,1,'2021-01-21 17:47:20','2022-06-12 19:57:56'),(127,'Alta_12',NULL,29,5,0,1,496,496,NULL,1,'2021-01-21 17:47:20','2022-06-12 19:58:03'),(128,'Alta_13',NULL,30,5,0,1,465,465,NULL,1,'2021-01-21 17:47:20','2022-06-12 19:58:09'),(129,'Alta_14',NULL,30,5,0,1,284,284,NULL,1,'2021-01-21 17:47:20','2022-06-23 18:39:00');
/*!40000 ALTER TABLE `zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping routines for database 'atlas'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2024-10-19  3:35:39